@wix/auto_sdk_ecom_current-cart-v-2 1.0.28 → 1.0.29
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/build/cjs/index.d.ts +3 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +3 -3
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +3 -3
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +14 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +3 -3
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +14 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +3 -3
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1546,7 +1546,7 @@ interface CartSummary {
|
|
|
1546
1546
|
/**
|
|
1547
1547
|
* A token representing the Cart's calculated prices.
|
|
1548
1548
|
*
|
|
1549
|
-
* The client can pass this token
|
|
1549
|
+
* The client can pass this token on place order to ensure that the
|
|
1550
1550
|
* prices the customer saw match the final prices at checkout.
|
|
1551
1551
|
*
|
|
1552
1552
|
* The server will validate the token if provided by recalculating the cart and comparing the
|
|
@@ -2724,11 +2724,11 @@ interface PlaceOrderRequest {
|
|
|
2724
2724
|
*/
|
|
2725
2725
|
cartId?: string;
|
|
2726
2726
|
/**
|
|
2727
|
-
* The
|
|
2727
|
+
* The price verification token received from `CalculateCart`'s response.
|
|
2728
2728
|
* Used to verify that the prices shown to the customer have not changed before completing checkout.
|
|
2729
2729
|
* @maxLength 3000
|
|
2730
2730
|
*/
|
|
2731
|
-
|
|
2731
|
+
priceVerificationToken?: string | null;
|
|
2732
2732
|
/**
|
|
2733
2733
|
* Payment token.
|
|
2734
2734
|
* @maxLength 100
|