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