@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
@@ -878,14 +878,13 @@ interface BillingAdjustment {
878
878
  priceSummary?: BillingAdjustmentPriceSummary;
879
879
  }
880
880
  declare enum AdjustmentType {
881
- UNKNOWN_ADJUSTMENT_TYPE = "UNKNOWN_ADJUSTMENT_TYPE",
882
881
  /** Adjustment increases the total amount due to changes like covering extra billing days. Typically results in an additional fee. */
883
882
  EXTRA_CHARGE = "EXTRA_CHARGE",
884
883
  /** Adjustment reduces the total amount due to changes like covering fewer billing days. Typically results in a credit or discount. */
885
884
  CREDIT = "CREDIT"
886
885
  }
887
886
  /** @enumType */
888
- type AdjustmentTypeWithLiterals = AdjustmentType | 'UNKNOWN_ADJUSTMENT_TYPE' | 'EXTRA_CHARGE' | 'CREDIT';
887
+ type AdjustmentTypeWithLiterals = AdjustmentType | 'EXTRA_CHARGE' | 'CREDIT';
889
888
  interface BillingAdjustmentPriceSummary {
890
889
  /** Subtotal of adjustment, before tax. */
891
890
  subtotal?: Price;
@@ -946,13 +945,12 @@ interface TaxableAddressTaxableAddressDataOneOf {
946
945
  addressType?: TaxableAddressTypeWithLiterals;
947
946
  }
948
947
  declare enum TaxableAddressType {
949
- UNKNOWN_TAXABLE_ADDRESS = "UNKNOWN_TAXABLE_ADDRESS",
950
948
  BUSINESS = "BUSINESS",
951
949
  BILLING = "BILLING",
952
950
  SHIPPING = "SHIPPING"
953
951
  }
954
952
  /** @enumType */
955
- type TaxableAddressTypeWithLiterals = TaxableAddressType | 'UNKNOWN_TAXABLE_ADDRESS' | 'BUSINESS' | 'BILLING' | 'SHIPPING';
953
+ type TaxableAddressTypeWithLiterals = TaxableAddressType | 'BUSINESS' | 'BILLING' | 'SHIPPING';
956
954
  interface ExtendedFields {
957
955
  /**
958
956
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
@@ -1376,12 +1374,11 @@ interface PickupAddress {
1376
1374
  subdivisionFullname?: string | null;
1377
1375
  }
1378
1376
  declare enum PickupMethod {
1379
- UNKNOWN_METHOD = "UNKNOWN_METHOD",
1380
1377
  STORE_PICKUP = "STORE_PICKUP",
1381
1378
  PICKUP_POINT = "PICKUP_POINT"
1382
1379
  }
1383
1380
  /** @enumType */
1384
- type PickupMethodWithLiterals = PickupMethod | 'UNKNOWN_METHOD' | 'STORE_PICKUP' | 'PICKUP_POINT';
1381
+ type PickupMethodWithLiterals = PickupMethod | 'STORE_PICKUP' | 'PICKUP_POINT';
1385
1382
  interface DeliveryTimeSlot {
1386
1383
  /** Delivery slot starting time. */
1387
1384
  from?: Date | null;
@@ -2498,10 +2495,6 @@ declare enum ActivityType {
2498
2495
  CUSTOM_ACTIVITY = "CUSTOM_ACTIVITY",
2499
2496
  /** Comment added to the order by a merchant. */
2500
2497
  MERCHANT_COMMENT = "MERCHANT_COMMENT",
2501
- /** Order was created as a result of an exchange. */
2502
- ORDER_CREATED_FROM_EXCHANGE = "ORDER_CREATED_FROM_EXCHANGE",
2503
- /** New exchange order was created from this order. */
2504
- NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
2505
2498
  /** Partial payment was received for the order. */
2506
2499
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
2507
2500
  /** Changes were applied to a draft order. */
@@ -2590,10 +2583,8 @@ declare enum ActivityType {
2590
2583
  CHARGEBACK_REVERSED = "CHARGEBACK_REVERSED"
2591
2584
  }
2592
2585
  /** @enumType */
2593
- 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';
2586
+ 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';
2594
2587
  declare enum OrderActivityTypeEnumActivityType {
2595
- /** Default value. This value is unused. */
2596
- UNKNOWN_ACTIVITY_TYPE = "UNKNOWN_ACTIVITY_TYPE",
2597
2588
  /** New order was created and placed. */
2598
2589
  ORDER_PLACED = "ORDER_PLACED",
2599
2590
  /** Order payment was completed and confirmed. */
@@ -2628,14 +2619,8 @@ declare enum OrderActivityTypeEnumActivityType {
2628
2619
  EMAIL_EDITED = "EMAIL_EDITED",
2629
2620
  /** Email notification for pickup readiness was sent. */
2630
2621
  PICKUP_READY_EMAIL_SENT = "PICKUP_READY_EMAIL_SENT",
2631
- /** Custom activity created by a third-party application. */
2632
- CUSTOM_ACTIVITY = "CUSTOM_ACTIVITY",
2633
2622
  /** Comment added to the order by a merchant. */
2634
2623
  MERCHANT_COMMENT = "MERCHANT_COMMENT",
2635
- /** Order was created as a result of an exchange. */
2636
- ORDER_CREATED_FROM_EXCHANGE = "ORDER_CREATED_FROM_EXCHANGE",
2637
- /** New exchange order was created from this order. */
2638
- NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
2639
2624
  /** Partial payment was received for the order. */
2640
2625
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
2641
2626
  /** Changes were applied to a draft order. */
@@ -2726,7 +2711,7 @@ declare enum OrderActivityTypeEnumActivityType {
2726
2711
  ORDER_REFUNDED = "ORDER_REFUNDED"
2727
2712
  }
2728
2713
  /** @enumType */
2729
- 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';
2714
+ 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';
2730
2715
  declare enum AttributionSource {
2731
2716
  UNSPECIFIED = "UNSPECIFIED",
2732
2717
  FACEBOOK_ADS = "FACEBOOK_ADS"
@@ -3014,7 +2999,6 @@ interface AdditionalFee {
3014
2999
  source?: AdditionalFeeSourceWithLiterals;
3015
3000
  }
3016
3001
  declare enum AdditionalFeeSource {
3017
- UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
3018
3002
  /** The additional fee was added by an additional fee service plugin. */
3019
3003
  SERVICE_PLUGIN = "SERVICE_PLUGIN",
3020
3004
  /** The additional fee was added to the item by a catalog or custom line item. */
@@ -3027,7 +3011,7 @@ declare enum AdditionalFeeSource {
3027
3011
  PLATFORM = "PLATFORM"
3028
3012
  }
3029
3013
  /** @enumType */
3030
- type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
3014
+ type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
3031
3015
  interface FulfillmentStatusesAggregate {
3032
3016
  /** Unique string values based on Fulfillment entities statuses */
3033
3017
  statuses?: string[] | null;
@@ -3288,7 +3272,6 @@ interface PlatformFee {
3288
3272
  percentageRate?: string;
3289
3273
  }
3290
3274
  declare enum ChargeType {
3291
- UNKNOWN_CHARGE_TYPE = "UNKNOWN_CHARGE_TYPE",
3292
3275
  /**
3293
3276
  * Platform fee passed on to buyer.
3294
3277
  *
@@ -3303,7 +3286,7 @@ declare enum ChargeType {
3303
3286
  ABSORBED = "ABSORBED"
3304
3287
  }
3305
3288
  /** @enumType */
3306
- type ChargeTypeWithLiterals = ChargeType | 'UNKNOWN_CHARGE_TYPE' | 'PASS_ON' | 'ABSORBED';
3289
+ type ChargeTypeWithLiterals = ChargeType | 'PASS_ON' | 'ABSORBED';
3307
3290
  /** Triggered when the order status changes to approved */
3308
3291
  interface OrderApproved {
3309
3292
  /** The order that was updated */
@@ -3567,8 +3550,6 @@ interface OrderLineItemChangedDetails {
3567
3550
  }
3568
3551
  /** Type of selected payment option for catalog item */
3569
3552
  declare enum DeltaPaymentOptionType {
3570
- /** Irrelevant */
3571
- UNKNOWN_PAYMENT_OPTION = "UNKNOWN_PAYMENT_OPTION",
3572
3553
  /** The entire payment for the given item will happen after checkout. */
3573
3554
  FULL_PAYMENT_OFFLINE = "FULL_PAYMENT_OFFLINE",
3574
3555
  /**
@@ -3578,7 +3559,7 @@ declare enum DeltaPaymentOptionType {
3578
3559
  MEMBERSHIP_OFFLINE = "MEMBERSHIP_OFFLINE"
3579
3560
  }
3580
3561
  /** @enumType */
3581
- type DeltaPaymentOptionTypeWithLiterals = DeltaPaymentOptionType | 'UNKNOWN_PAYMENT_OPTION' | 'FULL_PAYMENT_OFFLINE' | 'MEMBERSHIP_OFFLINE';
3562
+ type DeltaPaymentOptionTypeWithLiterals = DeltaPaymentOptionType | 'FULL_PAYMENT_OFFLINE' | 'MEMBERSHIP_OFFLINE';
3582
3563
  interface LineItemDelta extends LineItemDeltaDeltaOneOf {
3583
3564
  lineItemAdded?: boolean;
3584
3565
  changedDetails?: ItemChangedDetails;
@@ -3852,164 +3833,6 @@ interface AccountInfo {
3852
3833
  */
3853
3834
  siteId?: string | null;
3854
3835
  }
3855
- interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
3856
- /** insert/update documents */
3857
- update?: InternalDocumentUpdateOperation;
3858
- /** delete by document ids */
3859
- deleteByIds?: DeleteByIdsOperation;
3860
- /** delete documents matching filter */
3861
- deleteByFilter?: DeleteByFilterOperation;
3862
- /** update internal documents matching filter */
3863
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3864
- /** update only existing documents */
3865
- updateExisting?: InternalUpdateExistingOperation;
3866
- /** insert/update documents with versioning */
3867
- versionedUpdate?: VersionedDocumentUpdateOperation;
3868
- /** delete by document ids with versioning */
3869
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3870
- /**
3871
- * type of the documents
3872
- * @minLength 2
3873
- */
3874
- documentType?: string;
3875
- /**
3876
- * language of the documents (mandatory)
3877
- * @minLength 2
3878
- */
3879
- language?: string | null;
3880
- /**
3881
- * one or more search documents
3882
- * @deprecated
3883
- */
3884
- addDocuments?: InternalDocument[];
3885
- /**
3886
- * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
3887
- * @deprecated
3888
- */
3889
- removeDocumentIds?: string[];
3890
- /** id to pass to processing notification */
3891
- correlationId?: string | null;
3892
- /** when event was created / issued */
3893
- issuedAt?: Date | null;
3894
- }
3895
- /** @oneof */
3896
- interface UpdateInternalDocumentsEventOperationOneOf {
3897
- /** insert/update documents */
3898
- update?: InternalDocumentUpdateOperation;
3899
- /** delete by document ids */
3900
- deleteByIds?: DeleteByIdsOperation;
3901
- /** delete documents matching filter */
3902
- deleteByFilter?: DeleteByFilterOperation;
3903
- /** update internal documents matching filter */
3904
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3905
- /** update only existing documents */
3906
- updateExisting?: InternalUpdateExistingOperation;
3907
- /** insert/update documents with versioning */
3908
- versionedUpdate?: VersionedDocumentUpdateOperation;
3909
- /** delete by document ids with versioning */
3910
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3911
- }
3912
- interface InternalDocument {
3913
- /** document with mandatory fields (id) and with fields specific to the type of the document */
3914
- document?: Record<string, any> | null;
3915
- }
3916
- interface InternalDocumentUpdateOperation {
3917
- /** documents to index or update */
3918
- documents?: InternalDocument[];
3919
- }
3920
- interface DeleteByIdsOperation {
3921
- /** ids of the documents to delete */
3922
- documentIds?: string[];
3923
- /**
3924
- * tenant id for custom tenancy strategy
3925
- * @minLength 2
3926
- * @maxLength 300
3927
- */
3928
- tenantId?: string | null;
3929
- }
3930
- interface DeleteByFilterOperation {
3931
- /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
3932
- filter?: Record<string, any> | null;
3933
- /**
3934
- * tenant id for custom tenancy strategy
3935
- * @minLength 2
3936
- * @maxLength 300
3937
- */
3938
- tenantId?: string | null;
3939
- }
3940
- interface InternalDocumentUpdateByFilterOperation {
3941
- /** documents matching this filter will be updated */
3942
- filter?: Record<string, any> | null;
3943
- /** partial document to apply */
3944
- document?: InternalDocument;
3945
- /**
3946
- * tenant id for custom tenancy strategy
3947
- * @minLength 2
3948
- * @maxLength 300
3949
- */
3950
- tenantId?: string | null;
3951
- }
3952
- interface InternalUpdateExistingOperation {
3953
- /** documents to update */
3954
- documents?: InternalDocument[];
3955
- }
3956
- interface VersionedDocumentUpdateOperation {
3957
- /** documents to create or overwrite */
3958
- documents?: InternalDocument[];
3959
- /** versioning mode to use instead of default */
3960
- versioningMode?: VersioningModeWithLiterals;
3961
- }
3962
- declare enum VersioningMode {
3963
- /** use default versioning mode agreed with search team */
3964
- DEFAULT = "DEFAULT",
3965
- /** execute only if version is greater than existing */
3966
- GREATER_THAN = "GREATER_THAN",
3967
- /** execute only if version is greater or equal to existing */
3968
- GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
3969
- }
3970
- /** @enumType */
3971
- type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
3972
- interface VersionedDeleteByIdsOperation {
3973
- /** ids with version of the documents to delete */
3974
- documentIds?: VersionedDocumentId[];
3975
- /**
3976
- * tenant id for custom tenancy strategy
3977
- * @minLength 2
3978
- * @maxLength 300
3979
- */
3980
- tenantId?: string | null;
3981
- }
3982
- interface VersionedDocumentId {
3983
- /** document id */
3984
- documentId?: string;
3985
- /** document version */
3986
- version?: string;
3987
- /** versioning mode to use instead of default */
3988
- versioningMode?: VersioningModeWithLiterals;
3989
- }
3990
- interface TriggerReindexRequest {
3991
- /** @format GUID */
3992
- metasiteId?: string;
3993
- /**
3994
- * @minLength 1
3995
- * @maxLength 100
3996
- * @maxSize 100
3997
- */
3998
- orderIds?: string[];
3999
- }
4000
- interface TriggerReindexResponse {
4001
- }
4002
- interface Empty {
4003
- }
4004
- interface TriggerReindexOrderRequest {
4005
- /** @format GUID */
4006
- metasiteId?: string;
4007
- /**
4008
- * @minLength 1
4009
- * @maxLength 100
4010
- */
4011
- orderId?: string;
4012
- }
4013
3836
  interface SendBuyerConfirmationEmailRequest {
4014
3837
  /** @format GUID */
4015
3838
  orderId?: string;
@@ -4310,6 +4133,8 @@ interface PreviewResendDownloadLinksEmailRequest {
4310
4133
  interface PreviewResendDownloadLinksEmailResponse {
4311
4134
  emailPreview?: string;
4312
4135
  }
4136
+ interface Empty {
4137
+ }
4313
4138
  interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
4314
4139
  /** Emitted on a meta site creation. */
4315
4140
  siteCreated?: SiteCreated;
@@ -4843,12 +4668,11 @@ interface AddToAutomationMigrationPopulationRequest {
4843
4668
  origin?: OriginWithLiterals;
4844
4669
  }
4845
4670
  declare enum Origin {
4846
- UNKNOWN_ORIGIN = "UNKNOWN_ORIGIN",
4847
4671
  OPT_IN = "OPT_IN",
4848
4672
  MIGRATION = "MIGRATION"
4849
4673
  }
4850
4674
  /** @enumType */
4851
- type OriginWithLiterals = Origin | 'UNKNOWN_ORIGIN' | 'OPT_IN' | 'MIGRATION';
4675
+ type OriginWithLiterals = Origin | 'OPT_IN' | 'MIGRATION';
4852
4676
  interface AddToAutomationMigrationPopulationResponse {
4853
4677
  success?: boolean;
4854
4678
  }
@@ -4924,14 +4748,13 @@ interface DelayedCaptureSettings {
4924
4748
  delayDuration?: Duration;
4925
4749
  }
4926
4750
  declare enum ScheduledAction {
4927
- UNSPECIFIED = "UNSPECIFIED",
4928
4751
  /** Whether payment will be auto-voided when duration passes */
4929
4752
  VOID = "VOID",
4930
4753
  /** Whether payment will be auto-captured when duration passes */
4931
4754
  CAPTURE = "CAPTURE"
4932
4755
  }
4933
4756
  /** @enumType */
4934
- type ScheduledActionWithLiterals = ScheduledAction | 'UNSPECIFIED' | 'VOID' | 'CAPTURE';
4757
+ type ScheduledActionWithLiterals = ScheduledAction | 'VOID' | 'CAPTURE';
4935
4758
  interface Duration {
4936
4759
  /**
4937
4760
  * Amount of units. For example, 30 MINUTES, 1 HOURS, 7 DAYS, etc
@@ -4942,13 +4765,12 @@ interface Duration {
4942
4765
  unit?: DurationUnitWithLiterals;
4943
4766
  }
4944
4767
  declare enum DurationUnit {
4945
- UNKNOWN_DURATION_UNIT = "UNKNOWN_DURATION_UNIT",
4946
4768
  MINUTES = "MINUTES",
4947
4769
  HOURS = "HOURS",
4948
4770
  DAYS = "DAYS"
4949
4771
  }
4950
4772
  /** @enumType */
4951
- type DurationUnitWithLiterals = DurationUnit | 'UNKNOWN_DURATION_UNIT' | 'MINUTES' | 'HOURS' | 'DAYS';
4773
+ type DurationUnitWithLiterals = DurationUnit | 'MINUTES' | 'HOURS' | 'DAYS';
4952
4774
  interface PreparePaymentCollectionResponse {
4953
4775
  /** Payment gateway order id which is associated with given payment */
4954
4776
  paymentGatewayOrderId?: string;
@@ -5028,8 +4850,6 @@ interface UserDefinedPaymentMethodNameKindOneOf {
5028
4850
  }
5029
4851
  /** Predefined payment method types for offline/manual payments. */
5030
4852
  declare enum PredefinedPaymentMethod {
5031
- /** Unknown payment method type. */
5032
- UNKNOWN_PREDEFINED_PAYMENT_METHOD = "UNKNOWN_PREDEFINED_PAYMENT_METHOD",
5033
4853
  /** Cash payment. */
5034
4854
  CASH = "CASH",
5035
4855
  /** Bank transfer. */
@@ -5038,7 +4858,7 @@ declare enum PredefinedPaymentMethod {
5038
4858
  CHECK = "CHECK"
5039
4859
  }
5040
4860
  /** @enumType */
5041
- type PredefinedPaymentMethodWithLiterals = PredefinedPaymentMethod | 'UNKNOWN_PREDEFINED_PAYMENT_METHOD' | 'CASH' | 'BANK_TRANSFER' | 'CHECK';
4861
+ type PredefinedPaymentMethodWithLiterals = PredefinedPaymentMethod | 'CASH' | 'BANK_TRANSFER' | 'CHECK';
5042
4862
  interface RecordManuallyCollectedPaymentResponse {
5043
4863
  }
5044
4864
  interface MarkOrderAsPaidRequest {
@@ -5624,7 +5444,6 @@ interface AuthorizationCapture {
5624
5444
  failureDetails?: AuthorizationActionFailureDetails;
5625
5445
  }
5626
5446
  declare enum AuthorizationCaptureStatus {
5627
- UNKNOWN_STATUS = "UNKNOWN_STATUS",
5628
5447
  /** Capture operation still in progress. */
5629
5448
  PENDING = "PENDING",
5630
5449
  /** Capture operation succeeded. */
@@ -5633,7 +5452,7 @@ declare enum AuthorizationCaptureStatus {
5633
5452
  FAILED = "FAILED"
5634
5453
  }
5635
5454
  /** @enumType */
5636
- type AuthorizationCaptureStatusWithLiterals = AuthorizationCaptureStatus | 'UNKNOWN_STATUS' | 'PENDING' | 'SUCCEEDED' | 'FAILED';
5455
+ type AuthorizationCaptureStatusWithLiterals = AuthorizationCaptureStatus | 'PENDING' | 'SUCCEEDED' | 'FAILED';
5637
5456
  interface AuthorizationActionFailureDetails {
5638
5457
  /** @maxLength 100 */
5639
5458
  failureCode?: string;
@@ -5649,7 +5468,6 @@ interface AuthorizationVoid {
5649
5468
  reason?: ReasonWithLiterals;
5650
5469
  }
5651
5470
  declare enum AuthorizationVoidStatus {
5652
- UNKNOWN_STATUS = "UNKNOWN_STATUS",
5653
5471
  /** Void operation still in progress. */
5654
5472
  PENDING = "PENDING",
5655
5473
  /** Void operation succeeded. */
@@ -5658,17 +5476,16 @@ declare enum AuthorizationVoidStatus {
5658
5476
  FAILED = "FAILED"
5659
5477
  }
5660
5478
  /** @enumType */
5661
- type AuthorizationVoidStatusWithLiterals = AuthorizationVoidStatus | 'UNKNOWN_STATUS' | 'PENDING' | 'SUCCEEDED' | 'FAILED';
5479
+ type AuthorizationVoidStatusWithLiterals = AuthorizationVoidStatus | 'PENDING' | 'SUCCEEDED' | 'FAILED';
5662
5480
  /** Reason the authorization was voided. */
5663
5481
  declare enum Reason {
5664
- UNKNOWN_REASON = "UNKNOWN_REASON",
5665
5482
  /** Authorization was voided by user. */
5666
5483
  MANUAL = "MANUAL",
5667
5484
  /** Authorization passed execution date. */
5668
5485
  SCHEDULED = "SCHEDULED"
5669
5486
  }
5670
5487
  /** @enumType */
5671
- type ReasonWithLiterals = Reason | 'UNKNOWN_REASON' | 'MANUAL' | 'SCHEDULED';
5488
+ type ReasonWithLiterals = Reason | 'MANUAL' | 'SCHEDULED';
5672
5489
  interface V1ScheduledAction {
5673
5490
  /** Type of the action. */
5674
5491
  actionType?: ActionTypeWithLiterals;
@@ -5676,12 +5493,11 @@ interface V1ScheduledAction {
5676
5493
  executionDate?: Date | null;
5677
5494
  }
5678
5495
  declare enum ActionType {
5679
- UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
5680
5496
  VOID = "VOID",
5681
5497
  CAPTURE = "CAPTURE"
5682
5498
  }
5683
5499
  /** @enumType */
5684
- type ActionTypeWithLiterals = ActionType | 'UNKNOWN_ACTION_TYPE' | 'VOID' | 'CAPTURE';
5500
+ type ActionTypeWithLiterals = ActionType | 'VOID' | 'CAPTURE';
5685
5501
  interface Chargeback {
5686
5502
  /**
5687
5503
  * Chargeback ID.
@@ -5727,14 +5543,13 @@ interface Chargeback {
5727
5543
  externalId?: string | null;
5728
5544
  }
5729
5545
  declare enum ChargebackStatus {
5730
- UNSPECIFIED = "UNSPECIFIED",
5731
5546
  /** Chargeback was approved. */
5732
5547
  APPROVED = "APPROVED",
5733
5548
  /** Chargeback was reversed. */
5734
5549
  REVERSED = "REVERSED"
5735
5550
  }
5736
5551
  /** @enumType */
5737
- type ChargebackStatusWithLiterals = ChargebackStatus | 'UNSPECIFIED' | 'APPROVED' | 'REVERSED';
5552
+ type ChargebackStatusWithLiterals = ChargebackStatus | 'APPROVED' | 'REVERSED';
5738
5553
  interface PaymentMethodName {
5739
5554
  /**
5740
5555
  * Translated payment method name in buyer language.
@@ -6114,6 +5929,162 @@ interface ChargeSavedPaymentMethodResponse {
6114
5929
  /** Payment gateway's order ID (e.g Wix Payments) */
6115
5930
  paymentGatewayOrderId?: string;
6116
5931
  }
5932
+ interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
5933
+ /** insert/update documents */
5934
+ update?: InternalDocumentUpdateOperation;
5935
+ /** delete by document ids */
5936
+ deleteByIds?: DeleteByIdsOperation;
5937
+ /** delete documents matching filter */
5938
+ deleteByFilter?: DeleteByFilterOperation;
5939
+ /** update internal documents matching filter */
5940
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
5941
+ /** update only existing documents */
5942
+ updateExisting?: InternalUpdateExistingOperation;
5943
+ /** insert/update documents with versioning */
5944
+ versionedUpdate?: VersionedDocumentUpdateOperation;
5945
+ /** delete by document ids with versioning */
5946
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
5947
+ /**
5948
+ * type of the documents
5949
+ * @minLength 2
5950
+ */
5951
+ documentType?: string;
5952
+ /**
5953
+ * language of the documents (mandatory)
5954
+ * @minLength 2
5955
+ */
5956
+ language?: string | null;
5957
+ /**
5958
+ * one or more search documents
5959
+ * @deprecated
5960
+ */
5961
+ addDocuments?: InternalDocument[];
5962
+ /**
5963
+ * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
5964
+ * @deprecated
5965
+ */
5966
+ removeDocumentIds?: string[];
5967
+ /** id to pass to processing notification */
5968
+ correlationId?: string | null;
5969
+ /** when event was created / issued */
5970
+ issuedAt?: Date | null;
5971
+ }
5972
+ /** @oneof */
5973
+ interface UpdateInternalDocumentsEventOperationOneOf {
5974
+ /** insert/update documents */
5975
+ update?: InternalDocumentUpdateOperation;
5976
+ /** delete by document ids */
5977
+ deleteByIds?: DeleteByIdsOperation;
5978
+ /** delete documents matching filter */
5979
+ deleteByFilter?: DeleteByFilterOperation;
5980
+ /** update internal documents matching filter */
5981
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
5982
+ /** update only existing documents */
5983
+ updateExisting?: InternalUpdateExistingOperation;
5984
+ /** insert/update documents with versioning */
5985
+ versionedUpdate?: VersionedDocumentUpdateOperation;
5986
+ /** delete by document ids with versioning */
5987
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
5988
+ }
5989
+ interface InternalDocument {
5990
+ /** document with mandatory fields (id) and with fields specific to the type of the document */
5991
+ document?: Record<string, any> | null;
5992
+ }
5993
+ interface InternalDocumentUpdateOperation {
5994
+ /** documents to index or update */
5995
+ documents?: InternalDocument[];
5996
+ }
5997
+ interface DeleteByIdsOperation {
5998
+ /** ids of the documents to delete */
5999
+ documentIds?: string[];
6000
+ /**
6001
+ * tenant id for custom tenancy strategy
6002
+ * @minLength 2
6003
+ * @maxLength 300
6004
+ */
6005
+ tenantId?: string | null;
6006
+ }
6007
+ interface DeleteByFilterOperation {
6008
+ /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
6009
+ filter?: Record<string, any> | null;
6010
+ /**
6011
+ * tenant id for custom tenancy strategy
6012
+ * @minLength 2
6013
+ * @maxLength 300
6014
+ */
6015
+ tenantId?: string | null;
6016
+ }
6017
+ interface InternalDocumentUpdateByFilterOperation {
6018
+ /** documents matching this filter will be updated */
6019
+ filter?: Record<string, any> | null;
6020
+ /** partial document to apply */
6021
+ document?: InternalDocument;
6022
+ /**
6023
+ * tenant id for custom tenancy strategy
6024
+ * @minLength 2
6025
+ * @maxLength 300
6026
+ */
6027
+ tenantId?: string | null;
6028
+ }
6029
+ interface InternalUpdateExistingOperation {
6030
+ /** documents to update */
6031
+ documents?: InternalDocument[];
6032
+ }
6033
+ interface VersionedDocumentUpdateOperation {
6034
+ /** documents to create or overwrite */
6035
+ documents?: InternalDocument[];
6036
+ /** versioning mode to use instead of default */
6037
+ versioningMode?: VersioningModeWithLiterals;
6038
+ }
6039
+ declare enum VersioningMode {
6040
+ /** use default versioning mode agreed with search team */
6041
+ DEFAULT = "DEFAULT",
6042
+ /** execute only if version is greater than existing */
6043
+ GREATER_THAN = "GREATER_THAN",
6044
+ /** execute only if version is greater or equal to existing */
6045
+ GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
6046
+ }
6047
+ /** @enumType */
6048
+ type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
6049
+ interface VersionedDeleteByIdsOperation {
6050
+ /** ids with version of the documents to delete */
6051
+ documentIds?: VersionedDocumentId[];
6052
+ /**
6053
+ * tenant id for custom tenancy strategy
6054
+ * @minLength 2
6055
+ * @maxLength 300
6056
+ */
6057
+ tenantId?: string | null;
6058
+ }
6059
+ interface VersionedDocumentId {
6060
+ /** document id */
6061
+ documentId?: string;
6062
+ /** document version */
6063
+ version?: string;
6064
+ /** versioning mode to use instead of default */
6065
+ versioningMode?: VersioningModeWithLiterals;
6066
+ }
6067
+ interface TriggerReindexRequest {
6068
+ /** @format GUID */
6069
+ metasiteId?: string;
6070
+ /**
6071
+ * @minLength 1
6072
+ * @maxLength 100
6073
+ * @maxSize 100
6074
+ */
6075
+ orderIds?: string[];
6076
+ }
6077
+ interface TriggerReindexResponse {
6078
+ }
6079
+ interface TriggerReindexOrderRequest {
6080
+ /** @format GUID */
6081
+ metasiteId?: string;
6082
+ /**
6083
+ * @minLength 1
6084
+ * @maxLength 100
6085
+ */
6086
+ orderId?: string;
6087
+ }
6117
6088
  interface DiffmatokyPayload {
6118
6089
  left?: string;
6119
6090
  right?: string;
@@ -9507,4 +9478,4 @@ interface BulkUpdateOrderTagsOptions {
9507
9478
  unassignTags?: TagsTags;
9508
9479
  }
9509
9480
 
9510
- export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersOptions as D, type BulkUpdateOrdersResponse as E, type UpdateOrderLineItemIdentifiers as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItem as H, type ImportOrderResponse as I, type UpdateOrderLineItemResponse as J, type PublicActivity as K, type AddActivityResponse as L, type MarkOrderAsPaidResponse as M, type AddActivitiesOptions as N, type Order as O, type Price as P, type AddActivitiesResponse as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityIdentifiers as W, type UpdateActivityResponse as X, type DeleteActivityIdentifiers as Y, type DeleteActivityResponse as Z, type CancelOrderOptions as _, type SetOrderNumberCounterResponse as a, ChargebackStatus as a$, type CancelOrderApplicationErrors as a0, type OrderStatusWithLiterals as a1, type UpdateOrderStatusResponse as a2, type UpdateOrderStatusApplicationErrors as a3, type AggregateOrdersOptions as a4, type AggregateOrdersResponse as a5, type BulkUpdateOrderTagsOptions as a6, type BulkUpdateOrderTagsResponse as a7, type OrderApprovedEnvelope as a8, type OrderCanceledEnvelope as a9, AdditionalFeeSource as aA, OrderActionType as aB, SpecificItemsCouponBehavior as aC, ChargeType as aD, DeltaPaymentOptionType as aE, InventoryAction as aF, WebhookIdentityType as aG, VersioningMode as aH, PreviewEmailType as aI, State as aJ, SiteCreatedContext as aK, Namespace as aL, DeleteStatus as aM, Origin as aN, ScheduledAction as aO, DurationUnit as aP, PaymentCollectabilityStatus as aQ, PredefinedPaymentMethod as aR, RefundableStatus as aS, NonRefundableReason as aT, ManuallyRefundableReason as aU, RestockType as aV, TransactionStatus as aW, AuthorizationCaptureStatus as aX, AuthorizationVoidStatus as aY, Reason as aZ, ActionType as a_, type OrderCommittedEnvelope as aa, type OrderCreatedEnvelope as ab, type OrderFulfilledEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, type OrderUpdatedEnvelope as ae, DescriptionLineType as af, DimensionsUnit as ag, ItemTypePreset as ah, PaymentOptionType as ai, JurisdictionType as aj, SubscriptionFrequency as ak, AdjustmentType as al, TaxableAddressType as am, PaymentStatus as an, FulfillmentStatus as ao, WeightUnit as ap, VatType as aq, PickupMethod as ar, OrderStatus as as, DiscountType as at, DiscountReason as au, LineItemQuantityChangeType as av, ActivityType as aw, OrderActivityTypeEnumActivityType as ax, AttributionSource as ay, ChannelType as az, type BulkDeleteImportedOrdersResponse as b, type TaxSummary as b$, MembershipPaymentStatus as b0, RefundStatus as b1, SortOrder as b2, OrderApprovalStrategy as b3, Placement as b4, SubdivisionType as b5, SourceType as b6, CustomFieldGroup as b7, ValueType as b8, DepositType as b9, type BillingAdjustmentPriceSummary as bA, type PriceDescription as bB, type LocationAndQuantity as bC, type TaxableAddress as bD, type TaxableAddressTaxableAddressDataOneOf as bE, type ExtendedFields as bF, type ModifierGroup as bG, type TranslatableString as bH, type ItemModifier as bI, type BuyerInfo as bJ, type BuyerInfoIdOneOf as bK, type CurrencyConversionDetails as bL, type PriceSummary as bM, type AddressWithContact as bN, type Address as bO, type StreetAddress as bP, type AddressLocation as bQ, type FullAddressContactDetails as bR, type VatId as bS, type V1ShippingInformation as bT, type DeliveryLogistics as bU, type DeliveryLogisticsAddressOneOf as bV, type PickupDetails as bW, type PickupAddress as bX, type DeliveryTimeSlot as bY, type ShippingPrice as bZ, type ShippingRegion as b_, InvoiceStatus as ba, type OrderLineItem as bb, type ProductName as bc, type CatalogReference as bd, type DescriptionLine as be, type DescriptionLineValueOneOf as bf, type DescriptionLineDescriptionLineValueOneOf as bg, type DescriptionLineName as bh, type PlainTextValue as bi, type Color as bj, type FocalPoint as bk, type PhysicalProperties as bl, type Dimensions as bm, type ItemType as bn, type ItemTypeItemTypeDataOneOf as bo, type RestockLocation as bp, type ItemTaxFullDetails as bq, type LineItemTaxInfo as br, type LineItemTaxBreakdown as bs, type DigitalFile as bt, type SubscriptionInfo as bu, type SubscriptionTitle as bv, type SubscriptionDescription as bw, type SubscriptionSettings as bx, type FreeTrialPeriod as by, type BillingAdjustment as bz, type PreparePaymentCollectionOptions as c, type ReceiptSent as c$, type OrderTaxInfo as c0, type OrderTaxBreakdown as c1, type AppliedDiscount as c2, type AppliedDiscountDiscountSourceOneOf as c3, type Coupon as c4, type MerchantDiscount as c5, type MerchantDiscountMerchantDiscountReasonOneOf as c6, type DiscountRule as c7, type DiscountRuleName as c8, type LineItemDiscount as c9, type ShippingInformation as cA, type SavedPaymentMethod as cB, type AuthorizedPaymentCreated as cC, type AuthorizedPaymentCaptured as cD, type AuthorizedPaymentVoided as cE, type RefundInitiated as cF, type RefundedPayment as cG, type RefundedPaymentKindOneOf as cH, type RegularPaymentRefund as cI, type GiftCardPaymentRefund as cJ, type MembershipPaymentRefund as cK, type PaymentRefunded as cL, type PaymentRefundFailed as cM, type RefundedAsStoreCredit as cN, type PaymentPending as cO, type PaymentPendingPaymentDetailsOneOf as cP, type RegularPayment as cQ, type RegularPaymentPaymentMethodDetailsOneOf as cR, type CreditCardDetails as cS, type PaymentCanceled as cT, type PaymentCanceledPaymentDetailsOneOf as cU, type PaymentDeclined as cV, type PaymentDeclinedPaymentDetailsOneOf as cW, type ReceiptCreated as cX, type ReceiptCreatedReceiptInfoOneOf as cY, type WixReceipt as cZ, type ExternalReceipt as c_, type ItemCombination as ca, type ItemCombinationLineItem as cb, type Activity as cc, type ActivityContentOneOf as cd, type CustomActivity as ce, type MerchantComment as cf, type OrderRefunded as cg, type OrderCreatedFromExchange as ch, type NewExchangeOrderCreated as ci, type LineItemExchangeData as cj, type DraftOrderChangesApplied as ck, type OrderChange as cl, type OrderChangeValueOneOf as cm, type LineItemChanges as cn, type LineItemQuantityChange as co, type LineItemPriceChange as cp, type LineItemProductNameChange as cq, type LineItemDescriptionLineChange as cr, type LineItemModifiersChange as cs, type ManagedLineItem as ct, type ManagedDiscount as cu, type TranslatedValue as cv, type LineItemAmount as cw, type ManagedAdditionalFee as cx, type TotalPriceChange as cy, type ShippingInformationChange as cz, type PreparePaymentCollectionResponse as d, type UpdateInternalDocumentsEventOperationOneOf as d$, type ReceiptSentReceiptInfoOneOf as d0, type ChargebackCreated as d1, type ChargebackReversed as d2, type CreatedBy as d3, type CreatedByStringOneOf as d4, type ChannelInfo as d5, type CustomField as d6, type BalanceSummary as d7, type Balance as d8, type CashRounding as d9, type CommittedDiffs as dA, type CommittedDiffsShippingUpdateInfoOneOf as dB, type ItemChangedDetails as dC, type OrderLineItemChangedDetails as dD, type LineItemDelta as dE, type LineItemDeltaDeltaOneOf as dF, type AppliedDiscountDelta as dG, type AppliedDiscountDeltaDeltaOneOf as dH, type AdditionalFeeDelta as dI, type AdditionalFeeDeltaDeltaOneOf as dJ, type DraftOrderCommitSettings as dK, type InventoryUpdateDetails as dL, type ImportOrderRequest as dM, type SetOrderNumberCounterRequest as dN, type BulkDeleteImportedOrdersRequest as dO, type DomainEvent as dP, type DomainEventBodyOneOf as dQ, type EntityCreatedEvent as dR, type RestoreInfo as dS, type EntityUpdatedEvent as dT, type EntityDeletedEvent as dU, type ActionEvent as dV, type MessageEnvelope as dW, type IdentificationData as dX, type IdentificationDataIdOneOf as dY, type AccountInfo as dZ, type UpdateInternalDocumentsEvent as d_, type AdditionalFee as da, type FulfillmentStatusesAggregate as db, type Tags as dc, type TagList as dd, type Location as de, type OrderSettings as df, type OrderSettingsAllowedActionsOneOf as dg, type OrderSettingsEditableByOneOf as dh, type CustomAllowedActions as di, type OwnerApps as dj, type FormInfo as dk, type FormIdentifier as dl, type PlatformFeeSummary as dm, type PlatformFee as dn, type OrderApproved as dp, type OrdersExperiments as dq, type OrderRejectedEventOrderRejected as dr, type OrderItemsRestocked as ds, type V1RestockItem as dt, type OrderImported as du, type ImportedOrderDeleted as dv, type PaymentStatusUpdated as dw, type FulfillmentStatusUpdated as dx, type OrderCanceledEventOrderCanceled as dy, type OrderDeltasCommitted as dz, type PreparePaymentCollectionApplicationErrors as e, type SiteDeleted as e$, type InternalDocument as e0, type InternalDocumentUpdateOperation as e1, type DeleteByIdsOperation as e2, type DeleteByFilterOperation as e3, type InternalDocumentUpdateByFilterOperation as e4, type InternalUpdateExistingOperation as e5, type VersionedDocumentUpdateOperation as e6, type VersionedDeleteByIdsOperation as e7, type VersionedDocumentId as e8, type TriggerReindexRequest as e9, type PreviewEmailByTypeResponse as eA, type PreviewRefundEmailRequest as eB, type RefundDetails as eC, type RefundItem as eD, type LineItemRefund as eE, type AdditionalFeeRefund as eF, type ShippingRefund as eG, type PreviewRefundEmailResponse as eH, type PreviewCancelEmailRequest as eI, type PreviewCancelEmailResponse as eJ, type PreviewCancelRefundEmailRequest as eK, type PreviewCancelRefundEmailResponse as eL, type PreviewBuyerPaymentsReceivedEmailRequest as eM, type PreviewBuyerPaymentsReceivedEmailResponse as eN, type PreviewBuyerConfirmationEmailRequest as eO, type PreviewBuyerConfirmationEmailResponse as eP, type PreviewBuyerPickupConfirmationEmailRequest as eQ, type PreviewBuyerPickupConfirmationEmailResponse as eR, type PreviewShippingConfirmationEmailRequest as eS, type PreviewShippingConfirmationEmailResponse as eT, type PreviewResendDownloadLinksEmailRequest as eU, type PreviewResendDownloadLinksEmailResponse as eV, type MetaSiteSpecialEvent as eW, type MetaSiteSpecialEventPayloadOneOf as eX, type Asset as eY, type SiteCreated as eZ, type SiteTransferred as e_, type TriggerReindexResponse as ea, type Empty as eb, type TriggerReindexOrderRequest as ec, type SendBuyerConfirmationEmailRequest as ed, type SendBuyerConfirmationEmailResponse as ee, type SendBuyerPaymentsReceivedEmailRequest as ef, type SendBuyerPaymentsReceivedEmailResponse as eg, type SendBuyerPickupConfirmationEmailRequest as eh, type SendBuyerPickupConfirmationEmailResponse as ei, type BulkSendBuyerPickupConfirmationEmailsRequest as ej, type BulkSendBuyerPickupConfirmationEmailsResponse as ek, type SendBuyerShippingConfirmationEmailRequest as el, type SendBuyerShippingConfirmationEmailResponse as em, type BulkSendBuyerShippingConfirmationEmailsRequest as en, type BulkSendBuyerShippingConfirmationEmailsResponse as eo, type SendMerchantOrderReceivedNotificationRequest as ep, type SendMerchantOrderReceivedNotificationResponse as eq, type SendCancelRefundEmailRequest as er, type SendCancelRefundEmailResponse as es, type SendRefundEmailRequest as et, type SendRefundEmailResponse as eu, type SendFulfillmentEmailRequest as ev, type SendFulfillmentEmailResponse as ew, type SendMerchantOrderReceivedPushRequest as ex, type SendMerchantOrderReceivedPushResponse as ey, type PreviewEmailByTypeRequest as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type Payment as f$, type DeleteContext as f0, type SiteUndeleted as f1, type SitePublished as f2, type SiteUnpublished as f3, type SiteMarkedAsTemplate as f4, type SiteMarkedAsWixSite as f5, type ServiceProvisioned as f6, type ServiceRemoved as f7, type SiteRenamed as f8, type SiteHardDeleted as f9, type Duration as fA, type GetPaymentCollectabilityStatusRequest as fB, type RecordManuallyCollectedPaymentRequest as fC, type UserDefinedPaymentMethodName as fD, type UserDefinedPaymentMethodNameKindOneOf as fE, type RecordManuallyCollectedPaymentResponse as fF, type MarkOrderAsPaidRequest as fG, type BulkMarkOrdersAsPaidRequest as fH, type BulkOrderResult as fI, type ItemMetadata as fJ, type ApplicationError as fK, type BulkActionMetadata as fL, type GetRefundabilityStatusRequest as fM, type Refundability as fN, type RefundabilityAdditionalRefundabilityInfoOneOf as fO, type CreatePaymentGatewayOrderRequest as fP, type ChargedBy as fQ, type ChargeMembershipsRequest as fR, type MembershipChargeItem as fS, type MembershipName as fT, type ServiceProperties as fU, type ChargeMembershipsResponse as fV, type TriggerRefundRequest as fW, type RefundSideEffects as fX, type RestockInfo as fY, type RestockItem as fZ, type OrderTransactions as f_, type NamespaceChanged as fa, type StudioAssigned as fb, type StudioUnassigned as fc, type SiteUrlChanged as fd, type SitePurgedExternally as fe, type OdeditorAssigned as ff, type OdeditorUnassigned as fg, type PicassoAssigned as fh, type PicassoUnassigned as fi, type WixelAssigned as fj, type WixelUnassigned as fk, type StudioTwoAssigned as fl, type StudioTwoUnassigned as fm, type UserDomainMediaEnabled as fn, type UserDomainMediaDisabled as fo, type EditorlessAssigned as fp, type EditorlessUnassigned as fq, type HasCustomEmailConfigurationsRequest as fr, type HasCustomEmailConfigurationsResponse as fs, type AddToAutomationMigrationPopulationRequest as ft, type AddToAutomationMigrationPopulationResponse as fu, type IsInAutomationMigrationPopulationRequest as fv, type IsInAutomationMigrationPopulationResponse as fw, type PreparePaymentCollectionRequest as fx, type RedirectUrls as fy, type DelayedCaptureSettings as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type DraftOrderDiffsRecipientUpdateInfoOneOf as g$, type PaymentPaymentDetailsOneOf as g0, type PaymentReceiptInfoOneOf as g1, type RegularPaymentDetails as g2, type RegularPaymentDetailsPaymentMethodDetailsOneOf as g3, type CreditCardPaymentMethodDetails as g4, type AuthorizationDetails as g5, type AuthorizationCapture as g6, type AuthorizationActionFailureDetails as g7, type AuthorizationVoid as g8, type V1ScheduledAction as g9, type PlatformQuery as gA, type PlatformQueryPagingMethodOneOf as gB, type Sorting as gC, type PlatformPaging as gD, type CursorPaging as gE, type InternalQueryOrdersResponse as gF, type PlatformPagingMetadata as gG, type Cursors as gH, type QueryOrderRequest as gI, type QueryOrderResponse as gJ, type SearchOrdersRequest as gK, type CursorSearch as gL, type CursorSearchPagingMethodOneOf as gM, type CursorPagingMetadata as gN, type CreateOrderRequest as gO, type OrderCreationSettings as gP, type OrderCreationSettingsEditableByOneOf as gQ, type OrderCreateNotifications as gR, type CreateOrderResponse as gS, type UpdateOrderRequest as gT, type UpdateOrderResponse as gU, type BulkUpdateOrdersRequest as gV, type CommitDeltasRequest as gW, type DraftOrderDiffs as gX, type DraftOrderDiffsShippingUpdateInfoOneOf as gY, type DraftOrderDiffsBuyerUpdateInfoOneOf as gZ, type DraftOrderDiffsBillingUpdateInfoOneOf as g_, type Chargeback as ga, type PaymentMethodName as gb, type GiftCardPaymentDetails as gc, type MembershipPaymentDetails as gd, type WixReceiptInfo as ge, type ExternalReceiptInfo as gf, type CashRoundingDetails as gg, type Refund as gh, type RefundTransaction as gi, type RefundStatusInfo as gj, type AggregatedRefundSummary as gk, type RefundItemsBreakdown as gl, type LineItemRefundSummary as gm, type CalculateRefundRequest as gn, type CalculateRefundItemRequest as go, type CalculateRefundResponse as gp, type CalculateRefundItemResponse as gq, type VoidAuthorizedPaymentsRequest as gr, type CaptureAuthorizedPaymentsRequest as gs, type ChargeSavedPaymentMethodRequest as gt, type ChargeSavedPaymentMethodResponse as gu, type DiffmatokyPayload as gv, type ErrorInformation as gw, type GetOrderRequest as gx, type GetOrderResponse as gy, type InternalQueryOrdersRequest as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type MarkAsFulfilledRequest as h$, type V1LineItemDelta as h0, type V1LineItemDeltaDeltaOneOf as h1, type CommitDeltasResponse as h2, type ArchiveOrderRequest as h3, type ArchiveOrderResponse as h4, type BulkArchiveOrdersRequest as h5, type BulkArchiveOrdersResponse as h6, type BulkArchiveOrdersByFilterRequest as h7, type BulkArchiveOrdersByFilterResponse as h8, type UnArchiveOrderRequest as h9, type DownloadLinkSent as hA, type TrackingNumberAdded as hB, type TrackingNumberEdited as hC, type TrackingLinkAdded as hD, type ShippingConfirmationEmailSent as hE, type InvoiceAdded as hF, type InvoiceSent as hG, type FulfillerEmailSent as hH, type ShippingAddressEdited as hI, type EmailEdited as hJ, type PickupReadyEmailSent as hK, type OrderPartiallyPaid as hL, type OrderPending as hM, type OrderRejected as hN, type AddInternalActivityResponse as hO, type AddActivityRequest as hP, type PublicActivityContentOneOf as hQ, type AddActivitiesRequest as hR, type UpdateActivityRequest as hS, type DeleteActivityRequest as hT, type UpdateLineItemsDescriptionLinesRequest as hU, type LineItemUpdate as hV, type UpdateLineItemsDescriptionLinesResponse as hW, type MarkOrderAsSeenByHumanRequest as hX, type MarkOrderAsSeenByHumanResponse as hY, type CancelOrderRequest as hZ, type UpdateOrderStatusRequest as h_, type UnArchiveOrderResponse as ha, type BulkUnArchiveOrdersRequest as hb, type BulkUnArchiveOrdersResponse as hc, type BulkUnArchiveOrdersByFilterRequest as hd, type BulkUnArchiveOrdersByFilterResponse as he, type UpdateBuyerInfoRequest as hf, type BuyerInfoUpdate as hg, type UpdateBuyerInfoResponse as hh, type UpdateBuyerEmailRequest as hi, type UpdateBuyerEmailResponse as hj, type UpdateOrderShippingAddressRequest as hk, type UpdateOrderShippingAddressResponse as hl, type UpdateBillingContactDetailsRequest as hm, type UpdateBillingContactDetailsResponse as hn, type UpdateOrderLineItemRequest as ho, type UpdateOrderLineItemsRequest as hp, type MaskedOrderLineItem as hq, type UpdateOrderLineItemsResponse as hr, type AddInternalActivityRequest as hs, type InternalActivity as ht, type InternalActivityContentOneOf as hu, type OrderPlaced as hv, type OrderPaid as hw, type OrderFulfilled as hx, type OrderNotFulfilled as hy, type OrderCanceled as hz, type BulkMarkOrdersAsPaidResponse as i, type ItemizedFee as i$, type MarkAsFulfilledResponse as i0, type BulkMarkAsFulfilledRequest as i1, type BulkMarkAsFulfilledResponse as i2, type BulkMarkAsFulfilledByFilterRequest as i3, type BulkMarkAsFulfilledByFilterResponse as i4, type MarkAsUnfulfilledRequest as i5, type MarkAsUnfulfilledResponse as i6, type BulkMarkAsUnfulfilledRequest as i7, type BulkMarkAsUnfulfilledResponse as i8, type BulkMarkAsUnfulfilledByFilterRequest as i9, type TaskAction as iA, type TaskActionActionOneOf as iB, type Complete as iC, type Cancel as iD, type Reschedule as iE, type InvoiceSentEvent as iF, type IdAndVersion as iG, type InvoiceFields as iH, type Customer as iI, type Email as iJ, type QuotesAddress as iK, type AddressDescription as iL, type Phone as iM, type Company as iN, type CommonAddress as iO, type CommonAddressStreetOneOf as iP, type Subdivision as iQ, type StandardDetails as iR, type InvoiceDates as iS, type LineItems as iT, type LineItem as iU, type BigDecimalWrapper as iV, type LineItemTax as iW, type Source as iX, type LineItemMetaData as iY, type Locale as iZ, type TotalPrice as i_, type BulkMarkAsUnfulfilledByFilterResponse as ia, type BulkSetBusinessLocationRequest as ib, type BulkSetBusinessLocationResponse as ic, type BulkSetBusinessLocationResult as id, type V1MarkOrderAsPaidRequest as ie, type V1MarkOrderAsPaidResponse as ig, type V1BulkMarkOrdersAsPaidRequest as ih, type V1BulkMarkOrdersAsPaidResponse as ii, type V1CreatePaymentGatewayOrderRequest as ij, type V1CreatePaymentGatewayOrderResponse as ik, type GetShipmentsRequest as il, type GetShipmentsResponse as im, type AggregateOrdersRequest as io, type DecrementItemsQuantityRequest as ip, type DecrementData as iq, type DecrementItemsQuantityResponse as ir, type BulkUpdateOrderTagsRequest as is, type TagsTags as it, type TagsTagList as iu, type BulkUpdateOrderTagsResult as iv, type SendOrderUpdatedDomainEventRequest as iw, type SendOrderUpdatedDomainEventResponse as ix, type Task as iy, type TaskKey as iz, type GetRefundabilityStatusResponse as j, type ChargebackStatusWithLiterals as j$, type Discount as j0, type DiscountOneDiscountTypeOneOf as j1, type CalculatedTaxes as j2, type CalculatedTax as j3, type Payments as j4, type InvoicesPayment as j5, type MetaData as j6, type InvoiceDynamicPriceTotals as j7, type CustomFieldValue as j8, type Value as j9, type AdditionalFeeSourceWithLiterals as jA, type OrderActionTypeWithLiterals as jB, type SpecificItemsCouponBehaviorWithLiterals as jC, type ChargeTypeWithLiterals as jD, type DeltaPaymentOptionTypeWithLiterals as jE, type InventoryActionWithLiterals as jF, type WebhookIdentityTypeWithLiterals as jG, type VersioningModeWithLiterals as jH, type PreviewEmailTypeWithLiterals as jI, type StateWithLiterals as jJ, type SiteCreatedContextWithLiterals as jK, type NamespaceWithLiterals as jL, type DeleteStatusWithLiterals as jM, type OriginWithLiterals as jN, type ScheduledActionWithLiterals as jO, type DurationUnitWithLiterals as jP, type PaymentCollectabilityStatusWithLiterals as jQ, type PredefinedPaymentMethodWithLiterals as jR, type RefundableStatusWithLiterals as jS, type NonRefundableReasonWithLiterals as jT, type ManuallyRefundableReasonWithLiterals as jU, type RestockTypeWithLiterals as jV, type TransactionStatusWithLiterals as jW, type AuthorizationCaptureStatusWithLiterals as jX, type AuthorizationVoidStatusWithLiterals as jY, type ReasonWithLiterals as jZ, type ActionTypeWithLiterals as j_, type Deposit as ja, type BaseEventMetadata as jb, type EventMetadata as jc, type AccountInfoMetadata as jd, type OrderSearchSpec as je, utils as jf, type DescriptionLineTypeWithLiterals as jg, type DimensionsUnitWithLiterals as jh, type ItemTypePresetWithLiterals as ji, type PaymentOptionTypeWithLiterals as jj, type JurisdictionTypeWithLiterals as jk, type SubscriptionFrequencyWithLiterals as jl, type AdjustmentTypeWithLiterals as jm, type TaxableAddressTypeWithLiterals as jn, type PaymentStatusWithLiterals as jo, type FulfillmentStatusWithLiterals as jp, type WeightUnitWithLiterals as jq, type VatTypeWithLiterals as jr, type PickupMethodWithLiterals as js, type DiscountTypeWithLiterals as jt, type DiscountReasonWithLiterals as ju, type LineItemQuantityChangeTypeWithLiterals as jv, type ActivityTypeWithLiterals as jw, type OrderActivityTypeEnumActivityTypeWithLiterals as jx, type AttributionSourceWithLiterals as jy, type ChannelTypeWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type MembershipPaymentStatusWithLiterals as k0, type RefundStatusWithLiterals as k1, type SortOrderWithLiterals as k2, type OrderApprovalStrategyWithLiterals as k3, type PlacementWithLiterals as k4, type SubdivisionTypeWithLiterals as k5, type SourceTypeWithLiterals as k6, type CustomFieldGroupWithLiterals as k7, type ValueTypeWithLiterals as k8, type DepositTypeWithLiterals as k9, bulkUpdateOrders as kA, updateOrderLineItem as kB, addActivity as kC, addActivities as kD, updateActivity as kE, deleteActivity as kF, cancelOrder as kG, updateOrderStatus as kH, aggregateOrders as kI, bulkUpdateOrderTags as kJ, type InvoiceStatusWithLiterals 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, importOrder as kj, setOrderNumberCounter as kk, bulkDeleteImportedOrders as kl, preparePaymentCollection as km, getPaymentCollectabilityStatus as kn, recordManuallyCollectedPayment as ko, paymentCollectionMarkOrderAsPaid as kp, paymentCollectionBulkMarkOrdersAsPaid as kq, getRefundabilityStatus as kr, paymentCollectionCreatePaymentGatewayOrder as ks, chargeMemberships as kt, triggerRefund as ku, voidAuthorizedPayments as kv, captureAuthorizedPayments as kw, getOrder as kx, createOrder as ky, updateOrder as kz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as l, type ChargeMembershipsOptions as m, type PaymentRefund as n, type TriggerRefundResponse as o, type TriggerRefundApplicationErrors as p, type VoidAuthorizedPaymentsApplicationErrors as q, type PaymentCapture as r, type CaptureAuthorizedPaymentsResponse as s, type CaptureAuthorizedPaymentsApplicationErrors as t, type GetOrderApplicationErrors as u, type OrderSearch as v, type SearchOrdersResponse as w, type CreateOrderOptions as x, type CreateOrderApplicationErrors as y, type UpdateOrderApplicationErrors as z };
9481
+ export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersOptions as D, type BulkUpdateOrdersResponse as E, type UpdateOrderLineItemIdentifiers as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItem as H, type ImportOrderResponse as I, type UpdateOrderLineItemResponse as J, type PublicActivity as K, type AddActivityResponse as L, type MarkOrderAsPaidResponse as M, type AddActivitiesOptions as N, type Order as O, type Price as P, type AddActivitiesResponse as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityIdentifiers as W, type UpdateActivityResponse as X, type DeleteActivityIdentifiers as Y, type DeleteActivityResponse as Z, type CancelOrderOptions as _, type SetOrderNumberCounterResponse as a, MembershipPaymentStatus as a$, type CancelOrderApplicationErrors as a0, type OrderStatusWithLiterals as a1, type UpdateOrderStatusResponse as a2, type UpdateOrderStatusApplicationErrors as a3, type AggregateOrdersOptions as a4, type AggregateOrdersResponse as a5, type BulkUpdateOrderTagsOptions as a6, type BulkUpdateOrderTagsResponse as a7, type OrderApprovedEnvelope as a8, type OrderCanceledEnvelope as a9, AdditionalFeeSource as aA, OrderActionType as aB, SpecificItemsCouponBehavior as aC, ChargeType as aD, DeltaPaymentOptionType as aE, InventoryAction as aF, WebhookIdentityType as aG, PreviewEmailType as aH, State as aI, SiteCreatedContext as aJ, Namespace as aK, DeleteStatus as aL, Origin as aM, ScheduledAction as aN, DurationUnit as aO, PaymentCollectabilityStatus as aP, PredefinedPaymentMethod as aQ, RefundableStatus as aR, NonRefundableReason as aS, ManuallyRefundableReason as aT, RestockType as aU, TransactionStatus as aV, AuthorizationCaptureStatus as aW, AuthorizationVoidStatus as aX, Reason as aY, ActionType as aZ, ChargebackStatus as a_, type OrderCommittedEnvelope as aa, type OrderCreatedEnvelope as ab, type OrderFulfilledEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, type OrderUpdatedEnvelope as ae, DescriptionLineType as af, DimensionsUnit as ag, ItemTypePreset as ah, PaymentOptionType as ai, JurisdictionType as aj, SubscriptionFrequency as ak, AdjustmentType as al, TaxableAddressType as am, PaymentStatus as an, FulfillmentStatus as ao, WeightUnit as ap, VatType as aq, PickupMethod as ar, OrderStatus as as, DiscountType as at, DiscountReason as au, LineItemQuantityChangeType as av, ActivityType as aw, OrderActivityTypeEnumActivityType as ax, AttributionSource as ay, ChannelType as az, type BulkDeleteImportedOrdersResponse as b, type TaxSummary as b$, RefundStatus as b0, VersioningMode as b1, SortOrder as b2, OrderApprovalStrategy as b3, Placement as b4, SubdivisionType as b5, SourceType as b6, CustomFieldGroup as b7, ValueType as b8, DepositType as b9, type BillingAdjustmentPriceSummary as bA, type PriceDescription as bB, type LocationAndQuantity as bC, type TaxableAddress as bD, type TaxableAddressTaxableAddressDataOneOf as bE, type ExtendedFields as bF, type ModifierGroup as bG, type TranslatableString as bH, type ItemModifier as bI, type BuyerInfo as bJ, type BuyerInfoIdOneOf as bK, type CurrencyConversionDetails as bL, type PriceSummary as bM, type AddressWithContact as bN, type Address as bO, type StreetAddress as bP, type AddressLocation as bQ, type FullAddressContactDetails as bR, type VatId as bS, type V1ShippingInformation as bT, type DeliveryLogistics as bU, type DeliveryLogisticsAddressOneOf as bV, type PickupDetails as bW, type PickupAddress as bX, type DeliveryTimeSlot as bY, type ShippingPrice as bZ, type ShippingRegion as b_, InvoiceStatus as ba, type OrderLineItem as bb, type ProductName as bc, type CatalogReference as bd, type DescriptionLine as be, type DescriptionLineValueOneOf as bf, type DescriptionLineDescriptionLineValueOneOf as bg, type DescriptionLineName as bh, type PlainTextValue as bi, type Color as bj, type FocalPoint as bk, type PhysicalProperties as bl, type Dimensions as bm, type ItemType as bn, type ItemTypeItemTypeDataOneOf as bo, type RestockLocation as bp, type ItemTaxFullDetails as bq, type LineItemTaxInfo as br, type LineItemTaxBreakdown as bs, type DigitalFile as bt, type SubscriptionInfo as bu, type SubscriptionTitle as bv, type SubscriptionDescription as bw, type SubscriptionSettings as bx, type FreeTrialPeriod as by, type BillingAdjustment as bz, type PreparePaymentCollectionOptions as c, type ReceiptSent as c$, type OrderTaxInfo as c0, type OrderTaxBreakdown as c1, type AppliedDiscount as c2, type AppliedDiscountDiscountSourceOneOf as c3, type Coupon as c4, type MerchantDiscount as c5, type MerchantDiscountMerchantDiscountReasonOneOf as c6, type DiscountRule as c7, type DiscountRuleName as c8, type LineItemDiscount as c9, type ShippingInformation as cA, type SavedPaymentMethod as cB, type AuthorizedPaymentCreated as cC, type AuthorizedPaymentCaptured as cD, type AuthorizedPaymentVoided as cE, type RefundInitiated as cF, type RefundedPayment as cG, type RefundedPaymentKindOneOf as cH, type RegularPaymentRefund as cI, type GiftCardPaymentRefund as cJ, type MembershipPaymentRefund as cK, type PaymentRefunded as cL, type PaymentRefundFailed as cM, type RefundedAsStoreCredit as cN, type PaymentPending as cO, type PaymentPendingPaymentDetailsOneOf as cP, type RegularPayment as cQ, type RegularPaymentPaymentMethodDetailsOneOf as cR, type CreditCardDetails as cS, type PaymentCanceled as cT, type PaymentCanceledPaymentDetailsOneOf as cU, type PaymentDeclined as cV, type PaymentDeclinedPaymentDetailsOneOf as cW, type ReceiptCreated as cX, type ReceiptCreatedReceiptInfoOneOf as cY, type WixReceipt as cZ, type ExternalReceipt as c_, type ItemCombination as ca, type ItemCombinationLineItem as cb, type Activity as cc, type ActivityContentOneOf as cd, type CustomActivity as ce, type MerchantComment as cf, type OrderRefunded as cg, type OrderCreatedFromExchange as ch, type NewExchangeOrderCreated as ci, type LineItemExchangeData as cj, type DraftOrderChangesApplied as ck, type OrderChange as cl, type OrderChangeValueOneOf as cm, type LineItemChanges as cn, type LineItemQuantityChange as co, type LineItemPriceChange as cp, type LineItemProductNameChange as cq, type LineItemDescriptionLineChange as cr, type LineItemModifiersChange as cs, type ManagedLineItem as ct, type ManagedDiscount as cu, type TranslatedValue as cv, type LineItemAmount as cw, type ManagedAdditionalFee as cx, type TotalPriceChange as cy, type ShippingInformationChange as cz, type PreparePaymentCollectionResponse as d, type SendBuyerConfirmationEmailResponse as d$, type ReceiptSentReceiptInfoOneOf as d0, type ChargebackCreated as d1, type ChargebackReversed as d2, type CreatedBy as d3, type CreatedByStringOneOf as d4, type ChannelInfo as d5, type CustomField as d6, type BalanceSummary as d7, type Balance as d8, type CashRounding as d9, type CommittedDiffs as dA, type CommittedDiffsShippingUpdateInfoOneOf as dB, type ItemChangedDetails as dC, type OrderLineItemChangedDetails as dD, type LineItemDelta as dE, type LineItemDeltaDeltaOneOf as dF, type AppliedDiscountDelta as dG, type AppliedDiscountDeltaDeltaOneOf as dH, type AdditionalFeeDelta as dI, type AdditionalFeeDeltaDeltaOneOf as dJ, type DraftOrderCommitSettings as dK, type InventoryUpdateDetails as dL, type ImportOrderRequest as dM, type SetOrderNumberCounterRequest as dN, type BulkDeleteImportedOrdersRequest as dO, type DomainEvent as dP, type DomainEventBodyOneOf as dQ, type EntityCreatedEvent as dR, type RestoreInfo as dS, type EntityUpdatedEvent as dT, type EntityDeletedEvent as dU, type ActionEvent as dV, type MessageEnvelope as dW, type IdentificationData as dX, type IdentificationDataIdOneOf as dY, type AccountInfo as dZ, type SendBuyerConfirmationEmailRequest as d_, type AdditionalFee as da, type FulfillmentStatusesAggregate as db, type Tags as dc, type TagList as dd, type Location as de, type OrderSettings as df, type OrderSettingsAllowedActionsOneOf as dg, type OrderSettingsEditableByOneOf as dh, type CustomAllowedActions as di, type OwnerApps as dj, type FormInfo as dk, type FormIdentifier as dl, type PlatformFeeSummary as dm, type PlatformFee as dn, type OrderApproved as dp, type OrdersExperiments as dq, type OrderRejectedEventOrderRejected as dr, type OrderItemsRestocked as ds, type V1RestockItem as dt, type OrderImported as du, type ImportedOrderDeleted as dv, type PaymentStatusUpdated as dw, type FulfillmentStatusUpdated as dx, type OrderCanceledEventOrderCanceled as dy, type OrderDeltasCommitted as dz, type PreparePaymentCollectionApplicationErrors as e, type SiteUrlChanged as e$, type SendBuyerPaymentsReceivedEmailRequest as e0, type SendBuyerPaymentsReceivedEmailResponse as e1, type SendBuyerPickupConfirmationEmailRequest as e2, type SendBuyerPickupConfirmationEmailResponse as e3, type BulkSendBuyerPickupConfirmationEmailsRequest as e4, type BulkSendBuyerPickupConfirmationEmailsResponse as e5, type SendBuyerShippingConfirmationEmailRequest as e6, type SendBuyerShippingConfirmationEmailResponse as e7, type BulkSendBuyerShippingConfirmationEmailsRequest as e8, type BulkSendBuyerShippingConfirmationEmailsResponse as e9, type PreviewBuyerConfirmationEmailResponse as eA, type PreviewBuyerPickupConfirmationEmailRequest as eB, type PreviewBuyerPickupConfirmationEmailResponse as eC, type PreviewShippingConfirmationEmailRequest as eD, type PreviewShippingConfirmationEmailResponse as eE, type PreviewResendDownloadLinksEmailRequest as eF, type PreviewResendDownloadLinksEmailResponse as eG, type Empty as eH, type MetaSiteSpecialEvent as eI, type MetaSiteSpecialEventPayloadOneOf as eJ, type Asset as eK, type SiteCreated as eL, type SiteTransferred as eM, type SiteDeleted as eN, type DeleteContext as eO, type SiteUndeleted as eP, type SitePublished as eQ, type SiteUnpublished as eR, type SiteMarkedAsTemplate as eS, type SiteMarkedAsWixSite as eT, type ServiceProvisioned as eU, type ServiceRemoved as eV, type SiteRenamed as eW, type SiteHardDeleted as eX, type NamespaceChanged as eY, type StudioAssigned as eZ, type StudioUnassigned as e_, type SendMerchantOrderReceivedNotificationRequest as ea, type SendMerchantOrderReceivedNotificationResponse as eb, type SendCancelRefundEmailRequest as ec, type SendCancelRefundEmailResponse as ed, type SendRefundEmailRequest as ee, type SendRefundEmailResponse as ef, type SendFulfillmentEmailRequest as eg, type SendFulfillmentEmailResponse as eh, type SendMerchantOrderReceivedPushRequest as ei, type SendMerchantOrderReceivedPushResponse as ej, type PreviewEmailByTypeRequest as ek, type PreviewEmailByTypeResponse as el, type PreviewRefundEmailRequest as em, type RefundDetails as en, type RefundItem as eo, type LineItemRefund as ep, type AdditionalFeeRefund as eq, type ShippingRefund as er, type PreviewRefundEmailResponse as es, type PreviewCancelEmailRequest as et, type PreviewCancelEmailResponse as eu, type PreviewCancelRefundEmailRequest as ev, type PreviewCancelRefundEmailResponse as ew, type PreviewBuyerPaymentsReceivedEmailRequest as ex, type PreviewBuyerPaymentsReceivedEmailResponse as ey, type PreviewBuyerConfirmationEmailRequest as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type MembershipPaymentDetails as f$, type SitePurgedExternally as f0, type OdeditorAssigned as f1, type OdeditorUnassigned as f2, type PicassoAssigned as f3, type PicassoUnassigned as f4, type WixelAssigned as f5, type WixelUnassigned as f6, type StudioTwoAssigned as f7, type StudioTwoUnassigned as f8, type UserDomainMediaEnabled as f9, type RefundabilityAdditionalRefundabilityInfoOneOf as fA, type CreatePaymentGatewayOrderRequest as fB, type ChargedBy as fC, type ChargeMembershipsRequest as fD, type MembershipChargeItem as fE, type MembershipName as fF, type ServiceProperties as fG, type ChargeMembershipsResponse as fH, type TriggerRefundRequest as fI, type RefundSideEffects as fJ, type RestockInfo as fK, type RestockItem as fL, type OrderTransactions as fM, type Payment as fN, type PaymentPaymentDetailsOneOf as fO, type PaymentReceiptInfoOneOf as fP, type RegularPaymentDetails as fQ, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fR, type CreditCardPaymentMethodDetails as fS, type AuthorizationDetails as fT, type AuthorizationCapture as fU, type AuthorizationActionFailureDetails as fV, type AuthorizationVoid as fW, type V1ScheduledAction as fX, type Chargeback as fY, type PaymentMethodName as fZ, type GiftCardPaymentDetails as f_, type UserDomainMediaDisabled as fa, type EditorlessAssigned as fb, type EditorlessUnassigned as fc, type HasCustomEmailConfigurationsRequest as fd, type HasCustomEmailConfigurationsResponse as fe, type AddToAutomationMigrationPopulationRequest as ff, type AddToAutomationMigrationPopulationResponse as fg, type IsInAutomationMigrationPopulationRequest as fh, type IsInAutomationMigrationPopulationResponse as fi, type PreparePaymentCollectionRequest as fj, type RedirectUrls as fk, type DelayedCaptureSettings as fl, type Duration as fm, type GetPaymentCollectabilityStatusRequest as fn, type RecordManuallyCollectedPaymentRequest as fo, type UserDefinedPaymentMethodName as fp, type UserDefinedPaymentMethodNameKindOneOf as fq, type RecordManuallyCollectedPaymentResponse as fr, type MarkOrderAsPaidRequest as fs, type BulkMarkOrdersAsPaidRequest as ft, type BulkOrderResult as fu, type ItemMetadata as fv, type ApplicationError as fw, type BulkActionMetadata as fx, type GetRefundabilityStatusRequest as fy, type Refundability as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type DraftOrderDiffsRecipientUpdateInfoOneOf as g$, type WixReceiptInfo as g0, type ExternalReceiptInfo as g1, type CashRoundingDetails as g2, type Refund as g3, type RefundTransaction as g4, type RefundStatusInfo as g5, type AggregatedRefundSummary as g6, type RefundItemsBreakdown as g7, type LineItemRefundSummary as g8, type CalculateRefundRequest as g9, type PlatformQuery as gA, type PlatformQueryPagingMethodOneOf as gB, type Sorting as gC, type PlatformPaging as gD, type CursorPaging as gE, type InternalQueryOrdersResponse as gF, type PlatformPagingMetadata as gG, type Cursors as gH, type QueryOrderRequest as gI, type QueryOrderResponse as gJ, type SearchOrdersRequest as gK, type CursorSearch as gL, type CursorSearchPagingMethodOneOf as gM, type CursorPagingMetadata as gN, type CreateOrderRequest as gO, type OrderCreationSettings as gP, type OrderCreationSettingsEditableByOneOf as gQ, type OrderCreateNotifications as gR, type CreateOrderResponse as gS, type UpdateOrderRequest as gT, type UpdateOrderResponse as gU, type BulkUpdateOrdersRequest as gV, type CommitDeltasRequest as gW, type DraftOrderDiffs as gX, type DraftOrderDiffsShippingUpdateInfoOneOf as gY, type DraftOrderDiffsBuyerUpdateInfoOneOf as gZ, type DraftOrderDiffsBillingUpdateInfoOneOf as g_, type CalculateRefundItemRequest as ga, type CalculateRefundResponse as gb, type CalculateRefundItemResponse as gc, type VoidAuthorizedPaymentsRequest as gd, type CaptureAuthorizedPaymentsRequest as ge, type ChargeSavedPaymentMethodRequest as gf, type ChargeSavedPaymentMethodResponse as gg, type UpdateInternalDocumentsEvent as gh, type UpdateInternalDocumentsEventOperationOneOf as gi, type InternalDocument as gj, type InternalDocumentUpdateOperation as gk, type DeleteByIdsOperation as gl, type DeleteByFilterOperation as gm, type InternalDocumentUpdateByFilterOperation as gn, type InternalUpdateExistingOperation as go, type VersionedDocumentUpdateOperation as gp, type VersionedDeleteByIdsOperation as gq, type VersionedDocumentId as gr, type TriggerReindexRequest as gs, type TriggerReindexResponse as gt, type TriggerReindexOrderRequest as gu, type DiffmatokyPayload as gv, type ErrorInformation as gw, type GetOrderRequest as gx, type GetOrderResponse as gy, type InternalQueryOrdersRequest as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type MarkAsFulfilledRequest as h$, type V1LineItemDelta as h0, type V1LineItemDeltaDeltaOneOf as h1, type CommitDeltasResponse as h2, type ArchiveOrderRequest as h3, type ArchiveOrderResponse as h4, type BulkArchiveOrdersRequest as h5, type BulkArchiveOrdersResponse as h6, type BulkArchiveOrdersByFilterRequest as h7, type BulkArchiveOrdersByFilterResponse as h8, type UnArchiveOrderRequest as h9, type DownloadLinkSent as hA, type TrackingNumberAdded as hB, type TrackingNumberEdited as hC, type TrackingLinkAdded as hD, type ShippingConfirmationEmailSent as hE, type InvoiceAdded as hF, type InvoiceSent as hG, type FulfillerEmailSent as hH, type ShippingAddressEdited as hI, type EmailEdited as hJ, type PickupReadyEmailSent as hK, type OrderPartiallyPaid as hL, type OrderPending as hM, type OrderRejected as hN, type AddInternalActivityResponse as hO, type AddActivityRequest as hP, type PublicActivityContentOneOf as hQ, type AddActivitiesRequest as hR, type UpdateActivityRequest as hS, type DeleteActivityRequest as hT, type UpdateLineItemsDescriptionLinesRequest as hU, type LineItemUpdate as hV, type UpdateLineItemsDescriptionLinesResponse as hW, type MarkOrderAsSeenByHumanRequest as hX, type MarkOrderAsSeenByHumanResponse as hY, type CancelOrderRequest as hZ, type UpdateOrderStatusRequest as h_, type UnArchiveOrderResponse as ha, type BulkUnArchiveOrdersRequest as hb, type BulkUnArchiveOrdersResponse as hc, type BulkUnArchiveOrdersByFilterRequest as hd, type BulkUnArchiveOrdersByFilterResponse as he, type UpdateBuyerInfoRequest as hf, type BuyerInfoUpdate as hg, type UpdateBuyerInfoResponse as hh, type UpdateBuyerEmailRequest as hi, type UpdateBuyerEmailResponse as hj, type UpdateOrderShippingAddressRequest as hk, type UpdateOrderShippingAddressResponse as hl, type UpdateBillingContactDetailsRequest as hm, type UpdateBillingContactDetailsResponse as hn, type UpdateOrderLineItemRequest as ho, type UpdateOrderLineItemsRequest as hp, type MaskedOrderLineItem as hq, type UpdateOrderLineItemsResponse as hr, type AddInternalActivityRequest as hs, type InternalActivity as ht, type InternalActivityContentOneOf as hu, type OrderPlaced as hv, type OrderPaid as hw, type OrderFulfilled as hx, type OrderNotFulfilled as hy, type OrderCanceled as hz, type BulkMarkOrdersAsPaidResponse as i, type ItemizedFee as i$, type MarkAsFulfilledResponse as i0, type BulkMarkAsFulfilledRequest as i1, type BulkMarkAsFulfilledResponse as i2, type BulkMarkAsFulfilledByFilterRequest as i3, type BulkMarkAsFulfilledByFilterResponse as i4, type MarkAsUnfulfilledRequest as i5, type MarkAsUnfulfilledResponse as i6, type BulkMarkAsUnfulfilledRequest as i7, type BulkMarkAsUnfulfilledResponse as i8, type BulkMarkAsUnfulfilledByFilterRequest as i9, type TaskAction as iA, type TaskActionActionOneOf as iB, type Complete as iC, type Cancel as iD, type Reschedule as iE, type InvoiceSentEvent as iF, type IdAndVersion as iG, type InvoiceFields as iH, type Customer as iI, type Email as iJ, type QuotesAddress as iK, type AddressDescription as iL, type Phone as iM, type Company as iN, type CommonAddress as iO, type CommonAddressStreetOneOf as iP, type Subdivision as iQ, type StandardDetails as iR, type InvoiceDates as iS, type LineItems as iT, type LineItem as iU, type BigDecimalWrapper as iV, type LineItemTax as iW, type Source as iX, type LineItemMetaData as iY, type Locale as iZ, type TotalPrice as i_, type BulkMarkAsUnfulfilledByFilterResponse as ia, type BulkSetBusinessLocationRequest as ib, type BulkSetBusinessLocationResponse as ic, type BulkSetBusinessLocationResult as id, type V1MarkOrderAsPaidRequest as ie, type V1MarkOrderAsPaidResponse as ig, type V1BulkMarkOrdersAsPaidRequest as ih, type V1BulkMarkOrdersAsPaidResponse as ii, type V1CreatePaymentGatewayOrderRequest as ij, type V1CreatePaymentGatewayOrderResponse as ik, type GetShipmentsRequest as il, type GetShipmentsResponse as im, type AggregateOrdersRequest as io, type DecrementItemsQuantityRequest as ip, type DecrementData as iq, type DecrementItemsQuantityResponse as ir, type BulkUpdateOrderTagsRequest as is, type TagsTags as it, type TagsTagList as iu, type BulkUpdateOrderTagsResult as iv, type SendOrderUpdatedDomainEventRequest as iw, type SendOrderUpdatedDomainEventResponse as ix, type Task as iy, type TaskKey as iz, type GetRefundabilityStatusResponse as j, type MembershipPaymentStatusWithLiterals as j$, type Discount as j0, type DiscountOneDiscountTypeOneOf as j1, type CalculatedTaxes as j2, type CalculatedTax as j3, type Payments as j4, type InvoicesPayment as j5, type MetaData as j6, type InvoiceDynamicPriceTotals as j7, type CustomFieldValue as j8, type Value as j9, type AdditionalFeeSourceWithLiterals as jA, type OrderActionTypeWithLiterals as jB, type SpecificItemsCouponBehaviorWithLiterals as jC, type ChargeTypeWithLiterals as jD, type DeltaPaymentOptionTypeWithLiterals as jE, type InventoryActionWithLiterals as jF, type WebhookIdentityTypeWithLiterals as jG, type PreviewEmailTypeWithLiterals as jH, type StateWithLiterals as jI, type SiteCreatedContextWithLiterals as jJ, type NamespaceWithLiterals as jK, type DeleteStatusWithLiterals as jL, type OriginWithLiterals as jM, type ScheduledActionWithLiterals as jN, type DurationUnitWithLiterals as jO, type PaymentCollectabilityStatusWithLiterals as jP, type PredefinedPaymentMethodWithLiterals as jQ, type RefundableStatusWithLiterals as jR, type NonRefundableReasonWithLiterals as jS, type ManuallyRefundableReasonWithLiterals as jT, type RestockTypeWithLiterals as jU, type TransactionStatusWithLiterals as jV, type AuthorizationCaptureStatusWithLiterals as jW, type AuthorizationVoidStatusWithLiterals as jX, type ReasonWithLiterals as jY, type ActionTypeWithLiterals as jZ, type ChargebackStatusWithLiterals as j_, type Deposit as ja, type BaseEventMetadata as jb, type EventMetadata as jc, type AccountInfoMetadata as jd, type OrderSearchSpec as je, utils as jf, type DescriptionLineTypeWithLiterals as jg, type DimensionsUnitWithLiterals as jh, type ItemTypePresetWithLiterals as ji, type PaymentOptionTypeWithLiterals as jj, type JurisdictionTypeWithLiterals as jk, type SubscriptionFrequencyWithLiterals as jl, type AdjustmentTypeWithLiterals as jm, type TaxableAddressTypeWithLiterals as jn, type PaymentStatusWithLiterals as jo, type FulfillmentStatusWithLiterals as jp, type WeightUnitWithLiterals as jq, type VatTypeWithLiterals as jr, type PickupMethodWithLiterals as js, type DiscountTypeWithLiterals as jt, type DiscountReasonWithLiterals as ju, type LineItemQuantityChangeTypeWithLiterals as jv, type ActivityTypeWithLiterals as jw, type OrderActivityTypeEnumActivityTypeWithLiterals as jx, type AttributionSourceWithLiterals as jy, type ChannelTypeWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type RefundStatusWithLiterals as k0, type VersioningModeWithLiterals as k1, type SortOrderWithLiterals as k2, type OrderApprovalStrategyWithLiterals as k3, type PlacementWithLiterals as k4, type SubdivisionTypeWithLiterals as k5, type SourceTypeWithLiterals as k6, type CustomFieldGroupWithLiterals as k7, type ValueTypeWithLiterals as k8, type DepositTypeWithLiterals as k9, bulkUpdateOrders as kA, updateOrderLineItem as kB, addActivity as kC, addActivities as kD, updateActivity as kE, deleteActivity as kF, cancelOrder as kG, updateOrderStatus as kH, aggregateOrders as kI, bulkUpdateOrderTags as kJ, type InvoiceStatusWithLiterals 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, importOrder as kj, setOrderNumberCounter as kk, bulkDeleteImportedOrders as kl, preparePaymentCollection as km, getPaymentCollectabilityStatus as kn, recordManuallyCollectedPayment as ko, paymentCollectionMarkOrderAsPaid as kp, paymentCollectionBulkMarkOrdersAsPaid as kq, getRefundabilityStatus as kr, paymentCollectionCreatePaymentGatewayOrder as ks, chargeMemberships as kt, triggerRefund as ku, voidAuthorizedPayments as kv, captureAuthorizedPayments as kw, getOrder as kx, createOrder as ky, updateOrder as kz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as l, type ChargeMembershipsOptions as m, type PaymentRefund as n, type TriggerRefundResponse as o, type TriggerRefundApplicationErrors as p, type VoidAuthorizedPaymentsApplicationErrors as q, type PaymentCapture as r, type CaptureAuthorizedPaymentsResponse as s, type CaptureAuthorizedPaymentsApplicationErrors as t, type GetOrderApplicationErrors as u, type OrderSearch as v, type SearchOrdersResponse as w, type CreateOrderOptions as x, type CreateOrderApplicationErrors as y, type UpdateOrderApplicationErrors as z };