@wix/auto_sdk_ecom_current-cart-v-2 1.0.22 → 1.0.23
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 +26 -2
- package/build/cjs/index.js +2 -64
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +2 -64
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +20 -7
- package/build/cjs/meta.js +0 -64
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +26 -2
- package/build/es/index.mjs +2 -64
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +2 -64
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +20 -7
- package/build/es/meta.mjs +0 -64
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +2 -64
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +26 -2
- package/build/internal/cjs/index.typings.js +2 -64
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +20 -7
- package/build/internal/cjs/meta.js +0 -64
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +2 -64
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +26 -2
- package/build/internal/es/index.typings.mjs +2 -64
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +20 -7
- package/build/internal/es/meta.mjs +0 -64
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -30,7 +30,10 @@ interface Cart {
|
|
|
30
30
|
* @readonly
|
|
31
31
|
*/
|
|
32
32
|
lineItems?: V2LineItem[];
|
|
33
|
-
/**
|
|
33
|
+
/**
|
|
34
|
+
* The sum of all line item final prices.
|
|
35
|
+
* @readonly
|
|
36
|
+
*/
|
|
34
37
|
subtotal?: ConvertedMoney;
|
|
35
38
|
/**
|
|
36
39
|
* Optional message left by the customer.
|
|
@@ -42,6 +45,7 @@ interface Cart {
|
|
|
42
45
|
* List of coupons added to the Cart.
|
|
43
46
|
* Currently, only one coupon code is supported.
|
|
44
47
|
* @maxSize 1
|
|
48
|
+
* @readonly
|
|
45
49
|
*/
|
|
46
50
|
coupons?: Coupon[];
|
|
47
51
|
/** Information about the source of the Cart, detailing the origin or context in which the Cart was created. */
|
|
@@ -445,11 +449,6 @@ interface Image {
|
|
|
445
449
|
* @maxLength 400
|
|
446
450
|
*/
|
|
447
451
|
id?: string;
|
|
448
|
-
/**
|
|
449
|
-
* Image URL.
|
|
450
|
-
* @format WEB_URL
|
|
451
|
-
*/
|
|
452
|
-
url?: string;
|
|
453
452
|
/**
|
|
454
453
|
* Original image height.
|
|
455
454
|
* @readonly
|
|
@@ -2206,8 +2205,10 @@ interface CustomItemPaymentConfig {
|
|
|
2206
2205
|
/**
|
|
2207
2206
|
* Partial payment to be paid upfront during the checkout.
|
|
2208
2207
|
* Eligible for catalog items with `lineItem.paymentOption` type `DEPOSIT_ONLINE` only.
|
|
2208
|
+
* @format DECIMAL_VALUE
|
|
2209
|
+
* @decimalValue options { gte:0, lte:1000000000000000, maxScale:3 }
|
|
2209
2210
|
*/
|
|
2210
|
-
depositAmount?:
|
|
2211
|
+
depositAmount?: string | null;
|
|
2211
2212
|
/**
|
|
2212
2213
|
* Type of selected payment option for current item.
|
|
2213
2214
|
*
|
|
@@ -2244,6 +2245,12 @@ interface RefreshCurrentCartResponse {
|
|
|
2244
2245
|
cart?: Cart;
|
|
2245
2246
|
}
|
|
2246
2247
|
interface CalculateCurrentCartRequest {
|
|
2248
|
+
/**
|
|
2249
|
+
* Whether to retrieve the latest item prices, discounts, and inventory data from the catalogs before calculating the cart.
|
|
2250
|
+
*
|
|
2251
|
+
* Default: `false`
|
|
2252
|
+
*/
|
|
2253
|
+
refreshCart?: boolean;
|
|
2247
2254
|
/**
|
|
2248
2255
|
* Specifies the level of **business validation** to perform during cart calculation,
|
|
2249
2256
|
* by calling the [Validations service plugin](https://dev.wix.com/api/rest/wix-ecommerce/validations-integration-spi/introduction).
|
|
@@ -2633,6 +2640,12 @@ interface CalculateCartRequest {
|
|
|
2633
2640
|
* @format GUID
|
|
2634
2641
|
*/
|
|
2635
2642
|
cartId?: string;
|
|
2643
|
+
/**
|
|
2644
|
+
* Whether to retrieve the latest item prices, discounts, and inventory data from the catalogs before calculating the cart.
|
|
2645
|
+
*
|
|
2646
|
+
* Default: `false`
|
|
2647
|
+
*/
|
|
2648
|
+
refreshCart?: boolean;
|
|
2636
2649
|
/**
|
|
2637
2650
|
* Specifies the level of **business validation** to perform during cart calculation,
|
|
2638
2651
|
* by calling the [Validations service plugin](https://dev.wix.com/api/rest/wix-ecommerce/validations-integration-spi/introduction).
|
package/build/cjs/meta.js
CHANGED
|
@@ -162,18 +162,10 @@ function createCurrentCart(payload) {
|
|
|
162
162
|
paths: [
|
|
163
163
|
{ path: "cart.createdDate" },
|
|
164
164
|
{ path: "cart.updatedDate" },
|
|
165
|
-
{
|
|
166
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
167
|
-
},
|
|
168
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
169
165
|
{
|
|
170
166
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
171
167
|
},
|
|
172
168
|
{ path: "cart.lineItems.attributes.serviceProperties.scheduledDate" },
|
|
173
|
-
{
|
|
174
|
-
path: "catalogItems.catalogOverrideFields.image.urlExpirationDate"
|
|
175
|
-
},
|
|
176
|
-
{ path: "customItems.attributes.image.urlExpirationDate" },
|
|
177
169
|
{
|
|
178
170
|
path: "customItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
179
171
|
},
|
|
@@ -218,10 +210,6 @@ function createCurrentCart(payload) {
|
|
|
218
210
|
paths: [
|
|
219
211
|
{ path: "cart.createdDate" },
|
|
220
212
|
{ path: "cart.updatedDate" },
|
|
221
|
-
{
|
|
222
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
223
|
-
},
|
|
224
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
225
213
|
{
|
|
226
214
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
227
215
|
},
|
|
@@ -271,10 +259,6 @@ function getCurrentCart(payload) {
|
|
|
271
259
|
paths: [
|
|
272
260
|
{ path: "cart.createdDate" },
|
|
273
261
|
{ path: "cart.updatedDate" },
|
|
274
|
-
{
|
|
275
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
276
|
-
},
|
|
277
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
278
262
|
{
|
|
279
263
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
280
264
|
},
|
|
@@ -314,10 +298,6 @@ function updateCurrentCart(payload) {
|
|
|
314
298
|
paths: [
|
|
315
299
|
{ path: "cart.createdDate" },
|
|
316
300
|
{ path: "cart.updatedDate" },
|
|
317
|
-
{
|
|
318
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
319
|
-
},
|
|
320
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
321
301
|
{
|
|
322
302
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
323
303
|
},
|
|
@@ -358,10 +338,6 @@ function updateCurrentCart(payload) {
|
|
|
358
338
|
paths: [
|
|
359
339
|
{ path: "cart.createdDate" },
|
|
360
340
|
{ path: "cart.updatedDate" },
|
|
361
|
-
{
|
|
362
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
363
|
-
},
|
|
364
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
365
341
|
{
|
|
366
342
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
367
343
|
},
|
|
@@ -432,10 +408,6 @@ function refreshCurrentCart(payload) {
|
|
|
432
408
|
paths: [
|
|
433
409
|
{ path: "cart.createdDate" },
|
|
434
410
|
{ path: "cart.updatedDate" },
|
|
435
|
-
{
|
|
436
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
437
|
-
},
|
|
438
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
439
411
|
{
|
|
440
412
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
441
413
|
},
|
|
@@ -485,10 +457,6 @@ function calculateCurrentCart(payload) {
|
|
|
485
457
|
paths: [
|
|
486
458
|
{ path: "cart.createdDate" },
|
|
487
459
|
{ path: "cart.updatedDate" },
|
|
488
|
-
{
|
|
489
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
490
|
-
},
|
|
491
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
492
460
|
{
|
|
493
461
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
494
462
|
},
|
|
@@ -534,10 +502,6 @@ function addLineItemsToCurrentCart(payload) {
|
|
|
534
502
|
{
|
|
535
503
|
transformFn: import_timestamp.transformSDKTimestampToRESTTimestamp,
|
|
536
504
|
paths: [
|
|
537
|
-
{
|
|
538
|
-
path: "catalogItems.catalogOverrideFields.image.urlExpirationDate"
|
|
539
|
-
},
|
|
540
|
-
{ path: "customItems.attributes.image.urlExpirationDate" },
|
|
541
505
|
{
|
|
542
506
|
path: "customItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
543
507
|
},
|
|
@@ -565,10 +529,6 @@ function addLineItemsToCurrentCart(payload) {
|
|
|
565
529
|
paths: [
|
|
566
530
|
{ path: "cart.createdDate" },
|
|
567
531
|
{ path: "cart.updatedDate" },
|
|
568
|
-
{
|
|
569
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
570
|
-
},
|
|
571
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
572
532
|
{
|
|
573
533
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
574
534
|
},
|
|
@@ -618,10 +578,6 @@ function removeLineItemsFromCurrentCart(payload) {
|
|
|
618
578
|
paths: [
|
|
619
579
|
{ path: "cart.createdDate" },
|
|
620
580
|
{ path: "cart.updatedDate" },
|
|
621
|
-
{
|
|
622
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
623
|
-
},
|
|
624
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
625
581
|
{
|
|
626
582
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
627
583
|
},
|
|
@@ -671,10 +627,6 @@ function updateLineItemsInCurrentCart(payload) {
|
|
|
671
627
|
paths: [
|
|
672
628
|
{ path: "cart.createdDate" },
|
|
673
629
|
{ path: "cart.updatedDate" },
|
|
674
|
-
{
|
|
675
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
676
|
-
},
|
|
677
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
678
630
|
{
|
|
679
631
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
680
632
|
},
|
|
@@ -724,10 +676,6 @@ function addCouponToCurrentCart(payload) {
|
|
|
724
676
|
paths: [
|
|
725
677
|
{ path: "cart.createdDate" },
|
|
726
678
|
{ path: "cart.updatedDate" },
|
|
727
|
-
{
|
|
728
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
729
|
-
},
|
|
730
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
731
679
|
{
|
|
732
680
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
733
681
|
},
|
|
@@ -777,10 +725,6 @@ function removeCouponFromCurrentCart(payload) {
|
|
|
777
725
|
paths: [
|
|
778
726
|
{ path: "cart.createdDate" },
|
|
779
727
|
{ path: "cart.updatedDate" },
|
|
780
|
-
{
|
|
781
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
782
|
-
},
|
|
783
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
784
728
|
{
|
|
785
729
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
786
730
|
},
|
|
@@ -830,10 +774,6 @@ function addGiftCardToCurrentCart(payload) {
|
|
|
830
774
|
paths: [
|
|
831
775
|
{ path: "cart.createdDate" },
|
|
832
776
|
{ path: "cart.updatedDate" },
|
|
833
|
-
{
|
|
834
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
835
|
-
},
|
|
836
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
837
777
|
{
|
|
838
778
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
839
779
|
},
|
|
@@ -883,10 +823,6 @@ function removeGiftCardFromCurrentCart(payload) {
|
|
|
883
823
|
paths: [
|
|
884
824
|
{ path: "cart.createdDate" },
|
|
885
825
|
{ path: "cart.updatedDate" },
|
|
886
|
-
{
|
|
887
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
888
|
-
},
|
|
889
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
890
826
|
{
|
|
891
827
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
892
828
|
},
|