@wix/auto_sdk_ecom_current-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.
@@ -29,7 +29,7 @@ interface Cart {
29
29
  */
30
30
  lineItems?: V2LineItem[];
31
31
  /** The sum of all line item final prices. */
32
- subtotal?: MultiCurrencyPrice;
32
+ subtotal?: ConvertedMoney;
33
33
  /**
34
34
  * Optional message left by the customer.
35
35
  * Usually intended for the merchant and contain special instructions, requests, or clarifications related to the order.
@@ -195,12 +195,12 @@ interface ItemPricingInfo {
195
195
  * Final unit price after applying automatic discounts.
196
196
  * Includes tax if `tax_info.prices_include_tax` is true.
197
197
  */
198
- unitPrice?: MultiCurrencyPrice;
198
+ unitPrice?: ConvertedMoney;
199
199
  /**
200
200
  * Final total price for this item (unit price × quantity).
201
201
  * Includes tax if `tax_info.prices_include_tax` is true.
202
202
  */
203
- totalPrice?: MultiCurrencyPrice;
203
+ totalPrice?: ConvertedMoney;
204
204
  /**
205
205
  * Additional description for the price.
206
206
  * For example, when price is 0 but additional details about the actual price are needed - "Starts at $67".
@@ -211,28 +211,21 @@ interface ItemPricingInfo {
211
211
  /** Detailed breakdown of price components. */
212
212
  breakdown?: ItemPriceBreakdown;
213
213
  }
214
- interface MultiCurrencyPrice {
214
+ interface ConvertedMoney {
215
215
  /**
216
- * Amount.
217
- * @decimalValue options { gte:0, lte:1000000000000000 }
216
+ * Monetary amount in the original currency, as specified in `business_info.currency_code`.
217
+ * @format DECIMAL_VALUE
218
+ * @decimalValue options { gte:0, lte:999999999, maxScale:3 }
218
219
  */
219
220
  amount?: string;
220
221
  /**
221
- * Converted amount.
222
- * @readonly
223
- * @decimalValue options { gte:0, lte:1000000000000000 }
222
+ * Monetary amount in the converted currency, as specified in `customer_info.currency_code`.
223
+ *
224
+ * Default: `amount`.
225
+ * @format DECIMAL_VALUE
226
+ * @decimalValue options { gte:0, lte:999999999, maxScale:3 }
224
227
  */
225
228
  convertedAmount?: string;
226
- /**
227
- * Amount formatted with currency symbol.
228
- * @readonly
229
- */
230
- formattedAmount?: string;
231
- /**
232
- * Converted amount formatted with currency symbol.
233
- * @readonly
234
- */
235
- formattedConvertedAmount?: string;
236
229
  }
237
230
  interface PriceDescription {
238
231
  /**
@@ -255,17 +248,17 @@ interface ItemPriceBreakdown {
255
248
  * Full catalog price of a single item before any discounts, including modifiers.
256
249
  * Includes tax if `tax_info.prices_include_tax` is true.
257
250
  */
258
- fullPrice?: MultiCurrencyPrice;
251
+ fullPrice?: ConvertedMoney;
259
252
  /**
260
253
  * Catalog sale price of a single item, including modifiers.
261
254
  * Includes tax if `tax_info.prices_include_tax` is true.
262
255
  */
263
- salePrice?: MultiCurrencyPrice;
256
+ salePrice?: ConvertedMoney;
264
257
  /**
265
258
  * Total price of all item modifiers for the entire quantity of this item.
266
259
  * Includes tax if `tax_info.prices_include_tax` is true.
267
260
  */
268
- totalModifiersPrice?: MultiCurrencyPrice;
261
+ totalModifiersPrice?: ConvertedMoney;
269
262
  }
270
263
  interface ItemSource {
271
264
  /**
@@ -717,7 +710,7 @@ interface ItemPaymentConfig {
717
710
  * Partial payment to be paid upfront during the checkout.
718
711
  * Eligible for catalog items with `lineItem.paymentOption` type `DEPOSIT_ONLINE` only.
719
712
  */
720
- depositAmount?: MultiCurrencyPrice;
713
+ depositAmount?: ConvertedMoney;
721
714
  /**
722
715
  * Selected membership to be used as payment for this item.
723
716
  * Must be used with `lineItem.paymentOption` set to `MEMBERSHIP` or `MEMBERSHIP_OFFLINE`.
@@ -846,7 +839,7 @@ interface ItemModifier {
846
839
  /** Additional details. */
847
840
  details?: TranslatableString;
848
841
  /** The price of the modifier. */
849
- price?: MultiCurrencyPrice;
842
+ price?: ConvertedMoney;
850
843
  }
851
844
  /**
852
845
  * Currently, only automatic discounts are applied to line items.
@@ -856,7 +849,7 @@ interface ItemDiscount {
856
849
  /** The display name of the discount. */
857
850
  name?: TranslatableString;
858
851
  /** The amount discounted from the item's sale price (per unit). */
859
- amountOff?: MultiCurrencyPrice;
852
+ amountOff?: ConvertedMoney;
860
853
  }
