@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/index.d.ts
CHANGED
|
@@ -1503,7 +1503,7 @@ interface CartSummary {
|
|
|
1503
1503
|
/**
|
|
1504
1504
|
* A token representing the Cart's calculated prices.
|
|
1505
1505
|
*
|
|
1506
|
-
* The client can pass this token
|
|
1506
|
+
* The client can pass this token on place order to ensure that the
|
|
1507
1507
|
* prices the customer saw match the final prices at checkout.
|
|
1508
1508
|
*
|
|
1509
1509
|
* The server will validate the token if provided by recalculating the cart and comparing the
|
|
@@ -2679,11 +2679,11 @@ interface PlaceOrderRequest {
|
|
|
2679
2679
|
*/
|
|
2680
2680
|
cartId?: string;
|
|
2681
2681
|
/**
|
|
2682
|
-
* The
|
|
2682
|
+
* The price verification token received from `CalculateCart`'s response.
|
|
2683
2683
|
* Used to verify that the prices shown to the customer have not changed before completing checkout.
|
|
2684
2684
|
* @maxLength 3000
|
|
2685
2685
|
*/
|
|
2686
|
-
|
|
2686
|
+
priceVerificationToken?: string | null;
|
|
2687
2687
|
/**
|
|
2688
2688
|
* Payment token.
|
|
2689
2689
|
* @maxLength 100
|