@chargehive/types 2.3.0 → 2.3.1
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 -4
- package/package.json +1 -1
package/chargehive.d.ts
CHANGED
|
@@ -147,13 +147,13 @@ export type PaymentMethodDataTypes = {
|
|
|
147
147
|
sessionUrl?: string;
|
|
148
148
|
session?: string;
|
|
149
149
|
token?: ApplePayPaymentToken;
|
|
150
|
-
}
|
|
150
|
+
} | unknown
|
|
151
151
|
PLACEMENT_CAPABILITY_GOOGLE_PAY: {
|
|
152
152
|
description: string | undefined;
|
|
153
153
|
cardDetails: string | undefined;
|
|
154
154
|
cardNetwork: google.payments.api.CardNetwork | undefined;
|
|
155
155
|
token: string;
|
|
156
|
-
}
|
|
156
|
+
} | unknown
|
|
157
157
|
PLACEMENT_CAPABILITY_DIRECTDEBIT_FORM: {
|
|
158
158
|
accountName: string;
|
|
159
159
|
accountNum: string;
|
|
@@ -406,6 +406,7 @@ export interface WalletOptionsResponse
|
|
|
406
406
|
|
|
407
407
|
allowedPaymentMethods: [{
|
|
408
408
|
connectorId: string;
|
|
409
|
+
connectorLibrary: string;
|
|
409
410
|
/**
|
|
410
411
|
* @default true
|
|
411
412
|
*/
|
|
@@ -414,8 +415,6 @@ export interface WalletOptionsResponse
|
|
|
414
415
|
* @default false
|
|
415
416
|
*/
|
|
416
417
|
requireBillingPhone?: boolean;
|
|
417
|
-
gateway?: string;
|
|
418
|
-
gatewayMerchantId?: string;
|
|
419
418
|
allowedAuthMethods?: string[];
|
|
420
419
|
|
|
421
420
|
supportCredit?: boolean;
|
|
@@ -429,6 +428,7 @@ export interface WalletOptionsResponse
|
|
|
429
428
|
|
|
430
429
|
applePay: {
|
|
431
430
|
connectorId: string;
|
|
431
|
+
connectorLibrary: string;
|
|
432
432
|
merchantIdentifier: string;
|
|
433
433
|
requireBillingAddress: boolean;
|
|
434
434
|
requireBillingPhone: boolean;
|
package/package.json
CHANGED