@chargehive/types 2.6.5 → 2.6.6
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 -1
- package/package.json +1 -1
package/chargehive.d.ts
CHANGED
|
@@ -39,6 +39,8 @@ export interface ChargeHiveType extends ChargeType, ChargeHiveEventTarget
|
|
|
39
39
|
*/
|
|
40
40
|
readonly version: string;
|
|
41
41
|
|
|
42
|
+
readonly correlationID: string;
|
|
43
|
+
|
|
42
44
|
initialize(options: ChargeHiveInitOptions);
|
|
43
45
|
|
|
44
46
|
isInitialized(): boolean;
|
|
@@ -148,7 +150,7 @@ export type PaymentMethodDataTypes = {
|
|
|
148
150
|
token: string;
|
|
149
151
|
};
|
|
150
152
|
PLACEMENT_CAPABILITY_CARD_FORM: PCIBridgeTokenizeResponse;
|
|
151
|
-
PLACEMENT_CAPABILITY_PAYPAL:
|
|
153
|
+
PLACEMENT_CAPABILITY_PAYPAL: TokenizeResponse; // paypal controls the whole process and returns a full tokenization response
|
|
152
154
|
PLACEMENT_CAPABILITY_APPLE_PAY:
|
|
153
155
|
{ token: ApplePayJS.ApplePayPaymentToken; } |
|
|
154
156
|
{
|
|
@@ -483,5 +485,6 @@ export interface WalletOptionsResponse
|
|
|
483
485
|
connectorLibrary: string;
|
|
484
486
|
clientId: string;
|
|
485
487
|
merchantId: string;
|
|
488
|
+
presentationMode: string;
|
|
486
489
|
};
|
|
487
490
|
}
|
package/package.json
CHANGED