@wix/auto_sdk_ecom_checkout 1.0.31 → 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.
- package/build/cjs/src/ecom-v1-checkout-checkout.types.d.ts +102 -40
- package/build/cjs/src/ecom-v1-checkout-checkout.types.js.map +1 -1
- package/build/cjs/src/ecom-v1-checkout-checkout.universal.d.ts +105 -43
- package/build/cjs/src/ecom-v1-checkout-checkout.universal.js.map +1 -1
- package/build/es/src/ecom-v1-checkout-checkout.types.d.ts +102 -40
- package/build/es/src/ecom-v1-checkout-checkout.types.js.map +1 -1
- package/build/es/src/ecom-v1-checkout-checkout.universal.d.ts +105 -43
- package/build/es/src/ecom-v1-checkout-checkout.universal.js.map +1 -1
- package/build/internal/cjs/src/ecom-v1-checkout-checkout.types.d.ts +102 -40
- package/build/internal/cjs/src/ecom-v1-checkout-checkout.types.js.map +1 -1
- package/build/internal/cjs/src/ecom-v1-checkout-checkout.universal.d.ts +106 -44
- package/build/internal/cjs/src/ecom-v1-checkout-checkout.universal.js.map +1 -1
- package/build/internal/es/src/ecom-v1-checkout-checkout.types.d.ts +102 -40
- package/build/internal/es/src/ecom-v1-checkout-checkout.types.js.map +1 -1
- package/build/internal/es/src/ecom-v1-checkout-checkout.universal.d.ts +106 -44
- package/build/internal/es/src/ecom-v1-checkout-checkout.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -59,7 +59,7 @@ export interface Checkout {
|
|
|
59
59
|
* Weight measurement unit. Defaults to a site's weight unit.
|
|
60
60
|
* @readonly
|
|
61
61
|
*/
|
|
62
|
-
weightUnit?:
|
|
62
|
+
weightUnit?: WeightUnitWithLiterals;
|
|
63
63
|
/**
|
|
64
64
|
* Tax summary.
|
|
65
65
|
* @readonly
|
|
@@ -75,7 +75,7 @@ export interface Checkout {
|
|
|
75
75
|
* Sales channel that submitted the order.
|
|
76
76
|
* @readonly
|
|
77
77
|
*/
|
|
78
|
-
channelType?:
|
|
78
|
+
channelType?: ChannelTypeWithLiterals;
|
|
79
79
|
/**
|
|
80
80
|
* Site language in which original values are shown.
|
|
81
81
|
* @readonly
|
|
@@ -302,7 +302,7 @@ export interface LineItem {
|
|
|
302
302
|
* Default: `FULL_PAYMENT_ONLINE`
|
|
303
303
|
* @readonly
|
|
304
304
|
*/
|
|
305
|
-
paymentOption?:
|
|
305
|
+
paymentOption?: PaymentOptionTypeWithLiterals;
|
|
306
306
|
/**
|
|
307
307
|
* Service properties. When relevant, this contains information such as date and number of participants.
|
|
308
308
|
* @readonly
|
|
@@ -527,7 +527,7 @@ export interface TaxBreakdown {
|
|
|
527
527
|
*/
|
|
528
528
|
taxName?: string | null;
|
|
529
529
|
/** The type of the jurisdiction in which this tax detail applies. */
|
|
530
|
-
jurisdictionType?:
|
|
530
|
+
jurisdictionType?: JurisdictionTypeWithLiterals;
|
|
531
531
|
}
|
|
532
532
|
/** JurisdictionType represents the type of the jurisdiction in which this tax detail applies (e.g. Country,State,County,City,Special). */
|
|
533
533
|
export declare enum JurisdictionType {
|
|
@@ -538,6 +538,8 @@ export declare enum JurisdictionType {
|
|
|
538
538
|
CITY = "CITY",
|
|
539
539
|
SPECIAL = "SPECIAL"
|
|
540
540
|
}
|
|
541
|
+
/** @enumType */
|
|
542
|
+
export type JurisdictionTypeWithLiterals = JurisdictionType | 'UNDEFINED' | 'COUNTRY' | 'STATE' | 'COUNTY' | 'CITY' | 'SPECIAL';
|
|
541
543
|
export interface DescriptionLine extends DescriptionLineValueOneOf, DescriptionLineDescriptionLineValueOneOf {
|
|
542
544
|
/** Description line plain text value. */
|
|
543
545
|
plainText?: PlainTextValue;
|
|
@@ -608,6 +610,8 @@ export declare enum DescriptionLineType {
|
|
|
608
610
|
/** Color type. */
|
|
609
611
|
COLOR = "COLOR"
|
|
610
612
|
}
|
|
613
|
+
/** @enumType */
|
|
614
|
+
export type DescriptionLineTypeWithLiterals = DescriptionLineType | 'UNRECOGNISED' | 'PLAIN_TEXT' | 'COLOR';
|
|
611
615
|
export interface CommonImage {
|
|
612
616
|
/** WixMedia image ID. */
|
|
613
617
|
id?: string;
|
|
@@ -643,7 +647,7 @@ export interface FocalPoint {
|
|
|
643
647
|
}
|
|
644
648
|
export interface ItemAvailabilityInfo {
|
|
645
649
|
/** Item availability status. */
|
|
646
|
-
status?:
|
|
650
|
+
status?: ItemAvailabilityStatusWithLiterals;
|
|
647
651
|
/** Quantity available. */
|
|
648
652
|
quantityAvailable?: number | null;
|
|
649
653
|
}
|
|
@@ -656,6 +660,8 @@ export declare enum ItemAvailabilityStatus {
|
|
|
656
660
|
/** Available quantity is less than requested. */
|
|
657
661
|
PARTIALLY_AVAILABLE = "PARTIALLY_AVAILABLE"
|
|
658
662
|
}
|
|
663
|
+
/** @enumType */
|
|
664
|
+
export type ItemAvailabilityStatusWithLiterals = ItemAvailabilityStatus | 'AVAILABLE' | 'NOT_FOUND' | 'NOT_AVAILABLE' | 'PARTIALLY_AVAILABLE';
|
|
659
665
|
export interface PhysicalProperties {
|
|
660
666
|
/** Line item weight. Measurement unit matches the weight unit specified in `weightUnit` in the request. */
|
|
661
667
|
weight?: number | null;
|
|
@@ -681,14 +687,14 @@ export interface Group {
|
|
|
681
687
|
}
|
|
682
688
|
export interface ItemType extends ItemTypeItemTypeDataOneOf {
|
|
683
689
|
/** Preset item type. */
|
|
684
|
-
preset?:
|
|
690
|
+
preset?: ItemTypeItemTypeWithLiterals;
|
|
685
691
|
/** Custom item type. When none of the preset types are suitable, specifies the custom type. */
|
|
686
692
|
custom?: string;
|
|
687
693
|
}
|
|
688
694
|
/** @oneof */
|
|
689
695
|
export interface ItemTypeItemTypeDataOneOf {
|
|
690
696
|
/** Preset item type. */
|
|
691
|
-
preset?:
|
|
697
|
+
preset?: ItemTypeItemTypeWithLiterals;
|
|
692
698
|
/** Custom item type. When none of the preset types are suitable, specifies the custom type. */
|
|
693
699
|
custom?: string;
|
|
694
700
|
}
|
|
@@ -699,6 +705,8 @@ export declare enum ItemTypeItemType {
|
|
|
699
705
|
GIFT_CARD = "GIFT_CARD",
|
|
700
706
|
SERVICE = "SERVICE"
|
|
701
707
|
}
|
|
708
|
+
/** @enumType */
|
|
709
|
+
export type ItemTypeItemTypeWithLiterals = ItemTypeItemType | 'UNRECOGNISED' | 'PHYSICAL' | 'DIGITAL' | 'GIFT_CARD' | 'SERVICE';
|
|
702
710
|
export interface SubscriptionOptionInfo {
|
|
703
711
|
/** Subscription option settings. */
|
|
704
712
|
subscriptionSettings?: SubscriptionSettings;
|
|
@@ -709,7 +717,7 @@ export interface SubscriptionOptionInfo {
|
|
|
709
717
|
}
|
|
710
718
|
export interface SubscriptionSettings {
|
|
711
719
|
/** Frequency of recurring payment. */
|
|
712
|
-
frequency?:
|
|
720
|
+
frequency?: SubscriptionFrequencyWithLiterals;
|
|
713
721
|
/**
|
|
714
722
|
* Interval of recurring payment.
|
|
715
723
|
*
|
|
@@ -742,9 +750,11 @@ export declare enum SubscriptionFrequency {
|
|
|
742
750
|
MONTH = "MONTH",
|
|
743
751
|
YEAR = "YEAR"
|
|
744
752
|
}
|
|
753
|
+
/** @enumType */
|
|
754
|
+
export type SubscriptionFrequencyWithLiterals = SubscriptionFrequency | 'UNDEFINED' | 'DAY' | 'WEEK' | 'MONTH' | 'YEAR';
|
|
745
755
|
export interface FreeTrialPeriod {
|
|
746
756
|
/** Frequency of period. Values: DAY, WEEK, MONTH, YEAR */
|
|
747
|
-
frequency?:
|
|
757
|
+
frequency?: SubscriptionFrequencyWithLiterals;
|
|
748
758
|
/**
|
|
749
759
|
* interval of period
|
|
750
760
|
* @min 1
|
|
@@ -794,7 +804,7 @@ export interface SecuredMedia {
|
|
|
794
804
|
*/
|
|
795
805
|
fileName?: string;
|
|
796
806
|
/** File type. */
|
|
797
|
-
fileType?:
|
|
807
|
+
fileType?: FileTypeWithLiterals;
|
|
798
808
|
}
|
|
799
809
|
export declare enum FileType {
|
|
800
810
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -804,6 +814,8 @@ export declare enum FileType {
|
|
|
804
814
|
SECURE_MUSIC = "SECURE_MUSIC",
|
|
805
815
|
SECURE_ARCHIVE = "SECURE_ARCHIVE"
|
|
806
816
|
}
|
|
817
|
+
/** @enumType */
|
|
818
|
+
export type FileTypeWithLiterals = FileType | 'UNSPECIFIED' | 'SECURE_PICTURE' | 'SECURE_VIDEO' | 'SECURE_DOCUMENT' | 'SECURE_MUSIC' | 'SECURE_ARCHIVE';
|
|
807
819
|
/** Type of selected payment option for catalog item */
|
|
808
820
|
export declare enum PaymentOptionType {
|
|
809
821
|
/** The entire payment for this item happens as part of the checkout. */
|
|
@@ -817,6 +829,8 @@ export declare enum PaymentOptionType {
|
|
|
817
829
|
/** 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`. */
|
|
818
830
|
MEMBERSHIP_OFFLINE = "MEMBERSHIP_OFFLINE"
|
|
819
831
|
}
|
|
832
|
+
/** @enumType */
|
|
833
|
+
export type PaymentOptionTypeWithLiterals = PaymentOptionType | 'FULL_PAYMENT_ONLINE' | 'FULL_PAYMENT_OFFLINE' | 'MEMBERSHIP' | 'DEPOSIT_ONLINE' | 'MEMBERSHIP_OFFLINE';
|
|
820
834
|
export interface ServiceProperties {
|
|
821
835
|
/**
|
|
822
836
|
* 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.
|
|
@@ -901,16 +915,16 @@ export interface PaymentOption {
|
|
|
901
915
|
*
|
|
902
916
|
* Default: `FULL_PAYMENT_ONLINE`
|
|
903
917
|
*/
|
|
904
|
-
value?:
|
|
918
|
+
value?: PaymentOptionTypeWithLiterals;
|
|
905
919
|
}
|
|
906
920
|
export interface TaxableAddress extends TaxableAddressTaxableAddressDataOneOf {
|
|
907
921
|
/** taxable address type. if this field is selected, the address is automatically resolved, and the tax is calculated accordingly. */
|
|
908
|
-
addressType?:
|
|
922
|
+
addressType?: TaxableAddressTypeWithLiterals;
|
|
909
923
|
}
|
|
910
924
|
/** @oneof */
|
|
911
925
|
export interface TaxableAddressTaxableAddressDataOneOf {
|
|
912
926
|
/** taxable address type. if this field is selected, the address is automatically resolved, and the tax is calculated accordingly. */
|
|
913
|
-
addressType?:
|
|
927
|
+
addressType?: TaxableAddressTypeWithLiterals;
|
|
914
928
|
}
|
|
915
929
|
export declare enum TaxableAddressType {
|
|
916
930
|
UNKNOWN_TAXABLE_ADDRESS = "UNKNOWN_TAXABLE_ADDRESS",
|
|
@@ -918,6 +932,8 @@ export declare enum TaxableAddressType {
|
|
|
918
932
|
BILLING = "BILLING",
|
|
919
933
|
SHIPPING = "SHIPPING"
|
|
920
934
|
}
|
|
935
|
+
/** @enumType */
|
|
936
|
+
export type TaxableAddressTypeWithLiterals = TaxableAddressType | 'UNKNOWN_TAXABLE_ADDRESS' | 'BUSINESS' | 'BILLING' | 'SHIPPING';
|
|
921
937
|
export interface ExtendedFields {
|
|
922
938
|
/**
|
|
923
939
|
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
@@ -1099,7 +1115,7 @@ export interface CommonVatId {
|
|
|
1099
1115
|
* + `CPF`: for individual tax payers
|
|
1100
1116
|
* + `CNPJ`: for corporations
|
|
1101
1117
|
*/
|
|
1102
|
-
type?:
|
|
1118
|
+
type?: CommonVatTypeWithLiterals;
|
|
1103
1119
|
}
|
|
1104
1120
|
/** tax info types */
|
|
1105
1121
|
export declare enum CommonVatType {
|
|
@@ -1109,6 +1125,8 @@ export declare enum CommonVatType {
|
|
|
1109
1125
|
/** CNPJ - for corporations */
|
|
1110
1126
|
CNPJ = "CNPJ"
|
|
1111
1127
|
}
|
|
1128
|
+
/** @enumType */
|
|
1129
|
+
export type CommonVatTypeWithLiterals = CommonVatType | 'UNSPECIFIED' | 'CPF' | 'CNPJ';
|
|
1112
1130
|
export interface ShippingInfo {
|
|
1113
1131
|
/** Shipping address and contact details. */
|
|
1114
1132
|
shippingDestination?: AddressWithContact;
|
|
@@ -1196,13 +1214,15 @@ export interface PickupDetails {
|
|
|
1196
1214
|
*/
|
|
1197
1215
|
businessLocation?: boolean;
|
|
1198
1216
|
/** Pickup method */
|
|
1199
|
-
pickupMethod?:
|
|
1217
|
+
pickupMethod?: PickupMethodWithLiterals;
|
|
1200
1218
|
}
|
|
1201
1219
|
export declare enum PickupMethod {
|
|
1202
1220
|
UNKNOWN_METHOD = "UNKNOWN_METHOD",
|
|
1203
1221
|
STORE_PICKUP = "STORE_PICKUP",
|
|
1204
1222
|
PICKUP_POINT = "PICKUP_POINT"
|
|
1205
1223
|
}
|
|
1224
|
+
/** @enumType */
|
|
1225
|
+
export type PickupMethodWithLiterals = PickupMethod | 'UNKNOWN_METHOD' | 'STORE_PICKUP' | 'PICKUP_POINT';
|
|
1206
1226
|
export interface DeliveryTimeSlot {
|
|
1207
1227
|
/** starting time of the delivery time slot */
|
|
1208
1228
|
from?: Date | null;
|
|
@@ -1223,7 +1243,7 @@ export interface SelectedCarrierServiceOptionPrices {
|
|
|
1223
1243
|
}
|
|
1224
1244
|
export interface SelectedCarrierServiceOptionOtherCharge {
|
|
1225
1245
|
/** Type of additional cost. */
|
|
1226
|
-
type?:
|
|
1246
|
+
type?: ChargeTypeWithLiterals;
|
|
1227
1247
|
/**
|
|
1228
1248
|
* Details of the charge, such as 'Full Coverage Insurance of up to 80% of value of shipment'.
|
|
1229
1249
|
* @maxLength 200
|
|
@@ -1236,6 +1256,8 @@ export declare enum ChargeType {
|
|
|
1236
1256
|
HANDLING_FEE = "HANDLING_FEE",
|
|
1237
1257
|
INSURANCE = "INSURANCE"
|
|
1238
1258
|
}
|
|
1259
|
+
/** @enumType */
|
|
1260
|
+
export type ChargeTypeWithLiterals = ChargeType | 'HANDLING_FEE' | 'INSURANCE';
|
|
1239
1261
|
export interface DeliveryAllocation {
|
|
1240
1262
|
/** The delivery option's carrier details, could be multiple if the delivery option is a combination of multiple carriers */
|
|
1241
1263
|
deliveryCarrier?: Carrier;
|
|
@@ -1332,7 +1354,7 @@ export interface ShippingPrice {
|
|
|
1332
1354
|
}
|
|
1333
1355
|
export interface OtherCharge {
|
|
1334
1356
|
/** Type of additional cost. */
|
|
1335
|
-
type?:
|
|
1357
|
+
type?: ChargeTypeWithLiterals;
|
|
1336
1358
|
/** Price of added cost. */
|
|
1337
1359
|
price?: MultiCurrencyPrice;
|
|
1338
1360
|
/**
|
|
@@ -1505,10 +1527,12 @@ export declare enum RuleType {
|
|
|
1505
1527
|
EXACT_SIZE = "EXACT_SIZE",
|
|
1506
1528
|
REQUIRED_ONE_OF_FIELD = "REQUIRED_ONE_OF_FIELD"
|
|
1507
1529
|
}
|
|
1530
|
+
/** @enumType */
|
|
1531
|
+
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';
|
|
1508
1532
|
export interface FieldViolation {
|
|
1509
1533
|
field?: string;
|
|
1510
1534
|
description?: string;
|
|
1511
|
-
violatedRule?:
|
|
1535
|
+
violatedRule?: RuleTypeWithLiterals;
|
|
1512
1536
|
/** applicable when violated_rule=OTHER */
|
|
1513
1537
|
ruleName?: string | null;
|
|
1514
1538
|
data?: Record<string, any> | null;
|
|
@@ -1558,7 +1582,7 @@ export interface AppliedDiscount extends AppliedDiscountDiscountSourceOneOf {
|
|
|
1558
1582
|
/** Discount rule */
|
|
1559
1583
|
discountRule?: DiscountRule;
|
|
1560
1584
|
/** Discount type. */
|
|
1561
|
-
discountType?:
|
|
1585
|
+
discountType?: DiscountTypeWithLiterals;
|
|
1562
1586
|
/**
|
|
1563
1587
|
* IDs of line items the discount applies to.
|
|
1564
1588
|
* @format GUID
|
|
@@ -1582,6 +1606,8 @@ export declare enum DiscountType {
|
|
|
1582
1606
|
SPECIFIC_ITEMS = "SPECIFIC_ITEMS",
|
|
1583
1607
|
SHIPPING = "SHIPPING"
|
|
1584
1608
|
}
|
|
1609
|
+
/** @enumType */
|
|
1610
|
+
export type DiscountTypeWithLiterals = DiscountType | 'GLOBAL' | 'SPECIFIC_ITEMS' | 'SHIPPING';
|
|
1585
1611
|
/** Coupon */
|
|
1586
1612
|
export interface Coupon {
|
|
1587
1613
|
/** Coupon ID. */
|
|
@@ -1661,6 +1687,8 @@ export declare enum WeightUnit {
|
|
|
1661
1687
|
/** Pounds. */
|
|
1662
1688
|
LB = "LB"
|
|
1663
1689
|
}
|
|
1690
|
+
/** @enumType */
|
|
1691
|
+
export type WeightUnitWithLiterals = WeightUnit | 'UNSPECIFIED_WEIGHT_UNIT' | 'KG' | 'LB';
|
|
1664
1692
|
export interface TaxSummary {
|
|
1665
1693
|
/**
|
|
1666
1694
|
* Amount for which tax is calculated, added from line items.
|
|
@@ -1680,16 +1708,16 @@ export interface TaxSummary {
|
|
|
1680
1708
|
}
|
|
1681
1709
|
export interface TaxCalculationDetails extends TaxCalculationDetailsCalculationDetailsOneOf {
|
|
1682
1710
|
/** Reason the manual calculation was used. */
|
|
1683
|
-
manualRateReason?:
|
|
1711
|
+
manualRateReason?: ManualCalculationReasonWithLiterals;
|
|
1684
1712
|
/** Details of the fallback rate calculation. */
|
|
1685
1713
|
autoTaxFallbackDetails?: AutoTaxFallbackCalculationDetails;
|
|
1686
1714
|
/** Rate calculation type. */
|
|
1687
|
-
rateType?:
|
|
1715
|
+
rateType?: RateTypeWithLiterals;
|
|
1688
1716
|
}
|
|
1689
1717
|
/** @oneof */
|
|
1690
1718
|
export interface TaxCalculationDetailsCalculationDetailsOneOf {
|
|
1691
1719
|
/** Reason the manual calculation was used. */
|
|
1692
|
-
manualRateReason?:
|
|
1720
|
+
manualRateReason?: ManualCalculationReasonWithLiterals;
|
|
1693
1721
|
/** Details of the fallback rate calculation. */
|
|
1694
1722
|
autoTaxFallbackDetails?: AutoTaxFallbackCalculationDetails;
|
|
1695
1723
|
}
|
|
@@ -1703,15 +1731,19 @@ export declare enum RateType {
|
|
|
1703
1731
|
/** fallback rate used for calculation */
|
|
1704
1732
|
FALLBACK_RATE = "FALLBACK_RATE"
|
|
1705
1733
|
}
|
|
1734
|
+
/** @enumType */
|
|
1735
|
+
export type RateTypeWithLiterals = RateType | 'NO_TAX_COLLECTED' | 'MANUAL_RATE' | 'AUTO_RATE' | 'FALLBACK_RATE';
|
|
1706
1736
|
export declare enum ManualCalculationReason {
|
|
1707
1737
|
/** user set calculator in Business Manager to be Manual */
|
|
1708
1738
|
GLOBAL_SETTING_TO_MANUAL = "GLOBAL_SETTING_TO_MANUAL",
|
|
1709
1739
|
/** specific region is on manual even though Global setting is Auto-tax */
|
|
1710
1740
|
REGION_SETTING_TO_MANUAL = "REGION_SETTING_TO_MANUAL"
|
|
1711
1741
|
}
|
|
1742
|
+
/** @enumType */
|
|
1743
|
+
export type ManualCalculationReasonWithLiterals = ManualCalculationReason | 'GLOBAL_SETTING_TO_MANUAL' | 'REGION_SETTING_TO_MANUAL';
|
|
1712
1744
|
export interface AutoTaxFallbackCalculationDetails {
|
|
1713
1745
|
/** reason for fallback */
|
|
1714
|
-
fallbackReason?:
|
|
1746
|
+
fallbackReason?: FallbackReasonWithLiterals;
|
|
1715
1747
|
/** invalid request (i.e. address), timeout, internal error, license error, and others will be encoded here */
|
|
1716
1748
|
error?: ApplicationError;
|
|
1717
1749
|
}
|
|
@@ -1721,6 +1753,8 @@ export declare enum FallbackReason {
|
|
|
1721
1753
|
/** auto-tax was temporarily deactivated on a system-level */
|
|
1722
1754
|
AUTO_TAX_DEACTIVATED = "AUTO_TAX_DEACTIVATED"
|
|
1723
1755
|
}
|
|
1756
|
+
/** @enumType */
|
|
1757
|
+
export type FallbackReasonWithLiterals = FallbackReason | 'AUTO_TAX_FAILED' | 'AUTO_TAX_DEACTIVATED';
|
|
1724
1758
|
/**
|
|
1725
1759
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
1726
1760
|
* Tax breakdown is the tax amount split to the tax authorities that applied on the line item.
|
|
@@ -1742,7 +1776,7 @@ export interface AggregatedTaxBreakdown {
|
|
|
1742
1776
|
*/
|
|
1743
1777
|
jurisdiction?: string;
|
|
1744
1778
|
/** The type of the jurisdiction in which this tax detail applies (e.g. Country,State,County,City,Special). */
|
|
1745
|
-
jurisdictionTypeEnum?:
|
|
1779
|
+
jurisdictionTypeEnum?: JurisdictionTypeWithLiterals;
|
|
1746
1780
|
/**
|
|
1747
1781
|
* The rate at which this tax detail was calculated, e.g 0.1000 signifies 10% tax and 2.000 signifies 200% tax. (Decimal value)
|
|
1748
1782
|
* @decimalValue options { gte:0, maxScale:6 }
|
|
@@ -1785,6 +1819,8 @@ export declare enum ChannelType {
|
|
|
1785
1819
|
/** [Faire marketplace integration](https://support.wix.com/en/article/wix-stores-creating-a-faire-store-using-the-faire-integration-app). */
|
|
1786
1820
|
FAIRE_COM = "FAIRE_COM"
|
|
1787
1821
|
}
|
|
1822
|
+
/** @enumType */
|
|
1823
|
+
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';
|
|
1788
1824
|
export interface CreatedBy extends CreatedByIdOneOf {
|
|
1789
1825
|
/**
|
|
1790
1826
|
* User ID. When the order was created by a Wix user on behalf of a buyer.
|
|
@@ -1971,7 +2007,7 @@ export interface AdditionalFee {
|
|
|
1971
2007
|
*/
|
|
1972
2008
|
lineItemIds?: string[];
|
|
1973
2009
|
/** the source the additional fee was added from */
|
|
1974
|
-
source?:
|
|
2010
|
+
source?: AdditionalFeeSourceWithLiterals;
|
|
1975
2011
|
}
|
|
1976
2012
|
export declare enum AdditionalFeeSource {
|
|
1977
2013
|
UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
|
|
@@ -1984,6 +2020,8 @@ export declare enum AdditionalFeeSource {
|
|
|
1984
2020
|
/** The additional fee was added by the shipping provider */
|
|
1985
2021
|
SHIPPING = "SHIPPING"
|
|
1986
2022
|
}
|
|
2023
|
+
/** @enumType */
|
|
2024
|
+
export type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING';
|
|
1987
2025
|
export interface ConversionInfo {
|
|
1988
2026
|
/**
|
|
1989
2027
|
* The site currency.
|
|
@@ -2000,7 +2038,7 @@ export interface ConversionInfo {
|
|
|
2000
2038
|
}
|
|
2001
2039
|
export interface Violation {
|
|
2002
2040
|
/** 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. */
|
|
2003
|
-
severity?:
|
|
2041
|
+
severity?: SeverityWithLiterals;
|
|
2004
2042
|
/** Target location on a checkout or cart page where the violation will be displayed. */
|
|
2005
2043
|
target?: Target;
|
|
2006
2044
|
/**
|
|
@@ -2019,6 +2057,8 @@ export declare enum Severity {
|
|
|
2019
2057
|
*/
|
|
2020
2058
|
ERROR = "ERROR"
|
|
2021
2059
|
}
|
|
2060
|
+
/** @enumType */
|
|
2061
|
+
export type SeverityWithLiterals = Severity | 'WARNING' | 'ERROR';
|
|
2022
2062
|
export interface Target extends TargetTargetTypeOneOf {
|
|
2023
2063
|
/** General (other) violation. */
|
|
2024
2064
|
other?: Other;
|
|
@@ -2037,26 +2077,32 @@ export declare enum NameInOther {
|
|
|
2037
2077
|
/** Default location, in case no specific location is specified. */
|
|
2038
2078
|
OTHER_DEFAULT = "OTHER_DEFAULT"
|
|
2039
2079
|
}
|
|
2080
|
+
/** @enumType */
|
|
2081
|
+
export type NameInOtherWithLiterals = NameInOther | 'OTHER_DEFAULT';
|
|
2040
2082
|
/** Available locations on the line item */
|
|
2041
2083
|
export declare enum NameInLineItem {
|
|
2042
2084
|
/** Default location, in case no specific location is specified. */
|
|
2043
2085
|
LINE_ITEM_DEFAULT = "LINE_ITEM_DEFAULT"
|
|
2044
2086
|
}
|
|
2087
|
+
/** @enumType */
|
|
2088
|
+
export type NameInLineItemWithLiterals = NameInLineItem | 'LINE_ITEM_DEFAULT';
|
|
2045
2089
|
export declare enum SuggestedFix {
|
|
2046
2090
|
/** No suggested fix is specified. The user should refer to the violation description to resolve the issue. */
|
|
2047
2091
|
UNKNOWN_SUGGESTED_FIX = "UNKNOWN_SUGGESTED_FIX",
|
|
2048
2092
|
/** The line item should be removed from the cart or checkout to resolve the violation. */
|
|
2049
2093
|
REMOVE_LINE_ITEM = "REMOVE_LINE_ITEM"
|
|
2050
2094
|
}
|
|
2095
|
+
/** @enumType */
|
|
2096
|
+
export type SuggestedFixWithLiterals = SuggestedFix | 'UNKNOWN_SUGGESTED_FIX' | 'REMOVE_LINE_ITEM';
|
|
2051
2097
|
/** General (other) violation. */
|
|
2052
2098
|
export interface Other {
|
|
2053
2099
|
/** Location on a checkout or a cart page where a general (other) violation will be displayed. */
|
|
2054
|
-
name?:
|
|
2100
|
+
name?: NameInOtherWithLiterals;
|
|
2055
2101
|
}
|
|
2056
2102
|
/** Specific line item violation. */
|
|
2057
2103
|
export interface TargetLineItem {
|
|
2058
2104
|
/** Location on a checkout or a cart page where the specific line item violation will be displayed. */
|
|
2059
|
-
name?:
|
|
2105
|
+
name?: NameInLineItemWithLiterals;
|
|
2060
2106
|
/** ID of the line item containing the violation. */
|
|
2061
2107
|
id?: string | null;
|
|
2062
2108
|
}
|
|
@@ -2174,7 +2220,7 @@ export interface CreateCheckoutRequest {
|
|
|
2174
2220
|
*/
|
|
2175
2221
|
customLineItems?: CustomLineItem[];
|
|
2176
2222
|
/** Sales channel that submitted the order. */
|
|
2177
|
-
channelType:
|
|
2223
|
+
channelType: ChannelTypeWithLiterals;
|
|
2178
2224
|
/**
|
|
2179
2225
|
* Gift card code.
|
|
2180
2226
|
*
|
|
@@ -2259,7 +2305,7 @@ export interface CustomLineItem {
|
|
|
2259
2305
|
* + `MEMBERSHIP` - Payment for this item is done by charging a membership. When this option is used, `lineItem.price.amount` is 0.
|
|
2260
2306
|
* + `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.
|
|
2261
2307
|
*/
|
|
2262
|
-
paymentOption?:
|
|
2308
|
+
paymentOption?: PaymentOptionTypeWithLiterals;
|
|
2263
2309
|
/**
|
|
2264
2310
|
* Service properties. When relevant, this contains information such as date and number of participants.
|
|
2265
2311
|
* Used, among other things, when checking for valid memberships.
|
|
@@ -2747,12 +2793,14 @@ export interface GetCheckoutPaymentSettingsRequest {
|
|
|
2747
2793
|
id: string;
|
|
2748
2794
|
}
|
|
2749
2795
|
export interface GetCheckoutPaymentSettingsResponse {
|
|
2750
|
-
blockedPaymentOptions?:
|
|
2796
|
+
blockedPaymentOptions?: GetCheckoutPaymentSettingsResponsePaymentOptionWithLiterals[];
|
|
2751
2797
|
}
|
|
2752
2798
|
export declare enum GetCheckoutPaymentSettingsResponsePaymentOption {
|
|
2753
2799
|
UNKNOWN_PAYMENT_OPTION = "UNKNOWN_PAYMENT_OPTION",
|
|
2754
2800
|
MANUAL = "MANUAL"
|
|
2755
2801
|
}
|
|
2802
|
+
/** @enumType */
|
|
2803
|
+
export type GetCheckoutPaymentSettingsResponsePaymentOptionWithLiterals = GetCheckoutPaymentSettingsResponsePaymentOption | 'UNKNOWN_PAYMENT_OPTION' | 'MANUAL';
|
|
2756
2804
|
export interface DeleteCheckoutRequest {
|
|
2757
2805
|
/**
|
|
2758
2806
|
* ID of the checkout to delete.
|
|
@@ -2836,7 +2884,7 @@ export interface V1BuyerInfo {
|
|
|
2836
2884
|
*/
|
|
2837
2885
|
id?: string;
|
|
2838
2886
|
/** Customer type */
|
|
2839
|
-
identityType?:
|
|
2887
|
+
identityType?: IdentityTypeWithLiterals;
|
|
2840
2888
|
}
|
|
2841
2889
|
export declare enum IdentityType {
|
|
2842
2890
|
UNSPECIFIED_IDENTITY_TYPE = "UNSPECIFIED_IDENTITY_TYPE",
|
|
@@ -2845,6 +2893,8 @@ export declare enum IdentityType {
|
|
|
2845
2893
|
/** Contact */
|
|
2846
2894
|
CONTACT = "CONTACT"
|
|
2847
2895
|
}
|
|
2896
|
+
/** @enumType */
|
|
2897
|
+
export type IdentityTypeWithLiterals = IdentityType | 'UNSPECIFIED_IDENTITY_TYPE' | 'MEMBER' | 'CONTACT';
|
|
2848
2898
|
export interface V1LineItem {
|
|
2849
2899
|
/** Line item ID (auto-generated) */
|
|
2850
2900
|
index?: number;
|
|
@@ -2946,7 +2996,7 @@ export interface ProductDetails {
|
|
|
2946
2996
|
*/
|
|
2947
2997
|
translatedName?: string | null;
|
|
2948
2998
|
/** Line item type (may be extended) */
|
|
2949
|
-
lineItemType?:
|
|
2999
|
+
lineItemType?: LineItemTypeWithLiterals;
|
|
2950
3000
|
/** Line item primary media for preview */
|
|
2951
3001
|
mediaItem?: MediaItem;
|
|
2952
3002
|
/**
|
|
@@ -2990,12 +3040,14 @@ export declare enum LineItemType {
|
|
|
2990
3040
|
/** Custom item price */
|
|
2991
3041
|
CUSTOM_AMOUNT_ITEM = "CUSTOM_AMOUNT_ITEM"
|
|
2992
3042
|
}
|
|
3043
|
+
/** @enumType */
|
|
3044
|
+
export type LineItemTypeWithLiterals = LineItemType | 'UNSPECIFIED_LINE_ITEM_TYPE' | 'PHYSICAL' | 'DIGITAL' | 'CUSTOM_AMOUNT_ITEM';
|
|
2993
3045
|
export interface MediaItem {
|
|
2994
3046
|
/**
|
|
2995
3047
|
* Media type
|
|
2996
3048
|
* @readonly
|
|
2997
3049
|
*/
|
|
2998
|
-
mediaType?:
|
|
3050
|
+
mediaType?: MediaItemTypeWithLiterals;
|
|
2999
3051
|
/**
|
|
3000
3052
|
* Media URL
|
|
3001
3053
|
* @format WEB_URL
|
|
@@ -3030,6 +3082,8 @@ export declare enum MediaItemType {
|
|
|
3030
3082
|
/** Image item type */
|
|
3031
3083
|
IMAGE = "IMAGE"
|
|
3032
3084
|
}
|
|
3085
|
+
/** @enumType */
|
|
3086
|
+
export type MediaItemTypeWithLiterals = MediaItemType | 'UNSPECIFIED_MEDIA_TYPE_ITEM' | 'IMAGE';
|
|
3033
3087
|
export interface Totals {
|
|
3034
3088
|
/**
|
|
3035
3089
|
* Subtotal of all line items, before tax
|
|
@@ -3075,7 +3129,7 @@ export interface StoreSettings {
|
|
|
3075
3129
|
*/
|
|
3076
3130
|
currency?: string | null;
|
|
3077
3131
|
/** Weight unit used in this store */
|
|
3078
|
-
weightUnit?:
|
|
3132
|
+
weightUnit?: WeightUnitWithLiterals;
|
|
3079
3133
|
/**
|
|
3080
3134
|
* The language to be used when communicating with the buyer
|
|
3081
3135
|
* For a site that support multiple languages, this would be the language the buyer selected
|
|
@@ -3183,7 +3237,7 @@ export interface VatId {
|
|
|
3183
3237
|
* + `CPF`: For individual tax payers.
|
|
3184
3238
|
* + `CNPJ`: For corporations.
|
|
3185
3239
|
*/
|
|
3186
|
-
type?:
|
|
3240
|
+
type?: VatTypeWithLiterals;
|
|
3187
3241
|
}
|
|
3188
3242
|
/** Brazilian tax info types */
|
|
3189
3243
|
export declare enum VatType {
|
|
@@ -3194,6 +3248,8 @@ export declare enum VatType {
|
|
|
3194
3248
|
/** CNPJ - for corporations */
|
|
3195
3249
|
CNPJ = "CNPJ"
|
|
3196
3250
|
}
|
|
3251
|
+
/** @enumType */
|
|
3252
|
+
export type VatTypeWithLiterals = VatType | 'UNSPECIFIED_TAX_TYPE' | 'CPF' | 'CNPJ';
|
|
3197
3253
|
export interface V1ShippingInfo extends V1ShippingInfoDetailsOneOf {
|
|
3198
3254
|
/** Shipment details (when this object describes shipment) */
|
|
3199
3255
|
shipmentDetails?: ShipmentDetails;
|
|
@@ -3320,7 +3376,7 @@ export interface V1SubscriptionOptionInfo {
|
|
|
3320
3376
|
}
|
|
3321
3377
|
export interface Discount {
|
|
3322
3378
|
/** Discount type. */
|
|
3323
|
-
type?:
|
|
3379
|
+
type?: DiscountDiscountTypeWithLiterals;
|
|
3324
3380
|
/** Discount value. */
|
|
3325
3381
|
value?: number;
|
|
3326
3382
|
}
|
|
@@ -3330,9 +3386,11 @@ export declare enum DiscountDiscountType {
|
|
|
3330
3386
|
AMOUNT = "AMOUNT",
|
|
3331
3387
|
PERCENT = "PERCENT"
|
|
3332
3388
|
}
|
|
3389
|
+
/** @enumType */
|
|
3390
|
+
export type DiscountDiscountTypeWithLiterals = DiscountDiscountType | 'UNDEFINED' | 'AMOUNT' | 'PERCENT';
|
|
3333
3391
|
export interface ChannelInfo {
|
|
3334
3392
|
/** Sales channel that submitted the subscription */
|
|
3335
|
-
type?:
|
|
3393
|
+
type?: ChannelInfoChannelTypeWithLiterals;
|
|
3336
3394
|
}
|
|
3337
3395
|
export declare enum ChannelInfoChannelType {
|
|
3338
3396
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -3340,9 +3398,11 @@ export declare enum ChannelInfoChannelType {
|
|
|
3340
3398
|
OTHER_PLATFORM = "OTHER_PLATFORM",
|
|
3341
3399
|
WIX_APP_STORE = "WIX_APP_STORE"
|
|
3342
3400
|
}
|
|
3401
|
+
/** @enumType */
|
|
3402
|
+
export type ChannelInfoChannelTypeWithLiterals = ChannelInfoChannelType | 'UNSPECIFIED' | 'WEB' | 'OTHER_PLATFORM' | 'WIX_APP_STORE';
|
|
3343
3403
|
export interface V1SubscriptionSettings {
|
|
3344
3404
|
/** Frequency of recurring payment. */
|
|
3345
|
-
frequency?:
|
|
3405
|
+
frequency?: SubscriptionFrequencyWithLiterals;
|
|
3346
3406
|
/** Whether subscription is renewed automatically at the end of each period. */
|
|
3347
3407
|
autoRenewal?: boolean;
|
|
3348
3408
|
/**
|
|
@@ -3473,7 +3533,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
|
3473
3533
|
*/
|
|
3474
3534
|
appId?: string;
|
|
3475
3535
|
/** @readonly */
|
|
3476
|
-
identityType?:
|
|
3536
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
3477
3537
|
}
|
|
3478
3538
|
/** @oneof */
|
|
3479
3539
|
export interface IdentificationDataIdOneOf {
|
|
@@ -3505,3 +3565,5 @@ export declare enum WebhookIdentityType {
|
|
|
3505
3565
|
WIX_USER = "WIX_USER",
|
|
3506
3566
|
APP = "APP"
|
|
3507
3567
|
}
|
|
3568
|
+
/** @enumType */
|
|
3569
|
+
export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ecom-v1-checkout-checkout.types.js","sourceRoot":"","sources":["../../../src/ecom-v1-checkout-checkout.types.ts"],"names":[],"mappings":";;;AA4hBA,0IAA0I;AAC1I,IAAY,gBAOX;AAPD,WAAY,gBAAgB;IAC1B,2CAAuB,CAAA;IACvB,uCAAmB,CAAA;IACnB,mCAAe,CAAA;IACf,qCAAiB,CAAA;IACjB,iCAAa,CAAA;IACb,uCAAmB,CAAA;AACrB,CAAC,EAPW,gBAAgB,gCAAhB,gBAAgB,QAO3B;
|
|
1
|
+
{"version":3,"file":"ecom-v1-checkout-checkout.types.js","sourceRoot":"","sources":["../../../src/ecom-v1-checkout-checkout.types.ts"],"names":[],"mappings":"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"}
|