@wix/auto_sdk_ecom_orders 1.0.184 → 1.0.185

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-DrysmrGc.d.ts → ecom-v1-order-orders.universal-DWyiRjAz.d.ts} +167 -165
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +7 -6
  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 +7 -6
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +167 -165
  9. package/build/cjs/meta.js +7 -6
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-DrysmrGc.d.mts → ecom-v1-order-orders.universal-DWyiRjAz.d.mts} +167 -165
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +7 -6
  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 +7 -6
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +167 -165
  19. package/build/es/meta.mjs +7 -6
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-6fskA7sQ.d.ts → ecom-v1-order-orders.universal-DkHAlpEr.d.ts} +167 -165
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +7 -6
  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 +7 -6
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +167 -165
  29. package/build/internal/cjs/meta.js +7 -6
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-6fskA7sQ.d.mts → ecom-v1-order-orders.universal-DkHAlpEr.d.mts} +167 -165
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +7 -6
  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 +7 -6
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +167 -165
  39. package/build/internal/es/meta.mjs +7 -6
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -3232,6 +3232,168 @@ interface AccountInfo {
3232
3232
  */
3233
3233
  siteId?: string | null;
3234
3234
  }
3235
+ interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
3236
+ /** insert/update documents */
3237
+ update?: InternalDocumentUpdateOperation;
3238
+ /** delete by document ids */
3239
+ deleteByIds?: DeleteByIdsOperation;
3240
+ /** delete documents matching filter */
3241
+ deleteByFilter?: DeleteByFilterOperation;
3242
+ /** update internal documents matching filter */
3243
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
3244
+ /** update only existing documents */
3245
+ updateExisting?: InternalUpdateExistingOperation;
3246
+ /** insert/update documents with versioning */
3247
+ versionedUpdate?: VersionedDocumentUpdateOperation;
3248
+ /** delete by document ids with versioning */
3249
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3250
+ /**
3251
+ * type of the documents
3252
+ * @minLength 2
3253
+ */
3254
+ documentType?: string;
3255
+ /**
3256
+ * language of the documents (mandatory)
3257
+ * @minLength 2
3258
+ */
3259
+ language?: string | null;
3260
+ /**
3261
+ * one or more search documents
3262
+ * @deprecated
3263
+ */
3264
+ addDocuments?: InternalDocument[];
3265
+ /**
3266
+ * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
3267
+ * @deprecated
3268
+ */
3269
+ removeDocumentIds?: string[];
3270
+ /** id to pass to processing notification */
3271
+ correlationId?: string | null;
3272
+ /** when event was created / issued */
3273
+ issuedAt?: Date | null;
3274
+ }
3275
+ /** @oneof */
3276
+ interface UpdateInternalDocumentsEventOperationOneOf {
3277
+ /** insert/update documents */
3278
+ update?: InternalDocumentUpdateOperation;
3279
+ /** delete by document ids */
3280
+ deleteByIds?: DeleteByIdsOperation;
3281
+ /** delete documents matching filter */
3282
+ deleteByFilter?: DeleteByFilterOperation;
3283
+ /** update internal documents matching filter */
3284
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
3285
+ /** update only existing documents */
3286
+ updateExisting?: InternalUpdateExistingOperation;
3287
+ /** insert/update documents with versioning */
3288
+ versionedUpdate?: VersionedDocumentUpdateOperation;
3289
+ /** delete by document ids with versioning */
3290
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3291
+ }
3292
+ interface InternalDocument {
3293
+ /** document with mandatory fields (id) and with fields specific to the type of the document */
3294
+ document?: Record<string, any> | null;
3295
+ }
3296
+ interface InternalDocumentUpdateOperation {
3297
+ /** documents to index or update */
3298
+ documents?: InternalDocument[];
3299
+ }
3300
+ interface DeleteByIdsOperation {
3301
+ /** ids of the documents to delete */
3302
+ documentIds?: string[];
3303
+ /**
3304
+ * tenant id for custom tenancy strategy
3305
+ * @minLength 2
3306
+ * @maxLength 300
3307
+ */
3308
+ tenantId?: string | null;
3309
+ }
3310
+ interface DeleteByFilterOperation {
3311
+ /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
3312
+ filter?: Record<string, any> | null;
3313
+ /**
3314
+ * tenant id for custom tenancy strategy
3315
+ * @minLength 2
3316
+ * @maxLength 300
3317
+ */
3318
+ tenantId?: string | null;
3319
+ }
3320
+ interface InternalDocumentUpdateByFilterOperation {
3321
+ /** documents matching this filter will be updated */
3322
+ filter?: Record<string, any> | null;
3323
+ /** partial document to apply */
3324
+ document?: InternalDocument;
3325
+ /**
3326
+ * tenant id for custom tenancy strategy
3327
+ * @minLength 2
3328
+ * @maxLength 300
3329
+ */
3330
+ tenantId?: string | null;
3331
+ }
3332
+ interface InternalUpdateExistingOperation {
3333
+ /** documents to update */
3334
+ documents?: InternalDocument[];
3335
+ }
3336
+ interface VersionedDocumentUpdateOperation {
3337
+ /** documents to create or overwrite */
3338
+ documents?: InternalDocument[];
3339
+ /** versioning mode to use instead of default */
3340
+ versioningMode?: VersioningModeWithLiterals;
3341
+ }
3342
+ declare enum VersioningMode {
3343
+ /** use default versioning mode agreed with search team */
3344
+ DEFAULT = "DEFAULT",
3345
+ /** execute only if version is greater than existing */
3346
+ GREATER_THAN = "GREATER_THAN",
3347
+ /** execute only if version is greater or equal to existing */
3348
+ GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
3349
+ }
3350
+ /** @enumType */
3351
+ type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
3352
+ interface VersionedDeleteByIdsOperation {
3353
+ /** ids with version of the documents to delete */
3354
+ documentIds?: VersionedDocumentId[];
3355
+ /**
3356
+ * tenant id for custom tenancy strategy
3357
+ * @minLength 2
3358
+ * @maxLength 300
3359
+ */
3360
+ tenantId?: string | null;
3361
+ }
3362
+ interface VersionedDocumentId {
3363
+ /** document id */
3364
+ documentId?: string;
3365
+ /** document version */
3366
+ version?: string;
3367
+ /** versioning mode to use instead of default */
3368
+ versioningMode?: VersioningModeWithLiterals;
3369
+ }
3370
+ interface TriggerReindexRequest {
3371
+ /** @format GUID */
3372
+ metasiteId?: string;
3373
+ /**
3374
+ * @minLength 1
3375
+ * @maxLength 100
3376
+ * @maxSize 100
3377
+ */
3378
+ orderIds?: string[];
3379
+ }
3380
+ interface TriggerReindexResponse {
3381
+ }
3382
+ interface Empty {
3383
+ }
3384
+ interface BatchOfTriggerReindexOrderRequest {
3385
+ /** @maxSize 25 */
3386
+ requests?: TriggerReindexOrderRequest[];
3387
+ }
3388
+ interface TriggerReindexOrderRequest {
3389
+ /** @format GUID */
3390
+ metasiteId?: string;
3391
+ /**
3392
+ * @minLength 1
3393
+ * @maxLength 100
3394
+ */
3395
+ orderId?: string;
3396
+ }
3235
3397
  interface SendBuyerConfirmationEmailRequest {
3236
3398
  /** @format GUID */
3237
3399
  orderId?: string;
@@ -3524,8 +3686,6 @@ interface PreviewResendDownloadLinksEmailRequest {
3524
3686
  interface PreviewResendDownloadLinksEmailResponse {
3525
3687
  emailPreview?: string;
3526
3688
  }
3527
- interface Empty {
3528
- }
3529
3689
  interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
3530
3690
  /** Emitted on a meta site creation. */
3531
3691
  siteCreated?: SiteCreated;
@@ -3820,10 +3980,12 @@ declare enum Namespace {
3820
3980
  /** Wix Nano. */
3821
3981
  NANO = "NANO",
3822
3982
  /** Base44 headless sites. */
3823
- BASE44 = "BASE44"
3983
+ BASE44 = "BASE44",
3984
+ /** Wix Channels Sites */
3985
+ CHANNELS = "CHANNELS"
3824
3986
  }
3825
3987
  /** @enumType */
3826
- type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR' | 'TWINS' | 'NANO' | 'BASE44';
3988
+ type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR' | 'TWINS' | 'NANO' | 'BASE44' | 'CHANNELS';
3827
3989
  /** Site transferred to another user. */
3828
3990
  interface SiteTransferred {
3829
3991
  /**
@@ -5122,166 +5284,6 @@ interface ChargeSavedPaymentMethodResponse {
5122
5284
  /** Payment gateway's order ID (e.g Wix Payments) */
5123
5285
  paymentGatewayOrderId?: string;
5124
5286
  }
5125
- interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
5126
- /** insert/update documents */
5127
- update?: InternalDocumentUpdateOperation;
5128
- /** delete by document ids */
5129
- deleteByIds?: DeleteByIdsOperation;
5130
- /** delete documents matching filter */
5131
- deleteByFilter?: DeleteByFilterOperation;
5132
- /** update internal documents matching filter */
5133
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
5134
- /** update only existing documents */
5135
- updateExisting?: InternalUpdateExistingOperation;
5136
- /** insert/update documents with versioning */
5137
- versionedUpdate?: VersionedDocumentUpdateOperation;
5138
- /** delete by document ids with versioning */
5139
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
5140
- /**
5141
- * type of the documents
5142
- * @minLength 2
5143
- */
5144
- documentType?: string;
5145
- /**
5146
- * language of the documents (mandatory)
5147
- * @minLength 2
5148
- */
5149
- language?: string | null;
5150
- /**
5151
- * one or more search documents
5152
- * @deprecated
5153
- */
5154
- addDocuments?: InternalDocument[];
5155
- /**
5156
- * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
5157
- * @deprecated
5158
- */
5159
- removeDocumentIds?: string[];
5160
- /** id to pass to processing notification */
5161
- correlationId?: string | null;
5162
- /** when event was created / issued */
5163
- issuedAt?: Date | null;
5164
- }
5165
- /** @oneof */
5166
- interface UpdateInternalDocumentsEventOperationOneOf {
5167
- /** insert/update documents */
5168
- update?: InternalDocumentUpdateOperation;
5169
- /** delete by document ids */
5170
- deleteByIds?: DeleteByIdsOperation;
5171
- /** delete documents matching filter */
5172
- deleteByFilter?: DeleteByFilterOperation;
5173
- /** update internal documents matching filter */
5174
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
5175
- /** update only existing documents */
5176
- updateExisting?: InternalUpdateExistingOperation;
5177
- /** insert/update documents with versioning */
5178
- versionedUpdate?: VersionedDocumentUpdateOperation;
5179
- /** delete by document ids with versioning */
5180
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
5181
- }
5182
- interface InternalDocument {
5183
- /** document with mandatory fields (id) and with fields specific to the type of the document */
5184
- document?: Record<string, any> | null;
5185
- }
5186
- interface InternalDocumentUpdateOperation {
5187
- /** documents to index or update */
5188
- documents?: InternalDocument[];
5189
- }
5190
- interface DeleteByIdsOperation {
5191
- /** ids of the documents to delete */
5192
- documentIds?: string[];
5193
- /**
5194
- * tenant id for custom tenancy strategy
5195
- * @minLength 2
5196
- * @maxLength 300
5197
- */
5198
- tenantId?: string | null;
5199
- }
5200
- interface DeleteByFilterOperation {
5201
- /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
5202
- filter?: Record<string, any> | null;
5203
- /**
5204
- * tenant id for custom tenancy strategy
5205
- * @minLength 2
5206
- * @maxLength 300
5207
- */
5208
- tenantId?: string | null;
5209
- }
5210
- interface InternalDocumentUpdateByFilterOperation {
5211
- /** documents matching this filter will be updated */
5212
- filter?: Record<string, any> | null;
5213
- /** partial document to apply */
5214
- document?: InternalDocument;
5215
- /**
5216
- * tenant id for custom tenancy strategy
5217
- * @minLength 2
5218
- * @maxLength 300
5219
- */
5220
- tenantId?: string | null;
5221
- }
5222
- interface InternalUpdateExistingOperation {
5223
- /** documents to update */
5224
- documents?: InternalDocument[];
5225
- }
5226
- interface VersionedDocumentUpdateOperation {
5227
- /** documents to create or overwrite */
5228
- documents?: InternalDocument[];
5229
- /** versioning mode to use instead of default */
5230
- versioningMode?: VersioningModeWithLiterals;
5231
- }
5232
- declare enum VersioningMode {
5233
- /** use default versioning mode agreed with search team */
5234
- DEFAULT = "DEFAULT",
5235
- /** execute only if version is greater than existing */
5236
- GREATER_THAN = "GREATER_THAN",
5237
- /** execute only if version is greater or equal to existing */
5238
- GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
5239
- }
5240
- /** @enumType */
5241
- type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
5242
- interface VersionedDeleteByIdsOperation {
5243
- /** ids with version of the documents to delete */
5244
- documentIds?: VersionedDocumentId[];
5245
- /**
5246
- * tenant id for custom tenancy strategy
5247
- * @minLength 2
5248
- * @maxLength 300
5249
- */
5250
- tenantId?: string | null;
5251
- }
5252
- interface VersionedDocumentId {
5253
- /** document id */
5254
- documentId?: string;
5255
- /** document version */
5256
- version?: string;
5257
- /** versioning mode to use instead of default */
5258
- versioningMode?: VersioningModeWithLiterals;
5259
- }
5260
- interface TriggerReindexRequest {
5261
- /** @format GUID */
5262
- metasiteId?: string;
5263
- /**
5264
- * @minLength 1
5265
- * @maxLength 100
5266
- * @maxSize 100
5267
- */
5268
- orderIds?: string[];
5269
- }
5270
- interface TriggerReindexResponse {
5271
- }
5272
- interface BatchOfTriggerReindexOrderRequest {
5273
- /** @maxSize 25 */
5274
- requests?: TriggerReindexOrderRequest[];
5275
- }
5276
- interface TriggerReindexOrderRequest {
5277
- /** @format GUID */
5278
- metasiteId?: string;
5279
- /**
5280
- * @minLength 1
5281
- * @maxLength 100
5282
- */
5283
- orderId?: string;
5284
- }
5285
5287
  interface DiffmatokyPayload {
5286
5288
  left?: string;
5287
5289
  right?: string;
@@ -8399,4 +8401,4 @@ interface BulkUpdateOrderTagsOptions {
8399
8401
  unassignTags?: Tags;
8400
8402
  }
8401
8403
 
8402
- export { AdditionalFeeSource as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentStatus as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, VatType as H, ItemTypePreset as I, JurisdictionType as J, PickupMethod as K, OrderStatus as L, type MaskedOrder as M, DiscountType as N, type Order as O, type Price as P, DiscountReason as Q, LineItemQuantityChangeType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ActivityType as X, OrderActivityTypeEnumActivityType as Y, AttributionSource as Z, ChannelType as _, type PreparePaymentCollectionOptions as a, type ExtendedFields as a$, OrderActionType as a0, ChargeType as a1, WebhookIdentityType as a2, PreviewEmailType as a3, State as a4, SiteCreatedContext as a5, Namespace as a6, DeleteStatus as a7, ScheduledAction as a8, DurationUnit as a9, type ProductName as aA, type CatalogReference as aB, type DescriptionLine as aC, type DescriptionLineValueOneOf as aD, type DescriptionLineDescriptionLineValueOneOf as aE, type DescriptionLineName as aF, type PlainTextValue as aG, type Color as aH, type FocalPoint as aI, type PhysicalProperties as aJ, type ItemType as aK, type ItemTypeItemTypeDataOneOf as aL, type ItemTaxFullDetails as aM, type LineItemTaxInfo as aN, type LineItemTaxBreakdown as aO, type DigitalFile as aP, type SubscriptionInfo as aQ, type SubscriptionTitle as aR, type SubscriptionDescription as aS, type SubscriptionSettings as aT, type FreeTrialPeriod as aU, type BillingAdjustment as aV, type BillingAdjustmentPriceSummary as aW, type PriceDescription as aX, type LocationAndQuantity as aY, type TaxableAddress as aZ, type TaxableAddressTaxableAddressDataOneOf as a_, PaymentCollectabilityStatus as aa, RefundableStatus as ab, NonRefundableReason as ac, ManuallyRefundableReason as ad, RestockType as ae, TransactionStatus as af, AuthorizationCaptureStatus as ag, AuthorizationVoidStatus as ah, Reason as ai, ActionType as aj, ChargebackStatus as ak, MembershipPaymentStatus as al, RefundStatus as am, VersioningMode as an, SortOrder as ao, OrderApprovalStrategy as ap, DeltaPaymentOptionType as aq, InventoryAction as ar, Placement as as, SubdivisionType as at, SourceType as au, CustomFieldGroup as av, ValueType as aw, DepositType as ax, InvoiceStatus as ay, type OrderLineItem as az, type PreparePaymentCollectionResponse as b, type RefundInitiated as b$, type ModifierGroup as b0, type TranslatableString as b1, type ItemModifier as b2, type BuyerInfo as b3, type BuyerInfoIdOneOf as b4, type CurrencyConversionDetails as b5, type PriceSummary as b6, type AddressWithContact as b7, type Address as b8, type StreetAddress as b9, type CustomActivity as bA, type MerchantComment as bB, type OrderRefunded as bC, type OrderCreatedFromExchange as bD, type NewExchangeOrderCreated as bE, type LineItemExchangeData as bF, type DraftOrderChangesApplied as bG, type OrderChange as bH, type OrderChangeValueOneOf as bI, type LineItemChanges as bJ, type LineItemQuantityChange as bK, type LineItemPriceChange as bL, type LineItemProductNameChange as bM, type LineItemDescriptionLineChange as bN, type LineItemModifiersChange as bO, type ManagedLineItem as bP, type ManagedDiscount as bQ, type TranslatedValue as bR, type LineItemAmount as bS, type ManagedAdditionalFee as bT, type TotalPriceChange as bU, type ShippingInformationChange as bV, type ShippingInformation as bW, type SavedPaymentMethod as bX, type AuthorizedPaymentCreated as bY, type AuthorizedPaymentCaptured as bZ, type AuthorizedPaymentVoided as b_, type AddressLocation as ba, type FullAddressContactDetails as bb, type VatId as bc, type V1ShippingInformation as bd, type DeliveryLogistics as be, type DeliveryLogisticsAddressOneOf as bf, type PickupDetails as bg, type PickupAddress as bh, type DeliveryTimeSlot as bi, type ShippingPrice as bj, type ShippingRegion as bk, type TaxSummary as bl, type OrderTaxInfo as bm, type OrderTaxBreakdown as bn, type AppliedDiscount as bo, type AppliedDiscountDiscountSourceOneOf as bp, type Coupon as bq, type MerchantDiscount as br, type MerchantDiscountMerchantDiscountReasonOneOf as bs, type DiscountRule as bt, type DiscountRuleName as bu, type LineItemDiscount as bv, type ItemCombination as bw, type ItemCombinationLineItem as bx, type Activity as by, type ActivityContentOneOf as bz, type PreparePaymentCollectionApplicationErrors as c, type EntityDeletedEvent as c$, type RefundedPayment as c0, type RefundedPaymentKindOneOf as c1, type RegularPaymentRefund as c2, type GiftCardPaymentRefund as c3, type MembershipPaymentRefund as c4, type PaymentRefunded as c5, type PaymentRefundFailed as c6, type RefundedAsStoreCredit as c7, type PaymentPending as c8, type PaymentPendingPaymentDetailsOneOf as c9, type OrderSettings as cA, type OrderSettingsAllowedActionsOneOf as cB, type OrderSettingsEditableByOneOf as cC, type CustomAllowedActions as cD, type OwnerApps as cE, type FormInfo as cF, type FormIdentifier as cG, type PlatformFeeSummary as cH, type PlatformFee as cI, type OrderApproved as cJ, type OrdersExperiments as cK, type OrderRejectedEventOrderRejected as cL, type OrderItemsRestocked as cM, type V1RestockItem as cN, type OrderImported as cO, type ImportedOrderDeleted as cP, type ImportOrderRequest as cQ, type ImportOrderResponse as cR, type SetOrderNumberCounterRequest as cS, type SetOrderNumberCounterResponse as cT, type BulkDeleteImportedOrdersRequest as cU, type BulkDeleteImportedOrdersResponse as cV, type DomainEvent as cW, type DomainEventBodyOneOf as cX, type EntityCreatedEvent as cY, type RestoreInfo as cZ, type EntityUpdatedEvent as c_, type RegularPayment as ca, type RegularPaymentPaymentMethodDetailsOneOf as cb, type CreditCardDetails as cc, type PaymentCanceled as cd, type PaymentCanceledPaymentDetailsOneOf as ce, type PaymentDeclined as cf, type PaymentDeclinedPaymentDetailsOneOf as cg, type ReceiptCreated as ch, type ReceiptCreatedReceiptInfoOneOf as ci, type WixReceipt as cj, type ExternalReceipt as ck, type ReceiptSent as cl, type ReceiptSentReceiptInfoOneOf as cm, type ChargebackCreated as cn, type ChargebackReversed as co, type CreatedBy as cp, type CreatedByStringOneOf as cq, type ChannelInfo as cr, type CustomField as cs, type BalanceSummary as ct, type Balance as cu, type AdditionalFee as cv, type FulfillmentStatusesAggregate as cw, type Tags as cx, type TagList as cy, type Location as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type ServiceRemoved as d$, type ActionEvent as d0, type MessageEnvelope as d1, type IdentificationData as d2, type IdentificationDataIdOneOf as d3, type AccountInfo as d4, type SendBuyerConfirmationEmailRequest as d5, type SendBuyerConfirmationEmailResponse as d6, type SendBuyerPaymentsReceivedEmailRequest as d7, type SendBuyerPaymentsReceivedEmailResponse as d8, type SendBuyerPickupConfirmationEmailRequest as d9, type PreviewCancelEmailResponse as dA, type PreviewCancelRefundEmailRequest as dB, type PreviewCancelRefundEmailResponse as dC, type PreviewBuyerPaymentsReceivedEmailRequest as dD, type PreviewBuyerPaymentsReceivedEmailResponse as dE, type PreviewBuyerConfirmationEmailRequest as dF, type PreviewBuyerConfirmationEmailResponse as dG, type PreviewBuyerPickupConfirmationEmailRequest as dH, type PreviewBuyerPickupConfirmationEmailResponse as dI, type PreviewShippingConfirmationEmailRequest as dJ, type PreviewShippingConfirmationEmailResponse as dK, type PreviewResendDownloadLinksEmailRequest as dL, type PreviewResendDownloadLinksEmailResponse as dM, type Empty as dN, type MetaSiteSpecialEvent as dO, type MetaSiteSpecialEventPayloadOneOf as dP, type Asset as dQ, type SiteCreated as dR, type SiteTransferred as dS, type SiteDeleted as dT, type DeleteContext as dU, type SiteUndeleted as dV, type SitePublished as dW, type SiteUnpublished as dX, type SiteMarkedAsTemplate as dY, type SiteMarkedAsWixSite as dZ, type ServiceProvisioned as d_, type SendBuyerPickupConfirmationEmailResponse as da, type BulkSendBuyerPickupConfirmationEmailsRequest as db, type BulkSendBuyerPickupConfirmationEmailsResponse as dc, type SendBuyerShippingConfirmationEmailRequest as dd, type SendBuyerShippingConfirmationEmailResponse as de, type BulkSendBuyerShippingConfirmationEmailsRequest as df, type BulkSendBuyerShippingConfirmationEmailsResponse as dg, type SendMerchantOrderReceivedNotificationRequest as dh, type SendMerchantOrderReceivedNotificationResponse as di, type SendCancelRefundEmailRequest as dj, type SendCancelRefundEmailResponse as dk, type SendRefundEmailRequest as dl, type SendRefundEmailResponse as dm, type SendMerchantOrderReceivedPushRequest as dn, type SendMerchantOrderReceivedPushResponse as dp, type PreviewEmailByTypeRequest as dq, type PreviewEmailByTypeResponse as dr, type PreviewRefundEmailRequest as ds, type RefundDetails as dt, type RefundItem as du, type LineItemRefund as dv, type AdditionalFeeRefund as dw, type ShippingRefund as dx, type PreviewRefundEmailResponse as dy, type PreviewCancelEmailRequest as dz, type PaymentCapture as e, type PaymentMethodName as e$, type SiteRenamed as e0, type SiteHardDeleted as e1, type NamespaceChanged as e2, type StudioAssigned as e3, type StudioUnassigned as e4, type SiteUrlChanged as e5, type SitePurgedExternally as e6, type OdeditorAssigned as e7, type OdeditorUnassigned as e8, type PicassoAssigned as e9, type CreatePaymentGatewayOrderRequest as eA, type ChargedBy as eB, type CreatePaymentGatewayOrderResponse as eC, type ChargeMembershipsRequest as eD, type MembershipChargeItem as eE, type MembershipName as eF, type ServiceProperties as eG, type ChargeMembershipsResponse as eH, type TriggerRefundRequest as eI, type PaymentRefund as eJ, type RefundSideEffects as eK, type RestockInfo as eL, type RestockItem as eM, type TriggerRefundResponse as eN, type OrderTransactions as eO, type Payment as eP, type PaymentPaymentDetailsOneOf as eQ, type PaymentReceiptInfoOneOf as eR, type RegularPaymentDetails as eS, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eT, type CreditCardPaymentMethodDetails as eU, type AuthorizationDetails as eV, type AuthorizationCapture as eW, type AuthorizationActionFailureDetails as eX, type AuthorizationVoid as eY, type V1ScheduledAction as eZ, type Chargeback as e_, type PicassoUnassigned as ea, type WixelAssigned as eb, type WixelUnassigned as ec, type StudioTwoAssigned as ed, type StudioTwoUnassigned as ee, type UserDomainMediaEnabled as ef, type UserDomainMediaDisabled as eg, type PreparePaymentCollectionRequest as eh, type RedirectUrls as ei, type DelayedCaptureSettings as ej, type Duration as ek, type GetPaymentCollectabilityStatusRequest as el, type RecordManuallyCollectedPaymentRequest as em, type RecordManuallyCollectedPaymentResponse as en, type MarkOrderAsPaidRequest as eo, type MarkOrderAsPaidResponse as ep, type BulkMarkOrdersAsPaidRequest as eq, type BulkMarkOrdersAsPaidResponse as er, type BulkOrderResult as es, type ItemMetadata as et, type ApplicationError as eu, type BulkActionMetadata as ev, type GetRefundabilityStatusRequest as ew, type GetRefundabilityStatusResponse as ex, type Refundability as ey, type RefundabilityAdditionalRefundabilityInfoOneOf as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type DraftOrderDiffsBuyerUpdateInfoOneOf as f$, type GiftCardPaymentDetails as f0, type MembershipPaymentDetails as f1, type WixReceiptInfo as f2, type ExternalReceiptInfo as f3, type Refund as f4, type RefundTransaction as f5, type RefundStatusInfo as f6, type AggregatedRefundSummary as f7, type RefundItemsBreakdown as f8, type LineItemRefundSummary as f9, type GetOrderResponse as fA, type InternalQueryOrdersRequest as fB, type PlatformQuery as fC, type PlatformQueryPagingMethodOneOf as fD, type Sorting as fE, type PlatformPaging as fF, type CursorPaging as fG, type InternalQueryOrdersResponse as fH, type PlatformPagingMetadata as fI, type Cursors as fJ, type QueryOrderRequest as fK, type QueryOrderResponse as fL, type SearchOrdersRequest as fM, type CursorSearch as fN, type CursorSearchPagingMethodOneOf as fO, type CursorPagingMetadata as fP, type CreateOrderRequest as fQ, type OrderCreationSettings as fR, type OrderCreationSettingsEditableByOneOf as fS, type OrderCreateNotifications as fT, type CreateOrderResponse as fU, type UpdateOrderRequest as fV, type UpdateOrderResponse as fW, type BulkUpdateOrdersRequest as fX, type CommitDeltasRequest as fY, type DraftOrderDiffs as fZ, type DraftOrderDiffsShippingUpdateInfoOneOf as f_, type CalculateRefundRequest as fa, type CalculateRefundItemRequest as fb, type CalculateRefundResponse as fc, type CalculateRefundItemResponse as fd, type VoidAuthorizedPaymentsRequest as fe, type CaptureAuthorizedPaymentsRequest as ff, type ChargeSavedPaymentMethodRequest as fg, type ChargeSavedPaymentMethodResponse as fh, type UpdateInternalDocumentsEvent as fi, type UpdateInternalDocumentsEventOperationOneOf as fj, type InternalDocument as fk, type InternalDocumentUpdateOperation as fl, type DeleteByIdsOperation as fm, type DeleteByFilterOperation as fn, type InternalDocumentUpdateByFilterOperation as fo, type InternalUpdateExistingOperation as fp, type VersionedDocumentUpdateOperation as fq, type VersionedDeleteByIdsOperation as fr, type VersionedDocumentId as fs, type TriggerReindexRequest as ft, type TriggerReindexResponse as fu, type BatchOfTriggerReindexOrderRequest as fv, type TriggerReindexOrderRequest as fw, type DiffmatokyPayload as fx, type ErrorInformation as fy, type GetOrderRequest as fz, type GetOrderApplicationErrors as g, type OrderPartiallyPaid as g$, type DraftOrderDiffsBillingUpdateInfoOneOf as g0, type DraftOrderDiffsRecipientUpdateInfoOneOf as g1, type V1LineItemDelta as g2, type V1LineItemDeltaDeltaOneOf as g3, type OrderLineItemChangedDetails as g4, type ItemChangedDetails as g5, type AppliedDiscountDelta as g6, type AppliedDiscountDeltaDeltaOneOf as g7, type AdditionalFeeDelta as g8, type AdditionalFeeDeltaDeltaOneOf as g9, type UpdateOrderShippingAddressResponse as gA, type UpdateBillingContactDetailsRequest as gB, type UpdateBillingContactDetailsResponse as gC, type UpdateOrderLineItemRequest as gD, type UpdateOrderLineItemResponse as gE, type UpdateOrderLineItemsRequest as gF, type MaskedOrderLineItem as gG, type UpdateOrderLineItemsResponse as gH, type AddInternalActivityRequest as gI, type InternalActivity as gJ, type InternalActivityContentOneOf as gK, type OrderPlaced as gL, type OrderPaid as gM, type OrderFulfilled as gN, type OrderNotFulfilled as gO, type OrderCanceled as gP, type DownloadLinkSent as gQ, type TrackingNumberAdded as gR, type TrackingNumberEdited as gS, type TrackingLinkAdded as gT, type ShippingConfirmationEmailSent as gU, type InvoiceAdded as gV, type InvoiceSent as gW, type FulfillerEmailSent as gX, type ShippingAddressEdited as gY, type EmailEdited as gZ, type PickupReadyEmailSent as g_, type DraftOrderCommitSettings as ga, type InventoryUpdateDetails as gb, type CommitDeltasResponse as gc, type OrderDeltasCommitted as gd, type CommittedDiffs as ge, type CommittedDiffsShippingUpdateInfoOneOf as gf, type LineItemDelta as gg, type LineItemDeltaDeltaOneOf as gh, type ArchiveOrderRequest as gi, type ArchiveOrderResponse as gj, type BulkArchiveOrdersRequest as gk, type BulkArchiveOrdersResponse as gl, type BulkArchiveOrdersByFilterRequest as gm, type BulkArchiveOrdersByFilterResponse as gn, type UnArchiveOrderRequest as go, type UnArchiveOrderResponse as gp, type BulkUnArchiveOrdersRequest as gq, type BulkUnArchiveOrdersResponse as gr, type BulkUnArchiveOrdersByFilterRequest as gs, type BulkUnArchiveOrdersByFilterResponse as gt, type UpdateBuyerInfoRequest as gu, type BuyerInfoUpdate as gv, type UpdateBuyerInfoResponse as gw, type UpdateBuyerEmailRequest as gx, type UpdateBuyerEmailResponse as gy, type UpdateOrderShippingAddressRequest as gz, type OrderSearch as h, type Customer as h$, type OrderPending as h0, type OrderRejected as h1, type AddInternalActivityResponse as h2, type AddActivityRequest as h3, type PublicActivity as h4, type PublicActivityContentOneOf as h5, type AddActivityResponse as h6, type AddActivitiesRequest as h7, type UpdateActivityRequest as h8, type UpdateActivityResponse as h9, type BulkSetBusinessLocationResult as hA, type V1MarkOrderAsPaidRequest as hB, type V1MarkOrderAsPaidResponse as hC, type PaymentStatusUpdated as hD, type V1BulkMarkOrdersAsPaidRequest as hE, type V1BulkMarkOrdersAsPaidResponse as hF, type V1CreatePaymentGatewayOrderRequest as hG, type V1CreatePaymentGatewayOrderResponse as hH, type GetShipmentsRequest as hI, type GetShipmentsResponse as hJ, type AggregateOrdersRequest as hK, type AggregateOrdersResponse as hL, type DecrementItemsQuantityRequest as hM, type DecrementData as hN, type DecrementItemsQuantityResponse as hO, type BulkUpdateOrderTagsRequest as hP, type BulkUpdateOrderTagsResult as hQ, type Task as hR, type TaskKey as hS, type TaskAction as hT, type TaskActionActionOneOf as hU, type Complete as hV, type Cancel as hW, type Reschedule as hX, type InvoiceSentEvent as hY, type IdAndVersion as hZ, type InvoiceFields as h_, type DeleteActivityRequest as ha, type DeleteActivityResponse as hb, type UpdateLineItemsDescriptionLinesRequest as hc, type LineItemUpdate as hd, type UpdateLineItemsDescriptionLinesResponse as he, type MarkOrderAsSeenByHumanRequest as hf, type MarkOrderAsSeenByHumanResponse as hg, type CancelOrderRequest as hh, type OrderCanceledEventOrderCanceled as hi, type UpdateOrderStatusRequest as hj, type UpdateOrderStatusResponse as hk, type MarkAsFulfilledRequest as hl, type MarkAsFulfilledResponse as hm, type FulfillmentStatusUpdated as hn, type BulkMarkAsFulfilledRequest as ho, type BulkMarkAsFulfilledResponse as hp, type BulkMarkAsFulfilledByFilterRequest as hq, type BulkMarkAsFulfilledByFilterResponse as hr, type MarkAsUnfulfilledRequest as hs, type MarkAsUnfulfilledResponse as ht, type BulkMarkAsUnfulfilledRequest as hu, type BulkMarkAsUnfulfilledResponse as hv, type BulkMarkAsUnfulfilledByFilterRequest as hw, type BulkMarkAsUnfulfilledByFilterResponse as hx, type BulkSetBusinessLocationRequest as hy, type BulkSetBusinessLocationResponse as hz, type CreateOrderOptions as i, type OrderActivityTypeEnumActivityTypeWithLiterals as i$, type Email as i0, type QuotesAddress as i1, type AddressDescription as i2, type Phone as i3, type Company as i4, type CommonAddress as i5, type CommonAddressStreetOneOf as i6, type Subdivision as i7, type StandardDetails as i8, type InvoiceDates as i9, type BulkDeleteImportedOrdersOptions as iA, type PaymentCollectionCreatePaymentGatewayOrderOptions as iB, type ChargeMembershipsOptions as iC, type TriggerRefundOptions as iD, type OrderSearchSpec as iE, type UpdateOrderLineItemIdentifiers as iF, type UpdateOrderLineItem as iG, type UpdateActivityIdentifiers as iH, type DeleteActivityIdentifiers as iI, type AggregateOrdersOptions as iJ, type DescriptionLineTypeWithLiterals as iK, type ItemTypePresetWithLiterals as iL, type PaymentOptionTypeWithLiterals as iM, type JurisdictionTypeWithLiterals as iN, type SubscriptionFrequencyWithLiterals as iO, type AdjustmentTypeWithLiterals as iP, type TaxableAddressTypeWithLiterals as iQ, type PaymentStatusWithLiterals as iR, type FulfillmentStatusWithLiterals as iS, type WeightUnitWithLiterals as iT, type VatTypeWithLiterals as iU, type PickupMethodWithLiterals as iV, type OrderStatusWithLiterals as iW, type DiscountTypeWithLiterals as iX, type DiscountReasonWithLiterals as iY, type LineItemQuantityChangeTypeWithLiterals as iZ, type ActivityTypeWithLiterals as i_, type LineItems as ia, type LineItem as ib, type BigDecimalWrapper as ic, type LineItemTax as id, type Source as ie, type LineItemMetaData as ig, type Locale as ih, type TotalPrice as ii, type ItemizedFee as ij, type Discount as ik, type DiscountOneDiscountTypeOneOf as il, type CalculatedTaxes as im, type CalculatedTax as io, type Payments as ip, type InvoicesPayment as iq, type MetaData as ir, type InvoiceDynamicPriceTotals as is, type CustomFieldValue as it, type Value as iu, type Deposit as iv, type BaseEventMetadata as iw, type EventMetadata as ix, type AccountInfoMetadata as iy, type SetOrderNumberCounterOptions as iz, type CreateOrderApplicationErrors as j, type AttributionSourceWithLiterals as j0, type ChannelTypeWithLiterals as j1, type AdditionalFeeSourceWithLiterals as j2, type OrderActionTypeWithLiterals as j3, type ChargeTypeWithLiterals as j4, type WebhookIdentityTypeWithLiterals as j5, type PreviewEmailTypeWithLiterals as j6, type StateWithLiterals as j7, type SiteCreatedContextWithLiterals as j8, type NamespaceWithLiterals as j9, type DepositTypeWithLiterals as jA, type InvoiceStatusWithLiterals as jB, type RecordManuallyCollectedPaymentApplicationErrors as jC, type PaymentCollectionMarkOrderAsPaidApplicationErrors as jD, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as jE, type TriggerRefundApplicationErrors as jF, type UpdateOrderStatusApplicationErrors as jG, type CommonSearchWithEntityContext as jH, onOrderApproved as jI, onOrderUpdated as jJ, onOrderCanceled as jK, onOrderCreated as jL, onOrderPaymentStatusUpdated as jM, preparePaymentCollection as jN, getPaymentCollectabilityStatus as jO, voidAuthorizedPayments as jP, captureAuthorizedPayments as jQ, getOrder as jR, createOrder as jS, updateOrder as jT, bulkUpdateOrders as jU, addActivities as jV, cancelOrder as jW, bulkUpdateOrderTags as jX, type DeleteStatusWithLiterals as ja, type ScheduledActionWithLiterals as jb, type DurationUnitWithLiterals as jc, type PaymentCollectabilityStatusWithLiterals as jd, type RefundableStatusWithLiterals as je, type NonRefundableReasonWithLiterals as jf, type ManuallyRefundableReasonWithLiterals as jg, type RestockTypeWithLiterals as jh, type TransactionStatusWithLiterals as ji, type AuthorizationCaptureStatusWithLiterals as jj, type AuthorizationVoidStatusWithLiterals as jk, type ReasonWithLiterals as jl, type ActionTypeWithLiterals as jm, type ChargebackStatusWithLiterals as jn, type MembershipPaymentStatusWithLiterals as jo, type RefundStatusWithLiterals as jp, type VersioningModeWithLiterals as jq, type SortOrderWithLiterals as jr, type OrderApprovalStrategyWithLiterals as js, type DeltaPaymentOptionTypeWithLiterals as jt, type InventoryActionWithLiterals as ju, type PlacementWithLiterals as jv, type SubdivisionTypeWithLiterals as jw, type SourceTypeWithLiterals as jx, type CustomFieldGroupWithLiterals as jy, type ValueTypeWithLiterals as jz, type UpdateOrderApplicationErrors as k, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderUpdatedEnvelope as t, type OrderCanceledEnvelope as u, type OrderCreatedEnvelope as v, type OrderPaymentStatusUpdatedEnvelope as w, PaymentOptionType as x, SubscriptionFrequency as y, AdjustmentType as z };
8404
+ export { AdditionalFeeSource as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentStatus as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, VatType as H, ItemTypePreset as I, JurisdictionType as J, PickupMethod as K, OrderStatus as L, type MaskedOrder as M, DiscountType as N, type Order as O, type Price as P, DiscountReason as Q, LineItemQuantityChangeType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ActivityType as X, OrderActivityTypeEnumActivityType as Y, AttributionSource as Z, ChannelType as _, type PreparePaymentCollectionOptions as a, type ExtendedFields as a$, OrderActionType as a0, ChargeType as a1, WebhookIdentityType as a2, VersioningMode as a3, PreviewEmailType as a4, State as a5, SiteCreatedContext as a6, Namespace as a7, DeleteStatus as a8, ScheduledAction as a9, type ProductName as aA, type CatalogReference as aB, type DescriptionLine as aC, type DescriptionLineValueOneOf as aD, type DescriptionLineDescriptionLineValueOneOf as aE, type DescriptionLineName as aF, type PlainTextValue as aG, type Color as aH, type FocalPoint as aI, type PhysicalProperties as aJ, type ItemType as aK, type ItemTypeItemTypeDataOneOf as aL, type ItemTaxFullDetails as aM, type LineItemTaxInfo as aN, type LineItemTaxBreakdown as aO, type DigitalFile as aP, type SubscriptionInfo as aQ, type SubscriptionTitle as aR, type SubscriptionDescription as aS, type SubscriptionSettings as aT, type FreeTrialPeriod as aU, type BillingAdjustment as aV, type BillingAdjustmentPriceSummary as aW, type PriceDescription as aX, type LocationAndQuantity as aY, type TaxableAddress as aZ, type TaxableAddressTaxableAddressDataOneOf as a_, DurationUnit as aa, PaymentCollectabilityStatus as ab, RefundableStatus as ac, NonRefundableReason as ad, ManuallyRefundableReason as ae, RestockType as af, TransactionStatus as ag, AuthorizationCaptureStatus as ah, AuthorizationVoidStatus as ai, Reason as aj, ActionType as ak, ChargebackStatus as al, MembershipPaymentStatus as am, RefundStatus as an, SortOrder as ao, OrderApprovalStrategy as ap, DeltaPaymentOptionType as aq, InventoryAction as ar, Placement as as, SubdivisionType as at, SourceType as au, CustomFieldGroup as av, ValueType as aw, DepositType as ax, InvoiceStatus as ay, type OrderLineItem as az, type PreparePaymentCollectionResponse as b, type RefundInitiated as b$, type ModifierGroup as b0, type TranslatableString as b1, type ItemModifier as b2, type BuyerInfo as b3, type BuyerInfoIdOneOf as b4, type CurrencyConversionDetails as b5, type PriceSummary as b6, type AddressWithContact as b7, type Address as b8, type StreetAddress as b9, type CustomActivity as bA, type MerchantComment as bB, type OrderRefunded as bC, type OrderCreatedFromExchange as bD, type NewExchangeOrderCreated as bE, type LineItemExchangeData as bF, type DraftOrderChangesApplied as bG, type OrderChange as bH, type OrderChangeValueOneOf as bI, type LineItemChanges as bJ, type LineItemQuantityChange as bK, type LineItemPriceChange as bL, type LineItemProductNameChange as bM, type LineItemDescriptionLineChange as bN, type LineItemModifiersChange as bO, type ManagedLineItem as bP, type ManagedDiscount as bQ, type TranslatedValue as bR, type LineItemAmount as bS, type ManagedAdditionalFee as bT, type TotalPriceChange as bU, type ShippingInformationChange as bV, type ShippingInformation as bW, type SavedPaymentMethod as bX, type AuthorizedPaymentCreated as bY, type AuthorizedPaymentCaptured as bZ, type AuthorizedPaymentVoided as b_, type AddressLocation as ba, type FullAddressContactDetails as bb, type VatId as bc, type V1ShippingInformation as bd, type DeliveryLogistics as be, type DeliveryLogisticsAddressOneOf as bf, type PickupDetails as bg, type PickupAddress as bh, type DeliveryTimeSlot as bi, type ShippingPrice as bj, type ShippingRegion as bk, type TaxSummary as bl, type OrderTaxInfo as bm, type OrderTaxBreakdown as bn, type AppliedDiscount as bo, type AppliedDiscountDiscountSourceOneOf as bp, type Coupon as bq, type MerchantDiscount as br, type MerchantDiscountMerchantDiscountReasonOneOf as bs, type DiscountRule as bt, type DiscountRuleName as bu, type LineItemDiscount as bv, type ItemCombination as bw, type ItemCombinationLineItem as bx, type Activity as by, type ActivityContentOneOf as bz, type PreparePaymentCollectionApplicationErrors as c, type EntityDeletedEvent as c$, type RefundedPayment as c0, type RefundedPaymentKindOneOf as c1, type RegularPaymentRefund as c2, type GiftCardPaymentRefund as c3, type MembershipPaymentRefund as c4, type PaymentRefunded as c5, type PaymentRefundFailed as c6, type RefundedAsStoreCredit as c7, type PaymentPending as c8, type PaymentPendingPaymentDetailsOneOf as c9, type OrderSettings as cA, type OrderSettingsAllowedActionsOneOf as cB, type OrderSettingsEditableByOneOf as cC, type CustomAllowedActions as cD, type OwnerApps as cE, type FormInfo as cF, type FormIdentifier as cG, type PlatformFeeSummary as cH, type PlatformFee as cI, type OrderApproved as cJ, type OrdersExperiments as cK, type OrderRejectedEventOrderRejected as cL, type OrderItemsRestocked as cM, type V1RestockItem as cN, type OrderImported as cO, type ImportedOrderDeleted as cP, type ImportOrderRequest as cQ, type ImportOrderResponse as cR, type SetOrderNumberCounterRequest as cS, type SetOrderNumberCounterResponse as cT, type BulkDeleteImportedOrdersRequest as cU, type BulkDeleteImportedOrdersResponse as cV, type DomainEvent as cW, type DomainEventBodyOneOf as cX, type EntityCreatedEvent as cY, type RestoreInfo as cZ, type EntityUpdatedEvent as c_, type RegularPayment as ca, type RegularPaymentPaymentMethodDetailsOneOf as cb, type CreditCardDetails as cc, type PaymentCanceled as cd, type PaymentCanceledPaymentDetailsOneOf as ce, type PaymentDeclined as cf, type PaymentDeclinedPaymentDetailsOneOf as cg, type ReceiptCreated as ch, type ReceiptCreatedReceiptInfoOneOf as ci, type WixReceipt as cj, type ExternalReceipt as ck, type ReceiptSent as cl, type ReceiptSentReceiptInfoOneOf as cm, type ChargebackCreated as cn, type ChargebackReversed as co, type CreatedBy as cp, type CreatedByStringOneOf as cq, type ChannelInfo as cr, type CustomField as cs, type BalanceSummary as ct, type Balance as cu, type AdditionalFee as cv, type FulfillmentStatusesAggregate as cw, type Tags as cx, type TagList as cy, type Location as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type PreviewResendDownloadLinksEmailRequest as d$, type ActionEvent as d0, type MessageEnvelope as d1, type IdentificationData as d2, type IdentificationDataIdOneOf as d3, type AccountInfo as d4, type UpdateInternalDocumentsEvent as d5, type UpdateInternalDocumentsEventOperationOneOf as d6, type InternalDocument as d7, type InternalDocumentUpdateOperation as d8, type DeleteByIdsOperation as d9, type SendCancelRefundEmailRequest as dA, type SendCancelRefundEmailResponse as dB, type SendRefundEmailRequest as dC, type SendRefundEmailResponse as dD, type SendMerchantOrderReceivedPushRequest as dE, type SendMerchantOrderReceivedPushResponse as dF, type PreviewEmailByTypeRequest as dG, type PreviewEmailByTypeResponse as dH, type PreviewRefundEmailRequest as dI, type RefundDetails as dJ, type RefundItem as dK, type LineItemRefund as dL, type AdditionalFeeRefund as dM, type ShippingRefund as dN, type PreviewRefundEmailResponse as dO, type PreviewCancelEmailRequest as dP, type PreviewCancelEmailResponse as dQ, type PreviewCancelRefundEmailRequest as dR, type PreviewCancelRefundEmailResponse as dS, type PreviewBuyerPaymentsReceivedEmailRequest as dT, type PreviewBuyerPaymentsReceivedEmailResponse as dU, type PreviewBuyerConfirmationEmailRequest as dV, type PreviewBuyerConfirmationEmailResponse as dW, type PreviewBuyerPickupConfirmationEmailRequest as dX, type PreviewBuyerPickupConfirmationEmailResponse as dY, type PreviewShippingConfirmationEmailRequest as dZ, type PreviewShippingConfirmationEmailResponse as d_, type DeleteByFilterOperation as da, type InternalDocumentUpdateByFilterOperation as db, type InternalUpdateExistingOperation as dc, type VersionedDocumentUpdateOperation as dd, type VersionedDeleteByIdsOperation as de, type VersionedDocumentId as df, type TriggerReindexRequest as dg, type TriggerReindexResponse as dh, type Empty as di, type BatchOfTriggerReindexOrderRequest as dj, type TriggerReindexOrderRequest as dk, type SendBuyerConfirmationEmailRequest as dl, type SendBuyerConfirmationEmailResponse as dm, type SendBuyerPaymentsReceivedEmailRequest as dn, type SendBuyerPaymentsReceivedEmailResponse as dp, type SendBuyerPickupConfirmationEmailRequest as dq, type SendBuyerPickupConfirmationEmailResponse as dr, type BulkSendBuyerPickupConfirmationEmailsRequest as ds, type BulkSendBuyerPickupConfirmationEmailsResponse as dt, type SendBuyerShippingConfirmationEmailRequest as du, type SendBuyerShippingConfirmationEmailResponse as dv, type BulkSendBuyerShippingConfirmationEmailsRequest as dw, type BulkSendBuyerShippingConfirmationEmailsResponse as dx, type SendMerchantOrderReceivedNotificationRequest as dy, type SendMerchantOrderReceivedNotificationResponse as dz, type PaymentCapture as e, type RestockItem as e$, type PreviewResendDownloadLinksEmailResponse as e0, type MetaSiteSpecialEvent as e1, type MetaSiteSpecialEventPayloadOneOf as e2, type Asset as e3, type SiteCreated as e4, type SiteTransferred as e5, type SiteDeleted as e6, type DeleteContext as e7, type SiteUndeleted as e8, type SitePublished as e9, type GetPaymentCollectabilityStatusRequest as eA, type RecordManuallyCollectedPaymentRequest as eB, type RecordManuallyCollectedPaymentResponse as eC, type MarkOrderAsPaidRequest as eD, type MarkOrderAsPaidResponse as eE, type BulkMarkOrdersAsPaidRequest as eF, type BulkMarkOrdersAsPaidResponse as eG, type BulkOrderResult as eH, type ItemMetadata as eI, type ApplicationError as eJ, type BulkActionMetadata as eK, type GetRefundabilityStatusRequest as eL, type GetRefundabilityStatusResponse as eM, type Refundability as eN, type RefundabilityAdditionalRefundabilityInfoOneOf as eO, type CreatePaymentGatewayOrderRequest as eP, type ChargedBy as eQ, type CreatePaymentGatewayOrderResponse as eR, type ChargeMembershipsRequest as eS, type MembershipChargeItem as eT, type MembershipName as eU, type ServiceProperties as eV, type ChargeMembershipsResponse as eW, type TriggerRefundRequest as eX, type PaymentRefund as eY, type RefundSideEffects as eZ, type RestockInfo as e_, type SiteUnpublished as ea, type SiteMarkedAsTemplate as eb, type SiteMarkedAsWixSite as ec, type ServiceProvisioned as ed, type ServiceRemoved as ee, type SiteRenamed as ef, type SiteHardDeleted as eg, type NamespaceChanged as eh, type StudioAssigned as ei, type StudioUnassigned as ej, type SiteUrlChanged as ek, type SitePurgedExternally as el, type OdeditorAssigned as em, type OdeditorUnassigned as en, type PicassoAssigned as eo, type PicassoUnassigned as ep, type WixelAssigned as eq, type WixelUnassigned as er, type StudioTwoAssigned as es, type StudioTwoUnassigned as et, type UserDomainMediaEnabled as eu, type UserDomainMediaDisabled as ev, type PreparePaymentCollectionRequest as ew, type RedirectUrls as ex, type DelayedCaptureSettings as ey, type Duration as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type DraftOrderDiffsBuyerUpdateInfoOneOf as f$, type TriggerRefundResponse as f0, type OrderTransactions as f1, type Payment as f2, type PaymentPaymentDetailsOneOf as f3, type PaymentReceiptInfoOneOf as f4, type RegularPaymentDetails as f5, type RegularPaymentDetailsPaymentMethodDetailsOneOf as f6, type CreditCardPaymentMethodDetails as f7, type AuthorizationDetails as f8, type AuthorizationCapture as f9, type GetOrderResponse as fA, type InternalQueryOrdersRequest as fB, type PlatformQuery as fC, type PlatformQueryPagingMethodOneOf as fD, type Sorting as fE, type PlatformPaging as fF, type CursorPaging as fG, type InternalQueryOrdersResponse as fH, type PlatformPagingMetadata as fI, type Cursors as fJ, type QueryOrderRequest as fK, type QueryOrderResponse as fL, type SearchOrdersRequest as fM, type CursorSearch as fN, type CursorSearchPagingMethodOneOf as fO, type CursorPagingMetadata as fP, type CreateOrderRequest as fQ, type OrderCreationSettings as fR, type OrderCreationSettingsEditableByOneOf as fS, type OrderCreateNotifications as fT, type CreateOrderResponse as fU, type UpdateOrderRequest as fV, type UpdateOrderResponse as fW, type BulkUpdateOrdersRequest as fX, type CommitDeltasRequest as fY, type DraftOrderDiffs as fZ, type DraftOrderDiffsShippingUpdateInfoOneOf as f_, type AuthorizationActionFailureDetails as fa, type AuthorizationVoid as fb, type V1ScheduledAction as fc, type Chargeback as fd, type PaymentMethodName as fe, type GiftCardPaymentDetails as ff, type MembershipPaymentDetails as fg, type WixReceiptInfo as fh, type ExternalReceiptInfo as fi, type Refund as fj, type RefundTransaction as fk, type RefundStatusInfo as fl, type AggregatedRefundSummary as fm, type RefundItemsBreakdown as fn, type LineItemRefundSummary as fo, type CalculateRefundRequest as fp, type CalculateRefundItemRequest as fq, type CalculateRefundResponse as fr, type CalculateRefundItemResponse as fs, type VoidAuthorizedPaymentsRequest as ft, type CaptureAuthorizedPaymentsRequest as fu, type ChargeSavedPaymentMethodRequest as fv, type ChargeSavedPaymentMethodResponse as fw, type DiffmatokyPayload as fx, type ErrorInformation as fy, type GetOrderRequest as fz, type GetOrderApplicationErrors as g, type OrderPartiallyPaid as g$, type DraftOrderDiffsBillingUpdateInfoOneOf as g0, type DraftOrderDiffsRecipientUpdateInfoOneOf as g1, type V1LineItemDelta as g2, type V1LineItemDeltaDeltaOneOf as g3, type OrderLineItemChangedDetails as g4, type ItemChangedDetails as g5, type AppliedDiscountDelta as g6, type AppliedDiscountDeltaDeltaOneOf as g7, type AdditionalFeeDelta as g8, type AdditionalFeeDeltaDeltaOneOf as g9, type UpdateOrderShippingAddressResponse as gA, type UpdateBillingContactDetailsRequest as gB, type UpdateBillingContactDetailsResponse as gC, type UpdateOrderLineItemRequest as gD, type UpdateOrderLineItemResponse as gE, type UpdateOrderLineItemsRequest as gF, type MaskedOrderLineItem as gG, type UpdateOrderLineItemsResponse as gH, type AddInternalActivityRequest as gI, type InternalActivity as gJ, type InternalActivityContentOneOf as gK, type OrderPlaced as gL, type OrderPaid as gM, type OrderFulfilled as gN, type OrderNotFulfilled as gO, type OrderCanceled as gP, type DownloadLinkSent as gQ, type TrackingNumberAdded as gR, type TrackingNumberEdited as gS, type TrackingLinkAdded as gT, type ShippingConfirmationEmailSent as gU, type InvoiceAdded as gV, type InvoiceSent as gW, type FulfillerEmailSent as gX, type ShippingAddressEdited as gY, type EmailEdited as gZ, type PickupReadyEmailSent as g_, type DraftOrderCommitSettings as ga, type InventoryUpdateDetails as gb, type CommitDeltasResponse as gc, type OrderDeltasCommitted as gd, type CommittedDiffs as ge, type CommittedDiffsShippingUpdateInfoOneOf as gf, type LineItemDelta as gg, type LineItemDeltaDeltaOneOf as gh, type ArchiveOrderRequest as gi, type ArchiveOrderResponse as gj, type BulkArchiveOrdersRequest as gk, type BulkArchiveOrdersResponse as gl, type BulkArchiveOrdersByFilterRequest as gm, type BulkArchiveOrdersByFilterResponse as gn, type UnArchiveOrderRequest as go, type UnArchiveOrderResponse as gp, type BulkUnArchiveOrdersRequest as gq, type BulkUnArchiveOrdersResponse as gr, type BulkUnArchiveOrdersByFilterRequest as gs, type BulkUnArchiveOrdersByFilterResponse as gt, type UpdateBuyerInfoRequest as gu, type BuyerInfoUpdate as gv, type UpdateBuyerInfoResponse as gw, type UpdateBuyerEmailRequest as gx, type UpdateBuyerEmailResponse as gy, type UpdateOrderShippingAddressRequest as gz, type OrderSearch as h, type Customer as h$, type OrderPending as h0, type OrderRejected as h1, type AddInternalActivityResponse as h2, type AddActivityRequest as h3, type PublicActivity as h4, type PublicActivityContentOneOf as h5, type AddActivityResponse as h6, type AddActivitiesRequest as h7, type UpdateActivityRequest as h8, type UpdateActivityResponse as h9, type BulkSetBusinessLocationResult as hA, type V1MarkOrderAsPaidRequest as hB, type V1MarkOrderAsPaidResponse as hC, type PaymentStatusUpdated as hD, type V1BulkMarkOrdersAsPaidRequest as hE, type V1BulkMarkOrdersAsPaidResponse as hF, type V1CreatePaymentGatewayOrderRequest as hG, type V1CreatePaymentGatewayOrderResponse as hH, type GetShipmentsRequest as hI, type GetShipmentsResponse as hJ, type AggregateOrdersRequest as hK, type AggregateOrdersResponse as hL, type DecrementItemsQuantityRequest as hM, type DecrementData as hN, type DecrementItemsQuantityResponse as hO, type BulkUpdateOrderTagsRequest as hP, type BulkUpdateOrderTagsResult as hQ, type Task as hR, type TaskKey as hS, type TaskAction as hT, type TaskActionActionOneOf as hU, type Complete as hV, type Cancel as hW, type Reschedule as hX, type InvoiceSentEvent as hY, type IdAndVersion as hZ, type InvoiceFields as h_, type DeleteActivityRequest as ha, type DeleteActivityResponse as hb, type UpdateLineItemsDescriptionLinesRequest as hc, type LineItemUpdate as hd, type UpdateLineItemsDescriptionLinesResponse as he, type MarkOrderAsSeenByHumanRequest as hf, type MarkOrderAsSeenByHumanResponse as hg, type CancelOrderRequest as hh, type OrderCanceledEventOrderCanceled as hi, type UpdateOrderStatusRequest as hj, type UpdateOrderStatusResponse as hk, type MarkAsFulfilledRequest as hl, type MarkAsFulfilledResponse as hm, type FulfillmentStatusUpdated as hn, type BulkMarkAsFulfilledRequest as ho, type BulkMarkAsFulfilledResponse as hp, type BulkMarkAsFulfilledByFilterRequest as hq, type BulkMarkAsFulfilledByFilterResponse as hr, type MarkAsUnfulfilledRequest as hs, type MarkAsUnfulfilledResponse as ht, type BulkMarkAsUnfulfilledRequest as hu, type BulkMarkAsUnfulfilledResponse as hv, type BulkMarkAsUnfulfilledByFilterRequest as hw, type BulkMarkAsUnfulfilledByFilterResponse as hx, type BulkSetBusinessLocationRequest as hy, type BulkSetBusinessLocationResponse as hz, type CreateOrderOptions as i, type OrderActivityTypeEnumActivityTypeWithLiterals as i$, type Email as i0, type QuotesAddress as i1, type AddressDescription as i2, type Phone as i3, type Company as i4, type CommonAddress as i5, type CommonAddressStreetOneOf as i6, type Subdivision as i7, type StandardDetails as i8, type InvoiceDates as i9, type BulkDeleteImportedOrdersOptions as iA, type PaymentCollectionCreatePaymentGatewayOrderOptions as iB, type ChargeMembershipsOptions as iC, type TriggerRefundOptions as iD, type OrderSearchSpec as iE, type UpdateOrderLineItemIdentifiers as iF, type UpdateOrderLineItem as iG, type UpdateActivityIdentifiers as iH, type DeleteActivityIdentifiers as iI, type AggregateOrdersOptions as iJ, type DescriptionLineTypeWithLiterals as iK, type ItemTypePresetWithLiterals as iL, type PaymentOptionTypeWithLiterals as iM, type JurisdictionTypeWithLiterals as iN, type SubscriptionFrequencyWithLiterals as iO, type AdjustmentTypeWithLiterals as iP, type TaxableAddressTypeWithLiterals as iQ, type PaymentStatusWithLiterals as iR, type FulfillmentStatusWithLiterals as iS, type WeightUnitWithLiterals as iT, type VatTypeWithLiterals as iU, type PickupMethodWithLiterals as iV, type OrderStatusWithLiterals as iW, type DiscountTypeWithLiterals as iX, type DiscountReasonWithLiterals as iY, type LineItemQuantityChangeTypeWithLiterals as iZ, type ActivityTypeWithLiterals as i_, type LineItems as ia, type LineItem as ib, type BigDecimalWrapper as ic, type LineItemTax as id, type Source as ie, type LineItemMetaData as ig, type Locale as ih, type TotalPrice as ii, type ItemizedFee as ij, type Discount as ik, type DiscountOneDiscountTypeOneOf as il, type CalculatedTaxes as im, type CalculatedTax as io, type Payments as ip, type InvoicesPayment as iq, type MetaData as ir, type InvoiceDynamicPriceTotals as is, type CustomFieldValue as it, type Value as iu, type Deposit as iv, type BaseEventMetadata as iw, type EventMetadata as ix, type AccountInfoMetadata as iy, type SetOrderNumberCounterOptions as iz, type CreateOrderApplicationErrors as j, type AttributionSourceWithLiterals as j0, type ChannelTypeWithLiterals as j1, type AdditionalFeeSourceWithLiterals as j2, type OrderActionTypeWithLiterals as j3, type ChargeTypeWithLiterals as j4, type WebhookIdentityTypeWithLiterals as j5, type VersioningModeWithLiterals as j6, type PreviewEmailTypeWithLiterals as j7, type StateWithLiterals as j8, type SiteCreatedContextWithLiterals as j9, type DepositTypeWithLiterals as jA, type InvoiceStatusWithLiterals as jB, type RecordManuallyCollectedPaymentApplicationErrors as jC, type PaymentCollectionMarkOrderAsPaidApplicationErrors as jD, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as jE, type TriggerRefundApplicationErrors as jF, type UpdateOrderStatusApplicationErrors as jG, type CommonSearchWithEntityContext as jH, onOrderApproved as jI, onOrderUpdated as jJ, onOrderCanceled as jK, onOrderCreated as jL, onOrderPaymentStatusUpdated as jM, preparePaymentCollection as jN, getPaymentCollectabilityStatus as jO, voidAuthorizedPayments as jP, captureAuthorizedPayments as jQ, getOrder as jR, createOrder as jS, updateOrder as jT, bulkUpdateOrders as jU, addActivities as jV, cancelOrder as jW, bulkUpdateOrderTags as jX, type NamespaceWithLiterals as ja, type DeleteStatusWithLiterals as jb, type ScheduledActionWithLiterals as jc, type DurationUnitWithLiterals as jd, type PaymentCollectabilityStatusWithLiterals as je, type RefundableStatusWithLiterals as jf, type NonRefundableReasonWithLiterals as jg, type ManuallyRefundableReasonWithLiterals as jh, type RestockTypeWithLiterals as ji, type TransactionStatusWithLiterals as jj, type AuthorizationCaptureStatusWithLiterals as jk, type AuthorizationVoidStatusWithLiterals as jl, type ReasonWithLiterals as jm, type ActionTypeWithLiterals as jn, type ChargebackStatusWithLiterals as jo, type MembershipPaymentStatusWithLiterals as jp, type RefundStatusWithLiterals as jq, type SortOrderWithLiterals as jr, type OrderApprovalStrategyWithLiterals as js, type DeltaPaymentOptionTypeWithLiterals as jt, type InventoryActionWithLiterals as ju, type PlacementWithLiterals as jv, type SubdivisionTypeWithLiterals as jw, type SourceTypeWithLiterals as jx, type CustomFieldGroupWithLiterals as jy, type ValueTypeWithLiterals as jz, type UpdateOrderApplicationErrors as k, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderUpdatedEnvelope as t, type OrderCanceledEnvelope as u, type OrderCreatedEnvelope as v, type OrderPaymentStatusUpdatedEnvelope as w, PaymentOptionType as x, SubscriptionFrequency as y, AdjustmentType as z };
@@ -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 OrderUpdatedEnvelope, u as OrderCanceledEnvelope, v as OrderCreatedEnvelope, w as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-DrysmrGc.js';
3
- export { d4 as AccountInfo, iy as AccountInfoMetadata, d0 as ActionEvent, aj as ActionType, jm as ActionTypeWithLiterals, by as Activity, bz as ActivityContentOneOf, X as ActivityType, i_ as ActivityTypeWithLiterals, h7 as AddActivitiesRequest, h3 as AddActivityRequest, h6 as AddActivityResponse, gI as AddInternalActivityRequest, h2 as AddInternalActivityResponse, cv as AdditionalFee, g8 as AdditionalFeeDelta, g9 as AdditionalFeeDeltaDeltaOneOf, dw as AdditionalFeeRefund, $ as AdditionalFeeSource, j2 as AdditionalFeeSourceWithLiterals, b8 as Address, i2 as AddressDescription, ba as AddressLocation, b7 as AddressWithContact, z as AdjustmentType, iP as AdjustmentTypeWithLiterals, iJ as AggregateOrdersOptions, hK as AggregateOrdersRequest, hL as AggregateOrdersResponse, f7 as AggregatedRefundSummary, eu as ApplicationError, bo as AppliedDiscount, g6 as AppliedDiscountDelta, g7 as AppliedDiscountDeltaDeltaOneOf, bp as AppliedDiscountDiscountSourceOneOf, gi as ArchiveOrderRequest, gj as ArchiveOrderResponse, dQ as Asset, Z as AttributionSource, j0 as AttributionSourceWithLiterals, eX as AuthorizationActionFailureDetails, eW as AuthorizationCapture, ag as AuthorizationCaptureStatus, jj as AuthorizationCaptureStatusWithLiterals, eV as AuthorizationDetails, eY as AuthorizationVoid, ah as AuthorizationVoidStatus, jk as AuthorizationVoidStatusWithLiterals, bZ as AuthorizedPaymentCaptured, bY as AuthorizedPaymentCreated, b_ as AuthorizedPaymentVoided, cu as Balance, ct as BalanceSummary, iw as BaseEventMetadata, fv as BatchOfTriggerReindexOrderRequest, ic as BigDecimalWrapper, aV as BillingAdjustment, aW as BillingAdjustmentPriceSummary, ev as BulkActionMetadata, gm as BulkArchiveOrdersByFilterRequest, gn as BulkArchiveOrdersByFilterResponse, gk as BulkArchiveOrdersRequest, gl as BulkArchiveOrdersResponse, iA as BulkDeleteImportedOrdersOptions, cU as BulkDeleteImportedOrdersRequest, cV as BulkDeleteImportedOrdersResponse, hq as BulkMarkAsFulfilledByFilterRequest, hr as BulkMarkAsFulfilledByFilterResponse, ho as BulkMarkAsFulfilledRequest, hp as BulkMarkAsFulfilledResponse, hw as BulkMarkAsUnfulfilledByFilterRequest, hx as BulkMarkAsUnfulfilledByFilterResponse, hu as BulkMarkAsUnfulfilledRequest, hv as BulkMarkAsUnfulfilledResponse, eq as BulkMarkOrdersAsPaidRequest, er as BulkMarkOrdersAsPaidResponse, es as BulkOrderResult, db as BulkSendBuyerPickupConfirmationEmailsRequest, dc as BulkSendBuyerPickupConfirmationEmailsResponse, df as BulkSendBuyerShippingConfirmationEmailsRequest, dg as BulkSendBuyerShippingConfirmationEmailsResponse, hy as BulkSetBusinessLocationRequest, hz as BulkSetBusinessLocationResponse, hA as BulkSetBusinessLocationResult, gs as BulkUnArchiveOrdersByFilterRequest, gt as BulkUnArchiveOrdersByFilterResponse, gq as BulkUnArchiveOrdersRequest, gr as BulkUnArchiveOrdersResponse, hP as BulkUpdateOrderTagsRequest, hQ as BulkUpdateOrderTagsResult, fX as BulkUpdateOrdersRequest, b3 as BuyerInfo, b4 as BuyerInfoIdOneOf, gv as BuyerInfoUpdate, fb as CalculateRefundItemRequest, fd as CalculateRefundItemResponse, fa as CalculateRefundRequest, fc as CalculateRefundResponse, io as CalculatedTax, im as CalculatedTaxes, hW as Cancel, hh as CancelOrderRequest, ff as CaptureAuthorizedPaymentsRequest, aB as CatalogReference, cr as ChannelInfo, _ as ChannelType, j1 as ChannelTypeWithLiterals, iC as ChargeMembershipsOptions, eD as ChargeMembershipsRequest, eH as ChargeMembershipsResponse, fg as ChargeSavedPaymentMethodRequest, fh as ChargeSavedPaymentMethodResponse, a1 as ChargeType, j4 as ChargeTypeWithLiterals, e_ as Chargeback, cn as ChargebackCreated, co as ChargebackReversed, ak as ChargebackStatus, jn as ChargebackStatusWithLiterals, eB as ChargedBy, aH as Color, fY as CommitDeltasRequest, gc as CommitDeltasResponse, ge as CommittedDiffs, gf as CommittedDiffsShippingUpdateInfoOneOf, i5 as CommonAddress, i6 as CommonAddressStreetOneOf, jH as CommonSearchWithEntityContext, i4 as Company, hV as Complete, bq as Coupon, fQ as CreateOrderRequest, fU as CreateOrderResponse, eA as CreatePaymentGatewayOrderRequest, eC as CreatePaymentGatewayOrderResponse, cp as CreatedBy, cq as CreatedByStringOneOf, cc as CreditCardDetails, eU as CreditCardPaymentMethodDetails, b5 as CurrencyConversionDetails, fG as CursorPaging, fP as CursorPagingMetadata, fN as CursorSearch, fO as CursorSearchPagingMethodOneOf, fJ as Cursors, bA as CustomActivity, cD as CustomAllowedActions, cs as CustomField, av as CustomFieldGroup, jy as CustomFieldGroupWithLiterals, it as CustomFieldValue, h$ as Customer, hN as DecrementData, hM as DecrementItemsQuantityRequest, hO as DecrementItemsQuantityResponse, ej as DelayedCaptureSettings, iI as DeleteActivityIdentifiers, ha as DeleteActivityRequest, hb as DeleteActivityResponse, fn as DeleteByFilterOperation, fm as DeleteByIdsOperation, dU as DeleteContext, a7 as DeleteStatus, ja as DeleteStatusWithLiterals, be as DeliveryLogistics, bf as DeliveryLogisticsAddressOneOf, bi as DeliveryTimeSlot, aq as DeltaPaymentOptionType, jt as DeltaPaymentOptionTypeWithLiterals, iv as Deposit, ax as DepositType, jA as DepositTypeWithLiterals, aC as DescriptionLine, aE as DescriptionLineDescriptionLineValueOneOf, aF as DescriptionLineName, D as DescriptionLineType, iK as DescriptionLineTypeWithLiterals, aD as DescriptionLineValueOneOf, fx as DiffmatokyPayload, aP as DigitalFile, ik as Discount, il as DiscountOneDiscountTypeOneOf, Q as DiscountReason, iY as DiscountReasonWithLiterals, bt as DiscountRule, bu as DiscountRuleName, N as DiscountType, iX as DiscountTypeWithLiterals, cW as DomainEvent, cX as DomainEventBodyOneOf, gQ as DownloadLinkSent, bG as DraftOrderChangesApplied, ga as DraftOrderCommitSettings, fZ as DraftOrderDiffs, g0 as DraftOrderDiffsBillingUpdateInfoOneOf, f$ as DraftOrderDiffsBuyerUpdateInfoOneOf, g1 as DraftOrderDiffsRecipientUpdateInfoOneOf, f_ as DraftOrderDiffsShippingUpdateInfoOneOf, ek as Duration, a9 as DurationUnit, jc as DurationUnitWithLiterals, i0 as Email, gZ as EmailEdited, dN as Empty, cY as EntityCreatedEvent, c$ as EntityDeletedEvent, c_ as EntityUpdatedEvent, fy as ErrorInformation, ix as EventMetadata, a$ as ExtendedFields, ck as ExternalReceipt, f3 as ExternalReceiptInfo, aI as FocalPoint, cG as FormIdentifier, cF as FormInfo, aU as FreeTrialPeriod, gX as FulfillerEmailSent, F as FulfillmentStatus, hn as FulfillmentStatusUpdated, iS as FulfillmentStatusWithLiterals, cw as FulfillmentStatusesAggregate, bb as FullAddressContactDetails, fz as GetOrderRequest, fA as GetOrderResponse, el as GetPaymentCollectabilityStatusRequest, ew as GetRefundabilityStatusRequest, ex as GetRefundabilityStatusResponse, hI as GetShipmentsRequest, hJ as GetShipmentsResponse, f0 as GiftCardPaymentDetails, c3 as GiftCardPaymentRefund, hZ as IdAndVersion, d2 as IdentificationData, d3 as IdentificationDataIdOneOf, cQ as ImportOrderRequest, cR as ImportOrderResponse, cP as ImportedOrderDeleted, gJ as InternalActivity, gK as InternalActivityContentOneOf, fk as InternalDocument, fo as InternalDocumentUpdateByFilterOperation, fl as InternalDocumentUpdateOperation, fB as InternalQueryOrdersRequest, fH as InternalQueryOrdersResponse, fp as InternalUpdateExistingOperation, ar as InventoryAction, ju as InventoryActionWithLiterals, gb as InventoryUpdateDetails, gV as InvoiceAdded, i9 as InvoiceDates, is as InvoiceDynamicPriceTotals, h_ as InvoiceFields, gW as InvoiceSent, hY as InvoiceSentEvent, ay as InvoiceStatus, jB as InvoiceStatusWithLiterals, iq as InvoicesPayment, g5 as ItemChangedDetails, bw as ItemCombination, bx as ItemCombinationLineItem, et as ItemMetadata, b2 as ItemModifier, aM as ItemTaxFullDetails, aK as ItemType, aL as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, iL as ItemTypePresetWithLiterals, ij as ItemizedFee, J as JurisdictionType, iN as JurisdictionTypeWithLiterals, ib as LineItem, bS as LineItemAmount, bJ as LineItemChanges, gg as LineItemDelta, gh as LineItemDeltaDeltaOneOf, bN as LineItemDescriptionLineChange, bv as LineItemDiscount, bF as LineItemExchangeData, ig as LineItemMetaData, bO as LineItemModifiersChange, bL as LineItemPriceChange, bM as LineItemProductNameChange, bK as LineItemQuantityChange, R as LineItemQuantityChangeType, iZ as LineItemQuantityChangeTypeWithLiterals, dv as LineItemRefund, f9 as LineItemRefundSummary, id as LineItemTax, aO as LineItemTaxBreakdown, aN as LineItemTaxInfo, hd as LineItemUpdate, ia as LineItems, ih as Locale, cz as Location, aY as LocationAndQuantity, bT as ManagedAdditionalFee, bQ as ManagedDiscount, bP as ManagedLineItem, ad as ManuallyRefundableReason, jg as ManuallyRefundableReasonWithLiterals, hl as MarkAsFulfilledRequest, hm as MarkAsFulfilledResponse, hs as MarkAsUnfulfilledRequest, ht as MarkAsUnfulfilledResponse, eo as MarkOrderAsPaidRequest, ep as MarkOrderAsPaidResponse, hf as MarkOrderAsSeenByHumanRequest, hg as MarkOrderAsSeenByHumanResponse, gG as MaskedOrderLineItem, eE as MembershipChargeItem, eF as MembershipName, f1 as MembershipPaymentDetails, c4 as MembershipPaymentRefund, al as MembershipPaymentStatus, jo as MembershipPaymentStatusWithLiterals, bB as MerchantComment, br as MerchantDiscount, bs as MerchantDiscountMerchantDiscountReasonOneOf, d1 as MessageEnvelope, ir as MetaData, dO as MetaSiteSpecialEvent, dP as MetaSiteSpecialEventPayloadOneOf, b0 as ModifierGroup, a6 as Namespace, e2 as NamespaceChanged, j9 as NamespaceWithLiterals, bE as NewExchangeOrderCreated, ac as NonRefundableReason, jf as NonRefundableReasonWithLiterals, e7 as OdeditorAssigned, e8 as OdeditorUnassigned, a0 as OrderActionType, j3 as OrderActionTypeWithLiterals, Y as OrderActivityTypeEnumActivityType, i$ as OrderActivityTypeEnumActivityTypeWithLiterals, ap as OrderApprovalStrategy, js as OrderApprovalStrategyWithLiterals, cJ as OrderApproved, gP as OrderCanceled, hi as OrderCanceledEventOrderCanceled, bH as OrderChange, bI as OrderChangeValueOneOf, fT as OrderCreateNotifications, bD as OrderCreatedFromExchange, fR as OrderCreationSettings, fS as OrderCreationSettingsEditableByOneOf, gd as OrderDeltasCommitted, gN as OrderFulfilled, cO as OrderImported, cM as OrderItemsRestocked, az as OrderLineItem, g4 as OrderLineItemChangedDetails, gO as OrderNotFulfilled, gM as OrderPaid, g$ as OrderPartiallyPaid, h0 as OrderPending, gL as OrderPlaced, bC as OrderRefunded, h1 as OrderRejected, cL as OrderRejectedEventOrderRejected, iE as OrderSearchSpec, cA as OrderSettings, cB as OrderSettingsAllowedActionsOneOf, cC as OrderSettingsEditableByOneOf, L as OrderStatus, iW as OrderStatusWithLiterals, bn as OrderTaxBreakdown, bm as OrderTaxInfo, eO as OrderTransactions, cK as OrdersExperiments, cE as OwnerApps, eP as Payment, cd as PaymentCanceled, ce as PaymentCanceledPaymentDetailsOneOf, aa as PaymentCollectabilityStatus, jd as PaymentCollectabilityStatusWithLiterals, jE as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, iB as PaymentCollectionCreatePaymentGatewayOrderOptions, jD as PaymentCollectionMarkOrderAsPaidApplicationErrors, cf as PaymentDeclined, cg as PaymentDeclinedPaymentDetailsOneOf, e$ as PaymentMethodName, x as PaymentOptionType, iM as PaymentOptionTypeWithLiterals, eQ as PaymentPaymentDetailsOneOf, c8 as PaymentPending, c9 as PaymentPendingPaymentDetailsOneOf, eR as PaymentReceiptInfoOneOf, eJ as PaymentRefund, c6 as PaymentRefundFailed, c5 as PaymentRefunded, E as PaymentStatus, hD as PaymentStatusUpdated, iR as PaymentStatusWithLiterals, ip as Payments, i3 as Phone, aJ as PhysicalProperties, e9 as PicassoAssigned, ea as PicassoUnassigned, bh as PickupAddress, bg as PickupDetails, K as PickupMethod, iV as PickupMethodWithLiterals, g_ as PickupReadyEmailSent, as as Placement, jv as PlacementWithLiterals, aG as PlainTextValue, cI as PlatformFee, cH as PlatformFeeSummary, fF as PlatformPaging, fI as PlatformPagingMetadata, fC as PlatformQuery, fD as PlatformQueryPagingMethodOneOf, eh as PreparePaymentCollectionRequest, dF as PreviewBuyerConfirmationEmailRequest, dG as PreviewBuyerConfirmationEmailResponse, dD as PreviewBuyerPaymentsReceivedEmailRequest, dE as PreviewBuyerPaymentsReceivedEmailResponse, dH as PreviewBuyerPickupConfirmationEmailRequest, dI as PreviewBuyerPickupConfirmationEmailResponse, dz as PreviewCancelEmailRequest, dA as PreviewCancelEmailResponse, dB as PreviewCancelRefundEmailRequest, dC as PreviewCancelRefundEmailResponse, dq as PreviewEmailByTypeRequest, dr as PreviewEmailByTypeResponse, a3 as PreviewEmailType, j6 as PreviewEmailTypeWithLiterals, ds as PreviewRefundEmailRequest, dy as PreviewRefundEmailResponse, dL as PreviewResendDownloadLinksEmailRequest, dM as PreviewResendDownloadLinksEmailResponse, dJ as PreviewShippingConfirmationEmailRequest, dK as PreviewShippingConfirmationEmailResponse, aX as PriceDescription, b6 as PriceSummary, aA as ProductName, h4 as PublicActivity, h5 as PublicActivityContentOneOf, fK as QueryOrderRequest, fL as QueryOrderResponse, i1 as QuotesAddress, ai as Reason, jl as ReasonWithLiterals, ch as ReceiptCreated, ci as ReceiptCreatedReceiptInfoOneOf, cl as ReceiptSent, cm as ReceiptSentReceiptInfoOneOf, jC as RecordManuallyCollectedPaymentApplicationErrors, em as RecordManuallyCollectedPaymentRequest, en as RecordManuallyCollectedPaymentResponse, ei as RedirectUrls, f4 as Refund, dt as RefundDetails, b$ as RefundInitiated, du as RefundItem, f8 as RefundItemsBreakdown, eK as RefundSideEffects, am as RefundStatus, f6 as RefundStatusInfo, jp as RefundStatusWithLiterals, f5 as RefundTransaction, ey as Refundability, ez as RefundabilityAdditionalRefundabilityInfoOneOf, ab as RefundableStatus, je as RefundableStatusWithLiterals, c7 as RefundedAsStoreCredit, c0 as RefundedPayment, c1 as RefundedPaymentKindOneOf, ca as RegularPayment, eS as RegularPaymentDetails, eT as RegularPaymentDetailsPaymentMethodDetailsOneOf, cb as RegularPaymentPaymentMethodDetailsOneOf, c2 as RegularPaymentRefund, hX as Reschedule, eL as RestockInfo, eM as RestockItem, ae as RestockType, jh as RestockTypeWithLiterals, cZ as RestoreInfo, bX as SavedPaymentMethod, a8 as ScheduledAction, jb as ScheduledActionWithLiterals, fM as SearchOrdersRequest, d5 as SendBuyerConfirmationEmailRequest, d6 as SendBuyerConfirmationEmailResponse, d7 as SendBuyerPaymentsReceivedEmailRequest, d8 as SendBuyerPaymentsReceivedEmailResponse, d9 as SendBuyerPickupConfirmationEmailRequest, da as SendBuyerPickupConfirmationEmailResponse, dd as SendBuyerShippingConfirmationEmailRequest, de as SendBuyerShippingConfirmationEmailResponse, dj as SendCancelRefundEmailRequest, dk as SendCancelRefundEmailResponse, dh as SendMerchantOrderReceivedNotificationRequest, di as SendMerchantOrderReceivedNotificationResponse, dn as SendMerchantOrderReceivedPushRequest, dp as SendMerchantOrderReceivedPushResponse, dl as SendRefundEmailRequest, dm as SendRefundEmailResponse, eG as ServiceProperties, d_ as ServiceProvisioned, d$ as ServiceRemoved, iz as SetOrderNumberCounterOptions, cS as SetOrderNumberCounterRequest, cT as SetOrderNumberCounterResponse, gY as ShippingAddressEdited, gU as ShippingConfirmationEmailSent, bW as ShippingInformation, bV as ShippingInformationChange, bj as ShippingPrice, dx as ShippingRefund, bk as ShippingRegion, dR as SiteCreated, a5 as SiteCreatedContext, j8 as SiteCreatedContextWithLiterals, dT as SiteDeleted, e1 as SiteHardDeleted, dY as SiteMarkedAsTemplate, dZ as SiteMarkedAsWixSite, dW as SitePublished, e6 as SitePurgedExternally, e0 as SiteRenamed, dS as SiteTransferred, dV as SiteUndeleted, dX as SiteUnpublished, e5 as SiteUrlChanged, ao as SortOrder, jr as SortOrderWithLiterals, fE as Sorting, ie as Source, au as SourceType, jx as SourceTypeWithLiterals, i8 as StandardDetails, a4 as State, j7 as StateWithLiterals, b9 as StreetAddress, e3 as StudioAssigned, ed as StudioTwoAssigned, ee as StudioTwoUnassigned, e4 as StudioUnassigned, i7 as Subdivision, at as SubdivisionType, jw as SubdivisionTypeWithLiterals, aS as SubscriptionDescription, y as SubscriptionFrequency, iO as SubscriptionFrequencyWithLiterals, aQ as SubscriptionInfo, aT as SubscriptionSettings, aR as SubscriptionTitle, cy as TagList, cx as Tags, hR as Task, hT as TaskAction, hU as TaskActionActionOneOf, hS as TaskKey, bl as TaxSummary, aZ as TaxableAddress, a_ as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, iQ as TaxableAddressTypeWithLiterals, ii as TotalPrice, bU as TotalPriceChange, gT as TrackingLinkAdded, gR as TrackingNumberAdded, gS as TrackingNumberEdited, af as TransactionStatus, ji as TransactionStatusWithLiterals, b1 as TranslatableString, bR as TranslatedValue, jF as TriggerRefundApplicationErrors, iD as TriggerRefundOptions, eI as TriggerRefundRequest, eN as TriggerRefundResponse, fw as TriggerReindexOrderRequest, ft as TriggerReindexRequest, fu as TriggerReindexResponse, go as UnArchiveOrderRequest, gp as UnArchiveOrderResponse, iH as UpdateActivityIdentifiers, h8 as UpdateActivityRequest, h9 as UpdateActivityResponse, gB as UpdateBillingContactDetailsRequest, gC as UpdateBillingContactDetailsResponse, gx as UpdateBuyerEmailRequest, gy as UpdateBuyerEmailResponse, gu as UpdateBuyerInfoRequest, gw as UpdateBuyerInfoResponse, fi as UpdateInternalDocumentsEvent, fj as UpdateInternalDocumentsEventOperationOneOf, hc as UpdateLineItemsDescriptionLinesRequest, he as UpdateLineItemsDescriptionLinesResponse, iG as UpdateOrderLineItem, iF as UpdateOrderLineItemIdentifiers, gD as UpdateOrderLineItemRequest, gE as UpdateOrderLineItemResponse, gF as UpdateOrderLineItemsRequest, gH as UpdateOrderLineItemsResponse, fV as UpdateOrderRequest, fW as UpdateOrderResponse, gz as UpdateOrderShippingAddressRequest, gA as UpdateOrderShippingAddressResponse, jG as UpdateOrderStatusApplicationErrors, hj as UpdateOrderStatusRequest, hk as UpdateOrderStatusResponse, eg as UserDomainMediaDisabled, ef as UserDomainMediaEnabled, hE as V1BulkMarkOrdersAsPaidRequest, hF as V1BulkMarkOrdersAsPaidResponse, hG as V1CreatePaymentGatewayOrderRequest, hH as V1CreatePaymentGatewayOrderResponse, g2 as V1LineItemDelta, g3 as V1LineItemDeltaDeltaOneOf, hB as V1MarkOrderAsPaidRequest, hC as V1MarkOrderAsPaidResponse, cN as V1RestockItem, eZ as V1ScheduledAction, bd as V1ShippingInformation, iu as Value, aw as ValueType, jz as ValueTypeWithLiterals, bc as VatId, H as VatType, iU as VatTypeWithLiterals, fr as VersionedDeleteByIdsOperation, fs as VersionedDocumentId, fq as VersionedDocumentUpdateOperation, an as VersioningMode, jq as VersioningModeWithLiterals, fe as VoidAuthorizedPaymentsRequest, a2 as WebhookIdentityType, j5 as WebhookIdentityTypeWithLiterals, W as WeightUnit, iT as WeightUnitWithLiterals, cj as WixReceipt, f2 as WixReceiptInfo, eb as WixelAssigned, ec as WixelUnassigned } from './ecom-v1-order-orders.universal-DrysmrGc.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 OrderUpdatedEnvelope, u as OrderCanceledEnvelope, v as OrderCreatedEnvelope, w as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-DWyiRjAz.js';
3
+ export { d4 as AccountInfo, iy as AccountInfoMetadata, d0 as ActionEvent, ak as ActionType, jn as ActionTypeWithLiterals, by as Activity, bz as ActivityContentOneOf, X as ActivityType, i_ as ActivityTypeWithLiterals, h7 as AddActivitiesRequest, h3 as AddActivityRequest, h6 as AddActivityResponse, gI as AddInternalActivityRequest, h2 as AddInternalActivityResponse, cv as AdditionalFee, g8 as AdditionalFeeDelta, g9 as AdditionalFeeDeltaDeltaOneOf, dM as AdditionalFeeRefund, $ as AdditionalFeeSource, j2 as AdditionalFeeSourceWithLiterals, b8 as Address, i2 as AddressDescription, ba as AddressLocation, b7 as AddressWithContact, z as AdjustmentType, iP as AdjustmentTypeWithLiterals, iJ as AggregateOrdersOptions, hK as AggregateOrdersRequest, hL as AggregateOrdersResponse, fm as AggregatedRefundSummary, eJ as ApplicationError, bo as AppliedDiscount, g6 as AppliedDiscountDelta, g7 as AppliedDiscountDeltaDeltaOneOf, bp as AppliedDiscountDiscountSourceOneOf, gi as ArchiveOrderRequest, gj as ArchiveOrderResponse, e3 as Asset, Z as AttributionSource, j0 as AttributionSourceWithLiterals, fa as AuthorizationActionFailureDetails, f9 as AuthorizationCapture, ah as AuthorizationCaptureStatus, jk as AuthorizationCaptureStatusWithLiterals, f8 as AuthorizationDetails, fb as AuthorizationVoid, ai as AuthorizationVoidStatus, jl as AuthorizationVoidStatusWithLiterals, bZ as AuthorizedPaymentCaptured, bY as AuthorizedPaymentCreated, b_ as AuthorizedPaymentVoided, cu as Balance, ct as BalanceSummary, iw as BaseEventMetadata, dj as BatchOfTriggerReindexOrderRequest, ic as BigDecimalWrapper, aV as BillingAdjustment, aW as BillingAdjustmentPriceSummary, eK as BulkActionMetadata, gm as BulkArchiveOrdersByFilterRequest, gn as BulkArchiveOrdersByFilterResponse, gk as BulkArchiveOrdersRequest, gl as BulkArchiveOrdersResponse, iA as BulkDeleteImportedOrdersOptions, cU as BulkDeleteImportedOrdersRequest, cV as BulkDeleteImportedOrdersResponse, hq as BulkMarkAsFulfilledByFilterRequest, hr as BulkMarkAsFulfilledByFilterResponse, ho as BulkMarkAsFulfilledRequest, hp as BulkMarkAsFulfilledResponse, hw as BulkMarkAsUnfulfilledByFilterRequest, hx as BulkMarkAsUnfulfilledByFilterResponse, hu as BulkMarkAsUnfulfilledRequest, hv as BulkMarkAsUnfulfilledResponse, eF as BulkMarkOrdersAsPaidRequest, eG as BulkMarkOrdersAsPaidResponse, eH as BulkOrderResult, ds as BulkSendBuyerPickupConfirmationEmailsRequest, dt as BulkSendBuyerPickupConfirmationEmailsResponse, dw as BulkSendBuyerShippingConfirmationEmailsRequest, dx as BulkSendBuyerShippingConfirmationEmailsResponse, hy as BulkSetBusinessLocationRequest, hz as BulkSetBusinessLocationResponse, hA as BulkSetBusinessLocationResult, gs as BulkUnArchiveOrdersByFilterRequest, gt as BulkUnArchiveOrdersByFilterResponse, gq as BulkUnArchiveOrdersRequest, gr as BulkUnArchiveOrdersResponse, hP as BulkUpdateOrderTagsRequest, hQ as BulkUpdateOrderTagsResult, fX as BulkUpdateOrdersRequest, b3 as BuyerInfo, b4 as BuyerInfoIdOneOf, gv as BuyerInfoUpdate, fq as CalculateRefundItemRequest, fs as CalculateRefundItemResponse, fp as CalculateRefundRequest, fr as CalculateRefundResponse, io as CalculatedTax, im as CalculatedTaxes, hW as Cancel, hh as CancelOrderRequest, fu as CaptureAuthorizedPaymentsRequest, aB as CatalogReference, cr as ChannelInfo, _ as ChannelType, j1 as ChannelTypeWithLiterals, iC as ChargeMembershipsOptions, eS as ChargeMembershipsRequest, eW as ChargeMembershipsResponse, fv as ChargeSavedPaymentMethodRequest, fw as ChargeSavedPaymentMethodResponse, a1 as ChargeType, j4 as ChargeTypeWithLiterals, fd as Chargeback, cn as ChargebackCreated, co as ChargebackReversed, al as ChargebackStatus, jo as ChargebackStatusWithLiterals, eQ as ChargedBy, aH as Color, fY as CommitDeltasRequest, gc as CommitDeltasResponse, ge as CommittedDiffs, gf as CommittedDiffsShippingUpdateInfoOneOf, i5 as CommonAddress, i6 as CommonAddressStreetOneOf, jH as CommonSearchWithEntityContext, i4 as Company, hV as Complete, bq as Coupon, fQ as CreateOrderRequest, fU as CreateOrderResponse, eP as CreatePaymentGatewayOrderRequest, eR as CreatePaymentGatewayOrderResponse, cp as CreatedBy, cq as CreatedByStringOneOf, cc as CreditCardDetails, f7 as CreditCardPaymentMethodDetails, b5 as CurrencyConversionDetails, fG as CursorPaging, fP as CursorPagingMetadata, fN as CursorSearch, fO as CursorSearchPagingMethodOneOf, fJ as Cursors, bA as CustomActivity, cD as CustomAllowedActions, cs as CustomField, av as CustomFieldGroup, jy as CustomFieldGroupWithLiterals, it as CustomFieldValue, h$ as Customer, hN as DecrementData, hM as DecrementItemsQuantityRequest, hO as DecrementItemsQuantityResponse, ey as DelayedCaptureSettings, iI as DeleteActivityIdentifiers, ha as DeleteActivityRequest, hb as DeleteActivityResponse, da as DeleteByFilterOperation, d9 as DeleteByIdsOperation, e7 as DeleteContext, a8 as DeleteStatus, jb as DeleteStatusWithLiterals, be as DeliveryLogistics, bf as DeliveryLogisticsAddressOneOf, bi as DeliveryTimeSlot, aq as DeltaPaymentOptionType, jt as DeltaPaymentOptionTypeWithLiterals, iv as Deposit, ax as DepositType, jA as DepositTypeWithLiterals, aC as DescriptionLine, aE as DescriptionLineDescriptionLineValueOneOf, aF as DescriptionLineName, D as DescriptionLineType, iK as DescriptionLineTypeWithLiterals, aD as DescriptionLineValueOneOf, fx as DiffmatokyPayload, aP as DigitalFile, ik as Discount, il as DiscountOneDiscountTypeOneOf, Q as DiscountReason, iY as DiscountReasonWithLiterals, bt as DiscountRule, bu as DiscountRuleName, N as DiscountType, iX as DiscountTypeWithLiterals, cW as DomainEvent, cX as DomainEventBodyOneOf, gQ as DownloadLinkSent, bG as DraftOrderChangesApplied, ga as DraftOrderCommitSettings, fZ as DraftOrderDiffs, g0 as DraftOrderDiffsBillingUpdateInfoOneOf, f$ as DraftOrderDiffsBuyerUpdateInfoOneOf, g1 as DraftOrderDiffsRecipientUpdateInfoOneOf, f_ as DraftOrderDiffsShippingUpdateInfoOneOf, ez as Duration, aa as DurationUnit, jd as DurationUnitWithLiterals, i0 as Email, gZ as EmailEdited, di as Empty, cY as EntityCreatedEvent, c$ as EntityDeletedEvent, c_ as EntityUpdatedEvent, fy as ErrorInformation, ix as EventMetadata, a$ as ExtendedFields, ck as ExternalReceipt, fi as ExternalReceiptInfo, aI as FocalPoint, cG as FormIdentifier, cF as FormInfo, aU as FreeTrialPeriod, gX as FulfillerEmailSent, F as FulfillmentStatus, hn as FulfillmentStatusUpdated, iS as FulfillmentStatusWithLiterals, cw as FulfillmentStatusesAggregate, bb as FullAddressContactDetails, fz as GetOrderRequest, fA as GetOrderResponse, eA as GetPaymentCollectabilityStatusRequest, eL as GetRefundabilityStatusRequest, eM as GetRefundabilityStatusResponse, hI as GetShipmentsRequest, hJ as GetShipmentsResponse, ff as GiftCardPaymentDetails, c3 as GiftCardPaymentRefund, hZ as IdAndVersion, d2 as IdentificationData, d3 as IdentificationDataIdOneOf, cQ as ImportOrderRequest, cR as ImportOrderResponse, cP as ImportedOrderDeleted, gJ as InternalActivity, gK as InternalActivityContentOneOf, d7 as InternalDocument, db as InternalDocumentUpdateByFilterOperation, d8 as InternalDocumentUpdateOperation, fB as InternalQueryOrdersRequest, fH as InternalQueryOrdersResponse, dc as InternalUpdateExistingOperation, ar as InventoryAction, ju as InventoryActionWithLiterals, gb as InventoryUpdateDetails, gV as InvoiceAdded, i9 as InvoiceDates, is as InvoiceDynamicPriceTotals, h_ as InvoiceFields, gW as InvoiceSent, hY as InvoiceSentEvent, ay as InvoiceStatus, jB as InvoiceStatusWithLiterals, iq as InvoicesPayment, g5 as ItemChangedDetails, bw as ItemCombination, bx as ItemCombinationLineItem, eI as ItemMetadata, b2 as ItemModifier, aM as ItemTaxFullDetails, aK as ItemType, aL as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, iL as ItemTypePresetWithLiterals, ij as ItemizedFee, J as JurisdictionType, iN as JurisdictionTypeWithLiterals, ib as LineItem, bS as LineItemAmount, bJ as LineItemChanges, gg as LineItemDelta, gh as LineItemDeltaDeltaOneOf, bN as LineItemDescriptionLineChange, bv as LineItemDiscount, bF as LineItemExchangeData, ig as LineItemMetaData, bO as LineItemModifiersChange, bL as LineItemPriceChange, bM as LineItemProductNameChange, bK as LineItemQuantityChange, R as LineItemQuantityChangeType, iZ as LineItemQuantityChangeTypeWithLiterals, dL as LineItemRefund, fo as LineItemRefundSummary, id as LineItemTax, aO as LineItemTaxBreakdown, aN as LineItemTaxInfo, hd as LineItemUpdate, ia as LineItems, ih as Locale, cz as Location, aY as LocationAndQuantity, bT as ManagedAdditionalFee, bQ as ManagedDiscount, bP as ManagedLineItem, ae as ManuallyRefundableReason, jh as ManuallyRefundableReasonWithLiterals, hl as MarkAsFulfilledRequest, hm as MarkAsFulfilledResponse, hs as MarkAsUnfulfilledRequest, ht as MarkAsUnfulfilledResponse, eD as MarkOrderAsPaidRequest, eE as MarkOrderAsPaidResponse, hf as MarkOrderAsSeenByHumanRequest, hg as MarkOrderAsSeenByHumanResponse, gG as MaskedOrderLineItem, eT as MembershipChargeItem, eU as MembershipName, fg as MembershipPaymentDetails, c4 as MembershipPaymentRefund, am as MembershipPaymentStatus, jp as MembershipPaymentStatusWithLiterals, bB as MerchantComment, br as MerchantDiscount, bs as MerchantDiscountMerchantDiscountReasonOneOf, d1 as MessageEnvelope, ir as MetaData, e1 as MetaSiteSpecialEvent, e2 as MetaSiteSpecialEventPayloadOneOf, b0 as ModifierGroup, a7 as Namespace, eh as NamespaceChanged, ja as NamespaceWithLiterals, bE as NewExchangeOrderCreated, ad as NonRefundableReason, jg as NonRefundableReasonWithLiterals, em as OdeditorAssigned, en as OdeditorUnassigned, a0 as OrderActionType, j3 as OrderActionTypeWithLiterals, Y as OrderActivityTypeEnumActivityType, i$ as OrderActivityTypeEnumActivityTypeWithLiterals, ap as OrderApprovalStrategy, js as OrderApprovalStrategyWithLiterals, cJ as OrderApproved, gP as OrderCanceled, hi as OrderCanceledEventOrderCanceled, bH as OrderChange, bI as OrderChangeValueOneOf, fT as OrderCreateNotifications, bD as OrderCreatedFromExchange, fR as OrderCreationSettings, fS as OrderCreationSettingsEditableByOneOf, gd as OrderDeltasCommitted, gN as OrderFulfilled, cO as OrderImported, cM as OrderItemsRestocked, az as OrderLineItem, g4 as OrderLineItemChangedDetails, gO as OrderNotFulfilled, gM as OrderPaid, g$ as OrderPartiallyPaid, h0 as OrderPending, gL as OrderPlaced, bC as OrderRefunded, h1 as OrderRejected, cL as OrderRejectedEventOrderRejected, iE as OrderSearchSpec, cA as OrderSettings, cB as OrderSettingsAllowedActionsOneOf, cC as OrderSettingsEditableByOneOf, L as OrderStatus, iW as OrderStatusWithLiterals, bn as OrderTaxBreakdown, bm as OrderTaxInfo, f1 as OrderTransactions, cK as OrdersExperiments, cE as OwnerApps, f2 as Payment, cd as PaymentCanceled, ce as PaymentCanceledPaymentDetailsOneOf, ab as PaymentCollectabilityStatus, je as PaymentCollectabilityStatusWithLiterals, jE as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, iB as PaymentCollectionCreatePaymentGatewayOrderOptions, jD as PaymentCollectionMarkOrderAsPaidApplicationErrors, cf as PaymentDeclined, cg as PaymentDeclinedPaymentDetailsOneOf, fe as PaymentMethodName, x as PaymentOptionType, iM as PaymentOptionTypeWithLiterals, f3 as PaymentPaymentDetailsOneOf, c8 as PaymentPending, c9 as PaymentPendingPaymentDetailsOneOf, f4 as PaymentReceiptInfoOneOf, eY as PaymentRefund, c6 as PaymentRefundFailed, c5 as PaymentRefunded, E as PaymentStatus, hD as PaymentStatusUpdated, iR as PaymentStatusWithLiterals, ip as Payments, i3 as Phone, aJ as PhysicalProperties, eo as PicassoAssigned, ep as PicassoUnassigned, bh as PickupAddress, bg as PickupDetails, K as PickupMethod, iV as PickupMethodWithLiterals, g_ as PickupReadyEmailSent, as as Placement, jv as PlacementWithLiterals, aG as PlainTextValue, cI as PlatformFee, cH as PlatformFeeSummary, fF as PlatformPaging, fI as PlatformPagingMetadata, fC as PlatformQuery, fD as PlatformQueryPagingMethodOneOf, ew as PreparePaymentCollectionRequest, dV as PreviewBuyerConfirmationEmailRequest, dW as PreviewBuyerConfirmationEmailResponse, dT as PreviewBuyerPaymentsReceivedEmailRequest, dU as PreviewBuyerPaymentsReceivedEmailResponse, dX as PreviewBuyerPickupConfirmationEmailRequest, dY as PreviewBuyerPickupConfirmationEmailResponse, dP as PreviewCancelEmailRequest, dQ as PreviewCancelEmailResponse, dR as PreviewCancelRefundEmailRequest, dS as PreviewCancelRefundEmailResponse, dG as PreviewEmailByTypeRequest, dH as PreviewEmailByTypeResponse, a4 as PreviewEmailType, j7 as PreviewEmailTypeWithLiterals, dI as PreviewRefundEmailRequest, dO as PreviewRefundEmailResponse, d$ as PreviewResendDownloadLinksEmailRequest, e0 as PreviewResendDownloadLinksEmailResponse, dZ as PreviewShippingConfirmationEmailRequest, d_ as PreviewShippingConfirmationEmailResponse, aX as PriceDescription, b6 as PriceSummary, aA as ProductName, h4 as PublicActivity, h5 as PublicActivityContentOneOf, fK as QueryOrderRequest, fL as QueryOrderResponse, i1 as QuotesAddress, aj as Reason, jm as ReasonWithLiterals, ch as ReceiptCreated, ci as ReceiptCreatedReceiptInfoOneOf, cl as ReceiptSent, cm as ReceiptSentReceiptInfoOneOf, jC as RecordManuallyCollectedPaymentApplicationErrors, eB as RecordManuallyCollectedPaymentRequest, eC as RecordManuallyCollectedPaymentResponse, ex as RedirectUrls, fj as Refund, dJ as RefundDetails, b$ as RefundInitiated, dK as RefundItem, fn as RefundItemsBreakdown, eZ as RefundSideEffects, an as RefundStatus, fl as RefundStatusInfo, jq as RefundStatusWithLiterals, fk as RefundTransaction, eN as Refundability, eO as RefundabilityAdditionalRefundabilityInfoOneOf, ac as RefundableStatus, jf as RefundableStatusWithLiterals, c7 as RefundedAsStoreCredit, c0 as RefundedPayment, c1 as RefundedPaymentKindOneOf, ca as RegularPayment, f5 as RegularPaymentDetails, f6 as RegularPaymentDetailsPaymentMethodDetailsOneOf, cb as RegularPaymentPaymentMethodDetailsOneOf, c2 as RegularPaymentRefund, hX as Reschedule, e_ as RestockInfo, e$ as RestockItem, af as RestockType, ji as RestockTypeWithLiterals, cZ as RestoreInfo, bX as SavedPaymentMethod, a9 as ScheduledAction, jc as ScheduledActionWithLiterals, fM as SearchOrdersRequest, dl as SendBuyerConfirmationEmailRequest, dm as SendBuyerConfirmationEmailResponse, dn as SendBuyerPaymentsReceivedEmailRequest, dp as SendBuyerPaymentsReceivedEmailResponse, dq as SendBuyerPickupConfirmationEmailRequest, dr as SendBuyerPickupConfirmationEmailResponse, du as SendBuyerShippingConfirmationEmailRequest, dv as SendBuyerShippingConfirmationEmailResponse, dA as SendCancelRefundEmailRequest, dB as SendCancelRefundEmailResponse, dy as SendMerchantOrderReceivedNotificationRequest, dz as SendMerchantOrderReceivedNotificationResponse, dE as SendMerchantOrderReceivedPushRequest, dF as SendMerchantOrderReceivedPushResponse, dC as SendRefundEmailRequest, dD as SendRefundEmailResponse, eV as ServiceProperties, ed as ServiceProvisioned, ee as ServiceRemoved, iz as SetOrderNumberCounterOptions, cS as SetOrderNumberCounterRequest, cT as SetOrderNumberCounterResponse, gY as ShippingAddressEdited, gU as ShippingConfirmationEmailSent, bW as ShippingInformation, bV as ShippingInformationChange, bj as ShippingPrice, dN as ShippingRefund, bk as ShippingRegion, e4 as SiteCreated, a6 as SiteCreatedContext, j9 as SiteCreatedContextWithLiterals, e6 as SiteDeleted, eg as SiteHardDeleted, eb as SiteMarkedAsTemplate, ec as SiteMarkedAsWixSite, e9 as SitePublished, el as SitePurgedExternally, ef as SiteRenamed, e5 as SiteTransferred, e8 as SiteUndeleted, ea as SiteUnpublished, ek as SiteUrlChanged, ao as SortOrder, jr as SortOrderWithLiterals, fE as Sorting, ie as Source, au as SourceType, jx as SourceTypeWithLiterals, i8 as StandardDetails, a5 as State, j8 as StateWithLiterals, b9 as StreetAddress, ei as StudioAssigned, es as StudioTwoAssigned, et as StudioTwoUnassigned, ej as StudioUnassigned, i7 as Subdivision, at as SubdivisionType, jw as SubdivisionTypeWithLiterals, aS as SubscriptionDescription, y as SubscriptionFrequency, iO as SubscriptionFrequencyWithLiterals, aQ as SubscriptionInfo, aT as SubscriptionSettings, aR as SubscriptionTitle, cy as TagList, cx as Tags, hR as Task, hT as TaskAction, hU as TaskActionActionOneOf, hS as TaskKey, bl as TaxSummary, aZ as TaxableAddress, a_ as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, iQ as TaxableAddressTypeWithLiterals, ii as TotalPrice, bU as TotalPriceChange, gT as TrackingLinkAdded, gR as TrackingNumberAdded, gS as TrackingNumberEdited, ag as TransactionStatus, jj as TransactionStatusWithLiterals, b1 as TranslatableString, bR as TranslatedValue, jF as TriggerRefundApplicationErrors, iD as TriggerRefundOptions, eX as TriggerRefundRequest, f0 as TriggerRefundResponse, dk as TriggerReindexOrderRequest, dg as TriggerReindexRequest, dh as TriggerReindexResponse, go as UnArchiveOrderRequest, gp as UnArchiveOrderResponse, iH as UpdateActivityIdentifiers, h8 as UpdateActivityRequest, h9 as UpdateActivityResponse, gB as UpdateBillingContactDetailsRequest, gC as UpdateBillingContactDetailsResponse, gx as UpdateBuyerEmailRequest, gy as UpdateBuyerEmailResponse, gu as UpdateBuyerInfoRequest, gw as UpdateBuyerInfoResponse, d5 as UpdateInternalDocumentsEvent, d6 as UpdateInternalDocumentsEventOperationOneOf, hc as UpdateLineItemsDescriptionLinesRequest, he as UpdateLineItemsDescriptionLinesResponse, iG as UpdateOrderLineItem, iF as UpdateOrderLineItemIdentifiers, gD as UpdateOrderLineItemRequest, gE as UpdateOrderLineItemResponse, gF as UpdateOrderLineItemsRequest, gH as UpdateOrderLineItemsResponse, fV as UpdateOrderRequest, fW as UpdateOrderResponse, gz as UpdateOrderShippingAddressRequest, gA as UpdateOrderShippingAddressResponse, jG as UpdateOrderStatusApplicationErrors, hj as UpdateOrderStatusRequest, hk as UpdateOrderStatusResponse, ev as UserDomainMediaDisabled, eu as UserDomainMediaEnabled, hE as V1BulkMarkOrdersAsPaidRequest, hF as V1BulkMarkOrdersAsPaidResponse, hG as V1CreatePaymentGatewayOrderRequest, hH as V1CreatePaymentGatewayOrderResponse, g2 as V1LineItemDelta, g3 as V1LineItemDeltaDeltaOneOf, hB as V1MarkOrderAsPaidRequest, hC as V1MarkOrderAsPaidResponse, cN as V1RestockItem, fc as V1ScheduledAction, bd as V1ShippingInformation, iu as Value, aw as ValueType, jz as ValueTypeWithLiterals, bc as VatId, H as VatType, iU as VatTypeWithLiterals, de as VersionedDeleteByIdsOperation, df as VersionedDocumentId, dd as VersionedDocumentUpdateOperation, a3 as VersioningMode, j6 as VersioningModeWithLiterals, ft as VoidAuthorizedPaymentsRequest, a2 as WebhookIdentityType, j5 as WebhookIdentityTypeWithLiterals, W as WeightUnit, iT as WeightUnitWithLiterals, cj as WixReceipt, fh as WixReceiptInfo, eq as WixelAssigned, er as WixelUnassigned } from './ecom-v1-order-orders.universal-DWyiRjAz.js';
4
4
 
5
5
  declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
6
6
  interface PreparePaymentCollectionSignature {
@@ -2054,6 +2054,12 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
2054
2054
  WebhookIdentityType2["APP"] = "APP";
2055
2055
  return WebhookIdentityType2;
2056
2056
  })(WebhookIdentityType || {});
2057
+ var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
2058
+ VersioningMode2["DEFAULT"] = "DEFAULT";
2059
+ VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
2060
+ VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
2061
+ return VersioningMode2;
2062
+ })(VersioningMode || {});
2057
2063
  var PreviewEmailType = /* @__PURE__ */ ((PreviewEmailType2) => {
2058
2064
  PreviewEmailType2["ORDER_PLACED"] = "ORDER_PLACED";
2059
2065
  PreviewEmailType2["DOWNLOAD_LINKS"] = "DOWNLOAD_LINKS";
@@ -2112,6 +2118,7 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
2112
2118
  Namespace2["TWINS"] = "TWINS";
2113
2119
  Namespace2["NANO"] = "NANO";
2114
2120
  Namespace2["BASE44"] = "BASE44";
2121
+ Namespace2["CHANNELS"] = "CHANNELS";
2115
2122
  return Namespace2;
2116
2123
  })(Namespace || {});
2117
2124
  var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
@@ -2241,12 +2248,6 @@ var RefundStatus = /* @__PURE__ */ ((RefundStatus2) => {
2241
2248
  RefundStatus2["STARTED"] = "STARTED";
2242
2249
  return RefundStatus2;
2243
2250
  })(RefundStatus || {});
2244
- var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
2245
- VersioningMode2["DEFAULT"] = "DEFAULT";
2246
- VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
2247
- VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
2248
- return VersioningMode2;
2249
- })(VersioningMode || {});
2250
2251
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
2251
2252
  SortOrder2["ASC"] = "ASC";
2252
2253
  SortOrder2["DESC"] = "DESC";