@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/index.d.ts
CHANGED
|
@@ -123,7 +123,7 @@ interface V2LineItem {
|
|
|
123
123
|
/**
|
|
124
124
|
* Custom extended fields for the line item object.
|
|
125
125
|
*
|
|
126
|
-
* [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.
|
|
126
|
+
* [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.
|
|
127
127
|
*/
|
|
128
128
|
extendedFields?: ExtendedFields;
|
|
129
129
|
/**
|
|
@@ -1489,16 +1489,6 @@ interface CartSummary {
|
|
|
1489
1489
|
priceSummary?: PriceSummary;
|
|
1490
1490
|
/** Payment details summarizing how the customer will pay for the order. */
|
|
1491
1491
|
paymentSummary?: PaymentSummary;
|
|
1492
|
-
/**
|
|
1493
|
-
* List of errors that occurred during the calculation process.
|
|
1494
|
-
* @maxSize 100
|
|
1495
|
-
*/
|
|
1496
|
-
errors?: CalculationError[];
|
|
1497
|
-
/**
|
|
1498
|
-
* 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)).
|
|
1499
|
-
* @maxSize 100
|
|
1500
|
-
*/
|
|
1501
|
-
violations?: Violation[];
|
|
1502
1492
|
/**
|
|
1503
1493
|
* A token representing the Cart's calculated prices.
|
|
1504
1494
|
*
|
|
@@ -1515,6 +1505,17 @@ interface CartSummary {
|
|
|
1515
1505
|
* @maxLength 1024
|
|
1516
1506
|
*/
|
|
1517
1507
|
priceVerificationToken?: string | null;
|
|
1508
|
+
/**
|
|
1509
|
+
* List of errors that occurred during the calculation process, returned by Totals Calculator.
|
|
1510
|
+
* TODO: Temporary field for backward compatibility; will be removed once we introduce the unified 'violations' model.
|
|
1511
|
+
*/
|
|
1512
|
+
calculationErrors?: CalculationErrors;
|
|
1513
|
+
/**
|
|
1514
|
+
* 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)).
|
|
1515
|
+
* TODO: Temporary field for backward compatibility; will be removed once we introduce the unified 'violations' model.
|
|
1516
|
+
* @maxSize 100
|
|
1517
|
+
*/
|
|
1518
|
+
spiViolations?: Violation[];
|
|
1518
1519
|
}
|
|
1519
1520
|
interface LineItemSummary {
|
|
1520
1521
|
/**
|
|
@@ -1759,32 +1760,37 @@ interface Charge {
|
|
|
1759
1760
|
/** The billing date from which the charge starts. */
|
|
1760
1761
|
cycleBillingDate?: Date | null;
|
|
1761
1762
|
}
|
|
1762
|
-
interface
|
|
1763
|
-
/**
|
|
1764
|
-
|
|
1765
|
-
/**
|
|
1766
|
-
|
|
1763
|
+
interface CalculationErrors extends CalculationErrorsShippingCalculationErrorOneOf {
|
|
1764
|
+
/** General shipping calculation error. */
|
|
1765
|
+
generalShippingCalculationError?: Details;
|
|
1766
|
+
/** Carrier errors. */
|
|
1767
|
+
carrierErrors?: CarrierErrors;
|
|
1768
|
+
/** Tax calculation error. */
|
|
1769
|
+
taxCalculationError?: Details;
|
|
1770
|
+
/** Coupon calculation error. */
|
|
1771
|
+
couponCalculationError?: Details;
|
|
1772
|
+
/** Gift card calculation error. */
|
|
1773
|
+
giftCardCalculationError?: Details;
|
|
1774
|
+
/**
|
|
1775
|
+
* Order validation errors.
|
|
1776
|
+
* @maxSize 100
|
|
1777
|
+
*/
|
|
1778
|
+
orderValidationErrors?: ApplicationError[];
|
|
1767
1779
|
/**
|
|
1768
|
-
*
|
|
1769
|
-
*
|
|
1780
|
+
* Membership payment methods calculation errors
|
|
1781
|
+
* For example, will indicate that a line item that must be paid with membership payment doesn't have one or selected memberships are invalid
|
|
1770
1782
|
*/
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
UNKNOWN_CALCULATION_COMPONENT = "UNKNOWN_CALCULATION_COMPONENT",
|
|
1775
|
-
DISCOUNTS = "DISCOUNTS",
|
|
1776
|
-
DELIVERY = "DELIVERY",
|
|
1777
|
-
TAX = "TAX",
|
|
1778
|
-
MEMBERSHIPS = "MEMBERSHIPS",
|
|
1779
|
-
GIFT_CARDS = "GIFT_CARDS"
|
|
1783
|
+
membershipError?: Details;
|
|
1784
|
+
/** Discount Rule calculation error. */
|
|
1785
|
+
discountsCalculationError?: Details;
|
|
1780
1786
|
}
|
|
1781
|
-
/** @
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1787
|
+
/** @oneof */
|
|
1788
|
+
interface CalculationErrorsShippingCalculationErrorOneOf {
|
|
1789
|
+
/** General shipping calculation error. */
|
|
1790
|
+
generalShippingCalculationError?: Details;
|
|
1791
|
+
/** Carrier errors. */
|
|
1792
|
+
carrierErrors?: CarrierErrors;
|
|
1785
1793
|
}
|
|
1786
|
-
/** @enumType */
|
|
1787
|
-
type ErrorCodeWithLiterals = ErrorCode | 'UNKNOWN_ERROR_CODE';
|
|
1788
1794
|
interface Details extends DetailsKindOneOf {
|
|
1789
1795
|
applicationError?: ApplicationError;
|
|
1790
1796
|
validationError?: ValidationError;
|
|
@@ -1881,6 +1887,22 @@ interface SystemError {
|
|
|
1881
1887
|
/** Error code. */
|
|
1882
1888
|
errorCode?: string | null;
|
|
1883
1889
|
}
|
|
1890
|
+
interface CarrierErrors {
|
|
1891
|
+
/**
|
|
1892
|
+
* Carrier errors.
|
|
1893
|
+
* @maxSize 100
|
|
1894
|
+
*/
|
|
1895
|
+
errors?: CarrierError[];
|
|
1896
|
+
}
|
|
1897
|
+
interface CarrierError {
|
|
1898
|
+
/**
|
|
1899
|
+
* Carrier ID.
|
|
1900
|
+
* @format GUID
|
|
1901
|
+
*/
|
|
1902
|
+
carrierId?: string;
|
|
1903
|
+
/** Error details. */
|
|
1904
|
+
error?: Details;
|
|
1905
|
+
}
|
|
1884
1906
|
interface Violation {
|
|
1885
1907
|
/** 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. */
|
|
1886
1908
|
severity?: SeverityWithLiterals;
|
|
@@ -2614,10 +2636,14 @@ interface PlaceOrderRequest {
|
|
|
2614
2636
|
/**
|
|
2615
2637
|
* The pricing token received from `CalculateCart`'s response.
|
|
2616
2638
|
* Used to verify that the prices shown to the customer have not changed before completing checkout.
|
|
2617
|
-
* @maxLength
|
|
2618
|
-
* @readonly
|
|
2639
|
+
* @maxLength 3000
|
|
2619
2640
|
*/
|
|
2620
2641
|
pricingToken?: string | null;
|
|
2642
|
+
/**
|
|
2643
|
+
* Payment token.
|
|
2644
|
+
* @maxLength 100
|
|
2645
|
+
*/
|
|
2646
|
+
paymentToken?: string | null;
|
|
2621
2647
|
/** Urls to redirect to after payment is made. */
|
|
2622
2648
|
redirectUrls?: RedirectUrls;
|
|
2623
2649
|
/** Indicates the payment method should be saved on the order */
|
|
@@ -2986,10 +3012,14 @@ interface PlaceOrderOptions {
|
|
|
2986
3012
|
/**
|
|
2987
3013
|
* The pricing token received from `CalculateCart`'s response.
|
|
2988
3014
|
* Used to verify that the prices shown to the customer have not changed before completing checkout.
|
|
2989
|
-
* @maxLength
|
|
2990
|
-
* @readonly
|
|
3015
|
+
* @maxLength 3000
|
|
2991
3016
|
*/
|
|
2992
3017
|
pricingToken?: string | null;
|
|
3018
|
+
/**
|
|
3019
|
+
* Payment token.
|
|
3020
|
+
* @maxLength 100
|
|
3021
|
+
*/
|
|
3022
|
+
paymentToken?: string | null;
|
|
2993
3023
|
/** Urls to redirect to after payment is made. */
|
|
2994
3024
|
redirectUrls?: RedirectUrls;
|
|
2995
3025
|
/** Indicates the payment method should be saved on the order */
|
|
@@ -3025,4 +3055,4 @@ interface MarkCartAsCompletedOptions {
|
|
|
3025
3055
|
orderId?: string | null;
|
|
3026
3056
|
}
|
|
3027
3057
|
|
|
3028
|
-
export { type ActionEvent, type AddCouponRequest, type AddCouponResponse, type AddCouponToCurrentCartRequest, type AddCouponToCurrentCartResponse, type AddGiftCardRequest, type AddGiftCardResponse, type AddGiftCardToCurrentCartRequest, type AddGiftCardToCurrentCartResponse, type AddLineItemsOptions, type AddLineItemsRequest, type AddLineItemsResponse, type AddLineItemsToCurrentCartRequest, type AddLineItemsToCurrentCartResponse, type AdditionalFee, type AdditionalFeeTax, type Address, type AddressLocation, type ApplicationError, type BusinessInfo, type CalculateCartOptions, type CalculateCartRequest, type CalculateCartResponse, type CalculateCurrentCartRequest, type CalculateCurrentCartResponse,
|
|
3058
|
+
export { type ActionEvent, type AddCouponRequest, type AddCouponResponse, type AddCouponToCurrentCartRequest, type AddCouponToCurrentCartResponse, type AddGiftCardRequest, type AddGiftCardResponse, type AddGiftCardToCurrentCartRequest, type AddGiftCardToCurrentCartResponse, type AddLineItemsOptions, type AddLineItemsRequest, type AddLineItemsResponse, type AddLineItemsToCurrentCartRequest, type AddLineItemsToCurrentCartResponse, type AdditionalFee, type AdditionalFeeTax, type Address, type AddressLocation, type ApplicationError, type BusinessInfo, type CalculateCartOptions, type CalculateCartRequest, type CalculateCartResponse, type CalculateCurrentCartRequest, type CalculateCurrentCartResponse, type CalculationConfig, type CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf, type CarrierError, type CarrierErrors, type Cart, type CartSettings, type CartSource, type CartSummary, type CatalogItemInput, type CatalogOverrideFields, type CatalogReference, ChannelType, type ChannelTypeWithLiterals, type Charge, type Color, type Coupon, type CreateCartOptions, type CreateCartRequest, type CreateCartResponse, type CreateCurrentCartRequest, type CreateCurrentCartResponse, type CreatedBy, type CreatedByIdOneOf, type CustomContentReference, type CustomField, type CustomItemAttributes, type CustomItemDeliveryConfig, type CustomItemInput, type CustomItemPaymentConfig, type CustomItemPricingInfo, type CustomItemQuantityInfo, type CustomItemSource, type CustomItemTaxConfig, type CustomerInfo, type CustomerInfoIdOneOf, type DeleteCartRequest, type DeleteCartResponse, type DeleteCurrentCartRequest, type DeleteCurrentCartResponse, type DeliveryInfo, type DeliveryMethod, type DeliverySummary, type Description, type DescriptionLine, type DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName, DescriptionLineType, type DescriptionLineTypeWithLiterals, type DescriptionLineValueOneOf, type Details, type DetailsKindOneOf, type Discount, type DiscountBenefit, type DiscountBenefitValueOneOf, DiscountScope, type DiscountScopeWithLiterals, type DiscountSource, DiscountSourceType, type DiscountSourceTypeWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type ExtendedFields, type ExternalReference, type FieldViolation, FileType, type FileTypeWithLiterals, type FreeTrialPeriod, type FullAddressContactDetails, type GetCartRequest, type GetCartResponse, type GetCheckoutURLRequest, type GetCheckoutURLResponse, type GetCheckoutUrlOptions, type GetCurrentCartRequest, type GetCurrentCartResponse, type GiftCard, type GiftCardSummary, type Group, type HandleAsyncCheckoutCompletionRequest, type HeadersEntry, type IdentificationData, type IdentificationDataIdOneOf, type ItemAttributes, type ItemDeliveryConfig, type ItemDiscount, type ItemModifier, type ItemPaymentConfig, type ItemPriceBreakdown, type ItemPricingInfo, type ItemQuantityInfo, type ItemSource, ItemStatus, type ItemStatusWithLiterals, type ItemTaxConfig, type ItemType, ItemTypeItemType, type ItemTypeItemTypeDataOneOf, type ItemTypeItemTypeWithLiterals, type LegacyFields, type LineItem, type LineItemSummary, type LineItemTax, type LineItemUpdate, type MarkCartAsCompletedOptions, type MarkCartAsCompletedRequest, type MarkCartAsCompletedResponse, type Membership, type MessageEnvelope, type ModifierGroup, type MultiCurrencyPrice, NameInLineItem, type NameInLineItemWithLiterals, NameInOther, type NameInOtherWithLiterals, type Other, type PaymentInfo, type PaymentOption, PaymentOptionType, type PaymentOptionTypeWithLiterals, type PaymentSummary, type PhysicalProperties, type PlaceOrderOptions, type PlaceOrderRequest, type PlaceOrderResponse, type PlainTextValue, type Policy, type PriceDescription, type PriceSummary, type QuantityUpdate, type RawHttpResponse, type RedirectUrls, type RefreshCartRequest, type RefreshCartResponse, type RefreshCurrentCartRequest, type RefreshCurrentCartResponse, type RemoveCouponFromCurrentCartRequest, type RemoveCouponFromCurrentCartResponse, type RemoveCouponRequest, type RemoveCouponResponse, type RemoveGiftCardFromCurrentCartRequest, type RemoveGiftCardFromCurrentCartResponse, type RemoveGiftCardRequest, type RemoveGiftCardResponse, type RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsFromCurrentCartResponse, type RemoveLineItemsRequest, type RemoveLineItemsResponse, type RestoreInfo, RuleType, type RuleTypeWithLiterals, type Scope, type SecuredMedia, type SelectedMembership, type SelectedMembershipUpdate, type ServiceProperties, Severity, type SeverityWithLiterals, type StreetAddress, type SubscriptionCharges, SubscriptionFrequency, type SubscriptionFrequencyWithLiterals, type SubscriptionOptionInfo, type SubscriptionSettings, SuggestedFix, type SuggestedFixWithLiterals, type SystemError, type Target, type TargetTargetTypeOneOf, type Tax, type TaxDetails, type TaxInfo, type TaxSummary, type TaxableAddress, type TaxableAddressTaxableAddressDataOneOf, TaxableAddressType, type TaxableAddressTypeWithLiterals, type Title, type TranslatableString, type UpdateCart, type UpdateCartRequest, type UpdateCartResponse, type UpdateCurrentCartRequest, type UpdateCurrentCartResponse, type UpdateLineItemsInCurrentCartRequest, type UpdateLineItemsInCurrentCartResponse, type UpdateLineItemsOptions, type UpdateLineItemsRequest, type UpdateLineItemsResponse, type V2AdditionalFee, type V2LineItem, type ValidationError, ValidationsConfig, type ValidationsConfigWithLiterals, type VatId, VatType, type VatTypeWithLiterals, type Violation, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, WeightUnit, type WeightUnitWithLiterals };
|
package/build/cjs/index.js
CHANGED
|
@@ -20,12 +20,10 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// index.ts
|
|
21
21
|
var index_exports = {};
|
|
22
22
|
__export(index_exports, {
|
|
23
|
-
CalculationComponent: () => CalculationComponent,
|
|
24
23
|
ChannelType: () => ChannelType,
|
|
25
24
|
DescriptionLineType: () => DescriptionLineType,
|
|
26
25
|
DiscountScope: () => DiscountScope,
|
|
27
26
|
DiscountSourceType: () => DiscountSourceType,
|
|
28
|
-
ErrorCode: () => ErrorCode,
|
|
29
27
|
FileType: () => FileType,
|
|
30
28
|
ItemStatus: () => ItemStatus,
|
|
31
29
|
ItemTypeItemType: () => ItemTypeItemType,
|
|
@@ -214,6 +212,9 @@ function createCart(payload) {
|
|
|
214
212
|
method: "POST",
|
|
215
213
|
methodFqn: "wix.ecom.cart.v2.CartService.CreateCart",
|
|
216
214
|
packageName: PACKAGE_NAME,
|
|
215
|
+
migrationOptions: {
|
|
216
|
+
optInTransformResponse: true
|
|
217
|
+
},
|
|
217
218
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
218
219
|
protoPath: "/v2/carts",
|
|
219
220
|
data: serializedData,
|
|
@@ -264,6 +265,9 @@ function getCart(payload) {
|
|
|
264
265
|
method: "GET",
|
|
265
266
|
methodFqn: "wix.ecom.cart.v2.CartService.GetCart",
|
|
266
267
|
packageName: PACKAGE_NAME,
|
|
268
|
+
migrationOptions: {
|
|
269
|
+
optInTransformResponse: true
|
|
270
|
+
},
|
|
267
271
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
268
272
|
protoPath: "/v2/carts/{cartId}",
|
|
269
273
|
data: payload,
|
|
@@ -348,6 +352,9 @@ function updateCart(payload) {
|
|
|
348
352
|
method: "PATCH",
|
|
349
353
|
methodFqn: "wix.ecom.cart.v2.CartService.UpdateCart",
|
|
350
354
|
packageName: PACKAGE_NAME,
|
|
355
|
+
migrationOptions: {
|
|
356
|
+
optInTransformResponse: true
|
|
357
|
+
},
|
|
351
358
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
352
359
|
protoPath: "/v2/carts/{cart.id}",
|
|
353
360
|
data: serializedData,
|
|
@@ -398,6 +405,9 @@ function deleteCart(payload) {
|
|
|
398
405
|
method: "DELETE",
|
|
399
406
|
methodFqn: "wix.ecom.cart.v2.CartService.DeleteCart",
|
|
400
407
|
packageName: PACKAGE_NAME,
|
|
408
|
+
migrationOptions: {
|
|
409
|
+
optInTransformResponse: true
|
|
410
|
+
},
|
|
401
411
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
402
412
|
protoPath: "/v2/carts/{cartId}",
|
|
403
413
|
data: payload,
|
|
@@ -416,6 +426,9 @@ function refreshCart(payload) {
|
|
|
416
426
|
method: "POST",
|
|
417
427
|
methodFqn: "wix.ecom.cart.v2.CartService.RefreshCart",
|
|
418
428
|
packageName: PACKAGE_NAME,
|
|
429
|
+
migrationOptions: {
|
|
430
|
+
optInTransformResponse: true
|
|
431
|
+
},
|
|
419
432
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
420
433
|
protoPath: "/v2/carts/{cartId}/refresh",
|
|
421
434
|
data: payload,
|
|
@@ -466,6 +479,9 @@ function calculateCart(payload) {
|
|
|
466
479
|
method: "POST",
|
|
467
480
|
methodFqn: "wix.ecom.cart.v2.CartService.CalculateCart",
|
|
468
481
|
packageName: PACKAGE_NAME,
|
|
482
|
+
migrationOptions: {
|
|
483
|
+
optInTransformResponse: true
|
|
484
|
+
},
|
|
469
485
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
470
486
|
protoPath: "/v2/carts/{cartId}/calculate",
|
|
471
487
|
data: payload,
|
|
@@ -519,6 +535,9 @@ function getCheckoutUrl(payload) {
|
|
|
519
535
|
method: "POST",
|
|
520
536
|
methodFqn: "wix.ecom.cart.v2.CartService.GetCheckoutURL",
|
|
521
537
|
packageName: PACKAGE_NAME,
|
|
538
|
+
migrationOptions: {
|
|
539
|
+
optInTransformResponse: true
|
|
540
|
+
},
|
|
522
541
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
523
542
|
protoPath: "/v2/carts/{cartId}/get-checkout-url",
|
|
524
543
|
data: payload,
|
|
@@ -537,6 +556,9 @@ function placeOrder(payload) {
|
|
|
537
556
|
method: "POST",
|
|
538
557
|
methodFqn: "wix.ecom.cart.v2.CartService.PlaceOrder",
|
|
539
558
|
packageName: PACKAGE_NAME,
|
|
559
|
+
migrationOptions: {
|
|
560
|
+
optInTransformResponse: true
|
|
561
|
+
},
|
|
540
562
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
541
563
|
protoPath: "/v2/carts/{cartId}/place-order",
|
|
542
564
|
data: payload,
|
|
@@ -579,6 +601,9 @@ function addLineItems(payload) {
|
|
|
579
601
|
method: "POST",
|
|
580
602
|
methodFqn: "wix.ecom.cart.v2.CartService.AddLineItems",
|
|
581
603
|
packageName: PACKAGE_NAME,
|
|
604
|
+
migrationOptions: {
|
|
605
|
+
optInTransformResponse: true
|
|
606
|
+
},
|
|
582
607
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
583
608
|
protoPath: "/v2/carts/{cartId}/add-line-items",
|
|
584
609
|
data: serializedData,
|
|
@@ -629,6 +654,9 @@ function removeLineItems(payload) {
|
|
|
629
654
|
method: "POST",
|
|
630
655
|
methodFqn: "wix.ecom.cart.v2.CartService.RemoveLineItems",
|
|
631
656
|
packageName: PACKAGE_NAME,
|
|
657
|
+
migrationOptions: {
|
|
658
|
+
optInTransformResponse: true
|
|
659
|
+
},
|
|
632
660
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
633
661
|
protoPath: "/v2/carts/{cartId}/remove-line-items",
|
|
634
662
|
data: payload,
|
|
@@ -679,6 +707,9 @@ function updateLineItems(payload) {
|
|
|
679
707
|
method: "POST",
|
|
680
708
|
methodFqn: "wix.ecom.cart.v2.CartService.UpdateLineItems",
|
|
681
709
|
packageName: PACKAGE_NAME,
|
|
710
|
+
migrationOptions: {
|
|
711
|
+
optInTransformResponse: true
|
|
712
|
+
},
|
|
682
713
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
683
714
|
protoPath: "/v2/carts/{cartId}/update-line-items",
|
|
684
715
|
data: payload,
|
|
@@ -729,6 +760,9 @@ function addCoupon(payload) {
|
|
|
729
760
|
method: "POST",
|
|
730
761
|
methodFqn: "wix.ecom.cart.v2.CartService.AddCoupon",
|
|
731
762
|
packageName: PACKAGE_NAME,
|
|
763
|
+
migrationOptions: {
|
|
764
|
+
optInTransformResponse: true
|
|
765
|
+
},
|
|
732
766
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
733
767
|
protoPath: "/v2/carts/{cartId}/add-coupon",
|
|
734
768
|
data: payload,
|
|
@@ -779,6 +813,9 @@ function removeCoupon(payload) {
|
|
|
779
813
|
method: "POST",
|
|
780
814
|
methodFqn: "wix.ecom.cart.v2.CartService.RemoveCoupon",
|
|
781
815
|
packageName: PACKAGE_NAME,
|
|
816
|
+
migrationOptions: {
|
|
817
|
+
optInTransformResponse: true
|
|
818
|
+
},
|
|
782
819
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
783
820
|
protoPath: "/v2/carts/{cartId}/remove-coupon",
|
|
784
821
|
data: payload,
|
|
@@ -829,6 +866,9 @@ function addGiftCard(payload) {
|
|
|
829
866
|
method: "POST",
|
|
830
867
|
methodFqn: "wix.ecom.cart.v2.CartService.AddGiftCard",
|
|
831
868
|
packageName: PACKAGE_NAME,
|
|
869
|
+
migrationOptions: {
|
|
870
|
+
optInTransformResponse: true
|
|
871
|
+
},
|
|
832
872
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
833
873
|
protoPath: "/v2/carts/{cartId}/add-gift-card",
|
|
834
874
|
data: payload,
|
|
@@ -879,6 +919,9 @@ function removeGiftCard(payload) {
|
|
|
879
919
|
method: "POST",
|
|
880
920
|
methodFqn: "wix.ecom.cart.v2.CartService.RemoveGiftCard",
|
|
881
921
|
packageName: PACKAGE_NAME,
|
|
922
|
+
migrationOptions: {
|
|
923
|
+
optInTransformResponse: true
|
|
924
|
+
},
|
|
882
925
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
883
926
|
protoPath: "/v2/carts/{cartId}/remove-gift-card",
|
|
884
927
|
data: payload,
|
|
@@ -929,6 +972,9 @@ function markCartAsCompleted(payload) {
|
|
|
929
972
|
method: "POST",
|
|
930
973
|
methodFqn: "wix.ecom.cart.v2.CartService.MarkCartAsCompleted",
|
|
931
974
|
packageName: PACKAGE_NAME,
|
|
975
|
+
migrationOptions: {
|
|
976
|
+
optInTransformResponse: true
|
|
977
|
+
},
|
|
932
978
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
933
979
|
protoPath: "/v2/carts/{cartId}/mark-cart-as-completed",
|
|
934
980
|
data: payload,
|
|
@@ -979,6 +1025,9 @@ function handleAsyncCheckoutCompletion(payload) {
|
|
|
979
1025
|
method: "POST",
|
|
980
1026
|
methodFqn: "wix.ecom.cart.v2.CartService.HandleAsyncCheckoutCompletion",
|
|
981
1027
|
packageName: PACKAGE_NAME,
|
|
1028
|
+
migrationOptions: {
|
|
1029
|
+
optInTransformResponse: true
|
|
1030
|
+
},
|
|
982
1031
|
url: resolveWixEcomCartV2CartServiceUrl({
|
|
983
1032
|
protoPath: "/v2/carts/handle-async-checkout-completion",
|
|
984
1033
|
data: payload,
|
|
@@ -1105,19 +1154,6 @@ var DiscountScope = /* @__PURE__ */ ((DiscountScope2) => {
|
|
|
1105
1154
|
DiscountScope2["DELIVERY"] = "DELIVERY";
|
|
1106
1155
|
return DiscountScope2;
|
|
1107
1156
|
})(DiscountScope || {});
|
|
1108
|
-
var CalculationComponent = /* @__PURE__ */ ((CalculationComponent2) => {
|
|
1109
|
-
CalculationComponent2["UNKNOWN_CALCULATION_COMPONENT"] = "UNKNOWN_CALCULATION_COMPONENT";
|
|
1110
|
-
CalculationComponent2["DISCOUNTS"] = "DISCOUNTS";
|
|
1111
|
-
CalculationComponent2["DELIVERY"] = "DELIVERY";
|
|
1112
|
-
CalculationComponent2["TAX"] = "TAX";
|
|
1113
|
-
CalculationComponent2["MEMBERSHIPS"] = "MEMBERSHIPS";
|
|
1114
|
-
CalculationComponent2["GIFT_CARDS"] = "GIFT_CARDS";
|
|
1115
|
-
return CalculationComponent2;
|
|
1116
|
-
})(CalculationComponent || {});
|
|
1117
|
-
var ErrorCode = /* @__PURE__ */ ((ErrorCode2) => {
|
|
1118
|
-
ErrorCode2["UNKNOWN_ERROR_CODE"] = "UNKNOWN_ERROR_CODE";
|
|
1119
|
-
return ErrorCode2;
|
|
1120
|
-
})(ErrorCode || {});
|
|
1121
1157
|
var RuleType = /* @__PURE__ */ ((RuleType2) => {
|
|
1122
1158
|
RuleType2["VALIDATION"] = "VALIDATION";
|
|
1123
1159
|
RuleType2["OTHER"] = "OTHER";
|
|
@@ -1520,6 +1556,7 @@ async function placeOrder2(cartId, options) {
|
|
|
1520
1556
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
1521
1557
|
cartId,
|
|
1522
1558
|
pricingToken: options?.pricingToken,
|
|
1559
|
+
paymentToken: options?.paymentToken,
|
|
1523
1560
|
redirectUrls: options?.redirectUrls,
|
|
1524
1561
|
savePaymentMethod: options?.savePaymentMethod,
|
|
1525
1562
|
delayCapture: options?.delayCapture
|
|
@@ -1538,6 +1575,7 @@ async function placeOrder2(cartId, options) {
|
|
|
1538
1575
|
explicitPathsToArguments: {
|
|
1539
1576
|
cartId: "$[0]",
|
|
1540
1577
|
pricingToken: "$[1].pricingToken",
|
|
1578
|
+
paymentToken: "$[1].paymentToken",
|
|
1541
1579
|
redirectUrls: "$[1].redirectUrls",
|
|
1542
1580
|
savePaymentMethod: "$[1].savePaymentMethod",
|
|
1543
1581
|
delayCapture: "$[1].delayCapture"
|
|
@@ -2127,12 +2165,10 @@ var markCartAsCompleted4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTMo
|
|
|
2127
2165
|
var handleAsyncCheckoutCompletion4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(handleAsyncCheckoutCompletion3);
|
|
2128
2166
|
// Annotate the CommonJS export names for ESM import in node:
|
|
2129
2167
|
0 && (module.exports = {
|
|
2130
|
-
CalculationComponent,
|
|
2131
2168
|
ChannelType,
|
|
2132
2169
|
DescriptionLineType,
|
|
2133
2170
|
DiscountScope,
|
|
2134
2171
|
DiscountSourceType,
|
|
2135
|
-
ErrorCode,
|
|
2136
2172
|
FileType,
|
|
2137
2173
|
ItemStatus,
|
|
2138
2174
|
ItemTypeItemType,
|