@wix/auto_sdk_ecom_cart-v-2 1.0.21 → 1.0.22

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.
@@ -32,7 +32,7 @@ interface Cart {
32
32
  */
33
33
  lineItems?: V2LineItem[];
34
34
  /** The sum of all line item final prices. */
35
- subtotal?: MultiCurrencyPrice;
35
+ subtotal?: ConvertedMoney;
36
36
  /**
37
37
  * Optional message left by the customer.
38
38
  * Usually intended for the merchant and contain special instructions, requests, or clarifications related to the order.
@@ -198,12 +198,12 @@ interface ItemPricingInfo {
198
198
  * Final unit price after applying automatic discounts.
199
199
  * Includes tax if `tax_info.prices_include_tax` is true.
200
200
  */
201
- unitPrice?: MultiCurrencyPrice;
201
+ unitPrice?: ConvertedMoney;
202
202
  /**
203
203
  * Final total price for this item (unit price × quantity).
204
204
  * Includes tax if `tax_info.prices_include_tax` is true.
205
205
  */
206
- totalPrice?: MultiCurrencyPrice;
206
+ totalPrice?: ConvertedMoney;
207
207
  /**
208
208
  * Additional description for the price.
209
209
  * For example, when price is 0 but additional details about the actual price are needed - "Starts at $67".
@@ -214,28 +214,21 @@ interface ItemPricingInfo {
214
214
  /** Detailed breakdown of price components. */
215
215
  breakdown?: ItemPriceBreakdown;
216
216
  }
217
- interface MultiCurrencyPrice {
217
+ interface ConvertedMoney {
218
218
  /**
219
- * Amount.
220
- * @decimalValue options { gte:0, lte:1000000000000000 }
219
+ * Monetary amount in the original currency, as specified in `business_info.currency_code`.
220
+ * @format DECIMAL_VALUE
221
+ * @decimalValue options { gte:0, lte:999999999, maxScale:3 }
221
222
  */
222
223
  amount?: string;
223
224
  /**
224
- * Converted amount.
225
- * @readonly
226
- * @decimalValue options { gte:0, lte:1000000000000000 }
225
+ * Monetary amount in the converted currency, as specified in `customer_info.currency_code`.
226
+ *
227
+ * Default: `amount`.
228
+ * @format DECIMAL_VALUE
229
+ * @decimalValue options { gte:0, lte:999999999, maxScale:3 }
227
230
  */
228
231
  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
232
  }
240
233
  interface PriceDescription {
241
234
  /**
@@ -258,17 +251,17 @@ interface ItemPriceBreakdown {
258
251
  * Full catalog price of a single item before any discounts, including modifiers.
259
252
  * Includes tax if `tax_info.prices_include_tax` is true.
260
253
  */
261
- fullPrice?: MultiCurrencyPrice;
254
+ fullPrice?: ConvertedMoney;
262
255
  /**
263
256
  * Catalog sale price of a single item, including modifiers.
264
257
  * Includes tax if `tax_info.prices_include_tax` is true.
265
258
  */
266
- salePrice?: MultiCurrencyPrice;
259
+ salePrice?: ConvertedMoney;
267
260
  /**
268
261
  * Total price of all item modifiers for the entire quantity of this item.
269
262
  * Includes tax if `tax_info.prices_include_tax` is true.
270
263
  */
271
- totalModifiersPrice?: MultiCurrencyPrice;
264
+ totalModifiersPrice?: ConvertedMoney;
272
265
  }
273
266
  interface ItemSource {
274
267
  /**
@@ -765,7 +758,7 @@ interface ItemPaymentConfig {
765
758
  * Partial payment to be paid upfront during the checkout.
766
759
  * Eligible for catalog items with `lineItem.paymentOption` type `DEPOSIT_ONLINE` only.
767
760
  */
768
- depositAmount?: MultiCurrencyPrice;
761
+ depositAmount?: ConvertedMoney;
769
762
  /**
770
763
  * Selected membership to be used as payment for this item.
771
764
  * Must be used with `lineItem.paymentOption` set to `MEMBERSHIP` or `MEMBERSHIP_OFFLINE`.
@@ -894,7 +887,7 @@ interface ItemModifier {
894
887
  /** Additional details. */
895
888
  details?: TranslatableString;
896
889
  /** The price of the modifier. */
897
- price?: MultiCurrencyPrice;
890
+ price?: ConvertedMoney;
898
891
  }
899
892
  /**
900
893
  * Currently, only automatic discounts are applied to line items.
@@ -904,7 +897,7 @@ interface ItemDiscount {
904
897
  /** The display name of the discount. */
905
898
  name?: TranslatableString;
906
899
  /** The amount discounted from the item's sale price (per unit). */
907
- amountOff?: MultiCurrencyPrice;
900
+ amountOff?: ConvertedMoney;
908
901
  }
