@wix/auto_sdk_ecom_orders 1.0.114 → 1.0.116
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.
- package/build/cjs/{ecom-v1-order-orders.universal-el5SGD40.d.ts → ecom-v1-order-orders.universal-CzvHFP5d.d.ts} +275 -135
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +323 -7
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +298 -7
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +268 -139
- package/build/cjs/meta.js +240 -7
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-el5SGD40.d.mts → ecom-v1-order-orders.universal-CzvHFP5d.d.mts} +275 -135
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +319 -7
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +294 -7
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +268 -139
- package/build/es/meta.mjs +236 -7
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-CQmC9WuX.d.ts → ecom-v1-order-orders.universal-DoCuzcd7.d.ts} +346 -135
- package/build/internal/cjs/index.d.ts +42 -3
- package/build/internal/cjs/index.js +323 -7
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +298 -7
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +268 -139
- package/build/internal/cjs/meta.js +240 -7
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-CQmC9WuX.d.mts → ecom-v1-order-orders.universal-DoCuzcd7.d.mts} +346 -135
- package/build/internal/es/index.d.mts +42 -3
- package/build/internal/es/index.mjs +319 -7
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +294 -7
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +268 -139
- package/build/internal/es/meta.mjs +236 -7
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2610,6 +2610,77 @@ interface Location {
|
|
|
2610
2610
|
*/
|
|
2611
2611
|
name?: string;
|
|
2612
2612
|
}
|
|
2613
|
+
interface OrderSettings extends OrderSettingsAllowedActionsOneOf {
|
|
2614
|
+
/** Regular order with full set of allowed actions (ActionType for reference). */
|
|
2615
|
+
standardActions?: boolean;
|
|
2616
|
+
/**
|
|
2617
|
+
* View only order with limited set of allowed actions:
|
|
2618
|
+
* 1. Add merchant activity
|
|
2619
|
+
* 2. Send order notifications
|
|
2620
|
+
* 3. Archiving order
|
|
2621
|
+
* 4. Assign tags on orders
|
|
2622
|
+
* 5. Export order
|
|
2623
|
+
* 6. Print order
|
|
2624
|
+
*/
|
|
2625
|
+
limitedActions?: boolean;
|
|
2626
|
+
/** Custom list of allowed actions for order. */
|
|
2627
|
+
customActions?: CustomAllowedActions;
|
|
2628
|
+
}
|
|
2629
|
+
/** @oneof */
|
|
2630
|
+
interface OrderSettingsAllowedActionsOneOf {
|
|
2631
|
+
/** Regular order with full set of allowed actions (ActionType for reference). */
|
|
2632
|
+
standardActions?: boolean;
|
|
2633
|
+
/**
|
|
2634
|
+
* View only order with limited set of allowed actions:
|
|
2635
|
+
* 1. Add merchant activity
|
|
2636
|
+
* 2. Send order notifications
|
|
2637
|
+
* 3. Archiving order
|
|
2638
|
+
* 4. Assign tags on orders
|
|
2639
|
+
* 5. Export order
|
|
2640
|
+
* 6. Print order
|
|
2641
|
+
*/
|
|
2642
|
+
limitedActions?: boolean;
|
|
2643
|
+
/** Custom list of allowed actions for order. */
|
|
2644
|
+
customActions?: CustomAllowedActions;
|
|
2645
|
+
}
|
|
2646
|
+
interface CustomAllowedActions {
|
|
2647
|
+
/** @maxSize 17 */
|
|
2648
|
+
orderActions?: OrderActionTypeWithLiterals[];
|
|
2649
|
+
}
|
|
2650
|
+
declare enum OrderActionType {
|
|
2651
|
+
/** Order is editable */
|
|
2652
|
+
EDIT = "EDIT",
|
|
2653
|
+
/** Order is updatable */
|
|
2654
|
+
UPDATE = "UPDATE",
|
|
2655
|
+
/** Order is refundable */
|
|
2656
|
+
REFUND = "REFUND",
|
|
2657
|
+
/** Allow mark order as approved */
|
|
2658
|
+
APPROVE = "APPROVE",
|
|
2659
|
+
/** Allow cancel order */
|
|
2660
|
+
CANCEL = "CANCEL",
|
|
2661
|
+
/** Allow fulfill order */
|
|
2662
|
+
FULFILL = "FULFILL",
|
|
2663
|
+
/** Allow to collect payment for order */
|
|
2664
|
+
COLLECT_PAYMENTS = "COLLECT_PAYMENTS",
|
|
2665
|
+
/** Allow send notifications for order */
|
|
2666
|
+
SEND_NOTIFICATIONS = "SEND_NOTIFICATIONS",
|
|
2667
|
+
/** Allow add merchant activities on order */
|
|
2668
|
+
ADD_MERCHANT_ACTIVITY = "ADD_MERCHANT_ACTIVITY",
|
|
2669
|
+
/** Allow add all types of activities on order */
|
|
2670
|
+
ADD_ACTIVITY = "ADD_ACTIVITY",
|
|
2671
|
+
/** Allow create invoice */
|
|
2672
|
+
CREATE_INVOICE = "CREATE_INVOICE",
|
|
2673
|
+
/** Allow create receipts for order payments */
|
|
2674
|
+
CREATE_RECEIPTS = "CREATE_RECEIPTS",
|
|
2675
|
+
/** Allow assign tags on order */
|
|
2676
|
+
ASSIGN_TAG = "ASSIGN_TAG",
|
|
2677
|
+
/** Allow print packaging slip */
|
|
2678
|
+
PRINT_PACKAGING_SLIP = "PRINT_PACKAGING_SLIP",
|
|
2679
|
+
/** Allow to update inventory */
|
|
2680
|
+
MODIFY_INVENTORY = "MODIFY_INVENTORY"
|
|
2681
|
+
}
|
|
2682
|
+
/** @enumType */
|
|
2683
|
+
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';
|
|
2613
2684
|
/** Triggered when the order status changes to approved */
|
|
2614
2685
|
interface OrderApproved {
|
|
2615
2686
|
/** The order that was updated */
|
|
@@ -2646,6 +2717,195 @@ interface V1RestockItem {
|
|
|
2646
2717
|
*/
|
|
2647
2718
|
quantity?: number;
|
|
2648
2719
|
}
|
|
2720
|
+
/** Triggered when order is imported */
|
|
2721
|
+
interface OrderImported {
|
|
2722
|
+
/** The order which was imported */
|
|
2723
|
+
order?: Order;
|
|
2724
|
+
}
|
|
2725
|
+
/** Triggered when order was deleted */
|
|
2726
|
+
interface ImportedOrderDeleted {
|
|
2727
|
+
/** The order which was deleted */
|
|
2728
|
+
order?: Order;
|
|
2729
|
+
}
|
|
2730
|
+
interface ImportOrderRequest {
|
|
2731
|
+
/**
|
|
2732
|
+
* Order to be imported
|
|
2733
|
+
* If order.order_settings.order_type and order.order_settings.custom_order_type not set than VIEW_ONLY will be used
|
|
2734
|
+
*/
|
|
2735
|
+
order: Order;
|
|
2736
|
+
}
|
|
2737
|
+
interface ImportOrderResponse {
|
|
2738
|
+
order?: Order;
|
|
2739
|
+
}
|
|
2740
|
+
/** Set Order number counter request */
|
|
2741
|
+
interface SetOrderNumberCounterRequest {
|
|
2742
|
+
/**
|
|
2743
|
+
* Order number counter to set.
|
|
2744
|
+
* Counter will be used as start of number sequence and used as order number with increment
|
|
2745
|
+
* @max 999999999
|
|
2746
|
+
*/
|
|
2747
|
+
counter: string;
|
|
2748
|
+
/** Whether to allow setting a lower counter than current value */
|
|
2749
|
+
allowLowerCounter?: boolean;
|
|
2750
|
+
}
|
|
2751
|
+
interface SetOrderNumberCounterResponse {
|
|
2752
|
+
/** Order number counter before update */
|
|
2753
|
+
oldCounter?: string;
|
|
2754
|
+
/** Order number counter after update */
|
|
2755
|
+
newCounter?: string;
|
|
2756
|
+
}
|
|
2757
|
+
/** Bulk Delete Imported Orders Messages */
|
|
2758
|
+
interface BulkDeleteImportedOrdersRequest {
|
|
2759
|
+
/**
|
|
2760
|
+
* List of order ids to be deleted.
|
|
2761
|
+
* Only orders imported via ImportOrders API can be deleted.
|
|
2762
|
+
* @format GUID
|
|
2763
|
+
* @minSize 1
|
|
2764
|
+
* @maxSize 1000
|
|
2765
|
+
*/
|
|
2766
|
+
orderIds?: string[];
|
|
2767
|
+
}
|
|
2768
|
+
interface BulkDeleteImportedOrdersResponse {
|
|
2769
|
+
/**
|
|
2770
|
+
* 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
|
|
2771
|
+
* @format GUID
|
|
2772
|
+
*/
|
|
2773
|
+
jobId?: string;
|
|
2774
|
+
}
|
|
2775
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
2776
|
+
createdEvent?: EntityCreatedEvent;
|
|
2777
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2778
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2779
|
+
actionEvent?: ActionEvent;
|
|
2780
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
2781
|
+
_id?: string;
|
|
2782
|
+
/**
|
|
2783
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
2784
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
2785
|
+
*/
|
|
2786
|
+
entityFqdn?: string;
|
|
2787
|
+
/**
|
|
2788
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
2789
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
2790
|
+
*/
|
|
2791
|
+
slug?: string;
|
|
2792
|
+
/** ID of the entity associated with the event. */
|
|
2793
|
+
entityId?: string;
|
|
2794
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
2795
|
+
eventTime?: Date | null;
|
|
2796
|
+
/**
|
|
2797
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
2798
|
+
* (for example, GDPR).
|
|
2799
|
+
*/
|
|
2800
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
2801
|
+
/** If present, indicates the action that triggered the event. */
|
|
2802
|
+
originatedFrom?: string | null;
|
|
2803
|
+
/**
|
|
2804
|
+
* 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.
|
|
2805
|
+
* 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.
|
|
2806
|
+
*/
|
|
2807
|
+
entityEventSequence?: string | null;
|
|
2808
|
+
}
|
|
2809
|
+
/** @oneof */
|
|
2810
|
+
interface DomainEventBodyOneOf {
|
|
2811
|
+
createdEvent?: EntityCreatedEvent;
|
|
2812
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2813
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2814
|
+
actionEvent?: ActionEvent;
|
|
2815
|
+
}
|
|
2816
|
+
interface EntityCreatedEvent {
|
|
2817
|
+
entity?: string;
|
|
2818
|
+
}
|
|
2819
|
+
interface RestoreInfo {
|
|
2820
|
+
deletedDate?: Date | null;
|
|
2821
|
+
}
|
|
2822
|
+
interface EntityUpdatedEvent {
|
|
2823
|
+
/**
|
|
2824
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
2825
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
2826
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2827
|
+
*/
|
|
2828
|
+
currentEntity?: string;
|
|
2829
|
+
}
|
|
2830
|
+
interface EntityDeletedEvent {
|
|
2831
|
+
/** Entity that was deleted. */
|
|
2832
|
+
deletedEntity?: string | null;
|
|
2833
|
+
}
|
|
2834
|
+
interface ActionEvent {
|
|
2835
|
+
body?: string;
|
|
2836
|
+
}
|
|
2837
|
+
interface MessageEnvelope {
|
|
2838
|
+
/**
|
|
2839
|
+
* App instance ID.
|
|
2840
|
+
* @format GUID
|
|
2841
|
+
*/
|
|
2842
|
+
instanceId?: string | null;
|
|
2843
|
+
/**
|
|
2844
|
+
* Event type.
|
|
2845
|
+
* @maxLength 150
|
|
2846
|
+
*/
|
|
2847
|
+
eventType?: string;
|
|
2848
|
+
/** The identification type and identity data. */
|
|
2849
|
+
identity?: IdentificationData;
|
|
2850
|
+
/** Stringify payload. */
|
|
2851
|
+
data?: string;
|
|
2852
|
+
}
|
|
2853
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
2854
|
+
/**
|
|
2855
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2856
|
+
* @format GUID
|
|
2857
|
+
*/
|
|
2858
|
+
anonymousVisitorId?: string;
|
|
2859
|
+
/**
|
|
2860
|
+
* ID of a site visitor that has logged in to the site.
|
|
2861
|
+
* @format GUID
|
|
2862
|
+
*/
|
|
2863
|
+
memberId?: string;
|
|
2864
|
+
/**
|
|
2865
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2866
|
+
* @format GUID
|
|
2867
|
+
*/
|
|
2868
|
+
wixUserId?: string;
|
|
2869
|
+
/**
|
|
2870
|
+
* ID of an app.
|
|
2871
|
+
* @format GUID
|
|
2872
|
+
*/
|
|
2873
|
+
appId?: string;
|
|
2874
|
+
/** @readonly */
|
|
2875
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
2876
|
+
}
|
|
2877
|
+
/** @oneof */
|
|
2878
|
+
interface IdentificationDataIdOneOf {
|
|
2879
|
+
/**
|
|
2880
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2881
|
+
* @format GUID
|
|
2882
|
+
*/
|
|
2883
|
+
anonymousVisitorId?: string;
|
|
2884
|
+
/**
|
|
2885
|
+
* ID of a site visitor that has logged in to the site.
|
|
2886
|
+
* @format GUID
|
|
2887
|
+
*/
|
|
2888
|
+
memberId?: string;
|
|
2889
|
+
/**
|
|
2890
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2891
|
+
* @format GUID
|
|
2892
|
+
*/
|
|
2893
|
+
wixUserId?: string;
|
|
2894
|
+
/**
|
|
2895
|
+
* ID of an app.
|
|
2896
|
+
* @format GUID
|
|
2897
|
+
*/
|
|
2898
|
+
appId?: string;
|
|
2899
|
+
}
|
|
2900
|
+
declare enum WebhookIdentityType {
|
|
2901
|
+
UNKNOWN = "UNKNOWN",
|
|
2902
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
2903
|
+
MEMBER = "MEMBER",
|
|
2904
|
+
WIX_USER = "WIX_USER",
|
|
2905
|
+
APP = "APP"
|
|
2906
|
+
}
|
|
2907
|
+
/** @enumType */
|
|
2908
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
2649
2909
|
interface SendBuyerConfirmationEmailRequest {
|
|
2650
2910
|
/** @format GUID */
|
|
2651
2911
|
orderId?: string;
|
|
@@ -2938,142 +3198,8 @@ interface PreviewResendDownloadLinksEmailRequest {
|
|
|
2938
3198
|
interface PreviewResendDownloadLinksEmailResponse {
|
|
2939
3199
|
emailPreview?: string;
|
|
2940
3200
|
}
|
|
2941
|
-
interface DomainEvent extends DomainEventBodyOneOf {
|
|
2942
|
-
createdEvent?: EntityCreatedEvent;
|
|
2943
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
2944
|
-
deletedEvent?: EntityDeletedEvent;
|
|
2945
|
-
actionEvent?: ActionEvent;
|
|
2946
|
-
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
2947
|
-
_id?: string;
|
|
2948
|
-
/**
|
|
2949
|
-
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
2950
|
-
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
2951
|
-
*/
|
|
2952
|
-
entityFqdn?: string;
|
|
2953
|
-
/**
|
|
2954
|
-
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
2955
|
-
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
2956
|
-
*/
|
|
2957
|
-
slug?: string;
|
|
2958
|
-
/** ID of the entity associated with the event. */
|
|
2959
|
-
entityId?: string;
|
|
2960
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
2961
|
-
eventTime?: Date | null;
|
|
2962
|
-
/**
|
|
2963
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
2964
|
-
* (for example, GDPR).
|
|
2965
|
-
*/
|
|
2966
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
2967
|
-
/** If present, indicates the action that triggered the event. */
|
|
2968
|
-
originatedFrom?: string | null;
|
|
2969
|
-
/**
|
|
2970
|
-
* 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.
|
|
2971
|
-
* 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.
|
|
2972
|
-
*/
|
|
2973
|
-
entityEventSequence?: string | null;
|
|
2974
|
-
}
|
|
2975
|
-
/** @oneof */
|
|
2976
|
-
interface DomainEventBodyOneOf {
|
|
2977
|
-
createdEvent?: EntityCreatedEvent;
|
|
2978
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
2979
|
-
deletedEvent?: EntityDeletedEvent;
|
|
2980
|
-
actionEvent?: ActionEvent;
|
|
2981
|
-
}
|
|
2982
|
-
interface EntityCreatedEvent {
|
|
2983
|
-
entity?: string;
|
|
2984
|
-
}
|
|
2985
|
-
interface RestoreInfo {
|
|
2986
|
-
deletedDate?: Date | null;
|
|
2987
|
-
}
|
|
2988
|
-
interface EntityUpdatedEvent {
|
|
2989
|
-
/**
|
|
2990
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
2991
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
2992
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2993
|
-
*/
|
|
2994
|
-
currentEntity?: string;
|
|
2995
|
-
}
|
|
2996
|
-
interface EntityDeletedEvent {
|
|
2997
|
-
/** Entity that was deleted. */
|
|
2998
|
-
deletedEntity?: string | null;
|
|
2999
|
-
}
|
|
3000
|
-
interface ActionEvent {
|
|
3001
|
-
body?: string;
|
|
3002
|
-
}
|
|
3003
3201
|
interface Empty {
|
|
3004
3202
|
}
|
|
3005
|
-
interface MessageEnvelope {
|
|
3006
|
-
/**
|
|
3007
|
-
* App instance ID.
|
|
3008
|
-
* @format GUID
|
|
3009
|
-
*/
|
|
3010
|
-
instanceId?: string | null;
|
|
3011
|
-
/**
|
|
3012
|
-
* Event type.
|
|
3013
|
-
* @maxLength 150
|
|
3014
|
-
*/
|
|
3015
|
-
eventType?: string;
|
|
3016
|
-
/** The identification type and identity data. */
|
|
3017
|
-
identity?: IdentificationData;
|
|
3018
|
-
/** Stringify payload. */
|
|
3019
|
-
data?: string;
|
|
3020
|
-
}
|
|
3021
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
3022
|
-
/**
|
|
3023
|
-
* ID of a site visitor that has not logged in to the site.
|
|
3024
|
-
* @format GUID
|
|
3025
|
-
*/
|
|
3026
|
-
anonymousVisitorId?: string;
|
|
3027
|
-
/**
|
|
3028
|
-
* ID of a site visitor that has logged in to the site.
|
|
3029
|
-
* @format GUID
|
|
3030
|
-
*/
|
|
3031
|
-
memberId?: string;
|
|
3032
|
-
/**
|
|
3033
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
3034
|
-
* @format GUID
|
|
3035
|
-
*/
|
|
3036
|
-
wixUserId?: string;
|
|
3037
|
-
/**
|
|
3038
|
-
* ID of an app.
|
|
3039
|
-
* @format GUID
|
|
3040
|
-
*/
|
|
3041
|
-
appId?: string;
|
|
3042
|
-
/** @readonly */
|
|
3043
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
3044
|
-
}
|
|
3045
|
-
/** @oneof */
|
|
3046
|
-
interface IdentificationDataIdOneOf {
|
|
3047
|
-
/**
|
|
3048
|
-
* ID of a site visitor that has not logged in to the site.
|
|
3049
|
-
* @format GUID
|
|
3050
|
-
*/
|
|
3051
|
-
anonymousVisitorId?: string;
|
|
3052
|
-
/**
|
|
3053
|
-
* ID of a site visitor that has logged in to the site.
|
|
3054
|
-
* @format GUID
|
|
3055
|
-
*/
|
|
3056
|
-
memberId?: string;
|
|
3057
|
-
/**
|
|
3058
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
3059
|
-
* @format GUID
|
|
3060
|
-
*/
|
|
3061
|
-
wixUserId?: string;
|
|
3062
|
-
/**
|
|
3063
|
-
* ID of an app.
|
|
3064
|
-
* @format GUID
|
|
3065
|
-
*/
|
|
3066
|
-
appId?: string;
|
|
3067
|
-
}
|
|
3068
|
-
declare enum WebhookIdentityType {
|
|
3069
|
-
UNKNOWN = "UNKNOWN",
|
|
3070
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3071
|
-
MEMBER = "MEMBER",
|
|
3072
|
-
WIX_USER = "WIX_USER",
|
|
3073
|
-
APP = "APP"
|
|
3074
|
-
}
|
|
3075
|
-
/** @enumType */
|
|
3076
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3077
3203
|
interface PreparePaymentCollectionRequest {
|
|
3078
3204
|
/**
|
|
3079
3205
|
* Ecom order ID.
|
|
@@ -6603,6 +6729,20 @@ interface OrderPaymentStatusUpdatedEnvelope {
|
|
|
6603
6729
|
* @slug payment_status_updated
|
|
6604
6730
|
*/
|
|
6605
6731
|
declare function onOrderPaymentStatusUpdated(handler: (event: OrderPaymentStatusUpdatedEnvelope) => void | Promise<void>): void;
|
|
6732
|
+
interface SetOrderNumberCounterOptions {
|
|
6733
|
+
/** Whether to allow setting a lower counter than current value */
|
|
6734
|
+
allowLowerCounter?: boolean;
|
|
6735
|
+
}
|
|
6736
|
+
interface BulkDeleteImportedOrdersOptions {
|
|
6737
|
+
/**
|
|
6738
|
+
* List of order ids to be deleted.
|
|
6739
|
+
* Only orders imported via ImportOrders API can be deleted.
|
|
6740
|
+
* @format GUID
|
|
6741
|
+
* @minSize 1
|
|
6742
|
+
* @maxSize 1000
|
|
6743
|
+
*/
|
|
6744
|
+
orderIds?: string[];
|
|
6745
|
+
}
|
|
6606
6746
|
/**
|
|
6607
6747
|
* Prepares payment collection for given ecom order. This is the first of 2-step process of payment collection.
|
|
6608
6748
|
* Here we ensure that payment collection is possible for given order and store and prepare payment gateway order for future charge.
|
|
@@ -7382,4 +7522,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
7382
7522
|
unassignTags?: Tags;
|
|
7383
7523
|
}
|
|
7384
7524
|
|
|
7385
|
-
export { DurationUnit as $, AdjustmentType as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PickupMethod as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, OrderStatus as H, ItemTypeItemType as I, JurisdictionType as J, DiscountType as K, DiscountReason as L, type MaskedOrder as M, LineItemQuantityChangeType as N, type Order as O, type Price as P, ActivityType as Q, AttributionSource as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ChannelType as X, PreviewEmailType as Y, WebhookIdentityType as Z, ScheduledAction as _, type PreparePaymentCollectionOptions as a, type StreetAddress as a$, PaymentCollectabilityStatus as a0, RefundableStatus as a1, NonRefundableReason as a2, ManuallyRefundableReason as a3, RestockType as a4, TransactionStatus as a5, AuthorizationCaptureStatus as a6, AuthorizationVoidStatus as a7, Reason as a8, ActionType as a9, type ItemType as aA, type ItemTypeItemTypeDataOneOf as aB, type ItemTaxFullDetails as aC, type LineItemTaxInfo as aD, type LineItemTaxBreakdown as aE, type DigitalFile as aF, type SubscriptionInfo as aG, type SubscriptionTitle as aH, type SubscriptionDescription as aI, type SubscriptionSettings as aJ, type FreeTrialPeriod as aK, type BillingAdjustment as aL, type BillingAdjustmentPriceSummary as aM, type PriceDescription as aN, type LocationAndQuantity as aO, type TaxableAddress as aP, type TaxableAddressTaxableAddressDataOneOf as aQ, type ExtendedFields as aR, type ModifierGroup as aS, type TranslatableString as aT, type ItemModifier as aU, type BuyerInfo as aV, type BuyerInfoIdOneOf as aW, type CurrencyConversionDetails as aX, type PriceSummary as aY, type AddressWithContact as aZ, type Address as a_, ChargebackStatus as aa, MembershipPaymentStatus as ab, RefundStatus as ac, VersioningMode as ad, SortOrder as ae, OrderApprovalStrategy as af, DeltaPaymentOptionType as ag, InventoryAction as ah, Placement as ai, SubdivisionType as aj, SourceType as ak, CustomFieldGroup as al, ValueType as am, DepositType as an, InvoiceStatus as ao, type OrderLineItem as ap, type ProductName as aq, type CatalogReference as ar, type DescriptionLine as as, type DescriptionLineValueOneOf as at, type DescriptionLineDescriptionLineValueOneOf as au, type DescriptionLineName as av, type PlainTextValue as aw, type Color as ax, type FocalPoint as ay, type PhysicalProperties as az, type PreparePaymentCollectionResponse as b, type RegularPaymentPaymentMethodDetailsOneOf as b$, type AddressLocation as b0, type FullAddressContactDetails as b1, type VatId as b2, type V1ShippingInformation as b3, type DeliveryLogistics as b4, type DeliveryLogisticsAddressOneOf as b5, type PickupDetails as b6, type PickupAddress as b7, type DeliveryTimeSlot as b8, type ShippingPrice as b9, type LineItemProductNameChange as bA, type LineItemDescriptionLineChange as bB, type LineItemModifiersChange as bC, type ManagedLineItem as bD, type ManagedDiscount as bE, type TranslatedValue as bF, type LineItemAmount as bG, type ManagedAdditionalFee as bH, type TotalPriceChange as bI, type ShippingInformationChange as bJ, type ShippingInformation as bK, type SavedPaymentMethod as bL, type AuthorizedPaymentCreated as bM, type AuthorizedPaymentCaptured as bN, type AuthorizedPaymentVoided as bO, type RefundInitiated as bP, type RefundedPayment as bQ, type RefundedPaymentKindOneOf as bR, type RegularPaymentRefund as bS, type GiftCardPaymentRefund as bT, type MembershipPaymentRefund as bU, type PaymentRefunded as bV, type PaymentRefundFailed as bW, type RefundedAsStoreCredit as bX, type PaymentPending as bY, type PaymentPendingPaymentDetailsOneOf as bZ, type RegularPayment as b_, type ShippingRegion as ba, type TaxSummary as bb, type OrderTaxInfo as bc, type OrderTaxBreakdown as bd, type AppliedDiscount as be, type AppliedDiscountDiscountSourceOneOf as bf, type Coupon as bg, type MerchantDiscount as bh, type MerchantDiscountMerchantDiscountReasonOneOf as bi, type DiscountRule as bj, type DiscountRuleName as bk, type LineItemDiscount as bl, type Activity as bm, type ActivityContentOneOf as bn, type CustomActivity as bo, type MerchantComment as bp, type OrderRefunded as bq, type OrderCreatedFromExchange as br, type NewExchangeOrderCreated as bs, type LineItemExchangeData as bt, type DraftOrderChangesApplied as bu, type OrderChange as bv, type OrderChangeValueOneOf as bw, type LineItemChanges as bx, type LineItemQuantityChange as by, type LineItemPriceChange as bz, type PreparePaymentCollectionApplicationErrors as c, type PreviewBuyerPaymentsReceivedEmailResponse as c$, type CreditCardDetails as c0, type PaymentCanceled as c1, type PaymentCanceledPaymentDetailsOneOf as c2, type PaymentDeclined as c3, type PaymentDeclinedPaymentDetailsOneOf as c4, type ReceiptCreated as c5, type ReceiptCreatedReceiptInfoOneOf as c6, type WixReceipt as c7, type ExternalReceipt as c8, type ReceiptSent as c9, type BulkSendBuyerPickupConfirmationEmailsResponse as cA, type SendBuyerShippingConfirmationEmailRequest as cB, type SendBuyerShippingConfirmationEmailResponse as cC, type BulkSendBuyerShippingConfirmationEmailsRequest as cD, type BulkSendBuyerShippingConfirmationEmailsResponse as cE, type SendMerchantOrderReceivedNotificationRequest as cF, type SendMerchantOrderReceivedNotificationResponse as cG, type SendCancelRefundEmailRequest as cH, type SendCancelRefundEmailResponse as cI, type SendRefundEmailRequest as cJ, type SendRefundEmailResponse as cK, type SendMerchantOrderReceivedPushRequest as cL, type SendMerchantOrderReceivedPushResponse as cM, type PreviewEmailByTypeRequest as cN, type PreviewEmailByTypeResponse as cO, type PreviewRefundEmailRequest as cP, type RefundDetails as cQ, type RefundItem as cR, type LineItemRefund as cS, type AdditionalFeeRefund as cT, type ShippingRefund as cU, type PreviewRefundEmailResponse as cV, type PreviewCancelEmailRequest as cW, type PreviewCancelEmailResponse as cX, type PreviewCancelRefundEmailRequest as cY, type PreviewCancelRefundEmailResponse as cZ, type PreviewBuyerPaymentsReceivedEmailRequest as c_, type ReceiptSentReceiptInfoOneOf as ca, type ChargebackCreated as cb, type ChargebackReversed as cc, type CreatedBy as cd, type CreatedByStringOneOf as ce, type ChannelInfo as cf, type CustomField as cg, type BalanceSummary as ch, type Balance as ci, type AdditionalFee as cj, type FulfillmentStatusesAggregate as ck, type Tags as cl, type TagList as cm, type Location as cn, type OrderApproved as co, type OrdersExperiments as cp, type OrderRejectedEventOrderRejected as cq, type OrderItemsRestocked as cr, type V1RestockItem as cs, type SendBuyerConfirmationEmailRequest as ct, type SendBuyerConfirmationEmailResponse as cu, type SendBuyerPaymentsReceivedEmailRequest as cv, type SendBuyerPaymentsReceivedEmailResponse as cw, type SendBuyerPickupConfirmationEmailRequest as cx, type SendBuyerPickupConfirmationEmailResponse as cy, type BulkSendBuyerPickupConfirmationEmailsRequest as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type AuthorizationVoid as d$, type PreviewBuyerConfirmationEmailRequest as d0, type PreviewBuyerConfirmationEmailResponse as d1, type PreviewBuyerPickupConfirmationEmailRequest as d2, type PreviewBuyerPickupConfirmationEmailResponse as d3, type PreviewShippingConfirmationEmailRequest as d4, type PreviewShippingConfirmationEmailResponse as d5, type PreviewResendDownloadLinksEmailRequest as d6, type PreviewResendDownloadLinksEmailResponse as d7, type DomainEvent as d8, type DomainEventBodyOneOf as d9, type GetRefundabilityStatusResponse as dA, type Refundability as dB, type RefundabilityAdditionalRefundabilityInfoOneOf as dC, type CreatePaymentGatewayOrderRequest as dD, type ChargedBy as dE, type CreatePaymentGatewayOrderResponse as dF, type ChargeMembershipsRequest as dG, type MembershipChargeItem as dH, type MembershipName as dI, type ServiceProperties as dJ, type ChargeMembershipsResponse as dK, type TriggerRefundRequest as dL, type PaymentRefund as dM, type RefundSideEffects as dN, type RestockInfo as dO, type RestockItem as dP, type TriggerRefundResponse as dQ, type OrderTransactions as dR, type Payment as dS, type PaymentPaymentDetailsOneOf as dT, type PaymentReceiptInfoOneOf as dU, type RegularPaymentDetails as dV, type RegularPaymentDetailsPaymentMethodDetailsOneOf as dW, type CreditCardPaymentMethodDetails as dX, type AuthorizationDetails as dY, type AuthorizationCapture as dZ, type AuthorizationActionFailureDetails as d_, type EntityCreatedEvent as da, type RestoreInfo as db, type EntityUpdatedEvent as dc, type EntityDeletedEvent as dd, type ActionEvent as de, type Empty as df, type MessageEnvelope as dg, type IdentificationData as dh, type IdentificationDataIdOneOf as di, type PreparePaymentCollectionRequest as dj, type RedirectUrls as dk, type DelayedCaptureSettings as dl, type Duration as dm, type GetPaymentCollectabilityStatusRequest as dn, type RecordManuallyCollectedPaymentRequest as dp, type RecordManuallyCollectedPaymentResponse as dq, type MarkOrderAsPaidRequest as dr, type MarkOrderAsPaidResponse as ds, type BulkMarkOrdersAsPaidRequest as dt, type BulkMarkOrdersAsPaidResponse as du, type BulkOrderResult as dv, type ItemMetadata as dw, type ApplicationError as dx, type BulkActionMetadata as dy, type GetRefundabilityStatusRequest as dz, type PaymentCapture as e, type DraftOrderDiffsShippingUpdateInfoOneOf as e$, type V1ScheduledAction as e0, type Chargeback as e1, type GiftCardPaymentDetails as e2, type MembershipPaymentDetails as e3, type WixReceiptInfo as e4, type ExternalReceiptInfo as e5, type Refund as e6, type RefundTransaction as e7, type RefundStatusInfo as e8, type AggregatedRefundSummary as e9, type ErrorInformation as eA, type GetOrderRequest as eB, type GetOrderResponse as eC, type InternalQueryOrdersRequest as eD, type PlatformQuery as eE, type PlatformQueryPagingMethodOneOf as eF, type Sorting as eG, type PlatformPaging as eH, type CursorPaging as eI, type InternalQueryOrdersResponse as eJ, type PlatformPagingMetadata as eK, type Cursors as eL, type QueryOrderRequest as eM, type QueryOrderResponse as eN, type SearchOrdersRequest as eO, type CursorSearch as eP, type CursorSearchPagingMethodOneOf as eQ, type CursorPagingMetadata as eR, type CreateOrderRequest as eS, type OrderCreationSettings as eT, type OrderCreateNotifications as eU, type CreateOrderResponse as eV, type UpdateOrderRequest as eW, type UpdateOrderResponse as eX, type BulkUpdateOrdersRequest as eY, type CommitDeltasRequest as eZ, type DraftOrderDiffs as e_, type RefundItemsBreakdown as ea, type LineItemRefundSummary as eb, type CalculateRefundRequest as ec, type CalculateRefundItemRequest as ed, type CalculateRefundResponse as ee, type CalculateRefundItemResponse as ef, type VoidAuthorizedPaymentsRequest as eg, type CaptureAuthorizedPaymentsRequest as eh, type ChargeSavedPaymentMethodRequest as ei, type ChargeSavedPaymentMethodResponse as ej, type UpdateInternalDocumentsEvent as ek, type UpdateInternalDocumentsEventOperationOneOf as el, type InternalDocument as em, type InternalDocumentUpdateOperation as en, type DeleteByIdsOperation as eo, type DeleteByFilterOperation as ep, type InternalDocumentUpdateByFilterOperation as eq, type InternalUpdateExistingOperation as er, type VersionedDocumentUpdateOperation as es, type VersionedDeleteByIdsOperation as et, type VersionedDocumentId as eu, type TriggerReindexRequest as ev, type TriggerReindexResponse as ew, type BatchOfTriggerReindexOrderRequest as ex, type TriggerReindexOrderRequest as ey, type DiffmatokyPayload as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type PickupReadyEmailSent as f$, type DraftOrderDiffsBuyerUpdateInfoOneOf as f0, type DraftOrderDiffsBillingUpdateInfoOneOf as f1, type DraftOrderDiffsRecipientUpdateInfoOneOf as f2, type V1LineItemDelta as f3, type V1LineItemDeltaDeltaOneOf as f4, type OrderLineItemChangedDetails as f5, type ItemChangedDetails as f6, type AppliedDiscountDelta as f7, type AppliedDiscountDeltaDeltaOneOf as f8, type AdditionalFeeDelta as f9, type UpdateOrderShippingAddressRequest as fA, type UpdateOrderShippingAddressResponse as fB, type UpdateBillingContactDetailsRequest as fC, type UpdateBillingContactDetailsResponse as fD, type UpdateOrderLineItemRequest as fE, type UpdateOrderLineItemResponse as fF, type UpdateOrderLineItemsRequest as fG, type MaskedOrderLineItem as fH, type UpdateOrderLineItemsResponse as fI, type AddInternalActivityRequest as fJ, type InternalActivity as fK, type InternalActivityContentOneOf as fL, type OrderPlaced as fM, type OrderPaid as fN, type OrderFulfilled as fO, type OrderNotFulfilled as fP, type OrderCanceled as fQ, type DownloadLinkSent as fR, type TrackingNumberAdded as fS, type TrackingNumberEdited as fT, type TrackingLinkAdded as fU, type ShippingConfirmationEmailSent as fV, type InvoiceAdded as fW, type InvoiceSent as fX, type FulfillerEmailSent as fY, type ShippingAddressEdited as fZ, type EmailEdited as f_, type AdditionalFeeDeltaDeltaOneOf as fa, type DraftOrderCommitSettings as fb, type InventoryUpdateDetails as fc, type CommitDeltasResponse as fd, type OrderDeltasCommitted as fe, type CommittedDiffs as ff, type CommittedDiffsShippingUpdateInfoOneOf as fg, type LineItemDelta as fh, type LineItemDeltaDeltaOneOf as fi, type ArchiveOrderRequest as fj, type ArchiveOrderResponse as fk, type BulkArchiveOrdersRequest as fl, type BulkArchiveOrdersResponse as fm, type BulkArchiveOrdersByFilterRequest as fn, type BulkArchiveOrdersByFilterResponse as fo, type UnArchiveOrderRequest as fp, type UnArchiveOrderResponse as fq, type BulkUnArchiveOrdersRequest as fr, type BulkUnArchiveOrdersResponse as fs, type BulkUnArchiveOrdersByFilterRequest as ft, type BulkUnArchiveOrdersByFilterResponse as fu, type UpdateBuyerInfoRequest as fv, type BuyerInfoUpdate as fw, type UpdateBuyerInfoResponse as fx, type UpdateBuyerEmailRequest as fy, type UpdateBuyerEmailResponse as fz, type GetOrderApplicationErrors as g, type IdAndVersion as g$, type OrderPartiallyPaid as g0, type OrderPending as g1, type OrderRejected as g2, type AddInternalActivityResponse as g3, type AddActivityRequest as g4, type PublicActivity as g5, type PublicActivityContentOneOf as g6, type AddActivityResponse as g7, type AddActivitiesRequest as g8, type AddActivitiesResponse as g9, type BulkSetBusinessLocationRequest as gA, type BulkSetBusinessLocationResponse as gB, type BulkSetBusinessLocationResult as gC, type V1MarkOrderAsPaidRequest as gD, type V1MarkOrderAsPaidResponse as gE, type PaymentStatusUpdated as gF, type V1BulkMarkOrdersAsPaidRequest as gG, type V1BulkMarkOrdersAsPaidResponse as gH, type V1CreatePaymentGatewayOrderRequest as gI, type V1CreatePaymentGatewayOrderResponse as gJ, type GetShipmentsRequest as gK, type GetShipmentsResponse as gL, type AggregateOrdersRequest as gM, type AggregateOrdersResponse as gN, type DecrementItemsQuantityRequest as gO, type DecrementData as gP, type DecrementItemsQuantityResponse as gQ, type BulkUpdateOrderTagsRequest as gR, type BulkUpdateOrderTagsResult as gS, type Task as gT, type TaskKey as gU, type TaskAction as gV, type TaskActionActionOneOf as gW, type Complete as gX, type Cancel as gY, type Reschedule as gZ, type InvoiceSentEvent as g_, type UpdateActivityRequest as ga, type UpdateActivityResponse as gb, type DeleteActivityRequest as gc, type DeleteActivityResponse as gd, type UpdateLineItemsDescriptionLinesRequest as ge, type LineItemUpdate as gf, type UpdateLineItemsDescriptionLinesResponse as gg, type MarkOrderAsSeenByHumanRequest as gh, type MarkOrderAsSeenByHumanResponse as gi, type CancelOrderRequest as gj, type OrderCanceledEventOrderCanceled as gk, type UpdateOrderStatusRequest as gl, type UpdateOrderStatusResponse as gm, type MarkAsFulfilledRequest as gn, type MarkAsFulfilledResponse as go, type FulfillmentStatusUpdated as gp, type BulkMarkAsFulfilledRequest as gq, type BulkMarkAsFulfilledResponse as gr, type BulkMarkAsFulfilledByFilterRequest as gs, type BulkMarkAsFulfilledByFilterResponse as gt, type MarkAsUnfulfilledRequest as gu, type MarkAsUnfulfilledResponse as gv, type BulkMarkAsUnfulfilledRequest as gw, type BulkMarkAsUnfulfilledResponse as gx, type BulkMarkAsUnfulfilledByFilterRequest as gy, type BulkMarkAsUnfulfilledByFilterResponse as gz, type OrderSearch as h, type PreviewEmailTypeWithLiterals as h$, type InvoiceFields as h0, type Customer as h1, type Email as h2, type QuotesAddress as h3, type AddressDescription as h4, type Phone as h5, type Company as h6, type CommonAddress as h7, type CommonAddressStreetOneOf as h8, type Subdivision as h9, type TriggerRefundOptions as hA, type OrderSearchSpec as hB, type CommitDeltasOptions as hC, type UpdateOrderLineItemIdentifiers as hD, type UpdateOrderLineItem as hE, type UpdateActivityIdentifiers as hF, type DeleteActivityIdentifiers as hG, type AggregateOrdersOptions as hH, type DescriptionLineTypeWithLiterals as hI, type ItemTypeItemTypeWithLiterals as hJ, type PaymentOptionTypeWithLiterals as hK, type JurisdictionTypeWithLiterals as hL, type SubscriptionFrequencyWithLiterals as hM, type AdjustmentTypeWithLiterals as hN, type TaxableAddressTypeWithLiterals as hO, type PaymentStatusWithLiterals as hP, type FulfillmentStatusWithLiterals as hQ, type WeightUnitWithLiterals as hR, type VatTypeWithLiterals as hS, type PickupMethodWithLiterals as hT, type OrderStatusWithLiterals as hU, type DiscountTypeWithLiterals as hV, type DiscountReasonWithLiterals as hW, type LineItemQuantityChangeTypeWithLiterals as hX, type ActivityTypeWithLiterals as hY, type AttributionSourceWithLiterals as hZ, type ChannelTypeWithLiterals as h_, type StandardDetails as ha, type InvoiceDates as hb, type LineItems as hc, type LineItem as hd, type BigDecimalWrapper as he, type LineItemTax as hf, type Source as hg, type LineItemMetaData as hh, type Locale as hi, type TotalPrice as hj, type ItemizedFee as hk, type Discount as hl, type DiscountOneDiscountTypeOneOf as hm, type CalculatedTaxes as hn, type CalculatedTax as ho, type Payments as hp, type InvoicesPayment as hq, type MetaData as hr, type InvoiceDynamicPriceTotals as hs, type CustomFieldValue as ht, type Value as hu, type Deposit as hv, type BaseEventMetadata as hw, type EventMetadata as hx, type PaymentCollectionCreatePaymentGatewayOrderOptions as hy, type ChargeMembershipsOptions as hz, type CreateOrderOptions as i, type WebhookIdentityTypeWithLiterals as i0, type ScheduledActionWithLiterals as i1, type DurationUnitWithLiterals as i2, type PaymentCollectabilityStatusWithLiterals as i3, type RefundableStatusWithLiterals as i4, type NonRefundableReasonWithLiterals as i5, type ManuallyRefundableReasonWithLiterals as i6, type RestockTypeWithLiterals as i7, type TransactionStatusWithLiterals as i8, type AuthorizationCaptureStatusWithLiterals 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, voidAuthorizedPayments as iI, captureAuthorizedPayments as iJ, getOrder as iK, createOrder as iL, updateOrder as iM, bulkUpdateOrders as iN, cancelOrder as iO, bulkUpdateOrderTags as iP, type AuthorizationVoidStatusWithLiterals as ia, type ReasonWithLiterals as ib, type ActionTypeWithLiterals as ic, type ChargebackStatusWithLiterals as id, type MembershipPaymentStatusWithLiterals as ie, type RefundStatusWithLiterals as ig, type VersioningModeWithLiterals as ih, type SortOrderWithLiterals as ii, type OrderApprovalStrategyWithLiterals as ij, type DeltaPaymentOptionTypeWithLiterals as ik, type InventoryActionWithLiterals as il, type PlacementWithLiterals as im, type SubdivisionTypeWithLiterals as io, type SourceTypeWithLiterals as ip, type CustomFieldGroupWithLiterals as iq, type ValueTypeWithLiterals as ir, type DepositTypeWithLiterals as is, type InvoiceStatusWithLiterals as it, type RecordManuallyCollectedPaymentApplicationErrors as iu, type PaymentCollectionMarkOrderAsPaidApplicationErrors as iv, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as iw, type TriggerRefundApplicationErrors as ix, type CommitDeltasApplicationErrors as iy, type UpdateOrderStatusApplicationErrors as iz, type CreateOrderApplicationErrors as j, type UpdateOrderApplicationErrors as k, type BulkUpdateOrdersResponse as l, type CancelOrderOptions as m, type CancelOrderResponse as n, type CancelOrderApplicationErrors as o, type BulkUpdateOrderTagsOptions as p, type BulkUpdateOrderTagsResponse as q, type OrderApprovedEnvelope as r, type OrderUpdatedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCreatedEnvelope as u, type OrderPaymentStatusUpdatedEnvelope as v, PaymentOptionType as w, SubscriptionFrequency as x, PaymentStatus as y, VatType as z };
|
|
7525
|
+
export { ScheduledAction as $, AdjustmentType as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PickupMethod as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, OrderStatus as H, ItemTypeItemType as I, JurisdictionType as J, DiscountType as K, DiscountReason as L, type MaskedOrder as M, LineItemQuantityChangeType as N, type Order as O, type Price as P, ActivityType as Q, AttributionSource as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ChannelType as X, OrderActionType as Y, WebhookIdentityType as Z, PreviewEmailType as _, type PreparePaymentCollectionOptions as a, type Address as a$, DurationUnit as a0, PaymentCollectabilityStatus as a1, RefundableStatus as a2, NonRefundableReason as a3, ManuallyRefundableReason as a4, RestockType as a5, TransactionStatus as a6, AuthorizationCaptureStatus as a7, AuthorizationVoidStatus as a8, Reason as a9, type PhysicalProperties as aA, type ItemType as aB, type ItemTypeItemTypeDataOneOf as aC, type ItemTaxFullDetails as aD, type LineItemTaxInfo as aE, type LineItemTaxBreakdown as aF, type DigitalFile as aG, type SubscriptionInfo as aH, type SubscriptionTitle as aI, type SubscriptionDescription as aJ, type SubscriptionSettings as aK, type FreeTrialPeriod as aL, type BillingAdjustment as aM, type BillingAdjustmentPriceSummary as aN, type PriceDescription as aO, type LocationAndQuantity as aP, type TaxableAddress as aQ, type TaxableAddressTaxableAddressDataOneOf as aR, type ExtendedFields as aS, type ModifierGroup as aT, type TranslatableString as aU, type ItemModifier as aV, type BuyerInfo as aW, type BuyerInfoIdOneOf as aX, type CurrencyConversionDetails as aY, type PriceSummary as aZ, type AddressWithContact as a_, ActionType as aa, ChargebackStatus as ab, MembershipPaymentStatus as ac, RefundStatus as ad, VersioningMode as ae, SortOrder as af, OrderApprovalStrategy as ag, DeltaPaymentOptionType as ah, InventoryAction as ai, Placement as aj, SubdivisionType as ak, SourceType as al, CustomFieldGroup as am, ValueType as an, DepositType as ao, InvoiceStatus as ap, type OrderLineItem as aq, type ProductName as ar, type CatalogReference as as, type DescriptionLine as at, type DescriptionLineValueOneOf as au, type DescriptionLineDescriptionLineValueOneOf as av, type DescriptionLineName as aw, type PlainTextValue as ax, type Color as ay, type FocalPoint as az, type PreparePaymentCollectionResponse as b, type RegularPayment as b$, type StreetAddress as b0, type AddressLocation as b1, type FullAddressContactDetails as b2, type VatId as b3, type V1ShippingInformation as b4, type DeliveryLogistics as b5, type DeliveryLogisticsAddressOneOf as b6, type PickupDetails as b7, type PickupAddress as b8, type DeliveryTimeSlot as b9, type LineItemPriceChange as bA, type LineItemProductNameChange as bB, type LineItemDescriptionLineChange as bC, type LineItemModifiersChange as bD, type ManagedLineItem as bE, type ManagedDiscount as bF, type TranslatedValue as bG, type LineItemAmount as bH, type ManagedAdditionalFee as bI, type TotalPriceChange as bJ, type ShippingInformationChange as bK, type ShippingInformation as bL, type SavedPaymentMethod as bM, type AuthorizedPaymentCreated as bN, type AuthorizedPaymentCaptured as bO, type AuthorizedPaymentVoided as bP, type RefundInitiated as bQ, type RefundedPayment as bR, type RefundedPaymentKindOneOf as bS, type RegularPaymentRefund as bT, type GiftCardPaymentRefund as bU, type MembershipPaymentRefund as bV, type PaymentRefunded as bW, type PaymentRefundFailed as bX, type RefundedAsStoreCredit as bY, type PaymentPending as bZ, type PaymentPendingPaymentDetailsOneOf as b_, type ShippingPrice as ba, type ShippingRegion as bb, type TaxSummary as bc, type OrderTaxInfo as bd, type OrderTaxBreakdown as be, type AppliedDiscount as bf, type AppliedDiscountDiscountSourceOneOf as bg, type Coupon as bh, type MerchantDiscount as bi, type MerchantDiscountMerchantDiscountReasonOneOf as bj, type DiscountRule as bk, type DiscountRuleName as bl, type LineItemDiscount as bm, type Activity as bn, type ActivityContentOneOf as bo, type CustomActivity as bp, type MerchantComment as bq, type OrderRefunded as br, type OrderCreatedFromExchange as bs, type NewExchangeOrderCreated as bt, type LineItemExchangeData as bu, type DraftOrderChangesApplied as bv, type OrderChange as bw, type OrderChangeValueOneOf as bx, type LineItemChanges as by, type LineItemQuantityChange as bz, type PreparePaymentCollectionApplicationErrors as c, type SendMerchantOrderReceivedNotificationRequest as c$, type RegularPaymentPaymentMethodDetailsOneOf as c0, type CreditCardDetails as c1, type PaymentCanceled as c2, type PaymentCanceledPaymentDetailsOneOf as c3, type PaymentDeclined as c4, type PaymentDeclinedPaymentDetailsOneOf as c5, type ReceiptCreated as c6, type ReceiptCreatedReceiptInfoOneOf as c7, type WixReceipt as c8, type ExternalReceipt as c9, type ImportOrderResponse as cA, type SetOrderNumberCounterRequest as cB, type SetOrderNumberCounterResponse as cC, type BulkDeleteImportedOrdersRequest as cD, type BulkDeleteImportedOrdersResponse as cE, type DomainEvent as cF, type DomainEventBodyOneOf as cG, type EntityCreatedEvent as cH, type RestoreInfo as cI, type EntityUpdatedEvent as cJ, type EntityDeletedEvent as cK, type ActionEvent as cL, type MessageEnvelope as cM, type IdentificationData as cN, type IdentificationDataIdOneOf as cO, type SendBuyerConfirmationEmailRequest as cP, type SendBuyerConfirmationEmailResponse as cQ, type SendBuyerPaymentsReceivedEmailRequest as cR, type SendBuyerPaymentsReceivedEmailResponse as cS, type SendBuyerPickupConfirmationEmailRequest as cT, type SendBuyerPickupConfirmationEmailResponse as cU, type BulkSendBuyerPickupConfirmationEmailsRequest as cV, type BulkSendBuyerPickupConfirmationEmailsResponse as cW, type SendBuyerShippingConfirmationEmailRequest as cX, type SendBuyerShippingConfirmationEmailResponse as cY, type BulkSendBuyerShippingConfirmationEmailsRequest as cZ, type BulkSendBuyerShippingConfirmationEmailsResponse as c_, type ReceiptSent as ca, type ReceiptSentReceiptInfoOneOf as cb, type ChargebackCreated as cc, type ChargebackReversed as cd, type CreatedBy as ce, type CreatedByStringOneOf as cf, type ChannelInfo as cg, type CustomField as ch, type BalanceSummary as ci, type Balance as cj, type AdditionalFee as ck, type FulfillmentStatusesAggregate as cl, type Tags as cm, type TagList as cn, type Location as co, type OrderSettings as cp, type OrderSettingsAllowedActionsOneOf as cq, type CustomAllowedActions as cr, type OrderApproved as cs, type OrdersExperiments as ct, type OrderRejectedEventOrderRejected as cu, type OrderItemsRestocked as cv, type V1RestockItem as cw, type OrderImported as cx, type ImportedOrderDeleted as cy, type ImportOrderRequest as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type RestockItem as d$, type SendMerchantOrderReceivedNotificationResponse as d0, type SendCancelRefundEmailRequest as d1, type SendCancelRefundEmailResponse as d2, type SendRefundEmailRequest as d3, type SendRefundEmailResponse as d4, type SendMerchantOrderReceivedPushRequest as d5, type SendMerchantOrderReceivedPushResponse as d6, type PreviewEmailByTypeRequest as d7, type PreviewEmailByTypeResponse as d8, type PreviewRefundEmailRequest as d9, type GetPaymentCollectabilityStatusRequest as dA, type RecordManuallyCollectedPaymentRequest as dB, type RecordManuallyCollectedPaymentResponse as dC, type MarkOrderAsPaidRequest as dD, type MarkOrderAsPaidResponse as dE, type BulkMarkOrdersAsPaidRequest as dF, type BulkMarkOrdersAsPaidResponse as dG, type BulkOrderResult as dH, type ItemMetadata as dI, type ApplicationError as dJ, type BulkActionMetadata as dK, type GetRefundabilityStatusRequest as dL, type GetRefundabilityStatusResponse as dM, type Refundability as dN, type RefundabilityAdditionalRefundabilityInfoOneOf as dO, type CreatePaymentGatewayOrderRequest as dP, type ChargedBy as dQ, type CreatePaymentGatewayOrderResponse as dR, type ChargeMembershipsRequest as dS, type MembershipChargeItem as dT, type MembershipName as dU, type ServiceProperties as dV, type ChargeMembershipsResponse as dW, type TriggerRefundRequest as dX, type PaymentRefund as dY, type RefundSideEffects as dZ, type RestockInfo as d_, type RefundDetails as da, type RefundItem as db, type LineItemRefund as dc, type AdditionalFeeRefund as dd, type ShippingRefund as de, type PreviewRefundEmailResponse as df, type PreviewCancelEmailRequest as dg, type PreviewCancelEmailResponse as dh, type PreviewCancelRefundEmailRequest as di, type PreviewCancelRefundEmailResponse as dj, type PreviewBuyerPaymentsReceivedEmailRequest as dk, type PreviewBuyerPaymentsReceivedEmailResponse as dl, type PreviewBuyerConfirmationEmailRequest as dm, type PreviewBuyerConfirmationEmailResponse as dn, type PreviewBuyerPickupConfirmationEmailRequest as dp, type PreviewBuyerPickupConfirmationEmailResponse as dq, type PreviewShippingConfirmationEmailRequest as dr, type PreviewShippingConfirmationEmailResponse as ds, type PreviewResendDownloadLinksEmailRequest as dt, type PreviewResendDownloadLinksEmailResponse as du, type Empty as dv, type PreparePaymentCollectionRequest as dw, type RedirectUrls as dx, type DelayedCaptureSettings as dy, type Duration as dz, type PaymentCapture as e, type CursorSearch as e$, type TriggerRefundResponse as e0, type OrderTransactions as e1, type Payment as e2, type PaymentPaymentDetailsOneOf as e3, type PaymentReceiptInfoOneOf as e4, type RegularPaymentDetails as e5, type RegularPaymentDetailsPaymentMethodDetailsOneOf as e6, type CreditCardPaymentMethodDetails as e7, type AuthorizationDetails as e8, type AuthorizationCapture as e9, type DeleteByIdsOperation as eA, type DeleteByFilterOperation as eB, type InternalDocumentUpdateByFilterOperation as eC, type InternalUpdateExistingOperation as eD, type VersionedDocumentUpdateOperation as eE, type VersionedDeleteByIdsOperation as eF, type VersionedDocumentId as eG, type TriggerReindexRequest as eH, type TriggerReindexResponse as eI, type BatchOfTriggerReindexOrderRequest as eJ, type TriggerReindexOrderRequest as eK, type DiffmatokyPayload as eL, type ErrorInformation as eM, type GetOrderRequest as eN, type GetOrderResponse as eO, type InternalQueryOrdersRequest as eP, type PlatformQuery as eQ, type PlatformQueryPagingMethodOneOf as eR, type Sorting as eS, type PlatformPaging as eT, type CursorPaging as eU, type InternalQueryOrdersResponse as eV, type PlatformPagingMetadata as eW, type Cursors as eX, type QueryOrderRequest as eY, type QueryOrderResponse as eZ, type SearchOrdersRequest as e_, 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 CaptureAuthorizedPaymentsApplicationErrors as f, type OrderNotFulfilled as f$, type CursorSearchPagingMethodOneOf as f0, type CursorPagingMetadata as f1, type CreateOrderRequest as f2, type OrderCreationSettings as f3, type OrderCreateNotifications as f4, type CreateOrderResponse as f5, type UpdateOrderRequest as f6, type UpdateOrderResponse as f7, type BulkUpdateOrdersRequest as f8, type CommitDeltasRequest as f9, type BulkArchiveOrdersByFilterResponse as fA, type UnArchiveOrderRequest as fB, type UnArchiveOrderResponse as fC, type BulkUnArchiveOrdersRequest as fD, type BulkUnArchiveOrdersResponse as fE, type BulkUnArchiveOrdersByFilterRequest as fF, type BulkUnArchiveOrdersByFilterResponse as fG, type UpdateBuyerInfoRequest as fH, type BuyerInfoUpdate as fI, type UpdateBuyerInfoResponse as fJ, type UpdateBuyerEmailRequest as fK, type UpdateBuyerEmailResponse as fL, type UpdateOrderShippingAddressRequest as fM, type UpdateOrderShippingAddressResponse as fN, type UpdateBillingContactDetailsRequest as fO, type UpdateBillingContactDetailsResponse as fP, type UpdateOrderLineItemRequest as fQ, type UpdateOrderLineItemResponse as fR, type UpdateOrderLineItemsRequest as fS, type MaskedOrderLineItem as fT, type UpdateOrderLineItemsResponse as fU, type AddInternalActivityRequest as fV, type InternalActivity as fW, type InternalActivityContentOneOf as fX, type OrderPlaced as fY, type OrderPaid as fZ, type OrderFulfilled as f_, 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 CommitDeltasResponse as fp, type OrderDeltasCommitted as fq, type CommittedDiffs as fr, type CommittedDiffsShippingUpdateInfoOneOf as fs, type LineItemDelta as ft, type LineItemDeltaDeltaOneOf as fu, type ArchiveOrderRequest as fv, type ArchiveOrderResponse as fw, type BulkArchiveOrdersRequest as fx, type BulkArchiveOrdersResponse as fy, type BulkArchiveOrdersByFilterRequest as fz, type GetOrderApplicationErrors as g, type DecrementData as g$, type OrderCanceled as g0, type DownloadLinkSent as g1, type TrackingNumberAdded as g2, type TrackingNumberEdited as g3, type TrackingLinkAdded as g4, type ShippingConfirmationEmailSent as g5, type InvoiceAdded as g6, type InvoiceSent as g7, type FulfillerEmailSent as g8, type ShippingAddressEdited as g9, type MarkAsFulfilledResponse as gA, type FulfillmentStatusUpdated as gB, type BulkMarkAsFulfilledRequest as gC, type BulkMarkAsFulfilledResponse as gD, type BulkMarkAsFulfilledByFilterRequest as gE, type BulkMarkAsFulfilledByFilterResponse as gF, type MarkAsUnfulfilledRequest as gG, type MarkAsUnfulfilledResponse as gH, type BulkMarkAsUnfulfilledRequest as gI, type BulkMarkAsUnfulfilledResponse as gJ, type BulkMarkAsUnfulfilledByFilterRequest as gK, type BulkMarkAsUnfulfilledByFilterResponse as gL, type BulkSetBusinessLocationRequest as gM, type BulkSetBusinessLocationResponse as gN, type BulkSetBusinessLocationResult as gO, type V1MarkOrderAsPaidRequest as gP, type V1MarkOrderAsPaidResponse as gQ, type PaymentStatusUpdated as gR, type V1BulkMarkOrdersAsPaidRequest as gS, type V1BulkMarkOrdersAsPaidResponse as gT, type V1CreatePaymentGatewayOrderRequest as gU, type V1CreatePaymentGatewayOrderResponse as gV, type GetShipmentsRequest as gW, type GetShipmentsResponse as gX, type AggregateOrdersRequest as gY, type AggregateOrdersResponse as gZ, type DecrementItemsQuantityRequest as g_, type EmailEdited as ga, type PickupReadyEmailSent as gb, type OrderPartiallyPaid as gc, type OrderPending as gd, type OrderRejected as ge, type AddInternalActivityResponse as gf, type AddActivityRequest as gg, type PublicActivity as gh, type PublicActivityContentOneOf as gi, type AddActivityResponse as gj, type AddActivitiesRequest as gk, type AddActivitiesResponse as gl, type UpdateActivityRequest as gm, type UpdateActivityResponse as gn, type DeleteActivityRequest as go, type DeleteActivityResponse as gp, type UpdateLineItemsDescriptionLinesRequest as gq, type LineItemUpdate as gr, type UpdateLineItemsDescriptionLinesResponse as gs, type MarkOrderAsSeenByHumanRequest as gt, type MarkOrderAsSeenByHumanResponse as gu, type CancelOrderRequest as gv, type OrderCanceledEventOrderCanceled as gw, type UpdateOrderStatusRequest as gx, type UpdateOrderStatusResponse as gy, type MarkAsFulfilledRequest as gz, type OrderSearch as h, type AdjustmentTypeWithLiterals as h$, type DecrementItemsQuantityResponse as h0, type BulkUpdateOrderTagsRequest as h1, type BulkUpdateOrderTagsResult as h2, type Task as h3, type TaskKey as h4, type TaskAction as h5, type TaskActionActionOneOf as h6, type Complete as h7, type Cancel as h8, type Reschedule as h9, type CalculatedTax as hA, type Payments as hB, type InvoicesPayment as hC, type MetaData as hD, type InvoiceDynamicPriceTotals as hE, type CustomFieldValue as hF, type Value as hG, type Deposit as hH, type BaseEventMetadata as hI, type EventMetadata as hJ, type SetOrderNumberCounterOptions as hK, type BulkDeleteImportedOrdersOptions as hL, type PaymentCollectionCreatePaymentGatewayOrderOptions as hM, type ChargeMembershipsOptions as hN, type TriggerRefundOptions as hO, type OrderSearchSpec as hP, type CommitDeltasOptions as hQ, type UpdateOrderLineItemIdentifiers as hR, type UpdateOrderLineItem as hS, type UpdateActivityIdentifiers as hT, type DeleteActivityIdentifiers as hU, type AggregateOrdersOptions as hV, type DescriptionLineTypeWithLiterals as hW, type ItemTypeItemTypeWithLiterals as hX, type PaymentOptionTypeWithLiterals as hY, type JurisdictionTypeWithLiterals as hZ, type SubscriptionFrequencyWithLiterals as h_, type InvoiceSentEvent as ha, type IdAndVersion as hb, type InvoiceFields as hc, type Customer as hd, type Email as he, type QuotesAddress as hf, type AddressDescription as hg, type Phone as hh, type Company as hi, type CommonAddress as hj, type CommonAddressStreetOneOf as hk, type Subdivision as hl, type StandardDetails as hm, type InvoiceDates as hn, type LineItems as ho, type LineItem as hp, type BigDecimalWrapper as hq, type LineItemTax as hr, type Source as hs, type LineItemMetaData as ht, type Locale as hu, type TotalPrice as hv, type ItemizedFee as hw, type Discount as hx, type DiscountOneDiscountTypeOneOf as hy, type CalculatedTaxes as hz, type CreateOrderOptions as i, updateOrder as i$, type TaxableAddressTypeWithLiterals as i0, type PaymentStatusWithLiterals as i1, type FulfillmentStatusWithLiterals as i2, type WeightUnitWithLiterals as i3, type VatTypeWithLiterals as i4, type PickupMethodWithLiterals as i5, type OrderStatusWithLiterals as i6, type DiscountTypeWithLiterals as i7, type DiscountReasonWithLiterals as i8, type LineItemQuantityChangeTypeWithLiterals as i9, type DeltaPaymentOptionTypeWithLiterals as iA, type InventoryActionWithLiterals as iB, type PlacementWithLiterals as iC, type SubdivisionTypeWithLiterals as iD, type SourceTypeWithLiterals as iE, type CustomFieldGroupWithLiterals as iF, type ValueTypeWithLiterals as iG, type DepositTypeWithLiterals as iH, type InvoiceStatusWithLiterals as iI, type RecordManuallyCollectedPaymentApplicationErrors as iJ, type PaymentCollectionMarkOrderAsPaidApplicationErrors as iK, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as iL, type TriggerRefundApplicationErrors as iM, type CommitDeltasApplicationErrors as iN, type UpdateOrderStatusApplicationErrors as iO, type CommonSearchWithEntityContext as iP, onOrderApproved as iQ, onOrderUpdated as iR, onOrderCanceled as iS, onOrderCreated as iT, onOrderPaymentStatusUpdated as iU, preparePaymentCollection as iV, getPaymentCollectabilityStatus as iW, voidAuthorizedPayments as iX, captureAuthorizedPayments as iY, getOrder as iZ, createOrder as i_, type ActivityTypeWithLiterals as ia, type AttributionSourceWithLiterals as ib, type ChannelTypeWithLiterals as ic, type OrderActionTypeWithLiterals as id, type WebhookIdentityTypeWithLiterals as ie, type PreviewEmailTypeWithLiterals as ig, type ScheduledActionWithLiterals as ih, type DurationUnitWithLiterals as ii, type PaymentCollectabilityStatusWithLiterals as ij, type RefundableStatusWithLiterals as ik, type NonRefundableReasonWithLiterals as il, type ManuallyRefundableReasonWithLiterals as im, type RestockTypeWithLiterals as io, type TransactionStatusWithLiterals as ip, type AuthorizationCaptureStatusWithLiterals as iq, type AuthorizationVoidStatusWithLiterals as ir, type ReasonWithLiterals as is, type ActionTypeWithLiterals as it, type ChargebackStatusWithLiterals as iu, type MembershipPaymentStatusWithLiterals as iv, type RefundStatusWithLiterals as iw, type VersioningModeWithLiterals as ix, type SortOrderWithLiterals as iy, type OrderApprovalStrategyWithLiterals as iz, type CreateOrderApplicationErrors as j, bulkUpdateOrders as j0, cancelOrder as j1, bulkUpdateOrderTags as j2, type UpdateOrderApplicationErrors as k, type BulkUpdateOrdersResponse as l, type CancelOrderOptions as m, type CancelOrderResponse as n, type CancelOrderApplicationErrors as o, type BulkUpdateOrderTagsOptions as p, type BulkUpdateOrderTagsResponse as q, type OrderApprovedEnvelope as r, type OrderUpdatedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCreatedEnvelope as u, type OrderPaymentStatusUpdatedEnvelope as v, PaymentOptionType as w, SubscriptionFrequency as x, PaymentStatus as y, VatType as z };
|
package/build/es/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, m as CancelOrderOptions, n as CancelOrderResponse, o as CancelOrderApplicationErrors, p as BulkUpdateOrderTagsOptions, q as BulkUpdateOrderTagsResponse, r as OrderApprovedEnvelope, s as OrderUpdatedEnvelope, t as OrderCanceledEnvelope, u as OrderCreatedEnvelope, v as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { de as ActionEvent, a9 as ActionType, ic as ActionTypeWithLiterals, bm as Activity, bn as ActivityContentOneOf, Q as ActivityType, hY as ActivityTypeWithLiterals, g8 as AddActivitiesRequest, g9 as AddActivitiesResponse, g4 as AddActivityRequest, g7 as AddActivityResponse, fJ as AddInternalActivityRequest, g3 as AddInternalActivityResponse, cj as AdditionalFee, f9 as AdditionalFeeDelta, fa as AdditionalFeeDeltaDeltaOneOf, cT as AdditionalFeeRefund, a_ as Address, h4 as AddressDescription, b0 as AddressLocation, aZ as AddressWithContact, A as AdjustmentType, hN as AdjustmentTypeWithLiterals, hH as AggregateOrdersOptions, gM as AggregateOrdersRequest, gN as AggregateOrdersResponse, e9 as AggregatedRefundSummary, dx as ApplicationError, be as AppliedDiscount, f7 as AppliedDiscountDelta, f8 as AppliedDiscountDeltaDeltaOneOf, bf as AppliedDiscountDiscountSourceOneOf, fj as ArchiveOrderRequest, fk as ArchiveOrderResponse, R as AttributionSource, hZ as AttributionSourceWithLiterals, d_ as AuthorizationActionFailureDetails, dZ as AuthorizationCapture, a6 as AuthorizationCaptureStatus, i9 as AuthorizationCaptureStatusWithLiterals, dY as AuthorizationDetails, d$ as AuthorizationVoid, a7 as AuthorizationVoidStatus, ia as AuthorizationVoidStatusWithLiterals, bN as AuthorizedPaymentCaptured, bM as AuthorizedPaymentCreated, bO as AuthorizedPaymentVoided, ci as Balance, ch as BalanceSummary, hw as BaseEventMetadata, ex as BatchOfTriggerReindexOrderRequest, he as BigDecimalWrapper, aL as BillingAdjustment, aM as BillingAdjustmentPriceSummary, dy as BulkActionMetadata, fn as BulkArchiveOrdersByFilterRequest, fo as BulkArchiveOrdersByFilterResponse, fl as BulkArchiveOrdersRequest, fm as BulkArchiveOrdersResponse, gs as BulkMarkAsFulfilledByFilterRequest, gt as BulkMarkAsFulfilledByFilterResponse, gq as BulkMarkAsFulfilledRequest, gr as BulkMarkAsFulfilledResponse, gy as BulkMarkAsUnfulfilledByFilterRequest, gz as BulkMarkAsUnfulfilledByFilterResponse, gw as BulkMarkAsUnfulfilledRequest, gx as BulkMarkAsUnfulfilledResponse, dt as BulkMarkOrdersAsPaidRequest, du as BulkMarkOrdersAsPaidResponse, dv as BulkOrderResult, cz as BulkSendBuyerPickupConfirmationEmailsRequest, cA as BulkSendBuyerPickupConfirmationEmailsResponse, cD as BulkSendBuyerShippingConfirmationEmailsRequest, cE as BulkSendBuyerShippingConfirmationEmailsResponse, gA as BulkSetBusinessLocationRequest, gB as BulkSetBusinessLocationResponse, gC as BulkSetBusinessLocationResult, ft as BulkUnArchiveOrdersByFilterRequest, fu as BulkUnArchiveOrdersByFilterResponse, fr as BulkUnArchiveOrdersRequest, fs as BulkUnArchiveOrdersResponse, gR as BulkUpdateOrderTagsRequest, gS as BulkUpdateOrderTagsResult, eY as BulkUpdateOrdersRequest, aV as BuyerInfo, aW as BuyerInfoIdOneOf, fw as BuyerInfoUpdate, ed as CalculateRefundItemRequest, ef as CalculateRefundItemResponse, ec as CalculateRefundRequest, ee as CalculateRefundResponse, ho as CalculatedTax, hn as CalculatedTaxes, gY as Cancel, gj as CancelOrderRequest, eh as CaptureAuthorizedPaymentsRequest, ar as CatalogReference, cf as ChannelInfo, X as ChannelType, h_ as ChannelTypeWithLiterals, hz as ChargeMembershipsOptions, dG as ChargeMembershipsRequest, dK as ChargeMembershipsResponse, ei as ChargeSavedPaymentMethodRequest, ej as ChargeSavedPaymentMethodResponse, e1 as Chargeback, cb as ChargebackCreated, cc as ChargebackReversed, aa as ChargebackStatus, id as ChargebackStatusWithLiterals, dE as ChargedBy, ax as Color, iy as CommitDeltasApplicationErrors, hC as CommitDeltasOptions, eZ as CommitDeltasRequest, fd as CommitDeltasResponse, ff as CommittedDiffs, fg as CommittedDiffsShippingUpdateInfoOneOf, h7 as CommonAddress, h8 as CommonAddressStreetOneOf, iA as CommonSearchWithEntityContext, h6 as Company, gX as Complete, bg as Coupon, eS as CreateOrderRequest, eV as CreateOrderResponse, dD as CreatePaymentGatewayOrderRequest, dF as CreatePaymentGatewayOrderResponse, cd as CreatedBy, ce as CreatedByStringOneOf, c0 as CreditCardDetails, dX as CreditCardPaymentMethodDetails, aX as CurrencyConversionDetails, eI as CursorPaging, eR as CursorPagingMetadata, eP as CursorSearch, eQ as CursorSearchPagingMethodOneOf, eL as Cursors, bo as CustomActivity, cg as CustomField, al as CustomFieldGroup, iq as CustomFieldGroupWithLiterals, ht as CustomFieldValue, h1 as Customer, gP as DecrementData, gO as DecrementItemsQuantityRequest, gQ as DecrementItemsQuantityResponse, dl as DelayedCaptureSettings, hG as DeleteActivityIdentifiers, gc as DeleteActivityRequest, gd as DeleteActivityResponse, ep as DeleteByFilterOperation, eo as DeleteByIdsOperation, b4 as DeliveryLogistics, b5 as DeliveryLogisticsAddressOneOf, b8 as DeliveryTimeSlot, ag as DeltaPaymentOptionType, ik as DeltaPaymentOptionTypeWithLiterals, hv as Deposit, an as DepositType, is as DepositTypeWithLiterals, as as DescriptionLine, au as DescriptionLineDescriptionLineValueOneOf, av as DescriptionLineName, D as DescriptionLineType, hI as DescriptionLineTypeWithLiterals, at as DescriptionLineValueOneOf, ez as DiffmatokyPayload, aF as DigitalFile, hl as Discount, hm as DiscountOneDiscountTypeOneOf, L as DiscountReason, hW as DiscountReasonWithLiterals, bj as DiscountRule, bk as DiscountRuleName, K as DiscountType, hV as DiscountTypeWithLiterals, d8 as DomainEvent, d9 as DomainEventBodyOneOf, fR as DownloadLinkSent, bu as DraftOrderChangesApplied, fb as DraftOrderCommitSettings, e_ as DraftOrderDiffs, f1 as DraftOrderDiffsBillingUpdateInfoOneOf, f0 as DraftOrderDiffsBuyerUpdateInfoOneOf, f2 as DraftOrderDiffsRecipientUpdateInfoOneOf, e$ as DraftOrderDiffsShippingUpdateInfoOneOf, dm as Duration, $ as DurationUnit, i2 as DurationUnitWithLiterals, h2 as Email, f_ as EmailEdited, df as Empty, da as EntityCreatedEvent, dd as EntityDeletedEvent, dc as EntityUpdatedEvent, eA as ErrorInformation, hx as EventMetadata, aR as ExtendedFields, c8 as ExternalReceipt, e5 as ExternalReceiptInfo, ay as FocalPoint, aK as FreeTrialPeriod, fY as FulfillerEmailSent, F as FulfillmentStatus, gp as FulfillmentStatusUpdated, hQ as FulfillmentStatusWithLiterals, ck as FulfillmentStatusesAggregate, b1 as FullAddressContactDetails, eB as GetOrderRequest, eC as GetOrderResponse, dn as GetPaymentCollectabilityStatusRequest, dz as GetRefundabilityStatusRequest, dA as GetRefundabilityStatusResponse, gK as GetShipmentsRequest, gL as GetShipmentsResponse, e2 as GiftCardPaymentDetails, bT as GiftCardPaymentRefund, g$ as IdAndVersion, dh as IdentificationData, di as IdentificationDataIdOneOf, fK as InternalActivity, fL as InternalActivityContentOneOf, em as InternalDocument, eq as InternalDocumentUpdateByFilterOperation, en as InternalDocumentUpdateOperation, eD as InternalQueryOrdersRequest, eJ as InternalQueryOrdersResponse, er as InternalUpdateExistingOperation, ah as InventoryAction, il as InventoryActionWithLiterals, fc as InventoryUpdateDetails, fW as InvoiceAdded, hb as InvoiceDates, hs as InvoiceDynamicPriceTotals, h0 as InvoiceFields, fX as InvoiceSent, g_ as InvoiceSentEvent, ao as InvoiceStatus, it as InvoiceStatusWithLiterals, hq as InvoicesPayment, f6 as ItemChangedDetails, dw as ItemMetadata, aU as ItemModifier, aC as ItemTaxFullDetails, aA as ItemType, I as ItemTypeItemType, aB as ItemTypeItemTypeDataOneOf, hJ as ItemTypeItemTypeWithLiterals, hk as ItemizedFee, J as JurisdictionType, hL as JurisdictionTypeWithLiterals, hd as LineItem, bG as LineItemAmount, bx as LineItemChanges, fh as LineItemDelta, fi as LineItemDeltaDeltaOneOf, bB as LineItemDescriptionLineChange, bl as LineItemDiscount, bt as LineItemExchangeData, hh as LineItemMetaData, bC as LineItemModifiersChange, bz as LineItemPriceChange, bA as LineItemProductNameChange, by as LineItemQuantityChange, N as LineItemQuantityChangeType, hX as LineItemQuantityChangeTypeWithLiterals, cS as LineItemRefund, eb as LineItemRefundSummary, hf as LineItemTax, aE as LineItemTaxBreakdown, aD as LineItemTaxInfo, gf as LineItemUpdate, hc as LineItems, hi as Locale, cn as Location, aO as LocationAndQuantity, bH as ManagedAdditionalFee, bE as ManagedDiscount, bD as ManagedLineItem, a3 as ManuallyRefundableReason, i6 as ManuallyRefundableReasonWithLiterals, gn as MarkAsFulfilledRequest, go as MarkAsFulfilledResponse, gu as MarkAsUnfulfilledRequest, gv as MarkAsUnfulfilledResponse, dr as MarkOrderAsPaidRequest, ds as MarkOrderAsPaidResponse, gh as MarkOrderAsSeenByHumanRequest, gi as MarkOrderAsSeenByHumanResponse, fH as MaskedOrderLineItem, dH as MembershipChargeItem, dI as MembershipName, e3 as MembershipPaymentDetails, bU as MembershipPaymentRefund, ab as MembershipPaymentStatus, ie as MembershipPaymentStatusWithLiterals, bp as MerchantComment, bh as MerchantDiscount, bi as MerchantDiscountMerchantDiscountReasonOneOf, dg as MessageEnvelope, hr as MetaData, aS as ModifierGroup, bs as NewExchangeOrderCreated, a2 as NonRefundableReason, i5 as NonRefundableReasonWithLiterals, af as OrderApprovalStrategy, ij as OrderApprovalStrategyWithLiterals, co as OrderApproved, fQ as OrderCanceled, gk as OrderCanceledEventOrderCanceled, bv as OrderChange, bw as OrderChangeValueOneOf, eU as OrderCreateNotifications, br as OrderCreatedFromExchange, eT as OrderCreationSettings, fe as OrderDeltasCommitted, fO as OrderFulfilled, cr as OrderItemsRestocked, ap as OrderLineItem, f5 as OrderLineItemChangedDetails, fP as OrderNotFulfilled, fN as OrderPaid, g0 as OrderPartiallyPaid, g1 as OrderPending, fM as OrderPlaced, bq as OrderRefunded, g2 as OrderRejected, cq as OrderRejectedEventOrderRejected, hB as OrderSearchSpec, H as OrderStatus, hU as OrderStatusWithLiterals, bd as OrderTaxBreakdown, bc as OrderTaxInfo, dR as OrderTransactions, cp as OrdersExperiments, dS as Payment, c1 as PaymentCanceled, c2 as PaymentCanceledPaymentDetailsOneOf, a0 as PaymentCollectabilityStatus, i3 as PaymentCollectabilityStatusWithLiterals, iw as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, hy as PaymentCollectionCreatePaymentGatewayOrderOptions, iv as PaymentCollectionMarkOrderAsPaidApplicationErrors, c3 as PaymentDeclined, c4 as PaymentDeclinedPaymentDetailsOneOf, w as PaymentOptionType, hK as PaymentOptionTypeWithLiterals, dT as PaymentPaymentDetailsOneOf, bY as PaymentPending, bZ as PaymentPendingPaymentDetailsOneOf, dU as PaymentReceiptInfoOneOf, dM as PaymentRefund, bW as PaymentRefundFailed, bV as PaymentRefunded, y as PaymentStatus, gF as PaymentStatusUpdated, hP as PaymentStatusWithLiterals, hp as Payments, h5 as Phone, az as PhysicalProperties, b7 as PickupAddress, b6 as PickupDetails, E as PickupMethod, hT as PickupMethodWithLiterals, f$ as PickupReadyEmailSent, ai as Placement, im as PlacementWithLiterals, aw as PlainTextValue, eH as PlatformPaging, eK as PlatformPagingMetadata, eE as PlatformQuery, eF as PlatformQueryPagingMethodOneOf, dj as PreparePaymentCollectionRequest, d0 as PreviewBuyerConfirmationEmailRequest, d1 as PreviewBuyerConfirmationEmailResponse, c_ as PreviewBuyerPaymentsReceivedEmailRequest, c$ as PreviewBuyerPaymentsReceivedEmailResponse, d2 as PreviewBuyerPickupConfirmationEmailRequest, d3 as PreviewBuyerPickupConfirmationEmailResponse, cW as PreviewCancelEmailRequest, cX as PreviewCancelEmailResponse, cY as PreviewCancelRefundEmailRequest, cZ as PreviewCancelRefundEmailResponse, cN as PreviewEmailByTypeRequest, cO as PreviewEmailByTypeResponse, Y as PreviewEmailType, h$ as PreviewEmailTypeWithLiterals, cP as PreviewRefundEmailRequest, cV as PreviewRefundEmailResponse, d6 as PreviewResendDownloadLinksEmailRequest, d7 as PreviewResendDownloadLinksEmailResponse, d4 as PreviewShippingConfirmationEmailRequest, d5 as PreviewShippingConfirmationEmailResponse, aN as PriceDescription, aY as PriceSummary, aq as ProductName, g5 as PublicActivity, g6 as PublicActivityContentOneOf, eM as QueryOrderRequest, eN as QueryOrderResponse, h3 as QuotesAddress, a8 as Reason, ib as ReasonWithLiterals, c5 as ReceiptCreated, c6 as ReceiptCreatedReceiptInfoOneOf, c9 as ReceiptSent, ca as ReceiptSentReceiptInfoOneOf, iu as RecordManuallyCollectedPaymentApplicationErrors, dp as RecordManuallyCollectedPaymentRequest, dq as RecordManuallyCollectedPaymentResponse, dk as RedirectUrls, e6 as Refund, cQ as RefundDetails, bP as RefundInitiated, cR as RefundItem, ea as RefundItemsBreakdown, dN as RefundSideEffects, ac as RefundStatus, e8 as RefundStatusInfo, ig as RefundStatusWithLiterals, e7 as RefundTransaction, dB as Refundability, dC as RefundabilityAdditionalRefundabilityInfoOneOf, a1 as RefundableStatus, i4 as RefundableStatusWithLiterals, bX as RefundedAsStoreCredit, bQ as RefundedPayment, bR as RefundedPaymentKindOneOf, b_ as RegularPayment, dV as RegularPaymentDetails, dW as RegularPaymentDetailsPaymentMethodDetailsOneOf, b$ as RegularPaymentPaymentMethodDetailsOneOf, bS as RegularPaymentRefund, gZ as Reschedule, dO as RestockInfo, dP as RestockItem, a4 as RestockType, i7 as RestockTypeWithLiterals, db as RestoreInfo, bL as SavedPaymentMethod, _ as ScheduledAction, i1 as ScheduledActionWithLiterals, eO as SearchOrdersRequest, ct as SendBuyerConfirmationEmailRequest, cu as SendBuyerConfirmationEmailResponse, cv as SendBuyerPaymentsReceivedEmailRequest, cw as SendBuyerPaymentsReceivedEmailResponse, cx as SendBuyerPickupConfirmationEmailRequest, cy as SendBuyerPickupConfirmationEmailResponse, cB as SendBuyerShippingConfirmationEmailRequest, cC as SendBuyerShippingConfirmationEmailResponse, cH as SendCancelRefundEmailRequest, cI as SendCancelRefundEmailResponse, cF as SendMerchantOrderReceivedNotificationRequest, cG as SendMerchantOrderReceivedNotificationResponse, cL as SendMerchantOrderReceivedPushRequest, cM as SendMerchantOrderReceivedPushResponse, cJ as SendRefundEmailRequest, cK as SendRefundEmailResponse, dJ as ServiceProperties, fZ as ShippingAddressEdited, fV as ShippingConfirmationEmailSent, bK as ShippingInformation, bJ as ShippingInformationChange, b9 as ShippingPrice, cU as ShippingRefund, ba as ShippingRegion, ae as SortOrder, ii as SortOrderWithLiterals, eG as Sorting, hg as Source, ak as SourceType, ip as SourceTypeWithLiterals, ha as StandardDetails, a$ as StreetAddress, h9 as Subdivision, aj as SubdivisionType, io as SubdivisionTypeWithLiterals, aI as SubscriptionDescription, x as SubscriptionFrequency, hM as SubscriptionFrequencyWithLiterals, aG as SubscriptionInfo, aJ as SubscriptionSettings, aH as SubscriptionTitle, cm as TagList, cl as Tags, gT as Task, gV as TaskAction, gW as TaskActionActionOneOf, gU as TaskKey, bb as TaxSummary, aP as TaxableAddress, aQ as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, hO as TaxableAddressTypeWithLiterals, hj as TotalPrice, bI as TotalPriceChange, fU as TrackingLinkAdded, fS as TrackingNumberAdded, fT as TrackingNumberEdited, a5 as TransactionStatus, i8 as TransactionStatusWithLiterals, aT as TranslatableString, bF as TranslatedValue, ix as TriggerRefundApplicationErrors, hA as TriggerRefundOptions, dL as TriggerRefundRequest, dQ as TriggerRefundResponse, ey as TriggerReindexOrderRequest, ev as TriggerReindexRequest, ew as TriggerReindexResponse, fp as UnArchiveOrderRequest, fq as UnArchiveOrderResponse, hF as UpdateActivityIdentifiers, ga as UpdateActivityRequest, gb as UpdateActivityResponse, fC as UpdateBillingContactDetailsRequest, fD as UpdateBillingContactDetailsResponse, fy as UpdateBuyerEmailRequest, fz as UpdateBuyerEmailResponse, fv as UpdateBuyerInfoRequest, fx as UpdateBuyerInfoResponse, ek as UpdateInternalDocumentsEvent, el as UpdateInternalDocumentsEventOperationOneOf, ge as UpdateLineItemsDescriptionLinesRequest, gg as UpdateLineItemsDescriptionLinesResponse, hE as UpdateOrderLineItem, hD as UpdateOrderLineItemIdentifiers, fE as UpdateOrderLineItemRequest, fF as UpdateOrderLineItemResponse, fG as UpdateOrderLineItemsRequest, fI as UpdateOrderLineItemsResponse, eW as UpdateOrderRequest, eX as UpdateOrderResponse, fA as UpdateOrderShippingAddressRequest, fB as UpdateOrderShippingAddressResponse, iz as UpdateOrderStatusApplicationErrors, gl as UpdateOrderStatusRequest, gm as UpdateOrderStatusResponse, gG as V1BulkMarkOrdersAsPaidRequest, gH as V1BulkMarkOrdersAsPaidResponse, gI as V1CreatePaymentGatewayOrderRequest, gJ as V1CreatePaymentGatewayOrderResponse, f3 as V1LineItemDelta, f4 as V1LineItemDeltaDeltaOneOf, gD as V1MarkOrderAsPaidRequest, gE as V1MarkOrderAsPaidResponse, cs as V1RestockItem, e0 as V1ScheduledAction, b3 as V1ShippingInformation, hu as Value, am as ValueType, ir as ValueTypeWithLiterals, b2 as VatId, z as VatType, hS as VatTypeWithLiterals, et as VersionedDeleteByIdsOperation, eu as VersionedDocumentId, es as VersionedDocumentUpdateOperation, ad as VersioningMode, ih as VersioningModeWithLiterals, eg as VoidAuthorizedPaymentsRequest, Z as WebhookIdentityType, i0 as WebhookIdentityTypeWithLiterals, W as WeightUnit, hR as WeightUnitWithLiterals, c7 as WixReceipt, e4 as WixReceiptInfo } from './ecom-v1-order-orders.universal-el5SGD40.mjs';
|
|
2
|
+
import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, m as CancelOrderOptions, n as CancelOrderResponse, o as CancelOrderApplicationErrors, p as BulkUpdateOrderTagsOptions, q as BulkUpdateOrderTagsResponse, r as OrderApprovedEnvelope, s as OrderUpdatedEnvelope, t as OrderCanceledEnvelope, u as OrderCreatedEnvelope, v as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-CzvHFP5d.mjs';
|
|
3
|
+
export { cL as ActionEvent, aa as ActionType, it as ActionTypeWithLiterals, bn as Activity, bo as ActivityContentOneOf, Q as ActivityType, ia as ActivityTypeWithLiterals, gk as AddActivitiesRequest, gl as AddActivitiesResponse, gg as AddActivityRequest, gj as AddActivityResponse, fV as AddInternalActivityRequest, gf as AddInternalActivityResponse, ck as AdditionalFee, fl as AdditionalFeeDelta, fm as AdditionalFeeDeltaDeltaOneOf, dd as AdditionalFeeRefund, a$ as Address, hg as AddressDescription, b1 as AddressLocation, a_ as AddressWithContact, A as AdjustmentType, h$ as AdjustmentTypeWithLiterals, hV as AggregateOrdersOptions, gY as AggregateOrdersRequest, gZ as AggregateOrdersResponse, el as AggregatedRefundSummary, dJ as ApplicationError, bf as AppliedDiscount, fj as AppliedDiscountDelta, fk as AppliedDiscountDeltaDeltaOneOf, bg as AppliedDiscountDiscountSourceOneOf, fv as ArchiveOrderRequest, fw as ArchiveOrderResponse, R as AttributionSource, ib as AttributionSourceWithLiterals, ea as AuthorizationActionFailureDetails, e9 as AuthorizationCapture, a7 as AuthorizationCaptureStatus, iq as AuthorizationCaptureStatusWithLiterals, e8 as AuthorizationDetails, eb as AuthorizationVoid, a8 as AuthorizationVoidStatus, ir as AuthorizationVoidStatusWithLiterals, bO as AuthorizedPaymentCaptured, bN as AuthorizedPaymentCreated, bP as AuthorizedPaymentVoided, cj as Balance, ci as BalanceSummary, hI as BaseEventMetadata, eJ as BatchOfTriggerReindexOrderRequest, hq as BigDecimalWrapper, aM as BillingAdjustment, aN as BillingAdjustmentPriceSummary, dK as BulkActionMetadata, fz as BulkArchiveOrdersByFilterRequest, fA as BulkArchiveOrdersByFilterResponse, fx as BulkArchiveOrdersRequest, fy as BulkArchiveOrdersResponse, hL as BulkDeleteImportedOrdersOptions, cD as BulkDeleteImportedOrdersRequest, cE as BulkDeleteImportedOrdersResponse, gE as BulkMarkAsFulfilledByFilterRequest, gF as BulkMarkAsFulfilledByFilterResponse, gC as BulkMarkAsFulfilledRequest, gD as BulkMarkAsFulfilledResponse, gK as BulkMarkAsUnfulfilledByFilterRequest, gL as BulkMarkAsUnfulfilledByFilterResponse, gI as BulkMarkAsUnfulfilledRequest, gJ as BulkMarkAsUnfulfilledResponse, dF as BulkMarkOrdersAsPaidRequest, dG as BulkMarkOrdersAsPaidResponse, dH as BulkOrderResult, cV as BulkSendBuyerPickupConfirmationEmailsRequest, cW as BulkSendBuyerPickupConfirmationEmailsResponse, cZ as BulkSendBuyerShippingConfirmationEmailsRequest, c_ as BulkSendBuyerShippingConfirmationEmailsResponse, gM as BulkSetBusinessLocationRequest, gN as BulkSetBusinessLocationResponse, gO as BulkSetBusinessLocationResult, fF as BulkUnArchiveOrdersByFilterRequest, fG as BulkUnArchiveOrdersByFilterResponse, fD as BulkUnArchiveOrdersRequest, fE as BulkUnArchiveOrdersResponse, h1 as BulkUpdateOrderTagsRequest, h2 as BulkUpdateOrderTagsResult, f8 as BulkUpdateOrdersRequest, aW as BuyerInfo, aX as BuyerInfoIdOneOf, fI as BuyerInfoUpdate, ep as CalculateRefundItemRequest, er as CalculateRefundItemResponse, eo as CalculateRefundRequest, eq as CalculateRefundResponse, hA as CalculatedTax, hz as CalculatedTaxes, h8 as Cancel, gv as CancelOrderRequest, et as CaptureAuthorizedPaymentsRequest, as as CatalogReference, cg as ChannelInfo, X as ChannelType, ic as ChannelTypeWithLiterals, hN as ChargeMembershipsOptions, dS as ChargeMembershipsRequest, dW as ChargeMembershipsResponse, eu as ChargeSavedPaymentMethodRequest, ev as ChargeSavedPaymentMethodResponse, ed as Chargeback, cc as ChargebackCreated, cd as ChargebackReversed, ab as ChargebackStatus, iu as ChargebackStatusWithLiterals, dQ as ChargedBy, ay as Color, iN as CommitDeltasApplicationErrors, hQ as CommitDeltasOptions, f9 as CommitDeltasRequest, fp as CommitDeltasResponse, fr as CommittedDiffs, fs as CommittedDiffsShippingUpdateInfoOneOf, hj as CommonAddress, hk as CommonAddressStreetOneOf, iP as CommonSearchWithEntityContext, hi as Company, h7 as Complete, bh as Coupon, f2 as CreateOrderRequest, f5 as CreateOrderResponse, dP as CreatePaymentGatewayOrderRequest, dR as CreatePaymentGatewayOrderResponse, ce as CreatedBy, cf as CreatedByStringOneOf, c1 as CreditCardDetails, e7 as CreditCardPaymentMethodDetails, aY as CurrencyConversionDetails, eU as CursorPaging, f1 as CursorPagingMetadata, e$ as CursorSearch, f0 as CursorSearchPagingMethodOneOf, eX as Cursors, bp as CustomActivity, cr as CustomAllowedActions, ch as CustomField, am as CustomFieldGroup, iF as CustomFieldGroupWithLiterals, hF as CustomFieldValue, hd as Customer, g$ as DecrementData, g_ as DecrementItemsQuantityRequest, h0 as DecrementItemsQuantityResponse, dy as DelayedCaptureSettings, hU as DeleteActivityIdentifiers, go as DeleteActivityRequest, gp as DeleteActivityResponse, eB as DeleteByFilterOperation, eA as DeleteByIdsOperation, b5 as DeliveryLogistics, b6 as DeliveryLogisticsAddressOneOf, b9 as DeliveryTimeSlot, ah as DeltaPaymentOptionType, iA as DeltaPaymentOptionTypeWithLiterals, hH as Deposit, ao as DepositType, iH as DepositTypeWithLiterals, at as DescriptionLine, av as DescriptionLineDescriptionLineValueOneOf, aw as DescriptionLineName, D as DescriptionLineType, hW as DescriptionLineTypeWithLiterals, au as DescriptionLineValueOneOf, eL as DiffmatokyPayload, aG as DigitalFile, hx as Discount, hy as DiscountOneDiscountTypeOneOf, L as DiscountReason, i8 as DiscountReasonWithLiterals, bk as DiscountRule, bl as DiscountRuleName, K as DiscountType, i7 as DiscountTypeWithLiterals, cF as DomainEvent, cG as DomainEventBodyOneOf, g1 as DownloadLinkSent, bv as DraftOrderChangesApplied, fn as DraftOrderCommitSettings, fa as DraftOrderDiffs, fd as DraftOrderDiffsBillingUpdateInfoOneOf, fc as DraftOrderDiffsBuyerUpdateInfoOneOf, fe as DraftOrderDiffsRecipientUpdateInfoOneOf, fb as DraftOrderDiffsShippingUpdateInfoOneOf, dz as Duration, a0 as DurationUnit, ii as DurationUnitWithLiterals, he as Email, ga as EmailEdited, dv as Empty, cH as EntityCreatedEvent, cK as EntityDeletedEvent, cJ as EntityUpdatedEvent, eM as ErrorInformation, hJ as EventMetadata, aS as ExtendedFields, c9 as ExternalReceipt, eh as ExternalReceiptInfo, az as FocalPoint, aL as FreeTrialPeriod, g8 as FulfillerEmailSent, F as FulfillmentStatus, gB as FulfillmentStatusUpdated, i2 as FulfillmentStatusWithLiterals, cl as FulfillmentStatusesAggregate, b2 as FullAddressContactDetails, eN as GetOrderRequest, eO as GetOrderResponse, dA as GetPaymentCollectabilityStatusRequest, dL as GetRefundabilityStatusRequest, dM as GetRefundabilityStatusResponse, gW as GetShipmentsRequest, gX as GetShipmentsResponse, ee as GiftCardPaymentDetails, bU as GiftCardPaymentRefund, hb as IdAndVersion, cN as IdentificationData, cO as IdentificationDataIdOneOf, cz as ImportOrderRequest, cA as ImportOrderResponse, cy as ImportedOrderDeleted, fW as InternalActivity, fX as InternalActivityContentOneOf, ey as InternalDocument, eC as InternalDocumentUpdateByFilterOperation, ez as InternalDocumentUpdateOperation, eP as InternalQueryOrdersRequest, eV as InternalQueryOrdersResponse, eD as InternalUpdateExistingOperation, ai as InventoryAction, iB as InventoryActionWithLiterals, fo as InventoryUpdateDetails, g6 as InvoiceAdded, hn as InvoiceDates, hE as InvoiceDynamicPriceTotals, hc as InvoiceFields, g7 as InvoiceSent, ha as InvoiceSentEvent, ap as InvoiceStatus, iI as InvoiceStatusWithLiterals, hC as InvoicesPayment, fi as ItemChangedDetails, dI as ItemMetadata, aV as ItemModifier, aD as ItemTaxFullDetails, aB as ItemType, I as ItemTypeItemType, aC as ItemTypeItemTypeDataOneOf, hX as ItemTypeItemTypeWithLiterals, hw as ItemizedFee, J as JurisdictionType, hZ as JurisdictionTypeWithLiterals, hp as LineItem, bH as LineItemAmount, by as LineItemChanges, ft as LineItemDelta, fu as LineItemDeltaDeltaOneOf, bC as LineItemDescriptionLineChange, bm as LineItemDiscount, bu as LineItemExchangeData, ht as LineItemMetaData, bD as LineItemModifiersChange, bA as LineItemPriceChange, bB as LineItemProductNameChange, bz as LineItemQuantityChange, N as LineItemQuantityChangeType, i9 as LineItemQuantityChangeTypeWithLiterals, dc as LineItemRefund, en as LineItemRefundSummary, hr as LineItemTax, aF as LineItemTaxBreakdown, aE as LineItemTaxInfo, gr as LineItemUpdate, ho as LineItems, hu as Locale, co as Location, aP as LocationAndQuantity, bI as ManagedAdditionalFee, bF as ManagedDiscount, bE as ManagedLineItem, a4 as ManuallyRefundableReason, im as ManuallyRefundableReasonWithLiterals, gz as MarkAsFulfilledRequest, gA as MarkAsFulfilledResponse, gG as MarkAsUnfulfilledRequest, gH as MarkAsUnfulfilledResponse, dD as MarkOrderAsPaidRequest, dE as MarkOrderAsPaidResponse, gt as MarkOrderAsSeenByHumanRequest, gu as MarkOrderAsSeenByHumanResponse, fT as MaskedOrderLineItem, dT as MembershipChargeItem, dU as MembershipName, ef as MembershipPaymentDetails, bV as MembershipPaymentRefund, ac as MembershipPaymentStatus, iv as MembershipPaymentStatusWithLiterals, bq as MerchantComment, bi as MerchantDiscount, bj as MerchantDiscountMerchantDiscountReasonOneOf, cM as MessageEnvelope, hD as MetaData, aT as ModifierGroup, bt as NewExchangeOrderCreated, a3 as NonRefundableReason, il as NonRefundableReasonWithLiterals, Y as OrderActionType, id as OrderActionTypeWithLiterals, ag as OrderApprovalStrategy, iz as OrderApprovalStrategyWithLiterals, cs as OrderApproved, g0 as OrderCanceled, gw as OrderCanceledEventOrderCanceled, bw as OrderChange, bx as OrderChangeValueOneOf, f4 as OrderCreateNotifications, bs as OrderCreatedFromExchange, f3 as OrderCreationSettings, fq as OrderDeltasCommitted, f_ as OrderFulfilled, cx as OrderImported, cv as OrderItemsRestocked, aq as OrderLineItem, fh as OrderLineItemChangedDetails, f$ as OrderNotFulfilled, fZ as OrderPaid, gc as OrderPartiallyPaid, gd as OrderPending, fY as OrderPlaced, br as OrderRefunded, ge as OrderRejected, cu as OrderRejectedEventOrderRejected, hP as OrderSearchSpec, cp as OrderSettings, cq as OrderSettingsAllowedActionsOneOf, H as OrderStatus, i6 as OrderStatusWithLiterals, be as OrderTaxBreakdown, bd as OrderTaxInfo, e1 as OrderTransactions, ct as OrdersExperiments, e2 as Payment, c2 as PaymentCanceled, c3 as PaymentCanceledPaymentDetailsOneOf, a1 as PaymentCollectabilityStatus, ij as PaymentCollectabilityStatusWithLiterals, iL as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, hM as PaymentCollectionCreatePaymentGatewayOrderOptions, iK as PaymentCollectionMarkOrderAsPaidApplicationErrors, c4 as PaymentDeclined, c5 as PaymentDeclinedPaymentDetailsOneOf, w as PaymentOptionType, hY as PaymentOptionTypeWithLiterals, e3 as PaymentPaymentDetailsOneOf, bZ as PaymentPending, b_ as PaymentPendingPaymentDetailsOneOf, e4 as PaymentReceiptInfoOneOf, dY as PaymentRefund, bX as PaymentRefundFailed, bW as PaymentRefunded, y as PaymentStatus, gR as PaymentStatusUpdated, i1 as PaymentStatusWithLiterals, hB as Payments, hh as Phone, aA as PhysicalProperties, b8 as PickupAddress, b7 as PickupDetails, E as PickupMethod, i5 as PickupMethodWithLiterals, gb as PickupReadyEmailSent, aj as Placement, iC as PlacementWithLiterals, ax as PlainTextValue, eT as PlatformPaging, eW as PlatformPagingMetadata, eQ as PlatformQuery, eR as PlatformQueryPagingMethodOneOf, dw as PreparePaymentCollectionRequest, dm as PreviewBuyerConfirmationEmailRequest, dn as PreviewBuyerConfirmationEmailResponse, dk as PreviewBuyerPaymentsReceivedEmailRequest, dl as PreviewBuyerPaymentsReceivedEmailResponse, dp as PreviewBuyerPickupConfirmationEmailRequest, dq as PreviewBuyerPickupConfirmationEmailResponse, dg as PreviewCancelEmailRequest, dh as PreviewCancelEmailResponse, di as PreviewCancelRefundEmailRequest, dj as PreviewCancelRefundEmailResponse, d7 as PreviewEmailByTypeRequest, d8 as PreviewEmailByTypeResponse, _ as PreviewEmailType, ig as PreviewEmailTypeWithLiterals, d9 as PreviewRefundEmailRequest, df as PreviewRefundEmailResponse, dt as PreviewResendDownloadLinksEmailRequest, du as PreviewResendDownloadLinksEmailResponse, dr as PreviewShippingConfirmationEmailRequest, ds as PreviewShippingConfirmationEmailResponse, aO as PriceDescription, aZ as PriceSummary, ar as ProductName, gh as PublicActivity, gi as PublicActivityContentOneOf, eY as QueryOrderRequest, eZ as QueryOrderResponse, hf as QuotesAddress, a9 as Reason, is as ReasonWithLiterals, c6 as ReceiptCreated, c7 as ReceiptCreatedReceiptInfoOneOf, ca as ReceiptSent, cb as ReceiptSentReceiptInfoOneOf, iJ as RecordManuallyCollectedPaymentApplicationErrors, dB as RecordManuallyCollectedPaymentRequest, dC as RecordManuallyCollectedPaymentResponse, dx as RedirectUrls, ei as Refund, da as RefundDetails, bQ as RefundInitiated, db as RefundItem, em as RefundItemsBreakdown, dZ as RefundSideEffects, ad as RefundStatus, ek as RefundStatusInfo, iw as RefundStatusWithLiterals, ej as RefundTransaction, dN as Refundability, dO as RefundabilityAdditionalRefundabilityInfoOneOf, a2 as RefundableStatus, ik as RefundableStatusWithLiterals, bY as RefundedAsStoreCredit, bR as RefundedPayment, bS as RefundedPaymentKindOneOf, b$ as RegularPayment, e5 as RegularPaymentDetails, e6 as RegularPaymentDetailsPaymentMethodDetailsOneOf, c0 as RegularPaymentPaymentMethodDetailsOneOf, bT as RegularPaymentRefund, h9 as Reschedule, d_ as RestockInfo, d$ as RestockItem, a5 as RestockType, io as RestockTypeWithLiterals, cI as RestoreInfo, bM as SavedPaymentMethod, $ as ScheduledAction, ih as ScheduledActionWithLiterals, e_ as SearchOrdersRequest, cP as SendBuyerConfirmationEmailRequest, cQ as SendBuyerConfirmationEmailResponse, cR as SendBuyerPaymentsReceivedEmailRequest, cS as SendBuyerPaymentsReceivedEmailResponse, cT as SendBuyerPickupConfirmationEmailRequest, cU as SendBuyerPickupConfirmationEmailResponse, cX as SendBuyerShippingConfirmationEmailRequest, cY as SendBuyerShippingConfirmationEmailResponse, d1 as SendCancelRefundEmailRequest, d2 as SendCancelRefundEmailResponse, c$ as SendMerchantOrderReceivedNotificationRequest, d0 as SendMerchantOrderReceivedNotificationResponse, d5 as SendMerchantOrderReceivedPushRequest, d6 as SendMerchantOrderReceivedPushResponse, d3 as SendRefundEmailRequest, d4 as SendRefundEmailResponse, dV as ServiceProperties, hK as SetOrderNumberCounterOptions, cB as SetOrderNumberCounterRequest, cC as SetOrderNumberCounterResponse, g9 as ShippingAddressEdited, g5 as ShippingConfirmationEmailSent, bL as ShippingInformation, bK as ShippingInformationChange, ba as ShippingPrice, de as ShippingRefund, bb as ShippingRegion, af as SortOrder, iy as SortOrderWithLiterals, eS as Sorting, hs as Source, al as SourceType, iE as SourceTypeWithLiterals, hm as StandardDetails, b0 as StreetAddress, hl as Subdivision, ak as SubdivisionType, iD as SubdivisionTypeWithLiterals, aJ as SubscriptionDescription, x as SubscriptionFrequency, h_ as SubscriptionFrequencyWithLiterals, aH as SubscriptionInfo, aK as SubscriptionSettings, aI as SubscriptionTitle, cn as TagList, cm as Tags, h3 as Task, h5 as TaskAction, h6 as TaskActionActionOneOf, h4 as TaskKey, bc as TaxSummary, aQ as TaxableAddress, aR as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, i0 as TaxableAddressTypeWithLiterals, hv as TotalPrice, bJ as TotalPriceChange, g4 as TrackingLinkAdded, g2 as TrackingNumberAdded, g3 as TrackingNumberEdited, a6 as TransactionStatus, ip as TransactionStatusWithLiterals, aU as TranslatableString, bG as TranslatedValue, iM as TriggerRefundApplicationErrors, hO as TriggerRefundOptions, dX as TriggerRefundRequest, e0 as TriggerRefundResponse, eK as TriggerReindexOrderRequest, eH as TriggerReindexRequest, eI as TriggerReindexResponse, fB as UnArchiveOrderRequest, fC as UnArchiveOrderResponse, hT as UpdateActivityIdentifiers, gm as UpdateActivityRequest, gn as UpdateActivityResponse, fO as UpdateBillingContactDetailsRequest, fP as UpdateBillingContactDetailsResponse, fK as UpdateBuyerEmailRequest, fL as UpdateBuyerEmailResponse, fH as UpdateBuyerInfoRequest, fJ as UpdateBuyerInfoResponse, ew as UpdateInternalDocumentsEvent, ex as UpdateInternalDocumentsEventOperationOneOf, gq as UpdateLineItemsDescriptionLinesRequest, gs as UpdateLineItemsDescriptionLinesResponse, hS as UpdateOrderLineItem, hR as UpdateOrderLineItemIdentifiers, fQ as UpdateOrderLineItemRequest, fR as UpdateOrderLineItemResponse, fS as UpdateOrderLineItemsRequest, fU as UpdateOrderLineItemsResponse, f6 as UpdateOrderRequest, f7 as UpdateOrderResponse, fM as UpdateOrderShippingAddressRequest, fN as UpdateOrderShippingAddressResponse, iO as UpdateOrderStatusApplicationErrors, gx as UpdateOrderStatusRequest, gy as UpdateOrderStatusResponse, gS as V1BulkMarkOrdersAsPaidRequest, gT as V1BulkMarkOrdersAsPaidResponse, gU as V1CreatePaymentGatewayOrderRequest, gV as V1CreatePaymentGatewayOrderResponse, ff as V1LineItemDelta, fg as V1LineItemDeltaDeltaOneOf, gP as V1MarkOrderAsPaidRequest, gQ as V1MarkOrderAsPaidResponse, cw as V1RestockItem, ec as V1ScheduledAction, b4 as V1ShippingInformation, hG as Value, an as ValueType, iG as ValueTypeWithLiterals, b3 as VatId, z as VatType, i4 as VatTypeWithLiterals, eF as VersionedDeleteByIdsOperation, eG as VersionedDocumentId, eE as VersionedDocumentUpdateOperation, ae as VersioningMode, ix as VersioningModeWithLiterals, es as VoidAuthorizedPaymentsRequest, Z as WebhookIdentityType, ie as WebhookIdentityTypeWithLiterals, W as WeightUnit, i3 as WeightUnitWithLiterals, c8 as WixReceipt, eg as WixReceiptInfo } from './ecom-v1-order-orders.universal-CzvHFP5d.mjs';
|
|
4
4
|
|
|
5
5
|
declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
|
|
6
6
|
interface PreparePaymentCollectionSignature {
|