@wix/auto_sdk_ecom_current-cart-v-2 1.0.21 → 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 +70 -53
- package/build/cjs/index.js +2 -64
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +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 +64 -58
- package/build/cjs/meta.js +0 -64
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +70 -53
- package/build/es/index.mjs +2 -64
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +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 +64 -58
- package/build/es/meta.mjs +0 -64
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +13 -13
- 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 +82 -65
- 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 +64 -58
- package/build/internal/cjs/meta.js +0 -64
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +13 -13
- 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 +82 -65
- 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 +64 -58
- package/build/internal/es/meta.mjs +0 -64
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -31,8 +31,11 @@ interface Cart {
|
|
|
31
31
|
* @readonly
|
|
32
32
|
*/
|
|
33
33
|
lineItems?: V2LineItem[];
|
|
34
|
-
/**
|
|
35
|
-
|
|
34
|
+
/**
|
|
35
|
+
* The sum of all line item final prices.
|
|
36
|
+
* @readonly
|
|
37
|
+
*/
|
|
38
|
+
subtotal?: ConvertedMoney;
|
|
36
39
|
/**
|
|
37
40
|
* Optional message left by the customer.
|
|
38
41
|
* Usually intended for the merchant and contain special instructions, requests, or clarifications related to the order.
|
|
@@ -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. */
|
|
@@ -198,12 +202,12 @@ interface ItemPricingInfo {
|
|
|
198
202
|
* Final unit price after applying automatic discounts.
|
|
199
203
|
* Includes tax if `tax_info.prices_include_tax` is true.
|
|
200
204
|
*/
|
|
201
|
-
unitPrice?:
|
|
205
|
+
unitPrice?: ConvertedMoney;
|
|
202
206
|
/**
|
|
203
207
|
* Final total price for this item (unit price × quantity).
|
|
204
208
|
* Includes tax if `tax_info.prices_include_tax` is true.
|
|
205
209
|
*/
|
|
206
|
-
totalPrice?:
|
|
210
|
+
totalPrice?: ConvertedMoney;
|
|
207
211
|
/**
|
|
208
212
|
* Additional description for the price.
|
|
209
213
|
* For example, when price is 0 but additional details about the actual price are needed - "Starts at $67".
|
|
@@ -214,28 +218,21 @@ interface ItemPricingInfo {
|
|
|
214
218
|
/** Detailed breakdown of price components. */
|
|
215
219
|
breakdown?: ItemPriceBreakdown;
|
|
216
220
|
}
|
|
217
|
-
interface
|
|
221
|
+
interface ConvertedMoney {
|
|
218
222
|
/**
|
|
219
|
-
*
|
|
220
|
-
* @
|
|
223
|
+
* Monetary amount in the original currency, as specified in `business_info.currency_code`.
|
|
224
|
+
* @format DECIMAL_VALUE
|
|
225
|
+
* @decimalValue options { gte:0, lte:999999999, maxScale:3 }
|
|
221
226
|
*/
|
|
222
227
|
amount?: string;
|
|
223
228
|
/**
|
|
224
|
-
*
|
|
225
|
-
*
|
|
226
|
-
*
|
|
229
|
+
* Monetary amount in the converted currency, as specified in `customer_info.currency_code`.
|
|
230
|
+
*
|
|
231
|
+
* Default: `amount`.
|
|
232
|
+
* @format DECIMAL_VALUE
|
|
233
|
+
* @decimalValue options { gte:0, lte:999999999, maxScale:3 }
|
|
227
234
|
*/
|
|
228
235
|
convertedAmount?: string;
|
|
229
|
-
/**
|
|
230
|
-
* Amount formatted with currency symbol.
|
|
231
|
-
* @readonly
|
|
232
|
-
*/
|
|
233
|
-
formattedAmount?: string;
|
|
234
|
-
/**
|
|
235
|
-
* Converted amount formatted with currency symbol.
|
|
236
|
-
* @readonly
|
|
237
|
-
*/
|
|
238
|
-
formattedConvertedAmount?: string;
|
|
239
236
|
}
|
|
240
237
|
interface PriceDescription {
|
|
241
238
|
/**
|
|
@@ -258,17 +255,17 @@ interface ItemPriceBreakdown {
|
|
|
258
255
|
* Full catalog price of a single item before any discounts, including modifiers.
|
|
259
256
|
* Includes tax if `tax_info.prices_include_tax` is true.
|
|
260
257
|
*/
|
|
261
|
-
fullPrice?:
|
|
258
|
+
fullPrice?: ConvertedMoney;
|
|
262
259
|
/**
|
|
263
260
|
* Catalog sale price of a single item, including modifiers.
|
|
264
261
|
* Includes tax if `tax_info.prices_include_tax` is true.
|
|
265
262
|
*/
|
|
266
|
-
salePrice?:
|
|
263
|
+
salePrice?: ConvertedMoney;
|
|
267
264
|
/**
|
|
268
265
|
* Total price of all item modifiers for the entire quantity of this item.
|
|
269
266
|
* Includes tax if `tax_info.prices_include_tax` is true.
|
|
270
267
|
*/
|
|
271
|
-
totalModifiersPrice?:
|
|
268
|
+
totalModifiersPrice?: ConvertedMoney;
|
|
272
269
|
}
|
|
273
270
|
interface ItemSource {
|
|
274
271
|
/**
|
|
@@ -453,11 +450,6 @@ interface Image {
|
|
|
453
450
|
* @maxLength 400
|
|
454
451
|
*/
|
|
455
452
|
id?: string;
|
|
456
|
-
/**
|
|
457
|
-
* Image URL.
|
|
458
|
-
* @format WEB_URL
|
|
459
|
-
*/
|
|
460
|
-
url?: string;
|
|
461
453
|
/**
|
|
462
454
|
* Original image height.
|
|
463
455
|
* @readonly
|
|
@@ -765,7 +757,7 @@ interface ItemPaymentConfig {
|
|
|
765
757
|
* Partial payment to be paid upfront during the checkout.
|
|
766
758
|
* Eligible for catalog items with `lineItem.paymentOption` type `DEPOSIT_ONLINE` only.
|
|
767
759
|
*/
|
|
768
|
-
depositAmount?:
|
|
760
|
+
depositAmount?: ConvertedMoney;
|
|
769
761
|
/**
|
|
770
762
|
* Selected membership to be used as payment for this item.
|
|
771
763
|
* Must be used with `lineItem.paymentOption` set to `MEMBERSHIP` or `MEMBERSHIP_OFFLINE`.
|
|
@@ -894,7 +886,7 @@ interface ItemModifier {
|
|
|
894
886
|
/** Additional details. */
|
|
895
887
|
details?: TranslatableString;
|
|
896
888
|
/** The price of the modifier. */
|
|
897
|
-
price?:
|
|
889
|
+
price?: ConvertedMoney;
|
|
898
890
|
}
|
|
899
891
|
/**
|
|
900
892
|
* Currently, only automatic discounts are applied to line items.
|
|
@@ -904,7 +896,7 @@ interface ItemDiscount {
|
|
|
904
896
|
/** The display name of the discount. */
|
|
905
897
|
name?: TranslatableString;
|
|
906
898
|
/** The amount discounted from the item's sale price (per unit). */
|
|
907
|
-
amountOff?:
|
|
899
|
+
amountOff?: ConvertedMoney;
|
|
908
900
|
}
|
|
909
901
|
interface Scope {
|
|
910
902
|
/** Scope namespace (Wix Stores, Wix Bookings, Wix Events, Wix Pricing Plans) */
|
|
@@ -1438,9 +1430,9 @@ interface LegacyFields {
|
|
|
1438
1430
|
*/
|
|
1439
1431
|
appliedDiscounts?: Discount[];
|
|
1440
1432
|
/** The coupon discount amount. */
|
|
1441
|
-
couponDiscount?:
|
|
1433
|
+
couponDiscount?: ConvertedMoney;
|
|
1442
1434
|
/** The sum of all line items after applying all discounts. */
|
|
1443
|
-
subtotalAfterCouponDiscount?:
|
|
1435
|
+
subtotalAfterCouponDiscount?: ConvertedMoney;
|
|
1444
1436
|
}
|
|
1445
1437
|
interface Discount {
|
|
1446
1438
|
/** The display name of the discount. */
|
|
@@ -1495,7 +1487,7 @@ declare enum DiscountScope {
|
|
|
1495
1487
|
type DiscountScopeWithLiterals = DiscountScope | 'UNKNOWN_DISCOUNT_SCOPE' | 'CART_SUBTOTAL' | 'LINE_ITEM' | 'DELIVERY';
|
|
1496
1488
|
interface DiscountBenefit extends DiscountBenefitValueOneOf {
|
|
1497
1489
|
/** A specific monetary value deducted from the total cost. */
|
|
1498
|
-
amountOff?:
|
|
1490
|
+
amountOff?: ConvertedMoney;
|
|
1499
1491
|
/**
|
|
1500
1492
|
* The ID of line item that the discount applies to.
|
|
1501
1493
|
* Relevant for item-level discounts only.
|
|
@@ -1506,7 +1498,7 @@ interface DiscountBenefit extends DiscountBenefitValueOneOf {
|
|
|
1506
1498
|
/** @oneof */
|
|
1507
1499
|
interface DiscountBenefitValueOneOf {
|
|
1508
1500
|
/** A specific monetary value deducted from the total cost. */
|
|
1509
|
-
amountOff?:
|
|
1501
|
+
amountOff?: ConvertedMoney;
|
|
1510
1502
|
}
|
|
1511
1503
|
interface CartSummary {
|
|
1512
1504
|
/**
|
|
@@ -1581,12 +1573,12 @@ interface LineItemSummary {
|
|
|
1581
1573
|
* Final unit price after applying automatic discounts.
|
|
1582
1574
|
* Includes tax if `tax_summary.prices_include_tax` is true.
|
|
1583
1575
|
*/
|
|
1584
|
-
unitPrice?:
|
|
1576
|
+
unitPrice?: ConvertedMoney;
|
|
1585
1577
|
/**
|
|
1586
1578
|
* Total price for the line item (unit price × quantity).
|
|
1587
1579
|
* Includes tax if `tax_summary.prices_include_tax` is true.
|
|
1588
1580
|
*/
|
|
1589
|
-
totalPrice?:
|
|
1581
|
+
totalPrice?: ConvertedMoney;
|
|
1590
1582
|
}
|
|
1591
1583
|
interface DeliverySummary {
|
|
1592
1584
|
/** The calculated delivery method. */
|
|
@@ -1595,7 +1587,7 @@ interface DeliverySummary {
|
|
|
1595
1587
|
* Delivery price after discount.
|
|
1596
1588
|
* Includes tax if `tax_summary.prices_include_tax` is true.
|
|
1597
1589
|
*/
|
|
1598
|
-
price?:
|
|
1590
|
+
price?: ConvertedMoney;
|
|
1599
1591
|
}
|
|
1600
1592
|
interface V2AdditionalFee {
|
|
1601
1593
|
/**
|
|
@@ -1623,7 +1615,7 @@ interface V2AdditionalFee {
|
|
|
1623
1615
|
* Additional fee's price.
|
|
1624
1616
|
* Includes tax if `tax_summary.prices_include_tax` is true.
|
|
1625
1617
|
*/
|
|
1626
|
-
price?:
|
|
1618
|
+
price?: ConvertedMoney;
|
|
1627
1619
|
/**
|
|
1628
1620
|
* Number of subscription cycle this fee applies to.
|
|
1629
1621
|
* If None and discount is linked to subscription line item, it applies to all cycles.
|
|
@@ -1652,7 +1644,7 @@ interface TaxSummary {
|
|
|
1652
1644
|
*/
|
|
1653
1645
|
lineItemTaxes?: LineItemTax[];
|
|
1654
1646
|
/** Tax applied to the delivery method. */
|
|
1655
|
-
deliveryTax?:
|
|
1647
|
+
deliveryTax?: ConvertedMoney;
|
|
1656
1648
|
/**
|
|
1657
1649
|
* Taxes applied to additional fees.
|
|
1658
1650
|
* @maxSize 100
|
|
@@ -1663,16 +1655,16 @@ interface Tax {
|
|
|
1663
1655
|
/** The name of the tax. */
|
|
1664
1656
|
name?: TranslatableString;
|
|
1665
1657
|
/** Amount for which tax is calculated. */
|
|
1666
|
-
taxableAmount?:
|
|
1658
|
+
taxableAmount?: ConvertedMoney;
|
|
1667
1659
|
/** Amount that is exempt from tax. */
|
|
1668
|
-
exemptAmount?:
|
|
1660
|
+
exemptAmount?: ConvertedMoney;
|
|
1669
1661
|
/**
|
|
1670
1662
|
* Tax rate %, as a decimal point between 0 and 1.
|
|
1671
1663
|
* @decimalValue options { gte:0, lte:1, maxScale:6 }
|
|
1672
1664
|
*/
|
|
1673
1665
|
rate?: string | null;
|
|
1674
1666
|
/** Calculated tax, based on `taxable_amount` and `rate`. */
|
|
1675
|
-
amount?:
|
|
1667
|
+
amount?: ConvertedMoney;
|
|
1676
1668
|
}
|
|
1677
1669
|
interface LineItemTax {
|
|
1678
1670
|
/**
|
|
@@ -1681,7 +1673,7 @@ interface LineItemTax {
|
|
|
1681
1673
|
*/
|
|
1682
1674
|
lineItemId?: string;
|
|
1683
1675
|
/** Tax amount applied to the additional fee. */
|
|
1684
|
-
tax?:
|
|
1676
|
+
tax?: ConvertedMoney;
|
|
1685
1677
|
}
|
|
1686
1678
|
interface AdditionalFeeTax {
|
|
1687
1679
|
/**
|
|
@@ -1691,34 +1683,34 @@ interface AdditionalFeeTax {
|
|
|
1691
1683
|
*/
|
|
1692
1684
|
additionalFeeCode?: string;
|
|
1693
1685
|
/** Tax amount applied to the additional fee. */
|
|
1694
|
-
tax?:
|
|
1686
|
+
tax?: ConvertedMoney;
|
|
1695
1687
|
}
|
|
1696
1688
|
interface PriceSummary {
|
|
1697
1689
|
/**
|
|
1698
1690
|
* Total price of all line items after applying item-level discounts.
|
|
1699
1691
|
* Includes tax if `tax_summary.prices_include_tax` is true.
|
|
1700
1692
|
*/
|
|
1701
|
-
subtotal?:
|
|
1693
|
+
subtotal?: ConvertedMoney;
|
|
1702
1694
|
/**
|
|
1703
1695
|
* Total cart-level discount applied to the subtotal.
|
|
1704
1696
|
* Line-item discounts are reflected in the subtotal and not included here.
|
|
1705
1697
|
* Currently supports only a single coupon.
|
|
1706
1698
|
*/
|
|
1707
|
-
discount?:
|
|
1699
|
+
discount?: ConvertedMoney;
|
|
1708
1700
|
/**
|
|
1709
1701
|
* Final delivery cost for the cart.
|
|
1710
1702
|
* Includes tax if `tax_summary.prices_include_tax` is true.
|
|
1711
1703
|
*/
|
|
1712
|
-
delivery?:
|
|
1704
|
+
delivery?: ConvertedMoney;
|
|
1713
1705
|
/**
|
|
1714
1706
|
* Total additional fees associated with the cart.
|
|
1715
1707
|
* Includes tax if `tax_summary.prices_include_tax` is true.
|
|
1716
1708
|
*/
|
|
1717
|
-
additionalFees?:
|
|
1709
|
+
additionalFees?: ConvertedMoney;
|
|
1718
1710
|
/** Total tax amount calculated across all applicable components (items, discounts, delivery, and fees). */
|
|
1719
|
-
tax?:
|
|
1711
|
+
tax?: ConvertedMoney;
|
|
1720
1712
|
/** Total amount to be paid. */
|
|
1721
|
-
total?:
|
|
1713
|
+
total?: ConvertedMoney;
|
|
1722
1714
|
}
|
|
1723
1715
|
interface PaymentSummary {
|
|
1724
1716
|
/**
|
|
@@ -1740,13 +1732,13 @@ interface PaymentSummary {
|
|
|
1740
1732
|
/** Indicates whether a remaining payment is required to create the order, after applying gift cards. */
|
|
1741
1733
|
requiresPaymentAfterGiftCard?: boolean;
|
|
1742
1734
|
/** The total amount due after applying all gift cards. */
|
|
1743
|
-
totalAfterGiftCards?:
|
|
1735
|
+
totalAfterGiftCards?: ConvertedMoney;
|
|
1744
1736
|
/** The upfront amount to be charged immediately when placing the order (after applying gift cards). */
|
|
1745
|
-
payNow?:
|
|
1737
|
+
payNow?: ConvertedMoney;
|
|
1746
1738
|
/** The remaining amount to be collected later. */
|
|
1747
|
-
payLater?:
|
|
1739
|
+
payLater?: ConvertedMoney;
|
|
1748
1740
|
/** The amount to be charged after a free trial period (typically for subscription-based products). */
|
|
1749
|
-
payAfterFreeTrial?:
|
|
1741
|
+
payAfterFreeTrial?: ConvertedMoney;
|
|
1750
1742
|
}
|
|
1751
1743
|
interface GiftCardSummary {
|
|
1752
1744
|
/**
|
|
@@ -1755,7 +1747,7 @@ interface GiftCardSummary {
|
|
|
1755
1747
|
*/
|
|
1756
1748
|
giftCardId?: string;
|
|
1757
1749
|
/** The amount to be reduced from the gift card's balance. */
|
|
1758
|
-
redeemAmount?:
|
|
1750
|
+
redeemAmount?: ConvertedMoney;
|
|
1759
1751
|
}
|
|
1760
1752
|
interface Membership {
|
|
1761
1753
|
/**
|
|
@@ -2214,8 +2206,10 @@ interface CustomItemPaymentConfig {
|
|
|
2214
2206
|
/**
|
|
2215
2207
|
* Partial payment to be paid upfront during the checkout.
|
|
2216
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 }
|
|
2217
2211
|
*/
|
|
2218
|
-
depositAmount?:
|
|
2212
|
+
depositAmount?: string | null;
|
|
2219
2213
|
/**
|
|
2220
2214
|
* Type of selected payment option for current item.
|
|
2221
2215
|
*
|
|
@@ -2252,6 +2246,12 @@ interface RefreshCurrentCartResponse {
|
|
|
2252
2246
|
cart?: Cart;
|
|
2253
2247
|
}
|
|
2254
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;
|
|
2255
2255
|
/**
|
|
2256
2256
|
* Specifies the level of **business validation** to perform during cart calculation,
|
|
2257
2257
|
* by calling the [Validations service plugin](https://dev.wix.com/api/rest/wix-ecommerce/validations-integration-spi/introduction).
|
|
@@ -2641,6 +2641,12 @@ interface CalculateCartRequest {
|
|
|
2641
2641
|
* @format GUID
|
|
2642
2642
|
*/
|
|
2643
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;
|
|
2644
2650
|
/**
|
|
2645
2651
|
* Specifies the level of **business validation** to perform during cart calculation,
|
|
2646
2652
|
* by calling the [Validations service plugin](https://dev.wix.com/api/rest/wix-ecommerce/validations-integration-spi/introduction).
|
|
@@ -2930,4 +2936,4 @@ declare function removeCouponFromCurrentCart(): __PublicMethodMetaInfo<'POST', {
|
|
|
2930
2936
|
declare function addGiftCardToCurrentCart(): __PublicMethodMetaInfo<'POST', {}, AddGiftCardToCurrentCartRequest$1, AddGiftCardToCurrentCartRequest, AddGiftCardToCurrentCartResponse$1, AddGiftCardToCurrentCartResponse>;
|
|
2931
2937
|
declare function removeGiftCardFromCurrentCart(): __PublicMethodMetaInfo<'POST', {}, RemoveGiftCardFromCurrentCartRequest$1, RemoveGiftCardFromCurrentCartRequest, RemoveGiftCardFromCurrentCartResponse$1, RemoveGiftCardFromCurrentCartResponse>;
|
|
2932
2938
|
|
|
2933
|
-
export { type ActionEvent as ActionEventOriginal, type AddCouponRequest as AddCouponRequestOriginal, type AddCouponResponse as AddCouponResponseOriginal, type AddCouponToCurrentCartRequest as AddCouponToCurrentCartRequestOriginal, type AddCouponToCurrentCartResponse as AddCouponToCurrentCartResponseOriginal, type AddGiftCardRequest as AddGiftCardRequestOriginal, type AddGiftCardResponse as AddGiftCardResponseOriginal, type AddGiftCardToCurrentCartRequest as AddGiftCardToCurrentCartRequestOriginal, type AddGiftCardToCurrentCartResponse as AddGiftCardToCurrentCartResponseOriginal, type AddLineItemsRequest as AddLineItemsRequestOriginal, type AddLineItemsResponse as AddLineItemsResponseOriginal, type AddLineItemsToCurrentCartRequest as AddLineItemsToCurrentCartRequestOriginal, type AddLineItemsToCurrentCartResponse as AddLineItemsToCurrentCartResponseOriginal, type AdditionalFee as AdditionalFeeOriginal, type AdditionalFeeTax as AdditionalFeeTaxOriginal, type AddressLocation as AddressLocationOriginal, type Address as AddressOriginal, type ApplicationError as ApplicationErrorOriginal, type BusinessInfo as BusinessInfoOriginal, type CalculateCartRequest as CalculateCartRequestOriginal, type CalculateCartResponse as CalculateCartResponseOriginal, type CalculateCurrentCartRequest as CalculateCurrentCartRequestOriginal, type CalculateCurrentCartResponse as CalculateCurrentCartResponseOriginal, type CalculationConfig as CalculationConfigOriginal, type CalculationErrors as CalculationErrorsOriginal, type CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOfOriginal, type CarrierError as CarrierErrorOriginal, type CarrierErrors as CarrierErrorsOriginal, type Cart as CartOriginal, type CartSettings as CartSettingsOriginal, type CartSource as CartSourceOriginal, type CartSummary as CartSummaryOriginal, type CatalogItemInput as CatalogItemInputOriginal, type CatalogOverrideFields as CatalogOverrideFieldsOriginal, type CatalogReference as CatalogReferenceOriginal, ChannelType as ChannelTypeOriginal, type ChannelTypeWithLiterals as ChannelTypeWithLiteralsOriginal, type Charge as ChargeOriginal, type Color as ColorOriginal, type Coupon as CouponOriginal, type CreateCartRequest as CreateCartRequestOriginal, type CreateCartResponse as CreateCartResponseOriginal, type CreateCurrentCartRequest as CreateCurrentCartRequestOriginal, type CreateCurrentCartResponse as CreateCurrentCartResponseOriginal, type CreatedByIdOneOf as CreatedByIdOneOfOriginal, type CreatedBy as CreatedByOriginal, type CustomContentReference as CustomContentReferenceOriginal, type CustomField as CustomFieldOriginal, type CustomItemAttributes as CustomItemAttributesOriginal, type CustomItemDeliveryConfig as CustomItemDeliveryConfigOriginal, type CustomItemInput as CustomItemInputOriginal, type CustomItemPaymentConfig as CustomItemPaymentConfigOriginal, type CustomItemPricingInfo as CustomItemPricingInfoOriginal, type CustomItemQuantityInfo as CustomItemQuantityInfoOriginal, type CustomItemSource as CustomItemSourceOriginal, type CustomItemTaxConfig as CustomItemTaxConfigOriginal, type CustomerInfoIdOneOf as CustomerInfoIdOneOfOriginal, type CustomerInfo as CustomerInfoOriginal, type DeleteCartRequest as DeleteCartRequestOriginal, type DeleteCartResponse as DeleteCartResponseOriginal, type DeleteCurrentCartRequest as DeleteCurrentCartRequestOriginal, type DeleteCurrentCartResponse as DeleteCurrentCartResponseOriginal, type DeliveryInfo as DeliveryInfoOriginal, type DeliveryMethod as DeliveryMethodOriginal, type DeliverySummary as DeliverySummaryOriginal, type DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOfOriginal, type DescriptionLineName as DescriptionLineNameOriginal, type DescriptionLine as DescriptionLineOriginal, DescriptionLineType as DescriptionLineTypeOriginal, type DescriptionLineTypeWithLiterals as DescriptionLineTypeWithLiteralsOriginal, type DescriptionLineValueOneOf as DescriptionLineValueOneOfOriginal, type Description as DescriptionOriginal, type DetailsKindOneOf as DetailsKindOneOfOriginal, type Details as DetailsOriginal, type DiscountBenefit as DiscountBenefitOriginal, type DiscountBenefitValueOneOf as DiscountBenefitValueOneOfOriginal, type Discount as DiscountOriginal, DiscountScope as DiscountScopeOriginal, type DiscountScopeWithLiterals as DiscountScopeWithLiteralsOriginal, type DiscountSource as DiscountSourceOriginal, DiscountSourceType as DiscountSourceTypeOriginal, type DiscountSourceTypeWithLiterals as DiscountSourceTypeWithLiteralsOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExtendedFields as ExtendedFieldsOriginal, type ExternalReference as ExternalReferenceOriginal, type FieldViolation as FieldViolationOriginal, FileType as FileTypeOriginal, type FileTypeWithLiterals as FileTypeWithLiteralsOriginal, type FreeTrialPeriod as FreeTrialPeriodOriginal, type FullAddressContactDetails as FullAddressContactDetailsOriginal, type GetCartRequest as GetCartRequestOriginal, type GetCartResponse as GetCartResponseOriginal, type GetCheckoutURLRequest as GetCheckoutURLRequestOriginal, type GetCheckoutURLResponse as GetCheckoutURLResponseOriginal, type GetCurrentCartRequest as GetCurrentCartRequestOriginal, type GetCurrentCartResponse as GetCurrentCartResponseOriginal, type GiftCard as GiftCardOriginal, type GiftCardSummary as GiftCardSummaryOriginal, type Group as GroupOriginal, type HandleAsyncCheckoutCompletionRequest as HandleAsyncCheckoutCompletionRequestOriginal, type HeadersEntry as HeadersEntryOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type Image as ImageOriginal, type ItemAttributes as ItemAttributesOriginal, type ItemDeliveryConfig as ItemDeliveryConfigOriginal, type ItemDiscount as ItemDiscountOriginal, type ItemModifier as ItemModifierOriginal, type ItemPaymentConfig as ItemPaymentConfigOriginal, type ItemPriceBreakdown as ItemPriceBreakdownOriginal, type ItemPricingInfo as ItemPricingInfoOriginal, type ItemQuantityInfo as ItemQuantityInfoOriginal, type ItemSource as ItemSourceOriginal, ItemStatus as ItemStatusOriginal, type ItemStatusWithLiterals as ItemStatusWithLiteralsOriginal, type ItemTaxConfig as ItemTaxConfigOriginal, type ItemTypeItemTypeDataOneOf as ItemTypeItemTypeDataOneOfOriginal, ItemTypeItemType as ItemTypeItemTypeOriginal, type ItemTypeItemTypeWithLiterals as ItemTypeItemTypeWithLiteralsOriginal, type ItemType as ItemTypeOriginal, type LegacyFields as LegacyFieldsOriginal, type LineItem as LineItemOriginal, type LineItemSummary as LineItemSummaryOriginal, type LineItemTax as LineItemTaxOriginal, type LineItemUpdate as LineItemUpdateOriginal, type MarkCartAsCompletedRequest as MarkCartAsCompletedRequestOriginal, type MarkCartAsCompletedResponse as MarkCartAsCompletedResponseOriginal, type Membership as MembershipOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type ModifierGroup as ModifierGroupOriginal, type MultiCurrencyPrice as MultiCurrencyPriceOriginal, NameInLineItem as NameInLineItemOriginal, type NameInLineItemWithLiterals as NameInLineItemWithLiteralsOriginal, NameInOther as NameInOtherOriginal, type NameInOtherWithLiterals as NameInOtherWithLiteralsOriginal, type Other as OtherOriginal, type PageUrlV2 as PageUrlV2Original, type PaymentInfo as PaymentInfoOriginal, type PaymentOption as PaymentOptionOriginal, PaymentOptionType as PaymentOptionTypeOriginal, type PaymentOptionTypeWithLiterals as PaymentOptionTypeWithLiteralsOriginal, type PaymentSummary as PaymentSummaryOriginal, type PhysicalProperties as PhysicalPropertiesOriginal, type PlaceOrderRequest as PlaceOrderRequestOriginal, type PlaceOrderResponse as PlaceOrderResponseOriginal, type PlainTextValue as PlainTextValueOriginal, type Policy as PolicyOriginal, type PriceDescription as PriceDescriptionOriginal, type PriceSummary as PriceSummaryOriginal, type QuantityUpdate as QuantityUpdateOriginal, type RawHttpResponse as RawHttpResponseOriginal, type RedirectUrls as RedirectUrlsOriginal, type RefreshCartRequest as RefreshCartRequestOriginal, type RefreshCartResponse as RefreshCartResponseOriginal, type RefreshCurrentCartRequest as RefreshCurrentCartRequestOriginal, type RefreshCurrentCartResponse as RefreshCurrentCartResponseOriginal, type RemoveCouponFromCurrentCartRequest as RemoveCouponFromCurrentCartRequestOriginal, type RemoveCouponFromCurrentCartResponse as RemoveCouponFromCurrentCartResponseOriginal, type RemoveCouponRequest as RemoveCouponRequestOriginal, type RemoveCouponResponse as RemoveCouponResponseOriginal, type RemoveGiftCardFromCurrentCartRequest as RemoveGiftCardFromCurrentCartRequestOriginal, type RemoveGiftCardFromCurrentCartResponse as RemoveGiftCardFromCurrentCartResponseOriginal, type RemoveGiftCardRequest as RemoveGiftCardRequestOriginal, type RemoveGiftCardResponse as RemoveGiftCardResponseOriginal, type RemoveLineItemsFromCurrentCartRequest as RemoveLineItemsFromCurrentCartRequestOriginal, type RemoveLineItemsFromCurrentCartResponse as RemoveLineItemsFromCurrentCartResponseOriginal, type RemoveLineItemsRequest as RemoveLineItemsRequestOriginal, type RemoveLineItemsResponse as RemoveLineItemsResponseOriginal, type RestoreInfo as RestoreInfoOriginal, RuleType as RuleTypeOriginal, type RuleTypeWithLiterals as RuleTypeWithLiteralsOriginal, type Scope as ScopeOriginal, type SecuredMedia as SecuredMediaOriginal, type SelectedMembership as SelectedMembershipOriginal, type SelectedMembershipUpdate as SelectedMembershipUpdateOriginal, type ServiceProperties as ServicePropertiesOriginal, Severity as SeverityOriginal, type SeverityWithLiterals as SeverityWithLiteralsOriginal, type StreetAddress as StreetAddressOriginal, type SubscriptionCharges as SubscriptionChargesOriginal, SubscriptionFrequency as SubscriptionFrequencyOriginal, type SubscriptionFrequencyWithLiterals as SubscriptionFrequencyWithLiteralsOriginal, type SubscriptionOptionInfo as SubscriptionOptionInfoOriginal, type SubscriptionSettings as SubscriptionSettingsOriginal, SuggestedFix as SuggestedFixOriginal, type SuggestedFixWithLiterals as SuggestedFixWithLiteralsOriginal, type SystemError as SystemErrorOriginal, type Target as TargetOriginal, type TargetTargetTypeOneOf as TargetTargetTypeOneOfOriginal, type TaxDetails as TaxDetailsOriginal, type TaxInfo as TaxInfoOriginal, type Tax as TaxOriginal, type TaxSummary as TaxSummaryOriginal, type TaxableAddress as TaxableAddressOriginal, type TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOfOriginal, TaxableAddressType as TaxableAddressTypeOriginal, type TaxableAddressTypeWithLiterals as TaxableAddressTypeWithLiteralsOriginal, type Title as TitleOriginal, type TranslatableString as TranslatableStringOriginal, type UpdateCartRequest as UpdateCartRequestOriginal, type UpdateCartResponse as UpdateCartResponseOriginal, type UpdateCurrentCartRequest as UpdateCurrentCartRequestOriginal, type UpdateCurrentCartResponse as UpdateCurrentCartResponseOriginal, type UpdateLineItemsInCurrentCartRequest as UpdateLineItemsInCurrentCartRequestOriginal, type UpdateLineItemsInCurrentCartResponse as UpdateLineItemsInCurrentCartResponseOriginal, type UpdateLineItemsRequest as UpdateLineItemsRequestOriginal, type UpdateLineItemsResponse as UpdateLineItemsResponseOriginal, type V2AdditionalFee as V2AdditionalFeeOriginal, type V2LineItem as V2LineItemOriginal, type ValidationError as ValidationErrorOriginal, ValidationsConfig as ValidationsConfigOriginal, type ValidationsConfigWithLiterals as ValidationsConfigWithLiteralsOriginal, type VatId as VatIdOriginal, VatType as VatTypeOriginal, type VatTypeWithLiterals as VatTypeWithLiteralsOriginal, type Violation as ViolationOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, WeightUnit as WeightUnitOriginal, type WeightUnitWithLiterals as WeightUnitWithLiteralsOriginal, type __PublicMethodMetaInfo, addCouponToCurrentCart, addGiftCardToCurrentCart, addLineItemsToCurrentCart, calculateCurrentCart, createCurrentCart, deleteCurrentCart, getCurrentCart, refreshCurrentCart, removeCouponFromCurrentCart, removeGiftCardFromCurrentCart, removeLineItemsFromCurrentCart, updateCurrentCart, updateLineItemsInCurrentCart };
|
|
2939
|
+
export { type ActionEvent as ActionEventOriginal, type AddCouponRequest as AddCouponRequestOriginal, type AddCouponResponse as AddCouponResponseOriginal, type AddCouponToCurrentCartRequest as AddCouponToCurrentCartRequestOriginal, type AddCouponToCurrentCartResponse as AddCouponToCurrentCartResponseOriginal, type AddGiftCardRequest as AddGiftCardRequestOriginal, type AddGiftCardResponse as AddGiftCardResponseOriginal, type AddGiftCardToCurrentCartRequest as AddGiftCardToCurrentCartRequestOriginal, type AddGiftCardToCurrentCartResponse as AddGiftCardToCurrentCartResponseOriginal, type AddLineItemsRequest as AddLineItemsRequestOriginal, type AddLineItemsResponse as AddLineItemsResponseOriginal, type AddLineItemsToCurrentCartRequest as AddLineItemsToCurrentCartRequestOriginal, type AddLineItemsToCurrentCartResponse as AddLineItemsToCurrentCartResponseOriginal, type AdditionalFee as AdditionalFeeOriginal, type AdditionalFeeTax as AdditionalFeeTaxOriginal, type AddressLocation as AddressLocationOriginal, type Address as AddressOriginal, type ApplicationError as ApplicationErrorOriginal, type BusinessInfo as BusinessInfoOriginal, type CalculateCartRequest as CalculateCartRequestOriginal, type CalculateCartResponse as CalculateCartResponseOriginal, type CalculateCurrentCartRequest as CalculateCurrentCartRequestOriginal, type CalculateCurrentCartResponse as CalculateCurrentCartResponseOriginal, type CalculationConfig as CalculationConfigOriginal, type CalculationErrors as CalculationErrorsOriginal, type CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOfOriginal, type CarrierError as CarrierErrorOriginal, type CarrierErrors as CarrierErrorsOriginal, type Cart as CartOriginal, type CartSettings as CartSettingsOriginal, type CartSource as CartSourceOriginal, type CartSummary as CartSummaryOriginal, type CatalogItemInput as CatalogItemInputOriginal, type CatalogOverrideFields as CatalogOverrideFieldsOriginal, type CatalogReference as CatalogReferenceOriginal, ChannelType as ChannelTypeOriginal, type ChannelTypeWithLiterals as ChannelTypeWithLiteralsOriginal, type Charge as ChargeOriginal, type Color as ColorOriginal, type ConvertedMoney as ConvertedMoneyOriginal, type Coupon as CouponOriginal, type CreateCartRequest as CreateCartRequestOriginal, type CreateCartResponse as CreateCartResponseOriginal, type CreateCurrentCartRequest as CreateCurrentCartRequestOriginal, type CreateCurrentCartResponse as CreateCurrentCartResponseOriginal, type CreatedByIdOneOf as CreatedByIdOneOfOriginal, type CreatedBy as CreatedByOriginal, type CustomContentReference as CustomContentReferenceOriginal, type CustomField as CustomFieldOriginal, type CustomItemAttributes as CustomItemAttributesOriginal, type CustomItemDeliveryConfig as CustomItemDeliveryConfigOriginal, type CustomItemInput as CustomItemInputOriginal, type CustomItemPaymentConfig as CustomItemPaymentConfigOriginal, type CustomItemPricingInfo as CustomItemPricingInfoOriginal, type CustomItemQuantityInfo as CustomItemQuantityInfoOriginal, type CustomItemSource as CustomItemSourceOriginal, type CustomItemTaxConfig as CustomItemTaxConfigOriginal, type CustomerInfoIdOneOf as CustomerInfoIdOneOfOriginal, type CustomerInfo as CustomerInfoOriginal, type DeleteCartRequest as DeleteCartRequestOriginal, type DeleteCartResponse as DeleteCartResponseOriginal, type DeleteCurrentCartRequest as DeleteCurrentCartRequestOriginal, type DeleteCurrentCartResponse as DeleteCurrentCartResponseOriginal, type DeliveryInfo as DeliveryInfoOriginal, type DeliveryMethod as DeliveryMethodOriginal, type DeliverySummary as DeliverySummaryOriginal, type DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOfOriginal, type DescriptionLineName as DescriptionLineNameOriginal, type DescriptionLine as DescriptionLineOriginal, DescriptionLineType as DescriptionLineTypeOriginal, type DescriptionLineTypeWithLiterals as DescriptionLineTypeWithLiteralsOriginal, type DescriptionLineValueOneOf as DescriptionLineValueOneOfOriginal, type Description as DescriptionOriginal, type DetailsKindOneOf as DetailsKindOneOfOriginal, type Details as DetailsOriginal, type DiscountBenefit as DiscountBenefitOriginal, type DiscountBenefitValueOneOf as DiscountBenefitValueOneOfOriginal, type Discount as DiscountOriginal, DiscountScope as DiscountScopeOriginal, type DiscountScopeWithLiterals as DiscountScopeWithLiteralsOriginal, type DiscountSource as DiscountSourceOriginal, DiscountSourceType as DiscountSourceTypeOriginal, type DiscountSourceTypeWithLiterals as DiscountSourceTypeWithLiteralsOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExtendedFields as ExtendedFieldsOriginal, type ExternalReference as ExternalReferenceOriginal, type FieldViolation as FieldViolationOriginal, FileType as FileTypeOriginal, type FileTypeWithLiterals as FileTypeWithLiteralsOriginal, type FreeTrialPeriod as FreeTrialPeriodOriginal, type FullAddressContactDetails as FullAddressContactDetailsOriginal, type GetCartRequest as GetCartRequestOriginal, type GetCartResponse as GetCartResponseOriginal, type GetCheckoutURLRequest as GetCheckoutURLRequestOriginal, type GetCheckoutURLResponse as GetCheckoutURLResponseOriginal, type GetCurrentCartRequest as GetCurrentCartRequestOriginal, type GetCurrentCartResponse as GetCurrentCartResponseOriginal, type GiftCard as GiftCardOriginal, type GiftCardSummary as GiftCardSummaryOriginal, type Group as GroupOriginal, type HandleAsyncCheckoutCompletionRequest as HandleAsyncCheckoutCompletionRequestOriginal, type HeadersEntry as HeadersEntryOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type Image as ImageOriginal, type ItemAttributes as ItemAttributesOriginal, type ItemDeliveryConfig as ItemDeliveryConfigOriginal, type ItemDiscount as ItemDiscountOriginal, type ItemModifier as ItemModifierOriginal, type ItemPaymentConfig as ItemPaymentConfigOriginal, type ItemPriceBreakdown as ItemPriceBreakdownOriginal, type ItemPricingInfo as ItemPricingInfoOriginal, type ItemQuantityInfo as ItemQuantityInfoOriginal, type ItemSource as ItemSourceOriginal, ItemStatus as ItemStatusOriginal, type ItemStatusWithLiterals as ItemStatusWithLiteralsOriginal, type ItemTaxConfig as ItemTaxConfigOriginal, type ItemTypeItemTypeDataOneOf as ItemTypeItemTypeDataOneOfOriginal, ItemTypeItemType as ItemTypeItemTypeOriginal, type ItemTypeItemTypeWithLiterals as ItemTypeItemTypeWithLiteralsOriginal, type ItemType as ItemTypeOriginal, type LegacyFields as LegacyFieldsOriginal, type LineItem as LineItemOriginal, type LineItemSummary as LineItemSummaryOriginal, type LineItemTax as LineItemTaxOriginal, type LineItemUpdate as LineItemUpdateOriginal, type MarkCartAsCompletedRequest as MarkCartAsCompletedRequestOriginal, type MarkCartAsCompletedResponse as MarkCartAsCompletedResponseOriginal, type Membership as MembershipOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type ModifierGroup as ModifierGroupOriginal, NameInLineItem as NameInLineItemOriginal, type NameInLineItemWithLiterals as NameInLineItemWithLiteralsOriginal, NameInOther as NameInOtherOriginal, type NameInOtherWithLiterals as NameInOtherWithLiteralsOriginal, type Other as OtherOriginal, type PageUrlV2 as PageUrlV2Original, type PaymentInfo as PaymentInfoOriginal, type PaymentOption as PaymentOptionOriginal, PaymentOptionType as PaymentOptionTypeOriginal, type PaymentOptionTypeWithLiterals as PaymentOptionTypeWithLiteralsOriginal, type PaymentSummary as PaymentSummaryOriginal, type PhysicalProperties as PhysicalPropertiesOriginal, type PlaceOrderRequest as PlaceOrderRequestOriginal, type PlaceOrderResponse as PlaceOrderResponseOriginal, type PlainTextValue as PlainTextValueOriginal, type Policy as PolicyOriginal, type PriceDescription as PriceDescriptionOriginal, type PriceSummary as PriceSummaryOriginal, type QuantityUpdate as QuantityUpdateOriginal, type RawHttpResponse as RawHttpResponseOriginal, type RedirectUrls as RedirectUrlsOriginal, type RefreshCartRequest as RefreshCartRequestOriginal, type RefreshCartResponse as RefreshCartResponseOriginal, type RefreshCurrentCartRequest as RefreshCurrentCartRequestOriginal, type RefreshCurrentCartResponse as RefreshCurrentCartResponseOriginal, type RemoveCouponFromCurrentCartRequest as RemoveCouponFromCurrentCartRequestOriginal, type RemoveCouponFromCurrentCartResponse as RemoveCouponFromCurrentCartResponseOriginal, type RemoveCouponRequest as RemoveCouponRequestOriginal, type RemoveCouponResponse as RemoveCouponResponseOriginal, type RemoveGiftCardFromCurrentCartRequest as RemoveGiftCardFromCurrentCartRequestOriginal, type RemoveGiftCardFromCurrentCartResponse as RemoveGiftCardFromCurrentCartResponseOriginal, type RemoveGiftCardRequest as RemoveGiftCardRequestOriginal, type RemoveGiftCardResponse as RemoveGiftCardResponseOriginal, type RemoveLineItemsFromCurrentCartRequest as RemoveLineItemsFromCurrentCartRequestOriginal, type RemoveLineItemsFromCurrentCartResponse as RemoveLineItemsFromCurrentCartResponseOriginal, type RemoveLineItemsRequest as RemoveLineItemsRequestOriginal, type RemoveLineItemsResponse as RemoveLineItemsResponseOriginal, type RestoreInfo as RestoreInfoOriginal, RuleType as RuleTypeOriginal, type RuleTypeWithLiterals as RuleTypeWithLiteralsOriginal, type Scope as ScopeOriginal, type SecuredMedia as SecuredMediaOriginal, type SelectedMembership as SelectedMembershipOriginal, type SelectedMembershipUpdate as SelectedMembershipUpdateOriginal, type ServiceProperties as ServicePropertiesOriginal, Severity as SeverityOriginal, type SeverityWithLiterals as SeverityWithLiteralsOriginal, type StreetAddress as StreetAddressOriginal, type SubscriptionCharges as SubscriptionChargesOriginal, SubscriptionFrequency as SubscriptionFrequencyOriginal, type SubscriptionFrequencyWithLiterals as SubscriptionFrequencyWithLiteralsOriginal, type SubscriptionOptionInfo as SubscriptionOptionInfoOriginal, type SubscriptionSettings as SubscriptionSettingsOriginal, SuggestedFix as SuggestedFixOriginal, type SuggestedFixWithLiterals as SuggestedFixWithLiteralsOriginal, type SystemError as SystemErrorOriginal, type Target as TargetOriginal, type TargetTargetTypeOneOf as TargetTargetTypeOneOfOriginal, type TaxDetails as TaxDetailsOriginal, type TaxInfo as TaxInfoOriginal, type Tax as TaxOriginal, type TaxSummary as TaxSummaryOriginal, type TaxableAddress as TaxableAddressOriginal, type TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOfOriginal, TaxableAddressType as TaxableAddressTypeOriginal, type TaxableAddressTypeWithLiterals as TaxableAddressTypeWithLiteralsOriginal, type Title as TitleOriginal, type TranslatableString as TranslatableStringOriginal, type UpdateCartRequest as UpdateCartRequestOriginal, type UpdateCartResponse as UpdateCartResponseOriginal, type UpdateCurrentCartRequest as UpdateCurrentCartRequestOriginal, type UpdateCurrentCartResponse as UpdateCurrentCartResponseOriginal, type UpdateLineItemsInCurrentCartRequest as UpdateLineItemsInCurrentCartRequestOriginal, type UpdateLineItemsInCurrentCartResponse as UpdateLineItemsInCurrentCartResponseOriginal, type UpdateLineItemsRequest as UpdateLineItemsRequestOriginal, type UpdateLineItemsResponse as UpdateLineItemsResponseOriginal, type V2AdditionalFee as V2AdditionalFeeOriginal, type V2LineItem as V2LineItemOriginal, type ValidationError as ValidationErrorOriginal, ValidationsConfig as ValidationsConfigOriginal, type ValidationsConfigWithLiterals as ValidationsConfigWithLiteralsOriginal, type VatId as VatIdOriginal, VatType as VatTypeOriginal, type VatTypeWithLiterals as VatTypeWithLiteralsOriginal, type Violation as ViolationOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, WeightUnit as WeightUnitOriginal, type WeightUnitWithLiterals as WeightUnitWithLiteralsOriginal, type __PublicMethodMetaInfo, addCouponToCurrentCart, addGiftCardToCurrentCart, addLineItemsToCurrentCart, calculateCurrentCart, createCurrentCart, deleteCurrentCart, getCurrentCart, refreshCurrentCart, removeCouponFromCurrentCart, removeGiftCardFromCurrentCart, removeLineItemsFromCurrentCart, updateCurrentCart, updateLineItemsInCurrentCart };
|
|
@@ -105,18 +105,10 @@ function createCurrentCart(payload) {
|
|
|
105
105
|
paths: [
|
|
106
106
|
{ path: "cart.createdDate" },
|
|
107
107
|
{ path: "cart.updatedDate" },
|
|
108
|
-
{
|
|
109
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
110
|
-
},
|
|
111
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
112
108
|
{
|
|
113
109
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
114
110
|
},
|
|
115
111
|
{ path: "cart.lineItems.attributes.serviceProperties.scheduledDate" },
|
|
116
|
-
{
|
|
117
|
-
path: "catalogItems.catalogOverrideFields.image.urlExpirationDate"
|
|
118
|
-
},
|
|
119
|
-
{ path: "customItems.attributes.image.urlExpirationDate" },
|
|
120
112
|
{
|
|
121
113
|
path: "customItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
122
114
|
},
|
|
@@ -161,10 +153,6 @@ function createCurrentCart(payload) {
|
|
|
161
153
|
paths: [
|
|
162
154
|
{ path: "cart.createdDate" },
|
|
163
155
|
{ path: "cart.updatedDate" },
|
|
164
|
-
{
|
|
165
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
166
|
-
},
|
|
167
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
168
156
|
{
|
|
169
157
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
170
158
|
},
|
|
@@ -214,10 +202,6 @@ function getCurrentCart(payload) {
|
|
|
214
202
|
paths: [
|
|
215
203
|
{ path: "cart.createdDate" },
|
|
216
204
|
{ path: "cart.updatedDate" },
|
|
217
|
-
{
|
|
218
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
219
|
-
},
|
|
220
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
221
205
|
{
|
|
222
206
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
223
207
|
},
|
|
@@ -257,10 +241,6 @@ function updateCurrentCart(payload) {
|
|
|
257
241
|
paths: [
|
|
258
242
|
{ path: "cart.createdDate" },
|
|
259
243
|
{ path: "cart.updatedDate" },
|
|
260
|
-
{
|
|
261
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
262
|
-
},
|
|
263
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
264
244
|
{
|
|
265
245
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
266
246
|
},
|
|
@@ -301,10 +281,6 @@ function updateCurrentCart(payload) {
|
|
|
301
281
|
paths: [
|
|
302
282
|
{ path: "cart.createdDate" },
|
|
303
283
|
{ path: "cart.updatedDate" },
|
|
304
|
-
{
|
|
305
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
306
|
-
},
|
|
307
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
308
284
|
{
|
|
309
285
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
310
286
|
},
|
|
@@ -375,10 +351,6 @@ function refreshCurrentCart(payload) {
|
|
|
375
351
|
paths: [
|
|
376
352
|
{ path: "cart.createdDate" },
|
|
377
353
|
{ path: "cart.updatedDate" },
|
|
378
|
-
{
|
|
379
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
380
|
-
},
|
|
381
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
382
354
|
{
|
|
383
355
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
384
356
|
},
|
|
@@ -428,10 +400,6 @@ function calculateCurrentCart(payload) {
|
|
|
428
400
|
paths: [
|
|
429
401
|
{ path: "cart.createdDate" },
|
|
430
402
|
{ path: "cart.updatedDate" },
|
|
431
|
-
{
|
|
432
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
433
|
-
},
|
|
434
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
435
403
|
{
|
|
436
404
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
437
405
|
},
|
|
@@ -477,10 +445,6 @@ function addLineItemsToCurrentCart(payload) {
|
|
|
477
445
|
{
|
|
478
446
|
transformFn: transformSDKTimestampToRESTTimestamp,
|
|
479
447
|
paths: [
|
|
480
|
-
{
|
|
481
|
-
path: "catalogItems.catalogOverrideFields.image.urlExpirationDate"
|
|
482
|
-
},
|
|
483
|
-
{ path: "customItems.attributes.image.urlExpirationDate" },
|
|
484
448
|
{
|
|
485
449
|
path: "customItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
486
450
|
},
|
|
@@ -508,10 +472,6 @@ function addLineItemsToCurrentCart(payload) {
|
|
|
508
472
|
paths: [
|
|
509
473
|
{ path: "cart.createdDate" },
|
|
510
474
|
{ path: "cart.updatedDate" },
|
|
511
|
-
{
|
|
512
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
513
|
-
},
|
|
514
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
515
475
|
{
|
|
516
476
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
517
477
|
},
|
|
@@ -561,10 +521,6 @@ function removeLineItemsFromCurrentCart(payload) {
|
|
|
561
521
|
paths: [
|
|
562
522
|
{ path: "cart.createdDate" },
|
|
563
523
|
{ path: "cart.updatedDate" },
|
|
564
|
-
{
|
|
565
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
566
|
-
},
|
|
567
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
568
524
|
{
|
|
569
525
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
570
526
|
},
|
|
@@ -614,10 +570,6 @@ function updateLineItemsInCurrentCart(payload) {
|
|
|
614
570
|
paths: [
|
|
615
571
|
{ path: "cart.createdDate" },
|
|
616
572
|
{ path: "cart.updatedDate" },
|
|
617
|
-
{
|
|
618
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
619
|
-
},
|
|
620
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
621
573
|
{
|
|
622
574
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
623
575
|
},
|
|
@@ -667,10 +619,6 @@ function addCouponToCurrentCart(payload) {
|
|
|
667
619
|
paths: [
|
|
668
620
|
{ path: "cart.createdDate" },
|
|
669
621
|
{ path: "cart.updatedDate" },
|
|
670
|
-
{
|
|
671
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
672
|
-
},
|
|
673
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
674
622
|
{
|
|
675
623
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
676
624
|
},
|
|
@@ -720,10 +668,6 @@ function removeCouponFromCurrentCart(payload) {
|
|
|
720
668
|
paths: [
|
|
721
669
|
{ path: "cart.createdDate" },
|
|
722
670
|
{ path: "cart.updatedDate" },
|
|
723
|
-
{
|
|
724
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
725
|
-
},
|
|
726
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
727
671
|
{
|
|
728
672
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
729
673
|
},
|
|
@@ -773,10 +717,6 @@ function addGiftCardToCurrentCart(payload) {
|
|
|
773
717
|
paths: [
|
|
774
718
|
{ path: "cart.createdDate" },
|
|
775
719
|
{ path: "cart.updatedDate" },
|
|
776
|
-
{
|
|
777
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
778
|
-
},
|
|
779
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
780
720
|
{
|
|
781
721
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
782
722
|
},
|
|
@@ -826,10 +766,6 @@ function removeGiftCardFromCurrentCart(payload) {
|
|
|
826
766
|
paths: [
|
|
827
767
|
{ path: "cart.createdDate" },
|
|
828
768
|
{ path: "cart.updatedDate" },
|
|
829
|
-
{
|
|
830
|
-
path: "cart.lineItems.source.catalogOverrideFields.image.urlExpirationDate"
|
|
831
|
-
},
|
|
832
|
-
{ path: "cart.lineItems.attributes.image.urlExpirationDate" },
|
|
833
769
|
{
|
|
834
770
|
path: "cart.lineItems.attributes.subscriptionInfo.subscriptionSettings.startDate"
|
|
835
771
|
},
|