@wix/auto_sdk_ecom_orders 1.0.219 → 1.0.221

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/build/cjs/{ecom-v1-order-orders.universal-CXi8ZvaS.d.ts → ecom-v1-order-orders.universal-cW_bf4vG.d.ts} +176 -205
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +6 -27
  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 +6 -27
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +176 -205
  9. package/build/cjs/meta.js +6 -27
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-CXi8ZvaS.d.mts → ecom-v1-order-orders.universal-cW_bf4vG.d.mts} +176 -205
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +6 -27
  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 +6 -27
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +176 -205
  19. package/build/es/meta.mjs +6 -27
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-BpdIFm1L.d.ts → ecom-v1-order-orders.universal-UePQMlea.d.ts} +176 -205
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +6 -27
  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 +6 -27
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +176 -205
  29. package/build/internal/cjs/meta.js +6 -27
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-BpdIFm1L.d.mts → ecom-v1-order-orders.universal-UePQMlea.d.mts} +176 -205
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +6 -27
  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 +6 -27
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +176 -205
  39. package/build/internal/es/meta.mjs +6 -27
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -775,14 +775,13 @@ interface BillingAdjustment {
775
775
  priceSummary?: BillingAdjustmentPriceSummary;
776
776
  }
777
777
  declare enum AdjustmentType {
778
- UNKNOWN_ADJUSTMENT_TYPE = "UNKNOWN_ADJUSTMENT_TYPE",
779
778
  /** Adjustment increases the total amount due to changes like covering extra billing days. Typically results in an additional fee. */
780
779
  EXTRA_CHARGE = "EXTRA_CHARGE",
781
780
  /** Adjustment reduces the total amount due to changes like covering fewer billing days. Typically results in a credit or discount. */
782
781
  CREDIT = "CREDIT"
783
782
  }
784
783
  /** @enumType */