861
854
  interface Scope {
862
855
  /** Scope namespace (Wix Stores, Wix Bookings, Wix Events, Wix Pricing Plans) */
@@ -1390,9 +1383,9 @@ interface LegacyFields {
1390
1383
  */
1391
1384
  appliedDiscounts?: Discount[];
1392
1385
  /** The coupon discount amount. */
1393
- couponDiscount?: MultiCurrencyPrice;
1386
+ couponDiscount?: ConvertedMoney;
1394
1387
  /** The sum of all line items after applying all discounts. */
1395
- subtotalAfterCouponDiscount?: MultiCurrencyPrice;
1388
+ subtotalAfterCouponDiscount?: ConvertedMoney;
1396
1389
  }
1397
1390
  interface Discount {
1398
1391
  /** The display name of the discount. */
@@ -1447,7 +1440,7 @@ declare enum DiscountScope {
1447
1440
  type DiscountScopeWithLiterals = DiscountScope | 'UNKNOWN_DISCOUNT_SCOPE' | 'CART_SUBTOTAL' | 'LINE_ITEM' | 'DELIVERY';
1448
1441
  interface DiscountBenefit extends DiscountBenefitValueOneOf {
1449
1442
  /** A specific monetary value deducted from the total cost. */
1450
- amountOff?: MultiCurrencyPrice;
1443
+ amountOff?: ConvertedMoney;
1451
1444
  /**
1452
1445
  * The ID of line item that the discount applies to.
1453
1446
  * Relevant for item-level discounts only.
@@ -1458,7 +1451,7 @@ interface DiscountBenefit extends DiscountBenefitValueOneOf {
1458
1451
  /** @oneof */
1459
1452
  interface DiscountBenefitValueOneOf {
1460
1453
  /** A specific monetary value deducted from the total cost. */
1461
- amountOff?: MultiCurrencyPrice;
1454
+ amountOff?: ConvertedMoney;
1462
1455
  }
1463
1456
  interface CartSummary {
1464
1457
  /**
@@ -1533,12 +1526,12 @@ interface LineItemSummary {
1533
1526
  * Final unit price after applying automatic discounts.
1534
1527
  * Includes tax if `tax_summary.prices_include_tax` is true.
1535
1528
  */
1536
- unitPrice?: MultiCurrencyPrice;
1529
+ unitPrice?: ConvertedMoney;
1537
1530
  /**
1538
1531
  * Total price for the line item (unit price × quantity).
1539
1532
  * Includes tax if `tax_summary.prices_include_tax` is true.
1540
1533
  */
1541
- totalPrice?: MultiCurrencyPrice;
1534
+ totalPrice?: ConvertedMoney;
1542
1535
  }
1543
1536
  interface DeliverySummary {
1544
1537
  /** The calculated delivery method. */
@@ -1547,7 +1540,7 @@ interface DeliverySummary {
1547
1540
  * Delivery price after discount.
1548
1541
  * Includes tax if `tax_summary.prices_include_tax` is true.
1549
1542
  */
1550
- price?: MultiCurrencyPrice;
1543
+ price?: ConvertedMoney;
1551
1544
  }
1552
1545
  interface V2AdditionalFee {
1553
1546
  /**
@@ -1575,7 +1568,7 @@ interface V2AdditionalFee {
1575
1568
  * Additional fee's price.
1576
1569
  * Includes tax if `tax_summary.prices_include_tax` is true.
1577
1570
  */
1578
- price?: MultiCurrencyPrice;
1571
+ price?: ConvertedMoney;
1579
1572
  /**
1580
1573
  * Number of subscription cycle this fee applies to.
1581
1574
  * If None and discount is linked to subscription line item, it applies to all cycles.
@@ -1604,7 +1597,7 @@ interface TaxSummary {
1604
1597
  */
1605
1598
  lineItemTaxes?: LineItemTax[];
1606
1599
  /** Tax applied to the delivery method. */
1607
- deliveryTax?: MultiCurrencyPrice;
1600
+ deliveryTax?: ConvertedMoney;
1608
1601
  /**
1609
1602
  * Taxes applied to additional fees.
1610
1603
  * @maxSize 100
@@ -1615,16 +1608,16 @@ interface Tax {
1615
1608
  /** The name of the tax. */
1616
1609
  name?: TranslatableString;
1617
1610
  /** Amount for which tax is calculated. */
1618
- taxableAmount?: MultiCurrencyPrice;
1611
+ taxableAmount?: ConvertedMoney;
1619
1612
  /** Amount that is exempt from tax. */
1620
- exemptAmount?: MultiCurrencyPrice;
1613
+ exemptAmount?: ConvertedMoney;
1621
1614
  /**
1622
1615
  * Tax rate %, as a decimal point between 0 and 1.
1623
1616
  * @decimalValue options { gte:0, lte:1, maxScale:6 }
1624
1617
  */
1625
1618
  rate?: string | null;
1626
1619
  /** Calculated tax, based on `taxable_amount` and `rate`. */
1627
- amount?: MultiCurrencyPrice;
1620
+ amount?: ConvertedMoney;
1628
1621
  }
1629
1622
  interface LineItemTax {
1630
1623
  /**
@@ -1633,7 +1626,7 @@ interface LineItemTax {
1633
1626
  */
1634
1627
  lineItemId?: string;
1635
1628
  /** Tax amount applied to the additional fee. */
1636
- tax?: MultiCurrencyPrice;
1629
+ tax?: ConvertedMoney;
1637
1630
  }
1638
1631
  interface AdditionalFeeTax {
1639
1632
  /**
@@ -1643,34 +1636,34 @@ interface AdditionalFeeTax {
1643
1636
  */
1644
1637
  additionalFeeCode?: string;
1645
1638
  /** Tax amount applied to the additional fee. */
1646
- tax?: MultiCurrencyPrice;
1639
+ tax?: ConvertedMoney;
1647
1640
  }
1648
1641
  interface PriceSummary {
1649
1642
  /**
1650
1643
  * Total price of all line items after applying item-level discounts.
1651
1644
  * Includes tax if `tax_summary.prices_include_tax` is true.
1652
1645
  */
1653
- subtotal?: MultiCurrencyPrice;
1646
+ subtotal?: ConvertedMoney;
1654
1647
  /**
1655
1648
  * Total cart-level discount applied to the subtotal.
1656
1649
  * Line-item discounts are reflected in the subtotal and not included here.
1657
1650
  * Currently supports only a single coupon.
1658
1651
  */
1659
- discount?: MultiCurrencyPrice;
1652
+ discount?: ConvertedMoney;
1660
1653
  /**
1661
1654
  * Final delivery cost for the cart.
1662
1655
  * Includes tax if `tax_summary.prices_include_tax` is true.
1663
1656
  */
1664
- delivery?: MultiCurrencyPrice;
1657
+ delivery?: ConvertedMoney;
1665
1658
  /**
1666
1659
  * Total additional fees associated with the cart.
1667
1660
  * Includes tax if `tax_summary.prices_include_tax` is true.
1668
1661
  */
1669
- additionalFees?: MultiCurrencyPrice;
1662
+ additionalFees?: ConvertedMoney;
1670
1663
  /** Total tax amount calculated across all applicable components (items, discounts, delivery, and fees). */
1671
- tax?: MultiCurrencyPrice;
1664
+ tax?: ConvertedMoney;
1672
1665
  /** Total amount to be paid. */
1673
- total?: MultiCurrencyPrice;
1666
+ total?: ConvertedMoney;
1674
1667
  }
1675
1668
  interface PaymentSummary {
1676
1669
  /**
@@ -1692,13 +1685,13 @@ interface PaymentSummary {
1692
1685
  /** Indicates whether a remaining payment is required to create the order, after applying gift cards. */
1693
1686
  requiresPaymentAfterGiftCard?: boolean;
1694
1687
  /** The total amount due after applying all gift cards. */
1695
- totalAfterGiftCards?: MultiCurrencyPrice;
1688
+ totalAfterGiftCards?: ConvertedMoney;
1696
1689
  /** The upfront amount to be charged immediately when placing the order (after applying gift cards). */
1697
- payNow?: MultiCurrencyPrice;
1690
+ payNow?: ConvertedMoney;
1698
1691
  /** The remaining amount to be collected later. */
1699
- payLater?: MultiCurrencyPrice;
1692
+ payLater?: ConvertedMoney;
1700
1693
  /** The amount to be charged after a free trial period (typically for subscription-based products). */
1701
- payAfterFreeTrial?: MultiCurrencyPrice;
1694
+ payAfterFreeTrial?: ConvertedMoney;
1702
1695
  }
1703
1696
  interface GiftCardSummary {
1704
1697
  /**
@@ -1707,7 +1700,7 @@ interface GiftCardSummary {
1707
1700
  */
1708
1701
  giftCardId?: string;
1709
1702
  /** The amount to be reduced from the gift card's balance. */
1710
- redeemAmount?: MultiCurrencyPrice;
1703
+ redeemAmount?: ConvertedMoney;
1711
1704
  }
1712
1705
  interface Membership {
1713
1706
  /**
@@ -2167,7 +2160,7 @@ interface CustomItemPaymentConfig {
2167
2160
  * Partial payment to be paid upfront during the checkout.
2168
2161
  * Eligible for catalog items with `lineItem.paymentOption` type `DEPOSIT_ONLINE` only.
2169
2162
  */
2170
- depositAmount?: MultiCurrencyPrice;
2163
+ depositAmount?: ConvertedMoney;
2171
2164
  /**
2172
2165
  * Type of selected payment option for current item.
2173
2166
  *
@@ -2922,4 +2915,4 @@ interface UpdateLineItemsInCurrentCartOptions {
2922
2915
  lineItems?: LineItemUpdate[];
2923
2916
  }
2924
2917
 
2925
- export { type ActionEvent, type AddCouponRequest, type AddCouponResponse, type AddCouponToCurrentCartRequest, type AddCouponToCurrentCartResponse, type AddGiftCardRequest, type AddGiftCardResponse, type AddGiftCardToCurrentCartRequest, type AddGiftCardToCurrentCartResponse, type AddLineItemsRequest, type AddLineItemsResponse, type AddLineItemsToCurrentCartOptions, type AddLineItemsToCurrentCartRequest, type AddLineItemsToCurrentCartResponse, type AdditionalFee, type AdditionalFeeTax, type Address, type AddressLocation, type ApplicationError, type BusinessInfo, type CalculateCartRequest, type CalculateCartResponse, type CalculateCurrentCartOptions, type CalculateCurrentCartRequest, type CalculateCurrentCartResponse, type CalculationConfig, type CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf, type CarrierError, type CarrierErrors, type Cart, type CartSettings, type CartSource, type CartSummary, type CatalogItemInput, type CatalogOverrideFields, type CatalogReference, ChannelType, type ChannelTypeWithLiterals, type Charge, type Color, type Coupon, type CreateCartRequest, type CreateCartResponse, type CreateCurrentCartOptions, type CreateCurrentCartRequest, type CreateCurrentCartResponse, type CreatedBy, type CreatedByIdOneOf, type CustomContentReference, type CustomField, type CustomItemAttributes, type CustomItemDeliveryConfig, type CustomItemInput, type CustomItemPaymentConfig, type CustomItemPricingInfo, type CustomItemQuantityInfo, type CustomItemSource, type CustomItemTaxConfig, type CustomerInfo, type CustomerInfoIdOneOf, type DeleteCartRequest, type DeleteCartResponse, type DeleteCurrentCartRequest, type DeleteCurrentCartResponse, type DeliveryInfo, type DeliveryMethod, type DeliverySummary, type Description, type DescriptionLine, type DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName, DescriptionLineType, type DescriptionLineTypeWithLiterals, type DescriptionLineValueOneOf, type Details, type DetailsKindOneOf, type Discount, type DiscountBenefit, type DiscountBenefitValueOneOf, DiscountScope, type DiscountScopeWithLiterals, type DiscountSource, DiscountSourceType, type DiscountSourceTypeWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type ExtendedFields, type ExternalReference, type FieldViolation, FileType, type FileTypeWithLiterals, type FreeTrialPeriod, type FullAddressContactDetails, type GetCartRequest, type GetCartResponse, type GetCheckoutURLRequest, type GetCheckoutURLResponse, type GetCurrentCartRequest, type GetCurrentCartResponse, type GiftCard, type GiftCardSummary, type Group, type HandleAsyncCheckoutCompletionRequest, type HeadersEntry, type IdentificationData, type IdentificationDataIdOneOf, type ItemAttributes, type ItemDeliveryConfig, type ItemDiscount, type ItemModifier, type ItemPaymentConfig, type ItemPriceBreakdown, type ItemPricingInfo, type ItemQuantityInfo, type ItemSource, ItemStatus, type ItemStatusWithLiterals, type ItemTaxConfig, type ItemType, ItemTypeItemType, type ItemTypeItemTypeDataOneOf, type ItemTypeItemTypeWithLiterals, type LegacyFields, type LineItem, type LineItemSummary, type LineItemTax, type LineItemUpdate, type MarkCartAsCompletedRequest, type MarkCartAsCompletedResponse, type Membership, type MessageEnvelope, type ModifierGroup, type MultiCurrencyPrice, NameInLineItem, type NameInLineItemWithLiterals, NameInOther, type NameInOtherWithLiterals, type Other, type PaymentInfo, type PaymentOption, PaymentOptionType, type PaymentOptionTypeWithLiterals, type PaymentSummary, type PhysicalProperties, type PlaceOrderRequest, type PlaceOrderResponse, type PlainTextValue, type Policy, type PriceDescription, type PriceSummary, type QuantityUpdate, type RawHttpResponse, type RedirectUrls, type RefreshCartRequest, type RefreshCartResponse, type RefreshCurrentCartRequest, type RefreshCurrentCartResponse, type RemoveCouponFromCurrentCartRequest, type RemoveCouponFromCurrentCartResponse, type RemoveCouponRequest, type RemoveCouponResponse, type RemoveGiftCardFromCurrentCartRequest, type RemoveGiftCardFromCurrentCartResponse, type RemoveGiftCardRequest, type RemoveGiftCardResponse, type RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsFromCurrentCartResponse, type RemoveLineItemsRequest, type RemoveLineItemsResponse, type RestoreInfo, RuleType, type RuleTypeWithLiterals, type Scope, type SecuredMedia, type SelectedMembership, type SelectedMembershipUpdate, type ServiceProperties, Severity, type SeverityWithLiterals, type StreetAddress, type SubscriptionCharges, SubscriptionFrequency, type SubscriptionFrequencyWithLiterals, type SubscriptionOptionInfo, type SubscriptionSettings, SuggestedFix, type SuggestedFixWithLiterals, type SystemError, type Target, type TargetTargetTypeOneOf, type Tax, type TaxDetails, type TaxInfo, type TaxSummary, type TaxableAddress, type TaxableAddressTaxableAddressDataOneOf, TaxableAddressType, type TaxableAddressTypeWithLiterals, type Title, type TranslatableString, type UpdateCartRequest, type UpdateCartResponse, type UpdateCurrentCartRequest, type UpdateCurrentCartResponse, type UpdateLineItemsInCurrentCartOptions, type UpdateLineItemsInCurrentCartRequest, type UpdateLineItemsInCurrentCartResponse, type UpdateLineItemsRequest, type UpdateLineItemsResponse, type V2AdditionalFee, type V2LineItem, type ValidationError, ValidationsConfig, type ValidationsConfigWithLiterals, type VatId, VatType, type VatTypeWithLiterals, type Violation, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, WeightUnit, type WeightUnitWithLiterals };
2918
+ export { type ActionEvent, type AddCouponRequest, type AddCouponResponse, type AddCouponToCurrentCartRequest, type AddCouponToCurrentCartResponse, type AddGiftCardRequest, type AddGiftCardResponse, type AddGiftCardToCurrentCartRequest, type AddGiftCardToCurrentCartResponse, type AddLineItemsRequest, type AddLineItemsResponse, type AddLineItemsToCurrentCartOptions, type AddLineItemsToCurrentCartRequest, type AddLineItemsToCurrentCartResponse, type AdditionalFee, type AdditionalFeeTax, type Address, type AddressLocation, type ApplicationError, type BusinessInfo, type CalculateCartRequest, type CalculateCartResponse, type CalculateCurrentCartOptions, type CalculateCurrentCartRequest, type CalculateCurrentCartResponse, type CalculationConfig, type CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf, type CarrierError, type CarrierErrors, type Cart, type CartSettings, type CartSource, type CartSummary, type CatalogItemInput, type CatalogOverrideFields, type CatalogReference, ChannelType, type ChannelTypeWithLiterals, type Charge, type Color, type ConvertedMoney, type Coupon, type CreateCartRequest, type CreateCartResponse, type CreateCurrentCartOptions, type CreateCurrentCartRequest, type CreateCurrentCartResponse, type CreatedBy, type CreatedByIdOneOf, type CustomContentReference, type CustomField, type CustomItemAttributes, type CustomItemDeliveryConfig, type CustomItemInput, type CustomItemPaymentConfig, type CustomItemPricingInfo, type CustomItemQuantityInfo, type CustomItemSource, type CustomItemTaxConfig, type CustomerInfo, type CustomerInfoIdOneOf, type DeleteCartRequest, type DeleteCartResponse, type DeleteCurrentCartRequest, type DeleteCurrentCartResponse, type DeliveryInfo, type DeliveryMethod, type DeliverySummary, type Description, type DescriptionLine, type DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName, DescriptionLineType, type DescriptionLineTypeWithLiterals, type DescriptionLineValueOneOf, type Details, type DetailsKindOneOf, type Discount, type DiscountBenefit, type DiscountBenefitValueOneOf, DiscountScope, type DiscountScopeWithLiterals, type DiscountSource, DiscountSourceType, type DiscountSourceTypeWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type ExtendedFields, type ExternalReference, type FieldViolation, FileType, type FileTypeWithLiterals, type FreeTrialPeriod, type FullAddressContactDetails, type GetCartRequest, type GetCartResponse, type GetCheckoutURLRequest, type GetCheckoutURLResponse, type GetCurrentCartRequest, type GetCurrentCartResponse, type GiftCard, type GiftCardSummary, type Group, type HandleAsyncCheckoutCompletionRequest, type HeadersEntry, type IdentificationData, type IdentificationDataIdOneOf, type ItemAttributes, type ItemDeliveryConfig, type ItemDiscount, type ItemModifier, type ItemPaymentConfig, type ItemPriceBreakdown, type ItemPricingInfo, type ItemQuantityInfo, type ItemSource, ItemStatus, type ItemStatusWithLiterals, type ItemTaxConfig, type ItemType, ItemTypeItemType, type ItemTypeItemTypeDataOneOf, type ItemTypeItemTypeWithLiterals, type LegacyFields, type LineItem, type LineItemSummary, type LineItemTax, type LineItemUpdate, type MarkCartAsCompletedRequest, type MarkCartAsCompletedResponse, type Membership, type MessageEnvelope, type ModifierGroup, NameInLineItem, type NameInLineItemWithLiterals, NameInOther, type NameInOtherWithLiterals, type Other, type PaymentInfo, type PaymentOption, PaymentOptionType, type PaymentOptionTypeWithLiterals, type PaymentSummary, type PhysicalProperties, type PlaceOrderRequest, type PlaceOrderResponse, type PlainTextValue, type Policy, type PriceDescription, type PriceSummary, type QuantityUpdate, type RawHttpResponse, type RedirectUrls, type RefreshCartRequest, type RefreshCartResponse, type RefreshCurrentCartRequest, type RefreshCurrentCartResponse, type RemoveCouponFromCurrentCartRequest, type RemoveCouponFromCurrentCartResponse, type RemoveCouponRequest, type RemoveCouponResponse, type RemoveGiftCardFromCurrentCartRequest, type RemoveGiftCardFromCurrentCartResponse, type RemoveGiftCardRequest, type RemoveGiftCardResponse, type RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsFromCurrentCartResponse, type RemoveLineItemsRequest, type RemoveLineItemsResponse, type RestoreInfo, RuleType, type RuleTypeWithLiterals, type Scope, type SecuredMedia, type SelectedMembership, type SelectedMembershipUpdate, type ServiceProperties, Severity, type SeverityWithLiterals, type StreetAddress, type SubscriptionCharges, SubscriptionFrequency, type SubscriptionFrequencyWithLiterals, type SubscriptionOptionInfo, type SubscriptionSettings, SuggestedFix, type SuggestedFixWithLiterals, type SystemError, type Target, type TargetTargetTypeOneOf, type Tax, type TaxDetails, type TaxInfo, type TaxSummary, type TaxableAddress, type TaxableAddressTaxableAddressDataOneOf, TaxableAddressType, type TaxableAddressTypeWithLiterals, type Title, type TranslatableString, type UpdateCartRequest, type UpdateCartResponse, type UpdateCurrentCartRequest, type UpdateCurrentCartResponse, type UpdateLineItemsInCurrentCartOptions, type UpdateLineItemsInCurrentCartRequest, type UpdateLineItemsInCurrentCartResponse, type UpdateLineItemsRequest, type UpdateLineItemsResponse, type V2AdditionalFee, type V2LineItem, type ValidationError, ValidationsConfig, type ValidationsConfigWithLiterals, type VatId, VatType, type VatTypeWithLiterals, type Violation, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, WeightUnit, type WeightUnitWithLiterals };