Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/nightly-20260507-015656.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'bigrequest': patch
---

[bigcommerce/docs@`24f580c`](https://github.com/bigcommerce/docs/commit/24f580ca6d2981728b7ed70a2049e00fc602c335), [bigcommerce/docs@`05974b1`](https://github.com/bigcommerce/docs/commit/05974b1c9b19bd822e466ea45ea1e1b8cac73222), [bigcommerce/docs@`1ef1cb1`](https://github.com/bigcommerce/docs/commit/1ef1cb19be7fe71f34a2693b10c9fe31a3c4098b), [bigcommerce/docs@`e03f09c`](https://github.com/bigcommerce/docs/commit/e03f09c08ff1077d8b5ce003959e907d2b11d3ef), [bigcommerce/docs@`07e2d13`](https://github.com/bigcommerce/docs/commit/07e2d132e1308212867eb6d663b79827aeae3ef9), [bigcommerce/docs@`0b3fd8b`](https://github.com/bigcommerce/docs/commit/0b3fd8b93b5ce8eebcfc2183eee66cb1ca5c562b)
2 changes: 1 addition & 1 deletion .last_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
74ff1cf26bc4b933a215683531fe687a9f5f77a6
24f580ca6d2981728b7ed70a2049e00fc602c335
20 changes: 19 additions & 1 deletion src/generated/checkouts.sf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -441,8 +441,16 @@ export interface components {
/** @description Text displayed on the storefront for the promotion. */
text?: string;
})[];
/** @description The shipping cost before discounts are applied. */
/**
* Format: float
* @description Total shipping cost for the checkout before discounts are applied.
*/
shippingCostBeforeDiscount?: number;
/**
* Format: float
* @description Total shipping cost for the checkout after automatic promotions are applied.
*/
comparisonShippingCost?: number;
/**
* Format: float
* @description Shipping cost before any discounts are applied.
Expand Down Expand Up @@ -694,6 +702,16 @@ export interface components {
* @description The shipping cost for this consignment.
*/
shippingCost?: number;
/**
* Format: double
* @description This consignment's shipping cost before discounts are applied.
*/
shippingCostBeforeDiscount?: number;
/**
* Format: double
* @description This consignment's shipping cost after automatic promotions are applied.
*/
comparisonShippingCost?: number;
lineItemIds?: string[];
};
/** consignmentAvailableShippingOptions */
Expand Down
Loading