@wix/auto_sdk_ecom_orders 1.0.113 → 1.0.115

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-DA68NnHF.d.ts → ecom-v1-order-orders.universal-CzvHFP5d.d.ts} +286 -137
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +323 -7
  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 +298 -7
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +278 -140
  9. package/build/cjs/meta.js +240 -7
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-DA68NnHF.d.mts → ecom-v1-order-orders.universal-CzvHFP5d.d.mts} +286 -137
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +319 -7
  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 +294 -7
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +278 -140
  19. package/build/es/meta.mjs +236 -7
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-CqGx6_KQ.d.ts → ecom-v1-order-orders.universal-BDp0QNCM.d.ts} +351 -137
  22. package/build/internal/cjs/index.d.ts +42 -3
  23. package/build/internal/cjs/index.js +323 -7
  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 +298 -7
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +278 -140
  29. package/build/internal/cjs/meta.js +240 -7
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-CqGx6_KQ.d.mts → ecom-v1-order-orders.universal-BDp0QNCM.d.mts} +351 -137
  32. package/build/internal/es/index.d.mts +42 -3
  33. package/build/internal/es/index.mjs +319 -7
  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 +294 -7
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +278 -140
  39. package/build/internal/es/meta.mjs +236 -7
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -178,6 +178,13 @@ interface Order {
178
178
  * @readonly
179
179
  */
180
180
  deposit?: PriceSummary;
181
+ /**
182
+ * Order-level settings and allowed actions.
183
+ * @internal
184
+ * @readonly
185
+ * @immutable
186
+ */
187
+ settings?: OrderSettings;
181
188
  }
182
189
  interface OrderLineItem {
183
190
  /**
@@ -2722,6 +2729,77 @@ interface Location {
2722
2729
  */
2723
2730
  name?: string;
2724
2731
  }
2732
+ interface OrderSettings extends OrderSettingsAllowedActionsOneOf {
2733
+ /** Regular order with full set of allowed actions (ActionType for reference). */
2734
+ standardActions?: boolean;
2735
+ /**
2736
+ * View only order with limited set of allowed actions:
2737
+ * 1. Add merchant activity
2738
+ * 2. Send order notifications
2739
+ * 3. Archiving order
2740
+ * 4. Assign tags on orders
2741
+ * 5. Export order
2742
+ * 6. Print order
2743
+ */
2744
+ limitedActions?: boolean;
2745
+ /** Custom list of allowed actions for order. */
2746
+ customActions?: CustomAllowedActions;
2747
+ }
2748
+ /** @oneof */
2749
+ interface OrderSettingsAllowedActionsOneOf {
2750
+ /** Regular order with full set of allowed actions (ActionType for reference). */
2751
+ standardActions?: boolean;
2752
+ /**
2753
+ * View only order with limited set of allowed actions:
2754
+ * 1. Add merchant activity
2755
+ * 2. Send order notifications
2756
+ * 3. Archiving order
2757
+ * 4. Assign tags on orders
2758
+ * 5. Export order
2759
+ * 6. Print order
2760
+ */
2761
+ limitedActions?: boolean;
2762
+ /** Custom list of allowed actions for order. */
2763
+ customActions?: CustomAllowedActions;
2764
+ }
2765
+ interface CustomAllowedActions {
2766
+ /** @maxSize 17 */
2767
+ orderActions?: OrderActionTypeWithLiterals[];
2768
+ }
2769
+ declare enum OrderActionType {
2770
+ /** Order is editable */
2771
+ EDIT = "EDIT",
2772
+ /** Order is updatable */
2773
+ UPDATE = "UPDATE",
2774
+ /** Order is refundable */
2775
+ REFUND = "REFUND",
2776
+ /** Allow mark order as approved */
2777
+ APPROVE = "APPROVE",
2778
+ /** Allow cancel order */
2779
+ CANCEL = "CANCEL",
2780
+ /** Allow fulfill order */
2781
+ FULFILL = "FULFILL",
2782
+ /** Allow to collect payment for order */
2783
+ COLLECT_PAYMENTS = "COLLECT_PAYMENTS",
2784
+ /** Allow send notifications for order */
2785
+ SEND_NOTIFICATIONS = "SEND_NOTIFICATIONS",
2786
+ /** Allow add merchant activities on order */
2787
+ ADD_MERCHANT_ACTIVITY = "ADD_MERCHANT_ACTIVITY",
2788
+ /** Allow add all types of activities on order */
2789
+ ADD_ACTIVITY = "ADD_ACTIVITY",
2790
+ /** Allow create invoice */
2791
+ CREATE_INVOICE = "CREATE_INVOICE",
2792
+ /** Allow create receipts for order payments */
2793
+ CREATE_RECEIPTS = "CREATE_RECEIPTS",
2794
+ /** Allow assign tags on order */
2795
+ ASSIGN_TAG = "ASSIGN_TAG",
2796
+ /** Allow print packaging slip */
2797
+ PRINT_PACKAGING_SLIP = "PRINT_PACKAGING_SLIP",
2798
+ /** Allow to update inventory */
2799
+ MODIFY_INVENTORY = "MODIFY_INVENTORY"
2800
+ }
2801
+ /** @enumType */
2802
+ type OrderActionTypeWithLiterals = OrderActionType | 'EDIT' | 'UPDATE' | 'REFUND' | 'APPROVE' | 'CANCEL' | 'FULFILL' | 'COLLECT_PAYMENTS' | 'SEND_NOTIFICATIONS' | 'ADD_MERCHANT_ACTIVITY' | 'ADD_ACTIVITY' | 'CREATE_INVOICE' | 'CREATE_RECEIPTS' | 'ASSIGN_TAG' | 'PRINT_PACKAGING_SLIP' | 'MODIFY_INVENTORY';
2725
2803
  /** Triggered when the order status changes to approved */
