@chargehive/types 2.3.0 → 2.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/chargehive.d.ts +4 -3
- package/package.json +1 -1
package/chargehive.d.ts
CHANGED
|
@@ -146,11 +146,12 @@ export type PaymentMethodDataTypes = {
|
|
|
146
146
|
initiativeContext?: string;
|
|
147
147
|
sessionUrl?: string;
|
|
148
148
|
session?: string;
|
|
149
|
-
token?: ApplePayPaymentToken;
|
|
149
|
+
token?: ApplePayPaymentToken | unknown;
|
|
150
150
|
}
|
|
151
151
|
PLACEMENT_CAPABILITY_GOOGLE_PAY: {
|
|
152
152
|
description: string | undefined;
|
|
153
153
|
cardDetails: string | undefined;
|
|
154
|
+
bin: string | undefined;
|
|
154
155
|
cardNetwork: google.payments.api.CardNetwork | undefined;
|
|
155
156
|
token: string;
|
|
156
157
|
}
|
|
@@ -406,6 +407,7 @@ export interface WalletOptionsResponse
|
|
|
406
407
|
|
|
407
408
|
allowedPaymentMethods: [{
|
|
408
409
|
connectorId: string;
|
|
410
|
+
connectorLibrary: string;
|
|
409
411
|
/**
|
|
410
412
|
* @default true
|
|
411
413
|
*/
|
|
@@ -414,8 +416,6 @@ export interface WalletOptionsResponse
|
|
|
414
416
|
* @default false
|
|
415
417
|
*/
|
|
416
418
|
requireBillingPhone?: boolean;
|
|
417
|
-
gateway?: string;
|
|
418
|
-
gatewayMerchantId?: string;
|
|
419
419
|
allowedAuthMethods?: string[];
|
|
420
420
|
|
|
421
421
|
supportCredit?: boolean;
|
|
@@ -429,6 +429,7 @@ export interface WalletOptionsResponse
|
|
|
429
429
|
|
|
430
430
|
applePay: {
|
|
431
431
|
connectorId: string;
|
|
432
|
+
connectorLibrary: string;
|
|
432
433
|
merchantIdentifier: string;
|
|
433
434
|
requireBillingAddress: boolean;
|
|
434
435
|
requireBillingPhone: boolean;
|
package/package.json
CHANGED