@wix/auto_sdk_ecom_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 +31 -3
- package/build/cjs/index.js +2 -68
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +2 -68
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +20 -7
- package/build/cjs/meta.js +0 -68
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +31 -3
- package/build/es/index.mjs +2 -68
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +2 -68
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +20 -7
- package/build/es/meta.mjs +0 -68
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +2 -68
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +31 -3
- package/build/internal/cjs/index.typings.js +2 -68
- 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 -68
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +2 -68
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +31 -3
- package/build/internal/es/index.typings.mjs +2 -68
- 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 -68
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -31,7 +31,10 @@ interface Cart {
|
|
|
31
31
|
* @readonly
|
|
32
32
|
*/
|
|
33
33
|
lineItems?: V2LineItem[];
|
|
34
|
-
/**
|
|
34
|
+
/**
|
|
35
|
+
* The sum of all line item final prices.
|
|
36
|
+
* @readonly
|
|
37
|
+
*/
|
|
35
38
|
subtotal?: ConvertedMoney;
|
|
36
39
|
/**
|
|
37
40
|
* Optional message left by the customer.
|
|
@@ -43,6 +46,7 @@ interface Cart {
|
|
|
43
46
|
* List of coupons added to the Cart.
|
|
44
47
|
* Currently, only one coupon code is supported.
|
|
45
48
|
* @maxSize 1
|
|
49
|
+
* @readonly
|
|
46
50
|
*/
|
|
47
51
|
coupons?: Coupon[];
|
|
48
52
|
/** Information about the source of the Cart, detailing the origin or context in which the Cart was created. */
|
|
@@ -446,11 +450,6 @@ interface Image {
|
|
|
446
450
|
* @maxLength 400
|
|
447
451
|
*/
|
|
448
452
|
id?: string;
|
|
449
|
-
/**
|
|
450
|
-
* Image URL.
|
|
451
|
-
* @format WEB_URL
|
|
452
|
-
*/
|
|
453
|
-
url?: string;
|
|
454
453
|
/**
|
|
455
454
|
* Original image height.
|
|
456
455
|
* @readonly
|
|
@@ -2207,8 +2206,10 @@ interface CustomItemPaymentConfig {
|
|
|
2207
2206
|
/**
|
|
2208
2207
|
* Partial payment to be paid upfront during the checkout.
|
|
2209
2208
|
* Eligible for catalog items with `lineItem.paymentOption` type `DEPOSIT_ONLINE` only.
|
|
2209
|
+
* @format DECIMAL_VALUE
|
|
2210
|
+
* @decimalValue options { gte:0, lte:1000000000000000, maxScale:3 }
|
|
2210
2211
|
*/
|
|
2211
|
-
depositAmount?:
|
|
2212
|
+
depositAmount?: string | null;
|
|
2212
2213
|
/**
|
|
2213
2214
|
* Type of selected payment option for current item.
|
|
2214
2215
|
*
|
|
@@ -2245,6 +2246,12 @@ interface RefreshCurrentCartResponse {
|
|
|
2245
2246
|
cart?: Cart;
|
|
2246
2247
|
}
|
|
2247
2248
|
interface CalculateCurrentCartRequest {
|
|
2249
|
+
/**
|
|
2250
|
+
* Whether to retrieve the latest item prices, discounts, and inventory data from the catalogs before calculating the cart.
|
|
2251
|
+
*
|
|
2252
|
+
* Default: `false`
|
|
2253
|
+
*/
|
|
2254
|
+
refreshCart?: boolean;
|
|
2248
2255
|
/**
|
|
2249
2256
|
* Specifies the level of **business validation** to perform during cart calculation,
|
|
2250
2257
|
* by calling the [Validations service plugin](https://dev.wix.com/api/rest/wix-ecommerce/validations-integration-spi/introduction).
|
|
@@ -2634,6 +2641,12 @@ interface CalculateCartRequest {
|
|
|
2634
2641
|
* @format GUID
|
|
2635
2642
|
*/
|
|
2636
2643
|
cartId: string;
|
|
2644
|
+
/**
|
|
2645
|
+
* Whether to retrieve the latest item prices, discounts, and inventory data from the catalogs before calculating the cart.
|
|
2646
|
+
*
|
|
2647
|
+
* Default: `false`
|
|
2648
|
+
*/
|
|
2649
|
+
refreshCart?: boolean;
|
|
2637
2650
|
/**
|
|
2638
2651
|
* Specifies the level of **business validation** to perform during cart calculation,
|
|
2639
2652
|
* by calling the [Validations service plugin](https://dev.wix.com/api/rest/wix-ecommerce/validations-integration-spi/introduction).
|
|
@@ -106,18 +106,10 @@ function createCart(payload) {
|
|
|
106
106
|
paths: [
|
|
107
107
|
{ path: "cart.createdDate" },
|
|
108
108
|
{ path: "cart.updatedDate" },
|
|
109
|
-
{
|
|
110
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
111
|
-
},
|
|
112
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
113
109
|
{
|
|
114
110
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
115
111
|
},
|
|
116
112
|
{ path: "cart.lineItems.attributes.serviceProperties.scheduledDate" },
|
|
117
|
-
{
|
|
118
|
-
path: "catalogItems.catalogOverrideFields.image.urlExpirationDate"
|
|
119
|
-
},
|
|
120
|
-
{ path: "customItems.attributes.image.urlExpirationDate" },
|
|
121
113
|
{
|
|
122
114
|
path: "customItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
123
115
|
},
|
|
@@ -162,10 +154,6 @@ function createCart(payload) {
|
|
|
162
154
|
paths: [
|
|
163
155
|
{ path: "cart.createdDate" },
|
|
164
156
|
{ path: "cart.updatedDate" },
|
|
165
|
-
{
|
|
166
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
167
|
-
},
|
|
168
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
169
157
|
{
|
|
170
158
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
171
159
|
},
|
|
@@ -215,10 +203,6 @@ function getCart(payload) {
|
|
|
215
203
|
paths: [
|
|
216
204
|
{ path: "cart.createdDate" },
|
|
217
205
|
{ path: "cart.updatedDate" },
|
|
218
|
-
{
|
|
219
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
220
|
-
},
|
|
221
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
222
206
|
{
|
|
223
207
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
224
208
|
},
|
|
@@ -258,10 +242,6 @@ function updateCart(payload) {
|
|
|
258
242
|
paths: [
|
|
259
243
|
{ path: "cart.createdDate" },
|
|
260
244
|
{ path: "cart.updatedDate" },
|
|
261
|
-
{
|
|
262
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
263
|
-
},
|
|
264
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
265
245
|
{
|
|
266
246
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
267
247
|
},
|
|
@@ -302,10 +282,6 @@ function updateCart(payload) {
|
|
|
302
282
|
paths: [
|
|
303
283
|
{ path: "cart.createdDate" },
|
|
304
284
|
{ path: "cart.updatedDate" },
|
|
305
|
-
{
|
|
306
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
307
|
-
},
|
|
308
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
309
285
|
{
|
|
310
286
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
311
287
|
},
|
|
@@ -376,10 +352,6 @@ function refreshCart(payload) {
|
|
|
376
352
|
paths: [
|
|
377
353
|
{ path: "cart.createdDate" },
|
|
378
354
|
{ path: "cart.updatedDate" },
|
|
379
|
-
{
|
|
380
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
381
|
-
},
|
|
382
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
383
355
|
{
|
|
384
356
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
385
357
|
},
|
|
@@ -429,10 +401,6 @@ function calculateCart(payload) {
|
|
|
429
401
|
paths: [
|
|
430
402
|
{ path: "cart.createdDate" },
|
|
431
403
|
{ path: "cart.updatedDate" },
|
|
432
|
-
{
|
|
433
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
434
|
-
},
|
|
435
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
436
404
|
{
|
|
437
405
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
438
406
|
},
|
|
@@ -520,10 +488,6 @@ function addLineItems(payload) {
|
|
|
520
488
|
{
|
|
521
489
|
transformFn: transformSDKTimestampToRESTTimestamp,
|
|
522
490
|
paths: [
|
|
523
|
-
{
|
|
524
|
-
path: "catalogItems.catalogOverrideFields.image.urlExpirationDate"
|
|
525
|
-
},
|
|
526
|
-
{ path: "customItems.attributes.image.urlExpirationDate" },
|
|
527
491
|
{
|
|
528
492
|
path: "customItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
529
493
|
},
|
|
@@ -551,10 +515,6 @@ function addLineItems(payload) {
|
|
|
551
515
|
paths: [
|
|
552
516
|
{ path: "cart.createdDate" },
|
|
553
517
|
{ path: "cart.updatedDate" },
|
|
554
|
-
{
|
|
555
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
556
|
-
},
|
|
557
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
558
518
|
{
|
|
559
519
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
560
520
|
},
|
|
@@ -604,10 +564,6 @@ function removeLineItems(payload) {
|
|
|
604
564
|
paths: [
|
|
605
565
|
{ path: "cart.createdDate" },
|
|
606
566
|
{ path: "cart.updatedDate" },
|
|
607
|
-
{
|
|
608
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
609
|
-
},
|
|
610
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
611
567
|
{
|
|
612
568
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
613
569
|
},
|
|
@@ -657,10 +613,6 @@ function updateLineItems(payload) {
|
|
|
657
613
|
paths: [
|
|
658
614
|
{ path: "cart.createdDate" },
|
|
659
615
|
{ path: "cart.updatedDate" },
|
|
660
|
-
{
|
|
661
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
662
|
-
},
|
|
663
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
664
616
|
{
|
|
665
617
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
666
618
|
},
|
|
@@ -710,10 +662,6 @@ function addCoupon(payload) {
|
|
|
710
662
|
paths: [
|
|
711
663
|
{ path: "cart.createdDate" },
|
|
712
664
|
{ path: "cart.updatedDate" },
|
|
713
|
-
{
|
|
714
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
715
|
-
},
|
|
716
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
717
665
|
{
|
|
718
666
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
719
667
|
},
|
|
@@ -763,10 +711,6 @@ function removeCoupon(payload) {
|
|
|
763
711
|
paths: [
|
|
764
712
|
{ path: "cart.createdDate" },
|
|
765
713
|
{ path: "cart.updatedDate" },
|
|
766
|
-
{
|
|
767
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
768
|
-
},
|
|
769
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
770
714
|
{
|
|
771
715
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
772
716
|
},
|
|
@@ -816,10 +760,6 @@ function addGiftCard(payload) {
|
|
|
816
760
|
paths: [
|
|
817
761
|
{ path: "cart.createdDate" },
|
|
818
762
|
{ path: "cart.updatedDate" },
|
|
819
|
-
{
|
|
820
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
821
|
-
},
|
|
822
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
823
763
|
{
|
|
824
764
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
825
765
|
},
|
|
@@ -869,10 +809,6 @@ function removeGiftCard(payload) {
|
|
|
869
809
|
paths: [
|
|
870
810
|
{ path: "cart.createdDate" },
|
|
871
811
|
{ path: "cart.updatedDate" },
|
|
872
|
-
{
|
|
873
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
874
|
-
},
|
|
875
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
876
812
|
{
|
|
877
813
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
878
814
|
},
|
|
@@ -922,10 +858,6 @@ function markCartAsCompleted(payload) {
|
|
|
922
858
|
paths: [
|
|
923
859
|
{ path: "cart.createdDate" },
|
|
924
860
|
{ path: "cart.updatedDate" },
|
|
925
|
-
{
|
|
926
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
927
|
-
},
|
|
928
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
929
861
|
{
|
|
930
862
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
931
863
|
},
|