785
- type AdjustmentTypeWithLiterals = AdjustmentType | 'UNKNOWN_ADJUSTMENT_TYPE' | 'EXTRA_CHARGE' | 'CREDIT';
784
+ type AdjustmentTypeWithLiterals = AdjustmentType | 'EXTRA_CHARGE' | 'CREDIT';
786
785
  interface BillingAdjustmentPriceSummary {
787
786
  /** Subtotal of adjustment, before tax. */
788
787
  subtotal?: Price;
@@ -843,13 +842,12 @@ interface TaxableAddressTaxableAddressDataOneOf {
843
842
  addressType?: TaxableAddressTypeWithLiterals;
844
843
  }
845
844
  declare enum TaxableAddressType {
846
- UNKNOWN_TAXABLE_ADDRESS = "UNKNOWN_TAXABLE_ADDRESS",
847
845
  BUSINESS = "BUSINESS",
848
846
  BILLING = "BILLING",
849
847
  SHIPPING = "SHIPPING"
850
848
  }
851
849
  /** @enumType */
852
- type TaxableAddressTypeWithLiterals = TaxableAddressType | 'UNKNOWN_TAXABLE_ADDRESS' | 'BUSINESS' | 'BILLING' | 'SHIPPING';
850
+ type TaxableAddressTypeWithLiterals = TaxableAddressType | 'BUSINESS' | 'BILLING' | 'SHIPPING';
853
851
  interface ExtendedFields {
854
852
  /**
855
853
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
@@ -1273,12 +1271,11 @@ interface PickupAddress {
1273
1271
  subdivisionFullname?: string | null;
1274
1272
  }
1275
1273
  declare enum PickupMethod {
1276
- UNKNOWN_METHOD = "UNKNOWN_METHOD",
1277
1274
  STORE_PICKUP = "STORE_PICKUP",
1278
1275
  PICKUP_POINT = "PICKUP_POINT"
1279
1276
  }
1280
1277
  /** @enumType */
1281
- type PickupMethodWithLiterals = PickupMethod | 'UNKNOWN_METHOD' | 'STORE_PICKUP' | 'PICKUP_POINT';
1278
+ type PickupMethodWithLiterals = PickupMethod | 'STORE_PICKUP' | 'PICKUP_POINT';
1282
1279
  interface DeliveryTimeSlot {
1283
1280
  /** Delivery slot starting time. */
1284
1281
  from?: Date | null;
@@ -2334,10 +2331,6 @@ declare enum ActivityType {
2334
2331
  CUSTOM_ACTIVITY = "CUSTOM_ACTIVITY",
2335
2332
  /** Comment added to the order by a merchant. */
2336
2333
  MERCHANT_COMMENT = "MERCHANT_COMMENT",
2337
- /** Order was created as a result of an exchange. */
2338
- ORDER_CREATED_FROM_EXCHANGE = "ORDER_CREATED_FROM_EXCHANGE",
2339
- /** New exchange order was created from this order. */
2340
- NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
2341
2334
  /** Partial payment was received for the order. */
2342
2335
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
2343
2336
  /** Changes were applied to a draft order. */
@@ -2426,10 +2419,8 @@ declare enum ActivityType {
2426
2419
  CHARGEBACK_REVERSED = "CHARGEBACK_REVERSED"
2427
2420
  }
2428
2421
  /** @enumType */
2429
- type ActivityTypeWithLiterals = ActivityType | 'ORDER_REFUNDED' | 'ORDER_PLACED' | 'ORDER_PAID' | 'ORDER_FULFILLED' | 'ORDER_NOT_FULFILLED' | 'ORDER_CANCELED' | 'DOWNLOAD_LINK_SENT' | 'TRACKING_NUMBER_ADDED' | 'TRACKING_NUMBER_EDITED' | 'TRACKING_LINK_ADDED' | 'SHIPPING_CONFIRMATION_EMAIL_SENT' | 'INVOICE_ADDED' | 'INVOICE_REMOVED' | 'INVOICE_SENT' | 'FULFILLER_EMAIL_SENT' | 'SHIPPING_ADDRESS_EDITED' | 'EMAIL_EDITED' | 'PICKUP_READY_EMAIL_SENT' | 'CUSTOM_ACTIVITY' | 'MERCHANT_COMMENT' | 'ORDER_CREATED_FROM_EXCHANGE' | 'NEW_EXCHANGE_ORDER_CREATED' | 'ORDER_PARTIALLY_PAID' | 'DRAFT_ORDER_CHANGES_APPLIED' | 'SAVED_PAYMENT_METHOD' | 'AUTHORIZED_PAYMENT_CREATED' | 'AUTHORIZED_PAYMENT_CAPTURED' | 'AUTHORIZED_PAYMENT_VOIDED' | 'REFUND_INITIATED' | 'PAYMENT_REFUNDED' | 'PAYMENT_REFUND_FAILED' | 'REFUNDED_AS_STORE_CREDIT' | 'PAYMENT_PENDING' | 'PAYMENT_CANCELED' | 'PAYMENT_DECLINED' | 'ORDER_PENDING' | 'ORDER_REJECTED' | 'RECEIPT_CREATED' | 'RECEIPT_SENT' | 'CHARGEBACK_CREATED' | 'CHARGEBACK_REVERSED';
2422
+ type ActivityTypeWithLiterals = ActivityType | 'ORDER_REFUNDED' | 'ORDER_PLACED' | 'ORDER_PAID' | 'ORDER_FULFILLED' | 'ORDER_NOT_FULFILLED' | 'ORDER_CANCELED' | 'DOWNLOAD_LINK_SENT' | 'TRACKING_NUMBER_ADDED' | 'TRACKING_NUMBER_EDITED' | 'TRACKING_LINK_ADDED' | 'SHIPPING_CONFIRMATION_EMAIL_SENT' | 'INVOICE_ADDED' | 'INVOICE_REMOVED' | 'INVOICE_SENT' | 'FULFILLER_EMAIL_SENT' | 'SHIPPING_ADDRESS_EDITED' | 'EMAIL_EDITED' | 'PICKUP_READY_EMAIL_SENT' | 'CUSTOM_ACTIVITY' | 'MERCHANT_COMMENT' | 'ORDER_PARTIALLY_PAID' | 'DRAFT_ORDER_CHANGES_APPLIED' | 'SAVED_PAYMENT_METHOD' | 'AUTHORIZED_PAYMENT_CREATED' | 'AUTHORIZED_PAYMENT_CAPTURED' | 'AUTHORIZED_PAYMENT_VOIDED' | 'REFUND_INITIATED' | 'PAYMENT_REFUNDED' | 'PAYMENT_REFUND_FAILED' | 'REFUNDED_AS_STORE_CREDIT' | 'PAYMENT_PENDING' | 'PAYMENT_CANCELED' | 'PAYMENT_DECLINED' | 'ORDER_PENDING' | 'ORDER_REJECTED' | 'RECEIPT_CREATED' | 'RECEIPT_SENT' | 'CHARGEBACK_CREATED' | 'CHARGEBACK_REVERSED';
2430
2423
  declare enum OrderActivityTypeEnumActivityType {
2431
- /** Default value. This value is unused. */
2432
- UNKNOWN_ACTIVITY_TYPE = "UNKNOWN_ACTIVITY_TYPE",
2433
2424
  /** New order was created and placed. */
2434
2425
  ORDER_PLACED = "ORDER_PLACED",
2435
2426
  /** Order payment was completed and confirmed. */
@@ -2464,14 +2455,8 @@ declare enum OrderActivityTypeEnumActivityType {
2464
2455
  EMAIL_EDITED = "EMAIL_EDITED",
2465
2456
  /** Email notification for pickup readiness was sent. */
2466
2457
  PICKUP_READY_EMAIL_SENT = "PICKUP_READY_EMAIL_SENT",
2467
- /** Custom activity created by a third-party application. */
2468
- CUSTOM_ACTIVITY = "CUSTOM_ACTIVITY",
2469
2458
  /** Comment added to the order by a merchant. */
2470
2459
  MERCHANT_COMMENT = "MERCHANT_COMMENT",
2471
- /** Order was created as a result of an exchange. */
2472
- ORDER_CREATED_FROM_EXCHANGE = "ORDER_CREATED_FROM_EXCHANGE",
2473
- /** New exchange order was created from this order. */
2474
- NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
2475
2460
  /** Partial payment was received for the order. */
2476
2461
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
2477
2462
  /** Changes were applied to a draft order. */
@@ -2562,7 +2547,7 @@ declare enum OrderActivityTypeEnumActivityType {
2562
2547
  ORDER_REFUNDED = "ORDER_REFUNDED"
2563
2548
  }
2564
2549
  /** @enumType */
2565
- type OrderActivityTypeEnumActivityTypeWithLiterals = OrderActivityTypeEnumActivityType | 'UNKNOWN_ACTIVITY_TYPE' | 'ORDER_PLACED' | 'ORDER_PAID' | 'ORDER_FULFILLED' | 'ORDER_NOT_FULFILLED' | 'ORDER_CANCELED' | 'DOWNLOAD_LINK_SENT' | 'TRACKING_NUMBER_ADDED' | 'TRACKING_NUMBER_EDITED' | 'TRACKING_LINK_ADDED' | 'SHIPPING_CONFIRMATION_EMAIL_SENT' | 'INVOICE_ADDED' | 'INVOICE_REMOVED' | 'INVOICE_SENT' | 'FULFILLER_EMAIL_SENT' | 'SHIPPING_ADDRESS_EDITED' | 'EMAIL_EDITED' | 'PICKUP_READY_EMAIL_SENT' | 'CUSTOM_ACTIVITY' | 'MERCHANT_COMMENT' | 'ORDER_CREATED_FROM_EXCHANGE' | 'NEW_EXCHANGE_ORDER_CREATED' | 'ORDER_PARTIALLY_PAID' | 'DRAFT_ORDER_CHANGES_APPLIED' | 'SAVED_PAYMENT_METHOD' | 'AUTHORIZED_PAYMENT_CREATED' | 'AUTHORIZED_PAYMENT_CAPTURED' | 'AUTHORIZED_PAYMENT_VOIDED' | 'REFUND_INITIATED' | 'PAYMENT_REFUNDED' | 'PAYMENT_REFUND_FAILED' | 'REFUNDED_AS_STORE_CREDIT' | 'PAYMENT_PENDING' | 'PAYMENT_CANCELED' | 'PAYMENT_DECLINED' | 'ORDER_PENDING' | 'ORDER_REJECTED' | 'RECEIPT_CREATED' | 'RECEIPT_SENT' | 'CHARGEBACK_CREATED' | 'CHARGEBACK_REVERSED' | 'ORDER_REFUNDED';
2550
+ type OrderActivityTypeEnumActivityTypeWithLiterals = OrderActivityTypeEnumActivityType | 'ORDER_PLACED' | 'ORDER_PAID' | 'ORDER_FULFILLED' | 'ORDER_NOT_FULFILLED' | 'ORDER_CANCELED' | 'DOWNLOAD_LINK_SENT' | 'TRACKING_NUMBER_ADDED' | 'TRACKING_NUMBER_EDITED' | 'TRACKING_LINK_ADDED' | 'SHIPPING_CONFIRMATION_EMAIL_SENT' | 'INVOICE_ADDED' | 'INVOICE_REMOVED' | 'INVOICE_SENT' | 'FULFILLER_EMAIL_SENT' | 'SHIPPING_ADDRESS_EDITED' | 'EMAIL_EDITED' | 'PICKUP_READY_EMAIL_SENT' | 'MERCHANT_COMMENT' | 'ORDER_PARTIALLY_PAID' | 'DRAFT_ORDER_CHANGES_APPLIED' | 'SAVED_PAYMENT_METHOD' | 'AUTHORIZED_PAYMENT_CREATED' | 'AUTHORIZED_PAYMENT_CAPTURED' | 'AUTHORIZED_PAYMENT_VOIDED' | 'REFUND_INITIATED' | 'PAYMENT_REFUNDED' | 'PAYMENT_REFUND_FAILED' | 'REFUNDED_AS_STORE_CREDIT' | 'PAYMENT_PENDING' | 'PAYMENT_CANCELED' | 'PAYMENT_DECLINED' | 'ORDER_PENDING' | 'ORDER_REJECTED' | 'RECEIPT_CREATED' | 'RECEIPT_SENT' | 'CHARGEBACK_CREATED' | 'CHARGEBACK_REVERSED' | 'ORDER_REFUNDED';
2566
2551
  declare enum AttributionSource {
2567
2552
  UNSPECIFIED = "UNSPECIFIED",
2568
2553
  FACEBOOK_ADS = "FACEBOOK_ADS"
@@ -2815,7 +2800,6 @@ interface AdditionalFee {
2815
2800
  lineItemIds?: string[];
2816
2801
  }
2817
2802
  declare enum AdditionalFeeSource {
2818
- UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
2819
2803
  /** The additional fee was added by an additional fee service plugin. */
2820
2804
  SERVICE_PLUGIN = "SERVICE_PLUGIN",
2821
2805
  /** The additional fee was added to the item by a catalog or custom line item. */
@@ -2828,7 +2812,7 @@ declare enum AdditionalFeeSource {
2828
2812
  PLATFORM = "PLATFORM"
2829
2813
  }
2830
2814
  /** @enumType */
2831
- type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
2815
+ type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
2832
2816
  interface FulfillmentStatusesAggregate {
2833
2817
  /** Unique string values based on Fulfillment entities statuses */
2834
2818
  statuses?: string[] | null;
@@ -3059,7 +3043,6 @@ interface PlatformFee {
3059
3043
  percentageRate?: string;
3060
3044
  }
3061
3045
  declare enum ChargeType {
3062
- UNKNOWN_CHARGE_TYPE = "UNKNOWN_CHARGE_TYPE",
3063
3046
  /**
3064
3047
  * Platform fee passed on to buyer.
3065
3048
  *
@@ -3074,7 +3057,7 @@ declare enum ChargeType {
3074
3057
  ABSORBED = "ABSORBED"
3075
3058
  }
3076
3059
  /** @enumType */
3077
- type ChargeTypeWithLiterals = ChargeType | 'UNKNOWN_CHARGE_TYPE' | 'PASS_ON' | 'ABSORBED';
3060
+ type ChargeTypeWithLiterals = ChargeType | 'PASS_ON' | 'ABSORBED';
3078
3061
  /** Triggered when the order status changes to approved */
3079
3062
  interface OrderApproved {
3080
3063
  /** The order that was updated */
@@ -3291,8 +3274,6 @@ interface OrderLineItemChangedDetails {
3291
3274
  }
3292
3275
  /** Type of selected payment option for catalog item */
3293
3276
  declare enum DeltaPaymentOptionType {
3294
- /** Irrelevant */
3295
- UNKNOWN_PAYMENT_OPTION = "UNKNOWN_PAYMENT_OPTION",
3296
3277
  /** The entire payment for the given item will happen after checkout. */
3297
3278
  FULL_PAYMENT_OFFLINE = "FULL_PAYMENT_OFFLINE",
3298
3279
  /**
@@ -3302,7 +3283,7 @@ declare enum DeltaPaymentOptionType {
3302
3283
  MEMBERSHIP_OFFLINE = "MEMBERSHIP_OFFLINE"
3303
3284
  }
3304
3285
  /** @enumType */
3305
- type DeltaPaymentOptionTypeWithLiterals = DeltaPaymentOptionType | 'UNKNOWN_PAYMENT_OPTION' | 'FULL_PAYMENT_OFFLINE' | 'MEMBERSHIP_OFFLINE';
3286
+ type DeltaPaymentOptionTypeWithLiterals = DeltaPaymentOptionType | 'FULL_PAYMENT_OFFLINE' | 'MEMBERSHIP_OFFLINE';
3306
3287
  interface LineItemDelta extends LineItemDeltaDeltaOneOf {
3307
3288
  lineItemAdded?: boolean;
3308
3289
  changedDetails?: ItemChangedDetails;
@@ -3576,164 +3557,6 @@ interface AccountInfo {
3576
3557
  */
3577
3558
  siteId?: string | null;
3578
3559
  }
3579
- interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
3580
- /** insert/update documents */
3581
- update?: InternalDocumentUpdateOperation;
3582
- /** delete by document ids */
3583
- deleteByIds?: DeleteByIdsOperation;
3584
- /** delete documents matching filter */
3585
- deleteByFilter?: DeleteByFilterOperation;
3586
- /** update internal documents matching filter */
3587
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3588
- /** update only existing documents */
3589
- updateExisting?: InternalUpdateExistingOperation;
3590
- /** insert/update documents with versioning */
3591
- versionedUpdate?: VersionedDocumentUpdateOperation;
3592
- /** delete by document ids with versioning */
3593
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3594
- /**
3595
- * type of the documents
3596
- * @minLength 2
3597
- */
3598
- documentType?: string;
3599
- /**
3600
- * language of the documents (mandatory)
3601
- * @minLength 2
3602
- */
3603
- language?: string | null;
3604
- /**
3605
- * one or more search documents
3606
- * @deprecated
3607
- */
3608
- addDocuments?: InternalDocument[];
3609
- /**
3610
- * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
3611
- * @deprecated
3612
- */
3613
- removeDocumentIds?: string[];
3614
- /** id to pass to processing notification */
3615
- correlationId?: string | null;
3616
- /** when event was created / issued */
3617
- issuedAt?: Date | null;
3618
- }
3619
- /** @oneof */
3620
- interface UpdateInternalDocumentsEventOperationOneOf {
3621
- /** insert/update documents */
3622
- update?: InternalDocumentUpdateOperation;
3623
- /** delete by document ids */
3624
- deleteByIds?: DeleteByIdsOperation;
3625
- /** delete documents matching filter */
3626
- deleteByFilter?: DeleteByFilterOperation;
3627
- /** update internal documents matching filter */
3628
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3629
- /** update only existing documents */
3630
- updateExisting?: InternalUpdateExistingOperation;
3631
- /** insert/update documents with versioning */
3632
- versionedUpdate?: VersionedDocumentUpdateOperation;
3633
- /** delete by document ids with versioning */
3634
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3635
- }
3636
- interface InternalDocument {
3637
- /** document with mandatory fields (id) and with fields specific to the type of the document */
3638
- document?: Record<string, any> | null;
3639
- }
3640
- interface InternalDocumentUpdateOperation {
3641
- /** documents to index or update */
3642
- documents?: InternalDocument[];
3643
- }
3644
- interface DeleteByIdsOperation {
3645
- /** ids of the documents to delete */
3646
- documentIds?: string[];
3647
- /**
3648
- * tenant id for custom tenancy strategy
3649
- * @minLength 2
3650
- * @maxLength 300
3651
- */
3652
- tenantId?: string | null;
3653
- }
3654
- interface DeleteByFilterOperation {
3655
- /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
3656
- filter?: Record<string, any> | null;
3657
- /**
3658
- * tenant id for custom tenancy strategy
3659
- * @minLength 2
3660
- * @maxLength 300
3661
- */
3662
- tenantId?: string | null;
3663
- }
3664
- interface InternalDocumentUpdateByFilterOperation {
3665
- /** documents matching this filter will be updated */
3666
- filter?: Record<string, any> | null;
3667
- /** partial document to apply */
3668
- document?: InternalDocument;
3669
- /**
3670
- * tenant id for custom tenancy strategy
3671
- * @minLength 2
3672
- * @maxLength 300
3673
- */
3674
- tenantId?: string | null;
3675
- }
3676
- interface InternalUpdateExistingOperation {
3677
- /** documents to update */
3678
- documents?: InternalDocument[];
3679
- }
3680
- interface VersionedDocumentUpdateOperation {
3681
- /** documents to create or overwrite */
3682
- documents?: InternalDocument[];
3683
- /** versioning mode to use instead of default */
3684
- versioningMode?: VersioningModeWithLiterals;
3685
- }
3686
- declare enum VersioningMode {
3687
- /** use default versioning mode agreed with search team */
3688
- DEFAULT = "DEFAULT",
3689
- /** execute only if version is greater than existing */
3690
- GREATER_THAN = "GREATER_THAN",
3691
- /** execute only if version is greater or equal to existing */
3692
- GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
3693
- }
3694
- /** @enumType */
3695
- type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
3696
- interface VersionedDeleteByIdsOperation {
3697
- /** ids with version of the documents to delete */
3698
- documentIds?: VersionedDocumentId[];
3699
- /**
3700
- * tenant id for custom tenancy strategy
3701
- * @minLength 2
3702
- * @maxLength 300
3703
- */
3704
- tenantId?: string | null;
3705
- }
3706
- interface VersionedDocumentId {
3707
- /** document id */
3708
- documentId?: string;
3709
- /** document version */
3710
- version?: string;
3711
- /** versioning mode to use instead of default */
3712
- versioningMode?: VersioningModeWithLiterals;
3713
- }
3714
- interface TriggerReindexRequest {
3715
- /** @format GUID */
3716
- metasiteId?: string;
3717
- /**
3718
- * @minLength 1
3719
- * @maxLength 100
3720
- * @maxSize 100
3721
- */
3722
- orderIds?: string[];
3723
- }
3724
- interface TriggerReindexResponse {
3725
- }
3726
- interface Empty {
3727
- }
3728
- interface TriggerReindexOrderRequest {
3729
- /** @format GUID */
3730
- metasiteId?: string;
3731
- /**
3732
- * @minLength 1
3733
- * @maxLength 100
3734
- */
3735
- orderId?: string;
3736
- }
3737
3560
  interface SendBuyerConfirmationEmailRequest {
3738
3561
  /** @format GUID */
3739
3562
  orderId?: string;
@@ -4034,6 +3857,8 @@ interface PreviewResendDownloadLinksEmailRequest {
4034
3857
  interface PreviewResendDownloadLinksEmailResponse {
4035
3858
  emailPreview?: string;
4036
3859
  }
3860
+ interface Empty {
3861
+ }
4037
3862
  interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
4038
3863
  /** Emitted on a meta site creation. */
4039
3864
  siteCreated?: SiteCreated;
@@ -4567,12 +4392,11 @@ interface AddToAutomationMigrationPopulationRequest {
4567
4392
  origin?: OriginWithLiterals;
4568
4393
  }
4569
4394
  declare enum Origin {
4570
- UNKNOWN_ORIGIN = "UNKNOWN_ORIGIN",
4571
4395
  OPT_IN = "OPT_IN",
4572
4396
  MIGRATION = "MIGRATION"
4573
4397
  }
4574
4398
  /** @enumType */
4575
- type OriginWithLiterals = Origin | 'UNKNOWN_ORIGIN' | 'OPT_IN' | 'MIGRATION';
4399
+ type OriginWithLiterals = Origin | 'OPT_IN' | 'MIGRATION';
4576
4400
  interface AddToAutomationMigrationPopulationResponse {
4577
4401
  success?: boolean;
4578
4402
  }
@@ -4637,14 +4461,13 @@ interface DelayedCaptureSettings {
4637
4461
  delayDuration?: Duration;
4638
4462
  }
4639
4463
  declare enum ScheduledAction {
4640
- UNSPECIFIED = "UNSPECIFIED",
4641
4464
  /** Whether payment will be auto-voided when duration passes */
4642
4465
  VOID = "VOID",
4643
4466
  /** Whether payment will be auto-captured when duration passes */
4644
4467
  CAPTURE = "CAPTURE"
4645
4468
  }
4646
4469
  /** @enumType */
4647
- type ScheduledActionWithLiterals = ScheduledAction | 'UNSPECIFIED' | 'VOID' | 'CAPTURE';
4470
+ type ScheduledActionWithLiterals = ScheduledAction | 'VOID' | 'CAPTURE';
4648
4471
  interface Duration {
4649
4472
  /**
4650
4473
  * Amount of units. For example, 30 MINUTES, 1 HOURS, 7 DAYS, etc
@@ -4655,13 +4478,12 @@ interface Duration {
4655
4478
  unit?: DurationUnitWithLiterals;
4656
4479
  }
4657
4480
  declare enum DurationUnit {
4658
- UNKNOWN_DURATION_UNIT = "UNKNOWN_DURATION_UNIT",
4659
4481
  MINUTES = "MINUTES",
4660
4482
  HOURS = "HOURS",
4661
4483
  DAYS = "DAYS"
4662
4484
  }
4663
4485
  /** @enumType */
4664
- type DurationUnitWithLiterals = DurationUnit | 'UNKNOWN_DURATION_UNIT' | 'MINUTES' | 'HOURS' | 'DAYS';
4486
+ type DurationUnitWithLiterals = DurationUnit | 'MINUTES' | 'HOURS' | 'DAYS';
4665
4487
  interface PreparePaymentCollectionResponse {
4666
4488
  /** Payment gateway order id which is associated with given payment */
4667
4489
  paymentGatewayOrderId?: string;
@@ -4734,8 +4556,6 @@ interface UserDefinedPaymentMethodNameKindOneOf {
4734
4556
  }
4735
4557
  /** Predefined payment method types for offline/manual payments. */
4736
4558
  declare enum PredefinedPaymentMethod {
4737
- /** Unknown payment method type. */
4738
- UNKNOWN_PREDEFINED_PAYMENT_METHOD = "UNKNOWN_PREDEFINED_PAYMENT_METHOD",
4739
4559
  /** Cash payment. */
4740
4560
  CASH = "CASH",
4741
4561
  /** Bank transfer. */
@@ -4744,7 +4564,7 @@ declare enum PredefinedPaymentMethod {
4744
4564
  CHECK = "CHECK"
4745
4565
  }
4746
4566
  /** @enumType */
4747
- type PredefinedPaymentMethodWithLiterals = PredefinedPaymentMethod | 'UNKNOWN_PREDEFINED_PAYMENT_METHOD' | 'CASH' | 'BANK_TRANSFER' | 'CHECK';
4567
+ type PredefinedPaymentMethodWithLiterals = PredefinedPaymentMethod | 'CASH' | 'BANK_TRANSFER' | 'CHECK';
4748
4568
  interface RecordManuallyCollectedPaymentResponse {
4749
4569
  }
4750
4570
  interface MarkOrderAsPaidRequest {
@@ -5261,7 +5081,6 @@ interface AuthorizationCapture {
5261
5081
  failureDetails?: AuthorizationActionFailureDetails;
5262
5082
  }
5263
5083
  declare enum AuthorizationCaptureStatus {
5264
- UNKNOWN_STATUS = "UNKNOWN_STATUS",
5265
5084
  /** Capture operation still in progress. */
5266
5085
  PENDING = "PENDING",
5267
5086
  /** Capture operation succeeded. */
@@ -5270,7 +5089,7 @@ declare enum AuthorizationCaptureStatus {
5270
5089
  FAILED = "FAILED"
5271
5090
  }
5272
5091
  /** @enumType */
5273
- type AuthorizationCaptureStatusWithLiterals = AuthorizationCaptureStatus | 'UNKNOWN_STATUS' | 'PENDING' | 'SUCCEEDED' | 'FAILED';
5092
+ type AuthorizationCaptureStatusWithLiterals = AuthorizationCaptureStatus | 'PENDING' | 'SUCCEEDED' | 'FAILED';
5274
5093
  interface AuthorizationActionFailureDetails {
5275
5094
  /** @maxLength 100 */
5276
5095
  failureCode?: string;
@@ -5286,7 +5105,6 @@ interface AuthorizationVoid {
5286
5105
  reason?: ReasonWithLiterals;
5287
5106
  }
5288
5107
  declare enum AuthorizationVoidStatus {
5289
- UNKNOWN_STATUS = "UNKNOWN_STATUS",
5290
5108
  /** Void operation still in progress. */
5291
5109
  PENDING = "PENDING",
5292
5110
  /** Void operation succeeded. */
@@ -5295,17 +5113,16 @@ declare enum AuthorizationVoidStatus {
5295
5113
  FAILED = "FAILED"
5296
5114
  }
5297
5115
  /** @enumType */
5298
- type AuthorizationVoidStatusWithLiterals = AuthorizationVoidStatus | 'UNKNOWN_STATUS' | 'PENDING' | 'SUCCEEDED' | 'FAILED';
5116
+ type AuthorizationVoidStatusWithLiterals = AuthorizationVoidStatus | 'PENDING' | 'SUCCEEDED' | 'FAILED';
5299
5117
  /** Reason the authorization was voided. */
5300
5118
  declare enum Reason {
5301
- UNKNOWN_REASON = "UNKNOWN_REASON",
5302
5119
  /** Authorization was voided by user. */
5303
5120
  MANUAL = "MANUAL",
5304
5121
  /** Authorization passed execution date. */
5305
5122
  SCHEDULED = "SCHEDULED"
5306
5123
  }
5307
5124
  /** @enumType */
5308
- type ReasonWithLiterals = Reason | 'UNKNOWN_REASON' | 'MANUAL' | 'SCHEDULED';
5125
+ type ReasonWithLiterals = Reason | 'MANUAL' | 'SCHEDULED';
5309
5126
  interface V1ScheduledAction {
5310
5127
  /** Type of the action. */
5311
5128
  actionType?: ActionTypeWithLiterals;
@@ -5313,12 +5130,11 @@ interface V1ScheduledAction {
5313
5130
  executionDate?: Date | null;
5314
5131
  }
5315
5132
  declare enum ActionType {
5316
- UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
5317
5133
  VOID = "VOID",
5318
5134
  CAPTURE = "CAPTURE"
5319
5135
  }
5320
5136
  /** @enumType */
5321
- type ActionTypeWithLiterals = ActionType | 'UNKNOWN_ACTION_TYPE' | 'VOID' | 'CAPTURE';
5137
+ type ActionTypeWithLiterals = ActionType | 'VOID' | 'CAPTURE';
5322
5138
  interface Chargeback {
5323
5139
  /**
5324
5140
  * Chargeback ID.
@@ -5364,14 +5180,13 @@ interface Chargeback {
5364
5180
  externalId?: string | null;
5365
5181
  }
5366
5182
  declare enum ChargebackStatus {
5367
- UNSPECIFIED = "UNSPECIFIED",
5368
5183
  /** Chargeback was approved. */
5369
5184
  APPROVED = "APPROVED",
5370
5185
  /** Chargeback was reversed. */
5371
5186
  REVERSED = "REVERSED"
5372
5187
  }
5373
5188
  /** @enumType */
5374
- type ChargebackStatusWithLiterals = ChargebackStatus | 'UNSPECIFIED' | 'APPROVED' | 'REVERSED';
5189
+ type ChargebackStatusWithLiterals = ChargebackStatus | 'APPROVED' | 'REVERSED';
5375
5190
  interface PaymentMethodName {
5376
5191
  /**
5377
5192
  * Translated payment method name in buyer language.
@@ -5730,6 +5545,162 @@ interface ChargeSavedPaymentMethodResponse {
5730
5545
  /** Payment gateway's order ID (e.g Wix Payments) */
5731
5546
  paymentGatewayOrderId?: string;
5732
5547
  }
5548
+ interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
5549
+ /** insert/update documents */
5550
+ update?: InternalDocumentUpdateOperation;
5551
+ /** delete by document ids */
5552
+ deleteByIds?: DeleteByIdsOperation;
5553
+ /** delete documents matching filter */
5554
+ deleteByFilter?: DeleteByFilterOperation;
5555
+ /** update internal documents matching filter */
5556
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
5557
+ /** update only existing documents */
5558
+ updateExisting?: InternalUpdateExistingOperation;
5559
+ /** insert/update documents with versioning */
5560
+ versionedUpdate?: VersionedDocumentUpdateOperation;
5561
+ /** delete by document ids with versioning */
5562
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
5563
+ /**
5564
+ * type of the documents
5565
+ * @minLength 2
5566
+ */
5567
+ documentType?: string;
5568
+ /**
5569
+ * language of the documents (mandatory)
5570
+ * @minLength 2
5571
+ */
5572
+ language?: string | null;
5573
+ /**
5574
+ * one or more search documents
5575
+ * @deprecated
5576
+ */
5577
+ addDocuments?: InternalDocument[];
5578
+ /**
5579
+ * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
5580
+ * @deprecated
5581
+ */
5582
+ removeDocumentIds?: string[];
5583
+ /** id to pass to processing notification */
5584
+ correlationId?: string | null;
5585
+ /** when event was created / issued */
5586
+ issuedAt?: Date | null;
5587
+ }
5588
+ /** @oneof */
5589
+ interface UpdateInternalDocumentsEventOperationOneOf {
5590
+ /** insert/update documents */
5591
+ update?: InternalDocumentUpdateOperation;
5592
+ /** delete by document ids */
5593
+ deleteByIds?: DeleteByIdsOperation;
5594
+ /** delete documents matching filter */
5595
+ deleteByFilter?: DeleteByFilterOperation;
5596
+ /** update internal documents matching filter */
5597
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
5598
+ /** update only existing documents */
5599
+ updateExisting?: InternalUpdateExistingOperation;
5600
+ /** insert/update documents with versioning */
5601
+ versionedUpdate?: VersionedDocumentUpdateOperation;
5602
+ /** delete by document ids with versioning */
5603
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
5604
+ }
5605
+ interface InternalDocument {
5606
+ /** document with mandatory fields (id) and with fields specific to the type of the document */
5607
+ document?: Record<string, any> | null;
5608
+ }
5609
+ interface InternalDocumentUpdateOperation {
5610
+ /** documents to index or update */
5611
+ documents?: InternalDocument[];
5612
+ }
5613
+ interface DeleteByIdsOperation {
5614
+ /** ids of the documents to delete */
5615
+ documentIds?: string[];
5616
+ /**
5617
+ * tenant id for custom tenancy strategy
5618
+ * @minLength 2
5619
+ * @maxLength 300
5620
+ */
5621
+ tenantId?: string | null;
5622
+ }
5623
+ interface DeleteByFilterOperation {
5624
+ /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
5625
+ filter?: Record<string, any> | null;
5626
+ /**
5627
+ * tenant id for custom tenancy strategy
5628
+ * @minLength 2
5629
+ * @maxLength 300
5630
+ */
5631
+ tenantId?: string | null;
5632
+ }
5633
+ interface InternalDocumentUpdateByFilterOperation {
5634
+ /** documents matching this filter will be updated */
5635
+ filter?: Record<string, any> | null;
5636
+ /** partial document to apply */
5637
+ document?: InternalDocument;
5638
+ /**
5639
+ * tenant id for custom tenancy strategy
5640
+ * @minLength 2
5641
+ * @maxLength 300
5642
+ */
5643
+ tenantId?: string | null;
5644
+ }
5645
+ interface InternalUpdateExistingOperation {
5646
+ /** documents to update */
5647
+ documents?: InternalDocument[];
5648
+ }
5649
+ interface VersionedDocumentUpdateOperation {
5650
+ /** documents to create or overwrite */
5651
+ documents?: InternalDocument[];
5652
+ /** versioning mode to use instead of default */
5653
+ versioningMode?: VersioningModeWithLiterals;
5654
+ }
5655
+ declare enum VersioningMode {
5656
+ /** use default versioning mode agreed with search team */
5657
+ DEFAULT = "DEFAULT",
5658
+ /** execute only if version is greater than existing */
5659
+ GREATER_THAN = "GREATER_THAN",
5660
+ /** execute only if version is greater or equal to existing */
5661
+ GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
5662
+ }
5663
+ /** @enumType */
5664
+ type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
5665
+ interface VersionedDeleteByIdsOperation {
5666
+ /** ids with version of the documents to delete */
5667
+ documentIds?: VersionedDocumentId[];
5668
+ /**
5669
+ * tenant id for custom tenancy strategy
5670
+ * @minLength 2
5671
+ * @maxLength 300
5672
+ */
5673
+ tenantId?: string | null;
5674
+ }
5675
+ interface VersionedDocumentId {
5676
+ /** document id */
5677
+ documentId?: string;
5678
+ /** document version */
5679
+ version?: string;
5680
+ /** versioning mode to use instead of default */
5681
+ versioningMode?: VersioningModeWithLiterals;
5682
+ }
5683
+ interface TriggerReindexRequest {
5684
+ /** @format GUID */
5685
+ metasiteId?: string;
5686
+ /**
5687
+ * @minLength 1
5688
+ * @maxLength 100
5689
+ * @maxSize 100
5690
+ */
5691
+ orderIds?: string[];
5692
+ }
5693
+ interface TriggerReindexResponse {
5694
+ }
5695
+ interface TriggerReindexOrderRequest {
5696
+ /** @format GUID */
5697
+ metasiteId?: string;
5698
+ /**
5699
+ * @minLength 1
5700
+ * @maxLength 100
5701
+ */
5702
+ orderId?: string;
5703
+ }
5733
5704
  interface DiffmatokyPayload {
5734
5705
  left?: string;
5735
5706
  right?: string;
@@ -8701,4 +8672,4 @@ interface BulkUpdateOrderTagsOptions {
8701
8672
  unassignTags?: TagsTags;
8702
8673
  }
8703
8674
 
8704
- export { OrderActivityTypeEnumActivityType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentOptionType as E, SubscriptionFrequency as F, type GetPaymentCollectabilityStatusResponse as G, AdjustmentType as H, ItemTypePreset as I, JurisdictionType as J, PaymentStatus as K, FulfillmentStatus as L, type MaskedOrder as M, VatType as N, type Order as O, type Price as P, PickupMethod as Q, OrderStatus as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, DiscountType as X, DiscountReason as Y, LineItemQuantityChangeType as Z, ActivityType as _, type PreparePaymentCollectionOptions as a, type SubscriptionSettings as a$, AttributionSource as a0, ChannelType as a1, AdditionalFeeSource as a2, OrderActionType as a3, SpecificItemsCouponBehavior as a4, ChargeType as a5, DeltaPaymentOptionType as a6, InventoryAction as a7, WebhookIdentityType as a8, VersioningMode as a9, SourceType as aA, CustomFieldGroup as aB, ValueType as aC, DepositType as aD, InvoiceStatus as aE, type OrderLineItem as aF, type ProductName as aG, type CatalogReference as aH, type DescriptionLine as aI, type DescriptionLineValueOneOf as aJ, type DescriptionLineDescriptionLineValueOneOf as aK, type DescriptionLineName as aL, type PlainTextValue as aM, type Color as aN, type FocalPoint as aO, type PhysicalProperties as aP, type Dimensions as aQ, type ItemType as aR, type ItemTypeItemTypeDataOneOf as aS, type RestockLocation as aT, type ItemTaxFullDetails as aU, type LineItemTaxInfo as aV, type LineItemTaxBreakdown as aW, type DigitalFile as aX, type SubscriptionInfo as aY, type SubscriptionTitle as aZ, type SubscriptionDescription as a_, PreviewEmailType as aa, State as ab, SiteCreatedContext as ac, Namespace as ad, DeleteStatus as ae, Origin as af, ScheduledAction as ag, DurationUnit as ah, PaymentCollectabilityStatus as ai, PredefinedPaymentMethod as aj, RefundableStatus as ak, NonRefundableReason as al, ManuallyRefundableReason as am, RestockType as an, TransactionStatus as ao, AuthorizationCaptureStatus as ap, AuthorizationVoidStatus as aq, Reason as ar, ActionType as as, ChargebackStatus as at, MembershipPaymentStatus as au, RefundStatus as av, SortOrder as aw, OrderApprovalStrategy as ax, Placement as ay, SubdivisionType as az, type PreparePaymentCollectionResponse as b, type ManagedAdditionalFee as b$, type FreeTrialPeriod as b0, type BillingAdjustment as b1, type BillingAdjustmentPriceSummary as b2, type PriceDescription as b3, type LocationAndQuantity as b4, type TaxableAddress as b5, type TaxableAddressTaxableAddressDataOneOf as b6, type ExtendedFields as b7, type ModifierGroup as b8, type TranslatableString as b9, type MerchantDiscountMerchantDiscountReasonOneOf as bA, type DiscountRule as bB, type DiscountRuleName as bC, type LineItemDiscount as bD, type ItemCombination as bE, type ItemCombinationLineItem as bF, type Activity as bG, type ActivityContentOneOf as bH, type CustomActivity as bI, type MerchantComment as bJ, type OrderRefunded as bK, type OrderCreatedFromExchange as bL, type NewExchangeOrderCreated as bM, type LineItemExchangeData as bN, type DraftOrderChangesApplied as bO, type OrderChange as bP, type OrderChangeValueOneOf as bQ, type LineItemChanges as bR, type LineItemQuantityChange as bS, type LineItemPriceChange as bT, type LineItemProductNameChange as bU, type LineItemDescriptionLineChange as bV, type LineItemModifiersChange as bW, type ManagedLineItem as bX, type ManagedDiscount as bY, type TranslatedValue as bZ, type LineItemAmount as b_, type ItemModifier as ba, type BuyerInfo as bb, type BuyerInfoIdOneOf as bc, type CurrencyConversionDetails as bd, type PriceSummary as be, type AddressWithContact as bf, type Address as bg, type StreetAddress as bh, type AddressLocation as bi, type FullAddressContactDetails as bj, type VatId as bk, type V1ShippingInformation as bl, type DeliveryLogistics as bm, type DeliveryLogisticsAddressOneOf as bn, type PickupDetails as bo, type PickupAddress as bp, type DeliveryTimeSlot as bq, type ShippingPrice as br, type ShippingRegion as bs, type TaxSummary as bt, type OrderTaxInfo as bu, type OrderTaxBreakdown as bv, type AppliedDiscount as bw, type AppliedDiscountDiscountSourceOneOf as bx, type Coupon as by, type MerchantDiscount as bz, type PreparePaymentCollectionApplicationErrors as c, type OrderCanceledEventOrderCanceled as c$, type TotalPriceChange as c0, type ShippingInformationChange as c1, type ShippingInformation as c2, type SavedPaymentMethod as c3, type AuthorizedPaymentCreated as c4, type AuthorizedPaymentCaptured as c5, type AuthorizedPaymentVoided as c6, type RefundInitiated as c7, type RefundedPayment as c8, type RefundedPaymentKindOneOf as c9, type CustomField as cA, type BalanceSummary as cB, type Balance as cC, type CashRounding as cD, type AdditionalFee as cE, type FulfillmentStatusesAggregate as cF, type Tags as cG, type TagList as cH, type Location as cI, type OrderSettings as cJ, type OrderSettingsAllowedActionsOneOf as cK, type OrderSettingsEditableByOneOf as cL, type CustomAllowedActions as cM, type OwnerApps as cN, type FormInfo as cO, type FormIdentifier as cP, type PlatformFeeSummary as cQ, type PlatformFee as cR, type OrderApproved as cS, type OrdersExperiments as cT, type OrderRejectedEventOrderRejected as cU, type OrderItemsRestocked as cV, type V1RestockItem as cW, type OrderImported as cX, type ImportedOrderDeleted as cY, type PaymentStatusUpdated as cZ, type FulfillmentStatusUpdated as c_, type RegularPaymentRefund as ca, type GiftCardPaymentRefund as cb, type MembershipPaymentRefund as cc, type PaymentRefunded as cd, type PaymentRefundFailed as ce, type RefundedAsStoreCredit as cf, type PaymentPending as cg, type PaymentPendingPaymentDetailsOneOf as ch, type RegularPayment as ci, type RegularPaymentPaymentMethodDetailsOneOf as cj, type CreditCardDetails as ck, type PaymentCanceled as cl, type PaymentCanceledPaymentDetailsOneOf as cm, type PaymentDeclined as cn, type PaymentDeclinedPaymentDetailsOneOf as co, type ReceiptCreated as cp, type ReceiptCreatedReceiptInfoOneOf as cq, type WixReceipt as cr, type ExternalReceipt as cs, type ReceiptSent as ct, type ReceiptSentReceiptInfoOneOf as cu, type ChargebackCreated as cv, type ChargebackReversed as cw, type CreatedBy as cx, type CreatedByStringOneOf as cy, type ChannelInfo as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type SendRefundEmailResponse as d$, type OrderDeltasCommitted as d0, type CommittedDiffs as d1, type CommittedDiffsShippingUpdateInfoOneOf as d2, type ItemChangedDetails as d3, type OrderLineItemChangedDetails as d4, type LineItemDelta as d5, type LineItemDeltaDeltaOneOf as d6, type AppliedDiscountDelta as d7, type AppliedDiscountDeltaDeltaOneOf as d8, type AdditionalFeeDelta as d9, 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 TriggerReindexOrderRequest as dJ, type SendBuyerConfirmationEmailRequest as dK, type SendBuyerConfirmationEmailResponse as dL, type SendBuyerPaymentsReceivedEmailRequest as dM, type SendBuyerPaymentsReceivedEmailResponse as dN, type SendBuyerPickupConfirmationEmailRequest as dO, type SendBuyerPickupConfirmationEmailResponse as dP, type BulkSendBuyerPickupConfirmationEmailsRequest as dQ, type BulkSendBuyerPickupConfirmationEmailsResponse as dR, type SendBuyerShippingConfirmationEmailRequest as dS, type SendBuyerShippingConfirmationEmailResponse as dT, type BulkSendBuyerShippingConfirmationEmailsRequest as dU, type BulkSendBuyerShippingConfirmationEmailsResponse as dV, type SendMerchantOrderReceivedNotificationRequest as dW, type SendMerchantOrderReceivedNotificationResponse as dX, type SendCancelRefundEmailRequest as dY, type SendCancelRefundEmailResponse as dZ, type SendRefundEmailRequest as d_, type AdditionalFeeDeltaDeltaOneOf as da, type DraftOrderCommitSettings as db, type InventoryUpdateDetails as dc, type ImportOrderRequest as dd, type ImportOrderResponse as de, type SetOrderNumberCounterRequest as df, type SetOrderNumberCounterResponse as dg, type BulkDeleteImportedOrdersRequest as dh, type BulkDeleteImportedOrdersResponse as di, type DomainEvent as dj, type DomainEventBodyOneOf as dk, type EntityCreatedEvent as dl, type RestoreInfo as dm, type EntityUpdatedEvent as dn, type EntityDeletedEvent as dp, type ActionEvent as dq, type MessageEnvelope as dr, type IdentificationData as ds, type IdentificationDataIdOneOf as dt, type AccountInfo as du, type UpdateInternalDocumentsEvent as dv, type UpdateInternalDocumentsEventOperationOneOf as dw, type InternalDocument as dx, type InternalDocumentUpdateOperation as dy, type DeleteByIdsOperation as dz, type PaymentCapture as e, type AddToAutomationMigrationPopulationResponse as e$, type SendFulfillmentEmailRequest as e0, type SendFulfillmentEmailResponse as e1, type SendMerchantOrderReceivedPushRequest as e2, type SendMerchantOrderReceivedPushResponse as e3, type PreviewEmailByTypeRequest as e4, type PreviewEmailByTypeResponse as e5, type PreviewRefundEmailRequest as e6, type RefundDetails as e7, type RefundItem as e8, type LineItemRefund as e9, 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 EditorlessAssigned as eW, type EditorlessUnassigned as eX, type HasCustomEmailConfigurationsRequest as eY, type HasCustomEmailConfigurationsResponse as eZ, type AddToAutomationMigrationPopulationRequest as e_, type AdditionalFeeRefund as ea, type ShippingRefund as eb, type PreviewRefundEmailResponse as ec, type PreviewCancelEmailRequest as ed, type PreviewCancelEmailResponse as ee, type PreviewCancelRefundEmailRequest as ef, type PreviewCancelRefundEmailResponse as eg, type PreviewBuyerPaymentsReceivedEmailRequest as eh, type PreviewBuyerPaymentsReceivedEmailResponse as ei, type PreviewBuyerConfirmationEmailRequest as ej, type PreviewBuyerConfirmationEmailResponse as ek, type PreviewBuyerPickupConfirmationEmailRequest as el, type PreviewBuyerPickupConfirmationEmailResponse as em, type PreviewShippingConfirmationEmailRequest as en, type PreviewShippingConfirmationEmailResponse as eo, type PreviewResendDownloadLinksEmailRequest as ep, type PreviewResendDownloadLinksEmailResponse as eq, type MetaSiteSpecialEvent as er, type MetaSiteSpecialEventPayloadOneOf as es, type Asset as et, type SiteCreated as eu, type SiteTransferred as ev, type SiteDeleted as ew, type DeleteContext as ex, type SiteUndeleted as ey, type SitePublished as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type CalculateRefundItemRequest as f$, type IsInAutomationMigrationPopulationRequest as f0, type IsInAutomationMigrationPopulationResponse as f1, type PreparePaymentCollectionRequest as f2, type RedirectUrls as f3, type DelayedCaptureSettings as f4, type Duration as f5, type GetPaymentCollectabilityStatusRequest as f6, type RecordManuallyCollectedPaymentRequest as f7, type UserDefinedPaymentMethodName as f8, type UserDefinedPaymentMethodNameKindOneOf as f9, type TriggerRefundResponse as fA, type OrderTransactions as fB, type Payment as fC, type PaymentPaymentDetailsOneOf as fD, type PaymentReceiptInfoOneOf as fE, type RegularPaymentDetails as fF, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fG, type CreditCardPaymentMethodDetails as fH, type AuthorizationDetails as fI, type AuthorizationCapture as fJ, type AuthorizationActionFailureDetails as fK, type AuthorizationVoid as fL, type V1ScheduledAction as fM, type Chargeback as fN, type PaymentMethodName as fO, type GiftCardPaymentDetails as fP, type MembershipPaymentDetails as fQ, type WixReceiptInfo as fR, type ExternalReceiptInfo as fS, type CashRoundingDetails as fT, type Refund as fU, type RefundTransaction as fV, type RefundStatusInfo as fW, type AggregatedRefundSummary as fX, type RefundItemsBreakdown as fY, type LineItemRefundSummary as fZ, type CalculateRefundRequest as f_, type RecordManuallyCollectedPaymentResponse as fa, type MarkOrderAsPaidRequest as fb, type MarkOrderAsPaidResponse as fc, type BulkMarkOrdersAsPaidRequest as fd, type BulkMarkOrdersAsPaidResponse as fe, type BulkOrderResult as ff, type ItemMetadata as fg, type ApplicationError as fh, type BulkActionMetadata as fi, type GetRefundabilityStatusRequest as fj, type GetRefundabilityStatusResponse as fk, type Refundability as fl, type RefundabilityAdditionalRefundabilityInfoOneOf as fm, type CreatePaymentGatewayOrderRequest as fn, type ChargedBy as fo, type CreatePaymentGatewayOrderResponse as fp, type ChargeMembershipsRequest as fq, type MembershipChargeItem as fr, type MembershipName as fs, type ServiceProperties as ft, type ChargeMembershipsResponse as fu, type TriggerRefundRequest as fv, type PaymentRefund as fw, type RefundSideEffects as fx, type RestockInfo as fy, type RestockItem as fz, type GetOrderApplicationErrors as g, type UpdateOrderLineItemRequest as g$, type CalculateRefundResponse as g0, type CalculateRefundItemResponse as g1, type VoidAuthorizedPaymentsRequest as g2, type CaptureAuthorizedPaymentsRequest as g3, type ChargeSavedPaymentMethodRequest as g4, type ChargeSavedPaymentMethodResponse as g5, type DiffmatokyPayload as g6, type ErrorInformation as g7, type GetOrderRequest as g8, type GetOrderResponse as g9, type DraftOrderDiffsBuyerUpdateInfoOneOf as gA, type DraftOrderDiffsBillingUpdateInfoOneOf as gB, type DraftOrderDiffsRecipientUpdateInfoOneOf as gC, type V1LineItemDelta as gD, type V1LineItemDeltaDeltaOneOf as gE, type CommitDeltasResponse as gF, type ArchiveOrderRequest as gG, type ArchiveOrderResponse as gH, type BulkArchiveOrdersRequest as gI, type BulkArchiveOrdersResponse as gJ, type BulkArchiveOrdersByFilterRequest as gK, type BulkArchiveOrdersByFilterResponse as gL, type UnArchiveOrderRequest as gM, type UnArchiveOrderResponse as gN, type BulkUnArchiveOrdersRequest as gO, type BulkUnArchiveOrdersResponse as gP, type BulkUnArchiveOrdersByFilterRequest as gQ, type BulkUnArchiveOrdersByFilterResponse as gR, type UpdateBuyerInfoRequest as gS, type BuyerInfoUpdate as gT, type UpdateBuyerInfoResponse as gU, type UpdateBuyerEmailRequest as gV, type UpdateBuyerEmailResponse as gW, type UpdateOrderShippingAddressRequest as gX, type UpdateOrderShippingAddressResponse as gY, type UpdateBillingContactDetailsRequest as gZ, type UpdateBillingContactDetailsResponse as g_, type InternalQueryOrdersRequest as ga, type PlatformQuery as gb, type PlatformQueryPagingMethodOneOf as gc, type Sorting as gd, type PlatformPaging as ge, type CursorPaging as gf, type InternalQueryOrdersResponse as gg, type PlatformPagingMetadata as gh, type Cursors as gi, type QueryOrderRequest as gj, type QueryOrderResponse as gk, type SearchOrdersRequest as gl, type CursorSearch as gm, type CursorSearchPagingMethodOneOf as gn, type CursorPagingMetadata as go, type CreateOrderRequest as gp, type OrderCreationSettings as gq, type OrderCreationSettingsEditableByOneOf as gr, type OrderCreateNotifications as gs, type CreateOrderResponse as gt, type UpdateOrderRequest as gu, type UpdateOrderResponse as gv, type BulkUpdateOrdersRequest as gw, type CommitDeltasRequest as gx, type DraftOrderDiffs as gy, type DraftOrderDiffsShippingUpdateInfoOneOf as gz, type OrderSearch as h, type V1CreatePaymentGatewayOrderRequest as h$, type UpdateOrderLineItemResponse as h0, type UpdateOrderLineItemsRequest as h1, type MaskedOrderLineItem as h2, type UpdateOrderLineItemsResponse as h3, type AddInternalActivityRequest as h4, type InternalActivity as h5, type InternalActivityContentOneOf as h6, type OrderPlaced as h7, type OrderPaid as h8, type OrderFulfilled as h9, type UpdateLineItemsDescriptionLinesRequest as hA, type LineItemUpdate as hB, type UpdateLineItemsDescriptionLinesResponse as hC, type MarkOrderAsSeenByHumanRequest as hD, type MarkOrderAsSeenByHumanResponse as hE, type CancelOrderRequest as hF, type UpdateOrderStatusRequest as hG, type UpdateOrderStatusResponse as hH, type MarkAsFulfilledRequest as hI, type MarkAsFulfilledResponse as hJ, type BulkMarkAsFulfilledRequest as hK, type BulkMarkAsFulfilledResponse as hL, type BulkMarkAsFulfilledByFilterRequest as hM, type BulkMarkAsFulfilledByFilterResponse as hN, type MarkAsUnfulfilledRequest as hO, type MarkAsUnfulfilledResponse as hP, type BulkMarkAsUnfulfilledRequest as hQ, type BulkMarkAsUnfulfilledResponse as hR, type BulkMarkAsUnfulfilledByFilterRequest as hS, type BulkMarkAsUnfulfilledByFilterResponse as hT, type BulkSetBusinessLocationRequest as hU, type BulkSetBusinessLocationResponse as hV, type BulkSetBusinessLocationResult as hW, type V1MarkOrderAsPaidRequest as hX, type V1MarkOrderAsPaidResponse as hY, type V1BulkMarkOrdersAsPaidRequest as hZ, type V1BulkMarkOrdersAsPaidResponse as h_, type OrderNotFulfilled as ha, type OrderCanceled as hb, type DownloadLinkSent as hc, type TrackingNumberAdded as hd, type TrackingNumberEdited as he, type TrackingLinkAdded as hf, type ShippingConfirmationEmailSent as hg, type InvoiceAdded as hh, type InvoiceSent as hi, type FulfillerEmailSent as hj, type ShippingAddressEdited as hk, type EmailEdited as hl, type PickupReadyEmailSent as hm, type OrderPartiallyPaid as hn, type OrderPending as ho, type OrderRejected as hp, type AddInternalActivityResponse as hq, type AddActivityRequest as hr, type PublicActivity as hs, type PublicActivityContentOneOf as ht, type AddActivityResponse as hu, type AddActivitiesRequest as hv, type UpdateActivityRequest as hw, type UpdateActivityResponse as hx, type DeleteActivityRequest as hy, type DeleteActivityResponse as hz, type CreateOrderOptions as i, type PaymentCollectionMarkOrderAsPaidOptions as i$, type V1CreatePaymentGatewayOrderResponse as i0, type GetShipmentsRequest as i1, type GetShipmentsResponse as i2, type AggregateOrdersRequest as i3, type AggregateOrdersResponse as i4, type DecrementItemsQuantityRequest as i5, type DecrementData as i6, type DecrementItemsQuantityResponse as i7, type BulkUpdateOrderTagsRequest as i8, type TagsTags as i9, type InvoiceDates as iA, type LineItems as iB, type LineItem as iC, type BigDecimalWrapper as iD, type LineItemTax as iE, type Source as iF, 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 iN, type Payments as iO, type InvoicesPayment as iP, type MetaData as iQ, type InvoiceDynamicPriceTotals as iR, type CustomFieldValue as iS, type Value as iT, type Deposit as iU, type BaseEventMetadata as iV, type EventMetadata as iW, type AccountInfoMetadata as iX, type SetOrderNumberCounterOptions as iY, type BulkDeleteImportedOrdersOptions as iZ, type RecordManuallyCollectedPaymentOptions as i_, type TagsTagList as ia, type BulkUpdateOrderTagsResult as ib, type SendOrderUpdatedDomainEventRequest as ic, type SendOrderUpdatedDomainEventResponse as id, type Task as ie, type TaskKey as ig, type TaskAction as ih, type TaskActionActionOneOf as ii, type Complete as ij, type Cancel as ik, type Reschedule as il, type InvoiceSentEvent as im, type IdAndVersion as io, type InvoiceFields as ip, type Customer as iq, type Email as ir, type QuotesAddress as is, type AddressDescription as it, type Phone as iu, type Company as iv, type CommonAddress as iw, type CommonAddressStreetOneOf as ix, type Subdivision as iy, type StandardDetails as iz, type CreateOrderApplicationErrors as j, type PlacementWithLiterals as j$, type PaymentCollectionCreatePaymentGatewayOrderOptions as j0, type ChargeMembershipsOptions as j1, type TriggerRefundOptions as j2, type OrderSearchSpec as j3, type UpdateOrderLineItemIdentifiers as j4, type UpdateOrderLineItem as j5, type UpdateActivityIdentifiers as j6, type DeleteActivityIdentifiers as j7, type AggregateOrdersOptions as j8, utils as j9, type InventoryActionWithLiterals as jA, type WebhookIdentityTypeWithLiterals as jB, type VersioningModeWithLiterals as jC, type PreviewEmailTypeWithLiterals as jD, type StateWithLiterals as jE, type SiteCreatedContextWithLiterals as jF, type NamespaceWithLiterals as jG, type DeleteStatusWithLiterals as jH, type OriginWithLiterals as jI, type ScheduledActionWithLiterals as jJ, type DurationUnitWithLiterals as jK, type PaymentCollectabilityStatusWithLiterals as jL, type PredefinedPaymentMethodWithLiterals as jM, type RefundableStatusWithLiterals as jN, type NonRefundableReasonWithLiterals as jO, type ManuallyRefundableReasonWithLiterals as jP, type RestockTypeWithLiterals as jQ, type TransactionStatusWithLiterals as jR, type AuthorizationCaptureStatusWithLiterals as jS, type AuthorizationVoidStatusWithLiterals as jT, type ReasonWithLiterals as jU, type ActionTypeWithLiterals as jV, type ChargebackStatusWithLiterals as jW, type MembershipPaymentStatusWithLiterals as jX, type RefundStatusWithLiterals as jY, type SortOrderWithLiterals as jZ, type OrderApprovalStrategyWithLiterals as j_, type DescriptionLineTypeWithLiterals as ja, type DimensionsUnitWithLiterals as jb, type ItemTypePresetWithLiterals as jc, type PaymentOptionTypeWithLiterals as jd, type JurisdictionTypeWithLiterals as je, type SubscriptionFrequencyWithLiterals as jf, type AdjustmentTypeWithLiterals as jg, type TaxableAddressTypeWithLiterals as jh, type PaymentStatusWithLiterals as ji, type FulfillmentStatusWithLiterals as jj, type WeightUnitWithLiterals as jk, type VatTypeWithLiterals as jl, type PickupMethodWithLiterals as jm, type OrderStatusWithLiterals as jn, type DiscountTypeWithLiterals as jo, type DiscountReasonWithLiterals as jp, type LineItemQuantityChangeTypeWithLiterals as jq, type ActivityTypeWithLiterals as jr, type OrderActivityTypeEnumActivityTypeWithLiterals as js, type AttributionSourceWithLiterals as jt, type ChannelTypeWithLiterals as ju, type AdditionalFeeSourceWithLiterals as jv, type OrderActionTypeWithLiterals as jw, type SpecificItemsCouponBehaviorWithLiterals as jx, type ChargeTypeWithLiterals as jy, type DeltaPaymentOptionTypeWithLiterals as jz, type UpdateOrderApplicationErrors as k, type SubdivisionTypeWithLiterals as k0, type SourceTypeWithLiterals as k1, type CustomFieldGroupWithLiterals as k2, type ValueTypeWithLiterals as k3, type DepositTypeWithLiterals as k4, type InvoiceStatusWithLiterals as k5, type RecordManuallyCollectedPaymentApplicationErrors as k6, type PaymentCollectionMarkOrderAsPaidApplicationErrors as k7, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as k8, type TriggerRefundApplicationErrors as k9, type UpdateOrderStatusApplicationErrors as ka, type CommonSearchWithEntityContext as kb, onOrderApproved as kc, onOrderCanceled as kd, onOrderCommitted as ke, onOrderCreated as kf, onOrderFulfilled as kg, onOrderPaymentStatusUpdated as kh, onOrderUpdated as ki, preparePaymentCollection as kj, getPaymentCollectabilityStatus as kk, voidAuthorizedPayments as kl, captureAuthorizedPayments as km, getOrder as kn, createOrder as ko, updateOrder as kp, bulkUpdateOrders as kq, addActivities as kr, cancelOrder as ks, bulkUpdateOrderTags as kt, 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 OrderCanceledEnvelope as t, type OrderCommittedEnvelope as u, type OrderCreatedEnvelope as v, type OrderFulfilledEnvelope as w, type OrderPaymentStatusUpdatedEnvelope as x, type OrderUpdatedEnvelope as y, DimensionsUnit as z };
8675
+ export { OrderActivityTypeEnumActivityType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentOptionType as E, SubscriptionFrequency as F, type GetPaymentCollectabilityStatusResponse as G, AdjustmentType as H, ItemTypePreset as I, JurisdictionType as J, PaymentStatus as K, FulfillmentStatus as L, type MaskedOrder as M, VatType as N, type Order as O, type Price as P, PickupMethod as Q, OrderStatus as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, DiscountType as X, DiscountReason as Y, LineItemQuantityChangeType as Z, ActivityType as _, type PreparePaymentCollectionOptions as a, type SubscriptionSettings as a$, AttributionSource as a0, ChannelType as a1, AdditionalFeeSource as a2, OrderActionType as a3, SpecificItemsCouponBehavior as a4, ChargeType as a5, DeltaPaymentOptionType as a6, InventoryAction as a7, WebhookIdentityType as a8, PreviewEmailType as a9, SourceType as aA, CustomFieldGroup as aB, ValueType as aC, DepositType as aD, InvoiceStatus as aE, type OrderLineItem as aF, type ProductName as aG, type CatalogReference as aH, type DescriptionLine as aI, type DescriptionLineValueOneOf as aJ, type DescriptionLineDescriptionLineValueOneOf as aK, type DescriptionLineName as aL, type PlainTextValue as aM, type Color as aN, type FocalPoint as aO, type PhysicalProperties as aP, type Dimensions as aQ, type ItemType as aR, type ItemTypeItemTypeDataOneOf as aS, type RestockLocation as aT, type ItemTaxFullDetails as aU, type LineItemTaxInfo as aV, type LineItemTaxBreakdown as aW, type DigitalFile as aX, type SubscriptionInfo as aY, type SubscriptionTitle as aZ, type SubscriptionDescription as a_, State as aa, SiteCreatedContext as ab, Namespace as ac, DeleteStatus as ad, Origin as ae, ScheduledAction as af, DurationUnit as ag, PaymentCollectabilityStatus as ah, PredefinedPaymentMethod as ai, RefundableStatus as aj, NonRefundableReason as ak, ManuallyRefundableReason as al, RestockType as am, TransactionStatus as an, AuthorizationCaptureStatus as ao, AuthorizationVoidStatus as ap, Reason as aq, ActionType as ar, ChargebackStatus as as, MembershipPaymentStatus as at, RefundStatus as au, VersioningMode as av, SortOrder as aw, OrderApprovalStrategy as ax, Placement as ay, SubdivisionType as az, type PreparePaymentCollectionResponse as b, type ManagedAdditionalFee as b$, type FreeTrialPeriod as b0, type BillingAdjustment as b1, type BillingAdjustmentPriceSummary as b2, type PriceDescription as b3, type LocationAndQuantity as b4, type TaxableAddress as b5, type TaxableAddressTaxableAddressDataOneOf as b6, type ExtendedFields as b7, type ModifierGroup as b8, type TranslatableString as b9, type MerchantDiscountMerchantDiscountReasonOneOf as bA, type DiscountRule as bB, type DiscountRuleName as bC, type LineItemDiscount as bD, type ItemCombination as bE, type ItemCombinationLineItem as bF, type Activity as bG, type ActivityContentOneOf as bH, type CustomActivity as bI, type MerchantComment as bJ, type OrderRefunded as bK, type OrderCreatedFromExchange as bL, type NewExchangeOrderCreated as bM, type LineItemExchangeData as bN, type DraftOrderChangesApplied as bO, type OrderChange as bP, type OrderChangeValueOneOf as bQ, type LineItemChanges as bR, type LineItemQuantityChange as bS, type LineItemPriceChange as bT, type LineItemProductNameChange as bU, type LineItemDescriptionLineChange as bV, type LineItemModifiersChange as bW, type ManagedLineItem as bX, type ManagedDiscount as bY, type TranslatedValue as bZ, type LineItemAmount as b_, type ItemModifier as ba, type BuyerInfo as bb, type BuyerInfoIdOneOf as bc, type CurrencyConversionDetails as bd, type PriceSummary as be, type AddressWithContact as bf, type Address as bg, type StreetAddress as bh, type AddressLocation as bi, type FullAddressContactDetails as bj, type VatId as bk, type V1ShippingInformation as bl, type DeliveryLogistics as bm, type DeliveryLogisticsAddressOneOf as bn, type PickupDetails as bo, type PickupAddress as bp, type DeliveryTimeSlot as bq, type ShippingPrice as br, type ShippingRegion as bs, type TaxSummary as bt, type OrderTaxInfo as bu, type OrderTaxBreakdown as bv, type AppliedDiscount as bw, type AppliedDiscountDiscountSourceOneOf as bx, type Coupon as by, type MerchantDiscount as bz, type PreparePaymentCollectionApplicationErrors as c, type OrderCanceledEventOrderCanceled as c$, type TotalPriceChange as c0, type ShippingInformationChange as c1, type ShippingInformation as c2, type SavedPaymentMethod as c3, type AuthorizedPaymentCreated as c4, type AuthorizedPaymentCaptured as c5, type AuthorizedPaymentVoided as c6, type RefundInitiated as c7, type RefundedPayment as c8, type RefundedPaymentKindOneOf as c9, type CustomField as cA, type BalanceSummary as cB, type Balance as cC, type CashRounding as cD, type AdditionalFee as cE, type FulfillmentStatusesAggregate as cF, type Tags as cG, type TagList as cH, type Location as cI, type OrderSettings as cJ, type OrderSettingsAllowedActionsOneOf as cK, type OrderSettingsEditableByOneOf as cL, type CustomAllowedActions as cM, type OwnerApps as cN, type FormInfo as cO, type FormIdentifier as cP, type PlatformFeeSummary as cQ, type PlatformFee as cR, type OrderApproved as cS, type OrdersExperiments as cT, type OrderRejectedEventOrderRejected as cU, type OrderItemsRestocked as cV, type V1RestockItem as cW, type OrderImported as cX, type ImportedOrderDeleted as cY, type PaymentStatusUpdated as cZ, type FulfillmentStatusUpdated as c_, type RegularPaymentRefund as ca, type GiftCardPaymentRefund as cb, type MembershipPaymentRefund as cc, type PaymentRefunded as cd, type PaymentRefundFailed as ce, type RefundedAsStoreCredit as cf, type PaymentPending as cg, type PaymentPendingPaymentDetailsOneOf as ch, type RegularPayment as ci, type RegularPaymentPaymentMethodDetailsOneOf as cj, type CreditCardDetails as ck, type PaymentCanceled as cl, type PaymentCanceledPaymentDetailsOneOf as cm, type PaymentDeclined as cn, type PaymentDeclinedPaymentDetailsOneOf as co, type ReceiptCreated as cp, type ReceiptCreatedReceiptInfoOneOf as cq, type WixReceipt as cr, type ExternalReceipt as cs, type ReceiptSent as ct, type ReceiptSentReceiptInfoOneOf as cu, type ChargebackCreated as cv, type ChargebackReversed as cw, type CreatedBy as cx, type CreatedByStringOneOf as cy, type ChannelInfo as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type PreviewCancelEmailResponse as d$, type OrderDeltasCommitted as d0, type CommittedDiffs as d1, type CommittedDiffsShippingUpdateInfoOneOf as d2, type ItemChangedDetails as d3, type OrderLineItemChangedDetails as d4, type LineItemDelta as d5, type LineItemDeltaDeltaOneOf as d6, type AppliedDiscountDelta as d7, type AppliedDiscountDeltaDeltaOneOf as d8, type AdditionalFeeDelta as d9, 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 SendFulfillmentEmailRequest as dN, type SendFulfillmentEmailResponse as dO, type SendMerchantOrderReceivedPushRequest as dP, type SendMerchantOrderReceivedPushResponse as dQ, type PreviewEmailByTypeRequest as dR, type PreviewEmailByTypeResponse as dS, type PreviewRefundEmailRequest as dT, type RefundDetails as dU, type RefundItem as dV, type LineItemRefund as dW, type AdditionalFeeRefund as dX, type ShippingRefund as dY, type PreviewRefundEmailResponse as dZ, type PreviewCancelEmailRequest as d_, type AdditionalFeeDeltaDeltaOneOf as da, type DraftOrderCommitSettings as db, type InventoryUpdateDetails as dc, type ImportOrderRequest as dd, type ImportOrderResponse as de, type SetOrderNumberCounterRequest as df, type SetOrderNumberCounterResponse as dg, type BulkDeleteImportedOrdersRequest as dh, type BulkDeleteImportedOrdersResponse as di, type DomainEvent as dj, type DomainEventBodyOneOf as dk, type EntityCreatedEvent as dl, type RestoreInfo as dm, type EntityUpdatedEvent as dn, type EntityDeletedEvent as dp, type ActionEvent as dq, type MessageEnvelope as dr, type IdentificationData as ds, type IdentificationDataIdOneOf as dt, type AccountInfo as du, type SendBuyerConfirmationEmailRequest as dv, type SendBuyerConfirmationEmailResponse as dw, type SendBuyerPaymentsReceivedEmailRequest as dx, type SendBuyerPaymentsReceivedEmailResponse as dy, type SendBuyerPickupConfirmationEmailRequest as dz, type PaymentCapture as e, type BulkMarkOrdersAsPaidRequest as e$, type PreviewCancelRefundEmailRequest as e0, type PreviewCancelRefundEmailResponse as e1, type PreviewBuyerPaymentsReceivedEmailRequest as e2, type PreviewBuyerPaymentsReceivedEmailResponse as e3, type PreviewBuyerConfirmationEmailRequest as e4, type PreviewBuyerConfirmationEmailResponse as e5, type PreviewBuyerPickupConfirmationEmailRequest as e6, type PreviewBuyerPickupConfirmationEmailResponse as e7, type PreviewShippingConfirmationEmailRequest as e8, type PreviewShippingConfirmationEmailResponse as e9, type PicassoAssigned as eA, type PicassoUnassigned as eB, type WixelAssigned as eC, type WixelUnassigned as eD, type StudioTwoAssigned as eE, type StudioTwoUnassigned as eF, type UserDomainMediaEnabled as eG, type UserDomainMediaDisabled as eH, type EditorlessAssigned as eI, type EditorlessUnassigned as eJ, type HasCustomEmailConfigurationsRequest as eK, type HasCustomEmailConfigurationsResponse as eL, type AddToAutomationMigrationPopulationRequest as eM, type AddToAutomationMigrationPopulationResponse as eN, type IsInAutomationMigrationPopulationRequest as eO, type IsInAutomationMigrationPopulationResponse as eP, type PreparePaymentCollectionRequest as eQ, type RedirectUrls as eR, type DelayedCaptureSettings as eS, type Duration as eT, type GetPaymentCollectabilityStatusRequest as eU, type RecordManuallyCollectedPaymentRequest as eV, type UserDefinedPaymentMethodName as eW, type UserDefinedPaymentMethodNameKindOneOf as eX, type RecordManuallyCollectedPaymentResponse as eY, type MarkOrderAsPaidRequest as eZ, type MarkOrderAsPaidResponse as e_, type PreviewResendDownloadLinksEmailRequest as ea, type PreviewResendDownloadLinksEmailResponse as eb, type Empty as ec, type MetaSiteSpecialEvent as ed, type MetaSiteSpecialEventPayloadOneOf as ee, type Asset as ef, type SiteCreated as eg, type SiteTransferred as eh, type SiteDeleted as ei, type DeleteContext as ej, type SiteUndeleted as ek, type SitePublished as el, type SiteUnpublished as em, type SiteMarkedAsTemplate as en, type SiteMarkedAsWixSite as eo, type ServiceProvisioned as ep, type ServiceRemoved as eq, type SiteRenamed as er, type SiteHardDeleted as es, type NamespaceChanged as et, type StudioAssigned as eu, type StudioUnassigned as ev, type SiteUrlChanged as ew, type SitePurgedExternally as ex, type OdeditorAssigned as ey, type OdeditorUnassigned as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type InternalUpdateExistingOperation as f$, type BulkMarkOrdersAsPaidResponse as f0, type BulkOrderResult as f1, type ItemMetadata as f2, type ApplicationError as f3, type BulkActionMetadata as f4, type GetRefundabilityStatusRequest as f5, type GetRefundabilityStatusResponse as f6, type Refundability as f7, type RefundabilityAdditionalRefundabilityInfoOneOf as f8, type CreatePaymentGatewayOrderRequest as f9, type PaymentMethodName as fA, type GiftCardPaymentDetails as fB, type MembershipPaymentDetails as fC, type WixReceiptInfo as fD, type ExternalReceiptInfo as fE, type CashRoundingDetails as fF, type Refund as fG, type RefundTransaction as fH, type RefundStatusInfo as fI, type AggregatedRefundSummary as fJ, type RefundItemsBreakdown as fK, type LineItemRefundSummary as fL, type CalculateRefundRequest as fM, type CalculateRefundItemRequest as fN, type CalculateRefundResponse as fO, type CalculateRefundItemResponse as fP, type VoidAuthorizedPaymentsRequest as fQ, type CaptureAuthorizedPaymentsRequest as fR, type ChargeSavedPaymentMethodRequest as fS, type ChargeSavedPaymentMethodResponse as fT, type UpdateInternalDocumentsEvent as fU, type UpdateInternalDocumentsEventOperationOneOf as fV, type InternalDocument as fW, type InternalDocumentUpdateOperation as fX, type DeleteByIdsOperation as fY, type DeleteByFilterOperation as fZ, type InternalDocumentUpdateByFilterOperation as f_, type ChargedBy as fa, type CreatePaymentGatewayOrderResponse as fb, type ChargeMembershipsRequest as fc, type MembershipChargeItem as fd, type MembershipName as fe, type ServiceProperties as ff, type ChargeMembershipsResponse as fg, type TriggerRefundRequest as fh, type PaymentRefund as fi, type RefundSideEffects as fj, type RestockInfo as fk, type RestockItem as fl, type TriggerRefundResponse as fm, type OrderTransactions as fn, type Payment as fo, type PaymentPaymentDetailsOneOf as fp, type PaymentReceiptInfoOneOf as fq, type RegularPaymentDetails as fr, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fs, type CreditCardPaymentMethodDetails as ft, type AuthorizationDetails as fu, type AuthorizationCapture as fv, type AuthorizationActionFailureDetails as fw, type AuthorizationVoid as fx, type V1ScheduledAction as fy, type Chargeback as fz, type GetOrderApplicationErrors as g, type UpdateOrderLineItemRequest as g$, type VersionedDocumentUpdateOperation as g0, type VersionedDeleteByIdsOperation as g1, type VersionedDocumentId as g2, type TriggerReindexRequest as g3, type TriggerReindexResponse as g4, type TriggerReindexOrderRequest as g5, type DiffmatokyPayload as g6, type ErrorInformation as g7, type GetOrderRequest as g8, type GetOrderResponse as g9, type DraftOrderDiffsBuyerUpdateInfoOneOf as gA, type DraftOrderDiffsBillingUpdateInfoOneOf as gB, type DraftOrderDiffsRecipientUpdateInfoOneOf as gC, type V1LineItemDelta as gD, type V1LineItemDeltaDeltaOneOf as gE, type CommitDeltasResponse as gF, type ArchiveOrderRequest as gG, type ArchiveOrderResponse as gH, type BulkArchiveOrdersRequest as gI, type BulkArchiveOrdersResponse as gJ, type BulkArchiveOrdersByFilterRequest as gK, type BulkArchiveOrdersByFilterResponse as gL, type UnArchiveOrderRequest as gM, type UnArchiveOrderResponse as gN, type BulkUnArchiveOrdersRequest as gO, type BulkUnArchiveOrdersResponse as gP, type BulkUnArchiveOrdersByFilterRequest as gQ, type BulkUnArchiveOrdersByFilterResponse as gR, type UpdateBuyerInfoRequest as gS, type BuyerInfoUpdate as gT, type UpdateBuyerInfoResponse as gU, type UpdateBuyerEmailRequest as gV, type UpdateBuyerEmailResponse as gW, type UpdateOrderShippingAddressRequest as gX, type UpdateOrderShippingAddressResponse as gY, type UpdateBillingContactDetailsRequest as gZ, type UpdateBillingContactDetailsResponse as g_, type InternalQueryOrdersRequest as ga, type PlatformQuery as gb, type PlatformQueryPagingMethodOneOf as gc, type Sorting as gd, type PlatformPaging as ge, type CursorPaging as gf, type InternalQueryOrdersResponse as gg, type PlatformPagingMetadata as gh, type Cursors as gi, type QueryOrderRequest as gj, type QueryOrderResponse as gk, type SearchOrdersRequest as gl, type CursorSearch as gm, type CursorSearchPagingMethodOneOf as gn, type CursorPagingMetadata as go, type CreateOrderRequest as gp, type OrderCreationSettings as gq, type OrderCreationSettingsEditableByOneOf as gr, type OrderCreateNotifications as gs, type CreateOrderResponse as gt, type UpdateOrderRequest as gu, type UpdateOrderResponse as gv, type BulkUpdateOrdersRequest as gw, type CommitDeltasRequest as gx, type DraftOrderDiffs as gy, type DraftOrderDiffsShippingUpdateInfoOneOf as gz, type OrderSearch as h, type V1CreatePaymentGatewayOrderRequest as h$, type UpdateOrderLineItemResponse as h0, type UpdateOrderLineItemsRequest as h1, type MaskedOrderLineItem as h2, type UpdateOrderLineItemsResponse as h3, type AddInternalActivityRequest as h4, type InternalActivity as h5, type InternalActivityContentOneOf as h6, type OrderPlaced as h7, type OrderPaid as h8, type OrderFulfilled as h9, type UpdateLineItemsDescriptionLinesRequest as hA, type LineItemUpdate as hB, type UpdateLineItemsDescriptionLinesResponse as hC, type MarkOrderAsSeenByHumanRequest as hD, type MarkOrderAsSeenByHumanResponse as hE, type CancelOrderRequest as hF, type UpdateOrderStatusRequest as hG, type UpdateOrderStatusResponse as hH, type MarkAsFulfilledRequest as hI, type MarkAsFulfilledResponse as hJ, type BulkMarkAsFulfilledRequest as hK, type BulkMarkAsFulfilledResponse as hL, type BulkMarkAsFulfilledByFilterRequest as hM, type BulkMarkAsFulfilledByFilterResponse as hN, type MarkAsUnfulfilledRequest as hO, type MarkAsUnfulfilledResponse as hP, type BulkMarkAsUnfulfilledRequest as hQ, type BulkMarkAsUnfulfilledResponse as hR, type BulkMarkAsUnfulfilledByFilterRequest as hS, type BulkMarkAsUnfulfilledByFilterResponse as hT, type BulkSetBusinessLocationRequest as hU, type BulkSetBusinessLocationResponse as hV, type BulkSetBusinessLocationResult as hW, type V1MarkOrderAsPaidRequest as hX, type V1MarkOrderAsPaidResponse as hY, type V1BulkMarkOrdersAsPaidRequest as hZ, type V1BulkMarkOrdersAsPaidResponse as h_, type OrderNotFulfilled as ha, type OrderCanceled as hb, type DownloadLinkSent as hc, type TrackingNumberAdded as hd, type TrackingNumberEdited as he, type TrackingLinkAdded as hf, type ShippingConfirmationEmailSent as hg, type InvoiceAdded as hh, type InvoiceSent as hi, type FulfillerEmailSent as hj, type ShippingAddressEdited as hk, type EmailEdited as hl, type PickupReadyEmailSent as hm, type OrderPartiallyPaid as hn, type OrderPending as ho, type OrderRejected as hp, type AddInternalActivityResponse as hq, type AddActivityRequest as hr, type PublicActivity as hs, type PublicActivityContentOneOf as ht, type AddActivityResponse as hu, type AddActivitiesRequest as hv, type UpdateActivityRequest as hw, type UpdateActivityResponse as hx, type DeleteActivityRequest as hy, type DeleteActivityResponse as hz, type CreateOrderOptions as i, type PaymentCollectionMarkOrderAsPaidOptions as i$, type V1CreatePaymentGatewayOrderResponse as i0, type GetShipmentsRequest as i1, type GetShipmentsResponse as i2, type AggregateOrdersRequest as i3, type AggregateOrdersResponse as i4, type DecrementItemsQuantityRequest as i5, type DecrementData as i6, type DecrementItemsQuantityResponse as i7, type BulkUpdateOrderTagsRequest as i8, type TagsTags as i9, type InvoiceDates as iA, type LineItems as iB, type LineItem as iC, type BigDecimalWrapper as iD, type LineItemTax as iE, type Source as iF, 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 iN, type Payments as iO, type InvoicesPayment as iP, type MetaData as iQ, type InvoiceDynamicPriceTotals as iR, type CustomFieldValue as iS, type Value as iT, type Deposit as iU, type BaseEventMetadata as iV, type EventMetadata as iW, type AccountInfoMetadata as iX, type SetOrderNumberCounterOptions as iY, type BulkDeleteImportedOrdersOptions as iZ, type RecordManuallyCollectedPaymentOptions as i_, type TagsTagList as ia, type BulkUpdateOrderTagsResult as ib, type SendOrderUpdatedDomainEventRequest as ic, type SendOrderUpdatedDomainEventResponse as id, type Task as ie, type TaskKey as ig, type TaskAction as ih, type TaskActionActionOneOf as ii, type Complete as ij, type Cancel as ik, type Reschedule as il, type InvoiceSentEvent as im, type IdAndVersion as io, type InvoiceFields as ip, type Customer as iq, type Email as ir, type QuotesAddress as is, type AddressDescription as it, type Phone as iu, type Company as iv, type CommonAddress as iw, type CommonAddressStreetOneOf as ix, type Subdivision as iy, type StandardDetails as iz, type CreateOrderApplicationErrors as j, type PlacementWithLiterals as j$, type PaymentCollectionCreatePaymentGatewayOrderOptions as j0, type ChargeMembershipsOptions as j1, type TriggerRefundOptions as j2, type OrderSearchSpec as j3, type UpdateOrderLineItemIdentifiers as j4, type UpdateOrderLineItem as j5, type UpdateActivityIdentifiers as j6, type DeleteActivityIdentifiers as j7, type AggregateOrdersOptions as j8, utils as j9, type InventoryActionWithLiterals as jA, type WebhookIdentityTypeWithLiterals as jB, type PreviewEmailTypeWithLiterals as jC, type StateWithLiterals as jD, type SiteCreatedContextWithLiterals as jE, type NamespaceWithLiterals as jF, type DeleteStatusWithLiterals as jG, type OriginWithLiterals as jH, type ScheduledActionWithLiterals as jI, type DurationUnitWithLiterals as jJ, type PaymentCollectabilityStatusWithLiterals as jK, type PredefinedPaymentMethodWithLiterals as jL, type RefundableStatusWithLiterals as jM, type NonRefundableReasonWithLiterals as jN, type ManuallyRefundableReasonWithLiterals as jO, type RestockTypeWithLiterals as jP, type TransactionStatusWithLiterals as jQ, type AuthorizationCaptureStatusWithLiterals as jR, type AuthorizationVoidStatusWithLiterals as jS, type ReasonWithLiterals as jT, type ActionTypeWithLiterals as jU, type ChargebackStatusWithLiterals as jV, type MembershipPaymentStatusWithLiterals as jW, type RefundStatusWithLiterals as jX, type VersioningModeWithLiterals as jY, type SortOrderWithLiterals as jZ, type OrderApprovalStrategyWithLiterals as j_, type DescriptionLineTypeWithLiterals as ja, type DimensionsUnitWithLiterals as jb, type ItemTypePresetWithLiterals as jc, type PaymentOptionTypeWithLiterals as jd, type JurisdictionTypeWithLiterals as je, type SubscriptionFrequencyWithLiterals as jf, type AdjustmentTypeWithLiterals as jg, type TaxableAddressTypeWithLiterals as jh, type PaymentStatusWithLiterals as ji, type FulfillmentStatusWithLiterals as jj, type WeightUnitWithLiterals as jk, type VatTypeWithLiterals as jl, type PickupMethodWithLiterals as jm, type OrderStatusWithLiterals as jn, type DiscountTypeWithLiterals as jo, type DiscountReasonWithLiterals as jp, type LineItemQuantityChangeTypeWithLiterals as jq, type ActivityTypeWithLiterals as jr, type OrderActivityTypeEnumActivityTypeWithLiterals as js, type AttributionSourceWithLiterals as jt, type ChannelTypeWithLiterals as ju, type AdditionalFeeSourceWithLiterals as jv, type OrderActionTypeWithLiterals as jw, type SpecificItemsCouponBehaviorWithLiterals as jx, type ChargeTypeWithLiterals as jy, type DeltaPaymentOptionTypeWithLiterals as jz, type UpdateOrderApplicationErrors as k, type SubdivisionTypeWithLiterals as k0, type SourceTypeWithLiterals as k1, type CustomFieldGroupWithLiterals as k2, type ValueTypeWithLiterals as k3, type DepositTypeWithLiterals as k4, type InvoiceStatusWithLiterals as k5, type RecordManuallyCollectedPaymentApplicationErrors as k6, type PaymentCollectionMarkOrderAsPaidApplicationErrors as k7, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as k8, type TriggerRefundApplicationErrors as k9, type UpdateOrderStatusApplicationErrors as ka, type CommonSearchWithEntityContext as kb, onOrderApproved as kc, onOrderCanceled as kd, onOrderCommitted as ke, onOrderCreated as kf, onOrderFulfilled as kg, onOrderPaymentStatusUpdated as kh, onOrderUpdated as ki, preparePaymentCollection as kj, getPaymentCollectabilityStatus as kk, voidAuthorizedPayments as kl, captureAuthorizedPayments as km, getOrder as kn, createOrder as ko, updateOrder as kp, bulkUpdateOrders as kq, addActivities as kr, cancelOrder as ks, bulkUpdateOrderTags as kt, 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 OrderCanceledEnvelope as t, type OrderCommittedEnvelope as u, type OrderCreatedEnvelope as v, type OrderFulfilledEnvelope as w, type OrderPaymentStatusUpdatedEnvelope as x, type OrderUpdatedEnvelope as y, DimensionsUnit as z };