@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
|
@@ -126,7 +126,7 @@ interface V2LineItem {
|
|
|
126
126
|
/**
|
|
127
127
|
* Custom extended fields for the line item object.
|
|
128
128
|
*
|
|
129
|
-
* [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.
|
|
129
|
+
* [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.
|
|
130
130
|
*/
|
|
131
131
|
extendedFields?: ExtendedFields;
|
|
132
132
|
/**
|
|
@@ -1461,16 +1461,6 @@ interface CartSummary {
|
|
|
1461
1461
|
priceSummary?: PriceSummary;
|
|
1462
1462
|
/** Payment details summarizing how the customer will pay for the order. */
|
|
1463
1463
|
paymentSummary?: PaymentSummary;
|
|
1464
|
-
/**
|
|
1465
|
-
* List of errors that occurred during the calculation process.
|
|
1466
|
-
* @maxSize 100
|
|
1467
|
-
*/
|
|
1468
|
-
errors?: CalculationError[];
|
|
1469
|
-
/**
|
|
1470
|
-
* 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)).
|
|
1471
|
-
* @maxSize 100
|
|
1472
|
-
*/
|
|
1473
|
-
violations?: Violation[];
|
|
1474
1464
|
/**
|
|
1475
1465
|
* A token representing the Cart's calculated prices.
|
|
1476
1466
|
*
|
|
@@ -1487,6 +1477,17 @@ interface CartSummary {
|
|
|
1487
1477
|
* @maxLength 1024
|
|
1488
1478
|
*/
|
|
1489
1479
|
priceVerificationToken?: string | null;
|
|
1480
|
+
/**
|
|
1481
|
+
* List of errors that occurred during the calculation process, returned by Totals Calculator.
|
|
1482
|
+
* TODO: Temporary field for backward compatibility; will be removed once we introduce the unified 'violations' model.
|
|
1483
|
+
*/
|
|
1484
|
+
calculationErrors?: CalculationErrors;
|
|
1485
|
+
/**
|
|
1486
|
+
* 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)).
|
|
1487
|
+
* TODO: Temporary field for backward compatibility; will be removed once we introduce the unified 'violations' model.
|
|
1488
|
+
* @maxSize 100
|
|
1489
|
+
*/
|
|
1490
|
+
spiViolations?: Violation[];
|
|
1490
1491
|
}
|
|
1491
1492
|
interface LineItemSummary {
|
|
1492
1493
|
/**
|
|
@@ -1731,32 +1732,149 @@ interface Charge {
|
|
|
1731
1732
|
/** The billing date from which the charge starts. */
|
|
1732
1733
|
cycleBillingDate?: Date | null;
|
|
1733
1734
|
}
|
|
1734
|
-
interface
|
|
1735
|
-
/**
|
|
1736
|
-
|
|
1737
|
-
/**
|
|
1738
|
-
|
|
1735
|
+
interface CalculationErrors extends CalculationErrorsShippingCalculationErrorOneOf {
|
|
1736
|
+
/** General shipping calculation error. */
|
|
1737
|
+
generalShippingCalculationError?: Details;
|
|
1738
|
+
/** Carrier errors. */
|
|
1739
|
+
carrierErrors?: CarrierErrors;
|
|
1740
|
+
/** Tax calculation error. */
|
|
1741
|
+
taxCalculationError?: Details;
|
|
1742
|
+
/** Coupon calculation error. */
|
|
1743
|
+
couponCalculationError?: Details;
|
|
1744
|
+
/** Gift card calculation error. */
|
|
1745
|
+
giftCardCalculationError?: Details;
|
|
1746
|
+
/**
|
|
1747
|
+
* Order validation errors.
|
|
1748
|
+
* @maxSize 100
|
|
1749
|
+
*/
|
|
1750
|
+
orderValidationErrors?: ApplicationError[];
|
|
1739
1751
|
/**
|
|
1740
|
-
*
|
|
1741
|
-
*
|
|
1752
|
+
* Membership payment methods calculation errors
|
|
1753
|
+
* For example, will indicate that a line item that must be paid with membership payment doesn't have one or selected memberships are invalid
|
|
1742
1754
|
*/
|
|
1743
|
-
|
|
1755
|
+
membershipError?: Details;
|
|
1756
|
+
/** Discount Rule calculation error. */
|
|
1757
|
+
discountsCalculationError?: Details;
|
|
1744
1758
|
}
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
GIFT_CARDS = "GIFT_CARDS"
|
|
1759
|
+
/** @oneof */
|
|
1760
|
+
interface CalculationErrorsShippingCalculationErrorOneOf {
|
|
1761
|
+
/** General shipping calculation error. */
|
|
1762
|
+
generalShippingCalculationError?: Details;
|
|
1763
|
+
/** Carrier errors. */
|
|
1764
|
+
carrierErrors?: CarrierErrors;
|
|
1752
1765
|
}
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1766
|
+
interface Details extends DetailsKindOneOf {
|
|
1767
|
+
applicationError?: ApplicationError;
|
|
1768
|
+
validationError?: ValidationError;
|
|
1769
|
+
systemError?: SystemError;
|
|
1770
|
+
/**
|
|
1771
|
+
* deprecated in API's - to enable migration from rendering arbitrary tracing to rest response
|
|
1772
|
+
* @deprecated
|
|
1773
|
+
*/
|
|
1774
|
+
tracing?: Record<string, string>;
|
|
1775
|
+
}
|
|
1776
|
+
/** @oneof */
|
|
1777
|
+
interface DetailsKindOneOf {
|
|
1778
|
+
applicationError?: ApplicationError;
|
|
1779
|
+
validationError?: ValidationError;
|
|
1780
|
+
systemError?: SystemError;
|
|
1781
|
+
}
|
|
1782
|
+
interface ApplicationError {
|
|
1783
|
+
/** Error code. */
|
|
1784
|
+
code?: string;
|
|
1785
|
+
/** Description of the error. */
|
|
1786
|
+
description?: string;
|
|
1787
|
+
/** Data related to the error. */
|
|
1788
|
+
data?: Record<string, any> | null;
|
|
1789
|
+
}
|
|
1790
|
+
/**
|
|
1791
|
+
* example result:
|
|
1792
|
+
* {
|
|
1793
|
+
* "fieldViolations": [
|
|
1794
|
+
* {
|
|
1795
|
+
* "field": "fieldA",
|
|
1796
|
+
* "description": "invalid music note. supported notes: [do,re,mi,fa,sol,la,ti]",
|
|
1797
|
+
* "violatedRule": "OTHER",
|
|
1798
|
+
* "ruleName": "INVALID_NOTE",
|
|
1799
|
+
* "data": {
|
|
1800
|
+
* "value": "FI"
|
|
1801
|
+
* }
|
|
1802
|
+
* },
|
|
1803
|
+
* {
|
|
1804
|
+
* "field": "fieldB",
|
|
1805
|
+
* "description": "field value out of range. supported range: [0-20]",
|
|
1806
|
+
* "violatedRule": "MAX",
|
|
1807
|
+
* "data": {
|
|
1808
|
+
* "threshold": 20
|
|
1809
|
+
* }
|
|
1810
|
+
* },
|
|
1811
|
+
* {
|
|
1812
|
+
* "field": "fieldC",
|
|
1813
|
+
* "description": "invalid phone number. provide a valid phone number of size: [7-12], supported characters: [0-9, +, -, (, )]",
|
|
1814
|
+
* "violatedRule": "FORMAT",
|
|
1815
|
+
* "data": {
|
|
1816
|
+
* "type": "PHONE"
|
|
1817
|
+
* }
|
|
1818
|
+
* }
|
|
1819
|
+
* ]
|
|
1820
|
+
* }
|
|
1821
|
+
*/
|
|
1822
|
+
interface ValidationError {
|
|
1823
|
+
fieldViolations?: FieldViolation[];
|
|
1824
|
+
}
|
|
1825
|
+
declare enum RuleType {
|
|
1826
|
+
VALIDATION = "VALIDATION",
|
|
1827
|
+
OTHER = "OTHER",
|
|
1828
|
+
MAX = "MAX",
|
|
1829
|
+
MIN = "MIN",
|
|
1830
|
+
MAX_LENGTH = "MAX_LENGTH",
|
|
1831
|
+
MIN_LENGTH = "MIN_LENGTH",
|
|
1832
|
+
MAX_SIZE = "MAX_SIZE",
|
|
1833
|
+
MIN_SIZE = "MIN_SIZE",
|
|
1834
|
+
FORMAT = "FORMAT",
|
|
1835
|
+
DECIMAL_LTE = "DECIMAL_LTE",
|
|
1836
|
+
DECIMAL_GTE = "DECIMAL_GTE",
|
|
1837
|
+
DECIMAL_LT = "DECIMAL_LT",
|
|
1838
|
+
DECIMAL_GT = "DECIMAL_GT",
|
|
1839
|
+
DECIMAL_MAX_SCALE = "DECIMAL_MAX_SCALE",
|
|
1840
|
+
INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
|
|
1841
|
+
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
1842
|
+
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
1843
|
+
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
1844
|
+
EXACT_LENGTH = "EXACT_LENGTH",
|
|
1845
|
+
EXACT_SIZE = "EXACT_SIZE",
|
|
1846
|
+
REQUIRED_ONE_OF_FIELD = "REQUIRED_ONE_OF_FIELD"
|
|
1757
1847
|
}
|
|
1758
1848
|
/** @enumType */
|
|
1759
|
-
type
|
|
1849
|
+
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';
|
|
1850
|
+
interface FieldViolation {
|
|
1851
|
+
field?: string;
|
|
1852
|
+
description?: string;
|
|
1853
|
+
violatedRule?: RuleTypeWithLiterals;
|
|
1854
|
+
/** applicable when violated_rule=OTHER */
|
|
1855
|
+
ruleName?: string | null;
|
|
1856
|
+
data?: Record<string, any> | null;
|
|
1857
|
+
}
|
|
1858
|
+
interface SystemError {
|
|
1859
|
+
/** Error code. */
|
|
1860
|
+
errorCode?: string | null;
|
|
1861
|
+
}
|
|
1862
|
+
interface CarrierErrors {
|
|
1863
|
+
/**
|
|
1864
|
+
* Carrier errors.
|
|
1865
|
+
* @maxSize 100
|
|
1866
|
+
*/
|
|
1867
|
+
errors?: CarrierError[];
|
|
1868
|
+
}
|
|
1869
|
+
interface CarrierError {
|
|
1870
|
+
/**
|
|
1871
|
+
* Carrier ID.
|
|
1872
|
+
* @format GUID
|
|
1873
|
+
*/
|
|
1874
|
+
carrierId?: string;
|
|
1875
|
+
/** Error details. */
|
|
1876
|
+
error?: Details;
|
|
1877
|
+
}
|
|
1760
1878
|
interface Violation {
|
|
1761
1879
|
/** 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. */
|
|
1762
1880
|
severity?: SeverityWithLiterals;
|
|
@@ -2176,10 +2294,14 @@ interface PlaceOrderRequest {
|
|
|
2176
2294
|
/**
|
|
2177
2295
|
* The pricing token received from `CalculateCart`'s response.
|
|
2178
2296
|
* Used to verify that the prices shown to the customer have not changed before completing checkout.
|
|
2179
|
-
* @maxLength
|
|
2180
|
-
* @readonly
|
|
2297
|
+
* @maxLength 3000
|
|
2181
2298
|
*/
|
|
2182
2299
|
pricingToken?: string | null;
|
|
2300
|
+
/**
|
|
2301
|
+
* Payment token.
|
|
2302
|
+
* @maxLength 100
|
|
2303
|
+
*/
|
|
2304
|
+
paymentToken?: string | null;
|
|
2183
2305
|
/** Urls to redirect to after payment is made. */
|
|
2184
2306
|
redirectUrls?: RedirectUrls;
|
|
2185
2307
|
/** Indicates the payment method should be saved on the order */
|
|
@@ -147,6 +147,9 @@ function createCart(payload) {
|
|
|
147
147
|
method: "POST",
|
|
148
148
|
methodFqn: "wix.ecom.cart.v2.CartService.CreateCart",
|
|
149
149
|
packageName: PACKAGE_NAME,
|
|
150
|
+
migrationOptions: {
|
|
151
|
+
optInTransformResponse: true
|
|
152
|
+
},
|
|
150
153
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
151
154
|
protoPath: "/v2/carts",
|
|
152
155
|
data: serializedData,
|
|
@@ -197,6 +200,9 @@ function getCart(payload) {
|
|
|
197
200
|
method: "GET",
|
|
198
201
|
methodFqn: "wix.ecom.cart.v2.CartService.GetCart",
|
|
199
202
|
packageName: PACKAGE_NAME,
|
|
203
|
+
migrationOptions: {
|
|
204
|
+
optInTransformResponse: true
|
|
205
|
+
},
|
|
200
206
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
201
207
|
protoPath: "/v2/carts/{cartId}",
|
|
202
208
|
data: payload,
|
|
@@ -281,6 +287,9 @@ function updateCart(payload) {
|
|
|
281
287
|
method: "PATCH",
|
|
282
288
|
methodFqn: "wix.ecom.cart.v2.CartService.UpdateCart",
|
|
283
289
|
packageName: PACKAGE_NAME,
|
|
290
|
+
migrationOptions: {
|
|
291
|
+
optInTransformResponse: true
|
|
292
|
+
},
|
|
284
293
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
285
294
|
protoPath: "/v2/carts/{cart.id}",
|
|
286
295
|
data: serializedData,
|
|
@@ -331,6 +340,9 @@ function deleteCart(payload) {
|
|
|
331
340
|
method: "DELETE",
|
|
332
341
|
methodFqn: "wix.ecom.cart.v2.CartService.DeleteCart",
|
|
333
342
|
packageName: PACKAGE_NAME,
|
|
343
|
+
migrationOptions: {
|
|
344
|
+
optInTransformResponse: true
|
|
345
|
+
},
|
|
334
346
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
335
347
|
protoPath: "/v2/carts/{cartId}",
|
|
336
348
|
data: payload,
|
|
@@ -349,6 +361,9 @@ function refreshCart(payload) {
|
|
|
349
361
|
method: "POST",
|
|
350
362
|
methodFqn: "wix.ecom.cart.v2.CartService.RefreshCart",
|
|
351
363
|
packageName: PACKAGE_NAME,
|
|
364
|
+
migrationOptions: {
|
|
365
|
+
optInTransformResponse: true
|
|
366
|
+
},
|
|
352
367
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
353
368
|
protoPath: "/v2/carts/{cartId}/refresh",
|
|
354
369
|
data: payload,
|
|
@@ -399,6 +414,9 @@ function calculateCart(payload) {
|
|
|
399
414
|
method: "POST",
|
|
400
415
|
methodFqn: "wix.ecom.cart.v2.CartService.CalculateCart",
|
|
401
416
|
packageName: PACKAGE_NAME,
|
|
417
|
+
migrationOptions: {
|
|
418
|
+
optInTransformResponse: true
|
|
419
|
+
},
|
|
402
420
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
403
421
|
protoPath: "/v2/carts/{cartId}/calculate",
|
|
404
422
|
data: payload,
|
|
@@ -452,6 +470,9 @@ function getCheckoutUrl(payload) {
|
|
|
452
470
|
method: "POST",
|
|
453
471
|
methodFqn: "wix.ecom.cart.v2.CartService.GetCheckoutURL",
|
|
454
472
|
packageName: PACKAGE_NAME,
|
|
473
|
+
migrationOptions: {
|
|
474
|
+
optInTransformResponse: true
|
|
475
|
+
},
|
|
455
476
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
456
477
|
protoPath: "/v2/carts/{cartId}/get-checkout-url",
|
|
457
478
|
data: payload,
|
|
@@ -470,6 +491,9 @@ function placeOrder(payload) {
|
|
|
470
491
|
method: "POST",
|
|
471
492
|
methodFqn: "wix.ecom.cart.v2.CartService.PlaceOrder",
|
|
472
493
|
packageName: PACKAGE_NAME,
|
|
494
|
+
migrationOptions: {
|
|
495
|
+
optInTransformResponse: true
|
|
496
|
+
},
|
|
473
497
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
474
498
|
protoPath: "/v2/carts/{cartId}/place-order",
|
|
475
499
|
data: payload,
|
|
@@ -512,6 +536,9 @@ function addLineItems(payload) {
|
|
|
512
536
|
method: "POST",
|
|
513
537
|
methodFqn: "wix.ecom.cart.v2.CartService.AddLineItems",
|
|
514
538
|
packageName: PACKAGE_NAME,
|
|
539
|
+
migrationOptions: {
|
|
540
|
+
optInTransformResponse: true
|
|
541
|
+
},
|
|
515
542
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
516
543
|
protoPath: "/v2/carts/{cartId}/add-line-items",
|
|
517
544
|
data: serializedData,
|
|
@@ -562,6 +589,9 @@ function removeLineItems(payload) {
|
|
|
562
589
|
method: "POST",
|
|
563
590
|
methodFqn: "wix.ecom.cart.v2.CartService.RemoveLineItems",
|
|
564
591
|
packageName: PACKAGE_NAME,
|
|
592
|
+
migrationOptions: {
|
|
593
|
+
optInTransformResponse: true
|
|
594
|
+
},
|
|
565
595
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
566
596
|
protoPath: "/v2/carts/{cartId}/remove-line-items",
|
|
567
597
|
data: payload,
|
|
@@ -612,6 +642,9 @@ function updateLineItems(payload) {
|
|
|
612
642
|
method: "POST",
|
|
613
643
|
methodFqn: "wix.ecom.cart.v2.CartService.UpdateLineItems",
|
|
614
644
|
packageName: PACKAGE_NAME,
|
|
645
|
+
migrationOptions: {
|
|
646
|
+
optInTransformResponse: true
|
|
647
|
+
},
|
|
615
648
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
616
649
|
protoPath: "/v2/carts/{cartId}/update-line-items",
|
|
617
650
|
data: payload,
|
|
@@ -662,6 +695,9 @@ function addCoupon(payload) {
|
|
|
662
695
|
method: "POST",
|
|
663
696
|
methodFqn: "wix.ecom.cart.v2.CartService.AddCoupon",
|
|
664
697
|
packageName: PACKAGE_NAME,
|
|
698
|
+
migrationOptions: {
|
|
699
|
+
optInTransformResponse: true
|
|
700
|
+
},
|
|
665
701
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
666
702
|
protoPath: "/v2/carts/{cartId}/add-coupon",
|
|
667
703
|
data: payload,
|
|
@@ -712,6 +748,9 @@ function removeCoupon(payload) {
|
|
|
712
748
|
method: "POST",
|
|
713
749
|
methodFqn: "wix.ecom.cart.v2.CartService.RemoveCoupon",
|
|
714
750
|
packageName: PACKAGE_NAME,
|
|
751
|
+
migrationOptions: {
|
|
752
|
+
optInTransformResponse: true
|
|
753
|
+
},
|
|
715
754
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
716
755
|
protoPath: "/v2/carts/{cartId}/remove-coupon",
|
|
717
756
|
data: payload,
|
|
@@ -762,6 +801,9 @@ function addGiftCard(payload) {
|
|
|
762
801
|
method: "POST",
|
|
763
802
|
methodFqn: "wix.ecom.cart.v2.CartService.AddGiftCard",
|
|
764
803
|
packageName: PACKAGE_NAME,
|
|
804
|
+
migrationOptions: {
|
|
805
|
+
optInTransformResponse: true
|
|
806
|
+
},
|
|
765
807
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
766
808
|
protoPath: "/v2/carts/{cartId}/add-gift-card",
|
|
767
809
|
data: payload,
|
|
@@ -812,6 +854,9 @@ function removeGiftCard(payload) {
|
|
|
812
854
|
method: "POST",
|
|
813
855
|
methodFqn: "wix.ecom.cart.v2.CartService.RemoveGiftCard",
|
|
814
856
|
packageName: PACKAGE_NAME,
|
|
857
|
+
migrationOptions: {
|
|
858
|
+
optInTransformResponse: true
|
|
859
|
+
},
|
|
815
860
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
816
861
|
protoPath: "/v2/carts/{cartId}/remove-gift-card",
|
|
817
862
|
data: payload,
|
|
@@ -862,6 +907,9 @@ function markCartAsCompleted(payload) {
|
|
|
862
907
|
method: "POST",
|
|
863
908
|
methodFqn: "wix.ecom.cart.v2.CartService.MarkCartAsCompleted",
|
|
864
909
|
packageName: PACKAGE_NAME,
|
|
910
|
+
migrationOptions: {
|
|
911
|
+
optInTransformResponse: true
|
|
912
|
+
},
|
|
865
913
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
866
914
|
protoPath: "/v2/carts/{cartId}/mark-cart-as-completed",
|
|
867
915
|
data: payload,
|
|
@@ -912,6 +960,9 @@ function handleAsyncCheckoutCompletion(payload) {
|
|
|
912
960
|
method: "POST",
|
|
913
961
|
methodFqn: "wix.ecom.cart.v2.CartService.HandleAsyncCheckoutCompletion",
|
|
914
962
|
packageName: PACKAGE_NAME,
|
|
963
|
+
migrationOptions: {
|
|
964
|
+
optInTransformResponse: true
|
|
965
|
+
},
|
|
915
966
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
916
967
|
protoPath: "/v2/carts/handle-async-checkout-completion",
|
|
917
968
|
data: payload,
|