mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
[googlepay] Add INTERAC in AllowedCardNetwork (#37078)
* [ADD] INTERAC as an AllowedCardNetwork * [FORMAT]
This commit is contained in:
parent
7484adf373
commit
449c42470f
@ -1,4 +1,11 @@
|
||||
const allowedCardNetworks = new Array<google.payments.api.AllowedCardNetwork>('AMEX', 'DISCOVER', 'JCB', 'MASTERCARD', 'VISA');
|
||||
const allowedCardNetworks = new Array<google.payments.api.AllowedCardNetwork>(
|
||||
'AMEX',
|
||||
'DISCOVER',
|
||||
'JCB',
|
||||
'MASTERCARD',
|
||||
'VISA',
|
||||
'INTERAC'
|
||||
);
|
||||
|
||||
const allowedPaymentMethods = new Array<google.payments.api.PaymentMethod>({
|
||||
type: 'CARD',
|
||||
|
||||
3
types/googlepay/index.d.ts
vendored
3
types/googlepay/index.d.ts
vendored
@ -3,6 +3,7 @@
|
||||
// Definitions by: Florian Luccioni <https://github.com/Fluccioni>,
|
||||
// Radu Raicea <https://github.com/Radu-Raicea>,
|
||||
// Filip Stanis <https://github.com/fstanis>
|
||||
// Alexandre Couret <https://github.com/ozotek>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
|
||||
declare namespace google.payments.api {
|
||||
@ -72,7 +73,7 @@ declare namespace google.payments.api {
|
||||
}
|
||||
|
||||
type AllowedAuthMethod = 'PAN_ONLY' | 'CRYPTOGRAM_3DS';
|
||||
type AllowedCardNetwork = 'AMEX' | 'DISCOVER' | 'JCB' | 'MASTERCARD' | 'VISA';
|
||||
type AllowedCardNetwork = 'AMEX' | 'DISCOVER' | 'JCB' | 'MASTERCARD' | 'VISA' | 'INTERAC';
|
||||
|
||||
interface CardParameters {
|
||||
allowedAuthMethods: AllowedAuthMethod[];
|
||||
|
||||
Loading…
Reference in New Issue
Block a user