@wix/auto_sdk_ecom_orders 1.0.220 → 1.0.221

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.
Files changed (41) hide show
  1. package/build/cjs/{ecom-v1-order-orders.universal-BjvDnQO1.d.ts → ecom-v1-order-orders.universal-cW_bf4vG.d.ts} +17 -46
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +0 -21
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +0 -21
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +18 -47
  9. package/build/cjs/meta.js +0 -21
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-BjvDnQO1.d.mts → ecom-v1-order-orders.universal-cW_bf4vG.d.mts} +17 -46
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +0 -21
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +0 -21
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +18 -47
  19. package/build/es/meta.mjs +0 -21
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-lXc4bLyX.d.ts → ecom-v1-order-orders.universal-UePQMlea.d.ts} +17 -46
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +0 -21
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +0 -21
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +18 -47
  29. package/build/internal/cjs/meta.js +0 -21
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-lXc4bLyX.d.mts → ecom-v1-order-orders.universal-UePQMlea.d.mts} +17 -46
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +0 -21
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +0 -21
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +18 -47
  39. package/build/internal/es/meta.mjs +0 -21
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -775,14 +775,13 @@ interface BillingAdjustment {
775
775
  priceSummary?: BillingAdjustmentPriceSummary;
776
776
  }
777
777
  declare enum AdjustmentType {
778
- UNKNOWN_ADJUSTMENT_TYPE = "UNKNOWN_ADJUSTMENT_TYPE",
779
778
  /** Adjustment increases the total amount due to changes like covering extra billing days. Typically results in an additional fee. */
780
779
  EXTRA_CHARGE = "EXTRA_CHARGE",
781
780
  /** Adjustment reduces the total amount due to changes like covering fewer billing days. Typically results in a credit or discount. */
782
781
  CREDIT = "CREDIT"
783
782
  }
784
783
  /** @enumType */
