@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
|
@@ -419,9 +419,22 @@ interface OrderLineItem {
|
|
|
419
419
|
refundQuantity?: number | null;
|
|
420
420
|
/**
|
|
421
421
|
* Number of items restocked.
|
|
422
|
+
*
|
|
423
|
+
* For a per-location breakdown, see `restockLocations`.
|
|
422
424
|
* @max 100000
|
|
423
425
|
*/
|
|
424
426
|
restockQuantity?: number | null;
|
|
427
|
+
/**
|
|
428
|
+
* Per-location restock breakdown.
|
|
429
|
+
*
|
|
430
|
+
* Populated when items are restocked to specific locations.
|
|
431
|
+
* The sum of all `quantity` values equals `restockQuantity`.
|
|
432
|
+
* Empty when no location-specific restock was performed.
|
|
433
|
+
* @internal
|
|
434
|
+
* @maxSize 5
|
|
435
|
+
* @readonly
|
|
436
|
+
*/
|
|
437
|
+
restockLocations?: RestockLocation[];
|
|
425
438
|
/** Line item price after line item discounts for display purposes. */
|
|
426
439
|
price?: Price;
|
|
427
440
|
/**
|
|
@@ -632,6 +645,20 @@ declare enum ItemTypePreset {
|
|
|
632
645
|
}
|
|
633
646
|
/** @enumType */
|
|
634
647
|
type ItemTypePresetWithLiterals = ItemTypePreset | 'UNRECOGNISED' | 'PHYSICAL' | 'DIGITAL' | 'GIFT_CARD' | 'SERVICE';
|
|
648
|
+
/** Quantity of items restocked at a specific location. */
|
|
649
|
+
interface RestockLocation {
|
|
650
|
+
/**
|
|
651
|
+
* ID of the location where items were restocked.
|
|
652
|
+
* @format GUID
|
|
653
|
+
*/
|
|
654
|
+
locationId?: string;
|
|
655
|
+
/**
|
|
656
|
+
* Number of items restocked at this location.
|
|
657
|
+
* @min 1
|
|
658
|
+
* @max 100000
|
|
659
|
+
*/
|
|
660
|
+
quantity?: number;
|
|
661
|
+
}
|
|
635
662
|
/** Type of selected payment option for catalog item */
|
|
636
663
|
declare enum PaymentOptionType {
|
|
637
664
|
/** The entire payment for this item happens as part of the checkout. */
|
|
@@ -900,14 +927,13 @@ interface BillingAdjustment {
|
|
|
900
927
|
priceSummary?: BillingAdjustmentPriceSummary;
|
|
901
928
|
}
|
|
902
929
|
declare enum AdjustmentType {
|
|
903
|
-
UNKNOWN_ADJUSTMENT_TYPE = "UNKNOWN_ADJUSTMENT_TYPE",
|
|
904
930
|
/** Adjustment increases the total amount due to changes like covering extra billing days. Typically results in an additional fee. */
|
|
905
931
|
EXTRA_CHARGE = "EXTRA_CHARGE",
|
|
906
932
|
/** Adjustment reduces the total amount due to changes like covering fewer billing days. Typically results in a credit or discount. */
|
|
907
933
|
CREDIT = "CREDIT"
|
|
908
934
|
}
|
|
909
935
|
/** @enumType */
|
|
910
|
-
type AdjustmentTypeWithLiterals = AdjustmentType | '
|
|
936
|
+
type AdjustmentTypeWithLiterals = AdjustmentType | 'EXTRA_CHARGE' | 'CREDIT';
|
|
911
937
|
interface BillingAdjustmentPriceSummary {
|
|
912
938
|
/** Subtotal of adjustment, before tax. */
|
|
913
939
|
subtotal?: Price;
|
|
@@ -952,13 +978,12 @@ interface TaxableAddressTaxableAddressDataOneOf {
|
|
|
952
978
|
addressType?: TaxableAddressTypeWithLiterals;
|
|
953
979
|
}
|
|
954
980
|
declare enum TaxableAddressType {
|
|
955
|
-
UNKNOWN_TAXABLE_ADDRESS = "UNKNOWN_TAXABLE_ADDRESS",
|
|
956
981
|
BUSINESS = "BUSINESS",
|
|
957
982
|
BILLING = "BILLING",
|
|
958
983
|
SHIPPING = "SHIPPING"
|
|
959
984
|
}
|
|
960
985
|
/** @enumType */
|
|
961
|
-
type TaxableAddressTypeWithLiterals = TaxableAddressType | '
|
|
986
|
+
type TaxableAddressTypeWithLiterals = TaxableAddressType | 'BUSINESS' | 'BILLING' | 'SHIPPING';
|
|
962
987
|
interface ExtendedFields {
|
|
963
988
|
/**
|
|
964
989
|
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
@@ -1243,12 +1268,11 @@ interface PickupAddress {
|
|
|
1243
1268
|
subdivisionFullname?: string | null;
|
|
1244
1269
|
}
|
|
1245
1270
|
declare enum PickupDetailsPickupMethod {
|
|
1246
|
-
UNKNOWN_METHOD = "UNKNOWN_METHOD",
|
|
1247
1271
|
STORE_PICKUP = "STORE_PICKUP",
|
|
1248
1272
|
PICKUP_POINT = "PICKUP_POINT"
|
|
1249
1273
|
}
|
|
1250
1274
|
/** @enumType */
|
|
1251
|
-
type PickupDetailsPickupMethodWithLiterals = PickupDetailsPickupMethod | '
|
|
1275
|
+
type PickupDetailsPickupMethodWithLiterals = PickupDetailsPickupMethod | 'STORE_PICKUP' | 'PICKUP_POINT';
|
|
1252
1276
|
interface V1DeliveryTimeSlot {
|
|
1253
1277
|
/** Delivery slot starting time. */
|
|
1254
1278
|
from?: Date | null;
|
|
@@ -1407,7 +1431,6 @@ interface AdditionalFee {
|
|
|
1407
1431
|
source?: AdditionalFeeSourceWithLiterals;
|
|
1408
1432
|
}
|
|
1409
1433
|
declare enum AdditionalFeeSource {
|
|
1410
|
-
UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
|
|
1411
1434
|
/** The additional fee was added by an additional fee service plugin. */
|
|
1412
1435
|
SERVICE_PLUGIN = "SERVICE_PLUGIN",
|
|
1413
1436
|
/** The additional fee was added to the item by a catalog or custom line item. */
|
|
@@ -1420,7 +1443,7 @@ declare enum AdditionalFeeSource {
|
|
|
1420
1443
|
PLATFORM = "PLATFORM"
|
|
1421
1444
|
}
|
|
1422
1445
|
/** @enumType */
|
|
1423
|
-
type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | '
|
|
1446
|
+
type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
|
|
1424
1447
|
interface TaxDetails {
|
|
1425
1448
|
/** Whether the additional fee is taxable. */
|
|
1426
1449
|
taxable?: boolean;
|
|
@@ -2052,7 +2075,6 @@ interface PlatformFee {
|
|
|
2052
2075
|
percentageRate?: string;
|
|
2053
2076
|
}
|
|
2054
2077
|
declare enum ChargeType {
|
|
2055
|
-
UNKNOWN_CHARGE_TYPE = "UNKNOWN_CHARGE_TYPE",
|
|
2056
2078
|
/**
|
|
2057
2079
|
* Platform fee passed on to buyer.
|
|
2058
2080
|
*
|
|
@@ -2067,7 +2089,7 @@ declare enum ChargeType {
|
|
|
2067
2089
|
ABSORBED = "ABSORBED"
|
|
2068
2090
|
}
|
|
2069
2091
|
/** @enumType */
|
|
2070
|
-
type ChargeTypeWithLiterals = ChargeType | '
|
|
2092
|
+
type ChargeTypeWithLiterals = ChargeType | 'PASS_ON' | 'ABSORBED';
|
|
2071
2093
|
interface CreateDraftOrderRequest extends CreateDraftOrderRequestSourceOneOf {
|
|
2072
2094
|
/**
|
|
2073
2095
|
* ID of the order to create a draft for.
|
|
@@ -2368,7 +2390,6 @@ interface DiscountOptionDiscountAmountOneOf {
|
|
|
2368
2390
|
percentage?: string | null;
|
|
2369
2391
|
}
|
|
2370
2392
|
declare enum DiscountType {
|
|
2371
|
-
UNKNOWN_TYPE = "UNKNOWN_TYPE",
|
|
2372
2393
|
/** Discount applies to the entire order. */
|
|
2373
2394
|
GLOBAL = "GLOBAL",
|
|
2374
2395
|
/** Discount applies to a specific item. */
|
|
@@ -2377,7 +2398,7 @@ declare enum DiscountType {
|
|
|
2377
2398
|
SHIPPING = "SHIPPING"
|
|
2378
2399
|
}
|
|
2379
2400
|
/** @enumType */
|
|
2380
|
-
type DiscountTypeWithLiterals = DiscountType | '
|
|
2401
|
+
type DiscountTypeWithLiterals = DiscountType | 'GLOBAL' | 'SPECIFIC_ITEMS' | 'SHIPPING';
|
|
2381
2402
|
interface AdditionalFeeOption {
|
|
2382
2403
|
/**
|
|
2383
2404
|
* Name of the additional fee.
|
|
@@ -2465,14 +2486,13 @@ interface PickupDetails {
|
|
|
2465
2486
|
pickupMethod?: PickupMethodWithLiterals;
|
|
2466
2487
|
}
|
|
2467
2488
|
declare enum PickupMethod {
|
|
2468
|
-
UNKNOWN_METHOD = "UNKNOWN_METHOD",
|
|
2469
2489
|
/** Store pickup. */
|
|
2470
2490
|
STORE_PICKUP = "STORE_PICKUP",
|
|
2471
2491
|
/** Pickup point. */
|
|
2472
2492
|
PICKUP_POINT = "PICKUP_POINT"
|
|
2473
2493
|
}
|
|
2474
2494
|
/** @enumType */
|
|
2475
|
-
type PickupMethodWithLiterals = PickupMethod | '
|
|
2495
|
+
type PickupMethodWithLiterals = PickupMethod | 'STORE_PICKUP' | 'PICKUP_POINT';
|
|
2476
2496
|
interface DeliveryTimeSlot {
|
|
2477
2497
|
/** Delivery time slot start time. */
|
|
2478
2498
|
from?: Date | null;
|
|
@@ -2965,7 +2985,6 @@ interface GetOrderDraftabilityStatusResponse {
|
|
|
2965
2985
|
nonDraftableReasons?: NonDraftableReasonWithLiterals[];
|
|
2966
2986
|
}
|
|
2967
2987
|
declare enum NonDraftableReason {
|
|
2968
|
-
UNSPECIFIED = "UNSPECIFIED",
|
|
2969
2988
|
/** Modifications of refunded orders are not supported. */
|
|
2970
2989
|
PARTIALLY_OR_FULLY_REFUNDED = "PARTIALLY_OR_FULLY_REFUNDED",
|
|
2971
2990
|
/**
|
|
@@ -2988,7 +3007,7 @@ declare enum NonDraftableReason {
|
|
|
2988
3007
|
SUBSCRIPTION_LINE_ITEM_EXISTS = "SUBSCRIPTION_LINE_ITEM_EXISTS"
|
|
2989
3008
|
}
|
|
2990
3009
|
/** @enumType */
|
|
2991
|
-
type NonDraftableReasonWithLiterals = NonDraftableReason | '
|
|
3010
|
+
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';
|
|
2992
3011
|
interface CommitDraftOrderRequest {
|
|
2993
3012
|
/**
|
|
2994
3013
|
* Draft order ID.
|
|
@@ -4113,10 +4132,6 @@ declare enum ActivityType {
|
|
|
4113
4132
|
CUSTOM_ACTIVITY = "CUSTOM_ACTIVITY",
|
|
4114
4133
|
/** Comment added to the order by a merchant. */
|
|
4115
4134
|
MERCHANT_COMMENT = "MERCHANT_COMMENT",
|
|
4116
|
-
/** Order was created as a result of an exchange. */
|
|
4117
|
-
ORDER_CREATED_FROM_EXCHANGE = "ORDER_CREATED_FROM_EXCHANGE",
|
|
4118
|
-
/** New exchange order was created from this order. */
|
|
4119
|
-
NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
|
|
4120
4135
|
/** Partial payment was received for the order. */
|
|
4121
4136
|
ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
|
|
4122
4137
|
/** Changes were applied to a draft order. */
|
|
@@ -4205,10 +4220,8 @@ declare enum ActivityType {
|
|
|
4205
4220
|
CHARGEBACK_REVERSED = "CHARGEBACK_REVERSED"
|
|
4206
4221
|
}
|
|
4207
4222
|
/** @enumType */
|
|
4208
|
-
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' | '
|
|
4223
|
+
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';
|
|
4209
4224
|
declare enum OrderActivityTypeEnumActivityType {
|
|
4210
|
-
/** Default value. This value is unused. */
|
|
4211
|
-
UNKNOWN_ACTIVITY_TYPE = "UNKNOWN_ACTIVITY_TYPE",
|
|
4212
4225
|
/** New order was created and placed. */
|
|
4213
4226
|
ORDER_PLACED = "ORDER_PLACED",
|
|
4214
4227
|
/** Order payment was completed and confirmed. */
|
|
@@ -4243,14 +4256,8 @@ declare enum OrderActivityTypeEnumActivityType {
|
|
|
4243
4256
|
EMAIL_EDITED = "EMAIL_EDITED",
|
|
4244
4257
|
/** Email notification for pickup readiness was sent. */
|
|
4245
4258
|
PICKUP_READY_EMAIL_SENT = "PICKUP_READY_EMAIL_SENT",
|
|
4246
|
-
/** Custom activity created by a third-party application. */
|
|
4247
|
-
CUSTOM_ACTIVITY = "CUSTOM_ACTIVITY",
|
|
4248
4259
|
/** Comment added to the order by a merchant. */
|
|
4249
4260
|
MERCHANT_COMMENT = "MERCHANT_COMMENT",
|
|
4250
|
-
/** Order was created as a result of an exchange. */
|
|
4251
|
-
ORDER_CREATED_FROM_EXCHANGE = "ORDER_CREATED_FROM_EXCHANGE",
|
|
4252
|
-
/** New exchange order was created from this order. */
|
|
4253
|
-
NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
|
|
4254
4261
|
/** Partial payment was received for the order. */
|
|
4255
4262
|
ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
|
|
4256
4263
|
/** Changes were applied to a draft order. */
|
|
@@ -4341,7 +4348,7 @@ declare enum OrderActivityTypeEnumActivityType {
|
|
|
4341
4348
|
ORDER_REFUNDED = "ORDER_REFUNDED"
|
|
4342
4349
|
}
|
|
4343
4350
|
/** @enumType */
|
|
4344
|
-
type OrderActivityTypeEnumActivityTypeWithLiterals = OrderActivityTypeEnumActivityType | '
|
|
4351
|
+
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';
|
|
4345
4352
|
declare enum AttributionSource {
|
|
4346
4353
|
UNSPECIFIED = "UNSPECIFIED",
|
|
4347
4354
|
FACEBOOK_ADS = "FACEBOOK_ADS"
|
|
@@ -6243,7 +6250,7 @@ type DraftOrderQuery = {
|
|
|
6243
6250
|
declare const utils: {
|
|
6244
6251
|
query: {
|
|
6245
6252
|
QueryBuilder: () => _wix_sdk_types.QueryBuilder<DraftOrder, DraftOrderQuerySpec, DraftOrderQuery>;
|
|
6246
|
-
Filter: _wix_sdk_types.FilterFactory<DraftOrder, DraftOrderQuerySpec>;
|
|
6253
|
+
Filter: _wix_sdk_types.FilterFactory<DraftOrder, DraftOrderQuerySpec>; /** Discount details. */
|
|
6247
6254
|
Sort: _wix_sdk_types.SortFactory<DraftOrderQuerySpec>;
|
|
6248
6255
|
};
|
|
6249
6256
|
};
|
|
@@ -6312,4 +6319,4 @@ interface SetBusinessLocationOptions {
|
|
|
6312
6319
|
businessLocation?: Location;
|
|
6313
6320
|
}
|
|
6314
6321
|
|
|
6315
|
-
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, setDeposit, setDiscounts, setRecipientInfo, setShippingInfo, setTaxExemption, typedQueryDraftOrders, updateExtendedFields, updateLineItems, utils };
|
|
6322
|
+
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, setDeposit, setDiscounts, setRecipientInfo, setShippingInfo, setTaxExemption, typedQueryDraftOrders, updateExtendedFields, updateLineItems, utils };
|
|
@@ -3365,13 +3365,11 @@ var SubscriptionFrequency = /* @__PURE__ */ ((SubscriptionFrequency2) => {
|
|
|
3365
3365
|
return SubscriptionFrequency2;
|
|
3366
3366
|
})(SubscriptionFrequency || {});
|
|
3367
3367
|
var AdjustmentType = /* @__PURE__ */ ((AdjustmentType2) => {
|
|
3368
|
-
AdjustmentType2["UNKNOWN_ADJUSTMENT_TYPE"] = "UNKNOWN_ADJUSTMENT_TYPE";
|
|
3369
3368
|
AdjustmentType2["EXTRA_CHARGE"] = "EXTRA_CHARGE";
|
|
3370
3369
|
AdjustmentType2["CREDIT"] = "CREDIT";
|
|
3371
3370
|
return AdjustmentType2;
|
|
3372
3371
|
})(AdjustmentType || {});
|
|
3373
3372
|
var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
|
|
3374
|
-
TaxableAddressType2["UNKNOWN_TAXABLE_ADDRESS"] = "UNKNOWN_TAXABLE_ADDRESS";
|
|
3375
3373
|
TaxableAddressType2["BUSINESS"] = "BUSINESS";
|
|
3376
3374
|
TaxableAddressType2["BILLING"] = "BILLING";
|
|
3377
3375
|
TaxableAddressType2["SHIPPING"] = "SHIPPING";
|
|
@@ -3384,13 +3382,11 @@ var VatType = /* @__PURE__ */ ((VatType2) => {
|
|
|
3384
3382
|
return VatType2;
|
|
3385
3383
|
})(VatType || {});
|
|
3386
3384
|
var PickupDetailsPickupMethod = /* @__PURE__ */ ((PickupDetailsPickupMethod2) => {
|
|
3387
|
-
PickupDetailsPickupMethod2["UNKNOWN_METHOD"] = "UNKNOWN_METHOD";
|
|
3388
3385
|
PickupDetailsPickupMethod2["STORE_PICKUP"] = "STORE_PICKUP";
|
|
3389
3386
|
PickupDetailsPickupMethod2["PICKUP_POINT"] = "PICKUP_POINT";
|
|
3390
3387
|
return PickupDetailsPickupMethod2;
|
|
3391
3388
|
})(PickupDetailsPickupMethod || {});
|
|
3392
3389
|
var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
|
|
3393
|
-
AdditionalFeeSource2["UNKNOWN_ADDITIONAL_FEE_SOURCE"] = "UNKNOWN_ADDITIONAL_FEE_SOURCE";
|
|
3394
3390
|
AdditionalFeeSource2["SERVICE_PLUGIN"] = "SERVICE_PLUGIN";
|
|
3395
3391
|
AdditionalFeeSource2["ITEM"] = "ITEM";
|
|
3396
3392
|
AdditionalFeeSource2["MANUAL"] = "MANUAL";
|
|
@@ -3428,7 +3424,6 @@ var WeightUnit = /* @__PURE__ */ ((WeightUnit2) => {
|
|
|
3428
3424
|
return WeightUnit2;
|
|
3429
3425
|
})(WeightUnit || {});
|
|
3430
3426
|
var ChargeType = /* @__PURE__ */ ((ChargeType2) => {
|
|
3431
|
-
ChargeType2["UNKNOWN_CHARGE_TYPE"] = "UNKNOWN_CHARGE_TYPE";
|
|
3432
3427
|
ChargeType2["PASS_ON"] = "PASS_ON";
|
|
3433
3428
|
ChargeType2["ABSORBED"] = "ABSORBED";
|
|
3434
3429
|
return ChargeType2;
|
|
@@ -3444,14 +3439,12 @@ var FileType = /* @__PURE__ */ ((FileType2) => {
|
|
|
3444
3439
|
return FileType2;
|
|
3445
3440
|
})(FileType || {});
|
|
3446
3441
|
var DiscountType = /* @__PURE__ */ ((DiscountType2) => {
|
|
3447
|
-
DiscountType2["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
3448
3442
|
DiscountType2["GLOBAL"] = "GLOBAL";
|
|
3449
3443
|
DiscountType2["SPECIFIC_ITEMS"] = "SPECIFIC_ITEMS";
|
|
3450
3444
|
DiscountType2["SHIPPING"] = "SHIPPING";
|
|
3451
3445
|
return DiscountType2;
|
|
3452
3446
|
})(DiscountType || {});
|
|
3453
3447
|
var PickupMethod = /* @__PURE__ */ ((PickupMethod2) => {
|
|
3454
|
-
PickupMethod2["UNKNOWN_METHOD"] = "UNKNOWN_METHOD";
|
|
3455
3448
|
PickupMethod2["STORE_PICKUP"] = "STORE_PICKUP";
|
|
3456
3449
|
PickupMethod2["PICKUP_POINT"] = "PICKUP_POINT";
|
|
3457
3450
|
return PickupMethod2;
|
|
@@ -3481,7 +3474,6 @@ var RuleType = /* @__PURE__ */ ((RuleType2) => {
|
|
|
3481
3474
|
return RuleType2;
|
|
3482
3475
|
})(RuleType || {});
|
|
3483
3476
|
var NonDraftableReason = /* @__PURE__ */ ((NonDraftableReason2) => {
|
|
3484
|
-
NonDraftableReason2["UNSPECIFIED"] = "UNSPECIFIED";
|
|
3485
3477
|
NonDraftableReason2["PARTIALLY_OR_FULLY_REFUNDED"] = "PARTIALLY_OR_FULLY_REFUNDED";
|
|
3486
3478
|
NonDraftableReason2["UNSUPPORTED_CHANNEL_TYPE"] = "UNSUPPORTED_CHANNEL_TYPE";
|
|
3487
3479
|
NonDraftableReason2["ORDER_STATUS_IS_NOT_SUPPORTED"] = "ORDER_STATUS_IS_NOT_SUPPORTED";
|
|
@@ -3544,8 +3536,6 @@ var ActivityType = /* @__PURE__ */ ((ActivityType2) => {
|
|
|
3544
3536
|
ActivityType2["PICKUP_READY_EMAIL_SENT"] = "PICKUP_READY_EMAIL_SENT";
|
|
3545
3537
|
ActivityType2["CUSTOM_ACTIVITY"] = "CUSTOM_ACTIVITY";
|
|
3546
3538
|
ActivityType2["MERCHANT_COMMENT"] = "MERCHANT_COMMENT";
|
|
3547
|
-
ActivityType2["ORDER_CREATED_FROM_EXCHANGE"] = "ORDER_CREATED_FROM_EXCHANGE";
|
|
3548
|
-
ActivityType2["NEW_EXCHANGE_ORDER_CREATED"] = "NEW_EXCHANGE_ORDER_CREATED";
|
|
3549
3539
|
ActivityType2["ORDER_PARTIALLY_PAID"] = "ORDER_PARTIALLY_PAID";
|
|
3550
3540
|
ActivityType2["DRAFT_ORDER_CHANGES_APPLIED"] = "DRAFT_ORDER_CHANGES_APPLIED";
|
|
3551
3541
|
ActivityType2["SAVED_PAYMENT_METHOD"] = "SAVED_PAYMENT_METHOD";
|
|
@@ -3568,7 +3558,6 @@ var ActivityType = /* @__PURE__ */ ((ActivityType2) => {
|
|
|
3568
3558
|
return ActivityType2;
|
|
3569
3559
|
})(ActivityType || {});
|
|
3570
3560
|
var OrderActivityTypeEnumActivityType = /* @__PURE__ */ ((OrderActivityTypeEnumActivityType2) => {
|
|
3571
|
-
OrderActivityTypeEnumActivityType2["UNKNOWN_ACTIVITY_TYPE"] = "UNKNOWN_ACTIVITY_TYPE";
|
|
3572
3561
|
OrderActivityTypeEnumActivityType2["ORDER_PLACED"] = "ORDER_PLACED";
|
|
3573
3562
|
OrderActivityTypeEnumActivityType2["ORDER_PAID"] = "ORDER_PAID";
|
|
3574
3563
|
OrderActivityTypeEnumActivityType2["ORDER_FULFILLED"] = "ORDER_FULFILLED";
|
|
@@ -3586,10 +3575,7 @@ var OrderActivityTypeEnumActivityType = /* @__PURE__ */ ((OrderActivityTypeEnumA
|
|
|
3586
3575
|
OrderActivityTypeEnumActivityType2["SHIPPING_ADDRESS_EDITED"] = "SHIPPING_ADDRESS_EDITED";
|
|
3587
3576
|
OrderActivityTypeEnumActivityType2["EMAIL_EDITED"] = "EMAIL_EDITED";
|
|
3588
3577
|
OrderActivityTypeEnumActivityType2["PICKUP_READY_EMAIL_SENT"] = "PICKUP_READY_EMAIL_SENT";
|
|
3589
|
-
OrderActivityTypeEnumActivityType2["CUSTOM_ACTIVITY"] = "CUSTOM_ACTIVITY";
|
|
3590
3578
|
OrderActivityTypeEnumActivityType2["MERCHANT_COMMENT"] = "MERCHANT_COMMENT";
|
|
3591
|
-
OrderActivityTypeEnumActivityType2["ORDER_CREATED_FROM_EXCHANGE"] = "ORDER_CREATED_FROM_EXCHANGE";
|
|
3592
|
-
OrderActivityTypeEnumActivityType2["NEW_EXCHANGE_ORDER_CREATED"] = "NEW_EXCHANGE_ORDER_CREATED";
|
|
3593
3579
|
OrderActivityTypeEnumActivityType2["ORDER_PARTIALLY_PAID"] = "ORDER_PARTIALLY_PAID";
|
|
3594
3580
|
OrderActivityTypeEnumActivityType2["DRAFT_ORDER_CHANGES_APPLIED"] = "DRAFT_ORDER_CHANGES_APPLIED";
|
|
3595
3581
|
OrderActivityTypeEnumActivityType2["SAVED_PAYMENT_METHOD"] = "SAVED_PAYMENT_METHOD";
|