@bigcommerce/checkout-sdk 1.303.0 → 1.304.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 +13 -0
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.js.map +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-button.umd.js.map +1 -1
- package/dist/checkout-sdk.d.ts +2 -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/dist/internal-mappers.d.ts +2 -0
- package/docs/interfaces/Checkout.md +7 -0
- package/docs/interfaces/Order.md +7 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -2181,6 +2181,7 @@ declare interface Checkout {
|
|
|
2181
2181
|
createdTime: string;
|
|
2182
2182
|
updatedTime: string;
|
|
2183
2183
|
payments?: CheckoutPayment[];
|
|
2184
|
+
channelId: number;
|
|
2184
2185
|
}
|
|
2185
2186
|
|
|
2186
2187
|
declare class CheckoutButtonErrorSelector {
|
|
@@ -5866,6 +5867,7 @@ declare interface Order {
|
|
|
5866
5867
|
status: string;
|
|
5867
5868
|
taxes: Tax[];
|
|
5868
5869
|
taxTotal: number;
|
|
5870
|
+
channelId: number;
|
|
5869
5871
|
}
|
|
5870
5872
|
|
|
5871
5873
|
declare interface OrderConsignment {
|