909
902
  interface Scope {
910
903
  /** Scope namespace (Wix Stores, Wix Bookings, Wix Events, Wix Pricing Plans) */
@@ -1438,9 +1431,9 @@ interface LegacyFields {
1438
1431
  */
1439
1432
  appliedDiscounts?: Discount[];
1440
1433
  /** The coupon discount amount. */
1441
- couponDiscount?: MultiCurrencyPrice;
1434
+ couponDiscount?: ConvertedMoney;
1442
1435
  /** The sum of all line items after applying all discounts. */
1443
- subtotalAfterCouponDiscount?: MultiCurrencyPrice;
1436
+ subtotalAfterCouponDiscount?: ConvertedMoney;
1444
1437
  }
1445
1438
  interface Discount {
1446
1439
  /** The display name of the discount. */
@@ -1495,7 +1488,7 @@ declare enum DiscountScope {
1495
1488
  type DiscountScopeWithLiterals = DiscountScope | 'UNKNOWN_DISCOUNT_SCOPE' | 'CART_SUBTOTAL' | 'LINE_ITEM' | 'DELIVERY';
1496
1489
  interface DiscountBenefit extends DiscountBenefitValueOneOf {
1497
1490
  /** A specific monetary value deducted from the total cost. */
1498
- amountOff?: MultiCurrencyPrice;
1491
+ amountOff?: ConvertedMoney;
1499
1492
  /**
1500
1493
  * The ID of line item that the discount applies to.
1501
1494
  * Relevant for item-level discounts only.
@@ -1506,7 +1499,7 @@ interface DiscountBenefit extends DiscountBenefitValueOneOf {
1506
1499
  /** @oneof */
1507
1500
  interface DiscountBenefitValueOneOf {
1508
1501
  /** A specific monetary value deducted from the total cost. */
1509
- amountOff?: MultiCurrencyPrice;
1502
+ amountOff?: ConvertedMoney;
1510
1503
  }
1511
1504
  interface CartSummary {
1512
1505
  /**
@@ -1581,12 +1574,12 @@ interface LineItemSummary {
1581
1574
  * Final unit price after applying automatic discounts.
1582
1575
  * Includes tax if `tax_summary.prices_include_tax` is true.
1583
1576
  */
1584
- unitPrice?: MultiCurrencyPrice;
1577
+ unitPrice?: ConvertedMoney;
1585
1578
  /**
1586
1579
  * Total price for the line item (unit price × quantity).
1587
1580
  * Includes tax if `tax_summary.prices_include_tax` is true.
1588
1581
  */
1589
- totalPrice?: MultiCurrencyPrice;
1582
+ totalPrice?: ConvertedMoney;
1590
1583
  }
1591
1584
  interface DeliverySummary {
1592
1585
  /** The calculated delivery method. */
@@ -1595,7 +1588,7 @@ interface DeliverySummary {
1595
1588
  * Delivery price after discount.
1596
1589
  * Includes tax if `tax_summary.prices_include_tax` is true.
1597
1590
  */
1598
- price?: MultiCurrencyPrice;
1591
+ price?: ConvertedMoney;
1599
1592
  }
1600
1593
  interface V2AdditionalFee {
1601
1594
  /**
@@ -1623,7 +1616,7 @@ interface V2AdditionalFee {
1623
1616
  * Additional fee's price.
1624
1617
  * Includes tax if `tax_summary.prices_include_tax` is true.
1625
1618
  */
1626
- price?: MultiCurrencyPrice;
1619
+ price?: ConvertedMoney;
1627
1620
  /**
1628
1621
  * Number of subscription cycle this fee applies to.
1629
1622
  * If None and discount is linked to subscription line item, it applies to all cycles.
@@ -1652,7 +1645,7 @@ interface TaxSummary {
1652
1645
  */
1653
1646
  lineItemTaxes?: LineItemTax[];
1654
1647
  /** Tax applied to the delivery method. */
1655
- deliveryTax?: MultiCurrencyPrice;
1648
+ deliveryTax?: ConvertedMoney;
1656
1649
  /**
1657
1650
  * Taxes applied to additional fees.
1658
1651
  * @maxSize 100
@@ -1663,16 +1656,16 @@ interface Tax {
1663
1656
  /** The name of the tax. */
1664
1657
  name?: TranslatableString;
1665
1658
  /** Amount for which tax is calculated. */
1666
- taxableAmount?: MultiCurrencyPrice;
1659
+ taxableAmount?: ConvertedMoney;
1667
1660
  /** Amount that is exempt from tax. */
1668
- exemptAmount?: MultiCurrencyPrice;
1661
+ exemptAmount?: ConvertedMoney;
1669
1662
  /**
1670
1663
  * Tax rate %, as a decimal point between 0 and 1.
1671
1664
  * @decimalValue options { gte:0, lte:1, maxScale:6 }
1672
1665
  */
1673
1666
  rate?: string | null;
1674
1667
  /** Calculated tax, based on `taxable_amount` and `rate`. */
1675
- amount?: MultiCurrencyPrice;
1668
+ amount?: ConvertedMoney;
1676
1669
  }
1677
1670
  interface LineItemTax {
1678
1671
  /**
@@ -1681,7 +1674,7 @@ interface LineItemTax {
1681
1674
  */
1682
1675
  lineItemId?: string;
1683
1676
  /** Tax amount applied to the additional fee. */
1684
- tax?: MultiCurrencyPrice;
1677
+ tax?: ConvertedMoney;
1685
1678
  }
1686
1679
  interface AdditionalFeeTax {
1687
1680
  /**
@@ -1691,34 +1684,34 @@ interface AdditionalFeeTax {
1691
1684
  */
1692
1685
  additionalFeeCode?: string;
1693
1686
  /** Tax amount applied to the additional fee. */
1694
- tax?: MultiCurrencyPrice;
1687
+ tax?: ConvertedMoney;
1695
1688
  }
1696
1689
  interface PriceSummary {
1697
1690
  /**
1698
1691
  * Total price of all line items after applying item-level discounts.
1699
1692
  * Includes tax if `tax_summary.prices_include_tax` is true.
1700
1693
  */
1701
- subtotal?: MultiCurrencyPrice;
1694
+ subtotal?: ConvertedMoney;
1702
1695
  /**
1703
1696
  * Total cart-level discount applied to the subtotal.
1704
1697
  * Line-item discounts are reflected in the subtotal and not included here.
1705
1698
  * Currently supports only a single coupon.
1706
1699
  */
1707
- discount?: MultiCurrencyPrice;
1700
+ discount?: ConvertedMoney;
1708
1701
  /**
1709
1702
  * Final delivery cost for the cart.
1710
1703
  * Includes tax if `tax_summary.prices_include_tax` is true.
1711
1704
  */
1712
- delivery?: MultiCurrencyPrice;
1705
+ delivery?: ConvertedMoney;
1713
1706
  /**
1714
1707
  * Total additional fees associated with the cart.
1715
1708
  * Includes tax if `tax_summary.prices_include_tax` is true.
1716
1709
  */
1717
- additionalFees?: MultiCurrencyPrice;
1710
+ additionalFees?: ConvertedMoney;
1718
1711
  /** Total tax amount calculated across all applicable components (items, discounts, delivery, and fees). */
1719
- tax?: MultiCurrencyPrice;
1712
+ tax?: ConvertedMoney;
1720
1713
  /** Total amount to be paid. */
1721
- total?: MultiCurrencyPrice;
1714
+ total?: ConvertedMoney;
1722
1715
  }
1723
1716
  interface PaymentSummary {
1724
1717
  /**
@@ -1740,13 +1733,13 @@ interface PaymentSummary {
1740
1733
  /** Indicates whether a remaining payment is required to create the order, after applying gift cards. */
1741
1734
  requiresPaymentAfterGiftCard?: boolean;
1742
1735
  /** The total amount due after applying all gift cards. */
1743
- totalAfterGiftCards?: MultiCurrencyPrice;
1736
+ totalAfterGiftCards?: ConvertedMoney;
1744
1737
  /** The upfront amount to be charged immediately when placing the order (after applying gift cards). */
1745
- payNow?: MultiCurrencyPrice;
1738
+ payNow?: ConvertedMoney;
1746
1739
  /** The remaining amount to be collected later. */
1747
- payLater?: MultiCurrencyPrice;
1740
+ payLater?: ConvertedMoney;
1748
1741
  /** The amount to be charged after a free trial period (typically for subscription-based products). */
1749
- payAfterFreeTrial?: MultiCurrencyPrice;
1742
+ payAfterFreeTrial?: ConvertedMoney;
1750
1743
  }
1751
1744
  interface GiftCardSummary {
1752
1745
  /**
@@ -1755,7 +1748,7 @@ interface GiftCardSummary {
1755
1748
  */
1756
1749
  giftCardId?: string;
1757
1750
  /** The amount to be reduced from the gift card's balance. */
1758
- redeemAmount?: MultiCurrencyPrice;
1751
+ redeemAmount?: ConvertedMoney;
1759
1752
  }
1760
1753
  interface Membership {
1761
1754
  /**
@@ -2215,7 +2208,7 @@ interface CustomItemPaymentConfig {
2215
2208
  * Partial payment to be paid upfront during the checkout.
2216
2209
  * Eligible for catalog items with `lineItem.paymentOption` type `DEPOSIT_ONLINE` only.
2217
2210
  */
2218
- depositAmount?: MultiCurrencyPrice;
2211
+ depositAmount?: ConvertedMoney;
2219
2212
  /**
2220
2213
  * Type of selected payment option for current item.
2221
2214
  *
@@ -2964,4 +2957,4 @@ declare function markCartAsCompleted(): __PublicMethodMetaInfo<'POST', {
2964
2957
  }, MarkCartAsCompletedRequest$1, MarkCartAsCompletedRequest, MarkCartAsCompletedResponse$1, MarkCartAsCompletedResponse>;
2965
2958
  declare function handleAsyncCheckoutCompletion(): __PublicMethodMetaInfo<'POST', {}, HandleAsyncCheckoutCompletionRequest$1, HandleAsyncCheckoutCompletionRequest, RawHttpResponse$1, RawHttpResponse>;
2966
2959
 
2967
- 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, addCoupon, addGiftCard, addLineItems, calculateCart, createCart, deleteCart, getCart, getCheckoutUrl, handleAsyncCheckoutCompletion, markCartAsCompleted, placeOrder, refreshCart, removeCoupon, removeGiftCard, removeLineItems, updateCart, updateLineItems };
2960
+ 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, addCoupon, addGiftCard, addLineItems, calculateCart, createCart, deleteCart, getCart, getCheckoutUrl, handleAsyncCheckoutCompletion, markCartAsCompleted, placeOrder, refreshCart, removeCoupon, removeGiftCard, removeLineItems, updateCart, updateLineItems };