@chargehive/types 2.6.4 → 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.
Files changed (2) hide show
  1. package/chargehive.d.ts +4 -1
  2. 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: EmptyObject;
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
@@ -8,5 +8,5 @@
8
8
  "dependencies": {
9
9
  "@pci-bridge/types": "*"
10
10
  },
11
- "version": "2.6.4"
11
+ "version": "2.6.6"
12
12
  }