@chargehive/types 2.0.3 → 2.1.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.
Files changed (2) hide show
  1. package/chargehive.d.ts +16 -0
  2. package/package.json +1 -1
package/chargehive.d.ts CHANGED
@@ -98,6 +98,22 @@ export type PaymentMethodDataTypes = {
98
98
  }
99
99
  };
100
100
 
101
+ export type PaymentMethodTokenizationData = {
102
+ PLACEMENT_CAPABILITY_TOKEN: null
103
+ PLACEMENT_CAPABILITY_PAYPAL: null
104
+ PLACEMENT_CAPABILITY_CARD_FORM: PCIBridgeTokenizeResponse
105
+ PLACEMENT_CAPABILITY_APPLE_PAY: {
106
+ session: string;
107
+ initiativeContext: string;
108
+ sessionUrl: string;
109
+ }
110
+ PLACEMENT_CAPABILITY_GOOGLE_PAY: {
111
+ environment: string;
112
+ googlePayConfig: google.payments.api.PaymentDataRequest | string;
113
+ }
114
+ PLACEMENT_CAPABILITY_DIRECTDEBIT_FORM: {}
115
+ }
116
+
101
117
  export type PaymentMethodAuthenticationTypes = {
102
118
  cvv: string;
103
119
  }
package/package.json CHANGED
@@ -8,5 +8,5 @@
8
8
  "dependencies": {
9
9
  "@pci-bridge/types": "^1.0.2"
10
10
  },
11
- "version": "2.0.3"
11
+ "version": "2.1.2"
12
12
  }