@chargehive/types 2.3.1 → 2.3.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 +4 -3
  2. package/package.json +1 -1
package/chargehive.d.ts CHANGED
@@ -146,14 +146,15 @@ export type PaymentMethodDataTypes = {
146
146
  initiativeContext?: string;
147
147
  sessionUrl?: string;
148
148
  session?: string;
149
- token?: ApplePayPaymentToken;
150
- } | unknown
149
+ token?: ApplePayPaymentToken | unknown;
150
+ }
151
151
  PLACEMENT_CAPABILITY_GOOGLE_PAY: {
152
152
  description: string | undefined;
153
153
  cardDetails: string | undefined;
154
+ bin: string | undefined;
154
155
  cardNetwork: google.payments.api.CardNetwork | undefined;
155
156
  token: string;
156
- } | unknown
157
+ }
157
158
  PLACEMENT_CAPABILITY_DIRECTDEBIT_FORM: {
158
159
  accountName: string;
159
160
  accountNum: string;
package/package.json CHANGED
@@ -9,5 +9,5 @@
9
9
  "typescript": "^3 || ^4",
10
10
  "@pci-bridge/types": "*"
11
11
  },
12
- "version": "2.3.1"
12
+ "version": "2.3.2"
13
13
  }