2726
2804
  interface OrderApproved {
2727
2805
  /** The order that was updated */
@@ -2758,6 +2836,195 @@ interface V1RestockItem {
2758
2836
  */
2759
2837
  quantity?: number;
2760
2838
  }
2839
+ /** Triggered when order is imported */
2840
+ interface OrderImported {
2841
+ /** The order which was imported */
2842
+ order?: Order;
2843
+ }
2844
+ /** Triggered when order was deleted */
2845
+ interface ImportedOrderDeleted {
2846
+ /** The order which was deleted */
2847
+ order?: Order;
2848
+ }
2849
+ interface ImportOrderRequest {
2850
+ /**
2851
+ * Order to be imported
2852
+ * If order.order_settings.order_type and order.order_settings.custom_order_type not set than VIEW_ONLY will be used
2853
+ */
2854
+ order: Order;
2855
+ }
2856
+ interface ImportOrderResponse {
2857
+ order?: Order;
2858
+ }
2859
+ /** Set Order number counter request */
2860
+ interface SetOrderNumberCounterRequest {
2861
+ /**
2862
+ * Order number counter to set.
2863
+ * Counter will be used as start of number sequence and used as order number with increment
2864
+ * @max 999999999
2865
+ */
2866
+ counter: string;
2867
+ /** Whether to allow setting a lower counter than current value */
2868
+ allowLowerCounter?: boolean;
2869
+ }
2870
+ interface SetOrderNumberCounterResponse {
2871
+ /** Order number counter before update */
2872
+ oldCounter?: string;
2873
+ /** Order number counter after update */
2874
+ newCounter?: string;
2875
+ }
2876
+ /** Bulk Delete Imported Orders Messages */
2877
+ interface BulkDeleteImportedOrdersRequest {
2878
+ /**
2879
+ * List of order ids to be deleted.
2880
+ * Only orders imported via ImportOrders API can be deleted.
2881
+ * @format GUID
2882
+ * @minSize 1
2883
+ * @maxSize 1000
2884
+ */
2885
+ orderIds?: string[];
2886
+ }
2887
+ interface BulkDeleteImportedOrdersResponse {
2888
+ /**
2889
+ * Job ID for async operation tracking. Pass to [Get Async Job](https://dev.wix.com/docs/rest/business-management/async-job/get-async-job) or [List Async Job Items](https://dev.wix.com/docs/rest/business-management/async-job/list-async-job-items) to retrieve details and metadata
2890
+ * @format GUID
2891
+ */
2892
+ jobId?: string;
2893
+ }
2894
+ interface DomainEvent extends DomainEventBodyOneOf {
2895
+ createdEvent?: EntityCreatedEvent;
2896
+ updatedEvent?: EntityUpdatedEvent;
2897
+ deletedEvent?: EntityDeletedEvent;
2898
+ actionEvent?: ActionEvent;
2899
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
2900
+ _id?: string;
2901
+ /**
2902
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
2903
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
2904
+ */
2905
+ entityFqdn?: string;
2906
+ /**
2907
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
2908
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
2909
+ */
2910
+ slug?: string;
2911
+ /** ID of the entity associated with the event. */
2912
+ entityId?: string;
2913
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
2914
+ eventTime?: Date | null;
2915
+ /**
2916
+ * Whether the event was triggered as a result of a privacy regulation application
2917
+ * (for example, GDPR).
2918
+ */
2919
+ triggeredByAnonymizeRequest?: boolean | null;
2920
+ /** If present, indicates the action that triggered the event. */
2921
+ originatedFrom?: string | null;
2922
+ /**
2923
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
2924
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
2925
+ */
2926
+ entityEventSequence?: string | null;
2927
+ }
2928
+ /** @oneof */
2929
+ interface DomainEventBodyOneOf {
2930
+ createdEvent?: EntityCreatedEvent;
2931
+ updatedEvent?: EntityUpdatedEvent;
2932
+ deletedEvent?: EntityDeletedEvent;
2933
+ actionEvent?: ActionEvent;
2934
+ }
2935
+ interface EntityCreatedEvent {
2936
+ entity?: string;
2937
+ }
2938
+ interface RestoreInfo {
2939
+ deletedDate?: Date | null;
2940
+ }
2941
+ interface EntityUpdatedEvent {
2942
+ /**
2943
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
2944
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
2945
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
2946
+ */
2947
+ currentEntity?: string;
2948
+ }
2949
+ interface EntityDeletedEvent {
2950
+ /** Entity that was deleted. */
2951
+ deletedEntity?: string | null;
2952
+ }
2953
+ interface ActionEvent {
2954
+ body?: string;
2955
+ }
2956
+ interface MessageEnvelope {
2957
+ /**
2958
+ * App instance ID.
2959
+ * @format GUID
2960
+ */
2961
+ instanceId?: string | null;
2962
+ /**
2963
+ * Event type.
2964
+ * @maxLength 150
2965
+ */
2966
+ eventType?: string;
2967
+ /** The identification type and identity data. */
2968
+ identity?: IdentificationData;
2969
+ /** Stringify payload. */
2970
+ data?: string;
2971
+ }
2972
+ interface IdentificationData extends IdentificationDataIdOneOf {
2973
+ /**
2974
+ * ID of a site visitor that has not logged in to the site.
2975
+ * @format GUID
2976
+ */
2977
+ anonymousVisitorId?: string;
2978
+ /**
2979
+ * ID of a site visitor that has logged in to the site.
2980
+ * @format GUID
2981
+ */
2982
+ memberId?: string;
2983
+ /**
2984
+ * ID of a Wix user (site owner, contributor, etc.).
2985
+ * @format GUID
2986
+ */
2987
+ wixUserId?: string;
2988
+ /**
2989
+ * ID of an app.
2990
+ * @format GUID
2991
+ */
2992
+ appId?: string;
2993
+ /** @readonly */
2994
+ identityType?: WebhookIdentityTypeWithLiterals;
2995
+ }
2996
+ /** @oneof */
2997
+ interface IdentificationDataIdOneOf {
2998
+ /**
2999
+ * ID of a site visitor that has not logged in to the site.
3000
+ * @format GUID
3001
+ */
3002
+ anonymousVisitorId?: string;
3003
+ /**
3004
+ * ID of a site visitor that has logged in to the site.
3005
+ * @format GUID
3006
+ */
3007
+ memberId?: string;
3008
+ /**
3009
+ * ID of a Wix user (site owner, contributor, etc.).
3010
+ * @format GUID
3011
+ */
3012
+ wixUserId?: string;
3013
+ /**
3014
+ * ID of an app.
3015
+ * @format GUID
3016
+ */
3017
+ appId?: string;
3018
+ }
3019
+ declare enum WebhookIdentityType {
3020
+ UNKNOWN = "UNKNOWN",
3021
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
3022
+ MEMBER = "MEMBER",
3023
+ WIX_USER = "WIX_USER",
3024
+ APP = "APP"
3025
+ }
3026
+ /** @enumType */
3027
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
2761
3028
  interface SendBuyerConfirmationEmailRequest {
2762
3029
  /** @format GUID */
2763
3030
  orderId?: string;
@@ -3050,142 +3317,8 @@ interface PreviewResendDownloadLinksEmailRequest {
3050
3317
  interface PreviewResendDownloadLinksEmailResponse {
3051
3318
  emailPreview?: string;
3052
3319
  }
3053
- interface DomainEvent extends DomainEventBodyOneOf {
3054
- createdEvent?: EntityCreatedEvent;
3055
- updatedEvent?: EntityUpdatedEvent;
3056
- deletedEvent?: EntityDeletedEvent;
3057
- actionEvent?: ActionEvent;
3058
- /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
3059
- _id?: string;
3060
- /**
3061
- * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
3062
- * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
3063
- */
3064
- entityFqdn?: string;
3065
- /**
3066
- * Event action name, placed at the top level to make it easier for users to dispatch messages.
3067
- * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
3068
- */
3069
- slug?: string;
3070
- /** ID of the entity associated with the event. */
3071
- entityId?: string;
3072
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
3073
- eventTime?: Date | null;
3074
- /**
3075
- * Whether the event was triggered as a result of a privacy regulation application
3076
- * (for example, GDPR).
3077
- */
3078
- triggeredByAnonymizeRequest?: boolean | null;
3079
- /** If present, indicates the action that triggered the event. */
3080
- originatedFrom?: string | null;
3081
- /**
3082
- * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
3083
- * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
3084
- */
3085
- entityEventSequence?: string | null;
3086
- }
3087
- /** @oneof */
3088
- interface DomainEventBodyOneOf {
3089
- createdEvent?: EntityCreatedEvent;
3090
- updatedEvent?: EntityUpdatedEvent;
3091
- deletedEvent?: EntityDeletedEvent;
3092
- actionEvent?: ActionEvent;
3093
- }
3094
- interface EntityCreatedEvent {
3095
- entity?: string;
3096
- }
3097
- interface RestoreInfo {
3098
- deletedDate?: Date | null;
3099
- }
3100
- interface EntityUpdatedEvent {
3101
- /**
3102
- * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
3103
- * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
3104
- * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
3105
- */
3106
- currentEntity?: string;
3107
- }
3108
- interface EntityDeletedEvent {
3109
- /** Entity that was deleted. */
3110
- deletedEntity?: string | null;
3111
- }
3112
- interface ActionEvent {
3113
- body?: string;
3114
- }
3115
3320
  interface Empty {
3116
3321
  }
3117
- interface MessageEnvelope {
3118
- /**
3119
- * App instance ID.
3120
- * @format GUID
3121
- */
3122
- instanceId?: string | null;
3123
- /**
3124
- * Event type.
3125
- * @maxLength 150
3126
- */
3127
- eventType?: string;
3128
- /** The identification type and identity data. */
3129
- identity?: IdentificationData;
3130
- /** Stringify payload. */
3131
- data?: string;
3132
- }
3133
- interface IdentificationData extends IdentificationDataIdOneOf {
3134
- /**
3135
- * ID of a site visitor that has not logged in to the site.
3136
- * @format GUID
3137
- */
3138
- anonymousVisitorId?: string;
3139
- /**
3140
- * ID of a site visitor that has logged in to the site.
3141
- * @format GUID
3142
- */
3143
- memberId?: string;
3144
- /**
3145
- * ID of a Wix user (site owner, contributor, etc.).
3146
- * @format GUID
3147
- */
3148
- wixUserId?: string;
3149
- /**
3150
- * ID of an app.
3151
- * @format GUID
3152
- */
3153
- appId?: string;
3154
- /** @readonly */
3155
- identityType?: WebhookIdentityTypeWithLiterals;
3156
- }
3157
- /** @oneof */
3158
- interface IdentificationDataIdOneOf {
3159
- /**
3160
- * ID of a site visitor that has not logged in to the site.
3161
- * @format GUID
3162
- */
3163
- anonymousVisitorId?: string;
3164
- /**
3165
- * ID of a site visitor that has logged in to the site.
3166
- * @format GUID
3167
- */
3168
- memberId?: string;
3169
- /**
3170
- * ID of a Wix user (site owner, contributor, etc.).
3171
- * @format GUID
3172
- */
3173
- wixUserId?: string;
3174
- /**
3175
- * ID of an app.
3176
- * @format GUID
3177
- */
3178
- appId?: string;
3179
- }
3180
- declare enum WebhookIdentityType {
3181
- UNKNOWN = "UNKNOWN",
3182
- ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
3183
- MEMBER = "MEMBER",
3184
- WIX_USER = "WIX_USER",
3185
- APP = "APP"
3186
- }
3187
- /** @enumType */
3188
- type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
3189
3322
  interface PreparePaymentCollectionRequest {
3190
3323
  /**
3191
3324
  * Ecom order ID.
@@ -5635,11 +5768,18 @@ interface AddActivitiesRequest {
5635
5768
  */
5636
5769
  orderId?: string;
5637
5770
  /**
5638
- * Activities to add.
5639
- * @minSize 1
5771
+ * Activities to add. Deprecated.
5640
5772
  * @maxSize 300
5773
+ * @deprecated Activities to add. Deprecated.
5774
+ * @replacedBy order_activities
5775
+ * @targetRemovalDate 2026-01-01
5641
5776
  */
5642
5777
  activities?: PublicActivity[];
5778
+ /**
5779
+ * Activities to add.
5780
+ * @maxSize 300
5781
+ */
5782
+ orderActivities?: Activity[];
5643
5783
  }
5644
5784
  interface AddActivitiesResponse {
5645
5785
  /** Updated order. */
@@ -5648,6 +5788,8 @@ interface AddActivitiesResponse {
5648
5788
  * IDs of the added activities.
5649
5789
  * Use this IDs to either [update](https://bo.wix.com/wix-docs/rest/ecommerce/orders/update-activities) or [delete](https://bo.wix.com/wix-docs/rest/ecommerce/orders/delete-activities) the activities.
5650
5790
  * @format GUID
5791
+ * @minSize 1
5792
+ * @maxSize 300
5651
5793
  */
5652
5794
  activityIds?: string[];
5653
5795
  }
@@ -6848,6 +6990,71 @@ interface OrderPaymentStatusUpdatedEnvelope {
6848
6990
  * @slug payment_status_updated
6849
6991
  */
6850
6992
  declare function onOrderPaymentStatusUpdated(handler: (event: OrderPaymentStatusUpdatedEnvelope) => void | Promise<void>): void;
6993
+ /**
6994
+ * Imports a single order with historical data while preserving original details and controlling side effects.
6995
+ * Can be used for initial import or update (delete-insert).
6996
+ * Only imported via ImportOrder API orders can be updated, Order.id used as key for update.
6997
+ * Order will be fully overridden.
6998
+ * @param order - Order to be imported
6999
+ * If order.order_settings.order_type and order.order_settings.custom_order_type not set than VIEW_ONLY will be used
7000
+ * @internal
7001
+ * @documentationMaturity preview
7002
+ * @requiredField order
7003
+ * @requiredField order.billingInfo.contactDetails
7004
+ * @requiredField order.channelInfo
7005
+ * @requiredField order.currencyConversionDetails.conversionRate
7006
+ * @requiredField order.currencyConversionDetails.originalCurrency
7007
+ * @requiredField order.fulfillmentStatus
7008
+ * @requiredField order.lineItems
7009
+ * @requiredField order.lineItems.catalogReference.appId
7010
+ * @requiredField order.lineItems.catalogReference.catalogItemId
7011
+ * @requiredField order.lineItems.itemType
7012
+ * @requiredField order.lineItems.price
7013
+ * @requiredField order.lineItems.productName
7014
+ * @requiredField order.lineItems.productName.original
7015
+ * @requiredField order.lineItems.quantity
7016
+ * @requiredField order.paymentStatus
7017
+ * @requiredField order.priceSummary
7018
+ * @requiredField order.status
7019
+ * @permissionId ecom:v1:order:imports:import_order
7020
+ * @fqn com.wix.ecom.orders.importer.v1.OrderImports.ImportOrder
7021
+ */
7022
+ declare function importOrder(order: NonNullablePaths<Order, `billingInfo.contactDetails` | `channelInfo` | `currencyConversionDetails.conversionRate` | `currencyConversionDetails.originalCurrency` | `fulfillmentStatus` | `lineItems` | `lineItems.${number}.catalogReference.appId` | `lineItems.${number}.catalogReference.catalogItemId` | `lineItems.${number}.itemType` | `lineItems.${number}.price` | `lineItems.${number}.productName` | `lineItems.${number}.productName.original` | `lineItems.${number}.quantity` | `paymentStatus` | `priceSummary` | `status`, 5>): Promise<NonNullablePaths<ImportOrderResponse, `order.number` | `order.lineItems` | `order.lineItems.${number}._id` | `order.lineItems.${number}.productName.original` | `order.lineItems.${number}.catalogReference.catalogItemId` | `order.lineItems.${number}.catalogReference.appId` | `order.lineItems.${number}.quantity` | `order.lineItems.${number}.totalDiscount.amount` | `order.lineItems.${number}.totalDiscount.formattedAmount` | `order.lineItems.${number}.physicalProperties.shippable` | `order.lineItems.${number}.itemType.preset` | `order.lineItems.${number}.itemType.custom` | `order.lineItems.${number}.paymentOption` | `order.lineItems.${number}.taxDetails.taxRate` | `order.lineItems.${number}.taxInfo.taxIncludedInPrice` | `order.lineItems.${number}.digitalFile.fileId` | `order.lineItems.${number}.subscriptionInfo.cycleNumber` | `order.lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `order.lineItems.${number}.priceDescription.original` | `order.lineItems.${number}.taxableAddress.addressType` | `order.buyerInfo.visitorId` | `order.buyerInfo.memberId` | `order.paymentStatus` | `order.fulfillmentStatus` | `order.weightUnit` | `order.taxIncludedInPrices` | `order.billingInfo.address.streetAddress.number` | `order.billingInfo.address.streetAddress.name` | `order.billingInfo.contactDetails.vatId._id` | `order.billingInfo.contactDetails.vatId.type` | `order.shippingInfo.title` | `order.shippingInfo.logistics.pickupDetails.pickupMethod` | `order.status` | `order.taxInfo.taxBreakdown` | `order.taxInfo.taxBreakdown.${number}.taxName` | `order.taxInfo.taxBreakdown.${number}.taxType` | `order.taxInfo.taxBreakdown.${number}.jurisdiction` | `order.taxInfo.taxBreakdown.${number}.jurisdictionType` | `order.taxInfo.taxBreakdown.${number}.rate` | `order.appliedDiscounts` | `order.appliedDiscounts.${number}.coupon._id` | `order.appliedDiscounts.${number}.coupon.code` | `order.appliedDiscounts.${number}.coupon.name` | `order.appliedDiscounts.${number}.merchantDiscount.discountReason` | `order.appliedDiscounts.${number}.discountRule._id` | `order.appliedDiscounts.${number}.discountRule.name.original` | `order.appliedDiscounts.${number}.discountType` | `order.activities` | `order.activities.${number}.customActivity.appId` | `order.activities.${number}.customActivity.type` | `order.activities.${number}.merchantComment.message` | `order.activities.${number}.orderRefunded.manual` | `order.activities.${number}.orderRefunded.reason` | `order.activities.${number}.draftOrderChangesApplied.draftOrderId` | `order.activities.${number}.savedPaymentMethod.name` | `order.activities.${number}.authorizedPaymentCreated.paymentId` | `order.activities.${number}.authorizedPaymentCaptured.paymentId` | `order.activities.${number}.authorizedPaymentVoided.paymentId` | `order.activities.${number}.refundInitiated.refundId` | `order.activities.${number}.paymentRefunded.refundId` | `order.activities.${number}.paymentRefundFailed.refundId` | `order.activities.${number}.paymentPending.paymentId` | `order.activities.${number}.paymentCanceled.paymentId` | `order.activities.${number}.paymentDeclined.paymentId` | `order.activities.${number}.receiptCreated.wixReceipt.receiptId` | `order.activities.${number}.receiptCreated.paymentId` | `order.activities.${number}.receiptSent.paymentId` | `order.activities.${number}.chargebackCreated.paymentId` | `order.activities.${number}.chargebackCreated.chargebackId` | `order.activities.${number}.chargebackReversed.paymentId` | `order.activities.${number}.chargebackReversed.chargebackId` | `order.activities.${number}.type` | `order.attributionSource` | `order.createdBy.userId` | `order.createdBy.memberId` | `order.createdBy.visitorId` | `order.createdBy.appId` | `order.channelInfo.type` | `order.customFields` | `order.customFields.${number}.title` | `order.balanceSummary.balance.amount` | `order.balanceSummary.balance.formattedAmount` | `order.additionalFees` | `order.additionalFees.${number}.name` | `order.additionalFees.${number}._id` | `order.tags.privateTags.tagIds` | `order.businessLocation._id` | `order.businessLocation.name`, 7>>;
7023
+ /**
7024
+ * Sets the current order increment ID for a site. This defines the starting number
7025
+ * for subsequent new orders created after migration.
7026
+ * @param counter - Order number counter to set.
7027
+ * Counter will be used as start of number sequence and used as order number with increment
7028
+ * @internal
7029
+ * @documentationMaturity preview
7030
+ * @requiredField counter
7031
+ * @permissionId ecom:v1:order:imports:set_order_number_counter
7032
+ * @fqn com.wix.ecom.orders.importer.v1.OrderImports.SetOrderNumberCounter
7033
+ */
7034
+ declare function setOrderNumberCounter(counter: string, options?: SetOrderNumberCounterOptions): Promise<NonNullablePaths<SetOrderNumberCounterResponse, `oldCounter` | `newCounter`, 2>>;
7035
+ interface SetOrderNumberCounterOptions {
7036
+ /** Whether to allow setting a lower counter than current value */
7037
+ allowLowerCounter?: boolean;
7038
+ }
7039
+ /**
7040
+ * Bulk deletes previously imported orders. Only works on orders
7041
+ * that were created through the import process.
7042
+ * @internal
7043
+ * @documentationMaturity preview
7044
+ * @permissionId ecom:v1:order:imports:bulk_delete_imported_orders
7045
+ * @fqn com.wix.ecom.orders.importer.v1.OrderImports.BulkDeleteImportedOrders
7046
+ */
7047
+ declare function bulkDeleteImportedOrders(options?: BulkDeleteImportedOrdersOptions): Promise<NonNullablePaths<BulkDeleteImportedOrdersResponse, `jobId`, 2>>;
7048
+ interface BulkDeleteImportedOrdersOptions {
7049
+ /**
7050
+ * List of order ids to be deleted.
7051
+ * Only orders imported via ImportOrders API can be deleted.
7052
+ * @format GUID
7053
+ * @minSize 1
7054
+ * @maxSize 1000
7055
+ */
7056
+ orderIds?: string[];
7057
+ }
6851
7058
  /**
6852
7059
  * Prepares payment collection for given ecom order. This is the first of 2-step process of payment collection.
6853
7060
  * Here we ensure that payment collection is possible for given order and store and prepare payment gateway order for future charge.
@@ -7470,6 +7677,13 @@ interface UpdateOrder {
7470
7677
  * @readonly
7471
7678
  */
7472
7679
  deposit?: PriceSummary;
7680
+ /**
7681
+ * Order-level settings and allowed actions.
7682
+ * @internal
7683
+ * @readonly
7684
+ * @immutable
7685
+ */
7686
+ settings?: OrderSettings;
7473
7687
  }
7474
7688
  /**
7475
7689
  * Updates up to 100 orders.
@@ -7879,4 +8093,4 @@ interface BulkUpdateOrderTagsOptions {
7879
8093
  unassignTags?: Tags;
7880
8094
  }
7881
8095
 
7882
- export { type AggregateOrdersResponse as $, type UpdateOrderLineItemIdentifiers as A, type BulkMarkOrdersAsPaidResponse as B, type CreatePaymentGatewayOrderResponse as C, type UpdateOrderLineItem as D, type UpdateOrderLineItemResponse as E, type PublicActivity as F, type GetPaymentCollectabilityStatusResponse as G, type AddActivityResponse as H, type UpdateActivityIdentifiers as I, type UpdateActivityResponse as J, type DeleteActivityIdentifiers as K, type DeleteActivityResponse as L, type MarkOrderAsPaidResponse as M, type CancelOrderOptions as N, type Order as O, type Price as P, type CancelOrderResponse as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SearchOrdersResponse as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type CancelOrderApplicationErrors as W, type OrderStatusWithLiterals as X, type UpdateOrderStatusResponse as Y, type UpdateOrderStatusApplicationErrors as Z, type AggregateOrdersOptions as _, type PreparePaymentCollectionOptions as a, type Color as a$, type BulkUpdateOrderTagsOptions as a0, type BulkUpdateOrderTagsResponse as a1, type OrderApprovedEnvelope as a2, type OrderUpdatedEnvelope as a3, type OrderCanceledEnvelope as a4, type OrderCreatedEnvelope as a5, type OrderPaymentStatusUpdatedEnvelope as a6, DescriptionLineType as a7, ItemTypeItemType as a8, PaymentOptionType as a9, AuthorizationCaptureStatus as aA, AuthorizationVoidStatus as aB, Reason as aC, ActionType as aD, ChargebackStatus as aE, MembershipPaymentStatus as aF, RefundStatus as aG, VersioningMode as aH, SortOrder as aI, OrderApprovalStrategy as aJ, DeltaPaymentOptionType as aK, InventoryAction as aL, Placement as aM, SubdivisionType as aN, SourceType as aO, CustomFieldGroup as aP, ValueType as aQ, DepositType as aR, InvoiceStatus as aS, type OrderLineItem as aT, type ProductName as aU, type CatalogReference as aV, type DescriptionLine as aW, type DescriptionLineValueOneOf as aX, type DescriptionLineDescriptionLineValueOneOf as aY, type DescriptionLineName as aZ, type PlainTextValue as a_, JurisdictionType as aa, SubscriptionFrequency as ab, AdjustmentType as ac, TaxableAddressType as ad, PaymentStatus as ae, FulfillmentStatus as af, WeightUnit as ag, VatType as ah, PickupMethod as ai, OrderStatus as aj, DiscountType as ak, DiscountReason as al, LineItemQuantityChangeType as am, ActivityType as an, AttributionSource as ao, ChannelType as ap, PreviewEmailType as aq, WebhookIdentityType as ar, ScheduledAction as as, DurationUnit as at, PaymentCollectabilityStatus as au, RefundableStatus as av, NonRefundableReason as aw, ManuallyRefundableReason as ax, RestockType as ay, TransactionStatus as az, type PreparePaymentCollectionResponse as b, type LineItemChanges as b$, type FocalPoint as b0, type PhysicalProperties as b1, type ItemType as b2, type ItemTypeItemTypeDataOneOf as b3, type ItemTaxFullDetails as b4, type LineItemTaxInfo as b5, type LineItemTaxBreakdown as b6, type DigitalFile as b7, type SubscriptionInfo as b8, type SubscriptionTitle as b9, type PickupDetails as bA, type PickupAddress as bB, type DeliveryTimeSlot as bC, type ShippingPrice as bD, type ShippingRegion as bE, type TaxSummary as bF, type OrderTaxInfo as bG, type OrderTaxBreakdown as bH, type AppliedDiscount as bI, type AppliedDiscountDiscountSourceOneOf as bJ, type Coupon as bK, type MerchantDiscount as bL, type MerchantDiscountMerchantDiscountReasonOneOf as bM, type DiscountRule as bN, type DiscountRuleName as bO, type LineItemDiscount as bP, type Activity as bQ, type ActivityContentOneOf as bR, type CustomActivity as bS, type MerchantComment as bT, type OrderRefunded as bU, type OrderCreatedFromExchange as bV, type NewExchangeOrderCreated as bW, type LineItemExchangeData as bX, type DraftOrderChangesApplied as bY, type OrderChange as bZ, type OrderChangeValueOneOf as b_, type SubscriptionDescription as ba, type SubscriptionSettings as bb, type FreeTrialPeriod as bc, type BillingAdjustment as bd, type BillingAdjustmentPriceSummary as be, type PriceDescription as bf, type LocationAndQuantity as bg, type TaxableAddress as bh, type TaxableAddressTaxableAddressDataOneOf as bi, type ExtendedFields as bj, type ModifierGroup as bk, type TranslatableString as bl, type ItemModifier as bm, type BuyerInfo as bn, type BuyerInfoIdOneOf as bo, type CurrencyConversionDetails as bp, type PriceSummary as bq, type AddressWithContact as br, type Address as bs, type StreetAddress as bt, type AddressLocation as bu, type FullAddressContactDetails as bv, type VatId as bw, type V1ShippingInformation as bx, type DeliveryLogistics as by, type DeliveryLogisticsAddressOneOf as bz, type PreparePaymentCollectionApplicationErrors as c, type SendBuyerPickupConfirmationEmailRequest as c$, type LineItemQuantityChange as c0, type LineItemPriceChange as c1, type LineItemProductNameChange as c2, type LineItemDescriptionLineChange as c3, type LineItemModifiersChange as c4, type ManagedLineItem as c5, type ManagedDiscount as c6, type TranslatedValue as c7, type LineItemAmount as c8, type ManagedAdditionalFee as c9, type ReceiptCreatedReceiptInfoOneOf as cA, type WixReceipt as cB, type ExternalReceipt as cC, type ReceiptSent as cD, type ReceiptSentReceiptInfoOneOf as cE, type ChargebackCreated as cF, type ChargebackReversed as cG, type CreatedBy as cH, type CreatedByStringOneOf as cI, type ChannelInfo as cJ, type CustomField as cK, type BalanceSummary as cL, type Balance as cM, type AdditionalFee as cN, type FulfillmentStatusesAggregate as cO, type Tags as cP, type TagList as cQ, type Location as cR, type OrderApproved as cS, type OrdersExperiments as cT, type OrderRejectedEventOrderRejected as cU, type OrderItemsRestocked as cV, type V1RestockItem as cW, type SendBuyerConfirmationEmailRequest as cX, type SendBuyerConfirmationEmailResponse as cY, type SendBuyerPaymentsReceivedEmailRequest as cZ, type SendBuyerPaymentsReceivedEmailResponse as c_, type TotalPriceChange as ca, type ShippingInformationChange as cb, type ShippingInformation as cc, type SavedPaymentMethod as cd, type AuthorizedPaymentCreated as ce, type AuthorizedPaymentCaptured as cf, type AuthorizedPaymentVoided as cg, type RefundInitiated as ch, type RefundedPayment as ci, type RefundedPaymentKindOneOf as cj, type RegularPaymentRefund as ck, type GiftCardPaymentRefund as cl, type MembershipPaymentRefund as cm, type PaymentRefunded as cn, type PaymentRefundFailed as co, type RefundedAsStoreCredit as cp, type PaymentPending as cq, type PaymentPendingPaymentDetailsOneOf as cr, type RegularPayment as cs, type RegularPaymentPaymentMethodDetailsOneOf as ct, type CreditCardDetails as cu, type PaymentCanceled as cv, type PaymentCanceledPaymentDetailsOneOf as cw, type PaymentDeclined as cx, type PaymentDeclinedPaymentDetailsOneOf as cy, type ReceiptCreated as cz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as d, type GetRefundabilityStatusRequest as d$, type SendBuyerPickupConfirmationEmailResponse as d0, type BulkSendBuyerPickupConfirmationEmailsRequest as d1, type BulkSendBuyerPickupConfirmationEmailsResponse as d2, type SendBuyerShippingConfirmationEmailRequest as d3, type SendBuyerShippingConfirmationEmailResponse as d4, type BulkSendBuyerShippingConfirmationEmailsRequest as d5, type BulkSendBuyerShippingConfirmationEmailsResponse as d6, type SendMerchantOrderReceivedNotificationRequest as d7, type SendMerchantOrderReceivedNotificationResponse as d8, type SendCancelRefundEmailRequest as d9, type PreviewShippingConfirmationEmailResponse as dA, type PreviewResendDownloadLinksEmailRequest as dB, type PreviewResendDownloadLinksEmailResponse as dC, type DomainEvent as dD, type DomainEventBodyOneOf as dE, type EntityCreatedEvent as dF, type RestoreInfo as dG, type EntityUpdatedEvent as dH, type EntityDeletedEvent as dI, type ActionEvent as dJ, type Empty as dK, type MessageEnvelope as dL, type IdentificationData as dM, type IdentificationDataIdOneOf as dN, type PreparePaymentCollectionRequest as dO, type RedirectUrls as dP, type DelayedCaptureSettings as dQ, type Duration as dR, type GetPaymentCollectabilityStatusRequest as dS, type RecordManuallyCollectedPaymentRequest as dT, type RecordManuallyCollectedPaymentResponse as dU, type MarkOrderAsPaidRequest as dV, type BulkMarkOrdersAsPaidRequest as dW, type BulkOrderResult as dX, type ItemMetadata as dY, type ApplicationError as dZ, type BulkActionMetadata as d_, type SendCancelRefundEmailResponse as da, type SendRefundEmailRequest as db, type SendRefundEmailResponse as dc, type SendMerchantOrderReceivedPushRequest as dd, type SendMerchantOrderReceivedPushResponse as de, type PreviewEmailByTypeRequest as df, type PreviewEmailByTypeResponse as dg, type PreviewRefundEmailRequest as dh, type RefundDetails as di, type RefundItem as dj, type LineItemRefund as dk, type AdditionalFeeRefund as dl, type ShippingRefund as dm, type PreviewRefundEmailResponse as dn, type PreviewCancelEmailRequest as dp, type PreviewCancelEmailResponse as dq, type PreviewCancelRefundEmailRequest as dr, type PreviewCancelRefundEmailResponse as ds, type PreviewBuyerPaymentsReceivedEmailRequest as dt, type PreviewBuyerPaymentsReceivedEmailResponse as du, type PreviewBuyerConfirmationEmailRequest as dv, type PreviewBuyerConfirmationEmailResponse as dw, type PreviewBuyerPickupConfirmationEmailRequest as dx, type PreviewBuyerPickupConfirmationEmailResponse as dy, type PreviewShippingConfirmationEmailRequest as dz, type GetRefundabilityStatusResponse as e, type InternalQueryOrdersRequest as e$, type Refundability as e0, type RefundabilityAdditionalRefundabilityInfoOneOf as e1, type CreatePaymentGatewayOrderRequest as e2, type ChargedBy as e3, type ChargeMembershipsRequest as e4, type MembershipChargeItem as e5, type MembershipName as e6, type ServiceProperties as e7, type ChargeMembershipsResponse as e8, type TriggerRefundRequest as e9, type CalculateRefundRequest as eA, type CalculateRefundItemRequest as eB, type CalculateRefundResponse as eC, type CalculateRefundItemResponse as eD, type VoidAuthorizedPaymentsRequest as eE, type CaptureAuthorizedPaymentsRequest as eF, type ChargeSavedPaymentMethodRequest as eG, type ChargeSavedPaymentMethodResponse as eH, type UpdateInternalDocumentsEvent as eI, type UpdateInternalDocumentsEventOperationOneOf as eJ, type InternalDocument as eK, type InternalDocumentUpdateOperation as eL, type DeleteByIdsOperation as eM, type DeleteByFilterOperation as eN, type InternalDocumentUpdateByFilterOperation as eO, type InternalUpdateExistingOperation as eP, type VersionedDocumentUpdateOperation as eQ, type VersionedDeleteByIdsOperation as eR, type VersionedDocumentId as eS, type TriggerReindexRequest as eT, type TriggerReindexResponse as eU, type BatchOfTriggerReindexOrderRequest as eV, type TriggerReindexOrderRequest as eW, type DiffmatokyPayload as eX, type ErrorInformation as eY, type GetOrderRequest as eZ, type GetOrderResponse as e_, type RefundSideEffects as ea, type RestockInfo as eb, type RestockItem as ec, type OrderTransactions as ed, type Payment as ee, type PaymentPaymentDetailsOneOf as ef, type PaymentReceiptInfoOneOf as eg, type RegularPaymentDetails as eh, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ei, type CreditCardPaymentMethodDetails as ej, type AuthorizationDetails as ek, type AuthorizationCapture as el, type AuthorizationActionFailureDetails as em, type AuthorizationVoid as en, type V1ScheduledAction as eo, type Chargeback as ep, type GiftCardPaymentDetails as eq, type MembershipPaymentDetails as er, type WixReceiptInfo as es, type ExternalReceiptInfo as et, type Refund as eu, type RefundTransaction as ev, type RefundStatusInfo as ew, type AggregatedRefundSummary as ex, type RefundItemsBreakdown as ey, type LineItemRefundSummary as ez, type PaymentCollectionCreatePaymentGatewayOrderOptions as f, type UpdateOrderLineItemRequest as f$, type PlatformQuery as f0, type PlatformQueryPagingMethodOneOf as f1, type Sorting as f2, type PlatformPaging as f3, type CursorPaging as f4, type InternalQueryOrdersResponse as f5, type PlatformPagingMetadata as f6, type Cursors as f7, type QueryOrderRequest as f8, type QueryOrderResponse as f9, type InventoryUpdateDetails as fA, type OrderDeltasCommitted as fB, type CommittedDiffs as fC, type CommittedDiffsShippingUpdateInfoOneOf as fD, type LineItemDelta as fE, type LineItemDeltaDeltaOneOf as fF, type ArchiveOrderRequest as fG, type ArchiveOrderResponse as fH, type BulkArchiveOrdersRequest as fI, type BulkArchiveOrdersResponse as fJ, type BulkArchiveOrdersByFilterRequest as fK, type BulkArchiveOrdersByFilterResponse as fL, type UnArchiveOrderRequest as fM, type UnArchiveOrderResponse as fN, type BulkUnArchiveOrdersRequest as fO, type BulkUnArchiveOrdersResponse as fP, type BulkUnArchiveOrdersByFilterRequest as fQ, type BulkUnArchiveOrdersByFilterResponse as fR, type UpdateBuyerInfoRequest as fS, type BuyerInfoUpdate as fT, type UpdateBuyerInfoResponse as fU, type UpdateBuyerEmailRequest as fV, type UpdateBuyerEmailResponse as fW, type UpdateOrderShippingAddressRequest as fX, type UpdateOrderShippingAddressResponse as fY, type UpdateBillingContactDetailsRequest as fZ, type UpdateBillingContactDetailsResponse as f_, type SearchOrdersRequest as fa, type CursorSearch as fb, type CursorSearchPagingMethodOneOf as fc, type CursorPagingMetadata as fd, type CreateOrderRequest as fe, type OrderCreationSettings as ff, type OrderCreateNotifications as fg, type CreateOrderResponse as fh, type UpdateOrderRequest as fi, type UpdateOrderResponse as fj, type BulkUpdateOrdersRequest as fk, type CommitDeltasRequest as fl, type DraftOrderDiffs as fm, type DraftOrderDiffsShippingUpdateInfoOneOf as fn, type DraftOrderDiffsBuyerUpdateInfoOneOf as fo, type DraftOrderDiffsBillingUpdateInfoOneOf as fp, type DraftOrderDiffsRecipientUpdateInfoOneOf as fq, type V1LineItemDelta as fr, type V1LineItemDeltaDeltaOneOf as fs, type OrderLineItemChangedDetails as ft, type ItemChangedDetails as fu, type AppliedDiscountDelta as fv, type AppliedDiscountDeltaDeltaOneOf as fw, type AdditionalFeeDelta as fx, type AdditionalFeeDeltaDeltaOneOf as fy, type DraftOrderCommitSettings as fz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as g, type GetShipmentsRequest as g$, type UpdateOrderLineItemsRequest as g0, type MaskedOrderLineItem as g1, type UpdateOrderLineItemsResponse as g2, type AddInternalActivityRequest as g3, type InternalActivity as g4, type InternalActivityContentOneOf as g5, type OrderPlaced as g6, type OrderPaid as g7, type OrderFulfilled as g8, type OrderNotFulfilled as g9, type MarkOrderAsSeenByHumanResponse as gA, type CancelOrderRequest as gB, type OrderCanceledEventOrderCanceled as gC, type UpdateOrderStatusRequest as gD, type MarkAsFulfilledRequest as gE, type MarkAsFulfilledResponse as gF, type FulfillmentStatusUpdated as gG, type BulkMarkAsFulfilledRequest as gH, type BulkMarkAsFulfilledResponse as gI, type BulkMarkAsFulfilledByFilterRequest as gJ, type BulkMarkAsFulfilledByFilterResponse as gK, type MarkAsUnfulfilledRequest as gL, type MarkAsUnfulfilledResponse as gM, type BulkMarkAsUnfulfilledRequest as gN, type BulkMarkAsUnfulfilledResponse as gO, type BulkMarkAsUnfulfilledByFilterRequest as gP, type BulkMarkAsUnfulfilledByFilterResponse as gQ, type BulkSetBusinessLocationRequest as gR, type BulkSetBusinessLocationResponse as gS, type BulkSetBusinessLocationResult as gT, type V1MarkOrderAsPaidRequest as gU, type V1MarkOrderAsPaidResponse as gV, type PaymentStatusUpdated as gW, type V1BulkMarkOrdersAsPaidRequest as gX, type V1BulkMarkOrdersAsPaidResponse as gY, type V1CreatePaymentGatewayOrderRequest as gZ, type V1CreatePaymentGatewayOrderResponse as g_, type OrderCanceled as ga, type DownloadLinkSent as gb, type TrackingNumberAdded as gc, type TrackingNumberEdited as gd, type TrackingLinkAdded as ge, type ShippingConfirmationEmailSent as gf, type InvoiceAdded as gg, type InvoiceSent as gh, type FulfillerEmailSent as gi, type ShippingAddressEdited as gj, type EmailEdited as gk, type PickupReadyEmailSent as gl, type OrderPartiallyPaid as gm, type OrderPending as gn, type OrderRejected as go, type AddInternalActivityResponse as gp, type AddActivityRequest as gq, type PublicActivityContentOneOf as gr, type AddActivitiesRequest as gs, type AddActivitiesResponse as gt, type UpdateActivityRequest as gu, type DeleteActivityRequest as gv, type UpdateLineItemsDescriptionLinesRequest as gw, type LineItemUpdate as gx, type UpdateLineItemsDescriptionLinesResponse as gy, type MarkOrderAsSeenByHumanRequest as gz, type ChargeMembershipsOptions as h, type DiscountTypeWithLiterals as h$, type GetShipmentsResponse as h0, type AggregateOrdersRequest as h1, type DecrementItemsQuantityRequest as h2, type DecrementData as h3, type DecrementItemsQuantityResponse as h4, type BulkUpdateOrderTagsRequest as h5, type BulkUpdateOrderTagsResult as h6, type Task as h7, type TaskKey as h8, type TaskAction as h9, type ItemizedFee as hA, type Discount as hB, type DiscountOneDiscountTypeOneOf as hC, type CalculatedTaxes as hD, type CalculatedTax as hE, type Payments as hF, type InvoicesPayment as hG, type MetaData as hH, type InvoiceDynamicPriceTotals as hI, type CustomFieldValue as hJ, type Value as hK, type Deposit as hL, type BaseEventMetadata as hM, type EventMetadata as hN, type OrderSearchSpec as hO, type DescriptionLineTypeWithLiterals as hP, type ItemTypeItemTypeWithLiterals as hQ, type PaymentOptionTypeWithLiterals as hR, type JurisdictionTypeWithLiterals as hS, type SubscriptionFrequencyWithLiterals as hT, type AdjustmentTypeWithLiterals as hU, type TaxableAddressTypeWithLiterals as hV, type PaymentStatusWithLiterals as hW, type FulfillmentStatusWithLiterals as hX, type WeightUnitWithLiterals as hY, type VatTypeWithLiterals as hZ, type PickupMethodWithLiterals as h_, type TaskActionActionOneOf as ha, type Complete as hb, type Cancel as hc, type Reschedule as hd, type InvoiceSentEvent as he, type IdAndVersion as hf, type InvoiceFields as hg, type Customer as hh, type Email as hi, type QuotesAddress as hj, type AddressDescription as hk, type Phone as hl, type Company as hm, type CommonAddress as hn, type CommonAddressStreetOneOf as ho, type Subdivision as hp, type StandardDetails as hq, type InvoiceDates as hr, type LineItems as hs, type LineItem as ht, type BigDecimalWrapper as hu, type LineItemTax as hv, type Source as hw, type LineItemMetaData as hx, type Locale as hy, type TotalPrice as hz, type PaymentRefund as i, updateOrderStatus as i$, type DiscountReasonWithLiterals as i0, type LineItemQuantityChangeTypeWithLiterals as i1, type ActivityTypeWithLiterals as i2, type AttributionSourceWithLiterals as i3, type ChannelTypeWithLiterals as i4, type PreviewEmailTypeWithLiterals as i5, type WebhookIdentityTypeWithLiterals as i6, type ScheduledActionWithLiterals as i7, type DurationUnitWithLiterals as i8, type PaymentCollectabilityStatusWithLiterals as i9, type CommonSearchWithEntityContext as iA, onOrderApproved as iB, onOrderUpdated as iC, onOrderCanceled as iD, onOrderCreated as iE, onOrderPaymentStatusUpdated as iF, preparePaymentCollection as iG, getPaymentCollectabilityStatus as iH, recordManuallyCollectedPayment as iI, paymentCollectionMarkOrderAsPaid as iJ, paymentCollectionBulkMarkOrdersAsPaid as iK, getRefundabilityStatus as iL, paymentCollectionCreatePaymentGatewayOrder as iM, chargeMemberships as iN, triggerRefund as iO, voidAuthorizedPayments as iP, captureAuthorizedPayments as iQ, getOrder as iR, createOrder as iS, updateOrder as iT, bulkUpdateOrders as iU, commitDeltas as iV, updateOrderLineItem as iW, addActivity as iX, updateActivity as iY, deleteActivity as iZ, cancelOrder as i_, type RefundableStatusWithLiterals as ia, type NonRefundableReasonWithLiterals as ib, type ManuallyRefundableReasonWithLiterals as ic, type RestockTypeWithLiterals as id, type TransactionStatusWithLiterals as ie, type AuthorizationCaptureStatusWithLiterals as ig, type AuthorizationVoidStatusWithLiterals as ih, type ReasonWithLiterals as ii, type ActionTypeWithLiterals as ij, type ChargebackStatusWithLiterals as ik, type MembershipPaymentStatusWithLiterals as il, type RefundStatusWithLiterals as im, type VersioningModeWithLiterals as io, type SortOrderWithLiterals as ip, type OrderApprovalStrategyWithLiterals as iq, type DeltaPaymentOptionTypeWithLiterals as ir, type InventoryActionWithLiterals as is, type PlacementWithLiterals as it, type SubdivisionTypeWithLiterals as iu, type SourceTypeWithLiterals as iv, type CustomFieldGroupWithLiterals as iw, type ValueTypeWithLiterals as ix, type DepositTypeWithLiterals as iy, type InvoiceStatusWithLiterals as iz, type TriggerRefundResponse as j, aggregateOrders as j0, bulkUpdateOrderTags as j1, type TriggerRefundApplicationErrors as k, type VoidAuthorizedPaymentsApplicationErrors as l, type PaymentCapture as m, type CaptureAuthorizedPaymentsResponse as n, type CaptureAuthorizedPaymentsApplicationErrors as o, type GetOrderApplicationErrors as p, type OrderSearch as q, type CreateOrderOptions as r, type CreateOrderApplicationErrors as s, type UpdateOrderApplicationErrors as t, type MaskedOrder as u, type BulkUpdateOrdersOptions as v, type BulkUpdateOrdersResponse as w, type CommitDeltasOptions as x, type CommitDeltasResponse as y, type CommitDeltasApplicationErrors as z };
8096
+ export { type CancelOrderApplicationErrors as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type CommitDeltasOptions as D, type CommitDeltasResponse as E, type CommitDeltasApplicationErrors as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItemIdentifiers as H, type ImportOrderResponse as I, type UpdateOrderLineItem as J, type UpdateOrderLineItemResponse as K, type PublicActivity as L, type MarkOrderAsPaidResponse as M, type AddActivityResponse as N, type Order as O, type Price as P, type UpdateActivityIdentifiers as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityResponse as W, type DeleteActivityIdentifiers as X, type DeleteActivityResponse as Y, type CancelOrderOptions as Z, type CancelOrderResponse as _, type SetOrderNumberCounterResponse as a, type CatalogReference as a$, type OrderStatusWithLiterals as a0, type UpdateOrderStatusResponse as a1, type UpdateOrderStatusApplicationErrors as a2, type AggregateOrdersOptions as a3, type AggregateOrdersResponse as a4, type BulkUpdateOrderTagsOptions as a5, type BulkUpdateOrderTagsResponse as a6, type OrderApprovedEnvelope as a7, type OrderUpdatedEnvelope as a8, type OrderCanceledEnvelope as a9, PaymentCollectabilityStatus as aA, RefundableStatus as aB, NonRefundableReason as aC, ManuallyRefundableReason as aD, RestockType as aE, TransactionStatus as aF, AuthorizationCaptureStatus as aG, AuthorizationVoidStatus as aH, Reason as aI, ActionType as aJ, ChargebackStatus as aK, MembershipPaymentStatus as aL, RefundStatus as aM, VersioningMode as aN, SortOrder as aO, OrderApprovalStrategy as aP, DeltaPaymentOptionType as aQ, InventoryAction as aR, Placement as aS, SubdivisionType as aT, SourceType as aU, CustomFieldGroup as aV, ValueType as aW, DepositType as aX, InvoiceStatus as aY, type OrderLineItem as aZ, type ProductName as a_, type OrderCreatedEnvelope as aa, type OrderPaymentStatusUpdatedEnvelope as ab, DescriptionLineType as ac, ItemTypeItemType as ad, PaymentOptionType as ae, JurisdictionType as af, SubscriptionFrequency as ag, AdjustmentType as ah, TaxableAddressType as ai, PaymentStatus as aj, FulfillmentStatus as ak, WeightUnit as al, VatType as am, PickupMethod as an, OrderStatus as ao, DiscountType as ap, DiscountReason as aq, LineItemQuantityChangeType as ar, ActivityType as as, AttributionSource as at, ChannelType as au, OrderActionType as av, WebhookIdentityType as aw, PreviewEmailType as ax, ScheduledAction as ay, DurationUnit as az, type BulkDeleteImportedOrdersResponse as b, type OrderCreatedFromExchange as b$, type DescriptionLine as b0, type DescriptionLineValueOneOf as b1, type DescriptionLineDescriptionLineValueOneOf as b2, type DescriptionLineName as b3, type PlainTextValue as b4, type Color as b5, type FocalPoint as b6, type PhysicalProperties as b7, type ItemType as b8, type ItemTypeItemTypeDataOneOf as b9, type AddressLocation as bA, type FullAddressContactDetails as bB, type VatId as bC, type V1ShippingInformation as bD, type DeliveryLogistics as bE, type DeliveryLogisticsAddressOneOf as bF, type PickupDetails as bG, type PickupAddress as bH, type DeliveryTimeSlot as bI, type ShippingPrice as bJ, type ShippingRegion as bK, type TaxSummary as bL, type OrderTaxInfo as bM, type OrderTaxBreakdown as bN, type AppliedDiscount as bO, type AppliedDiscountDiscountSourceOneOf as bP, type Coupon as bQ, type MerchantDiscount as bR, type MerchantDiscountMerchantDiscountReasonOneOf as bS, type DiscountRule as bT, type DiscountRuleName as bU, type LineItemDiscount as bV, type Activity as bW, type ActivityContentOneOf as bX, type CustomActivity as bY, type MerchantComment as bZ, type OrderRefunded as b_, type ItemTaxFullDetails as ba, type LineItemTaxInfo as bb, type LineItemTaxBreakdown as bc, type DigitalFile as bd, type SubscriptionInfo as be, type SubscriptionTitle as bf, type SubscriptionDescription as bg, type SubscriptionSettings as bh, type FreeTrialPeriod as bi, type BillingAdjustment as bj, type BillingAdjustmentPriceSummary as bk, type PriceDescription as bl, type LocationAndQuantity as bm, type TaxableAddress as bn, type TaxableAddressTaxableAddressDataOneOf as bo, type ExtendedFields as bp, type ModifierGroup as bq, type TranslatableString as br, type ItemModifier as bs, type BuyerInfo as bt, type BuyerInfoIdOneOf as bu, type CurrencyConversionDetails as bv, type PriceSummary as bw, type AddressWithContact as bx, type Address as by, type StreetAddress as bz, type PreparePaymentCollectionOptions as c, type OrderApproved as c$, type NewExchangeOrderCreated as c0, type LineItemExchangeData as c1, type DraftOrderChangesApplied as c2, type OrderChange as c3, type OrderChangeValueOneOf as c4, type LineItemChanges as c5, type LineItemQuantityChange as c6, type LineItemPriceChange as c7, type LineItemProductNameChange as c8, type LineItemDescriptionLineChange as c9, type CreditCardDetails as cA, type PaymentCanceled as cB, type PaymentCanceledPaymentDetailsOneOf as cC, type PaymentDeclined as cD, type PaymentDeclinedPaymentDetailsOneOf as cE, type ReceiptCreated as cF, type ReceiptCreatedReceiptInfoOneOf as cG, type WixReceipt as cH, type ExternalReceipt as cI, type ReceiptSent as cJ, type ReceiptSentReceiptInfoOneOf as cK, type ChargebackCreated as cL, type ChargebackReversed as cM, type CreatedBy as cN, type CreatedByStringOneOf as cO, type ChannelInfo as cP, type CustomField as cQ, type BalanceSummary as cR, type Balance as cS, type AdditionalFee as cT, type FulfillmentStatusesAggregate as cU, type Tags as cV, type TagList as cW, type Location as cX, type OrderSettings as cY, type OrderSettingsAllowedActionsOneOf as cZ, type CustomAllowedActions as c_, type LineItemModifiersChange as ca, type ManagedLineItem as cb, type ManagedDiscount as cc, type TranslatedValue as cd, type LineItemAmount as ce, type ManagedAdditionalFee as cf, type TotalPriceChange as cg, type ShippingInformationChange as ch, type ShippingInformation as ci, type SavedPaymentMethod as cj, type AuthorizedPaymentCreated as ck, type AuthorizedPaymentCaptured as cl, type AuthorizedPaymentVoided as cm, type RefundInitiated as cn, type RefundedPayment as co, type RefundedPaymentKindOneOf as cp, type RegularPaymentRefund as cq, type GiftCardPaymentRefund as cr, type MembershipPaymentRefund as cs, type PaymentRefunded as ct, type PaymentRefundFailed as cu, type RefundedAsStoreCredit as cv, type PaymentPending as cw, type PaymentPendingPaymentDetailsOneOf as cx, type RegularPayment as cy, type RegularPaymentPaymentMethodDetailsOneOf as cz, type PreparePaymentCollectionResponse as d, type Empty as d$, type OrdersExperiments as d0, type OrderRejectedEventOrderRejected as d1, type OrderItemsRestocked as d2, type V1RestockItem as d3, type OrderImported as d4, type ImportedOrderDeleted as d5, type ImportOrderRequest as d6, type SetOrderNumberCounterRequest as d7, type BulkDeleteImportedOrdersRequest as d8, type DomainEvent as d9, type SendRefundEmailRequest as dA, type SendRefundEmailResponse as dB, type SendMerchantOrderReceivedPushRequest as dC, type SendMerchantOrderReceivedPushResponse as dD, type PreviewEmailByTypeRequest as dE, type PreviewEmailByTypeResponse as dF, type PreviewRefundEmailRequest as dG, type RefundDetails as dH, type RefundItem as dI, type LineItemRefund as dJ, type AdditionalFeeRefund as dK, type ShippingRefund as dL, type PreviewRefundEmailResponse as dM, type PreviewCancelEmailRequest as dN, type PreviewCancelEmailResponse as dO, type PreviewCancelRefundEmailRequest as dP, type PreviewCancelRefundEmailResponse as dQ, type PreviewBuyerPaymentsReceivedEmailRequest as dR, type PreviewBuyerPaymentsReceivedEmailResponse as dS, type PreviewBuyerConfirmationEmailRequest as dT, type PreviewBuyerConfirmationEmailResponse as dU, type PreviewBuyerPickupConfirmationEmailRequest as dV, type PreviewBuyerPickupConfirmationEmailResponse as dW, type PreviewShippingConfirmationEmailRequest as dX, type PreviewShippingConfirmationEmailResponse as dY, type PreviewResendDownloadLinksEmailRequest as dZ, type PreviewResendDownloadLinksEmailResponse as d_, type DomainEventBodyOneOf as da, type EntityCreatedEvent as db, type RestoreInfo as dc, type EntityUpdatedEvent as dd, type EntityDeletedEvent as de, type ActionEvent as df, type MessageEnvelope as dg, type IdentificationData as dh, type IdentificationDataIdOneOf as di, type SendBuyerConfirmationEmailRequest as dj, type SendBuyerConfirmationEmailResponse as dk, type SendBuyerPaymentsReceivedEmailRequest as dl, type SendBuyerPaymentsReceivedEmailResponse as dm, type SendBuyerPickupConfirmationEmailRequest as dn, 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 PreparePaymentCollectionApplicationErrors as e, type DeleteByFilterOperation as e$, type PreparePaymentCollectionRequest as e0, type RedirectUrls as e1, type DelayedCaptureSettings as e2, type Duration as e3, type GetPaymentCollectabilityStatusRequest as e4, type RecordManuallyCollectedPaymentRequest as e5, type RecordManuallyCollectedPaymentResponse as e6, type MarkOrderAsPaidRequest as e7, type BulkMarkOrdersAsPaidRequest as e8, type BulkOrderResult as e9, type AuthorizationActionFailureDetails as eA, type AuthorizationVoid as eB, type V1ScheduledAction as eC, type Chargeback as eD, type GiftCardPaymentDetails as eE, type MembershipPaymentDetails as eF, type WixReceiptInfo as eG, type ExternalReceiptInfo as eH, type Refund as eI, type RefundTransaction as eJ, type RefundStatusInfo as eK, type AggregatedRefundSummary as eL, type RefundItemsBreakdown as eM, type LineItemRefundSummary as eN, type CalculateRefundRequest as eO, type CalculateRefundItemRequest as eP, type CalculateRefundResponse as eQ, type CalculateRefundItemResponse as eR, type VoidAuthorizedPaymentsRequest as eS, type CaptureAuthorizedPaymentsRequest as eT, type ChargeSavedPaymentMethodRequest as eU, type ChargeSavedPaymentMethodResponse as eV, type UpdateInternalDocumentsEvent as eW, type UpdateInternalDocumentsEventOperationOneOf as eX, type InternalDocument as eY, type InternalDocumentUpdateOperation as eZ, type DeleteByIdsOperation as e_, type ItemMetadata as ea, type ApplicationError as eb, type BulkActionMetadata as ec, type GetRefundabilityStatusRequest as ed, type Refundability as ee, type RefundabilityAdditionalRefundabilityInfoOneOf as ef, type CreatePaymentGatewayOrderRequest as eg, type ChargedBy as eh, type ChargeMembershipsRequest as ei, type MembershipChargeItem as ej, type MembershipName as ek, type ServiceProperties as el, type ChargeMembershipsResponse as em, type TriggerRefundRequest as en, type RefundSideEffects as eo, type RestockInfo as ep, type RestockItem as eq, type OrderTransactions as er, type Payment as es, type PaymentPaymentDetailsOneOf as et, type PaymentReceiptInfoOneOf as eu, type RegularPaymentDetails as ev, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ew, type CreditCardPaymentMethodDetails as ex, type AuthorizationDetails as ey, type AuthorizationCapture as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type UnArchiveOrderResponse as f$, type InternalDocumentUpdateByFilterOperation as f0, type InternalUpdateExistingOperation as f1, type VersionedDocumentUpdateOperation as f2, type VersionedDeleteByIdsOperation as f3, type VersionedDocumentId as f4, type TriggerReindexRequest as f5, type TriggerReindexResponse as f6, type BatchOfTriggerReindexOrderRequest as f7, type TriggerReindexOrderRequest as f8, type DiffmatokyPayload as f9, type DraftOrderDiffs as fA, type DraftOrderDiffsShippingUpdateInfoOneOf as fB, type DraftOrderDiffsBuyerUpdateInfoOneOf as fC, type DraftOrderDiffsBillingUpdateInfoOneOf as fD, type DraftOrderDiffsRecipientUpdateInfoOneOf as fE, type V1LineItemDelta as fF, type V1LineItemDeltaDeltaOneOf as fG, type OrderLineItemChangedDetails as fH, type ItemChangedDetails as fI, type AppliedDiscountDelta as fJ, type AppliedDiscountDeltaDeltaOneOf as fK, type AdditionalFeeDelta as fL, type AdditionalFeeDeltaDeltaOneOf as fM, type DraftOrderCommitSettings as fN, type InventoryUpdateDetails as fO, type OrderDeltasCommitted as fP, type CommittedDiffs as fQ, type CommittedDiffsShippingUpdateInfoOneOf as fR, type LineItemDelta as fS, type LineItemDeltaDeltaOneOf as fT, type ArchiveOrderRequest as fU, type ArchiveOrderResponse as fV, type BulkArchiveOrdersRequest as fW, type BulkArchiveOrdersResponse as fX, type BulkArchiveOrdersByFilterRequest as fY, type BulkArchiveOrdersByFilterResponse as fZ, type UnArchiveOrderRequest as f_, type ErrorInformation as fa, type GetOrderRequest as fb, type GetOrderResponse as fc, type InternalQueryOrdersRequest as fd, type PlatformQuery as fe, type PlatformQueryPagingMethodOneOf as ff, type Sorting as fg, type PlatformPaging as fh, type CursorPaging as fi, type InternalQueryOrdersResponse as fj, type PlatformPagingMetadata as fk, type Cursors as fl, type QueryOrderRequest as fm, type QueryOrderResponse as fn, type SearchOrdersRequest as fo, type CursorSearch as fp, type CursorSearchPagingMethodOneOf as fq, type CursorPagingMetadata as fr, type CreateOrderRequest as fs, type OrderCreationSettings as ft, type OrderCreateNotifications as fu, type CreateOrderResponse as fv, type UpdateOrderRequest as fw, type UpdateOrderResponse as fx, type BulkUpdateOrdersRequest as fy, type CommitDeltasRequest as fz, type BulkMarkOrdersAsPaidResponse as g, type BulkMarkAsUnfulfilledRequest as g$, type BulkUnArchiveOrdersRequest as g0, type BulkUnArchiveOrdersResponse as g1, type BulkUnArchiveOrdersByFilterRequest as g2, type BulkUnArchiveOrdersByFilterResponse as g3, type UpdateBuyerInfoRequest as g4, type BuyerInfoUpdate as g5, type UpdateBuyerInfoResponse as g6, type UpdateBuyerEmailRequest as g7, type UpdateBuyerEmailResponse as g8, type UpdateOrderShippingAddressRequest as g9, type OrderPartiallyPaid as gA, type OrderPending as gB, type OrderRejected as gC, type AddInternalActivityResponse as gD, type AddActivityRequest as gE, type PublicActivityContentOneOf as gF, type AddActivitiesRequest as gG, type AddActivitiesResponse as gH, type UpdateActivityRequest as gI, type DeleteActivityRequest as gJ, type UpdateLineItemsDescriptionLinesRequest as gK, type LineItemUpdate as gL, type UpdateLineItemsDescriptionLinesResponse as gM, type MarkOrderAsSeenByHumanRequest as gN, type MarkOrderAsSeenByHumanResponse as gO, type CancelOrderRequest as gP, type OrderCanceledEventOrderCanceled as gQ, type UpdateOrderStatusRequest as gR, type MarkAsFulfilledRequest as gS, type MarkAsFulfilledResponse as gT, type FulfillmentStatusUpdated as gU, type BulkMarkAsFulfilledRequest as gV, type BulkMarkAsFulfilledResponse as gW, type BulkMarkAsFulfilledByFilterRequest as gX, type BulkMarkAsFulfilledByFilterResponse as gY, type MarkAsUnfulfilledRequest as gZ, type MarkAsUnfulfilledResponse as g_, type UpdateOrderShippingAddressResponse as ga, type UpdateBillingContactDetailsRequest as gb, type UpdateBillingContactDetailsResponse as gc, type UpdateOrderLineItemRequest as gd, type UpdateOrderLineItemsRequest as ge, type MaskedOrderLineItem as gf, type UpdateOrderLineItemsResponse as gg, type AddInternalActivityRequest as gh, type InternalActivity as gi, type InternalActivityContentOneOf as gj, type OrderPlaced as gk, type OrderPaid as gl, type OrderFulfilled as gm, type OrderNotFulfilled as gn, type OrderCanceled as go, type DownloadLinkSent as gp, type TrackingNumberAdded as gq, type TrackingNumberEdited as gr, type TrackingLinkAdded as gs, type ShippingConfirmationEmailSent as gt, type InvoiceAdded as gu, type InvoiceSent as gv, type FulfillerEmailSent as gw, type ShippingAddressEdited as gx, type EmailEdited as gy, type PickupReadyEmailSent as gz, type GetRefundabilityStatusResponse as h, type EventMetadata as h$, type BulkMarkAsUnfulfilledResponse as h0, type BulkMarkAsUnfulfilledByFilterRequest as h1, type BulkMarkAsUnfulfilledByFilterResponse as h2, type BulkSetBusinessLocationRequest as h3, type BulkSetBusinessLocationResponse as h4, type BulkSetBusinessLocationResult as h5, type V1MarkOrderAsPaidRequest as h6, type V1MarkOrderAsPaidResponse as h7, type PaymentStatusUpdated as h8, type V1BulkMarkOrdersAsPaidRequest as h9, type Company as hA, type CommonAddress as hB, type CommonAddressStreetOneOf as hC, type Subdivision as hD, type StandardDetails as hE, type InvoiceDates as hF, type LineItems as hG, type LineItem as hH, type BigDecimalWrapper as hI, type LineItemTax as hJ, type Source as hK, type LineItemMetaData as hL, type Locale as hM, type TotalPrice as hN, type ItemizedFee as hO, type Discount as hP, type DiscountOneDiscountTypeOneOf as hQ, type CalculatedTaxes as hR, type CalculatedTax as hS, type Payments as hT, type InvoicesPayment as hU, type MetaData as hV, type InvoiceDynamicPriceTotals as hW, type CustomFieldValue as hX, type Value as hY, type Deposit as hZ, type BaseEventMetadata as h_, type V1BulkMarkOrdersAsPaidResponse as ha, type V1CreatePaymentGatewayOrderRequest as hb, type V1CreatePaymentGatewayOrderResponse as hc, type GetShipmentsRequest as hd, type GetShipmentsResponse as he, type AggregateOrdersRequest as hf, type DecrementItemsQuantityRequest as hg, type DecrementData as hh, type DecrementItemsQuantityResponse as hi, type BulkUpdateOrderTagsRequest as hj, type BulkUpdateOrderTagsResult as hk, type Task as hl, type TaskKey as hm, type TaskAction as hn, type TaskActionActionOneOf as ho, type Complete as hp, type Cancel as hq, type Reschedule as hr, type InvoiceSentEvent as hs, type IdAndVersion as ht, type InvoiceFields as hu, type Customer as hv, type Email as hw, type QuotesAddress as hx, type AddressDescription as hy, type Phone as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, paymentCollectionMarkOrderAsPaid as i$, type OrderSearchSpec as i0, type DescriptionLineTypeWithLiterals as i1, type ItemTypeItemTypeWithLiterals as i2, type PaymentOptionTypeWithLiterals as i3, type JurisdictionTypeWithLiterals as i4, type SubscriptionFrequencyWithLiterals as i5, type AdjustmentTypeWithLiterals as i6, type TaxableAddressTypeWithLiterals as i7, type PaymentStatusWithLiterals as i8, type FulfillmentStatusWithLiterals as i9, type ChargebackStatusWithLiterals as iA, type MembershipPaymentStatusWithLiterals as iB, type RefundStatusWithLiterals as iC, type VersioningModeWithLiterals as iD, type SortOrderWithLiterals as iE, type OrderApprovalStrategyWithLiterals as iF, type DeltaPaymentOptionTypeWithLiterals as iG, type InventoryActionWithLiterals as iH, type PlacementWithLiterals as iI, type SubdivisionTypeWithLiterals as iJ, type SourceTypeWithLiterals as iK, type CustomFieldGroupWithLiterals as iL, type ValueTypeWithLiterals as iM, type DepositTypeWithLiterals as iN, type InvoiceStatusWithLiterals as iO, type CommonSearchWithEntityContext as iP, onOrderApproved as iQ, onOrderUpdated as iR, onOrderCanceled as iS, onOrderCreated as iT, onOrderPaymentStatusUpdated as iU, importOrder as iV, setOrderNumberCounter as iW, bulkDeleteImportedOrders as iX, preparePaymentCollection as iY, getPaymentCollectabilityStatus as iZ, recordManuallyCollectedPayment as i_, type WeightUnitWithLiterals as ia, type VatTypeWithLiterals as ib, type PickupMethodWithLiterals as ic, type DiscountTypeWithLiterals as id, type DiscountReasonWithLiterals as ie, type LineItemQuantityChangeTypeWithLiterals as ig, type ActivityTypeWithLiterals as ih, type AttributionSourceWithLiterals as ii, type ChannelTypeWithLiterals as ij, type OrderActionTypeWithLiterals as ik, type WebhookIdentityTypeWithLiterals as il, type PreviewEmailTypeWithLiterals as im, type ScheduledActionWithLiterals as io, type DurationUnitWithLiterals as ip, type PaymentCollectabilityStatusWithLiterals as iq, type RefundableStatusWithLiterals as ir, type NonRefundableReasonWithLiterals as is, type ManuallyRefundableReasonWithLiterals as it, type RestockTypeWithLiterals as iu, type TransactionStatusWithLiterals as iv, type AuthorizationCaptureStatusWithLiterals as iw, type AuthorizationVoidStatusWithLiterals as ix, type ReasonWithLiterals as iy, type ActionTypeWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, paymentCollectionBulkMarkOrdersAsPaid as j0, getRefundabilityStatus as j1, paymentCollectionCreatePaymentGatewayOrder as j2, chargeMemberships as j3, triggerRefund as j4, voidAuthorizedPayments as j5, captureAuthorizedPayments as j6, getOrder as j7, createOrder as j8, updateOrder as j9, bulkUpdateOrders as ja, commitDeltas as jb, updateOrderLineItem as jc, addActivity as jd, updateActivity as je, deleteActivity as jf, cancelOrder as jg, updateOrderStatus as jh, aggregateOrders as ji, bulkUpdateOrderTags as jj, type ChargeMembershipsOptions as k, type PaymentRefund as l, type TriggerRefundResponse as m, type TriggerRefundApplicationErrors as n, type VoidAuthorizedPaymentsApplicationErrors as o, type PaymentCapture as p, type CaptureAuthorizedPaymentsResponse as q, type CaptureAuthorizedPaymentsApplicationErrors as r, type GetOrderApplicationErrors as s, type OrderSearch as t, type SearchOrdersResponse as u, type CreateOrderOptions as v, type CreateOrderApplicationErrors as w, type UpdateOrderApplicationErrors as x, type MaskedOrder as y, type BulkUpdateOrdersOptions as z };