@bigcommerce/checkout-sdk 1.350.1 → 1.351.0
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/CHANGELOG.md +7 -0
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-sdk.d.ts +6 -0
- package/dist/checkout-sdk.js +1 -1
- package/dist/checkout-sdk.js.map +1 -1
- package/dist/checkout-sdk.umd.js +1 -1
- package/dist/checkout-sdk.umd.js.map +1 -1
- package/docs/README.md +1 -0
- package/docs/enums/UntrustedShippingCardVerificationType.md +22 -0
- package/docs/interfaces/CardInstrument.md +7 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -1930,6 +1930,7 @@ declare interface CardInstrument extends BaseInstrument {
|
|
|
1930
1930
|
iin: string;
|
|
1931
1931
|
last4: string;
|
|
1932
1932
|
type: 'card';
|
|
1933
|
+
untrustedShippingCardVerificationMode: UntrustedShippingCardVerificationType;
|
|
1933
1934
|
}
|
|
1934
1935
|
|
|
1935
1936
|
declare interface CardNumberElementOptions extends BaseIndividualElementOptions {
|
|
@@ -7520,6 +7521,11 @@ declare interface UnknownObject {
|
|
|
7520
7521
|
[key: string]: unknown;
|
|
7521
7522
|
}
|
|
7522
7523
|
|
|
7524
|
+
declare enum UntrustedShippingCardVerificationType {
|
|
7525
|
+
CVV = "cvv",
|
|
7526
|
+
PAN = "pan"
|
|
7527
|
+
}
|
|
7528
|
+
|
|
7523
7529
|
declare type UserExperienceSettingNames = 'walletButtonsOnTop';
|
|
7524
7530
|
|
|
7525
7531
|
declare type UserExperienceSettings = {
|