@chargehive/types 2.3.3 → 2.3.4
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 +2 -14
- package/package.json +1 -1
package/chargehive.d.ts
CHANGED
|
@@ -6,7 +6,6 @@ import {
|
|
|
6
6
|
} from '@pci-bridge/types/pcibridge';
|
|
7
7
|
import {FieldValidation} from '@pci-bridge/types/validation';
|
|
8
8
|
import {Address, Person} from './address';
|
|
9
|
-
import ApplePayPaymentToken = ApplePayJS.ApplePayPaymentToken;
|
|
10
9
|
|
|
11
10
|
type EmptyObject = Record<string, never>;
|
|
12
11
|
|
|
@@ -142,19 +141,8 @@ export type PaymentMethodDataTypes = {
|
|
|
142
141
|
}
|
|
143
142
|
PLACEMENT_CAPABILITY_CARD_FORM: PCIBridgeTokenizeResponse
|
|
144
143
|
PLACEMENT_CAPABILITY_PAYPAL: EmptyObject
|
|
145
|
-
PLACEMENT_CAPABILITY_APPLE_PAY:
|
|
146
|
-
|
|
147
|
-
sessionUrl?: string;
|
|
148
|
-
session?: string;
|
|
149
|
-
token?: ApplePayPaymentToken | unknown;
|
|
150
|
-
}
|
|
151
|
-
PLACEMENT_CAPABILITY_GOOGLE_PAY: {
|
|
152
|
-
description: string | undefined;
|
|
153
|
-
cardDetails: string | undefined;
|
|
154
|
-
bin: string | undefined;
|
|
155
|
-
cardNetwork: google.payments.api.CardNetwork | undefined;
|
|
156
|
-
token: string;
|
|
157
|
-
}
|
|
144
|
+
PLACEMENT_CAPABILITY_APPLE_PAY: ApplePayJS.ApplePayPaymentToken
|
|
145
|
+
PLACEMENT_CAPABILITY_GOOGLE_PAY: google.payments.api.PaymentData
|
|
158
146
|
PLACEMENT_CAPABILITY_DIRECTDEBIT_FORM: {
|
|
159
147
|
accountName: string;
|
|
160
148
|
accountNum: string;
|
package/package.json
CHANGED