785
- type AdjustmentTypeWithLiterals = AdjustmentType | 'UNKNOWN_ADJUSTMENT_TYPE' | 'EXTRA_CHARGE' | 'CREDIT';
784
+ type AdjustmentTypeWithLiterals = AdjustmentType | 'EXTRA_CHARGE' | 'CREDIT';
786
785
  interface BillingAdjustmentPriceSummary {
787
786
  /** Subtotal of adjustment, before tax. */
788
787
  subtotal?: Price;
@@ -843,13 +842,12 @@ interface TaxableAddressTaxableAddressDataOneOf {
843
842
  addressType?: TaxableAddressTypeWithLiterals;
844
843
  }
845
844
  declare enum TaxableAddressType {
846
- UNKNOWN_TAXABLE_ADDRESS = "UNKNOWN_TAXABLE_ADDRESS",
847
845
  BUSINESS = "BUSINESS",
848
846
  BILLING = "BILLING",
849
847
  SHIPPING = "SHIPPING"
850
848
  }
851
849
  /** @enumType */
852
- type TaxableAddressTypeWithLiterals = TaxableAddressType | 'UNKNOWN_TAXABLE_ADDRESS' | 'BUSINESS' | 'BILLING' | 'SHIPPING';
850
+ type TaxableAddressTypeWithLiterals = TaxableAddressType | 'BUSINESS' | 'BILLING' | 'SHIPPING';
853
851
  interface ExtendedFields {
854
852
  /**
855
853
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
@@ -1273,12 +1271,11 @@ interface PickupAddress {
1273
1271
  subdivisionFullname?: string | null;
1274
1272
  }
1275
1273
  declare enum PickupMethod {
1276
- UNKNOWN_METHOD = "UNKNOWN_METHOD",
1277
1274
  STORE_PICKUP = "STORE_PICKUP",
1278
1275
  PICKUP_POINT = "PICKUP_POINT"
1279
1276
  }
1280
1277
  /** @enumType */
1281
- type PickupMethodWithLiterals = PickupMethod | 'UNKNOWN_METHOD' | 'STORE_PICKUP' | 'PICKUP_POINT';
1278
+ type PickupMethodWithLiterals = PickupMethod | 'STORE_PICKUP' | 'PICKUP_POINT';
1282
1279
  interface DeliveryTimeSlot {
1283
1280
  /** Delivery slot starting time. */
1284
1281
  from?: Date | null;
@@ -2334,10 +2331,6 @@ declare enum ActivityType {
2334
2331
  CUSTOM_ACTIVITY = "CUSTOM_ACTIVITY",
2335
2332
  /** Comment added to the order by a merchant. */
2336
2333
  MERCHANT_COMMENT = "MERCHANT_COMMENT",
2337
- /** Order was created as a result of an exchange. */
2338
- ORDER_CREATED_FROM_EXCHANGE = "ORDER_CREATED_FROM_EXCHANGE",
2339
- /** New exchange order was created from this order. */
2340
- NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
2341
2334
  /** Partial payment was received for the order. */
2342
2335
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
2343
2336
  /** Changes were applied to a draft order. */
@@ -2426,10 +2419,8 @@ declare enum ActivityType {
2426
2419
  CHARGEBACK_REVERSED = "CHARGEBACK_REVERSED"
2427
2420
  }
2428
2421
  /** @enumType */
2429
- 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_CREATED_FROM_EXCHANGE' | 'NEW_EXCHANGE_ORDER_CREATED' | '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';
2422
+ 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';
2430
2423
  declare enum OrderActivityTypeEnumActivityType {
2431
- /** Default value. This value is unused. */
2432
- UNKNOWN_ACTIVITY_TYPE = "UNKNOWN_ACTIVITY_TYPE",
2433
2424
  /** New order was created and placed. */
2434
2425
  ORDER_PLACED = "ORDER_PLACED",
2435
2426
  /** Order payment was completed and confirmed. */
@@ -2464,14 +2455,8 @@ declare enum OrderActivityTypeEnumActivityType {
2464
2455
  EMAIL_EDITED = "EMAIL_EDITED",
2465
2456
  /** Email notification for pickup readiness was sent. */
2466
2457
  PICKUP_READY_EMAIL_SENT = "PICKUP_READY_EMAIL_SENT",
2467
- /** Custom activity created by a third-party application. */
2468
- CUSTOM_ACTIVITY = "CUSTOM_ACTIVITY",
2469
2458
  /** Comment added to the order by a merchant. */
2470
2459
  MERCHANT_COMMENT = "MERCHANT_COMMENT",
2471
- /** Order was created as a result of an exchange. */
2472
- ORDER_CREATED_FROM_EXCHANGE = "ORDER_CREATED_FROM_EXCHANGE",
2473
- /** New exchange order was created from this order. */
2474
- NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
2475
2460
  /** Partial payment was received for the order. */
2476
2461
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
2477
2462
  /** Changes were applied to a draft order. */
@@ -2562,7 +2547,7 @@ declare enum OrderActivityTypeEnumActivityType {
2562
2547
  ORDER_REFUNDED = "ORDER_REFUNDED"
2563
2548
  }
2564
2549
  /** @enumType */
2565
- type OrderActivityTypeEnumActivityTypeWithLiterals = OrderActivityTypeEnumActivityType | 'UNKNOWN_ACTIVITY_TYPE' | '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_CREATED_FROM_EXCHANGE' | 'NEW_EXCHANGE_ORDER_CREATED' | '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';
2550
+ 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';
2566
2551
  declare enum AttributionSource {
2567
2552
  UNSPECIFIED = "UNSPECIFIED",
2568
2553
  FACEBOOK_ADS = "FACEBOOK_ADS"
@@ -2815,7 +2800,6 @@ interface AdditionalFee {
2815
2800
  lineItemIds?: string[];
2816
2801
  }
2817
2802
  declare enum AdditionalFeeSource {
2818
- UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
2819
2803
  /** The additional fee was added by an additional fee service plugin. */
2820
2804
  SERVICE_PLUGIN = "SERVICE_PLUGIN",
2821
2805
  /** The additional fee was added to the item by a catalog or custom line item. */
@@ -2828,7 +2812,7 @@ declare enum AdditionalFeeSource {
2828
2812
  PLATFORM = "PLATFORM"
2829
2813
  }
2830
2814
  /** @enumType */
2831
- type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
2815
+ type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
2832
2816
  interface FulfillmentStatusesAggregate {
2833
2817
  /** Unique string values based on Fulfillment entities statuses */
2834
2818
  statuses?: string[] | null;
@@ -3059,7 +3043,6 @@ interface PlatformFee {
3059
3043
  percentageRate?: string;
3060
3044
  }
3061
3045
  declare enum ChargeType {
3062
- UNKNOWN_CHARGE_TYPE = "UNKNOWN_CHARGE_TYPE",
3063
3046
  /**
3064
3047
  * Platform fee passed on to buyer.
3065
3048
  *
@@ -3074,7 +3057,7 @@ declare enum ChargeType {
3074
3057
  ABSORBED = "ABSORBED"
3075
3058
  }
3076
3059
  /** @enumType */
3077
- type ChargeTypeWithLiterals = ChargeType | 'UNKNOWN_CHARGE_TYPE' | 'PASS_ON' | 'ABSORBED';
3060
+ type ChargeTypeWithLiterals = ChargeType | 'PASS_ON' | 'ABSORBED';
3078
3061
  /** Triggered when the order status changes to approved */
3079
3062
  interface OrderApproved {
3080
3063
  /** The order that was updated */
@@ -3291,8 +3274,6 @@ interface OrderLineItemChangedDetails {
3291
3274
  }
3292
3275
  /** Type of selected payment option for catalog item */
3293
3276
  declare enum DeltaPaymentOptionType {
3294
- /** Irrelevant */
3295
- UNKNOWN_PAYMENT_OPTION = "UNKNOWN_PAYMENT_OPTION",
3296
3277
  /** The entire payment for the given item will happen after checkout. */
3297
3278
  FULL_PAYMENT_OFFLINE = "FULL_PAYMENT_OFFLINE",
3298
3279
  /**
@@ -3302,7 +3283,7 @@ declare enum DeltaPaymentOptionType {
3302
3283
  MEMBERSHIP_OFFLINE = "MEMBERSHIP_OFFLINE"
3303
3284
  }
3304
3285
  /** @enumType */
3305
- type DeltaPaymentOptionTypeWithLiterals = DeltaPaymentOptionType | 'UNKNOWN_PAYMENT_OPTION' | 'FULL_PAYMENT_OFFLINE' | 'MEMBERSHIP_OFFLINE';
3286
+ type DeltaPaymentOptionTypeWithLiterals = DeltaPaymentOptionType | 'FULL_PAYMENT_OFFLINE' | 'MEMBERSHIP_OFFLINE';
3306
3287
  interface LineItemDelta extends LineItemDeltaDeltaOneOf {
3307
3288
  lineItemAdded?: boolean;
3308
3289
  changedDetails?: ItemChangedDetails;
@@ -4411,12 +4392,11 @@ interface AddToAutomationMigrationPopulationRequest {
4411
4392
  origin?: OriginWithLiterals;
4412
4393
  }
4413
4394
  declare enum Origin {
4414
- UNKNOWN_ORIGIN = "UNKNOWN_ORIGIN",
4415
4395
  OPT_IN = "OPT_IN",
4416
4396
  MIGRATION = "MIGRATION"
4417
4397
  }
4418
4398
  /** @enumType */
4419
- type OriginWithLiterals = Origin | 'UNKNOWN_ORIGIN' | 'OPT_IN' | 'MIGRATION';
4399
+ type OriginWithLiterals = Origin | 'OPT_IN' | 'MIGRATION';
4420
4400
  interface AddToAutomationMigrationPopulationResponse {
4421
4401
  success?: boolean;
4422
4402
  }
@@ -4481,14 +4461,13 @@ interface DelayedCaptureSettings {
4481
4461
  delayDuration?: Duration;
4482
4462
  }
4483
4463
  declare enum ScheduledAction {
4484
- UNSPECIFIED = "UNSPECIFIED",
4485
4464
  /** Whether payment will be auto-voided when duration passes */
4486
4465
  VOID = "VOID",
4487
4466
  /** Whether payment will be auto-captured when duration passes */
4488
4467
  CAPTURE = "CAPTURE"
4489
4468
  }
4490
4469
  /** @enumType */
4491
- type ScheduledActionWithLiterals = ScheduledAction | 'UNSPECIFIED' | 'VOID' | 'CAPTURE';
4470
+ type ScheduledActionWithLiterals = ScheduledAction | 'VOID' | 'CAPTURE';
4492
4471
  interface Duration {
4493
4472
  /**
4494
4473
  * Amount of units. For example, 30 MINUTES, 1 HOURS, 7 DAYS, etc
@@ -4499,13 +4478,12 @@ interface Duration {
4499
4478
  unit?: DurationUnitWithLiterals;
4500
4479
  }
4501
4480
  declare enum DurationUnit {
4502
- UNKNOWN_DURATION_UNIT = "UNKNOWN_DURATION_UNIT",
4503
4481
  MINUTES = "MINUTES",
4504
4482
  HOURS = "HOURS",
4505
4483
  DAYS = "DAYS"
4506
4484
  }
4507
4485
  /** @enumType */
4508
- type DurationUnitWithLiterals = DurationUnit | 'UNKNOWN_DURATION_UNIT' | 'MINUTES' | 'HOURS' | 'DAYS';
4486
+ type DurationUnitWithLiterals = DurationUnit | 'MINUTES' | 'HOURS' | 'DAYS';
4509
4487
  interface PreparePaymentCollectionResponse {
4510
4488
  /** Payment gateway order id which is associated with given payment */
4511
4489
  paymentGatewayOrderId?: string;
@@ -4578,8 +4556,6 @@ interface UserDefinedPaymentMethodNameKindOneOf {
4578
4556
  }
4579
4557
  /** Predefined payment method types for offline/manual payments. */
4580
4558
  declare enum PredefinedPaymentMethod {
4581
- /** Unknown payment method type. */
4582
- UNKNOWN_PREDEFINED_PAYMENT_METHOD = "UNKNOWN_PREDEFINED_PAYMENT_METHOD",
4583
4559
  /** Cash payment. */
4584
4560
  CASH = "CASH",
4585
4561
  /** Bank transfer. */
@@ -4588,7 +4564,7 @@ declare enum PredefinedPaymentMethod {
4588
4564
  CHECK = "CHECK"
4589
4565
  }
4590
4566
  /** @enumType */
4591
- type PredefinedPaymentMethodWithLiterals = PredefinedPaymentMethod | 'UNKNOWN_PREDEFINED_PAYMENT_METHOD' | 'CASH' | 'BANK_TRANSFER' | 'CHECK';
4567
+ type PredefinedPaymentMethodWithLiterals = PredefinedPaymentMethod | 'CASH' | 'BANK_TRANSFER' | 'CHECK';
4592
4568
  interface RecordManuallyCollectedPaymentResponse {
4593
4569
  }
4594
4570
  interface MarkOrderAsPaidRequest {
@@ -5105,7 +5081,6 @@ interface AuthorizationCapture {
5105
5081
  failureDetails?: AuthorizationActionFailureDetails;
5106
5082
  }
5107
5083
  declare enum AuthorizationCaptureStatus {
5108
- UNKNOWN_STATUS = "UNKNOWN_STATUS",
5109
5084
  /** Capture operation still in progress. */
5110
5085
  PENDING = "PENDING",
5111
5086
  /** Capture operation succeeded. */
@@ -5114,7 +5089,7 @@ declare enum AuthorizationCaptureStatus {
5114
5089
  FAILED = "FAILED"
5115
5090
  }
5116
5091
  /** @enumType */
5117
- type AuthorizationCaptureStatusWithLiterals = AuthorizationCaptureStatus | 'UNKNOWN_STATUS' | 'PENDING' | 'SUCCEEDED' | 'FAILED';
5092
+ type AuthorizationCaptureStatusWithLiterals = AuthorizationCaptureStatus | 'PENDING' | 'SUCCEEDED' | 'FAILED';
5118
5093
  interface AuthorizationActionFailureDetails {
5119
5094
  /** @maxLength 100 */
5120
5095
  failureCode?: string;
@@ -5130,7 +5105,6 @@ interface AuthorizationVoid {
5130
5105
  reason?: ReasonWithLiterals;
5131
5106
  }
5132
5107
  declare enum AuthorizationVoidStatus {
5133
- UNKNOWN_STATUS = "UNKNOWN_STATUS",
5134
5108
  /** Void operation still in progress. */
5135
5109
  PENDING = "PENDING",
5136
5110
  /** Void operation succeeded. */
@@ -5139,17 +5113,16 @@ declare enum AuthorizationVoidStatus {
5139
5113
  FAILED = "FAILED"
5140
5114
  }
5141
5115
  /** @enumType */
5142
- type AuthorizationVoidStatusWithLiterals = AuthorizationVoidStatus | 'UNKNOWN_STATUS' | 'PENDING' | 'SUCCEEDED' | 'FAILED';
5116
+ type AuthorizationVoidStatusWithLiterals = AuthorizationVoidStatus | 'PENDING' | 'SUCCEEDED' | 'FAILED';
5143
5117
  /** Reason the authorization was voided. */
5144
5118
  declare enum Reason {
5145
- UNKNOWN_REASON = "UNKNOWN_REASON",
5146
5119
  /** Authorization was voided by user. */
5147
5120
  MANUAL = "MANUAL",
5148
5121
  /** Authorization passed execution date. */
5149
5122
  SCHEDULED = "SCHEDULED"
5150
5123
  }
5151
5124
  /** @enumType */
5152
- type ReasonWithLiterals = Reason | 'UNKNOWN_REASON' | 'MANUAL' | 'SCHEDULED';
5125
+ type ReasonWithLiterals = Reason | 'MANUAL' | 'SCHEDULED';
5153
5126
  interface V1ScheduledAction {
5154
5127
  /** Type of the action. */
5155
5128
  actionType?: ActionTypeWithLiterals;
@@ -5157,12 +5130,11 @@ interface V1ScheduledAction {
5157
5130
  executionDate?: Date | null;
5158
5131
  }
5159
5132
  declare enum ActionType {
5160
- UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
5161
5133
  VOID = "VOID",
5162
5134
  CAPTURE = "CAPTURE"
5163
5135
  }
5164
5136
  /** @enumType */
5165
- type ActionTypeWithLiterals = ActionType | 'UNKNOWN_ACTION_TYPE' | 'VOID' | 'CAPTURE';
5137
+ type ActionTypeWithLiterals = ActionType | 'VOID' | 'CAPTURE';
5166
5138
  interface Chargeback {
5167
5139
  /**
5168
5140
  * Chargeback ID.
@@ -5208,14 +5180,13 @@ interface Chargeback {
5208
5180
  externalId?: string | null;
5209
5181
  }
5210
5182
  declare enum ChargebackStatus {
5211
- UNSPECIFIED = "UNSPECIFIED",
5212
5183
  /** Chargeback was approved. */
5213
5184
  APPROVED = "APPROVED",
5214
5185
  /** Chargeback was reversed. */
5215
5186
  REVERSED = "REVERSED"
5216
5187
  }
5217
5188
  /** @enumType */
5218
- type ChargebackStatusWithLiterals = ChargebackStatus | 'UNSPECIFIED' | 'APPROVED' | 'REVERSED';
5189
+ type ChargebackStatusWithLiterals = ChargebackStatus | 'APPROVED' | 'REVERSED';
5219
5190
  interface PaymentMethodName {
5220
5191
  /**
5221
5192
  * Translated payment method name in buyer language.
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderCanceledEnvelope, u as OrderCommittedEnvelope, v as OrderCreatedEnvelope, w as OrderFulfilledEnvelope, x as OrderPaymentStatusUpdatedEnvelope, y as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-BjvDnQO1.js';
3
- export { du as AccountInfo, iX as AccountInfoMetadata, dq as ActionEvent, ar as ActionType, jU as ActionTypeWithLiterals, bG as Activity, bH as ActivityContentOneOf, _ as ActivityType, jr as ActivityTypeWithLiterals, hv as AddActivitiesRequest, hr as AddActivityRequest, hu as AddActivityResponse, h4 as AddInternalActivityRequest, hq as AddInternalActivityResponse, eM as AddToAutomationMigrationPopulationRequest, eN as AddToAutomationMigrationPopulationResponse, cE as AdditionalFee, d9 as AdditionalFeeDelta, da as AdditionalFeeDeltaDeltaOneOf, dX as AdditionalFeeRefund, a2 as AdditionalFeeSource, jv as AdditionalFeeSourceWithLiterals, bg as Address, it as AddressDescription, bi as AddressLocation, bf as AddressWithContact, H as AdjustmentType, jg as AdjustmentTypeWithLiterals, j8 as AggregateOrdersOptions, i3 as AggregateOrdersRequest, i4 as AggregateOrdersResponse, fJ as AggregatedRefundSummary, f3 as ApplicationError, bw as AppliedDiscount, d7 as AppliedDiscountDelta, d8 as AppliedDiscountDeltaDeltaOneOf, bx as AppliedDiscountDiscountSourceOneOf, gG as ArchiveOrderRequest, gH as ArchiveOrderResponse, ef as Asset, a0 as AttributionSource, jt as AttributionSourceWithLiterals, fw as AuthorizationActionFailureDetails, fv as AuthorizationCapture, ao as AuthorizationCaptureStatus, jR as AuthorizationCaptureStatusWithLiterals, fu as AuthorizationDetails, fx as AuthorizationVoid, ap as AuthorizationVoidStatus, jS as AuthorizationVoidStatusWithLiterals, c5 as AuthorizedPaymentCaptured, c4 as AuthorizedPaymentCreated, c6 as AuthorizedPaymentVoided, cC as Balance, cB as BalanceSummary, iV as BaseEventMetadata, iD as BigDecimalWrapper, b1 as BillingAdjustment, b2 as BillingAdjustmentPriceSummary, f4 as BulkActionMetadata, gK as BulkArchiveOrdersByFilterRequest, gL as BulkArchiveOrdersByFilterResponse, gI as BulkArchiveOrdersRequest, gJ as BulkArchiveOrdersResponse, iZ as BulkDeleteImportedOrdersOptions, dh as BulkDeleteImportedOrdersRequest, di as BulkDeleteImportedOrdersResponse, hM as BulkMarkAsFulfilledByFilterRequest, hN as BulkMarkAsFulfilledByFilterResponse, hK as BulkMarkAsFulfilledRequest, hL as BulkMarkAsFulfilledResponse, hS as BulkMarkAsUnfulfilledByFilterRequest, hT as BulkMarkAsUnfulfilledByFilterResponse, hQ as BulkMarkAsUnfulfilledRequest, hR as BulkMarkAsUnfulfilledResponse, e$ as BulkMarkOrdersAsPaidRequest, f0 as BulkMarkOrdersAsPaidResponse, f1 as BulkOrderResult, dB as BulkSendBuyerPickupConfirmationEmailsRequest, dC as BulkSendBuyerPickupConfirmationEmailsResponse, dF as BulkSendBuyerShippingConfirmationEmailsRequest, dG as BulkSendBuyerShippingConfirmationEmailsResponse, hU as BulkSetBusinessLocationRequest, hV as BulkSetBusinessLocationResponse, hW as BulkSetBusinessLocationResult, gQ as BulkUnArchiveOrdersByFilterRequest, gR as BulkUnArchiveOrdersByFilterResponse, gO as BulkUnArchiveOrdersRequest, gP as BulkUnArchiveOrdersResponse, i8 as BulkUpdateOrderTagsRequest, ib as BulkUpdateOrderTagsResult, gw as BulkUpdateOrdersRequest, bb as BuyerInfo, bc as BuyerInfoIdOneOf, gT as BuyerInfoUpdate, fN as CalculateRefundItemRequest, fP as CalculateRefundItemResponse, fM as CalculateRefundRequest, fO as CalculateRefundResponse, iN as CalculatedTax, iM as CalculatedTaxes, ik as Cancel, hF as CancelOrderRequest, fR as CaptureAuthorizedPaymentsRequest, cD as CashRounding, fF as CashRoundingDetails, aH as CatalogReference, cz as ChannelInfo, a1 as ChannelType, ju as ChannelTypeWithLiterals, j1 as ChargeMembershipsOptions, fc as ChargeMembershipsRequest, fg as ChargeMembershipsResponse, fS as ChargeSavedPaymentMethodRequest, fT as ChargeSavedPaymentMethodResponse, a5 as ChargeType, jy as ChargeTypeWithLiterals, fz as Chargeback, cv as ChargebackCreated, cw as ChargebackReversed, as as ChargebackStatus, jV as ChargebackStatusWithLiterals, fa as ChargedBy, aN as Color, gx as CommitDeltasRequest, gF as CommitDeltasResponse, d1 as CommittedDiffs, d2 as CommittedDiffsShippingUpdateInfoOneOf, iw as CommonAddress, ix as CommonAddressStreetOneOf, kb as CommonSearchWithEntityContext, iv as Company, ij as Complete, by as Coupon, gp as CreateOrderRequest, gt as CreateOrderResponse, f9 as CreatePaymentGatewayOrderRequest, fb as CreatePaymentGatewayOrderResponse, cx as CreatedBy, cy as CreatedByStringOneOf, ck as CreditCardDetails, ft as CreditCardPaymentMethodDetails, bd as CurrencyConversionDetails, gf as CursorPaging, go as CursorPagingMetadata, gm as CursorSearch, gn as CursorSearchPagingMethodOneOf, gi as Cursors, bI as CustomActivity, cM as CustomAllowedActions, cA as CustomField, aB as CustomFieldGroup, k2 as CustomFieldGroupWithLiterals, iS as CustomFieldValue, iq as Customer, i6 as DecrementData, i5 as DecrementItemsQuantityRequest, i7 as DecrementItemsQuantityResponse, eS as DelayedCaptureSettings, j7 as DeleteActivityIdentifiers, hy as DeleteActivityRequest, hz as DeleteActivityResponse, fZ as DeleteByFilterOperation, fY as DeleteByIdsOperation, ej as DeleteContext, ad as DeleteStatus, jG as DeleteStatusWithLiterals, bm as DeliveryLogistics, bn as DeliveryLogisticsAddressOneOf, bq as DeliveryTimeSlot, a6 as DeltaPaymentOptionType, jz as DeltaPaymentOptionTypeWithLiterals, iU as Deposit, aD as DepositType, k4 as DepositTypeWithLiterals, aI as DescriptionLine, aK as DescriptionLineDescriptionLineValueOneOf, aL as DescriptionLineName, D as DescriptionLineType, ja as DescriptionLineTypeWithLiterals, aJ as DescriptionLineValueOneOf, g6 as DiffmatokyPayload, aX as DigitalFile, aQ as Dimensions, z as DimensionsUnit, jb as DimensionsUnitWithLiterals, iK as Discount, iL as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jp as DiscountReasonWithLiterals, bB as DiscountRule, bC as DiscountRuleName, X as DiscountType, jo as DiscountTypeWithLiterals, dj as DomainEvent, dk as DomainEventBodyOneOf, hc as DownloadLinkSent, bO as DraftOrderChangesApplied, db as DraftOrderCommitSettings, gy as DraftOrderDiffs, gB as DraftOrderDiffsBillingUpdateInfoOneOf, gA as DraftOrderDiffsBuyerUpdateInfoOneOf, gC as DraftOrderDiffsRecipientUpdateInfoOneOf, gz as DraftOrderDiffsShippingUpdateInfoOneOf, eT as Duration, ag as DurationUnit, jJ as DurationUnitWithLiterals, eI as EditorlessAssigned, eJ as EditorlessUnassigned, ir as Email, hl as EmailEdited, ec as Empty, dl as EntityCreatedEvent, dp as EntityDeletedEvent, dn as EntityUpdatedEvent, g7 as ErrorInformation, iW as EventMetadata, b7 as ExtendedFields, cs as ExternalReceipt, fE as ExternalReceiptInfo, aO as FocalPoint, cP as FormIdentifier, cO as FormInfo, b0 as FreeTrialPeriod, hj as FulfillerEmailSent, L as FulfillmentStatus, c_ as FulfillmentStatusUpdated, jj as FulfillmentStatusWithLiterals, cF as FulfillmentStatusesAggregate, bj as FullAddressContactDetails, g8 as GetOrderRequest, g9 as GetOrderResponse, eU as GetPaymentCollectabilityStatusRequest, f5 as GetRefundabilityStatusRequest, f6 as GetRefundabilityStatusResponse, i1 as GetShipmentsRequest, i2 as GetShipmentsResponse, fB as GiftCardPaymentDetails, cb as GiftCardPaymentRefund, eK as HasCustomEmailConfigurationsRequest, eL as HasCustomEmailConfigurationsResponse, io as IdAndVersion, ds as IdentificationData, dt as IdentificationDataIdOneOf, dd as ImportOrderRequest, de as ImportOrderResponse, cY as ImportedOrderDeleted, h5 as InternalActivity, h6 as InternalActivityContentOneOf, fW as InternalDocument, f_ as InternalDocumentUpdateByFilterOperation, fX as InternalDocumentUpdateOperation, ga as InternalQueryOrdersRequest, gg as InternalQueryOrdersResponse, f$ as InternalUpdateExistingOperation, a7 as InventoryAction, jA as InventoryActionWithLiterals, dc as InventoryUpdateDetails, hh as InvoiceAdded, iA as InvoiceDates, iR as InvoiceDynamicPriceTotals, ip as InvoiceFields, hi as InvoiceSent, im as InvoiceSentEvent, aE as InvoiceStatus, k5 as InvoiceStatusWithLiterals, iP as InvoicesPayment, eO as IsInAutomationMigrationPopulationRequest, eP as IsInAutomationMigrationPopulationResponse, d3 as ItemChangedDetails, bE as ItemCombination, bF as ItemCombinationLineItem, f2 as ItemMetadata, ba as ItemModifier, aU as ItemTaxFullDetails, aR as ItemType, aS as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, jc as ItemTypePresetWithLiterals, iJ as ItemizedFee, J as JurisdictionType, je as JurisdictionTypeWithLiterals, iC as LineItem, b_ as LineItemAmount, bR as LineItemChanges, d5 as LineItemDelta, d6 as LineItemDeltaDeltaOneOf, bV as LineItemDescriptionLineChange, bD as LineItemDiscount, bN as LineItemExchangeData, iG as LineItemMetaData, bW as LineItemModifiersChange, bT as LineItemPriceChange, bU as LineItemProductNameChange, bS as LineItemQuantityChange, Z as LineItemQuantityChangeType, jq as LineItemQuantityChangeTypeWithLiterals, dW as LineItemRefund, fL as LineItemRefundSummary, iE as LineItemTax, aW as LineItemTaxBreakdown, aV as LineItemTaxInfo, hB as LineItemUpdate, iB as LineItems, iH as Locale, cI as Location, b4 as LocationAndQuantity, b$ as ManagedAdditionalFee, bY as ManagedDiscount, bX as ManagedLineItem, al as ManuallyRefundableReason, jO as ManuallyRefundableReasonWithLiterals, hI as MarkAsFulfilledRequest, hJ as MarkAsFulfilledResponse, hO as MarkAsUnfulfilledRequest, hP as MarkAsUnfulfilledResponse, eZ as MarkOrderAsPaidRequest, e_ as MarkOrderAsPaidResponse, hD as MarkOrderAsSeenByHumanRequest, hE as MarkOrderAsSeenByHumanResponse, h2 as MaskedOrderLineItem, fd as MembershipChargeItem, fe as MembershipName, fC as MembershipPaymentDetails, cc as MembershipPaymentRefund, at as MembershipPaymentStatus, jW as MembershipPaymentStatusWithLiterals, bJ as MerchantComment, bz as MerchantDiscount, bA as MerchantDiscountMerchantDiscountReasonOneOf, dr as MessageEnvelope, iQ as MetaData, ed as MetaSiteSpecialEvent, ee as MetaSiteSpecialEventPayloadOneOf, b8 as ModifierGroup, ac as Namespace, et as NamespaceChanged, jF as NamespaceWithLiterals, bM as NewExchangeOrderCreated, ak as NonRefundableReason, jN as NonRefundableReasonWithLiterals, ey as OdeditorAssigned, ez as OdeditorUnassigned, a3 as OrderActionType, jw as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, js as OrderActivityTypeEnumActivityTypeWithLiterals, ax as OrderApprovalStrategy, j_ as OrderApprovalStrategyWithLiterals, cS as OrderApproved, hb as OrderCanceled, c$ as OrderCanceledEventOrderCanceled, bP as OrderChange, bQ as OrderChangeValueOneOf, gs as OrderCreateNotifications, bL as OrderCreatedFromExchange, gq as OrderCreationSettings, gr as OrderCreationSettingsEditableByOneOf, d0 as OrderDeltasCommitted, h9 as OrderFulfilled, cX as OrderImported, cV as OrderItemsRestocked, aF as OrderLineItem, d4 as OrderLineItemChangedDetails, ha as OrderNotFulfilled, h8 as OrderPaid, hn as OrderPartiallyPaid, ho as OrderPending, h7 as OrderPlaced, bK as OrderRefunded, hp as OrderRejected, cU as OrderRejectedEventOrderRejected, j3 as OrderSearchSpec, cJ as OrderSettings, cK as OrderSettingsAllowedActionsOneOf, cL as OrderSettingsEditableByOneOf, R as OrderStatus, jn as OrderStatusWithLiterals, bv as OrderTaxBreakdown, bu as OrderTaxInfo, fn as OrderTransactions, cT as OrdersExperiments, ae as Origin, jH as OriginWithLiterals, cN as OwnerApps, fo as Payment, cl as PaymentCanceled, cm as PaymentCanceledPaymentDetailsOneOf, ah as PaymentCollectabilityStatus, jK as PaymentCollectabilityStatusWithLiterals, k8 as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, j0 as PaymentCollectionCreatePaymentGatewayOrderOptions, k7 as PaymentCollectionMarkOrderAsPaidApplicationErrors, i$ as PaymentCollectionMarkOrderAsPaidOptions, cn as PaymentDeclined, co as PaymentDeclinedPaymentDetailsOneOf, fA as PaymentMethodName, E as PaymentOptionType, jd as PaymentOptionTypeWithLiterals, fp as PaymentPaymentDetailsOneOf, cg as PaymentPending, ch as PaymentPendingPaymentDetailsOneOf, fq as PaymentReceiptInfoOneOf, fi as PaymentRefund, ce as PaymentRefundFailed, cd as PaymentRefunded, K as PaymentStatus, cZ as PaymentStatusUpdated, ji as PaymentStatusWithLiterals, iO as Payments, iu as Phone, aP as PhysicalProperties, eA as PicassoAssigned, eB as PicassoUnassigned, bp as PickupAddress, bo as PickupDetails, Q as PickupMethod, jm as PickupMethodWithLiterals, hm as PickupReadyEmailSent, ay as Placement, j$ as PlacementWithLiterals, aM as PlainTextValue, cR as PlatformFee, cQ as PlatformFeeSummary, ge as PlatformPaging, gh as PlatformPagingMetadata, gb as PlatformQuery, gc as PlatformQueryPagingMethodOneOf, ai as PredefinedPaymentMethod, jL as PredefinedPaymentMethodWithLiterals, eQ as PreparePaymentCollectionRequest, e4 as PreviewBuyerConfirmationEmailRequest, e5 as PreviewBuyerConfirmationEmailResponse, e2 as PreviewBuyerPaymentsReceivedEmailRequest, e3 as PreviewBuyerPaymentsReceivedEmailResponse, e6 as PreviewBuyerPickupConfirmationEmailRequest, e7 as PreviewBuyerPickupConfirmationEmailResponse, d_ as PreviewCancelEmailRequest, d$ as PreviewCancelEmailResponse, e0 as PreviewCancelRefundEmailRequest, e1 as PreviewCancelRefundEmailResponse, dR as PreviewEmailByTypeRequest, dS as PreviewEmailByTypeResponse, a9 as PreviewEmailType, jC as PreviewEmailTypeWithLiterals, dT as PreviewRefundEmailRequest, dZ as PreviewRefundEmailResponse, ea as PreviewResendDownloadLinksEmailRequest, eb as PreviewResendDownloadLinksEmailResponse, e8 as PreviewShippingConfirmationEmailRequest, e9 as PreviewShippingConfirmationEmailResponse, b3 as PriceDescription, be as PriceSummary, aG as ProductName, hs as PublicActivity, ht as PublicActivityContentOneOf, gj as QueryOrderRequest, gk as QueryOrderResponse, is as QuotesAddress, aq as Reason, jT as ReasonWithLiterals, cp as ReceiptCreated, cq as ReceiptCreatedReceiptInfoOneOf, ct as ReceiptSent, cu as ReceiptSentReceiptInfoOneOf, k6 as RecordManuallyCollectedPaymentApplicationErrors, i_ as RecordManuallyCollectedPaymentOptions, eV as RecordManuallyCollectedPaymentRequest, eY as RecordManuallyCollectedPaymentResponse, eR as RedirectUrls, fG as Refund, dU as RefundDetails, c7 as RefundInitiated, dV as RefundItem, fK as RefundItemsBreakdown, fj as RefundSideEffects, au as RefundStatus, fI as RefundStatusInfo, jX as RefundStatusWithLiterals, fH as RefundTransaction, f7 as Refundability, f8 as RefundabilityAdditionalRefundabilityInfoOneOf, aj as RefundableStatus, jM as RefundableStatusWithLiterals, cf as RefundedAsStoreCredit, c8 as RefundedPayment, c9 as RefundedPaymentKindOneOf, ci as RegularPayment, fr as RegularPaymentDetails, fs as RegularPaymentDetailsPaymentMethodDetailsOneOf, cj as RegularPaymentPaymentMethodDetailsOneOf, ca as RegularPaymentRefund, il as Reschedule, fk as RestockInfo, fl as RestockItem, aT as RestockLocation, am as RestockType, jP as RestockTypeWithLiterals, dm as RestoreInfo, c3 as SavedPaymentMethod, af as ScheduledAction, jI as ScheduledActionWithLiterals, gl as SearchOrdersRequest, dv as SendBuyerConfirmationEmailRequest, dw as SendBuyerConfirmationEmailResponse, dx as SendBuyerPaymentsReceivedEmailRequest, dy as SendBuyerPaymentsReceivedEmailResponse, dz as SendBuyerPickupConfirmationEmailRequest, dA as SendBuyerPickupConfirmationEmailResponse, dD as SendBuyerShippingConfirmationEmailRequest, dE as SendBuyerShippingConfirmationEmailResponse, dJ as SendCancelRefundEmailRequest, dK as SendCancelRefundEmailResponse, dN as SendFulfillmentEmailRequest, dO as SendFulfillmentEmailResponse, dH as SendMerchantOrderReceivedNotificationRequest, dI as SendMerchantOrderReceivedNotificationResponse, dP as SendMerchantOrderReceivedPushRequest, dQ as SendMerchantOrderReceivedPushResponse, ic as SendOrderUpdatedDomainEventRequest, id as SendOrderUpdatedDomainEventResponse, dL as SendRefundEmailRequest, dM as SendRefundEmailResponse, ff as ServiceProperties, ep as ServiceProvisioned, eq as ServiceRemoved, iY as SetOrderNumberCounterOptions, df as SetOrderNumberCounterRequest, dg as SetOrderNumberCounterResponse, hk as ShippingAddressEdited, hg as ShippingConfirmationEmailSent, c2 as ShippingInformation, c1 as ShippingInformationChange, br as ShippingPrice, dY as ShippingRefund, bs as ShippingRegion, eg as SiteCreated, ab as SiteCreatedContext, jE as SiteCreatedContextWithLiterals, ei as SiteDeleted, es as SiteHardDeleted, en as SiteMarkedAsTemplate, eo as SiteMarkedAsWixSite, el as SitePublished, ex as SitePurgedExternally, er as SiteRenamed, eh as SiteTransferred, ek as SiteUndeleted, em as SiteUnpublished, ew as SiteUrlChanged, aw as SortOrder, jZ as SortOrderWithLiterals, gd as Sorting, iF as Source, aA as SourceType, k1 as SourceTypeWithLiterals, a4 as SpecificItemsCouponBehavior, jx as SpecificItemsCouponBehaviorWithLiterals, iz as StandardDetails, aa as State, jD as StateWithLiterals, bh as StreetAddress, eu as StudioAssigned, eE as StudioTwoAssigned, eF as StudioTwoUnassigned, ev as StudioUnassigned, iy as Subdivision, az as SubdivisionType, k0 as SubdivisionTypeWithLiterals, a_ as SubscriptionDescription, F as SubscriptionFrequency, jf as SubscriptionFrequencyWithLiterals, aY as SubscriptionInfo, a$ as SubscriptionSettings, aZ as SubscriptionTitle, cH as TagList, cG as Tags, ia as TagsTagList, i9 as TagsTags, ie as Task, ih as TaskAction, ii as TaskActionActionOneOf, ig as TaskKey, bt as TaxSummary, b5 as TaxableAddress, b6 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, jh as TaxableAddressTypeWithLiterals, iI as TotalPrice, c0 as TotalPriceChange, hf as TrackingLinkAdded, hd as TrackingNumberAdded, he as TrackingNumberEdited, an as TransactionStatus, jQ as TransactionStatusWithLiterals, b9 as TranslatableString, bZ as TranslatedValue, k9 as TriggerRefundApplicationErrors, j2 as TriggerRefundOptions, fh as TriggerRefundRequest, fm as TriggerRefundResponse, g5 as TriggerReindexOrderRequest, g3 as TriggerReindexRequest, g4 as TriggerReindexResponse, gM as UnArchiveOrderRequest, gN as UnArchiveOrderResponse, j6 as UpdateActivityIdentifiers, hw as UpdateActivityRequest, hx as UpdateActivityResponse, gZ as UpdateBillingContactDetailsRequest, g_ as UpdateBillingContactDetailsResponse, gV as UpdateBuyerEmailRequest, gW as UpdateBuyerEmailResponse, gS as UpdateBuyerInfoRequest, gU as UpdateBuyerInfoResponse, fU as UpdateInternalDocumentsEvent, fV as UpdateInternalDocumentsEventOperationOneOf, hA as UpdateLineItemsDescriptionLinesRequest, hC as UpdateLineItemsDescriptionLinesResponse, j5 as UpdateOrderLineItem, j4 as UpdateOrderLineItemIdentifiers, g$ as UpdateOrderLineItemRequest, h0 as UpdateOrderLineItemResponse, h1 as UpdateOrderLineItemsRequest, h3 as UpdateOrderLineItemsResponse, gu as UpdateOrderRequest, gv as UpdateOrderResponse, gX as UpdateOrderShippingAddressRequest, gY as UpdateOrderShippingAddressResponse, ka as UpdateOrderStatusApplicationErrors, hG as UpdateOrderStatusRequest, hH as UpdateOrderStatusResponse, eW as UserDefinedPaymentMethodName, eX as UserDefinedPaymentMethodNameKindOneOf, eH as UserDomainMediaDisabled, eG as UserDomainMediaEnabled, hZ as V1BulkMarkOrdersAsPaidRequest, h_ as V1BulkMarkOrdersAsPaidResponse, h$ as V1CreatePaymentGatewayOrderRequest, i0 as V1CreatePaymentGatewayOrderResponse, gD as V1LineItemDelta, gE as V1LineItemDeltaDeltaOneOf, hX as V1MarkOrderAsPaidRequest, hY as V1MarkOrderAsPaidResponse, cW as V1RestockItem, fy as V1ScheduledAction, bl as V1ShippingInformation, iT as Value, aC as ValueType, k3 as ValueTypeWithLiterals, bk as VatId, N as VatType, jl as VatTypeWithLiterals, g1 as VersionedDeleteByIdsOperation, g2 as VersionedDocumentId, g0 as VersionedDocumentUpdateOperation, av as VersioningMode, jY as VersioningModeWithLiterals, fQ as VoidAuthorizedPaymentsRequest, a8 as WebhookIdentityType, jB as WebhookIdentityTypeWithLiterals, W as WeightUnit, jk as WeightUnitWithLiterals, cr as WixReceipt, fD as WixReceiptInfo, eC as WixelAssigned, eD as WixelUnassigned, j9 as utils } from './ecom-v1-order-orders.universal-BjvDnQO1.js';
2
+ import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderCanceledEnvelope, u as OrderCommittedEnvelope, v as OrderCreatedEnvelope, w as OrderFulfilledEnvelope, x as OrderPaymentStatusUpdatedEnvelope, y as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-cW_bf4vG.js';
3
+ export { du as AccountInfo, iX as AccountInfoMetadata, dq as ActionEvent, ar as ActionType, jU as ActionTypeWithLiterals, bG as Activity, bH as ActivityContentOneOf, _ as ActivityType, jr as ActivityTypeWithLiterals, hv as AddActivitiesRequest, hr as AddActivityRequest, hu as AddActivityResponse, h4 as AddInternalActivityRequest, hq as AddInternalActivityResponse, eM as AddToAutomationMigrationPopulationRequest, eN as AddToAutomationMigrationPopulationResponse, cE as AdditionalFee, d9 as AdditionalFeeDelta, da as AdditionalFeeDeltaDeltaOneOf, dX as AdditionalFeeRefund, a2 as AdditionalFeeSource, jv as AdditionalFeeSourceWithLiterals, bg as Address, it as AddressDescription, bi as AddressLocation, bf as AddressWithContact, H as AdjustmentType, jg as AdjustmentTypeWithLiterals, j8 as AggregateOrdersOptions, i3 as AggregateOrdersRequest, i4 as AggregateOrdersResponse, fJ as AggregatedRefundSummary, f3 as ApplicationError, bw as AppliedDiscount, d7 as AppliedDiscountDelta, d8 as AppliedDiscountDeltaDeltaOneOf, bx as AppliedDiscountDiscountSourceOneOf, gG as ArchiveOrderRequest, gH as ArchiveOrderResponse, ef as Asset, a0 as AttributionSource, jt as AttributionSourceWithLiterals, fw as AuthorizationActionFailureDetails, fv as AuthorizationCapture, ao as AuthorizationCaptureStatus, jR as AuthorizationCaptureStatusWithLiterals, fu as AuthorizationDetails, fx as AuthorizationVoid, ap as AuthorizationVoidStatus, jS as AuthorizationVoidStatusWithLiterals, c5 as AuthorizedPaymentCaptured, c4 as AuthorizedPaymentCreated, c6 as AuthorizedPaymentVoided, cC as Balance, cB as BalanceSummary, iV as BaseEventMetadata, iD as BigDecimalWrapper, b1 as BillingAdjustment, b2 as BillingAdjustmentPriceSummary, f4 as BulkActionMetadata, gK as BulkArchiveOrdersByFilterRequest, gL as BulkArchiveOrdersByFilterResponse, gI as BulkArchiveOrdersRequest, gJ as BulkArchiveOrdersResponse, iZ as BulkDeleteImportedOrdersOptions, dh as BulkDeleteImportedOrdersRequest, di as BulkDeleteImportedOrdersResponse, hM as BulkMarkAsFulfilledByFilterRequest, hN as BulkMarkAsFulfilledByFilterResponse, hK as BulkMarkAsFulfilledRequest, hL as BulkMarkAsFulfilledResponse, hS as BulkMarkAsUnfulfilledByFilterRequest, hT as BulkMarkAsUnfulfilledByFilterResponse, hQ as BulkMarkAsUnfulfilledRequest, hR as BulkMarkAsUnfulfilledResponse, e$ as BulkMarkOrdersAsPaidRequest, f0 as BulkMarkOrdersAsPaidResponse, f1 as BulkOrderResult, dB as BulkSendBuyerPickupConfirmationEmailsRequest, dC as BulkSendBuyerPickupConfirmationEmailsResponse, dF as BulkSendBuyerShippingConfirmationEmailsRequest, dG as BulkSendBuyerShippingConfirmationEmailsResponse, hU as BulkSetBusinessLocationRequest, hV as BulkSetBusinessLocationResponse, hW as BulkSetBusinessLocationResult, gQ as BulkUnArchiveOrdersByFilterRequest, gR as BulkUnArchiveOrdersByFilterResponse, gO as BulkUnArchiveOrdersRequest, gP as BulkUnArchiveOrdersResponse, i8 as BulkUpdateOrderTagsRequest, ib as BulkUpdateOrderTagsResult, gw as BulkUpdateOrdersRequest, bb as BuyerInfo, bc as BuyerInfoIdOneOf, gT as BuyerInfoUpdate, fN as CalculateRefundItemRequest, fP as CalculateRefundItemResponse, fM as CalculateRefundRequest, fO as CalculateRefundResponse, iN as CalculatedTax, iM as CalculatedTaxes, ik as Cancel, hF as CancelOrderRequest, fR as CaptureAuthorizedPaymentsRequest, cD as CashRounding, fF as CashRoundingDetails, aH as CatalogReference, cz as ChannelInfo, a1 as ChannelType, ju as ChannelTypeWithLiterals, j1 as ChargeMembershipsOptions, fc as ChargeMembershipsRequest, fg as ChargeMembershipsResponse, fS as ChargeSavedPaymentMethodRequest, fT as ChargeSavedPaymentMethodResponse, a5 as ChargeType, jy as ChargeTypeWithLiterals, fz as Chargeback, cv as ChargebackCreated, cw as ChargebackReversed, as as ChargebackStatus, jV as ChargebackStatusWithLiterals, fa as ChargedBy, aN as Color, gx as CommitDeltasRequest, gF as CommitDeltasResponse, d1 as CommittedDiffs, d2 as CommittedDiffsShippingUpdateInfoOneOf, iw as CommonAddress, ix as CommonAddressStreetOneOf, kb as CommonSearchWithEntityContext, iv as Company, ij as Complete, by as Coupon, gp as CreateOrderRequest, gt as CreateOrderResponse, f9 as CreatePaymentGatewayOrderRequest, fb as CreatePaymentGatewayOrderResponse, cx as CreatedBy, cy as CreatedByStringOneOf, ck as CreditCardDetails, ft as CreditCardPaymentMethodDetails, bd as CurrencyConversionDetails, gf as CursorPaging, go as CursorPagingMetadata, gm as CursorSearch, gn as CursorSearchPagingMethodOneOf, gi as Cursors, bI as CustomActivity, cM as CustomAllowedActions, cA as CustomField, aB as CustomFieldGroup, k2 as CustomFieldGroupWithLiterals, iS as CustomFieldValue, iq as Customer, i6 as DecrementData, i5 as DecrementItemsQuantityRequest, i7 as DecrementItemsQuantityResponse, eS as DelayedCaptureSettings, j7 as DeleteActivityIdentifiers, hy as DeleteActivityRequest, hz as DeleteActivityResponse, fZ as DeleteByFilterOperation, fY as DeleteByIdsOperation, ej as DeleteContext, ad as DeleteStatus, jG as DeleteStatusWithLiterals, bm as DeliveryLogistics, bn as DeliveryLogisticsAddressOneOf, bq as DeliveryTimeSlot, a6 as DeltaPaymentOptionType, jz as DeltaPaymentOptionTypeWithLiterals, iU as Deposit, aD as DepositType, k4 as DepositTypeWithLiterals, aI as DescriptionLine, aK as DescriptionLineDescriptionLineValueOneOf, aL as DescriptionLineName, D as DescriptionLineType, ja as DescriptionLineTypeWithLiterals, aJ as DescriptionLineValueOneOf, g6 as DiffmatokyPayload, aX as DigitalFile, aQ as Dimensions, z as DimensionsUnit, jb as DimensionsUnitWithLiterals, iK as Discount, iL as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jp as DiscountReasonWithLiterals, bB as DiscountRule, bC as DiscountRuleName, X as DiscountType, jo as DiscountTypeWithLiterals, dj as DomainEvent, dk as DomainEventBodyOneOf, hc as DownloadLinkSent, bO as DraftOrderChangesApplied, db as DraftOrderCommitSettings, gy as DraftOrderDiffs, gB as DraftOrderDiffsBillingUpdateInfoOneOf, gA as DraftOrderDiffsBuyerUpdateInfoOneOf, gC as DraftOrderDiffsRecipientUpdateInfoOneOf, gz as DraftOrderDiffsShippingUpdateInfoOneOf, eT as Duration, ag as DurationUnit, jJ as DurationUnitWithLiterals, eI as EditorlessAssigned, eJ as EditorlessUnassigned, ir as Email, hl as EmailEdited, ec as Empty, dl as EntityCreatedEvent, dp as EntityDeletedEvent, dn as EntityUpdatedEvent, g7 as ErrorInformation, iW as EventMetadata, b7 as ExtendedFields, cs as ExternalReceipt, fE as ExternalReceiptInfo, aO as FocalPoint, cP as FormIdentifier, cO as FormInfo, b0 as FreeTrialPeriod, hj as FulfillerEmailSent, L as FulfillmentStatus, c_ as FulfillmentStatusUpdated, jj as FulfillmentStatusWithLiterals, cF as FulfillmentStatusesAggregate, bj as FullAddressContactDetails, g8 as GetOrderRequest, g9 as GetOrderResponse, eU as GetPaymentCollectabilityStatusRequest, f5 as GetRefundabilityStatusRequest, f6 as GetRefundabilityStatusResponse, i1 as GetShipmentsRequest, i2 as GetShipmentsResponse, fB as GiftCardPaymentDetails, cb as GiftCardPaymentRefund, eK as HasCustomEmailConfigurationsRequest, eL as HasCustomEmailConfigurationsResponse, io as IdAndVersion, ds as IdentificationData, dt as IdentificationDataIdOneOf, dd as ImportOrderRequest, de as ImportOrderResponse, cY as ImportedOrderDeleted, h5 as InternalActivity, h6 as InternalActivityContentOneOf, fW as InternalDocument, f_ as InternalDocumentUpdateByFilterOperation, fX as InternalDocumentUpdateOperation, ga as InternalQueryOrdersRequest, gg as InternalQueryOrdersResponse, f$ as InternalUpdateExistingOperation, a7 as InventoryAction, jA as InventoryActionWithLiterals, dc as InventoryUpdateDetails, hh as InvoiceAdded, iA as InvoiceDates, iR as InvoiceDynamicPriceTotals, ip as InvoiceFields, hi as InvoiceSent, im as InvoiceSentEvent, aE as InvoiceStatus, k5 as InvoiceStatusWithLiterals, iP as InvoicesPayment, eO as IsInAutomationMigrationPopulationRequest, eP as IsInAutomationMigrationPopulationResponse, d3 as ItemChangedDetails, bE as ItemCombination, bF as ItemCombinationLineItem, f2 as ItemMetadata, ba as ItemModifier, aU as ItemTaxFullDetails, aR as ItemType, aS as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, jc as ItemTypePresetWithLiterals, iJ as ItemizedFee, J as JurisdictionType, je as JurisdictionTypeWithLiterals, iC as LineItem, b_ as LineItemAmount, bR as LineItemChanges, d5 as LineItemDelta, d6 as LineItemDeltaDeltaOneOf, bV as LineItemDescriptionLineChange, bD as LineItemDiscount, bN as LineItemExchangeData, iG as LineItemMetaData, bW as LineItemModifiersChange, bT as LineItemPriceChange, bU as LineItemProductNameChange, bS as LineItemQuantityChange, Z as LineItemQuantityChangeType, jq as LineItemQuantityChangeTypeWithLiterals, dW as LineItemRefund, fL as LineItemRefundSummary, iE as LineItemTax, aW as LineItemTaxBreakdown, aV as LineItemTaxInfo, hB as LineItemUpdate, iB as LineItems, iH as Locale, cI as Location, b4 as LocationAndQuantity, b$ as ManagedAdditionalFee, bY as ManagedDiscount, bX as ManagedLineItem, al as ManuallyRefundableReason, jO as ManuallyRefundableReasonWithLiterals, hI as MarkAsFulfilledRequest, hJ as MarkAsFulfilledResponse, hO as MarkAsUnfulfilledRequest, hP as MarkAsUnfulfilledResponse, eZ as MarkOrderAsPaidRequest, e_ as MarkOrderAsPaidResponse, hD as MarkOrderAsSeenByHumanRequest, hE as MarkOrderAsSeenByHumanResponse, h2 as MaskedOrderLineItem, fd as MembershipChargeItem, fe as MembershipName, fC as MembershipPaymentDetails, cc as MembershipPaymentRefund, at as MembershipPaymentStatus, jW as MembershipPaymentStatusWithLiterals, bJ as MerchantComment, bz as MerchantDiscount, bA as MerchantDiscountMerchantDiscountReasonOneOf, dr as MessageEnvelope, iQ as MetaData, ed as MetaSiteSpecialEvent, ee as MetaSiteSpecialEventPayloadOneOf, b8 as ModifierGroup, ac as Namespace, et as NamespaceChanged, jF as NamespaceWithLiterals, bM as NewExchangeOrderCreated, ak as NonRefundableReason, jN as NonRefundableReasonWithLiterals, ey as OdeditorAssigned, ez as OdeditorUnassigned, a3 as OrderActionType, jw as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, js as OrderActivityTypeEnumActivityTypeWithLiterals, ax as OrderApprovalStrategy, j_ as OrderApprovalStrategyWithLiterals, cS as OrderApproved, hb as OrderCanceled, c$ as OrderCanceledEventOrderCanceled, bP as OrderChange, bQ as OrderChangeValueOneOf, gs as OrderCreateNotifications, bL as OrderCreatedFromExchange, gq as OrderCreationSettings, gr as OrderCreationSettingsEditableByOneOf, d0 as OrderDeltasCommitted, h9 as OrderFulfilled, cX as OrderImported, cV as OrderItemsRestocked, aF as OrderLineItem, d4 as OrderLineItemChangedDetails, ha as OrderNotFulfilled, h8 as OrderPaid, hn as OrderPartiallyPaid, ho as OrderPending, h7 as OrderPlaced, bK as OrderRefunded, hp as OrderRejected, cU as OrderRejectedEventOrderRejected, j3 as OrderSearchSpec, cJ as OrderSettings, cK as OrderSettingsAllowedActionsOneOf, cL as OrderSettingsEditableByOneOf, R as OrderStatus, jn as OrderStatusWithLiterals, bv as OrderTaxBreakdown, bu as OrderTaxInfo, fn as OrderTransactions, cT as OrdersExperiments, ae as Origin, jH as OriginWithLiterals, cN as OwnerApps, fo as Payment, cl as PaymentCanceled, cm as PaymentCanceledPaymentDetailsOneOf, ah as PaymentCollectabilityStatus, jK as PaymentCollectabilityStatusWithLiterals, k8 as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, j0 as PaymentCollectionCreatePaymentGatewayOrderOptions, k7 as PaymentCollectionMarkOrderAsPaidApplicationErrors, i$ as PaymentCollectionMarkOrderAsPaidOptions, cn as PaymentDeclined, co as PaymentDeclinedPaymentDetailsOneOf, fA as PaymentMethodName, E as PaymentOptionType, jd as PaymentOptionTypeWithLiterals, fp as PaymentPaymentDetailsOneOf, cg as PaymentPending, ch as PaymentPendingPaymentDetailsOneOf, fq as PaymentReceiptInfoOneOf, fi as PaymentRefund, ce as PaymentRefundFailed, cd as PaymentRefunded, K as PaymentStatus, cZ as PaymentStatusUpdated, ji as PaymentStatusWithLiterals, iO as Payments, iu as Phone, aP as PhysicalProperties, eA as PicassoAssigned, eB as PicassoUnassigned, bp as PickupAddress, bo as PickupDetails, Q as PickupMethod, jm as PickupMethodWithLiterals, hm as PickupReadyEmailSent, ay as Placement, j$ as PlacementWithLiterals, aM as PlainTextValue, cR as PlatformFee, cQ as PlatformFeeSummary, ge as PlatformPaging, gh as PlatformPagingMetadata, gb as PlatformQuery, gc as PlatformQueryPagingMethodOneOf, ai as PredefinedPaymentMethod, jL as PredefinedPaymentMethodWithLiterals, eQ as PreparePaymentCollectionRequest, e4 as PreviewBuyerConfirmationEmailRequest, e5 as PreviewBuyerConfirmationEmailResponse, e2 as PreviewBuyerPaymentsReceivedEmailRequest, e3 as PreviewBuyerPaymentsReceivedEmailResponse, e6 as PreviewBuyerPickupConfirmationEmailRequest, e7 as PreviewBuyerPickupConfirmationEmailResponse, d_ as PreviewCancelEmailRequest, d$ as PreviewCancelEmailResponse, e0 as PreviewCancelRefundEmailRequest, e1 as PreviewCancelRefundEmailResponse, dR as PreviewEmailByTypeRequest, dS as PreviewEmailByTypeResponse, a9 as PreviewEmailType, jC as PreviewEmailTypeWithLiterals, dT as PreviewRefundEmailRequest, dZ as PreviewRefundEmailResponse, ea as PreviewResendDownloadLinksEmailRequest, eb as PreviewResendDownloadLinksEmailResponse, e8 as PreviewShippingConfirmationEmailRequest, e9 as PreviewShippingConfirmationEmailResponse, b3 as PriceDescription, be as PriceSummary, aG as ProductName, hs as PublicActivity, ht as PublicActivityContentOneOf, gj as QueryOrderRequest, gk as QueryOrderResponse, is as QuotesAddress, aq as Reason, jT as ReasonWithLiterals, cp as ReceiptCreated, cq as ReceiptCreatedReceiptInfoOneOf, ct as ReceiptSent, cu as ReceiptSentReceiptInfoOneOf, k6 as RecordManuallyCollectedPaymentApplicationErrors, i_ as RecordManuallyCollectedPaymentOptions, eV as RecordManuallyCollectedPaymentRequest, eY as RecordManuallyCollectedPaymentResponse, eR as RedirectUrls, fG as Refund, dU as RefundDetails, c7 as RefundInitiated, dV as RefundItem, fK as RefundItemsBreakdown, fj as RefundSideEffects, au as RefundStatus, fI as RefundStatusInfo, jX as RefundStatusWithLiterals, fH as RefundTransaction, f7 as Refundability, f8 as RefundabilityAdditionalRefundabilityInfoOneOf, aj as RefundableStatus, jM as RefundableStatusWithLiterals, cf as RefundedAsStoreCredit, c8 as RefundedPayment, c9 as RefundedPaymentKindOneOf, ci as RegularPayment, fr as RegularPaymentDetails, fs as RegularPaymentDetailsPaymentMethodDetailsOneOf, cj as RegularPaymentPaymentMethodDetailsOneOf, ca as RegularPaymentRefund, il as Reschedule, fk as RestockInfo, fl as RestockItem, aT as RestockLocation, am as RestockType, jP as RestockTypeWithLiterals, dm as RestoreInfo, c3 as SavedPaymentMethod, af as ScheduledAction, jI as ScheduledActionWithLiterals, gl as SearchOrdersRequest, dv as SendBuyerConfirmationEmailRequest, dw as SendBuyerConfirmationEmailResponse, dx as SendBuyerPaymentsReceivedEmailRequest, dy as SendBuyerPaymentsReceivedEmailResponse, dz as SendBuyerPickupConfirmationEmailRequest, dA as SendBuyerPickupConfirmationEmailResponse, dD as SendBuyerShippingConfirmationEmailRequest, dE as SendBuyerShippingConfirmationEmailResponse, dJ as SendCancelRefundEmailRequest, dK as SendCancelRefundEmailResponse, dN as SendFulfillmentEmailRequest, dO as SendFulfillmentEmailResponse, dH as SendMerchantOrderReceivedNotificationRequest, dI as SendMerchantOrderReceivedNotificationResponse, dP as SendMerchantOrderReceivedPushRequest, dQ as SendMerchantOrderReceivedPushResponse, ic as SendOrderUpdatedDomainEventRequest, id as SendOrderUpdatedDomainEventResponse, dL as SendRefundEmailRequest, dM as SendRefundEmailResponse, ff as ServiceProperties, ep as ServiceProvisioned, eq as ServiceRemoved, iY as SetOrderNumberCounterOptions, df as SetOrderNumberCounterRequest, dg as SetOrderNumberCounterResponse, hk as ShippingAddressEdited, hg as ShippingConfirmationEmailSent, c2 as ShippingInformation, c1 as ShippingInformationChange, br as ShippingPrice, dY as ShippingRefund, bs as ShippingRegion, eg as SiteCreated, ab as SiteCreatedContext, jE as SiteCreatedContextWithLiterals, ei as SiteDeleted, es as SiteHardDeleted, en as SiteMarkedAsTemplate, eo as SiteMarkedAsWixSite, el as SitePublished, ex as SitePurgedExternally, er as SiteRenamed, eh as SiteTransferred, ek as SiteUndeleted, em as SiteUnpublished, ew as SiteUrlChanged, aw as SortOrder, jZ as SortOrderWithLiterals, gd as Sorting, iF as Source, aA as SourceType, k1 as SourceTypeWithLiterals, a4 as SpecificItemsCouponBehavior, jx as SpecificItemsCouponBehaviorWithLiterals, iz as StandardDetails, aa as State, jD as StateWithLiterals, bh as StreetAddress, eu as StudioAssigned, eE as StudioTwoAssigned, eF as StudioTwoUnassigned, ev as StudioUnassigned, iy as Subdivision, az as SubdivisionType, k0 as SubdivisionTypeWithLiterals, a_ as SubscriptionDescription, F as SubscriptionFrequency, jf as SubscriptionFrequencyWithLiterals, aY as SubscriptionInfo, a$ as SubscriptionSettings, aZ as SubscriptionTitle, cH as TagList, cG as Tags, ia as TagsTagList, i9 as TagsTags, ie as Task, ih as TaskAction, ii as TaskActionActionOneOf, ig as TaskKey, bt as TaxSummary, b5 as TaxableAddress, b6 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, jh as TaxableAddressTypeWithLiterals, iI as TotalPrice, c0 as TotalPriceChange, hf as TrackingLinkAdded, hd as TrackingNumberAdded, he as TrackingNumberEdited, an as TransactionStatus, jQ as TransactionStatusWithLiterals, b9 as TranslatableString, bZ as TranslatedValue, k9 as TriggerRefundApplicationErrors, j2 as TriggerRefundOptions, fh as TriggerRefundRequest, fm as TriggerRefundResponse, g5 as TriggerReindexOrderRequest, g3 as TriggerReindexRequest, g4 as TriggerReindexResponse, gM as UnArchiveOrderRequest, gN as UnArchiveOrderResponse, j6 as UpdateActivityIdentifiers, hw as UpdateActivityRequest, hx as UpdateActivityResponse, gZ as UpdateBillingContactDetailsRequest, g_ as UpdateBillingContactDetailsResponse, gV as UpdateBuyerEmailRequest, gW as UpdateBuyerEmailResponse, gS as UpdateBuyerInfoRequest, gU as UpdateBuyerInfoResponse, fU as UpdateInternalDocumentsEvent, fV as UpdateInternalDocumentsEventOperationOneOf, hA as UpdateLineItemsDescriptionLinesRequest, hC as UpdateLineItemsDescriptionLinesResponse, j5 as UpdateOrderLineItem, j4 as UpdateOrderLineItemIdentifiers, g$ as UpdateOrderLineItemRequest, h0 as UpdateOrderLineItemResponse, h1 as UpdateOrderLineItemsRequest, h3 as UpdateOrderLineItemsResponse, gu as UpdateOrderRequest, gv as UpdateOrderResponse, gX as UpdateOrderShippingAddressRequest, gY as UpdateOrderShippingAddressResponse, ka as UpdateOrderStatusApplicationErrors, hG as UpdateOrderStatusRequest, hH as UpdateOrderStatusResponse, eW as UserDefinedPaymentMethodName, eX as UserDefinedPaymentMethodNameKindOneOf, eH as UserDomainMediaDisabled, eG as UserDomainMediaEnabled, hZ as V1BulkMarkOrdersAsPaidRequest, h_ as V1BulkMarkOrdersAsPaidResponse, h$ as V1CreatePaymentGatewayOrderRequest, i0 as V1CreatePaymentGatewayOrderResponse, gD as V1LineItemDelta, gE as V1LineItemDeltaDeltaOneOf, hX as V1MarkOrderAsPaidRequest, hY as V1MarkOrderAsPaidResponse, cW as V1RestockItem, fy as V1ScheduledAction, bl as V1ShippingInformation, iT as Value, aC as ValueType, k3 as ValueTypeWithLiterals, bk as VatId, N as VatType, jl as VatTypeWithLiterals, g1 as VersionedDeleteByIdsOperation, g2 as VersionedDocumentId, g0 as VersionedDocumentUpdateOperation, av as VersioningMode, jY as VersioningModeWithLiterals, fQ as VoidAuthorizedPaymentsRequest, a8 as WebhookIdentityType, jB as WebhookIdentityTypeWithLiterals, W as WeightUnit, jk as WeightUnitWithLiterals, cr as WixReceipt, fD as WixReceiptInfo, eC as WixelAssigned, eD as WixelUnassigned, j9 as utils } from './ecom-v1-order-orders.universal-cW_bf4vG.js';
4
4
 
5
5
  declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
6
6
  interface PreparePaymentCollectionSignature {
@@ -1843,13 +1843,11 @@ var SubscriptionFrequency = /* @__PURE__ */ ((SubscriptionFrequency2) => {
1843
1843
  return SubscriptionFrequency2;
1844
1844
  })(SubscriptionFrequency || {});
1845
1845
  var AdjustmentType = /* @__PURE__ */ ((AdjustmentType2) => {
1846
- AdjustmentType2["UNKNOWN_ADJUSTMENT_TYPE"] = "UNKNOWN_ADJUSTMENT_TYPE";
1847
1846
  AdjustmentType2["EXTRA_CHARGE"] = "EXTRA_CHARGE";
1848
1847
  AdjustmentType2["CREDIT"] = "CREDIT";
1849
1848
  return AdjustmentType2;
1850
1849
  })(AdjustmentType || {});
1851
1850
  var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
1852
- TaxableAddressType2["UNKNOWN_TAXABLE_ADDRESS"] = "UNKNOWN_TAXABLE_ADDRESS";
1853
1851
  TaxableAddressType2["BUSINESS"] = "BUSINESS";
1854
1852
  TaxableAddressType2["BILLING"] = "BILLING";
1855
1853
  TaxableAddressType2["SHIPPING"] = "SHIPPING";
@@ -1887,7 +1885,6 @@ var VatType = /* @__PURE__ */ ((VatType2) => {
1887
1885
  return VatType2;
1888
1886
  })(VatType || {});
1889
1887
  var PickupMethod = /* @__PURE__ */ ((PickupMethod2) => {
1890
- PickupMethod2["UNKNOWN_METHOD"] = "UNKNOWN_METHOD";
1891
1888
  PickupMethod2["STORE_PICKUP"] = "STORE_PICKUP";
1892
1889
  PickupMethod2["PICKUP_POINT"] = "PICKUP_POINT";
1893
1890
  return PickupMethod2;
@@ -1938,8 +1935,6 @@ var ActivityType = /* @__PURE__ */ ((ActivityType2) => {
1938
1935
  ActivityType2["PICKUP_READY_EMAIL_SENT"] = "PICKUP_READY_EMAIL_SENT";
1939
1936
  ActivityType2["CUSTOM_ACTIVITY"] = "CUSTOM_ACTIVITY";
1940
1937
  ActivityType2["MERCHANT_COMMENT"] = "MERCHANT_COMMENT";
1941
- ActivityType2["ORDER_CREATED_FROM_EXCHANGE"] = "ORDER_CREATED_FROM_EXCHANGE";
1942
- ActivityType2["NEW_EXCHANGE_ORDER_CREATED"] = "NEW_EXCHANGE_ORDER_CREATED";
1943
1938
  ActivityType2["ORDER_PARTIALLY_PAID"] = "ORDER_PARTIALLY_PAID";
1944
1939
  ActivityType2["DRAFT_ORDER_CHANGES_APPLIED"] = "DRAFT_ORDER_CHANGES_APPLIED";
1945
1940
  ActivityType2["SAVED_PAYMENT_METHOD"] = "SAVED_PAYMENT_METHOD";
@@ -1962,7 +1957,6 @@ var ActivityType = /* @__PURE__ */ ((ActivityType2) => {
1962
1957
  return ActivityType2;
1963
1958
  })(ActivityType || {});
1964
1959
  var OrderActivityTypeEnumActivityType = /* @__PURE__ */ ((OrderActivityTypeEnumActivityType2) => {
1965
- OrderActivityTypeEnumActivityType2["UNKNOWN_ACTIVITY_TYPE"] = "UNKNOWN_ACTIVITY_TYPE";
1966
1960
  OrderActivityTypeEnumActivityType2["ORDER_PLACED"] = "ORDER_PLACED";
1967
1961
  OrderActivityTypeEnumActivityType2["ORDER_PAID"] = "ORDER_PAID";
1968
1962
  OrderActivityTypeEnumActivityType2["ORDER_FULFILLED"] = "ORDER_FULFILLED";
@@ -1980,10 +1974,7 @@ var OrderActivityTypeEnumActivityType = /* @__PURE__ */ ((OrderActivityTypeEnumA
1980
1974
  OrderActivityTypeEnumActivityType2["SHIPPING_ADDRESS_EDITED"] = "SHIPPING_ADDRESS_EDITED";
1981
1975
  OrderActivityTypeEnumActivityType2["EMAIL_EDITED"] = "EMAIL_EDITED";
1982
1976
  OrderActivityTypeEnumActivityType2["PICKUP_READY_EMAIL_SENT"] = "PICKUP_READY_EMAIL_SENT";
1983
- OrderActivityTypeEnumActivityType2["CUSTOM_ACTIVITY"] = "CUSTOM_ACTIVITY";
1984
1977
  OrderActivityTypeEnumActivityType2["MERCHANT_COMMENT"] = "MERCHANT_COMMENT";
1985
- OrderActivityTypeEnumActivityType2["ORDER_CREATED_FROM_EXCHANGE"] = "ORDER_CREATED_FROM_EXCHANGE";
1986
- OrderActivityTypeEnumActivityType2["NEW_EXCHANGE_ORDER_CREATED"] = "NEW_EXCHANGE_ORDER_CREATED";
1987
1978
  OrderActivityTypeEnumActivityType2["ORDER_PARTIALLY_PAID"] = "ORDER_PARTIALLY_PAID";
1988
1979
  OrderActivityTypeEnumActivityType2["DRAFT_ORDER_CHANGES_APPLIED"] = "DRAFT_ORDER_CHANGES_APPLIED";
1989
1980
  OrderActivityTypeEnumActivityType2["SAVED_PAYMENT_METHOD"] = "SAVED_PAYMENT_METHOD";
@@ -2033,7 +2024,6 @@ var ChannelType = /* @__PURE__ */ ((ChannelType2) => {
2033
2024
  return ChannelType2;
2034
2025
  })(ChannelType || {});
2035
2026
  var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
2036
- AdditionalFeeSource2["UNKNOWN_ADDITIONAL_FEE_SOURCE"] = "UNKNOWN_ADDITIONAL_FEE_SOURCE";
2037
2027
  AdditionalFeeSource2["SERVICE_PLUGIN"] = "SERVICE_PLUGIN";
2038
2028
  AdditionalFeeSource2["ITEM"] = "ITEM";
2039
2029
  AdditionalFeeSource2["MANUAL"] = "MANUAL";
@@ -2066,13 +2056,11 @@ var SpecificItemsCouponBehavior = /* @__PURE__ */ ((SpecificItemsCouponBehavior2
2066
2056
  return SpecificItemsCouponBehavior2;
2067
2057
  })(SpecificItemsCouponBehavior || {});
2068
2058
  var ChargeType = /* @__PURE__ */ ((ChargeType2) => {
2069
- ChargeType2["UNKNOWN_CHARGE_TYPE"] = "UNKNOWN_CHARGE_TYPE";
2070
2059
  ChargeType2["PASS_ON"] = "PASS_ON";
2071
2060
  ChargeType2["ABSORBED"] = "ABSORBED";
2072
2061
  return ChargeType2;
2073
2062
  })(ChargeType || {});
2074
2063
  var DeltaPaymentOptionType = /* @__PURE__ */ ((DeltaPaymentOptionType2) => {
2075
- DeltaPaymentOptionType2["UNKNOWN_PAYMENT_OPTION"] = "UNKNOWN_PAYMENT_OPTION";
2076
2064
  DeltaPaymentOptionType2["FULL_PAYMENT_OFFLINE"] = "FULL_PAYMENT_OFFLINE";
2077
2065
  DeltaPaymentOptionType2["MEMBERSHIP_OFFLINE"] = "MEMBERSHIP_OFFLINE";
2078
2066
  return DeltaPaymentOptionType2;
@@ -2160,19 +2148,16 @@ var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
2160
2148
  return DeleteStatus2;
2161
2149
  })(DeleteStatus || {});
2162
2150
  var Origin = /* @__PURE__ */ ((Origin2) => {
2163
- Origin2["UNKNOWN_ORIGIN"] = "UNKNOWN_ORIGIN";
2164
2151
  Origin2["OPT_IN"] = "OPT_IN";
2165
2152
  Origin2["MIGRATION"] = "MIGRATION";
2166
2153
  return Origin2;
2167
2154
  })(Origin || {});
2168
2155
  var ScheduledAction = /* @__PURE__ */ ((ScheduledAction2) => {
2169
- ScheduledAction2["UNSPECIFIED"] = "UNSPECIFIED";
2170
2156
  ScheduledAction2["VOID"] = "VOID";
2171
2157
  ScheduledAction2["CAPTURE"] = "CAPTURE";
2172
2158
  return ScheduledAction2;
2173
2159
  })(ScheduledAction || {});
2174
2160
  var DurationUnit = /* @__PURE__ */ ((DurationUnit2) => {
2175
- DurationUnit2["UNKNOWN_DURATION_UNIT"] = "UNKNOWN_DURATION_UNIT";
2176
2161
  DurationUnit2["MINUTES"] = "MINUTES";
2177
2162
  DurationUnit2["HOURS"] = "HOURS";
2178
2163
  DurationUnit2["DAYS"] = "DAYS";
@@ -2191,7 +2176,6 @@ var PaymentCollectabilityStatus = /* @__PURE__ */ ((PaymentCollectabilityStatus2
2191
2176
  return PaymentCollectabilityStatus2;
2192
2177
  })(PaymentCollectabilityStatus || {});
2193
2178
  var PredefinedPaymentMethod = /* @__PURE__ */ ((PredefinedPaymentMethod2) => {
2194
- PredefinedPaymentMethod2["UNKNOWN_PREDEFINED_PAYMENT_METHOD"] = "UNKNOWN_PREDEFINED_PAYMENT_METHOD";
2195
2179
  PredefinedPaymentMethod2["CASH"] = "CASH";
2196
2180
  PredefinedPaymentMethod2["BANK_TRANSFER"] = "BANK_TRANSFER";
2197
2181
  PredefinedPaymentMethod2["CHECK"] = "CHECK";
@@ -2246,33 +2230,28 @@ var TransactionStatus = /* @__PURE__ */ ((TransactionStatus2) => {
2246
2230
  return TransactionStatus2;
2247
2231
  })(TransactionStatus || {});
2248
2232
  var AuthorizationCaptureStatus = /* @__PURE__ */ ((AuthorizationCaptureStatus2) => {
2249
- AuthorizationCaptureStatus2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
2250
2233
  AuthorizationCaptureStatus2["PENDING"] = "PENDING";
2251
2234
  AuthorizationCaptureStatus2["SUCCEEDED"] = "SUCCEEDED";
2252
2235
  AuthorizationCaptureStatus2["FAILED"] = "FAILED";
2253
2236
  return AuthorizationCaptureStatus2;
2254
2237
  })(AuthorizationCaptureStatus || {});
2255
2238
  var AuthorizationVoidStatus = /* @__PURE__ */ ((AuthorizationVoidStatus2) => {
2256
- AuthorizationVoidStatus2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
2257
2239
  AuthorizationVoidStatus2["PENDING"] = "PENDING";
2258
2240
  AuthorizationVoidStatus2["SUCCEEDED"] = "SUCCEEDED";
2259
2241
  AuthorizationVoidStatus2["FAILED"] = "FAILED";
2260
2242
  return AuthorizationVoidStatus2;
2261
2243
  })(AuthorizationVoidStatus || {});
2262
2244
  var Reason = /* @__PURE__ */ ((Reason2) => {
2263
- Reason2["UNKNOWN_REASON"] = "UNKNOWN_REASON";
2264
2245
  Reason2["MANUAL"] = "MANUAL";
2265
2246
  Reason2["SCHEDULED"] = "SCHEDULED";
2266
2247
  return Reason2;
2267
2248
  })(Reason || {});
2268
2249
  var ActionType = /* @__PURE__ */ ((ActionType2) => {
2269
- ActionType2["UNKNOWN_ACTION_TYPE"] = "UNKNOWN_ACTION_TYPE";
2270
2250
  ActionType2["VOID"] = "VOID";
2271
2251
  ActionType2["CAPTURE"] = "CAPTURE";
2272
2252
  return ActionType2;
2273
2253
  })(ActionType || {});
2274
2254
  var ChargebackStatus = /* @__PURE__ */ ((ChargebackStatus2) => {
2275
- ChargebackStatus2["UNSPECIFIED"] = "UNSPECIFIED";
2276
2255
  ChargebackStatus2["APPROVED"] = "APPROVED";
2277
2256
  ChargebackStatus2["REVERSED"] = "REVERSED";
2278
2257
  return ChargebackStatus2;