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