@wix/auto_sdk_ecom_cart 1.0.30 → 1.0.32

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.
@@ -51,7 +51,7 @@ export interface Cart {
51
51
  * Weight measurement unit - defaults to site's weight unit.
52
52
  * @readonly
53
53
  */
54
- weightUnit?: WeightUnit;
54
+ weightUnit?: WeightUnitWithLiterals;
55
55
  /**
56
56
  * ID of the checkout that originated from this cart.
57
57
  * @readonly
@@ -100,7 +100,7 @@ export interface Cart {
100
100
  */
101
101
  businessLocationId?: string | null;
102
102
  /**
103
- * Currency used for payment, in three-letter [ISO-4217 alphabetic (https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
103
+ * Currency used for payment, in three-letter [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
104
104
  * @readonly
105
105
  * @format CURRENCY
106
106
  */
@@ -149,6 +149,11 @@ export interface LineItem {
149
149
  * @readonly
150
150
  */
151
151
  priceBeforeDiscounts?: MultiCurrencyPrice;
152
+ /**
153
+ * Total price **after** catalog-defined discount and line item discounts.
154
+ * @readonly
155
+ */
156
+ lineItemPrice?: MultiCurrencyPrice;
152
157
  /**
153
158
  * Line item description lines. Used for displaying the cart, checkout and order.
154
159
  * @readonly
@@ -180,7 +185,7 @@ export interface LineItem {
180
185
  * Default: `FULL_PAYMENT_ONLINE`
181
186
  * @readonly
182
187
  */
183
- paymentOption?: PaymentOptionType;
188
+ paymentOption?: PaymentOptionTypeWithLiterals;
184
189
  /**
185
190
  * Service properties. When relevant, this contains information such as date and number of participants.
186
191
  * @readonly
@@ -419,6 +424,8 @@ export declare enum DescriptionLineType {
419
424
  /** Color type. */
420
425
  COLOR = "COLOR"
421
426
  }
427
+ /** @enumType */
428
+ export type DescriptionLineTypeWithLiterals = DescriptionLineType | 'UNRECOGNISED' | 'PLAIN_TEXT' | 'COLOR';
422
429
  export interface CommonImage {
423
430
  /** WixMedia image ID. */
424
431
  id?: string;
@@ -454,7 +461,7 @@ export interface FocalPoint {
454
461
  }
455
462
  export interface ItemAvailabilityInfo {
456
463
  /** Item availability status. */
457
- status?: ItemAvailabilityStatus;
464
+ status?: ItemAvailabilityStatusWithLiterals;
458
465
  /** Quantity available. */
459
466
  quantityAvailable?: number | null;
460
467
  }
@@ -467,6 +474,8 @@ export declare enum ItemAvailabilityStatus {
467
474
  /** Available quantity is less than requested. */
468
475
  PARTIALLY_AVAILABLE = "PARTIALLY_AVAILABLE"
469
476
  }
477
+ /** @enumType */
478
+ export type ItemAvailabilityStatusWithLiterals = ItemAvailabilityStatus | 'AVAILABLE' | 'NOT_FOUND' | 'NOT_AVAILABLE' | 'PARTIALLY_AVAILABLE';
470
479
  export interface PhysicalProperties {
471
480
  /** Line item weight. Measurement unit matches the weight unit specified in `weightUnit` in the request. */
472
481
  weight?: number | null;
@@ -492,14 +501,14 @@ export interface Group {
492
501
  }
493
502
  export interface ItemType extends ItemTypeItemTypeDataOneOf {
494
503
  /** Preset item type. */
495
- preset?: ItemTypeItemType;
504
+ preset?: ItemTypeItemTypeWithLiterals;
496
505
  /** Custom item type. When none of the preset types are suitable, specifies the custom type. */
497
506
  custom?: string;
498
507
  }
499
508
  /** @oneof */
500
509
  export interface ItemTypeItemTypeDataOneOf {
501
510
  /** Preset item type. */
502
- preset?: ItemTypeItemType;
511
+ preset?: ItemTypeItemTypeWithLiterals;
503
512
  /** Custom item type. When none of the preset types are suitable, specifies the custom type. */
504
513
  custom?: string;
505
514
  }
@@ -510,6 +519,8 @@ export declare enum ItemTypeItemType {
510
519
  GIFT_CARD = "GIFT_CARD",
511
520
  SERVICE = "SERVICE"
512
521
  }
522
+ /** @enumType */
523
+ export type ItemTypeItemTypeWithLiterals = ItemTypeItemType | 'UNRECOGNISED' | 'PHYSICAL' | 'DIGITAL' | 'GIFT_CARD' | 'SERVICE';
513
524
  export interface SubscriptionOptionInfo {
514
525
  /** Subscription option settings. */
515
526
  subscriptionSettings?: SubscriptionSettings;
@@ -520,7 +531,7 @@ export interface SubscriptionOptionInfo {
520
531
  }
521
532
  export interface SubscriptionSettings {
522
533
  /** Frequency of recurring payment. */
523
- frequency?: SubscriptionFrequency;
534
+ frequency?: SubscriptionFrequencyWithLiterals;
524
535
  /**
525
536
  * Interval of recurring payment.
526
537
  *
@@ -553,9 +564,11 @@ export declare enum SubscriptionFrequency {
553
564
  MONTH = "MONTH",
554
565
  YEAR = "YEAR"
555
566
  }
567
+ /** @enumType */
568
+ export type SubscriptionFrequencyWithLiterals = SubscriptionFrequency | 'UNDEFINED' | 'DAY' | 'WEEK' | 'MONTH' | 'YEAR';
556
569
  export interface FreeTrialPeriod {
557
570
  /** Frequency of period. Values: DAY, WEEK, MONTH, YEAR */
558
- frequency?: SubscriptionFrequency;
571
+ frequency?: SubscriptionFrequencyWithLiterals;
559
572
  /**
560
573
  * interval of period
561
574
  * @min 1
@@ -605,7 +618,7 @@ export interface SecuredMedia {
605
618
  */
606
619
  fileName?: string;
607
620
  /** File type. */
608
- fileType?: FileType;
621
+ fileType?: FileTypeWithLiterals;
609
622
  }
610
623
  export declare enum FileType {
611
624
  UNSPECIFIED = "UNSPECIFIED",
@@ -615,6 +628,8 @@ export declare enum FileType {
615
628
  SECURE_MUSIC = "SECURE_MUSIC",
616
629
  SECURE_ARCHIVE = "SECURE_ARCHIVE"
617
630
  }
631
+ /** @enumType */
632
+ export type FileTypeWithLiterals = FileType | 'UNSPECIFIED' | 'SECURE_PICTURE' | 'SECURE_VIDEO' | 'SECURE_DOCUMENT' | 'SECURE_MUSIC' | 'SECURE_ARCHIVE';
618
633
  /** Type of selected payment option for catalog item */
619
634
  export declare enum PaymentOptionType {
620
635
  /** The entire payment for this item happens as part of the checkout. */
@@ -628,6 +643,8 @@ export declare enum PaymentOptionType {
628
643
  /** Payment for this item can only be done by charging a membership and must be manually redeemed in the dashboard by the site admin. When selected, `price` is `0`. */
629
644
  MEMBERSHIP_OFFLINE = "MEMBERSHIP_OFFLINE"
630
645
  }
646
+ /** @enumType */
647
+ export type PaymentOptionTypeWithLiterals = PaymentOptionType | 'FULL_PAYMENT_ONLINE' | 'FULL_PAYMENT_OFFLINE' | 'MEMBERSHIP' | 'DEPOSIT_ONLINE' | 'MEMBERSHIP_OFFLINE';
631
648
  export interface ServiceProperties {
632
649
  /**
633
650
  * Date and time the service is to be provided, in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
@@ -726,16 +743,16 @@ export interface PaymentOption {
726
743
  *
727
744
  * Default: `FULL_PAYMENT_ONLINE`
728
745
  */
729
- value?: PaymentOptionType;
746
+ value?: PaymentOptionTypeWithLiterals;
730
747
  }
731
748
  export interface TaxableAddress extends TaxableAddressTaxableAddressDataOneOf {
732
749
  /** taxable address type. if this field is selected, the address is automatically resolved, and the tax is calculated accordingly. */
733
- addressType?: TaxableAddressType;
750
+ addressType?: TaxableAddressTypeWithLiterals;
734
751
  }
735
752
  /** @oneof */
736
753
  export interface TaxableAddressTaxableAddressDataOneOf {
737
754
  /** taxable address type. if this field is selected, the address is automatically resolved, and the tax is calculated accordingly. */
738
- addressType?: TaxableAddressType;
755
+ addressType?: TaxableAddressTypeWithLiterals;
739
756
  }
740
757
  export declare enum TaxableAddressType {
741
758
  UNKNOWN_TAXABLE_ADDRESS = "UNKNOWN_TAXABLE_ADDRESS",
@@ -743,6 +760,8 @@ export declare enum TaxableAddressType {
743
760
  BILLING = "BILLING",
744
761
  SHIPPING = "SHIPPING"
745
762
  }
763
+ /** @enumType */
764
+ export type TaxableAddressTypeWithLiterals = TaxableAddressType | 'UNKNOWN_TAXABLE_ADDRESS' | 'BUSINESS' | 'BILLING' | 'SHIPPING';
746
765
  export interface ExtendedFields {
747
766
  /**
748
767
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
@@ -885,6 +904,8 @@ export declare enum WeightUnit {
885
904
  /** Pounds. */
886
905
  LB = "LB"
887
906
  }
907
+ /** @enumType */
908
+ export type WeightUnitWithLiterals = WeightUnit | 'UNSPECIFIED_WEIGHT_UNIT' | 'KG' | 'LB';
888
909
  export interface CartDiscount extends CartDiscountDiscountSourceOneOf {
889
910
  /** Coupon details. */
890
911
  coupon?: Coupon;
@@ -941,6 +962,8 @@ export declare enum DiscountType {
941
962
  /** "SHIPPING" - discount applies to shipping. For example, free shipping. */
942
963
  SHIPPING = "SHIPPING"
943
964
  }
965
+ /** @enumType */
966
+ export type DiscountTypeWithLiterals = DiscountType | 'GLOBAL' | 'SPECIFIC_ITEMS' | 'SHIPPING';
944
967
  /** Billing Info and shipping details */
945
968
  export interface AddressWithContact {
946
969
  /** Address. */
@@ -1040,7 +1063,7 @@ export interface VatId {
1040
1063
  * + `CPF`: for individual tax payers
1041
1064
  * + `CNPJ`: for corporations
1042
1065
  */
1043
- type?: VatType;
1066
+ type?: VatTypeWithLiterals;
1044
1067
  }
1045
1068
  /** tax info types */
1046
1069
  export declare enum VatType {
@@ -1050,6 +1073,8 @@ export declare enum VatType {
1050
1073
  /** CNPJ - for corporations */
1051
1074
  CNPJ = "CNPJ"
1052
1075
  }
1076
+ /** @enumType */
1077
+ export type VatTypeWithLiterals = VatType | 'UNSPECIFIED' | 'CPF' | 'CNPJ';
1053
1078
  export interface SelectedShippingOption {
1054
1079
  /**
1055
1080
  * Carrier ID.
@@ -1172,7 +1197,7 @@ export interface CustomLineItem {
1172
1197
  * + `MEMBERSHIP` - Payment for this item is done by charging a membership. When this option is used, `lineItem.price.amount` is 0.
1173
1198
  * + `DEPOSIT_ONLINE` - Partial payment for the given item to be paid upfront during the checkout. Amount to be paid is defined by deposit_amount field.
1174
1199
  */
1175
- paymentOption?: PaymentOptionType;
1200
+ paymentOption?: PaymentOptionTypeWithLiterals;
1176
1201
  /**
1177
1202
  * Service properties. When relevant, this contains information such as date and number of participants.
1178
1203
  * Used, among other things, when checking for valid memberships.
@@ -1381,7 +1406,7 @@ export interface EstimateTotalsResponse {
1381
1406
  /** Calculation errors. */
1382
1407
  calculationErrors?: CalculationErrors;
1383
1408
  /** Weight measurement unit. Defaults to site's weight unit. */
1384
- weightUnit?: WeightUnit;
1409
+ weightUnit?: WeightUnitWithLiterals;
1385
1410
  /**
1386
1411
  * Currency used for pricing in this store.
1387
1412
  * @format CURRENCY
@@ -1422,7 +1447,7 @@ export interface CalculatedLineItem {
1422
1447
  * + `"MEMBERSHIP"` - This item cannot be paid via monetary payment options, only via non monetary option such membership. When this option is used, price must be set to 0
1423
1448
  * + `"DEPOSIT_ONLINE"` - Partial payment of the given item will happen as part of the checkout. Amount to be paid is defined by deposit_amount field.
1424
1449
  */
1425
- paymentOption?: PaymentOptionType;
1450
+ paymentOption?: PaymentOptionTypeWithLiterals;
1426
1451
  /** tax calculation address. */
1427
1452
  taxableAddress?: TaxableAddress;
1428
1453
  }
@@ -1514,7 +1539,7 @@ export interface TaxBreakdown {
1514
1539
  */
1515
1540
  taxName?: string | null;
1516
1541
  /** The type of the jurisdiction in which this tax detail applies. */
1517
- jurisdictionType?: JurisdictionType;
1542
+ jurisdictionType?: JurisdictionTypeWithLiterals;
1518
1543
  }
1519
1544
  /** JurisdictionType represents the type of the jurisdiction in which this tax detail applies (e.g. Country,State,County,City,Special). */
1520
1545
  export declare enum JurisdictionType {
@@ -1525,6 +1550,8 @@ export declare enum JurisdictionType {
1525
1550
  CITY = "CITY",
1526
1551
  SPECIAL = "SPECIAL"
1527
1552
  }
1553
+ /** @enumType */
1554
+ export type JurisdictionTypeWithLiterals = JurisdictionType | 'UNDEFINED' | 'COUNTRY' | 'STATE' | 'COUNTY' | 'CITY' | 'SPECIAL';
1528
1555
  export interface CalculatedItemModifier {
1529
1556
  /**
1530
1557
  * Modifier ID.
@@ -1600,16 +1627,16 @@ export interface TaxSummary {
1600
1627
  }
1601
1628
  export interface TaxCalculationDetails extends TaxCalculationDetailsCalculationDetailsOneOf {
1602
1629
  /** Reason the manual calculation was used. */
1603
- manualRateReason?: ManualCalculationReason;
1630
+ manualRateReason?: ManualCalculationReasonWithLiterals;
1604
1631
  /** Details of the fallback rate calculation. */
1605
1632
  autoTaxFallbackDetails?: AutoTaxFallbackCalculationDetails;
1606
1633
  /** Rate calculation type. */
1607
- rateType?: RateType;
1634
+ rateType?: RateTypeWithLiterals;
1608
1635
  }
1609
1636
  /** @oneof */
1610
1637
  export interface TaxCalculationDetailsCalculationDetailsOneOf {
1611
1638
  /** Reason the manual calculation was used. */
1612
- manualRateReason?: ManualCalculationReason;
1639
+ manualRateReason?: ManualCalculationReasonWithLiterals;
1613
1640
  /** Details of the fallback rate calculation. */
1614
1641
  autoTaxFallbackDetails?: AutoTaxFallbackCalculationDetails;
1615
1642
  }
@@ -1623,15 +1650,19 @@ export declare enum RateType {
1623
1650
  /** fallback rate used for calculation */
1624
1651
  FALLBACK_RATE = "FALLBACK_RATE"
1625
1652
  }
1653
+ /** @enumType */
1654
+ export type RateTypeWithLiterals = RateType | 'NO_TAX_COLLECTED' | 'MANUAL_RATE' | 'AUTO_RATE' | 'FALLBACK_RATE';
1626
1655
  export declare enum ManualCalculationReason {
1627
1656
  /** user set calculator in Business Manager to be Manual */
1628
1657
  GLOBAL_SETTING_TO_MANUAL = "GLOBAL_SETTING_TO_MANUAL",
1629
1658
  /** specific region is on manual even though Global setting is Auto-tax */
1630
1659
  REGION_SETTING_TO_MANUAL = "REGION_SETTING_TO_MANUAL"
1631
1660
  }
1661
+ /** @enumType */
1662
+ export type ManualCalculationReasonWithLiterals = ManualCalculationReason | 'GLOBAL_SETTING_TO_MANUAL' | 'REGION_SETTING_TO_MANUAL';
1632
1663
  export interface AutoTaxFallbackCalculationDetails {
1633
1664
  /** reason for fallback */
1634
- fallbackReason?: FallbackReason;
1665
+ fallbackReason?: FallbackReasonWithLiterals;
1635
1666
  /** invalid request (i.e. address), timeout, internal error, license error, and others will be encoded here */
1636
1667
  error?: ApplicationError;
1637
1668
  }
@@ -1641,6 +1672,8 @@ export declare enum FallbackReason {
1641
1672
  /** auto-tax was temporarily deactivated on a system-level */
1642
1673
  AUTO_TAX_DEACTIVATED = "AUTO_TAX_DEACTIVATED"
1643
1674
  }
1675
+ /** @enumType */
1676
+ export type FallbackReasonWithLiterals = FallbackReason | 'AUTO_TAX_FAILED' | 'AUTO_TAX_DEACTIVATED';
1644
1677
  export interface ApplicationError {
1645
1678
  /** Error code. */
1646
1679
  code?: string;
@@ -1670,7 +1703,7 @@ export interface AggregatedTaxBreakdown {
1670
1703
  */
1671
1704
  jurisdiction?: string;
1672
1705
  /** The type of the jurisdiction in which this tax detail applies (e.g. Country,State,County,City,Special). */
1673
- jurisdictionTypeEnum?: JurisdictionType;
1706
+ jurisdictionTypeEnum?: JurisdictionTypeWithLiterals;
1674
1707
  /**
1675
1708
  * The rate at which this tax detail was calculated, e.g 0.1000 signifies 10% tax and 2.000 signifies 200% tax. (Decimal value)
1676
1709
  * @decimalValue options { gte:0, maxScale:6 }
@@ -1771,13 +1804,15 @@ export interface PickupDetails {
1771
1804
  */
1772
1805
  businessLocation?: boolean;
1773
1806
  /** Pickup method */
1774
- pickupMethod?: PickupMethod;
1807
+ pickupMethod?: PickupMethodWithLiterals;
1775
1808
  }
1776
1809
  export declare enum PickupMethod {
1777
1810
  UNKNOWN_METHOD = "UNKNOWN_METHOD",
1778
1811
  STORE_PICKUP = "STORE_PICKUP",
1779
1812
  PICKUP_POINT = "PICKUP_POINT"
1780
1813
  }
1814
+ /** @enumType */
1815
+ export type PickupMethodWithLiterals = PickupMethod | 'UNKNOWN_METHOD' | 'STORE_PICKUP' | 'PICKUP_POINT';
1781
1816
  export interface DeliveryTimeSlot {
1782
1817
  /** starting time of the delivery time slot */
1783
1818
  from?: Date | null;
@@ -1798,7 +1833,7 @@ export interface SelectedCarrierServiceOptionPrices {
1798
1833
  }
1799
1834
  export interface SelectedCarrierServiceOptionOtherCharge {
1800
1835
  /** Type of additional cost. */
1801
- type?: ChargeType;
1836
+ type?: ChargeTypeWithLiterals;
1802
1837
  /**
1803
1838
  * Details of the charge, such as 'Full Coverage Insurance of up to 80% of value of shipment'.
1804
1839
  * @maxLength 200
@@ -1811,6 +1846,8 @@ export declare enum ChargeType {
1811
1846
  HANDLING_FEE = "HANDLING_FEE",
1812
1847
  INSURANCE = "INSURANCE"
1813
1848
  }
1849
+ /** @enumType */
1850
+ export type ChargeTypeWithLiterals = ChargeType | 'HANDLING_FEE' | 'INSURANCE';
1814
1851
  export interface DeliveryAllocation {
1815
1852
  /** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
1816
1853
  deliveryCarrier?: Carrier;
@@ -1894,7 +1931,7 @@ export interface ShippingPrice {
1894
1931
  }
1895
1932
  export interface OtherCharge {
1896
1933
  /** Type of additional cost. */
1897
- type?: ChargeType;
1934
+ type?: ChargeTypeWithLiterals;
1898
1935
  /** Price of added cost. */
1899
1936
  price?: MultiCurrencyPrice;
1900
1937
  /**
@@ -1911,7 +1948,7 @@ export interface AppliedDiscount extends AppliedDiscountDiscountSourceOneOf {
1911
1948
  /** Discount rule */
1912
1949
  discountRule?: V1DiscountRule;
1913
1950
  /** Discount type. */
1914
- discountType?: AppliedDiscountDiscountType;
1951
+ discountType?: AppliedDiscountDiscountTypeWithLiterals;
1915
1952
  /**
1916
1953
  * IDs of line items the discount applies to.
1917
1954
  * @format GUID
@@ -1935,6 +1972,8 @@ export declare enum AppliedDiscountDiscountType {
1935
1972
  SPECIFIC_ITEMS = "SPECIFIC_ITEMS",
1936
1973
  SHIPPING = "SHIPPING"
1937
1974
  }
1975
+ /** @enumType */
1976
+ export type AppliedDiscountDiscountTypeWithLiterals = AppliedDiscountDiscountType | 'GLOBAL' | 'SPECIFIC_ITEMS' | 'SHIPPING';
1938
1977
  /** Coupon */
1939
1978
  export interface V1Coupon {
1940
1979
  /** Coupon ID. */
@@ -2092,10 +2131,12 @@ export declare enum RuleType {
2092
2131
  EXACT_SIZE = "EXACT_SIZE",
2093
2132
  REQUIRED_ONE_OF_FIELD = "REQUIRED_ONE_OF_FIELD"
2094
2133
  }
2134
+ /** @enumType */
2135
+ export type RuleTypeWithLiterals = RuleType | 'VALIDATION' | 'OTHER' | 'MAX' | 'MIN' | 'MAX_LENGTH' | 'MIN_LENGTH' | 'MAX_SIZE' | 'MIN_SIZE' | 'FORMAT' | 'DECIMAL_LTE' | 'DECIMAL_GTE' | 'DECIMAL_LT' | 'DECIMAL_GT' | 'DECIMAL_MAX_SCALE' | 'INVALID_ENUM_VALUE' | 'REQUIRED_FIELD' | 'FIELD_NOT_ALLOWED' | 'ONE_OF_ALIGNMENT' | 'EXACT_LENGTH' | 'EXACT_SIZE' | 'REQUIRED_ONE_OF_FIELD';
2095
2136
  export interface FieldViolation {
2096
2137
  field?: string;
2097
2138
  description?: string;
2098
- violatedRule?: RuleType;
2139
+ violatedRule?: RuleTypeWithLiterals;
2099
2140
  /** applicable when violated_rule=OTHER */
2100
2141
  ruleName?: string | null;
2101
2142
  data?: Record<string, any> | null;
@@ -2225,7 +2266,7 @@ export interface AdditionalFee {
2225
2266
  */
2226
2267
  lineItemIds?: string[];
2227
2268
  /** the source the additional fee was added from */
2228
- source?: AdditionalFeeSource;
2269
+ source?: AdditionalFeeSourceWithLiterals;
2229
2270
  }
2230
2271
  export declare enum AdditionalFeeSource {
2231
2272
  UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
@@ -2238,9 +2279,11 @@ export declare enum AdditionalFeeSource {
2238
2279
  /** The additional fee was added by the shipping provider */
2239
2280
  SHIPPING = "SHIPPING"
2240
2281
  }
2282
+ /** @enumType */
2283
+ export type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING';
2241
2284
  export interface Violation {
2242
2285
  /** Severity of the violation. The violations are shown on the cart and checkout pages. A warning is displayed as yellow, and allows a site visitor to proceed with caution. An error is displayed as red, and doesn't allow a site visitor to proceed with the eCommerce flow. */
2243
- severity?: Severity;
2286
+ severity?: SeverityWithLiterals;
2244
2287
  /** Target location on a checkout or cart page where the violation will be displayed. */
2245
2288
  target?: Target;
2246
2289
  /**
@@ -2259,6 +2302,8 @@ export declare enum Severity {
2259
2302
  */
2260
2303
  ERROR = "ERROR"
2261
2304
  }
2305
+ /** @enumType */
2306
+ export type SeverityWithLiterals = Severity | 'WARNING' | 'ERROR';
2262
2307
  export interface Target extends TargetTargetTypeOneOf {
2263
2308
  /** General (other) violation. */
2264
2309
  other?: Other;
@@ -2277,26 +2322,32 @@ export declare enum NameInOther {
2277
2322
  /** Default location, in case no specific location is specified. */
2278
2323
  OTHER_DEFAULT = "OTHER_DEFAULT"
2279
2324
  }
2325
+ /** @enumType */
2326
+ export type NameInOtherWithLiterals = NameInOther | 'OTHER_DEFAULT';
2280
2327
  /** Available locations on the line item */
2281
2328
  export declare enum NameInLineItem {
2282
2329
  /** Default location, in case no specific location is specified. */
2283
2330
  LINE_ITEM_DEFAULT = "LINE_ITEM_DEFAULT"
2284
2331
  }
2332
+ /** @enumType */
2333
+ export type NameInLineItemWithLiterals = NameInLineItem | 'LINE_ITEM_DEFAULT';
2285
2334
  export declare enum SuggestedFix {
2286
2335
  /** No suggested fix is specified. The user should refer to the violation description to resolve the issue. */
2287
2336
  UNKNOWN_SUGGESTED_FIX = "UNKNOWN_SUGGESTED_FIX",
2288
2337
  /** The line item should be removed from the cart or checkout to resolve the violation. */
2289
2338
  REMOVE_LINE_ITEM = "REMOVE_LINE_ITEM"
2290
2339
  }
2340
+ /** @enumType */
2341
+ export type SuggestedFixWithLiterals = SuggestedFix | 'UNKNOWN_SUGGESTED_FIX' | 'REMOVE_LINE_ITEM';
2291
2342
  /** General (other) violation. */
2292
2343
  export interface Other {
2293
2344
  /** Location on a checkout or a cart page where a general (other) violation will be displayed. */
2294
- name?: NameInOther;
2345
+ name?: NameInOtherWithLiterals;
2295
2346
  }
2296
2347
  /** Specific line item violation. */
2297
2348
  export interface TargetLineItem {
2298
2349
  /** Location on a checkout or a cart page where the specific line item violation will be displayed. */
2299
- name?: NameInLineItem;
2350
+ name?: NameInLineItemWithLiterals;
2300
2351
  /** ID of the line item containing the violation. */
2301
2352
  id?: string | null;
2302
2353
  }
@@ -2315,7 +2366,7 @@ export interface RemoveLineItemsResponse {
2315
2366
  }
2316
2367
  export interface CreateCheckoutFromCurrentCartRequest {
2317
2368
  /** __Required.__ Sales channel type. */
2318
- channelType?: ChannelType;
2369
+ channelType?: ChannelTypeWithLiterals;
2319
2370
  /** Shipping address. Used for calculating tax and shipping (when applicable). */
2320
2371
  shippingAddress?: Address;
2321
2372
  /** Billing address. Used for calculating tax if all the items in the cart are not shippable. */
@@ -2362,6 +2413,8 @@ export declare enum ChannelType {
2362
2413
  /** [Faire marketplace integration](https://support.wix.com/en/article/wix-stores-creating-a-faire-store-using-the-faire-integration-app). */
2363
2414
  FAIRE_COM = "FAIRE_COM"
2364
2415
  }
2416
+ /** @enumType */
2417
+ export type ChannelTypeWithLiterals = ChannelType | 'UNSPECIFIED' | 'WEB' | 'POS' | 'EBAY' | 'AMAZON' | 'OTHER_PLATFORM' | 'WIX_APP_STORE' | 'WIX_INVOICES' | 'BACKOFFICE_MERCHANT' | 'WISH' | 'CLASS_PASS' | 'GLOBAL_E' | 'FACEBOOK' | 'ETSY' | 'TIKTOK' | 'FAIRE_COM';
2365
2418
  export interface CreateCheckoutResponse {
2366
2419
  /** The newly created checkout's ID. */
2367
2420
  checkoutId?: string;
@@ -2525,7 +2578,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
2525
2578
  */
2526
2579
  appId?: string;
2527
2580
  /** @readonly */
2528
- identityType?: WebhookIdentityType;
2581
+ identityType?: WebhookIdentityTypeWithLiterals;
2529
2582
  }
2530
2583
  /** @oneof */
2531
2584
  export interface IdentificationDataIdOneOf {
@@ -2557,6 +2610,8 @@ export declare enum WebhookIdentityType {
2557
2610
  WIX_USER = "WIX_USER",
2558
2611
  APP = "APP"
2559
2612
  }
2613
+ /** @enumType */
2614
+ export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
2560
2615
  export interface CreateCartRequest {
2561
2616
  /** Cart info. */
2562
2617
  cartInfo?: Cart;
@@ -2656,7 +2711,7 @@ export interface CreateCheckoutRequest {
2656
2711
  */
2657
2712
  id: string;
2658
2713
  /** __Required.__ Sales channel type. */
2659
- channelType?: ChannelType;
2714
+ channelType?: ChannelTypeWithLiterals;
2660
2715
  /** Shipping address. Used for calculating tax and shipping (when applicable). */
2661
2716
  shippingAddress?: Address;
2662
2717
  /** Billing address. Used for calculating tax if all the items in the cart are not shippable. */
@@ -1 +1 @@
1
- {"version":3,"file":"ecom-v1-cart-cart.types.js","sourceRoot":"","sources":["../../../src/ecom-v1-cart-cart.types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ecom-v1-cart-cart.types.js","sourceRoot":"","sources":["../../../src/ecom-v1-cart-cart.types.ts"],"names":[],"mappings":"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"}