@wix/auto_sdk_ecom_cart-v-2 1.0.15 → 1.0.17
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 +68 -38
- package/build/cjs/index.js +53 -17
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +1 -1
- package/build/cjs/index.typings.js +53 -17
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +155 -33
- package/build/cjs/meta.js +51 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +68 -38
- package/build/es/index.mjs +53 -15
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -1
- package/build/es/index.typings.mjs +53 -15
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +155 -33
- package/build/es/meta.mjs +51 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +53 -17
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +69 -39
- package/build/internal/cjs/index.typings.js +53 -17
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +155 -33
- package/build/internal/cjs/meta.js +51 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +53 -15
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +69 -39
- package/build/internal/es/index.typings.mjs +53 -15
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +155 -33
- package/build/internal/es/meta.mjs +51 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -125,7 +125,7 @@ interface V2LineItem {
|
|
|
125
125
|
/**
|
|
126
126
|
* Custom extended fields for the line item object.
|
|
127
127
|
*
|
|
128
|
-
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
|
|
128
|
+
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured using the 'Checkout & Orders - Line Items Schema Plugin' in the app dashboard before they can be accessed with API calls.
|
|
129
129
|
*/
|
|
130
130
|
extendedFields?: ExtendedFields;
|
|
131
131
|
/**
|
|
@@ -1460,16 +1460,6 @@ interface CartSummary {
|
|
|
1460
1460
|
priceSummary?: PriceSummary;
|
|
1461
1461
|
/** Payment details summarizing how the customer will pay for the order. */
|
|
1462
1462
|
paymentSummary?: PaymentSummary;
|
|
1463
|
-
/**
|
|
1464
|
-
* List of errors that occurred during the calculation process.
|
|
1465
|
-
* @maxSize 100
|
|
1466
|
-
*/
|
|
1467
|
-
errors?: CalculationError[];
|
|
1468
|
-
/**
|
|
1469
|
-
* List of business violations raised by the Validations service plugin ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/service-plugins/validations/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/service-plugins/validations-integration-service-plugin/introduction)).
|
|
1470
|
-
* @maxSize 100
|
|
1471
|
-
*/
|
|
1472
|
-
violations?: Violation[];
|
|
1473
1463
|
/**
|
|
1474
1464
|
* A token representing the Cart's calculated prices.
|
|
1475
1465
|
*
|
|
@@ -1486,6 +1476,17 @@ interface CartSummary {
|
|
|
1486
1476
|
* @maxLength 1024
|
|
1487
1477
|
*/
|
|
1488
1478
|
priceVerificationToken?: string | null;
|
|
1479
|
+
/**
|
|
1480
|
+
* List of errors that occurred during the calculation process, returned by Totals Calculator.
|
|
1481
|
+
* TODO: Temporary field for backward compatibility; will be removed once we introduce the unified 'violations' model.
|
|
1482
|
+
*/
|
|
1483
|
+
calculationErrors?: CalculationErrors;
|
|
1484
|
+
/**
|
|
1485
|
+
* List of business violations raised by the Validations service plugin ([SDK](https://dev.wix.com/docs/sdk/backend-modules/ecom/service-plugins/validations/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/e-commerce/service-plugins/validations-integration-service-plugin/introduction)).
|
|
1486
|
+
* TODO: Temporary field for backward compatibility; will be removed once we introduce the unified 'violations' model.
|
|
1487
|
+
* @maxSize 100
|
|
1488
|
+
*/
|
|
1489
|
+
spiViolations?: Violation[];
|
|
1489
1490
|
}
|
|
1490
1491
|
interface LineItemSummary {
|
|
1491
1492
|
/**
|
|
@@ -1730,32 +1731,149 @@ interface Charge {
|
|
|
1730
1731
|
/** The billing date from which the charge starts. */
|
|
1731
1732
|
cycleBillingDate?: Date | null;
|
|
1732
1733
|
}
|
|
1733
|
-
interface
|
|
1734
|
-
/**
|
|
1735
|
-
|
|
1736
|
-
/**
|
|
1737
|
-
|
|
1734
|
+
interface CalculationErrors extends CalculationErrorsShippingCalculationErrorOneOf {
|
|
1735
|
+
/** General shipping calculation error. */
|
|
1736
|
+
generalShippingCalculationError?: Details;
|
|
1737
|
+
/** Carrier errors. */
|
|
1738
|
+
carrierErrors?: CarrierErrors;
|
|
1739
|
+
/** Tax calculation error. */
|
|
1740
|
+
taxCalculationError?: Details;
|
|
1741
|
+
/** Coupon calculation error. */
|
|
1742
|
+
couponCalculationError?: Details;
|
|
1743
|
+
/** Gift card calculation error. */
|
|
1744
|
+
giftCardCalculationError?: Details;
|
|
1745
|
+
/**
|
|
1746
|
+
* Order validation errors.
|
|
1747
|
+
* @maxSize 100
|
|
1748
|
+
*/
|
|
1749
|
+
orderValidationErrors?: ApplicationError[];
|
|
1738
1750
|
/**
|
|
1739
|
-
*
|
|
1740
|
-
*
|
|
1751
|
+
* Membership payment methods calculation errors
|
|
1752
|
+
* For example, will indicate that a line item that must be paid with membership payment doesn't have one or selected memberships are invalid
|
|
1741
1753
|
*/
|
|
1742
|
-
|
|
1754
|
+
membershipError?: Details;
|
|
1755
|
+
/** Discount Rule calculation error. */
|
|
1756
|
+
discountsCalculationError?: Details;
|
|
1743
1757
|
}
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
GIFT_CARDS = "GIFT_CARDS"
|
|
1758
|
+
/** @oneof */
|
|
1759
|
+
interface CalculationErrorsShippingCalculationErrorOneOf {
|
|
1760
|
+
/** General shipping calculation error. */
|
|
1761
|
+
generalShippingCalculationError?: Details;
|
|
1762
|
+
/** Carrier errors. */
|
|
1763
|
+
carrierErrors?: CarrierErrors;
|
|
1751
1764
|
}
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1765
|
+
interface Details extends DetailsKindOneOf {
|
|
1766
|
+
applicationError?: ApplicationError;
|
|
1767
|
+
validationError?: ValidationError;
|
|
1768
|
+
systemError?: SystemError;
|
|
1769
|
+
/**
|
|
1770
|
+
* deprecated in API's - to enable migration from rendering arbitrary tracing to rest response
|
|
1771
|
+
* @deprecated
|
|
1772
|
+
*/
|
|
1773
|
+
tracing?: Record<string, string>;
|
|
1774
|
+
}
|
|
1775
|
+
/** @oneof */
|
|
1776
|
+
interface DetailsKindOneOf {
|
|
1777
|
+
applicationError?: ApplicationError;
|
|
1778
|
+
validationError?: ValidationError;
|
|
1779
|
+
systemError?: SystemError;
|
|
1780
|
+
}
|
|
1781
|
+
interface ApplicationError {
|
|
1782
|
+
/** Error code. */
|
|
1783
|
+
code?: string;
|
|
1784
|
+
/** Description of the error. */
|
|
1785
|
+
description?: string;
|
|
1786
|
+
/** Data related to the error. */
|
|
1787
|
+
data?: Record<string, any> | null;
|
|
1788
|
+
}
|
|
1789
|
+
/**
|
|
1790
|
+
* example result:
|
|
1791
|
+
* {
|
|
1792
|
+
* "fieldViolations": [
|
|
1793
|
+
* {
|
|
1794
|
+
* "field": "fieldA",
|
|
1795
|
+
* "description": "invalid music note. supported notes: [do,re,mi,fa,sol,la,ti]",
|
|
1796
|
+
* "violatedRule": "OTHER",
|
|
1797
|
+
* "ruleName": "INVALID_NOTE",
|
|
1798
|
+
* "data": {
|
|
1799
|
+
* "value": "FI"
|
|
1800
|
+
* }
|
|
1801
|
+
* },
|
|
1802
|
+
* {
|
|
1803
|
+
* "field": "fieldB",
|
|
1804
|
+
* "description": "field value out of range. supported range: [0-20]",
|
|
1805
|
+
* "violatedRule": "MAX",
|
|
1806
|
+
* "data": {
|
|
1807
|
+
* "threshold": 20
|
|
1808
|
+
* }
|
|
1809
|
+
* },
|
|
1810
|
+
* {
|
|
1811
|
+
* "field": "fieldC",
|
|
1812
|
+
* "description": "invalid phone number. provide a valid phone number of size: [7-12], supported characters: [0-9, +, -, (, )]",
|
|
1813
|
+
* "violatedRule": "FORMAT",
|
|
1814
|
+
* "data": {
|
|
1815
|
+
* "type": "PHONE"
|
|
1816
|
+
* }
|
|
1817
|
+
* }
|
|
1818
|
+
* ]
|
|
1819
|
+
* }
|
|
1820
|
+
*/
|
|
1821
|
+
interface ValidationError {
|
|
1822
|
+
fieldViolations?: FieldViolation[];
|
|
1823
|
+
}
|
|
1824
|
+
declare enum RuleType {
|
|
1825
|
+
VALIDATION = "VALIDATION",
|
|
1826
|
+
OTHER = "OTHER",
|
|
1827
|
+
MAX = "MAX",
|
|
1828
|
+
MIN = "MIN",
|
|
1829
|
+
MAX_LENGTH = "MAX_LENGTH",
|
|
1830
|
+
MIN_LENGTH = "MIN_LENGTH",
|
|
1831
|
+
MAX_SIZE = "MAX_SIZE",
|
|
1832
|
+
MIN_SIZE = "MIN_SIZE",
|
|
1833
|
+
FORMAT = "FORMAT",
|
|
1834
|
+
DECIMAL_LTE = "DECIMAL_LTE",
|
|
1835
|
+
DECIMAL_GTE = "DECIMAL_GTE",
|
|
1836
|
+
DECIMAL_LT = "DECIMAL_LT",
|
|
1837
|
+
DECIMAL_GT = "DECIMAL_GT",
|
|
1838
|
+
DECIMAL_MAX_SCALE = "DECIMAL_MAX_SCALE",
|
|
1839
|
+
INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
|
|
1840
|
+
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
1841
|
+
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
1842
|
+
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
1843
|
+
EXACT_LENGTH = "EXACT_LENGTH",
|
|
1844
|
+
EXACT_SIZE = "EXACT_SIZE",
|
|
1845
|
+
REQUIRED_ONE_OF_FIELD = "REQUIRED_ONE_OF_FIELD"
|
|
1756
1846
|
}
|
|
1757
1847
|
/** @enumType */
|
|
1758
|
-
type
|
|
1848
|
+
type RuleTypeWithLiterals = RuleType | 'VALIDATION' | 'OTHER' | 'MAX' | 'MIN' | 'MAX_LENGTH' | 'MIN_LENGTH' | 'MAX_SIZE' | 'MIN_SIZE' | 'FORMAT' | 'DECIMAL_LTE' | 'DECIMAL_GTE' | 'DECIMAL_LT' | 'DECIMAL_GT' | 'DECIMAL_MAX_SCALE' | 'INVALID_ENUM_VALUE' | 'REQUIRED_FIELD' | 'FIELD_NOT_ALLOWED' | 'ONE_OF_ALIGNMENT' | 'EXACT_LENGTH' | 'EXACT_SIZE' | 'REQUIRED_ONE_OF_FIELD';
|
|
1849
|
+
interface FieldViolation {
|
|
1850
|
+
field?: string;
|
|
1851
|
+
description?: string;
|
|
1852
|
+
violatedRule?: RuleTypeWithLiterals;
|
|
1853
|
+
/** applicable when violated_rule=OTHER */
|
|
1854
|
+
ruleName?: string | null;
|
|
1855
|
+
data?: Record<string, any> | null;
|
|
1856
|
+
}
|
|
1857
|
+
interface SystemError {
|
|
1858
|
+
/** Error code. */
|
|
1859
|
+
errorCode?: string | null;
|
|
1860
|
+
}
|
|
1861
|
+
interface CarrierErrors {
|
|
1862
|
+
/**
|
|
1863
|
+
* Carrier errors.
|
|
1864
|
+
* @maxSize 100
|
|
1865
|
+
*/
|
|
1866
|
+
errors?: CarrierError[];
|
|
1867
|
+
}
|
|
1868
|
+
interface CarrierError {
|
|
1869
|
+
/**
|
|
1870
|
+
* Carrier ID.
|
|
1871
|
+
* @format GUID
|
|
1872
|
+
*/
|
|
1873
|
+
carrierId?: string;
|
|
1874
|
+
/** Error details. */
|
|
1875
|
+
error?: Details;
|
|
1876
|
+
}
|
|
1759
1877
|
interface Violation {
|
|
1760
1878
|
/** Severity of the violation. The violations are shown on the cart and checkout pages. A warning is displayed as yellow, and allows a site visitor to proceed with caution. An error is displayed as red, and doesn't allow a site visitor to proceed with the eCommerce flow. */
|
|
1761
1879
|
severity?: SeverityWithLiterals;
|
|
@@ -2175,10 +2293,14 @@ interface PlaceOrderRequest {
|
|
|
2175
2293
|
/**
|
|
2176
2294
|
* The pricing token received from `CalculateCart`'s response.
|
|
2177
2295
|
* Used to verify that the prices shown to the customer have not changed before completing checkout.
|
|
2178
|
-
* @maxLength
|
|
2179
|
-
* @readonly
|
|
2296
|
+
* @maxLength 3000
|
|
2180
2297
|
*/
|
|
2181
2298
|
pricingToken?: string | null;
|
|
2299
|
+
/**
|
|
2300
|
+
* Payment token.
|
|
2301
|
+
* @maxLength 100
|
|
2302
|
+
*/
|
|
2303
|
+
paymentToken?: string | null;
|
|
2182
2304
|
/** Urls to redirect to after payment is made. */
|
|
2183
2305
|
redirectUrls?: RedirectUrls;
|
|
2184
2306
|
/** Indicates the payment method should be saved on the order */
|
package/build/cjs/meta.js
CHANGED
|
@@ -189,6 +189,9 @@ function createCart(payload) {
|
|
|
189
189
|
method: "POST",
|
|
190
190
|
methodFqn: "wix.ecom.cart.v2.CartService.CreateCart",
|
|
191
191
|
packageName: PACKAGE_NAME,
|
|
192
|
+
migrationOptions: {
|
|
193
|
+
optInTransformResponse: true
|
|
194
|
+
},
|
|
192
195
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
193
196
|
protoPath: "/v2/carts",
|
|
194
197
|
data: serializedData,
|
|
@@ -239,6 +242,9 @@ function getCart(payload) {
|
|
|
239
242
|
method: "GET",
|
|
240
243
|
methodFqn: "wix.ecom.cart.v2.CartService.GetCart",
|
|
241
244
|
packageName: PACKAGE_NAME,
|
|
245
|
+
migrationOptions: {
|
|
246
|
+
optInTransformResponse: true
|
|
247
|
+
},
|
|
242
248
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
243
249
|
protoPath: "/v2/carts/{cartId}",
|
|
244
250
|
data: payload,
|
|
@@ -323,6 +329,9 @@ function updateCart(payload) {
|
|
|
323
329
|
method: "PATCH",
|
|
324
330
|
methodFqn: "wix.ecom.cart.v2.CartService.UpdateCart",
|
|
325
331
|
packageName: PACKAGE_NAME,
|
|
332
|
+
migrationOptions: {
|
|
333
|
+
optInTransformResponse: true
|
|
334
|
+
},
|
|
326
335
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
327
336
|
protoPath: "/v2/carts/{cart.id}",
|
|
328
337
|
data: serializedData,
|
|
@@ -373,6 +382,9 @@ function deleteCart(payload) {
|
|
|
373
382
|
method: "DELETE",
|
|
374
383
|
methodFqn: "wix.ecom.cart.v2.CartService.DeleteCart",
|
|
375
384
|
packageName: PACKAGE_NAME,
|
|
385
|
+
migrationOptions: {
|
|
386
|
+
optInTransformResponse: true
|
|
387
|
+
},
|
|
376
388
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
377
389
|
protoPath: "/v2/carts/{cartId}",
|
|
378
390
|
data: payload,
|
|
@@ -391,6 +403,9 @@ function refreshCart(payload) {
|
|
|
391
403
|
method: "POST",
|
|
392
404
|
methodFqn: "wix.ecom.cart.v2.CartService.RefreshCart",
|
|
393
405
|
packageName: PACKAGE_NAME,
|
|
406
|
+
migrationOptions: {
|
|
407
|
+
optInTransformResponse: true
|
|
408
|
+
},
|
|
394
409
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
395
410
|
protoPath: "/v2/carts/{cartId}/refresh",
|
|
396
411
|
data: payload,
|
|
@@ -441,6 +456,9 @@ function calculateCart(payload) {
|
|
|
441
456
|
method: "POST",
|
|
442
457
|
methodFqn: "wix.ecom.cart.v2.CartService.CalculateCart",
|
|
443
458
|
packageName: PACKAGE_NAME,
|
|
459
|
+
migrationOptions: {
|
|
460
|
+
optInTransformResponse: true
|
|
461
|
+
},
|
|
444
462
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
445
463
|
protoPath: "/v2/carts/{cartId}/calculate",
|
|
446
464
|
data: payload,
|
|
@@ -494,6 +512,9 @@ function getCheckoutUrl(payload) {
|
|
|
494
512
|
method: "POST",
|
|
495
513
|
methodFqn: "wix.ecom.cart.v2.CartService.GetCheckoutURL",
|
|
496
514
|
packageName: PACKAGE_NAME,
|
|
515
|
+
migrationOptions: {
|
|
516
|
+
optInTransformResponse: true
|
|
517
|
+
},
|
|
497
518
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
498
519
|
protoPath: "/v2/carts/{cartId}/get-checkout-url",
|
|
499
520
|
data: payload,
|
|
@@ -512,6 +533,9 @@ function placeOrder(payload) {
|
|
|
512
533
|
method: "POST",
|
|
513
534
|
methodFqn: "wix.ecom.cart.v2.CartService.PlaceOrder",
|
|
514
535
|
packageName: PACKAGE_NAME,
|
|
536
|
+
migrationOptions: {
|
|
537
|
+
optInTransformResponse: true
|
|
538
|
+
},
|
|
515
539
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
516
540
|
protoPath: "/v2/carts/{cartId}/place-order",
|
|
517
541
|
data: payload,
|
|
@@ -554,6 +578,9 @@ function addLineItems(payload) {
|
|
|
554
578
|
method: "POST",
|
|
555
579
|
methodFqn: "wix.ecom.cart.v2.CartService.AddLineItems",
|
|
556
580
|
packageName: PACKAGE_NAME,
|
|
581
|
+
migrationOptions: {
|
|
582
|
+
optInTransformResponse: true
|
|
583
|
+
},
|
|
557
584
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
558
585
|
protoPath: "/v2/carts/{cartId}/add-line-items",
|
|
559
586
|
data: serializedData,
|
|
@@ -604,6 +631,9 @@ function removeLineItems(payload) {
|
|
|
604
631
|
method: "POST",
|
|
605
632
|
methodFqn: "wix.ecom.cart.v2.CartService.RemoveLineItems",
|
|
606
633
|
packageName: PACKAGE_NAME,
|
|
634
|
+
migrationOptions: {
|
|
635
|
+
optInTransformResponse: true
|
|
636
|
+
},
|
|
607
637
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
608
638
|
protoPath: "/v2/carts/{cartId}/remove-line-items",
|
|
609
639
|
data: payload,
|
|
@@ -654,6 +684,9 @@ function updateLineItems(payload) {
|
|
|
654
684
|
method: "POST",
|
|
655
685
|
methodFqn: "wix.ecom.cart.v2.CartService.UpdateLineItems",
|
|
656
686
|
packageName: PACKAGE_NAME,
|
|
687
|
+
migrationOptions: {
|
|
688
|
+
optInTransformResponse: true
|
|
689
|
+
},
|
|
657
690
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
658
691
|
protoPath: "/v2/carts/{cartId}/update-line-items",
|
|
659
692
|
data: payload,
|
|
@@ -704,6 +737,9 @@ function addCoupon(payload) {
|
|
|
704
737
|
method: "POST",
|
|
705
738
|
methodFqn: "wix.ecom.cart.v2.CartService.AddCoupon",
|
|
706
739
|
packageName: PACKAGE_NAME,
|
|
740
|
+
migrationOptions: {
|
|
741
|
+
optInTransformResponse: true
|
|
742
|
+
},
|
|
707
743
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
708
744
|
protoPath: "/v2/carts/{cartId}/add-coupon",
|
|
709
745
|
data: payload,
|
|
@@ -754,6 +790,9 @@ function removeCoupon(payload) {
|
|
|
754
790
|
method: "POST",
|
|
755
791
|
methodFqn: "wix.ecom.cart.v2.CartService.RemoveCoupon",
|
|
756
792
|
packageName: PACKAGE_NAME,
|
|
793
|
+
migrationOptions: {
|
|
794
|
+
optInTransformResponse: true
|
|
795
|
+
},
|
|
757
796
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
758
797
|
protoPath: "/v2/carts/{cartId}/remove-coupon",
|
|
759
798
|
data: payload,
|
|
@@ -804,6 +843,9 @@ function addGiftCard(payload) {
|
|
|
804
843
|
method: "POST",
|
|
805
844
|
methodFqn: "wix.ecom.cart.v2.CartService.AddGiftCard",
|
|
806
845
|
packageName: PACKAGE_NAME,
|
|
846
|
+
migrationOptions: {
|
|
847
|
+
optInTransformResponse: true
|
|
848
|
+
},
|
|
807
849
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
808
850
|
protoPath: "/v2/carts/{cartId}/add-gift-card",
|
|
809
851
|
data: payload,
|
|
@@ -854,6 +896,9 @@ function removeGiftCard(payload) {
|
|
|
854
896
|
method: "POST",
|
|
855
897
|
methodFqn: "wix.ecom.cart.v2.CartService.RemoveGiftCard",
|
|
856
898
|
packageName: PACKAGE_NAME,
|
|
899
|
+
migrationOptions: {
|
|
900
|
+
optInTransformResponse: true
|
|
901
|
+
},
|
|
857
902
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
858
903
|
protoPath: "/v2/carts/{cartId}/remove-gift-card",
|
|
859
904
|
data: payload,
|
|
@@ -904,6 +949,9 @@ function markCartAsCompleted(payload) {
|
|
|
904
949
|
method: "POST",
|
|
905
950
|
methodFqn: "wix.ecom.cart.v2.CartService.MarkCartAsCompleted",
|
|
906
951
|
packageName: PACKAGE_NAME,
|
|
952
|
+
migrationOptions: {
|
|
953
|
+
optInTransformResponse: true
|
|
954
|
+
},
|
|
907
955
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
908
956
|
protoPath: "/v2/carts/{cartId}/mark-cart-as-completed",
|
|
909
957
|
data: payload,
|
|
@@ -954,6 +1002,9 @@ function handleAsyncCheckoutCompletion(payload) {
|
|
|
954
1002
|
method: "POST",
|
|
955
1003
|
methodFqn: "wix.ecom.cart.v2.CartService.HandleAsyncCheckoutCompletion",
|
|
956
1004
|
packageName: PACKAGE_NAME,
|
|
1005
|
+
migrationOptions: {
|
|
1006
|
+
optInTransformResponse: true
|
|
1007
|
+
},
|
|
957
1008
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
958
1009
|
protoPath: "/v2/carts/handle-async-checkout-completion",
|
|
959
1010
|
data: payload,
|