@bigcommerce/checkout-sdk 1.719.2 → 1.720.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/dist/checkout-button.js +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-sdk.d.ts +8 -0
- package/dist/checkout-sdk.js +1 -1
- package/dist/checkout-sdk.umd.js +1 -1
- package/dist/hosted-form-v2-iframe-host.js +1 -1
- package/dist/hosted-form-v2-iframe-host.umd.js +1 -1
- package/dist/internal-mappers.d.ts +7 -0
- package/docs/README.md +1 -0
- package/docs/interfaces/CheckoutSettings.md +7 -0
- package/docs/interfaces/OrderShippingConsignment.md +7 -0
- package/docs/interfaces/OrderShippingConsignmentDiscount.md +29 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -3213,6 +3213,7 @@ declare interface CheckoutSettings {
|
|
|
3213
3213
|
realtimeShippingProviders: string[];
|
|
3214
3214
|
requiresMarketingConsent: boolean;
|
|
3215
3215
|
remoteCheckoutProviders: any[];
|
|
3216
|
+
shouldRedirectToStorefrontForAuth: boolean;
|
|
3216
3217
|
}
|
|
3217
3218
|
|
|
3218
3219
|
/**
|
|
@@ -6209,6 +6210,13 @@ declare interface OrderShippingConsignment {
|
|
|
6209
6210
|
name: string;
|
|
6210
6211
|
value: string | null;
|
|
6211
6212
|
}>;
|
|
6213
|
+
discounts: OrderShippingConsignmentDiscount[];
|
|
6214
|
+
}
|
|
6215
|
+
|
|
6216
|
+
declare interface OrderShippingConsignmentDiscount {
|
|
6217
|
+
id: number;
|
|
6218
|
+
amount: number;
|
|
6219
|
+
code: string | null;
|
|
6212
6220
|
}
|
|
6213
6221
|
|
|
6214
6222
|
declare interface PasswordRequirements {
|