@wix/auto_sdk_ecom_draft-orders 1.0.135 → 1.0.137
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/index.d.ts +1 -1
- package/build/cjs/index.js +0 -14
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +28 -32
- package/build/cjs/index.typings.js +0 -14
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +27 -31
- package/build/cjs/meta.js +0 -14
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +0 -14
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +28 -32
- package/build/es/index.typings.mjs +0 -14
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +27 -31
- package/build/es/meta.mjs +0 -14
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +0 -14
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +39 -32
- package/build/internal/cjs/index.typings.js +0 -14
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +27 -31
- package/build/internal/cjs/meta.js +0 -14
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +0 -14
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +39 -32
- package/build/internal/es/index.typings.mjs +0 -14
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +27 -31
- package/build/internal/es/meta.mjs +0 -14
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -401,6 +401,8 @@ interface OrderLineItem {
|
|
|
401
401
|
refundQuantity?: number | null;
|
|
402
402
|
/**
|
|
403
403
|
* Number of items restocked.
|
|
404
|
+
*
|
|
405
|
+
* For a per-location breakdown, see `restockLocations`.
|
|
404
406
|
* @max 100000
|
|
405
407
|
*/
|
|
406
408
|
restockQuantity?: number | null;
|
|
@@ -590,6 +592,20 @@ declare enum ItemTypePreset {
|
|
|
590
592
|
}
|
|
591
593
|
/** @enumType */
|
|
592
594
|
type ItemTypePresetWithLiterals = ItemTypePreset | 'UNRECOGNISED' | 'PHYSICAL' | 'DIGITAL' | 'GIFT_CARD' | 'SERVICE';
|
|
595
|
+
/** Quantity of items restocked at a specific location. */
|
|
596
|
+
interface RestockLocation {
|
|
597
|
+
/**
|
|
598
|
+
* ID of the location where items were restocked.
|
|
599
|
+
* @format GUID
|
|
600
|
+
*/
|
|
601
|
+
locationId?: string;
|
|
602
|
+
/**
|
|
603
|
+
* Number of items restocked at this location.
|
|
604
|
+
* @min 1
|
|
605
|
+
* @max 100000
|
|
606
|
+
*/
|
|
607
|
+
quantity?: number;
|
|
608
|
+
}
|
|
593
609
|
/** Type of selected payment option for catalog item */
|
|
594
610
|
declare enum PaymentOptionType {
|
|
595
611
|
/** The entire payment for this item happens as part of the checkout. */
|
|
@@ -823,14 +839,13 @@ interface BillingAdjustment {
|
|
|
823
839
|
priceSummary?: BillingAdjustmentPriceSummary;
|
|
824
840
|
}
|
|
825
841
|
declare enum AdjustmentType {
|
|
826
|
-
UNKNOWN_ADJUSTMENT_TYPE = "UNKNOWN_ADJUSTMENT_TYPE",
|
|
827
842
|
/** Adjustment increases the total amount due to changes like covering extra billing days. Typically results in an additional fee. */
|
|
828
843
|
EXTRA_CHARGE = "EXTRA_CHARGE",
|
|
829
844
|
/** Adjustment reduces the total amount due to changes like covering fewer billing days. Typically results in a credit or discount. */
|
|
830
845
|
CREDIT = "CREDIT"
|
|
831
846
|
}
|
|
832
847
|
/** @enumType */
|
|
833
|
-
type AdjustmentTypeWithLiterals = AdjustmentType | '
|
|
848
|
+
type AdjustmentTypeWithLiterals = AdjustmentType | 'EXTRA_CHARGE' | 'CREDIT';
|
|
834
849
|
interface BillingAdjustmentPriceSummary {
|
|
835
850
|
/** Subtotal of adjustment, before tax. */
|
|
836
851
|
subtotal?: Price;
|
|
@@ -875,13 +890,12 @@ interface TaxableAddressTaxableAddressDataOneOf {
|
|
|
875
890
|
addressType?: TaxableAddressTypeWithLiterals;
|
|
876
891
|
}
|
|
877
892
|
declare enum TaxableAddressType {
|
|
878
|
-
UNKNOWN_TAXABLE_ADDRESS = "UNKNOWN_TAXABLE_ADDRESS",
|
|
879
893
|
BUSINESS = "BUSINESS",
|
|
880
894
|
BILLING = "BILLING",
|
|
881
895
|
SHIPPING = "SHIPPING"
|
|
882
896
|
}
|
|
883
897
|
/** @enumType */
|
|
884
|
-
type TaxableAddressTypeWithLiterals = TaxableAddressType | '
|
|
898
|
+
type TaxableAddressTypeWithLiterals = TaxableAddressType | 'BUSINESS' | 'BILLING' | 'SHIPPING';
|
|
885
899
|
interface ExtendedFields {
|
|
886
900
|
/**
|
|
887
901
|
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
@@ -1150,12 +1164,11 @@ interface PickupAddress {
|
|
|
1150
1164
|
subdivisionFullname?: string | null;
|
|
1151
1165
|
}
|
|
1152
1166
|
declare enum PickupDetailsPickupMethod {
|
|
1153
|
-
UNKNOWN_METHOD = "UNKNOWN_METHOD",
|
|
1154
1167
|
STORE_PICKUP = "STORE_PICKUP",
|
|
1155
1168
|
PICKUP_POINT = "PICKUP_POINT"
|
|
1156
1169
|
}
|
|
1157
1170
|
/** @enumType */
|
|
1158
|
-
type PickupDetailsPickupMethodWithLiterals = PickupDetailsPickupMethod | '
|
|
1171
|
+
type PickupDetailsPickupMethodWithLiterals = PickupDetailsPickupMethod | 'STORE_PICKUP' | 'PICKUP_POINT';
|
|
1159
1172
|
interface V1DeliveryTimeSlot {
|
|
1160
1173
|
/** Delivery slot starting time. */
|
|
1161
1174
|
from?: Date | null;
|
|
@@ -1301,7 +1314,6 @@ interface AdditionalFee {
|
|
|
1301
1314
|
lineItemIds?: string[];
|
|
1302
1315
|
}
|
|
1303
1316
|
declare enum AdditionalFeeSource {
|
|
1304
|
-
UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
|
|
1305
1317
|
/** The additional fee was added by an additional fee service plugin. */
|
|
1306
1318
|
SERVICE_PLUGIN = "SERVICE_PLUGIN",
|
|
1307
1319
|
/** The additional fee was added to the item by a catalog or custom line item. */
|
|
@@ -1314,7 +1326,7 @@ declare enum AdditionalFeeSource {
|
|
|
1314
1326
|
PLATFORM = "PLATFORM"
|
|
1315
1327
|
}
|
|
1316
1328
|
/** @enumType */
|
|
1317
|
-
type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | '
|
|
1329
|
+
type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
|
|
1318
1330
|
interface TaxDetails {
|
|
1319
1331
|
/** Whether the additional fee is taxable. */
|
|
1320
1332
|
taxable?: boolean;
|
|
@@ -1888,7 +1900,6 @@ interface PlatformFee {
|
|
|
1888
1900
|
percentageRate?: string;
|
|
1889
1901
|
}
|
|
1890
1902
|
declare enum ChargeType {
|
|
1891
|
-
UNKNOWN_CHARGE_TYPE = "UNKNOWN_CHARGE_TYPE",
|
|
1892
1903
|
/**
|
|
1893
1904
|
* Platform fee passed on to buyer.
|
|
1894
1905
|
*
|
|
@@ -1903,7 +1914,7 @@ declare enum ChargeType {
|
|
|
1903
1914
|
ABSORBED = "ABSORBED"
|
|
1904
1915
|
}
|
|
1905
1916
|
/** @enumType */
|
|
1906
|
-
type ChargeTypeWithLiterals = ChargeType | '
|
|
1917
|
+
type ChargeTypeWithLiterals = ChargeType | 'PASS_ON' | 'ABSORBED';
|
|
1907
1918
|
interface CreateDraftOrderRequest extends CreateDraftOrderRequestSourceOneOf {
|
|
1908
1919
|
/**
|
|
1909
1920
|
* ID of the order to create a draft for.
|
|
@@ -2160,7 +2171,6 @@ interface DiscountOptionDiscountAmountOneOf {
|
|
|
2160
2171
|
percentage?: string | null;
|
|
2161
2172
|
}
|
|
2162
2173
|
declare enum DiscountType {
|
|
2163
|
-
UNKNOWN_TYPE = "UNKNOWN_TYPE",
|
|
2164
2174
|
/** Discount applies to the entire order. */
|
|
2165
2175
|
GLOBAL = "GLOBAL",
|
|
2166
2176
|
/** Discount applies to a specific item. */
|
|
@@ -2169,7 +2179,7 @@ declare enum DiscountType {
|
|
|
2169
2179
|
SHIPPING = "SHIPPING"
|
|
2170
2180
|
}
|
|
2171
2181
|
/** @enumType */
|
|
2172
|
-
type DiscountTypeWithLiterals = DiscountType | '
|
|
2182
|
+
type DiscountTypeWithLiterals = DiscountType | 'GLOBAL' | 'SPECIFIC_ITEMS' | 'SHIPPING';
|
|
2173
2183
|
interface AdditionalFeeOption {
|
|
2174
2184
|
/**
|
|
2175
2185
|
* Name of the additional fee.
|
|
@@ -2257,14 +2267,13 @@ interface PickupDetails {
|
|
|
2257
2267
|
pickupMethod?: PickupMethodWithLiterals;
|
|
2258
2268
|
}
|
|
2259
2269
|
declare enum PickupMethod {
|
|
2260
|
-
UNKNOWN_METHOD = "UNKNOWN_METHOD",
|
|
2261
2270
|
/** Store pickup. */
|
|
2262
2271
|
STORE_PICKUP = "STORE_PICKUP",
|
|
2263
2272
|
/** Pickup point. */
|
|
2264
2273
|
PICKUP_POINT = "PICKUP_POINT"
|
|
2265
2274
|
}
|
|
2266
2275
|
/** @enumType */
|
|
2267
|
-
type PickupMethodWithLiterals = PickupMethod | '
|
|
2276
|
+
type PickupMethodWithLiterals = PickupMethod | 'STORE_PICKUP' | 'PICKUP_POINT';
|
|
2268
2277
|
interface DeliveryTimeSlot {
|
|
2269
2278
|
/** Delivery time slot start time. */
|
|
2270
2279
|
from?: Date | null;
|
|
@@ -2750,7 +2759,6 @@ interface GetOrderDraftabilityStatusResponse {
|
|
|
2750
2759
|
nonDraftableReasons?: NonDraftableReasonWithLiterals[];
|
|
2751
2760
|
}
|
|
2752
2761
|
declare enum NonDraftableReason {
|
|
2753
|
-
UNSPECIFIED = "UNSPECIFIED",
|
|
2754
2762
|
/** Modifications of refunded orders are not supported. */
|
|
2755
2763
|
PARTIALLY_OR_FULLY_REFUNDED = "PARTIALLY_OR_FULLY_REFUNDED",
|
|
2756
2764
|
/**
|
|
@@ -2773,7 +2781,7 @@ declare enum NonDraftableReason {
|
|
|
2773
2781
|
SUBSCRIPTION_LINE_ITEM_EXISTS = "SUBSCRIPTION_LINE_ITEM_EXISTS"
|
|
2774
2782
|
}
|
|
2775
2783
|
/** @enumType */
|
|
2776
|
-
type NonDraftableReasonWithLiterals = NonDraftableReason | '
|
|
2784
|
+
type NonDraftableReasonWithLiterals = NonDraftableReason | 'PARTIALLY_OR_FULLY_REFUNDED' | 'UNSUPPORTED_CHANNEL_TYPE' | 'ORDER_STATUS_IS_NOT_SUPPORTED' | 'ORDER_AND_SITE_CURRENCIES_ARE_INCONSISTENT' | 'ORDER_AND_SITE_WEIGHT_UNITS_ARE_INCONSISTENT' | 'ORDER_NOT_FOUND' | 'SUBSCRIPTION_LINE_ITEM_EXISTS';
|
|
2777
2785
|
interface CommitDraftOrderRequest {
|
|
2778
2786
|
/**
|
|
2779
2787
|
* Draft order ID.
|
|
@@ -3848,10 +3856,6 @@ declare enum ActivityType {
|
|
|
3848
3856
|
CUSTOM_ACTIVITY = "CUSTOM_ACTIVITY",
|
|
3849
3857
|
/** Comment added to the order by a merchant. */
|
|
3850
3858
|
MERCHANT_COMMENT = "MERCHANT_COMMENT",
|
|
3851
|
-
/** Order was created as a result of an exchange. */
|
|
3852
|
-
ORDER_CREATED_FROM_EXCHANGE = "ORDER_CREATED_FROM_EXCHANGE",
|
|
3853
|
-
/** New exchange order was created from this order. */
|
|
3854
|
-
NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
|
|
3855
3859
|
/** Partial payment was received for the order. */
|
|
3856
3860
|
ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
|
|
3857
3861
|
/** Changes were applied to a draft order. */
|
|
@@ -3940,10 +3944,8 @@ declare enum ActivityType {
|
|
|
3940
3944
|
CHARGEBACK_REVERSED = "CHARGEBACK_REVERSED"
|
|
3941
3945
|
}
|
|
3942
3946
|
/** @enumType */
|
|
3943
|
-
type ActivityTypeWithLiterals = ActivityType | 'ORDER_REFUNDED' | 'ORDER_PLACED' | 'ORDER_PAID' | 'ORDER_FULFILLED' | 'ORDER_NOT_FULFILLED' | 'ORDER_CANCELED' | 'DOWNLOAD_LINK_SENT' | 'TRACKING_NUMBER_ADDED' | 'TRACKING_NUMBER_EDITED' | 'TRACKING_LINK_ADDED' | 'SHIPPING_CONFIRMATION_EMAIL_SENT' | 'INVOICE_ADDED' | 'INVOICE_REMOVED' | 'INVOICE_SENT' | 'FULFILLER_EMAIL_SENT' | 'SHIPPING_ADDRESS_EDITED' | 'EMAIL_EDITED' | 'PICKUP_READY_EMAIL_SENT' | 'CUSTOM_ACTIVITY' | 'MERCHANT_COMMENT' | '
|
|
3947
|
+
type ActivityTypeWithLiterals = ActivityType | 'ORDER_REFUNDED' | 'ORDER_PLACED' | 'ORDER_PAID' | 'ORDER_FULFILLED' | 'ORDER_NOT_FULFILLED' | 'ORDER_CANCELED' | 'DOWNLOAD_LINK_SENT' | 'TRACKING_NUMBER_ADDED' | 'TRACKING_NUMBER_EDITED' | 'TRACKING_LINK_ADDED' | 'SHIPPING_CONFIRMATION_EMAIL_SENT' | 'INVOICE_ADDED' | 'INVOICE_REMOVED' | 'INVOICE_SENT' | 'FULFILLER_EMAIL_SENT' | 'SHIPPING_ADDRESS_EDITED' | 'EMAIL_EDITED' | 'PICKUP_READY_EMAIL_SENT' | 'CUSTOM_ACTIVITY' | 'MERCHANT_COMMENT' | 'ORDER_PARTIALLY_PAID' | 'DRAFT_ORDER_CHANGES_APPLIED' | 'SAVED_PAYMENT_METHOD' | 'AUTHORIZED_PAYMENT_CREATED' | 'AUTHORIZED_PAYMENT_CAPTURED' | 'AUTHORIZED_PAYMENT_VOIDED' | 'REFUND_INITIATED' | 'PAYMENT_REFUNDED' | 'PAYMENT_REFUND_FAILED' | 'REFUNDED_AS_STORE_CREDIT' | 'PAYMENT_PENDING' | 'PAYMENT_CANCELED' | 'PAYMENT_DECLINED' | 'ORDER_PENDING' | 'ORDER_REJECTED' | 'RECEIPT_CREATED' | 'RECEIPT_SENT' | 'CHARGEBACK_CREATED' | 'CHARGEBACK_REVERSED';
|
|
3944
3948
|
declare enum OrderActivityTypeEnumActivityType {
|
|
3945
|
-
/** Default value. This value is unused. */
|
|
3946
|
-
UNKNOWN_ACTIVITY_TYPE = "UNKNOWN_ACTIVITY_TYPE",
|
|
3947
3949
|
/** New order was created and placed. */
|
|
3948
3950
|
ORDER_PLACED = "ORDER_PLACED",
|
|
3949
3951
|
/** Order payment was completed and confirmed. */
|
|
@@ -3978,14 +3980,8 @@ declare enum OrderActivityTypeEnumActivityType {
|
|
|
3978
3980
|
EMAIL_EDITED = "EMAIL_EDITED",
|
|
3979
3981
|
/** Email notification for pickup readiness was sent. */
|
|
3980
3982
|
PICKUP_READY_EMAIL_SENT = "PICKUP_READY_EMAIL_SENT",
|
|
3981
|
-
/** Custom activity created by a third-party application. */
|
|
3982
|
-
CUSTOM_ACTIVITY = "CUSTOM_ACTIVITY",
|
|
3983
3983
|
/** Comment added to the order by a merchant. */
|
|
3984
3984
|
MERCHANT_COMMENT = "MERCHANT_COMMENT",
|
|
3985
|
-
/** Order was created as a result of an exchange. */
|
|
3986
|
-
ORDER_CREATED_FROM_EXCHANGE = "ORDER_CREATED_FROM_EXCHANGE",
|
|
3987
|
-
/** New exchange order was created from this order. */
|
|
3988
|
-
NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
|
|
3989
3985
|
/** Partial payment was received for the order. */
|
|
3990
3986
|
ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
|
|
3991
3987
|
/** Changes were applied to a draft order. */
|
|
@@ -4076,7 +4072,7 @@ declare enum OrderActivityTypeEnumActivityType {
|
|
|
4076
4072
|
ORDER_REFUNDED = "ORDER_REFUNDED"
|
|
4077
4073
|
}
|
|
4078
4074
|
/** @enumType */
|
|
4079
|
-
type OrderActivityTypeEnumActivityTypeWithLiterals = OrderActivityTypeEnumActivityType | '
|
|
4075
|
+
type OrderActivityTypeEnumActivityTypeWithLiterals = OrderActivityTypeEnumActivityType | 'ORDER_PLACED' | 'ORDER_PAID' | 'ORDER_FULFILLED' | 'ORDER_NOT_FULFILLED' | 'ORDER_CANCELED' | 'DOWNLOAD_LINK_SENT' | 'TRACKING_NUMBER_ADDED' | 'TRACKING_NUMBER_EDITED' | 'TRACKING_LINK_ADDED' | 'SHIPPING_CONFIRMATION_EMAIL_SENT' | 'INVOICE_ADDED' | 'INVOICE_REMOVED' | 'INVOICE_SENT' | 'FULFILLER_EMAIL_SENT' | 'SHIPPING_ADDRESS_EDITED' | 'EMAIL_EDITED' | 'PICKUP_READY_EMAIL_SENT' | 'MERCHANT_COMMENT' | 'ORDER_PARTIALLY_PAID' | 'DRAFT_ORDER_CHANGES_APPLIED' | 'SAVED_PAYMENT_METHOD' | 'AUTHORIZED_PAYMENT_CREATED' | 'AUTHORIZED_PAYMENT_CAPTURED' | 'AUTHORIZED_PAYMENT_VOIDED' | 'REFUND_INITIATED' | 'PAYMENT_REFUNDED' | 'PAYMENT_REFUND_FAILED' | 'REFUNDED_AS_STORE_CREDIT' | 'PAYMENT_PENDING' | 'PAYMENT_CANCELED' | 'PAYMENT_DECLINED' | 'ORDER_PENDING' | 'ORDER_REJECTED' | 'RECEIPT_CREATED' | 'RECEIPT_SENT' | 'CHARGEBACK_CREATED' | 'CHARGEBACK_REVERSED' | 'ORDER_REFUNDED';
|
|
4080
4076
|
declare enum AttributionSource {
|
|
4081
4077
|
UNSPECIFIED = "UNSPECIFIED",
|
|
4082
4078
|
FACEBOOK_ADS = "FACEBOOK_ADS"
|
|
@@ -5880,7 +5876,7 @@ type DraftOrderQuery = {
|
|
|
5880
5876
|
declare const utils: {
|
|
5881
5877
|
query: {
|
|
5882
5878
|
QueryBuilder: () => _wix_sdk_types.QueryBuilder<DraftOrder, DraftOrderQuerySpec, DraftOrderQuery>;
|
|
5883
|
-
Filter: _wix_sdk_types.FilterFactory<DraftOrder, DraftOrderQuerySpec>;
|
|
5879
|
+
Filter: _wix_sdk_types.FilterFactory<DraftOrder, DraftOrderQuerySpec>; /** Discount details. */
|
|
5884
5880
|
Sort: _wix_sdk_types.SortFactory<DraftOrderQuerySpec>;
|
|
5885
5881
|
};
|
|
5886
5882
|
};
|
|
@@ -5949,4 +5945,4 @@ interface SetBusinessLocationOptions {
|
|
|
5949
5945
|
businessLocation?: Location;
|
|
5950
5946
|
}
|
|
5951
5947
|
|
|
5952
|
-
export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, type Activity, type ActivityContentOneOf, ActivityType, type ActivityTypeWithLiterals, type AddLineItemsToDraftOrderApplicationErrors, type AddLineItemsToDraftOrderOptions, type AddLineItemsToDraftOrderRequest, type AddLineItemsToDraftOrderResponse, type AdditionalFee, type AdditionalFeeDetails, type AdditionalFeeOption, AdditionalFeeSource, type AdditionalFeeSourceWithLiterals, type Address, type AddressLocation, type AddressWithContact, AdjustmentType, type AdjustmentTypeWithLiterals, type ApplicationError, type AppliedDiscount, type AppliedDiscountDiscountSourceOneOf, AppliedDiscountDiscountType, type AppliedDiscountDiscountTypeWithLiterals, AttributionSource, type AttributionSourceWithLiterals, type AuthorizedPaymentCaptured, type AuthorizedPaymentCreated, type AuthorizedPaymentVoided, type Balance, type BalanceSummary, type BaseEventMetadata, type BillingAdjustment, type BillingAdjustmentPriceSummary, type BillingChangedDetails, type BillingDetails, type BillingDetailsChangeTypeOneOf, type BusinessLocationChangedDetails, type BusinessLocationDetails, type BusinessLocationDetailsChangeTypeOneOf, type BuyerChangedDetails, type BuyerDetails, type BuyerDetailsChangeTypeOneOf, type BuyerInfo, type BuyerInfoIdOneOf, type CalculatedDraftOrder, type CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf, type CarrierError, type CarrierErrors, type CashRounding, type CatalogReference, type CatalogReferenceLineItem, type ChannelInfo, ChannelType, type ChannelTypeWithLiterals, ChargeType, type ChargeTypeWithLiterals, type ChargebackCreated, type ChargebackReversed, type Color, type CommitDraftOrderApplicationErrors, type CommitDraftOrderOptions, type CommitDraftOrderRequest, type CommitDraftOrderResponse, type CommonQueryWithEntityContext, type Coupon, type CreateCustomAdditionalFeesApplicationErrors, type CreateCustomAdditionalFeesOptions, type CreateCustomAdditionalFeesRequest, type CreateCustomAdditionalFeesResponse, type CreateCustomDiscountsApplicationErrors, type CreateCustomDiscountsOptions, type CreateCustomDiscountsRequest, type CreateCustomDiscountsResponse, type CreateDraftOrderApplicationErrors, type CreateDraftOrderOptions, type CreateDraftOrderOptionsSourceOneOf, type CreateDraftOrderRequest, type CreateDraftOrderRequestSourceOneOf, type CreateDraftOrderResponse, type CreateEmptyDraftOrderApplicationErrors, type CreateEmptyDraftOrderRequest, type CreateEmptyDraftOrderResponse, type CreateOrderFromDraftApplicationErrors, type CreateOrderFromDraftOptions, type CreateOrderFromDraftRequest, type CreateOrderFromDraftResponse, type CreatedBy, type CreatedByStringOneOf, type CreditCardDetails, type CurrencyConversionDetails, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type CustomActivity, type CustomAllowedActions, type CustomField, type CustomLineItem, type DeleteCustomAdditionalFeesApplicationErrors, type DeleteCustomAdditionalFeesRequest, type DeleteCustomAdditionalFeesResponse, type DeleteCustomDiscountsApplicationErrors, type DeleteCustomDiscountsRequest, type DeleteCustomDiscountsResponse, type DeleteDraftOrderApplicationErrors, type DeleteDraftOrderRequest, type DeleteDraftOrderResponse, type DeliveryLogistics, type DeliveryTimeSlot, type DepositDetails, type DepositDetailsDepositOneOf, type DescriptionLine, type DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName, DescriptionLineType, type DescriptionLineTypeWithLiterals, type DescriptionLineValueOneOf, type DescriptionLinesOverride, type Details, type DetailsKindOneOf, type DigitalFile, type Dimensions, DimensionsUnit, type DimensionsUnitWithLiterals, type DiscountDetails, type DiscountOption, type DiscountOptionDiscountAmountOneOf, DiscountReason, type DiscountReasonWithLiterals, type DiscountRule, type DiscountRuleName, DiscountType, type DiscountTypeWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type DraftOrder, type DraftOrderChangesApplied, type DraftOrderCommitSettings, type DraftOrderCreatedEnvelope, type DraftOrderDeletedEnvelope, type DraftOrderInput, type DraftOrderQuery, type DraftOrderQuerySpec, type DraftOrderUpdatedEnvelope, type DraftOrdersQueryBuilder, type DraftOrdersQueryResult, EditingStatus, type EditingStatusWithLiterals, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type ExtendedFields, type ExternalReceipt, type FieldViolation, FileType, type FileTypeWithLiterals, type FocalPoint, type FormIdentifier, type FormInfo, type FreeTrialPeriod, FulfillmentStatus, type FulfillmentStatusWithLiterals, type FulfillmentStatusesAggregate, type FullAddressContactDetails, type GetDraftOrderApplicationErrors, type GetDraftOrderRequest, type GetDraftOrderResponse, type GetOrderDraftabilityStatusRequest, type GetOrderDraftabilityStatusResponse, type GiftCardPaymentRefund, type IdAndApplied, type IdentificationData, type IdentificationDataIdOneOf, type InventoryUpdate, type ItemChangedDetails, type ItemCombination, type ItemCombinationLineItem, type ItemDetails, type ItemDetailsChangeTypeOneOf, type ItemModifier, type ItemTaxFullDetails, type ItemType, type ItemTypeItemTypeDataOneOf, ItemTypePreset, type ItemTypePresetWithLiterals, JurisdictionType, type JurisdictionTypeWithLiterals, type LineItemAmount, type LineItemChangeDetails, type LineItemChanges, type LineItemDescriptionLineChange, type LineItemDiscount, type LineItemExchangeData, type LineItemModifiersChange, type LineItemPriceChange, type LineItemProductNameChange, type LineItemQuantityChange, LineItemQuantityChangeType, type LineItemQuantityChangeTypeWithLiterals, type LineItemTaxBreakdown, type LineItemTaxInfo, type Location, type LocationAndQuantity, type ManagedAdditionalFee, type ManagedDiscount, type ManagedLineItem, type MembershipPaymentRefund, type MerchantComment, type MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope, type ModifierGroup, type ModifiersGroupsOverride, type NewExchangeOrderCreated, NonDraftableReason, type NonDraftableReasonWithLiterals, type Order, OrderActionType, type OrderActionTypeWithLiterals, OrderActivityTypeEnumActivityType, type OrderActivityTypeEnumActivityTypeWithLiterals, type OrderChange, type OrderChangeValueOneOf, type OrderCreateNotifications, type OrderCreateSettings, type OrderCreateSettingsEditableByOneOf, type OrderCreatedFromExchange, type OrderLineItem, type OrderRefunded, type OrderSettings, type OrderSettingsAllowedActionsOneOf, type OrderSettingsEditableByOneOf, OrderStatus, type OrderStatusWithLiterals, type OrderTaxBreakdown, type OrderTaxInfo, type OwnerApps, type PaymentCanceled, type PaymentCanceledPaymentDetailsOneOf, type PaymentDeclined, type PaymentDeclinedPaymentDetailsOneOf, PaymentOptionType, type PaymentOptionTypeWithLiterals, type PaymentPending, type PaymentPendingPaymentDetailsOneOf, type PaymentRefundFailed, type PaymentRefunded, PaymentStatus, type PaymentStatusWithLiterals, type PhysicalProperties, type PickupAddress, type PickupDetails, PickupDetailsPickupMethod, type PickupDetailsPickupMethodWithLiterals, PickupMethod, type PickupMethodWithLiterals, type PlainTextValue, type PlatformFee, type PlatformFeeSummary, type Price, type PriceDescription, type PriceSummary, type ProductName, type QueryDraftOrdersRequest, type QueryDraftOrdersResponse, type ReceiptCreated, type ReceiptCreatedReceiptInfoOneOf, type ReceiptSent, type ReceiptSentReceiptInfoOneOf, type RecipientInfoChangedDetails, type RecipientInfoDetails, type RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated, type RefundedAsStoreCredit, type RefundedPayment, type RefundedPaymentKindOneOf, type RegularPayment, type RegularPaymentPaymentMethodDetailsOneOf, type RegularPaymentRefund, type RestoreInfo, RuleType, type RuleTypeWithLiterals, type SavedPaymentMethod, type SecuredMedia, type SetAdditionalFeesApplicationErrors, type SetAdditionalFeesRequest, type SetAdditionalFeesResponse, type SetBillingInfoApplicationErrors, type SetBillingInfoOptions, type SetBillingInfoRequest, type SetBillingInfoResponse, type SetBusinessLocationApplicationErrors, type SetBusinessLocationOptions, type SetBusinessLocationRequest, type SetBusinessLocationResponse, type SetBuyerInfoApplicationErrors, type SetBuyerInfoOptions, type SetBuyerInfoRequest, type SetBuyerInfoResponse, type SetDepositApplicationErrors, type SetDepositOptions, type SetDepositRequest, type SetDepositResponse, type SetDiscountsApplicationErrors, type SetDiscountsRequest, type SetDiscountsResponse, type SetRecipientInfoApplicationErrors, type SetRecipientInfoOptions, type SetRecipientInfoRequest, type SetRecipientInfoResponse, type SetShippingInfoApplicationErrors, type SetShippingInfoOptions, type SetShippingInfoRequest, type SetShippingInfoResponse, type SetTaxExemptionApplicationErrors, type SetTaxExemptionOptions, type SetTaxExemptionRequest, type SetTaxExemptionResponse, type ShippingChangedDetails, type ShippingDetails, type ShippingDetailsChangeTypeOneOf, type ShippingInformation, type ShippingInformationChange, type ShippingOption, type ShippingPrice, type ShippingRegion, SortOrder, type SortOrderWithLiterals, type Sorting, SourceType, type SourceTypeWithLiterals, SpecificItemsCouponBehavior, type SpecificItemsCouponBehaviorWithLiterals, type StreetAddress, type SubscriptionDescription, SubscriptionFrequency, type SubscriptionFrequencyWithLiterals, type SubscriptionInfo, type SubscriptionSettings, type SubscriptionTitle, type SystemError, type TagList, type Tags, type TaxDetails, type TaxSummary, type TaxableAddress, type TaxableAddressTaxableAddressDataOneOf, TaxableAddressType, type TaxableAddressTypeWithLiterals, type TotalPriceChange, type TranslatableString, type TranslatedValue, type UpdateExtendedFieldsApplicationErrors, type UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse, type UpdateLineItemsApplicationErrors, type UpdateLineItemsRequest, type UpdateLineItemsResponse, type UpdateShippingInfoRequest, type UpdateShippingInfoResponse, type V1BalanceSummary, type V1CreatedBy, type V1CreatedByStringOneOf, type V1DeliveryLogistics, type V1DeliveryLogisticsAddressOneOf, type V1DeliveryTimeSlot, type V1PickupDetails, type V1ShippingInformation, type V1ShippingPrice, type ValidationError, type VatId, VatType, type VatTypeWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, WeightUnit, type WeightUnitWithLiterals, type WixReceipt, addLineItemsToDraftOrder, commitDraftOrder, createCustomAdditionalFees, createCustomDiscounts, createDraftOrder, createEmptyDraftOrder, createOrderFromDraft, deleteCustomAdditionalFees, deleteCustomDiscounts, deleteDraftOrder, getDraftOrder, getOrderDraftabilityStatus, onDraftOrderCreated, onDraftOrderDeleted, onDraftOrderUpdated, queryDraftOrders, setAdditionalFees, setBillingInfo, setBusinessLocation, setBuyerInfo, setDiscounts, setRecipientInfo, setShippingInfo, setTaxExemption, typedQueryDraftOrders, updateExtendedFields, updateLineItems, utils };
|
|
5948
|
+
export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, type Activity, type ActivityContentOneOf, ActivityType, type ActivityTypeWithLiterals, type AddLineItemsToDraftOrderApplicationErrors, type AddLineItemsToDraftOrderOptions, type AddLineItemsToDraftOrderRequest, type AddLineItemsToDraftOrderResponse, type AdditionalFee, type AdditionalFeeDetails, type AdditionalFeeOption, AdditionalFeeSource, type AdditionalFeeSourceWithLiterals, type Address, type AddressLocation, type AddressWithContact, AdjustmentType, type AdjustmentTypeWithLiterals, type ApplicationError, type AppliedDiscount, type AppliedDiscountDiscountSourceOneOf, AppliedDiscountDiscountType, type AppliedDiscountDiscountTypeWithLiterals, AttributionSource, type AttributionSourceWithLiterals, type AuthorizedPaymentCaptured, type AuthorizedPaymentCreated, type AuthorizedPaymentVoided, type Balance, type BalanceSummary, type BaseEventMetadata, type BillingAdjustment, type BillingAdjustmentPriceSummary, type BillingChangedDetails, type BillingDetails, type BillingDetailsChangeTypeOneOf, type BusinessLocationChangedDetails, type BusinessLocationDetails, type BusinessLocationDetailsChangeTypeOneOf, type BuyerChangedDetails, type BuyerDetails, type BuyerDetailsChangeTypeOneOf, type BuyerInfo, type BuyerInfoIdOneOf, type CalculatedDraftOrder, type CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf, type CarrierError, type CarrierErrors, type CashRounding, type CatalogReference, type CatalogReferenceLineItem, type ChannelInfo, ChannelType, type ChannelTypeWithLiterals, ChargeType, type ChargeTypeWithLiterals, type ChargebackCreated, type ChargebackReversed, type Color, type CommitDraftOrderApplicationErrors, type CommitDraftOrderOptions, type CommitDraftOrderRequest, type CommitDraftOrderResponse, type CommonQueryWithEntityContext, type Coupon, type CreateCustomAdditionalFeesApplicationErrors, type CreateCustomAdditionalFeesOptions, type CreateCustomAdditionalFeesRequest, type CreateCustomAdditionalFeesResponse, type CreateCustomDiscountsApplicationErrors, type CreateCustomDiscountsOptions, type CreateCustomDiscountsRequest, type CreateCustomDiscountsResponse, type CreateDraftOrderApplicationErrors, type CreateDraftOrderOptions, type CreateDraftOrderOptionsSourceOneOf, type CreateDraftOrderRequest, type CreateDraftOrderRequestSourceOneOf, type CreateDraftOrderResponse, type CreateEmptyDraftOrderApplicationErrors, type CreateEmptyDraftOrderRequest, type CreateEmptyDraftOrderResponse, type CreateOrderFromDraftApplicationErrors, type CreateOrderFromDraftOptions, type CreateOrderFromDraftRequest, type CreateOrderFromDraftResponse, type CreatedBy, type CreatedByStringOneOf, type CreditCardDetails, type CurrencyConversionDetails, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type CustomActivity, type CustomAllowedActions, type CustomField, type CustomLineItem, type DeleteCustomAdditionalFeesApplicationErrors, type DeleteCustomAdditionalFeesRequest, type DeleteCustomAdditionalFeesResponse, type DeleteCustomDiscountsApplicationErrors, type DeleteCustomDiscountsRequest, type DeleteCustomDiscountsResponse, type DeleteDraftOrderApplicationErrors, type DeleteDraftOrderRequest, type DeleteDraftOrderResponse, type DeliveryLogistics, type DeliveryTimeSlot, type DepositDetails, type DepositDetailsDepositOneOf, type DescriptionLine, type DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName, DescriptionLineType, type DescriptionLineTypeWithLiterals, type DescriptionLineValueOneOf, type DescriptionLinesOverride, type Details, type DetailsKindOneOf, type DigitalFile, type Dimensions, DimensionsUnit, type DimensionsUnitWithLiterals, type DiscountDetails, type DiscountOption, type DiscountOptionDiscountAmountOneOf, DiscountReason, type DiscountReasonWithLiterals, type DiscountRule, type DiscountRuleName, DiscountType, type DiscountTypeWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type DraftOrder, type DraftOrderChangesApplied, type DraftOrderCommitSettings, type DraftOrderCreatedEnvelope, type DraftOrderDeletedEnvelope, type DraftOrderInput, type DraftOrderQuery, type DraftOrderQuerySpec, type DraftOrderUpdatedEnvelope, type DraftOrdersQueryBuilder, type DraftOrdersQueryResult, EditingStatus, type EditingStatusWithLiterals, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type ExtendedFields, type ExternalReceipt, type FieldViolation, FileType, type FileTypeWithLiterals, type FocalPoint, type FormIdentifier, type FormInfo, type FreeTrialPeriod, FulfillmentStatus, type FulfillmentStatusWithLiterals, type FulfillmentStatusesAggregate, type FullAddressContactDetails, type GetDraftOrderApplicationErrors, type GetDraftOrderRequest, type GetDraftOrderResponse, type GetOrderDraftabilityStatusRequest, type GetOrderDraftabilityStatusResponse, type GiftCardPaymentRefund, type IdAndApplied, type IdentificationData, type IdentificationDataIdOneOf, type InventoryUpdate, type ItemChangedDetails, type ItemCombination, type ItemCombinationLineItem, type ItemDetails, type ItemDetailsChangeTypeOneOf, type ItemModifier, type ItemTaxFullDetails, type ItemType, type ItemTypeItemTypeDataOneOf, ItemTypePreset, type ItemTypePresetWithLiterals, JurisdictionType, type JurisdictionTypeWithLiterals, type LineItemAmount, type LineItemChangeDetails, type LineItemChanges, type LineItemDescriptionLineChange, type LineItemDiscount, type LineItemExchangeData, type LineItemModifiersChange, type LineItemPriceChange, type LineItemProductNameChange, type LineItemQuantityChange, LineItemQuantityChangeType, type LineItemQuantityChangeTypeWithLiterals, type LineItemTaxBreakdown, type LineItemTaxInfo, type Location, type LocationAndQuantity, type ManagedAdditionalFee, type ManagedDiscount, type ManagedLineItem, type MembershipPaymentRefund, type MerchantComment, type MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope, type ModifierGroup, type ModifiersGroupsOverride, type NewExchangeOrderCreated, NonDraftableReason, type NonDraftableReasonWithLiterals, type Order, OrderActionType, type OrderActionTypeWithLiterals, OrderActivityTypeEnumActivityType, type OrderActivityTypeEnumActivityTypeWithLiterals, type OrderChange, type OrderChangeValueOneOf, type OrderCreateNotifications, type OrderCreateSettings, type OrderCreateSettingsEditableByOneOf, type OrderCreatedFromExchange, type OrderLineItem, type OrderRefunded, type OrderSettings, type OrderSettingsAllowedActionsOneOf, type OrderSettingsEditableByOneOf, OrderStatus, type OrderStatusWithLiterals, type OrderTaxBreakdown, type OrderTaxInfo, type OwnerApps, type PaymentCanceled, type PaymentCanceledPaymentDetailsOneOf, type PaymentDeclined, type PaymentDeclinedPaymentDetailsOneOf, PaymentOptionType, type PaymentOptionTypeWithLiterals, type PaymentPending, type PaymentPendingPaymentDetailsOneOf, type PaymentRefundFailed, type PaymentRefunded, PaymentStatus, type PaymentStatusWithLiterals, type PhysicalProperties, type PickupAddress, type PickupDetails, PickupDetailsPickupMethod, type PickupDetailsPickupMethodWithLiterals, PickupMethod, type PickupMethodWithLiterals, type PlainTextValue, type PlatformFee, type PlatformFeeSummary, type Price, type PriceDescription, type PriceSummary, type ProductName, type QueryDraftOrdersRequest, type QueryDraftOrdersResponse, type ReceiptCreated, type ReceiptCreatedReceiptInfoOneOf, type ReceiptSent, type ReceiptSentReceiptInfoOneOf, type RecipientInfoChangedDetails, type RecipientInfoDetails, type RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated, type RefundedAsStoreCredit, type RefundedPayment, type RefundedPaymentKindOneOf, type RegularPayment, type RegularPaymentPaymentMethodDetailsOneOf, type RegularPaymentRefund, type RestockLocation, type RestoreInfo, RuleType, type RuleTypeWithLiterals, type SavedPaymentMethod, type SecuredMedia, type SetAdditionalFeesApplicationErrors, type SetAdditionalFeesRequest, type SetAdditionalFeesResponse, type SetBillingInfoApplicationErrors, type SetBillingInfoOptions, type SetBillingInfoRequest, type SetBillingInfoResponse, type SetBusinessLocationApplicationErrors, type SetBusinessLocationOptions, type SetBusinessLocationRequest, type SetBusinessLocationResponse, type SetBuyerInfoApplicationErrors, type SetBuyerInfoOptions, type SetBuyerInfoRequest, type SetBuyerInfoResponse, type SetDepositApplicationErrors, type SetDepositOptions, type SetDepositRequest, type SetDepositResponse, type SetDiscountsApplicationErrors, type SetDiscountsRequest, type SetDiscountsResponse, type SetRecipientInfoApplicationErrors, type SetRecipientInfoOptions, type SetRecipientInfoRequest, type SetRecipientInfoResponse, type SetShippingInfoApplicationErrors, type SetShippingInfoOptions, type SetShippingInfoRequest, type SetShippingInfoResponse, type SetTaxExemptionApplicationErrors, type SetTaxExemptionOptions, type SetTaxExemptionRequest, type SetTaxExemptionResponse, type ShippingChangedDetails, type ShippingDetails, type ShippingDetailsChangeTypeOneOf, type ShippingInformation, type ShippingInformationChange, type ShippingOption, type ShippingPrice, type ShippingRegion, SortOrder, type SortOrderWithLiterals, type Sorting, SourceType, type SourceTypeWithLiterals, SpecificItemsCouponBehavior, type SpecificItemsCouponBehaviorWithLiterals, type StreetAddress, type SubscriptionDescription, SubscriptionFrequency, type SubscriptionFrequencyWithLiterals, type SubscriptionInfo, type SubscriptionSettings, type SubscriptionTitle, type SystemError, type TagList, type Tags, type TaxDetails, type TaxSummary, type TaxableAddress, type TaxableAddressTaxableAddressDataOneOf, TaxableAddressType, type TaxableAddressTypeWithLiterals, type TotalPriceChange, type TranslatableString, type TranslatedValue, type UpdateExtendedFieldsApplicationErrors, type UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse, type UpdateLineItemsApplicationErrors, type UpdateLineItemsRequest, type UpdateLineItemsResponse, type UpdateShippingInfoRequest, type UpdateShippingInfoResponse, type V1BalanceSummary, type V1CreatedBy, type V1CreatedByStringOneOf, type V1DeliveryLogistics, type V1DeliveryLogisticsAddressOneOf, type V1DeliveryTimeSlot, type V1PickupDetails, type V1ShippingInformation, type V1ShippingPrice, type ValidationError, type VatId, VatType, type VatTypeWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, WeightUnit, type WeightUnitWithLiterals, type WixReceipt, addLineItemsToDraftOrder, commitDraftOrder, createCustomAdditionalFees, createCustomDiscounts, createDraftOrder, createEmptyDraftOrder, createOrderFromDraft, deleteCustomAdditionalFees, deleteCustomDiscounts, deleteDraftOrder, getDraftOrder, getOrderDraftabilityStatus, onDraftOrderCreated, onDraftOrderDeleted, onDraftOrderUpdated, queryDraftOrders, setAdditionalFees, setBillingInfo, setBusinessLocation, setBuyerInfo, setDiscounts, setRecipientInfo, setShippingInfo, setTaxExemption, typedQueryDraftOrders, updateExtendedFields, updateLineItems, utils };
|
|
@@ -3283,13 +3283,11 @@ var SubscriptionFrequency = /* @__PURE__ */ ((SubscriptionFrequency2) => {
|
|
|
3283
3283
|
return SubscriptionFrequency2;
|
|
3284
3284
|
})(SubscriptionFrequency || {});
|
|
3285
3285
|
var AdjustmentType = /* @__PURE__ */ ((AdjustmentType2) => {
|
|
3286
|
-
AdjustmentType2["UNKNOWN_ADJUSTMENT_TYPE"] = "UNKNOWN_ADJUSTMENT_TYPE";
|
|
3287
3286
|
AdjustmentType2["EXTRA_CHARGE"] = "EXTRA_CHARGE";
|
|
3288
3287
|
AdjustmentType2["CREDIT"] = "CREDIT";
|
|
3289
3288
|
return AdjustmentType2;
|
|
3290
3289
|
})(AdjustmentType || {});
|
|
3291
3290
|
var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
|
|
3292
|
-
TaxableAddressType2["UNKNOWN_TAXABLE_ADDRESS"] = "UNKNOWN_TAXABLE_ADDRESS";
|
|
3293
3291
|
TaxableAddressType2["BUSINESS"] = "BUSINESS";
|
|
3294
3292
|
TaxableAddressType2["BILLING"] = "BILLING";
|
|
3295
3293
|
TaxableAddressType2["SHIPPING"] = "SHIPPING";
|
|
@@ -3302,13 +3300,11 @@ var VatType = /* @__PURE__ */ ((VatType2) => {
|
|
|
3302
3300
|
return VatType2;
|
|
3303
3301
|
})(VatType || {});
|
|
3304
3302
|
var PickupDetailsPickupMethod = /* @__PURE__ */ ((PickupDetailsPickupMethod2) => {
|
|
3305
|
-
PickupDetailsPickupMethod2["UNKNOWN_METHOD"] = "UNKNOWN_METHOD";
|
|
3306
3303
|
PickupDetailsPickupMethod2["STORE_PICKUP"] = "STORE_PICKUP";
|
|
3307
3304
|
PickupDetailsPickupMethod2["PICKUP_POINT"] = "PICKUP_POINT";
|
|
3308
3305
|
return PickupDetailsPickupMethod2;
|
|
3309
3306
|
})(PickupDetailsPickupMethod || {});
|
|
3310
3307
|
var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
|
|
3311
|
-
AdditionalFeeSource2["UNKNOWN_ADDITIONAL_FEE_SOURCE"] = "UNKNOWN_ADDITIONAL_FEE_SOURCE";
|
|
3312
3308
|
AdditionalFeeSource2["SERVICE_PLUGIN"] = "SERVICE_PLUGIN";
|
|
3313
3309
|
AdditionalFeeSource2["ITEM"] = "ITEM";
|
|
3314
3310
|
AdditionalFeeSource2["MANUAL"] = "MANUAL";
|
|
@@ -3346,7 +3342,6 @@ var WeightUnit = /* @__PURE__ */ ((WeightUnit2) => {
|
|
|
3346
3342
|
return WeightUnit2;
|
|
3347
3343
|
})(WeightUnit || {});
|
|
3348
3344
|
var ChargeType = /* @__PURE__ */ ((ChargeType2) => {
|
|
3349
|
-
ChargeType2["UNKNOWN_CHARGE_TYPE"] = "UNKNOWN_CHARGE_TYPE";
|
|
3350
3345
|
ChargeType2["PASS_ON"] = "PASS_ON";
|
|
3351
3346
|
ChargeType2["ABSORBED"] = "ABSORBED";
|
|
3352
3347
|
return ChargeType2;
|
|
@@ -3362,14 +3357,12 @@ var FileType = /* @__PURE__ */ ((FileType2) => {
|
|
|
3362
3357
|
return FileType2;
|
|
3363
3358
|
})(FileType || {});
|
|
3364
3359
|
var DiscountType = /* @__PURE__ */ ((DiscountType2) => {
|
|
3365
|
-
DiscountType2["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
3366
3360
|
DiscountType2["GLOBAL"] = "GLOBAL";
|
|
3367
3361
|
DiscountType2["SPECIFIC_ITEMS"] = "SPECIFIC_ITEMS";
|
|
3368
3362
|
DiscountType2["SHIPPING"] = "SHIPPING";
|
|
3369
3363
|
return DiscountType2;
|
|
3370
3364
|
})(DiscountType || {});
|
|
3371
3365
|
var PickupMethod = /* @__PURE__ */ ((PickupMethod2) => {
|
|
3372
|
-
PickupMethod2["UNKNOWN_METHOD"] = "UNKNOWN_METHOD";
|
|
3373
3366
|
PickupMethod2["STORE_PICKUP"] = "STORE_PICKUP";
|
|
3374
3367
|
PickupMethod2["PICKUP_POINT"] = "PICKUP_POINT";
|
|
3375
3368
|
return PickupMethod2;
|
|
@@ -3399,7 +3392,6 @@ var RuleType = /* @__PURE__ */ ((RuleType2) => {
|
|
|
3399
3392
|
return RuleType2;
|
|
3400
3393
|
})(RuleType || {});
|
|
3401
3394
|
var NonDraftableReason = /* @__PURE__ */ ((NonDraftableReason2) => {
|
|
3402
|
-
NonDraftableReason2["UNSPECIFIED"] = "UNSPECIFIED";
|
|
3403
3395
|
NonDraftableReason2["PARTIALLY_OR_FULLY_REFUNDED"] = "PARTIALLY_OR_FULLY_REFUNDED";
|
|
3404
3396
|
NonDraftableReason2["UNSUPPORTED_CHANNEL_TYPE"] = "UNSUPPORTED_CHANNEL_TYPE";
|
|
3405
3397
|
NonDraftableReason2["ORDER_STATUS_IS_NOT_SUPPORTED"] = "ORDER_STATUS_IS_NOT_SUPPORTED";
|
|
@@ -3462,8 +3454,6 @@ var ActivityType = /* @__PURE__ */ ((ActivityType2) => {
|
|
|
3462
3454
|
ActivityType2["PICKUP_READY_EMAIL_SENT"] = "PICKUP_READY_EMAIL_SENT";
|
|
3463
3455
|
ActivityType2["CUSTOM_ACTIVITY"] = "CUSTOM_ACTIVITY";
|
|
3464
3456
|
ActivityType2["MERCHANT_COMMENT"] = "MERCHANT_COMMENT";
|
|
3465
|
-
ActivityType2["ORDER_CREATED_FROM_EXCHANGE"] = "ORDER_CREATED_FROM_EXCHANGE";
|
|
3466
|
-
ActivityType2["NEW_EXCHANGE_ORDER_CREATED"] = "NEW_EXCHANGE_ORDER_CREATED";
|
|
3467
3457
|
ActivityType2["ORDER_PARTIALLY_PAID"] = "ORDER_PARTIALLY_PAID";
|
|
3468
3458
|
ActivityType2["DRAFT_ORDER_CHANGES_APPLIED"] = "DRAFT_ORDER_CHANGES_APPLIED";
|
|
3469
3459
|
ActivityType2["SAVED_PAYMENT_METHOD"] = "SAVED_PAYMENT_METHOD";
|
|
@@ -3486,7 +3476,6 @@ var ActivityType = /* @__PURE__ */ ((ActivityType2) => {
|
|
|
3486
3476
|
return ActivityType2;
|
|
3487
3477
|
})(ActivityType || {});
|
|
3488
3478
|
var OrderActivityTypeEnumActivityType = /* @__PURE__ */ ((OrderActivityTypeEnumActivityType2) => {
|
|
3489
|
-
OrderActivityTypeEnumActivityType2["UNKNOWN_ACTIVITY_TYPE"] = "UNKNOWN_ACTIVITY_TYPE";
|
|
3490
3479
|
OrderActivityTypeEnumActivityType2["ORDER_PLACED"] = "ORDER_PLACED";
|
|
3491
3480
|
OrderActivityTypeEnumActivityType2["ORDER_PAID"] = "ORDER_PAID";
|
|
3492
3481
|
OrderActivityTypeEnumActivityType2["ORDER_FULFILLED"] = "ORDER_FULFILLED";
|
|
@@ -3504,10 +3493,7 @@ var OrderActivityTypeEnumActivityType = /* @__PURE__ */ ((OrderActivityTypeEnumA
|
|
|
3504
3493
|
OrderActivityTypeEnumActivityType2["SHIPPING_ADDRESS_EDITED"] = "SHIPPING_ADDRESS_EDITED";
|
|
3505
3494
|
OrderActivityTypeEnumActivityType2["EMAIL_EDITED"] = "EMAIL_EDITED";
|
|
3506
3495
|
OrderActivityTypeEnumActivityType2["PICKUP_READY_EMAIL_SENT"] = "PICKUP_READY_EMAIL_SENT";
|
|
3507
|
-
OrderActivityTypeEnumActivityType2["CUSTOM_ACTIVITY"] = "CUSTOM_ACTIVITY";
|
|
3508
3496
|
OrderActivityTypeEnumActivityType2["MERCHANT_COMMENT"] = "MERCHANT_COMMENT";
|
|
3509
|
-
OrderActivityTypeEnumActivityType2["ORDER_CREATED_FROM_EXCHANGE"] = "ORDER_CREATED_FROM_EXCHANGE";
|
|
3510
|
-
OrderActivityTypeEnumActivityType2["NEW_EXCHANGE_ORDER_CREATED"] = "NEW_EXCHANGE_ORDER_CREATED";
|
|
3511
3497
|
OrderActivityTypeEnumActivityType2["ORDER_PARTIALLY_PAID"] = "ORDER_PARTIALLY_PAID";
|
|
3512
3498
|
OrderActivityTypeEnumActivityType2["DRAFT_ORDER_CHANGES_APPLIED"] = "DRAFT_ORDER_CHANGES_APPLIED";
|
|
3513
3499
|
OrderActivityTypeEnumActivityType2["SAVED_PAYMENT_METHOD"] = "SAVED_PAYMENT_METHOD";
|