@wix/auto_sdk_ecom_orders 1.0.72 → 1.0.73
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-C73TYoI7.d.ts → ecom-v1-order-orders.universal-DepMBjXB.d.ts} +429 -212
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +17 -8
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +17 -8
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +76 -76
- package/build/es/{ecom-v1-order-orders.universal-C73TYoI7.d.mts → ecom-v1-order-orders.universal-DepMBjXB.d.mts} +429 -212
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +16 -8
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +16 -8
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +76 -76
- package/build/internal/cjs/{ecom-v1-order-orders.universal-KCtJReRk.d.ts → ecom-v1-order-orders.universal-CHeSUY50.d.ts} +429 -212
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +17 -8
- 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 +17 -8
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +76 -76
- package/build/internal/es/{ecom-v1-order-orders.universal-KCtJReRk.d.mts → ecom-v1-order-orders.universal-CHeSUY50.d.mts} +429 -212
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +16 -8
- 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 +16 -8
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +76 -76
- package/package.json +2 -2
|
@@ -2593,6 +2593,434 @@ interface V1RestockItem {
|
|
|
2593
2593
|
*/
|
|
2594
2594
|
quantity?: number;
|
|
2595
2595
|
}
|
|
2596
|
+
interface SendBuyerConfirmationEmailRequest {
|
|
2597
|
+
/** @format GUID */
|
|
2598
|
+
orderId?: string;
|
|
2599
|
+
}
|
|
2600
|
+
interface SendBuyerConfirmationEmailResponse {
|
|
2601
|
+
}
|
|
2602
|
+
interface SendBuyerPaymentsReceivedEmailRequest {
|
|
2603
|
+
/**
|
|
2604
|
+
* @minLength 1
|
|
2605
|
+
* @maxLength 100
|
|
2606
|
+
*/
|
|
2607
|
+
orderId?: string;
|
|
2608
|
+
}
|
|
2609
|
+
interface SendBuyerPaymentsReceivedEmailResponse {
|
|
2610
|
+
}
|
|
2611
|
+
interface SendBuyerPickupConfirmationEmailRequest {
|
|
2612
|
+
/**
|
|
2613
|
+
* @minLength 1
|
|
2614
|
+
* @maxLength 100
|
|
2615
|
+
*/
|
|
2616
|
+
orderId?: string;
|
|
2617
|
+
}
|
|
2618
|
+
interface SendBuyerPickupConfirmationEmailResponse {
|
|
2619
|
+
}
|
|
2620
|
+
interface BulkSendBuyerPickupConfirmationEmailsRequest {
|
|
2621
|
+
/**
|
|
2622
|
+
* IDs of orders to send pickup emails for.
|
|
2623
|
+
* @minSize 1
|
|
2624
|
+
* @maxSize 300
|
|
2625
|
+
*/
|
|
2626
|
+
orderIds?: string[];
|
|
2627
|
+
}
|
|
2628
|
+
interface BulkSendBuyerPickupConfirmationEmailsResponse {
|
|
2629
|
+
}
|
|
2630
|
+
interface SendBuyerShippingConfirmationEmailRequest {
|
|
2631
|
+
/**
|
|
2632
|
+
* @minLength 1
|
|
2633
|
+
* @maxLength 100
|
|
2634
|
+
*/
|
|
2635
|
+
orderId?: string;
|
|
2636
|
+
}
|
|
2637
|
+
interface SendBuyerShippingConfirmationEmailResponse {
|
|
2638
|
+
}
|
|
2639
|
+
interface BulkSendBuyerShippingConfirmationEmailsRequest {
|
|
2640
|
+
/**
|
|
2641
|
+
* IDs of orders to send pickup emails for.
|
|
2642
|
+
* @minSize 1
|
|
2643
|
+
* @maxSize 300
|
|
2644
|
+
*/
|
|
2645
|
+
orderIds?: string[];
|
|
2646
|
+
}
|
|
2647
|
+
interface BulkSendBuyerShippingConfirmationEmailsResponse {
|
|
2648
|
+
}
|
|
2649
|
+
interface SendMerchantOrderReceivedNotificationRequest {
|
|
2650
|
+
/**
|
|
2651
|
+
* @minLength 1
|
|
2652
|
+
* @maxLength 100
|
|
2653
|
+
*/
|
|
2654
|
+
orderId?: string;
|
|
2655
|
+
}
|
|
2656
|
+
interface SendMerchantOrderReceivedNotificationResponse {
|
|
2657
|
+
}
|
|
2658
|
+
interface SendCancelRefundEmailRequest {
|
|
2659
|
+
/**
|
|
2660
|
+
* The ID of order that is canceled/refunded
|
|
2661
|
+
* @minLength 1
|
|
2662
|
+
* @maxLength 100
|
|
2663
|
+
*/
|
|
2664
|
+
orderId?: string;
|
|
2665
|
+
/**
|
|
2666
|
+
* Personal note added to the email (optional)
|
|
2667
|
+
* @minLength 1
|
|
2668
|
+
* @maxLength 1000
|
|
2669
|
+
*/
|
|
2670
|
+
customMessage?: string | null;
|
|
2671
|
+
/** Refund amount */
|
|
2672
|
+
refundAmount?: Price;
|
|
2673
|
+
/**
|
|
2674
|
+
* Refund ID. (Optional)
|
|
2675
|
+
* @format GUID
|
|
2676
|
+
*/
|
|
2677
|
+
refundId?: string | null;
|
|
2678
|
+
}
|
|
2679
|
+
interface SendCancelRefundEmailResponse {
|
|
2680
|
+
}
|
|
2681
|
+
interface SendRefundEmailRequest {
|
|
2682
|
+
/**
|
|
2683
|
+
* The ID of order that is refunded
|
|
2684
|
+
* @format GUID
|
|
2685
|
+
*/
|
|
2686
|
+
orderId?: string;
|
|
2687
|
+
/**
|
|
2688
|
+
* Refund ID
|
|
2689
|
+
* @format GUID
|
|
2690
|
+
*/
|
|
2691
|
+
refundId?: string;
|
|
2692
|
+
/**
|
|
2693
|
+
* Personal note added to the email (optional)
|
|
2694
|
+
* @minLength 1
|
|
2695
|
+
* @maxLength 1000
|
|
2696
|
+
*/
|
|
2697
|
+
customMessage?: string | null;
|
|
2698
|
+
}
|
|
2699
|
+
interface SendRefundEmailResponse {
|
|
2700
|
+
}
|
|
2701
|
+
interface SendMerchantOrderReceivedPushRequest {
|
|
2702
|
+
/**
|
|
2703
|
+
* @minLength 1
|
|
2704
|
+
* @maxLength 100
|
|
2705
|
+
*/
|
|
2706
|
+
orderId?: string;
|
|
2707
|
+
}
|
|
2708
|
+
interface SendMerchantOrderReceivedPushResponse {
|
|
2709
|
+
}
|
|
2710
|
+
interface PreviewEmailByTypeRequest {
|
|
2711
|
+
emailType?: PreviewEmailTypeWithLiterals;
|
|
2712
|
+
}
|
|
2713
|
+
declare enum PreviewEmailType {
|
|
2714
|
+
ORDER_PLACED = "ORDER_PLACED",
|
|
2715
|
+
DOWNLOAD_LINKS = "DOWNLOAD_LINKS",
|
|
2716
|
+
ORDER_SHIPPED = "ORDER_SHIPPED",
|
|
2717
|
+
ORDER_READY_FOR_PICKUP = "ORDER_READY_FOR_PICKUP"
|
|
2718
|
+
}
|
|
2719
|
+
/** @enumType */
|
|
2720
|
+
type PreviewEmailTypeWithLiterals = PreviewEmailType | 'ORDER_PLACED' | 'DOWNLOAD_LINKS' | 'ORDER_SHIPPED' | 'ORDER_READY_FOR_PICKUP';
|
|
2721
|
+
interface PreviewEmailByTypeResponse {
|
|
2722
|
+
emailPreview?: string;
|
|
2723
|
+
}
|
|
2724
|
+
interface PreviewRefundEmailRequest {
|
|
2725
|
+
/**
|
|
2726
|
+
* @minLength 1
|
|
2727
|
+
* @maxLength 100
|
|
2728
|
+
*/
|
|
2729
|
+
orderId?: string;
|
|
2730
|
+
/** Refund amount */
|
|
2731
|
+
refundAmount?: Price;
|
|
2732
|
+
/** Refund business details */
|
|
2733
|
+
details?: RefundDetails;
|
|
2734
|
+
/**
|
|
2735
|
+
* Personal note added to the email (optional)
|
|
2736
|
+
* @minLength 1
|
|
2737
|
+
* @maxLength 1000
|
|
2738
|
+
*/
|
|
2739
|
+
customMessage?: string | null;
|
|
2740
|
+
/**
|
|
2741
|
+
* Refund ID. (Optional)
|
|
2742
|
+
* @format GUID
|
|
2743
|
+
*/
|
|
2744
|
+
refundId?: string | null;
|
|
2745
|
+
}
|
|
2746
|
+
/** Business model of a refund request */
|
|
2747
|
+
interface RefundDetails {
|
|
2748
|
+
/**
|
|
2749
|
+
* Order line item IDs and quantities that were refunded.
|
|
2750
|
+
* @maxSize 300
|
|
2751
|
+
*/
|
|
2752
|
+
items?: RefundItem[];
|
|
2753
|
+
/** Whether the shipping fee was also refunded. */
|
|
2754
|
+
shippingIncluded?: boolean;
|
|
2755
|
+
/**
|
|
2756
|
+
* Reason for the refund, provided by customer (optional).
|
|
2757
|
+
* @maxLength 200
|
|
2758
|
+
*/
|
|
2759
|
+
reason?: string | null;
|
|
2760
|
+
/**
|
|
2761
|
+
* Line items that were refunded.
|
|
2762
|
+
* @maxSize 300
|
|
2763
|
+
*/
|
|
2764
|
+
lineItems?: LineItemRefund[];
|
|
2765
|
+
/**
|
|
2766
|
+
* Additional fees that were refunded.
|
|
2767
|
+
* @maxSize 100
|
|
2768
|
+
*/
|
|
2769
|
+
additionalFees?: AdditionalFeeRefund[];
|
|
2770
|
+
/** Shipping amount that was refunded. */
|
|
2771
|
+
shipping?: ShippingRefund;
|
|
2772
|
+
}
|
|
2773
|
+
interface RefundItem {
|
|
2774
|
+
/**
|
|
2775
|
+
* Line item ID the refunded line item.
|
|
2776
|
+
* @format GUID
|
|
2777
|
+
*/
|
|
2778
|
+
lineItemId?: string;
|
|
2779
|
+
/**
|
|
2780
|
+
* Line item quantity refunded.
|
|
2781
|
+
* @min 1
|
|
2782
|
+
* @max 100000
|
|
2783
|
+
*/
|
|
2784
|
+
quantity?: number;
|
|
2785
|
+
}
|
|
2786
|
+
interface LineItemRefund {
|
|
2787
|
+
/**
|
|
2788
|
+
* Line item ID.
|
|
2789
|
+
* @format GUID
|
|
2790
|
+
* @immutable
|
|
2791
|
+
*/
|
|
2792
|
+
lineItemId?: string;
|
|
2793
|
+
/**
|
|
2794
|
+
* Refund quantity.
|
|
2795
|
+
* @min 1
|
|
2796
|
+
* @max 100000
|
|
2797
|
+
* @immutable
|
|
2798
|
+
*/
|
|
2799
|
+
quantity?: number;
|
|
2800
|
+
}
|
|
2801
|
+
interface AdditionalFeeRefund {
|
|
2802
|
+
/**
|
|
2803
|
+
* Additional fee ID.
|
|
2804
|
+
* @format GUID
|
|
2805
|
+
* @immutable
|
|
2806
|
+
*/
|
|
2807
|
+
additionalFeeId?: string;
|
|
2808
|
+
/**
|
|
2809
|
+
* Refund amount.
|
|
2810
|
+
* @immutable
|
|
2811
|
+
*/
|
|
2812
|
+
amount?: Price;
|
|
2813
|
+
}
|
|
2814
|
+
interface ShippingRefund {
|
|
2815
|
+
/**
|
|
2816
|
+
* Refund amount.
|
|
2817
|
+
* @immutable
|
|
2818
|
+
*/
|
|
2819
|
+
amount?: Price;
|
|
2820
|
+
}
|
|
2821
|
+
interface PreviewRefundEmailResponse {
|
|
2822
|
+
emailPreview?: string;
|
|
2823
|
+
}
|
|
2824
|
+
interface PreviewCancelEmailRequest {
|
|
2825
|
+
/**
|
|
2826
|
+
* @minLength 1
|
|
2827
|
+
* @maxLength 100
|
|
2828
|
+
*/
|
|
2829
|
+
orderId?: string;
|
|
2830
|
+
/**
|
|
2831
|
+
* Personal note added to the email (optional)
|
|
2832
|
+
* @minLength 1
|
|
2833
|
+
* @maxLength 1000
|
|
2834
|
+
*/
|
|
2835
|
+
customMessage?: string | null;
|
|
2836
|
+
}
|
|
2837
|
+
interface PreviewCancelEmailResponse {
|
|
2838
|
+
emailPreview?: string;
|
|
2839
|
+
}
|
|
2840
|
+
interface PreviewCancelRefundEmailRequest {
|
|
2841
|
+
/**
|
|
2842
|
+
* @minLength 1
|
|
2843
|
+
* @maxLength 100
|
|
2844
|
+
*/
|
|
2845
|
+
orderId?: string;
|
|
2846
|
+
/**
|
|
2847
|
+
* Personal note added to the email (optional)
|
|
2848
|
+
* @minLength 1
|
|
2849
|
+
* @maxLength 1000
|
|
2850
|
+
*/
|
|
2851
|
+
customMessage?: string | null;
|
|
2852
|
+
/** Refund amount */
|
|
2853
|
+
refundAmount?: Price;
|
|
2854
|
+
/**
|
|
2855
|
+
* Refund ID. (Optional)
|
|
2856
|
+
* @format GUID
|
|
2857
|
+
*/
|
|
2858
|
+
refundId?: string | null;
|
|
2859
|
+
}
|
|
2860
|
+
interface PreviewCancelRefundEmailResponse {
|
|
2861
|
+
emailPreview?: string;
|
|
2862
|
+
}
|
|
2863
|
+
interface PreviewBuyerPaymentsReceivedEmailRequest {
|
|
2864
|
+
}
|
|
2865
|
+
interface PreviewBuyerPaymentsReceivedEmailResponse {
|
|
2866
|
+
emailPreview?: string;
|
|
2867
|
+
}
|
|
2868
|
+
interface PreviewBuyerConfirmationEmailRequest {
|
|
2869
|
+
}
|
|
2870
|
+
interface PreviewBuyerConfirmationEmailResponse {
|
|
2871
|
+
emailPreview?: string;
|
|
2872
|
+
}
|
|
2873
|
+
interface PreviewBuyerPickupConfirmationEmailRequest {
|
|
2874
|
+
}
|
|
2875
|
+
interface PreviewBuyerPickupConfirmationEmailResponse {
|
|
2876
|
+
emailPreview?: string;
|
|
2877
|
+
}
|
|
2878
|
+
interface PreviewShippingConfirmationEmailRequest {
|
|
2879
|
+
}
|
|
2880
|
+
interface PreviewShippingConfirmationEmailResponse {
|
|
2881
|
+
emailPreview?: string;
|
|
2882
|
+
}
|
|
2883
|
+
interface PreviewResendDownloadLinksEmailRequest {
|
|
2884
|
+
}
|
|
2885
|
+
interface PreviewResendDownloadLinksEmailResponse {
|
|
2886
|
+
emailPreview?: string;
|
|
2887
|
+
}
|
|
2888
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
2889
|
+
createdEvent?: EntityCreatedEvent;
|
|
2890
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2891
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2892
|
+
actionEvent?: ActionEvent;
|
|
2893
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
2894
|
+
_id?: string;
|
|
2895
|
+
/**
|
|
2896
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
2897
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
2898
|
+
*/
|
|
2899
|
+
entityFqdn?: string;
|
|
2900
|
+
/**
|
|
2901
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
2902
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
2903
|
+
*/
|
|
2904
|
+
slug?: string;
|
|
2905
|
+
/** ID of the entity associated with the event. */
|
|
2906
|
+
entityId?: string;
|
|
2907
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
2908
|
+
eventTime?: Date | null;
|
|
2909
|
+
/**
|
|
2910
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
2911
|
+
* (for example, GDPR).
|
|
2912
|
+
*/
|
|
2913
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
2914
|
+
/** If present, indicates the action that triggered the event. */
|
|
2915
|
+
originatedFrom?: string | null;
|
|
2916
|
+
/**
|
|
2917
|
+
* 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.
|
|
2918
|
+
* 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.
|
|
2919
|
+
*/
|
|
2920
|
+
entityEventSequence?: string | null;
|
|
2921
|
+
}
|
|
2922
|
+
/** @oneof */
|
|
2923
|
+
interface DomainEventBodyOneOf {
|
|
2924
|
+
createdEvent?: EntityCreatedEvent;
|
|
2925
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2926
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2927
|
+
actionEvent?: ActionEvent;
|
|
2928
|
+
}
|
|
2929
|
+
interface EntityCreatedEvent {
|
|
2930
|
+
entity?: string;
|
|
2931
|
+
}
|
|
2932
|
+
interface RestoreInfo {
|
|
2933
|
+
deletedDate?: Date | null;
|
|
2934
|
+
}
|
|
2935
|
+
interface EntityUpdatedEvent {
|
|
2936
|
+
/**
|
|
2937
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
2938
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
2939
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2940
|
+
*/
|
|
2941
|
+
currentEntity?: string;
|
|
2942
|
+
}
|
|
2943
|
+
interface EntityDeletedEvent {
|
|
2944
|
+
/** Entity that was deleted. */
|
|
2945
|
+
deletedEntity?: string | null;
|
|
2946
|
+
}
|
|
2947
|
+
interface ActionEvent {
|
|
2948
|
+
body?: string;
|
|
2949
|
+
}
|
|
2950
|
+
interface Empty {
|
|
2951
|
+
}
|
|
2952
|
+
interface MessageEnvelope {
|
|
2953
|
+
/**
|
|
2954
|
+
* App instance ID.
|
|
2955
|
+
* @format GUID
|
|
2956
|
+
*/
|
|
2957
|
+
instanceId?: string | null;
|
|
2958
|
+
/**
|
|
2959
|
+
* Event type.
|
|
2960
|
+
* @maxLength 150
|
|
2961
|
+
*/
|
|
2962
|
+
eventType?: string;
|
|
2963
|
+
/** The identification type and identity data. */
|
|
2964
|
+
identity?: IdentificationData;
|
|
2965
|
+
/** Stringify payload. */
|
|
2966
|
+
data?: string;
|
|
2967
|
+
}
|
|
2968
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
2969
|
+
/**
|
|
2970
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2971
|
+
* @format GUID
|
|
2972
|
+
*/
|
|
2973
|
+
anonymousVisitorId?: string;
|
|
2974
|
+
/**
|
|
2975
|
+
* ID of a site visitor that has logged in to the site.
|
|
2976
|
+
* @format GUID
|
|
2977
|
+
*/
|
|
2978
|
+
memberId?: string;
|
|
2979
|
+
/**
|
|
2980
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2981
|
+
* @format GUID
|
|
2982
|
+
*/
|
|
2983
|
+
wixUserId?: string;
|
|
2984
|
+
/**
|
|
2985
|
+
* ID of an app.
|
|
2986
|
+
* @format GUID
|
|
2987
|
+
*/
|
|
2988
|
+
appId?: string;
|
|
2989
|
+
/** @readonly */
|
|
2990
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
2991
|
+
}
|
|
2992
|
+
/** @oneof */
|
|
2993
|
+
interface IdentificationDataIdOneOf {
|
|
2994
|
+
/**
|
|
2995
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2996
|
+
* @format GUID
|
|
2997
|
+
*/
|
|
2998
|
+
anonymousVisitorId?: string;
|
|
2999
|
+
/**
|
|
3000
|
+
* ID of a site visitor that has logged in to the site.
|
|
3001
|
+
* @format GUID
|
|
3002
|
+
*/
|
|
3003
|
+
memberId?: string;
|
|
3004
|
+
/**
|
|
3005
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3006
|
+
* @format GUID
|
|
3007
|
+
*/
|
|
3008
|
+
wixUserId?: string;
|
|
3009
|
+
/**
|
|
3010
|
+
* ID of an app.
|
|
3011
|
+
* @format GUID
|
|
3012
|
+
*/
|
|
3013
|
+
appId?: string;
|
|
3014
|
+
}
|
|
3015
|
+
declare enum WebhookIdentityType {
|
|
3016
|
+
UNKNOWN = "UNKNOWN",
|
|
3017
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3018
|
+
MEMBER = "MEMBER",
|
|
3019
|
+
WIX_USER = "WIX_USER",
|
|
3020
|
+
APP = "APP"
|
|
3021
|
+
}
|
|
3022
|
+
/** @enumType */
|
|
3023
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
2596
3024
|
interface PreparePaymentCollectionRequest {
|
|
2597
3025
|
/**
|
|
2598
3026
|
* Ecom order ID.
|
|
@@ -3007,81 +3435,6 @@ interface PaymentRefund {
|
|
|
3007
3435
|
*/
|
|
3008
3436
|
externalRefund?: boolean;
|
|
3009
3437
|
}
|
|
3010
|
-
/** Business model of a refund request */
|
|
3011
|
-
interface RefundDetails {
|
|
3012
|
-
/**
|
|
3013
|
-
* Order line item IDs and quantities that were refunded.
|
|
3014
|
-
* @maxSize 300
|
|
3015
|
-
*/
|
|
3016
|
-
items?: RefundItem[];
|
|
3017
|
-
/** Whether the shipping fee was also refunded. */
|
|
3018
|
-
shippingIncluded?: boolean;
|
|
3019
|
-
/**
|
|
3020
|
-
* Reason for the refund, provided by customer (optional).
|
|
3021
|
-
* @maxLength 200
|
|
3022
|
-
*/
|
|
3023
|
-
reason?: string | null;
|
|
3024
|
-
/**
|
|
3025
|
-
* Line items that were refunded.
|
|
3026
|
-
* @maxSize 300
|
|
3027
|
-
*/
|
|
3028
|
-
lineItems?: LineItemRefund[];
|
|
3029
|
-
/**
|
|
3030
|
-
* Additional fees that were refunded.
|
|
3031
|
-
* @maxSize 100
|
|
3032
|
-
*/
|
|
3033
|
-
additionalFees?: AdditionalFeeRefund[];
|
|
3034
|
-
/** Shipping amount that was refunded. */
|
|
3035
|
-
shipping?: ShippingRefund;
|
|
3036
|
-
}
|
|
3037
|
-
interface RefundItem {
|
|
3038
|
-
/**
|
|
3039
|
-
* Line item ID the refunded line item.
|
|
3040
|
-
* @format GUID
|
|
3041
|
-
*/
|
|
3042
|
-
lineItemId?: string;
|
|
3043
|
-
/**
|
|
3044
|
-
* Line item quantity refunded.
|
|
3045
|
-
* @min 1
|
|
3046
|
-
* @max 100000
|
|
3047
|
-
*/
|
|
3048
|
-
quantity?: number;
|
|
3049
|
-
}
|
|
3050
|
-
interface LineItemRefund {
|
|
3051
|
-
/**
|
|
3052
|
-
* Line item ID.
|
|
3053
|
-
* @format GUID
|
|
3054
|
-
* @immutable
|
|
3055
|
-
*/
|
|
3056
|
-
lineItemId?: string;
|
|
3057
|
-
/**
|
|
3058
|
-
* Refund quantity.
|
|
3059
|
-
* @min 1
|
|
3060
|
-
* @max 100000
|
|
3061
|
-
* @immutable
|
|
3062
|
-
*/
|
|
3063
|
-
quantity?: number;
|
|
3064
|
-
}
|
|
3065
|
-
interface AdditionalFeeRefund {
|
|
3066
|
-
/**
|
|
3067
|
-
* Additional fee ID.
|
|
3068
|
-
* @format GUID
|
|
3069
|
-
* @immutable
|
|
3070
|
-
*/
|
|
3071
|
-
additionalFeeId?: string;
|
|
3072
|
-
/**
|
|
3073
|
-
* Refund amount.
|
|
3074
|
-
* @immutable
|
|
3075
|
-
*/
|
|
3076
|
-
amount?: Price;
|
|
3077
|
-
}
|
|
3078
|
-
interface ShippingRefund {
|
|
3079
|
-
/**
|
|
3080
|
-
* Refund amount.
|
|
3081
|
-
* @immutable
|
|
3082
|
-
*/
|
|
3083
|
-
amount?: Price;
|
|
3084
|
-
}
|
|
3085
3438
|
interface RefundSideEffects {
|
|
3086
3439
|
/** Inventory restock details as part of this refund. */
|
|
3087
3440
|
restockInfo?: RestockInfo;
|
|
@@ -3783,142 +4136,6 @@ interface ChargeSavedPaymentMethodResponse {
|
|
|
3783
4136
|
/** Payment gateway's order ID (e.g Wix Payments) */
|
|
3784
4137
|
paymentGatewayOrderId?: string;
|
|
3785
4138
|
}
|
|
3786
|
-
interface DomainEvent extends DomainEventBodyOneOf {
|
|
3787
|
-
createdEvent?: EntityCreatedEvent;
|
|
3788
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
3789
|
-
deletedEvent?: EntityDeletedEvent;
|
|
3790
|
-
actionEvent?: ActionEvent;
|
|
3791
|
-
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
3792
|
-
_id?: string;
|
|
3793
|
-
/**
|
|
3794
|
-
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
3795
|
-
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
3796
|
-
*/
|
|
3797
|
-
entityFqdn?: string;
|
|
3798
|
-
/**
|
|
3799
|
-
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
3800
|
-
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
3801
|
-
*/
|
|
3802
|
-
slug?: string;
|
|
3803
|
-
/** ID of the entity associated with the event. */
|
|
3804
|
-
entityId?: string;
|
|
3805
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
3806
|
-
eventTime?: Date | null;
|
|
3807
|
-
/**
|
|
3808
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
3809
|
-
* (for example, GDPR).
|
|
3810
|
-
*/
|
|
3811
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
3812
|
-
/** If present, indicates the action that triggered the event. */
|
|
3813
|
-
originatedFrom?: string | null;
|
|
3814
|
-
/**
|
|
3815
|
-
* 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.
|
|
3816
|
-
* 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.
|
|
3817
|
-
*/
|
|
3818
|
-
entityEventSequence?: string | null;
|
|
3819
|
-
}
|
|
3820
|
-
/** @oneof */
|
|
3821
|
-
interface DomainEventBodyOneOf {
|
|
3822
|
-
createdEvent?: EntityCreatedEvent;
|
|
3823
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
3824
|
-
deletedEvent?: EntityDeletedEvent;
|
|
3825
|
-
actionEvent?: ActionEvent;
|
|
3826
|
-
}
|
|
3827
|
-
interface EntityCreatedEvent {
|
|
3828
|
-
entity?: string;
|
|
3829
|
-
}
|
|
3830
|
-
interface RestoreInfo {
|
|
3831
|
-
deletedDate?: Date | null;
|
|
3832
|
-
}
|
|
3833
|
-
interface EntityUpdatedEvent {
|
|
3834
|
-
/**
|
|
3835
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
3836
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
3837
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
3838
|
-
*/
|
|
3839
|
-
currentEntity?: string;
|
|
3840
|
-
}
|
|
3841
|
-
interface EntityDeletedEvent {
|
|
3842
|
-
/** Entity that was deleted. */
|
|
3843
|
-
deletedEntity?: string | null;
|
|
3844
|
-
}
|
|
3845
|
-
interface ActionEvent {
|
|
3846
|
-
body?: string;
|
|
3847
|
-
}
|
|
3848
|
-
interface Empty {
|
|
3849
|
-
}
|
|
3850
|
-
interface MessageEnvelope {
|
|
3851
|
-
/**
|
|
3852
|
-
* App instance ID.
|
|
3853
|
-
* @format GUID
|
|
3854
|
-
*/
|
|
3855
|
-
instanceId?: string | null;
|
|
3856
|
-
/**
|
|
3857
|
-
* Event type.
|
|
3858
|
-
* @maxLength 150
|
|
3859
|
-
*/
|
|
3860
|
-
eventType?: string;
|
|
3861
|
-
/** The identification type and identity data. */
|
|
3862
|
-
identity?: IdentificationData;
|
|
3863
|
-
/** Stringify payload. */
|
|
3864
|
-
data?: string;
|
|
3865
|
-
}
|
|
3866
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
3867
|
-
/**
|
|
3868
|
-
* ID of a site visitor that has not logged in to the site.
|
|
3869
|
-
* @format GUID
|
|
3870
|
-
*/
|
|
3871
|
-
anonymousVisitorId?: string;
|
|
3872
|
-
/**
|
|
3873
|
-
* ID of a site visitor that has logged in to the site.
|
|
3874
|
-
* @format GUID
|
|
3875
|
-
*/
|
|
3876
|
-
memberId?: string;
|
|
3877
|
-
/**
|
|
3878
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
3879
|
-
* @format GUID
|
|
3880
|
-
*/
|
|
3881
|
-
wixUserId?: string;
|
|
3882
|
-
/**
|
|
3883
|
-
* ID of an app.
|
|
3884
|
-
* @format GUID
|
|
3885
|
-
*/
|
|
3886
|
-
appId?: string;
|
|
3887
|
-
/** @readonly */
|
|
3888
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
3889
|
-
}
|
|
3890
|
-
/** @oneof */
|
|
3891
|
-
interface IdentificationDataIdOneOf {
|
|
3892
|
-
/**
|
|
3893
|
-
* ID of a site visitor that has not logged in to the site.
|
|
3894
|
-
* @format GUID
|
|
3895
|
-
*/
|
|
3896
|
-
anonymousVisitorId?: string;
|
|
3897
|
-
/**
|
|
3898
|
-
* ID of a site visitor that has logged in to the site.
|
|
3899
|
-
* @format GUID
|
|
3900
|
-
*/
|
|
3901
|
-
memberId?: string;
|
|
3902
|
-
/**
|
|
3903
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
3904
|
-
* @format GUID
|
|
3905
|
-
*/
|
|
3906
|
-
wixUserId?: string;
|
|
3907
|
-
/**
|
|
3908
|
-
* ID of an app.
|
|
3909
|
-
* @format GUID
|
|
3910
|
-
*/
|
|
3911
|
-
appId?: string;
|
|
3912
|
-
}
|
|
3913
|
-
declare enum WebhookIdentityType {
|
|
3914
|
-
UNKNOWN = "UNKNOWN",
|
|
3915
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3916
|
-
MEMBER = "MEMBER",
|
|
3917
|
-
WIX_USER = "WIX_USER",
|
|
3918
|
-
APP = "APP"
|
|
3919
|
-
}
|
|
3920
|
-
/** @enumType */
|
|
3921
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3922
4139
|
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
3923
4140
|
/** insert/update documents */
|
|
3924
4141
|
update?: InternalDocumentUpdateOperation;
|
|
@@ -7490,4 +7707,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
7490
7707
|
unassignTags?: Tags;
|
|
7491
7708
|
}
|
|
7492
7709
|
|
|
7493
|
-
export { type AggregateOrdersResponse as $, type UpdateOrderLineItemIdentifiers as A, type BulkMarkOrdersAsPaidResponse as B, type CreatePaymentGatewayOrderResponse as C, type UpdateOrderLineItem as D, type UpdateOrderLineItemResponse as E, type PublicActivity as F, type GetPaymentCollectabilityStatusResponse as G, type AddActivityResponse as H, type UpdateActivityIdentifiers as I, type UpdateActivityResponse as J, type DeleteActivityIdentifiers as K, type DeleteActivityResponse as L, type MarkOrderAsPaidResponse as M, type CancelOrderOptions as N, type Order as O, type Price as P, type CancelOrderResponse as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SearchOrdersResponse as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type CancelOrderApplicationErrors as W, type OrderStatusWithLiterals as X, type UpdateOrderStatusResponse as Y, type UpdateOrderStatusApplicationErrors as Z, type AggregateOrdersOptions as _, type PreparePaymentCollectionOptions as a, type FocalPoint as a$, type BulkUpdateOrderTagsOptions as a0, type BulkUpdateOrderTagsResponse as a1, type OrderApprovedEnvelope as a2, type OrderUpdatedEnvelope as a3, type OrderCanceledEnvelope as a4, type OrderCreatedEnvelope as a5, type OrderPaymentStatusUpdatedEnvelope as a6, DescriptionLineType as a7, ItemTypeItemType as a8, PaymentOptionType as a9, Reason as aA, ActionType as aB, ChargebackStatus as aC, MembershipPaymentStatus as aD, RefundStatus as aE, WebhookIdentityType as aF, VersioningMode as aG, SortOrder as aH, OrderApprovalStrategy as aI, DeltaPaymentOptionType as aJ, InventoryAction as aK, Placement as aL, SubdivisionType as aM, SourceType as aN, CustomFieldGroup as aO, ValueType as aP, DepositType as aQ, InvoiceStatus as aR, type OrderLineItem as aS, type ProductName as aT, type CatalogReference as aU, type DescriptionLine as aV, type DescriptionLineValueOneOf as aW, type DescriptionLineDescriptionLineValueOneOf as aX, type DescriptionLineName as aY, type PlainTextValue as aZ, type Color as a_, JurisdictionType as aa, SubscriptionFrequency as ab, AdjustmentType as ac, TaxableAddressType as ad, PaymentStatus as ae, FulfillmentStatus as af, WeightUnit as ag, VatType as ah, PickupMethod as ai, OrderStatus as aj, DiscountType as ak, DiscountReason as al, LineItemQuantityChangeType as am, ActivityType as an, AttributionSource as ao, ChannelType as ap, ScheduledAction as aq, DurationUnit as ar, PaymentCollectabilityStatus as as, RefundableStatus as at, NonRefundableReason as au, ManuallyRefundableReason as av, RestockType as aw, TransactionStatus as ax, AuthorizationCaptureStatus as ay, AuthorizationVoidStatus as az, type PreparePaymentCollectionResponse as b, type LineItemQuantityChange as b$, type PhysicalProperties as b0, type ItemType as b1, type ItemTypeItemTypeDataOneOf as b2, type ItemTaxFullDetails as b3, type LineItemTaxInfo as b4, type LineItemTaxBreakdown as b5, type DigitalFile as b6, type SubscriptionInfo as b7, type SubscriptionTitle as b8, type SubscriptionDescription as b9, type PickupAddress as bA, type DeliveryTimeSlot as bB, type ShippingPrice as bC, type ShippingRegion as bD, type TaxSummary as bE, type OrderTaxInfo as bF, type OrderTaxBreakdown as bG, type AppliedDiscount as bH, type AppliedDiscountDiscountSourceOneOf as bI, type Coupon as bJ, type MerchantDiscount as bK, type MerchantDiscountMerchantDiscountReasonOneOf as bL, type DiscountRule as bM, type DiscountRuleName as bN, type LineItemDiscount as bO, type Activity as bP, type ActivityContentOneOf as bQ, type CustomActivity as bR, type MerchantComment as bS, type OrderRefunded as bT, type OrderCreatedFromExchange as bU, type NewExchangeOrderCreated as bV, type LineItemExchangeData as bW, type DraftOrderChangesApplied as bX, type OrderChange as bY, type OrderChangeValueOneOf as bZ, type LineItemChanges as b_, type SubscriptionSettings as ba, type FreeTrialPeriod as bb, type BillingAdjustment as bc, type BillingAdjustmentPriceSummary as bd, type PriceDescription as be, type LocationAndQuantity as bf, type TaxableAddress as bg, type TaxableAddressTaxableAddressDataOneOf as bh, type ExtendedFields as bi, type ModifierGroup as bj, type TranslatableString as bk, type ItemModifier as bl, type BuyerInfo as bm, type BuyerInfoIdOneOf as bn, type CurrencyConversionDetails as bo, type PriceSummary as bp, type AddressWithContact as bq, type Address as br, type StreetAddress as bs, type AddressLocation as bt, type FullAddressContactDetails as bu, type VatId as bv, type V1ShippingInformation as bw, type DeliveryLogistics as bx, type DeliveryLogisticsAddressOneOf as by, type PickupDetails as bz, type PreparePaymentCollectionApplicationErrors as c, type BulkMarkOrdersAsPaidRequest as c$, type LineItemPriceChange as c0, type ManagedLineItem as c1, type ManagedDiscount as c2, type TranslatedValue as c3, type LineItemAmount as c4, type ManagedAdditionalFee as c5, type TotalPriceChange as c6, type ShippingInformationChange as c7, type ShippingInformation as c8, type SavedPaymentMethod as c9, 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 PreparePaymentCollectionRequest as cT, type RedirectUrls as cU, type DelayedCaptureSettings as cV, type Duration as cW, type GetPaymentCollectabilityStatusRequest as cX, type RecordManuallyCollectedPaymentRequest as cY, type RecordManuallyCollectedPaymentResponse as cZ, type MarkOrderAsPaidRequest as c_, type AuthorizedPaymentCreated as ca, type AuthorizedPaymentCaptured as cb, type AuthorizedPaymentVoided as cc, type RefundInitiated as cd, type RefundedPayment as ce, type RefundedPaymentKindOneOf as cf, type RegularPaymentRefund as cg, type GiftCardPaymentRefund as ch, type MembershipPaymentRefund as ci, type PaymentRefunded as cj, type PaymentRefundFailed as ck, type RefundedAsStoreCredit as cl, type PaymentPending as cm, type PaymentPendingPaymentDetailsOneOf as cn, type RegularPayment as co, type RegularPaymentPaymentMethodDetailsOneOf as cp, type CreditCardDetails as cq, type PaymentCanceled as cr, type PaymentCanceledPaymentDetailsOneOf as cs, type PaymentDeclined as ct, type PaymentDeclinedPaymentDetailsOneOf as cu, type ReceiptCreated as cv, type ReceiptCreatedReceiptInfoOneOf as cw, type WixReceipt as cx, type ExternalReceipt as cy, type ReceiptSent as cz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as d, type MessageEnvelope as d$, type BulkOrderResult as d0, type ItemMetadata as d1, type ApplicationError as d2, type BulkActionMetadata as d3, type GetRefundabilityStatusRequest as d4, type Refundability as d5, type RefundabilityAdditionalRefundabilityInfoOneOf as d6, type CreatePaymentGatewayOrderRequest as d7, type ChargedBy as d8, type ChargeMembershipsRequest as d9, type Chargeback as dA, type GiftCardPaymentDetails as dB, type MembershipPaymentDetails as dC, type WixReceiptInfo as dD, type ExternalReceiptInfo as dE, type Refund as dF, type RefundTransaction as dG, type RefundStatusInfo as dH, type AggregatedRefundSummary as dI, type RefundItemsBreakdown as dJ, type LineItemRefundSummary as dK, type CalculateRefundRequest as dL, type CalculateRefundItemRequest as dM, type CalculateRefundResponse as dN, type CalculateRefundItemResponse as dO, type VoidAuthorizedPaymentsRequest as dP, type CaptureAuthorizedPaymentsRequest as dQ, type ChargeSavedPaymentMethodRequest as dR, type ChargeSavedPaymentMethodResponse as dS, type DomainEvent as dT, type DomainEventBodyOneOf as dU, type EntityCreatedEvent as dV, type RestoreInfo as dW, type EntityUpdatedEvent as dX, type EntityDeletedEvent as dY, type ActionEvent as dZ, type Empty as d_, type MembershipChargeItem as da, type MembershipName as db, type ServiceProperties as dc, type ChargeMembershipsResponse as dd, type TriggerRefundRequest as de, type RefundDetails as df, type RefundItem as dg, type LineItemRefund as dh, type AdditionalFeeRefund as di, type ShippingRefund as dj, type RefundSideEffects as dk, type RestockInfo as dl, type RestockItem as dm, type OrderTransactions as dn, type Payment as dp, type PaymentPaymentDetailsOneOf as dq, type PaymentReceiptInfoOneOf as dr, type RegularPaymentDetails as ds, type RegularPaymentDetailsPaymentMethodDetailsOneOf as dt, type CreditCardPaymentMethodDetails as du, type AuthorizationDetails as dv, type AuthorizationCapture as dw, type AuthorizationActionFailureDetails as dx, type AuthorizationVoid as dy, type V1ScheduledAction as dz, type GetRefundabilityStatusResponse as e, type CommittedDiffs as e$, type IdentificationData as e0, type IdentificationDataIdOneOf as e1, type UpdateInternalDocumentsEvent as e2, type UpdateInternalDocumentsEventOperationOneOf as e3, type InternalDocument as e4, type InternalDocumentUpdateOperation as e5, type DeleteByIdsOperation as e6, type DeleteByFilterOperation as e7, type InternalDocumentUpdateByFilterOperation as e8, type InternalUpdateExistingOperation as e9, type CursorSearch as eA, type CursorSearchPagingMethodOneOf as eB, type CursorPagingMetadata as eC, type CreateOrderRequest as eD, type OrderCreationSettings as eE, type OrderCreateNotifications as eF, type CreateOrderResponse as eG, type UpdateOrderRequest as eH, type UpdateOrderResponse as eI, type BulkUpdateOrdersRequest as eJ, type CommitDeltasRequest as eK, type DraftOrderDiffs as eL, type DraftOrderDiffsShippingUpdateInfoOneOf as eM, type DraftOrderDiffsBuyerUpdateInfoOneOf as eN, type DraftOrderDiffsBillingUpdateInfoOneOf as eO, type DraftOrderDiffsRecipientUpdateInfoOneOf as eP, type V1LineItemDelta as eQ, type V1LineItemDeltaDeltaOneOf as eR, type OrderLineItemChangedDetails as eS, type ItemChangedDetails as eT, type AppliedDiscountDelta as eU, type AppliedDiscountDeltaDeltaOneOf as eV, type AdditionalFeeDelta as eW, type AdditionalFeeDeltaDeltaOneOf as eX, type DraftOrderCommitSettings as eY, type InventoryUpdateDetails as eZ, type OrderDeltasCommitted as e_, type VersionedDocumentUpdateOperation as ea, type VersionedDeleteByIdsOperation as eb, type VersionedDocumentId as ec, type TriggerReindexRequest as ed, type TriggerReindexResponse as ee, type BatchOfTriggerReindexOrderRequest as ef, type TriggerReindexOrderRequest as eg, type DiffmatokyPayload as eh, type ErrorInformation as ei, type ContinueSideEffectsFlowInLegacyData as ej, type SnapshotMessage as ek, type IndexingMessage as el, type GetOrderRequest as em, type GetOrderResponse as en, type InternalQueryOrdersRequest as eo, type PlatformQuery as ep, type PlatformQueryPagingMethodOneOf as eq, type Sorting as er, type PlatformPaging as es, type CursorPaging as et, type InternalQueryOrdersResponse as eu, type PlatformPagingMetadata as ev, type Cursors as ew, type QueryOrderRequest as ex, type QueryOrderResponse as ey, type SearchOrdersRequest as ez, type PaymentCollectionCreatePaymentGatewayOrderOptions as f, type OrderCanceledEventOrderCanceled as f$, type CommittedDiffsShippingUpdateInfoOneOf as f0, type LineItemDelta as f1, type LineItemDeltaDeltaOneOf as f2, type ArchiveOrderRequest as f3, type ArchiveOrderResponse as f4, type BulkArchiveOrdersRequest as f5, type BulkArchiveOrdersResponse as f6, type BulkArchiveOrdersByFilterRequest as f7, type BulkArchiveOrdersByFilterResponse as f8, type UnArchiveOrderRequest as f9, type DownloadLinkSent as fA, type TrackingNumberAdded as fB, type TrackingNumberEdited as fC, type TrackingLinkAdded as fD, type ShippingConfirmationEmailSent as fE, type InvoiceAdded as fF, type InvoiceSent as fG, type FulfillerEmailSent as fH, type ShippingAddressEdited as fI, type EmailEdited as fJ, type PickupReadyEmailSent as fK, type OrderPartiallyPaid as fL, type OrderPending as fM, type OrderRejected as fN, type AddInternalActivityResponse as fO, type AddActivityRequest as fP, type PublicActivityContentOneOf as fQ, type AddActivitiesRequest as fR, type AddActivitiesResponse as fS, type UpdateActivityRequest as fT, type DeleteActivityRequest as fU, type UpdateLineItemsDescriptionLinesRequest as fV, type LineItemUpdate as fW, type UpdateLineItemsDescriptionLinesResponse as fX, type MarkOrderAsSeenByHumanRequest as fY, type MarkOrderAsSeenByHumanResponse as fZ, type CancelOrderRequest as f_, type UnArchiveOrderResponse as fa, type BulkUnArchiveOrdersRequest as fb, type BulkUnArchiveOrdersResponse as fc, type BulkUnArchiveOrdersByFilterRequest as fd, type BulkUnArchiveOrdersByFilterResponse as fe, type UpdateBuyerInfoRequest as ff, type BuyerInfoUpdate as fg, type UpdateBuyerInfoResponse as fh, type UpdateBuyerEmailRequest as fi, type UpdateBuyerEmailResponse as fj, type UpdateOrderShippingAddressRequest as fk, type UpdateOrderShippingAddressResponse as fl, type UpdateBillingContactDetailsRequest as fm, type UpdateBillingContactDetailsResponse as fn, type UpdateOrderLineItemRequest as fo, type UpdateOrderLineItemsRequest as fp, type MaskedOrderLineItem as fq, type UpdateOrderLineItemsResponse as fr, type AddInternalActivityRequest as fs, type InternalActivity as ft, type InternalActivityContentOneOf as fu, type OrderPlaced as fv, type OrderPaid as fw, type OrderFulfilled as fx, type OrderNotFulfilled as fy, type OrderCanceled as fz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as g, type DiscountOneDiscountTypeOneOf as g$, type UpdateOrderStatusRequest as g0, type MarkAsFulfilledRequest as g1, type MarkAsFulfilledResponse as g2, type FulfillmentStatusUpdated as g3, type BulkMarkAsFulfilledRequest as g4, type BulkMarkAsFulfilledResponse as g5, type BulkMarkAsFulfilledByFilterRequest as g6, type BulkMarkAsFulfilledByFilterResponse as g7, type MarkAsUnfulfilledRequest as g8, type MarkAsUnfulfilledResponse as g9, type Complete as gA, type Cancel as gB, type Reschedule as gC, type InvoiceSentEvent as gD, type IdAndVersion as gE, type InvoiceFields as gF, type Customer as gG, type Email as gH, type QuotesAddress as gI, type AddressDescription as gJ, type Phone as gK, type Company as gL, type CommonAddress as gM, type CommonAddressStreetOneOf as gN, type Subdivision as gO, type StandardDetails as gP, type InvoiceDates as gQ, type LineItems as gR, type LineItem as gS, type BigDecimalWrapper as gT, type LineItemTax as gU, type Source as gV, type LineItemMetaData as gW, type Locale as gX, type TotalPrice as gY, type ItemizedFee as gZ, type Discount as g_, type BulkMarkAsUnfulfilledRequest as ga, type BulkMarkAsUnfulfilledResponse as gb, type BulkMarkAsUnfulfilledByFilterRequest as gc, type BulkMarkAsUnfulfilledByFilterResponse as gd, type BulkSetBusinessLocationRequest as ge, type BulkSetBusinessLocationResponse as gf, type BulkSetBusinessLocationResult as gg, type V1MarkOrderAsPaidRequest as gh, type V1MarkOrderAsPaidResponse as gi, type PaymentStatusUpdated as gj, type V1BulkMarkOrdersAsPaidRequest as gk, type V1BulkMarkOrdersAsPaidResponse as gl, type V1CreatePaymentGatewayOrderRequest as gm, type V1CreatePaymentGatewayOrderResponse as gn, type GetShipmentsRequest as go, type GetShipmentsResponse as gp, type AggregateOrdersRequest as gq, type DecrementItemsQuantityRequest as gr, type DecrementData as gs, type DecrementItemsQuantityResponse as gt, type BulkUpdateOrderTagsRequest as gu, type BulkUpdateOrderTagsResult as gv, type Task as gw, type TaskKey as gx, type TaskAction as gy, type TaskActionActionOneOf as gz, type ChargeMembershipsOptions as h, onOrderPaymentStatusUpdated as h$, type CalculatedTaxes as h0, type CalculatedTax as h1, type Payments as h2, type InvoicesPayment as h3, type MetaData as h4, type InvoiceDynamicPriceTotals as h5, type CustomFieldValue as h6, type Value as h7, type Deposit as h8, type TriggerSideEffectsFromLegacyData as h9, type ManuallyRefundableReasonWithLiterals as hA, type RestockTypeWithLiterals as hB, type TransactionStatusWithLiterals as hC, type AuthorizationCaptureStatusWithLiterals as hD, type AuthorizationVoidStatusWithLiterals as hE, type ReasonWithLiterals as hF, type ActionTypeWithLiterals as hG, type ChargebackStatusWithLiterals as hH, type MembershipPaymentStatusWithLiterals as hI, type RefundStatusWithLiterals as hJ, type WebhookIdentityTypeWithLiterals as hK, type VersioningModeWithLiterals as hL, type SortOrderWithLiterals as hM, type OrderApprovalStrategyWithLiterals as hN, type DeltaPaymentOptionTypeWithLiterals as hO, type InventoryActionWithLiterals as hP, type PlacementWithLiterals as hQ, type SubdivisionTypeWithLiterals as hR, type SourceTypeWithLiterals as hS, type CustomFieldGroupWithLiterals as hT, type ValueTypeWithLiterals as hU, type DepositTypeWithLiterals as hV, type InvoiceStatusWithLiterals as hW, onOrderApproved as hX, onOrderUpdated as hY, onOrderCanceled as hZ, onOrderCreated as h_, type BaseEventMetadata as ha, type EventMetadata as hb, type OrderSearchSpec as hc, type DescriptionLineTypeWithLiterals as hd, type ItemTypeItemTypeWithLiterals as he, type PaymentOptionTypeWithLiterals as hf, type JurisdictionTypeWithLiterals as hg, type SubscriptionFrequencyWithLiterals as hh, type AdjustmentTypeWithLiterals as hi, type TaxableAddressTypeWithLiterals as hj, type PaymentStatusWithLiterals as hk, type FulfillmentStatusWithLiterals as hl, type WeightUnitWithLiterals as hm, type VatTypeWithLiterals as hn, type PickupMethodWithLiterals as ho, type DiscountTypeWithLiterals as hp, type DiscountReasonWithLiterals as hq, type LineItemQuantityChangeTypeWithLiterals as hr, type ActivityTypeWithLiterals as hs, type AttributionSourceWithLiterals as ht, type ChannelTypeWithLiterals as hu, type ScheduledActionWithLiterals as hv, type DurationUnitWithLiterals as hw, type PaymentCollectabilityStatusWithLiterals as hx, type RefundableStatusWithLiterals as hy, type NonRefundableReasonWithLiterals as hz, type PaymentRefund as i, preparePaymentCollection as i0, getPaymentCollectabilityStatus as i1, recordManuallyCollectedPayment as i2, paymentCollectionMarkOrderAsPaid as i3, paymentCollectionBulkMarkOrdersAsPaid as i4, getRefundabilityStatus as i5, paymentCollectionCreatePaymentGatewayOrder as i6, chargeMemberships as i7, triggerRefund as i8, voidAuthorizedPayments as i9, captureAuthorizedPayments as ia, getOrder as ib, type CommonSearchWithEntityContext as ic, createOrder as id, updateOrder as ie, bulkUpdateOrders as ig, commitDeltas as ih, updateOrderLineItem as ii, addActivity as ij, updateActivity as ik, deleteActivity as il, cancelOrder as im, updateOrderStatus as io, aggregateOrders as ip, bulkUpdateOrderTags as iq, type TriggerRefundResponse as j, type TriggerRefundApplicationErrors as k, type VoidAuthorizedPaymentsApplicationErrors as l, type PaymentCapture as m, type CaptureAuthorizedPaymentsResponse as n, type CaptureAuthorizedPaymentsApplicationErrors as o, type GetOrderApplicationErrors as p, type OrderSearch as q, type CreateOrderOptions as r, type CreateOrderApplicationErrors as s, type UpdateOrderApplicationErrors as t, type MaskedOrder as u, type BulkUpdateOrdersOptions as v, type BulkUpdateOrdersResponse as w, type CommitDeltasOptions as x, type CommitDeltasResponse as y, type CommitDeltasApplicationErrors as z };
|
|
7710
|
+
export { type AggregateOrdersResponse as $, type UpdateOrderLineItemIdentifiers as A, type BulkMarkOrdersAsPaidResponse as B, type CreatePaymentGatewayOrderResponse as C, type UpdateOrderLineItem as D, type UpdateOrderLineItemResponse as E, type PublicActivity as F, type GetPaymentCollectabilityStatusResponse as G, type AddActivityResponse as H, type UpdateActivityIdentifiers as I, type UpdateActivityResponse as J, type DeleteActivityIdentifiers as K, type DeleteActivityResponse as L, type MarkOrderAsPaidResponse as M, type CancelOrderOptions as N, type Order as O, type Price as P, type CancelOrderResponse as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SearchOrdersResponse as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type CancelOrderApplicationErrors as W, type OrderStatusWithLiterals as X, type UpdateOrderStatusResponse as Y, type UpdateOrderStatusApplicationErrors as Z, type AggregateOrdersOptions as _, type PreparePaymentCollectionOptions as a, type Color as a$, type BulkUpdateOrderTagsOptions as a0, type BulkUpdateOrderTagsResponse as a1, type OrderApprovedEnvelope as a2, type OrderUpdatedEnvelope as a3, type OrderCanceledEnvelope as a4, type OrderCreatedEnvelope as a5, type OrderPaymentStatusUpdatedEnvelope as a6, DescriptionLineType as a7, ItemTypeItemType as a8, PaymentOptionType as a9, AuthorizationCaptureStatus as aA, AuthorizationVoidStatus as aB, Reason as aC, ActionType as aD, ChargebackStatus as aE, MembershipPaymentStatus as aF, RefundStatus as aG, VersioningMode as aH, SortOrder as aI, OrderApprovalStrategy as aJ, DeltaPaymentOptionType as aK, InventoryAction as aL, Placement as aM, SubdivisionType as aN, SourceType as aO, CustomFieldGroup as aP, ValueType as aQ, DepositType as aR, InvoiceStatus as aS, type OrderLineItem as aT, type ProductName as aU, type CatalogReference as aV, type DescriptionLine as aW, type DescriptionLineValueOneOf as aX, type DescriptionLineDescriptionLineValueOneOf as aY, type DescriptionLineName as aZ, type PlainTextValue as a_, JurisdictionType as aa, SubscriptionFrequency as ab, AdjustmentType as ac, TaxableAddressType as ad, PaymentStatus as ae, FulfillmentStatus as af, WeightUnit as ag, VatType as ah, PickupMethod as ai, OrderStatus as aj, DiscountType as ak, DiscountReason as al, LineItemQuantityChangeType as am, ActivityType as an, AttributionSource as ao, ChannelType as ap, PreviewEmailType as aq, WebhookIdentityType as ar, ScheduledAction as as, DurationUnit as at, PaymentCollectabilityStatus as au, RefundableStatus as av, NonRefundableReason as aw, ManuallyRefundableReason as ax, RestockType as ay, TransactionStatus as az, type PreparePaymentCollectionResponse as b, type LineItemChanges as b$, type FocalPoint as b0, type PhysicalProperties as b1, type ItemType as b2, type ItemTypeItemTypeDataOneOf as b3, type ItemTaxFullDetails as b4, type LineItemTaxInfo as b5, type LineItemTaxBreakdown as b6, type DigitalFile as b7, type SubscriptionInfo as b8, type SubscriptionTitle as b9, type PickupDetails as bA, type PickupAddress as bB, type DeliveryTimeSlot as bC, type ShippingPrice as bD, type ShippingRegion as bE, type TaxSummary as bF, type OrderTaxInfo as bG, type OrderTaxBreakdown as bH, type AppliedDiscount as bI, type AppliedDiscountDiscountSourceOneOf as bJ, type Coupon as bK, type MerchantDiscount as bL, type MerchantDiscountMerchantDiscountReasonOneOf as bM, type DiscountRule as bN, type DiscountRuleName as bO, type LineItemDiscount as bP, type Activity as bQ, type ActivityContentOneOf as bR, type CustomActivity as bS, type MerchantComment as bT, type OrderRefunded as bU, type OrderCreatedFromExchange as bV, type NewExchangeOrderCreated as bW, type LineItemExchangeData as bX, type DraftOrderChangesApplied as bY, type OrderChange as bZ, type OrderChangeValueOneOf as b_, type SubscriptionDescription as ba, type SubscriptionSettings as bb, type FreeTrialPeriod as bc, type BillingAdjustment as bd, type BillingAdjustmentPriceSummary as be, type PriceDescription as bf, type LocationAndQuantity as bg, type TaxableAddress as bh, type TaxableAddressTaxableAddressDataOneOf as bi, type ExtendedFields as bj, type ModifierGroup as bk, type TranslatableString as bl, type ItemModifier as bm, type BuyerInfo as bn, type BuyerInfoIdOneOf as bo, type CurrencyConversionDetails as bp, type PriceSummary as bq, type AddressWithContact as br, type Address as bs, type StreetAddress as bt, type AddressLocation as bu, type FullAddressContactDetails as bv, type VatId as bw, type V1ShippingInformation as bx, type DeliveryLogistics as by, type DeliveryLogisticsAddressOneOf as bz, type PreparePaymentCollectionApplicationErrors as c, type BulkSendBuyerPickupConfirmationEmailsResponse as c$, type LineItemQuantityChange as c0, type LineItemPriceChange as c1, type ManagedLineItem as c2, type ManagedDiscount as c3, type TranslatedValue as c4, type LineItemAmount as c5, type ManagedAdditionalFee as c6, type TotalPriceChange as c7, type ShippingInformationChange as c8, type ShippingInformation as c9, 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 OrderApproved as cP, type OrdersExperiments as cQ, type OrderRejectedEventOrderRejected as cR, type OrderItemsRestocked as cS, type V1RestockItem as cT, type SendBuyerConfirmationEmailRequest as cU, type SendBuyerConfirmationEmailResponse as cV, type SendBuyerPaymentsReceivedEmailRequest as cW, type SendBuyerPaymentsReceivedEmailResponse as cX, type SendBuyerPickupConfirmationEmailRequest as cY, type SendBuyerPickupConfirmationEmailResponse as cZ, type BulkSendBuyerPickupConfirmationEmailsRequest as c_, type SavedPaymentMethod as ca, type AuthorizedPaymentCreated as cb, type AuthorizedPaymentCaptured as cc, type AuthorizedPaymentVoided as cd, type RefundInitiated as ce, type RefundedPayment as cf, type RefundedPaymentKindOneOf as cg, type RegularPaymentRefund as ch, type GiftCardPaymentRefund as ci, type MembershipPaymentRefund as cj, type PaymentRefunded as ck, type PaymentRefundFailed as cl, type RefundedAsStoreCredit as cm, type PaymentPending as cn, type PaymentPendingPaymentDetailsOneOf as co, type RegularPayment as cp, type RegularPaymentPaymentMethodDetailsOneOf as cq, type CreditCardDetails as cr, type PaymentCanceled as cs, type PaymentCanceledPaymentDetailsOneOf as ct, type PaymentDeclined as cu, type PaymentDeclinedPaymentDetailsOneOf as cv, type ReceiptCreated as cw, type ReceiptCreatedReceiptInfoOneOf as cx, type WixReceipt as cy, type ExternalReceipt as cz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as d, type CreatePaymentGatewayOrderRequest as d$, type SendBuyerShippingConfirmationEmailRequest as d0, type SendBuyerShippingConfirmationEmailResponse as d1, type BulkSendBuyerShippingConfirmationEmailsRequest as d2, type BulkSendBuyerShippingConfirmationEmailsResponse as d3, type SendMerchantOrderReceivedNotificationRequest as d4, type SendMerchantOrderReceivedNotificationResponse as d5, type SendCancelRefundEmailRequest as d6, type SendCancelRefundEmailResponse as d7, type SendRefundEmailRequest as d8, type SendRefundEmailResponse as d9, type DomainEvent as dA, type DomainEventBodyOneOf as dB, type EntityCreatedEvent as dC, type RestoreInfo as dD, type EntityUpdatedEvent as dE, type EntityDeletedEvent as dF, type ActionEvent as dG, type Empty as dH, type MessageEnvelope as dI, type IdentificationData as dJ, type IdentificationDataIdOneOf as dK, type PreparePaymentCollectionRequest as dL, type RedirectUrls as dM, type DelayedCaptureSettings as dN, type Duration as dO, type GetPaymentCollectabilityStatusRequest as dP, type RecordManuallyCollectedPaymentRequest as dQ, type RecordManuallyCollectedPaymentResponse as dR, type MarkOrderAsPaidRequest as dS, type BulkMarkOrdersAsPaidRequest as dT, type BulkOrderResult as dU, type ItemMetadata as dV, type ApplicationError as dW, type BulkActionMetadata as dX, type GetRefundabilityStatusRequest as dY, type Refundability as dZ, type RefundabilityAdditionalRefundabilityInfoOneOf as d_, type SendMerchantOrderReceivedPushRequest as da, type SendMerchantOrderReceivedPushResponse as db, type PreviewEmailByTypeRequest as dc, type PreviewEmailByTypeResponse as dd, type PreviewRefundEmailRequest as de, type RefundDetails as df, type RefundItem as dg, type LineItemRefund as dh, type AdditionalFeeRefund as di, type ShippingRefund as dj, type PreviewRefundEmailResponse as dk, type PreviewCancelEmailRequest as dl, type PreviewCancelEmailResponse as dm, type PreviewCancelRefundEmailRequest as dn, type PreviewCancelRefundEmailResponse as dp, type PreviewBuyerPaymentsReceivedEmailRequest as dq, type PreviewBuyerPaymentsReceivedEmailResponse as dr, type PreviewBuyerConfirmationEmailRequest as ds, type PreviewBuyerConfirmationEmailResponse as dt, type PreviewBuyerPickupConfirmationEmailRequest as du, type PreviewBuyerPickupConfirmationEmailResponse as dv, type PreviewShippingConfirmationEmailRequest as dw, type PreviewShippingConfirmationEmailResponse as dx, type PreviewResendDownloadLinksEmailRequest as dy, type PreviewResendDownloadLinksEmailResponse as dz, type GetRefundabilityStatusResponse as e, type InternalQueryOrdersRequest as e$, type ChargedBy as e0, type ChargeMembershipsRequest as e1, type MembershipChargeItem as e2, type MembershipName as e3, type ServiceProperties as e4, type ChargeMembershipsResponse as e5, type TriggerRefundRequest as e6, type RefundSideEffects as e7, type RestockInfo as e8, type RestockItem as e9, type CalculateRefundItemResponse as eA, type VoidAuthorizedPaymentsRequest as eB, type CaptureAuthorizedPaymentsRequest as eC, type ChargeSavedPaymentMethodRequest as eD, type ChargeSavedPaymentMethodResponse as eE, type UpdateInternalDocumentsEvent as eF, type UpdateInternalDocumentsEventOperationOneOf as eG, type InternalDocument as eH, type InternalDocumentUpdateOperation as eI, type DeleteByIdsOperation as eJ, type DeleteByFilterOperation as eK, type InternalDocumentUpdateByFilterOperation as eL, type InternalUpdateExistingOperation as eM, type VersionedDocumentUpdateOperation as eN, type VersionedDeleteByIdsOperation as eO, type VersionedDocumentId as eP, type TriggerReindexRequest as eQ, type TriggerReindexResponse as eR, type BatchOfTriggerReindexOrderRequest as eS, type TriggerReindexOrderRequest as eT, type DiffmatokyPayload as eU, type ErrorInformation as eV, type ContinueSideEffectsFlowInLegacyData as eW, type SnapshotMessage as eX, type IndexingMessage as eY, type GetOrderRequest as eZ, type GetOrderResponse as e_, type OrderTransactions as ea, type Payment as eb, type PaymentPaymentDetailsOneOf as ec, type PaymentReceiptInfoOneOf as ed, type RegularPaymentDetails as ee, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ef, type CreditCardPaymentMethodDetails as eg, type AuthorizationDetails as eh, type AuthorizationCapture as ei, type AuthorizationActionFailureDetails as ej, type AuthorizationVoid as ek, type V1ScheduledAction as el, type Chargeback as em, type GiftCardPaymentDetails as en, type MembershipPaymentDetails as eo, type WixReceiptInfo as ep, type ExternalReceiptInfo as eq, type Refund as er, type RefundTransaction as es, type RefundStatusInfo as et, type AggregatedRefundSummary as eu, type RefundItemsBreakdown as ev, type LineItemRefundSummary as ew, type CalculateRefundRequest as ex, type CalculateRefundItemRequest as ey, type CalculateRefundResponse as ez, type PaymentCollectionCreatePaymentGatewayOrderOptions as f, type UpdateOrderLineItemRequest as f$, type PlatformQuery as f0, type PlatformQueryPagingMethodOneOf as f1, type Sorting as f2, type PlatformPaging as f3, type CursorPaging as f4, type InternalQueryOrdersResponse as f5, type PlatformPagingMetadata as f6, type Cursors as f7, type QueryOrderRequest as f8, type QueryOrderResponse as f9, type InventoryUpdateDetails as fA, type OrderDeltasCommitted as fB, type CommittedDiffs as fC, type CommittedDiffsShippingUpdateInfoOneOf as fD, type LineItemDelta as fE, type LineItemDeltaDeltaOneOf as fF, type ArchiveOrderRequest as fG, type ArchiveOrderResponse as fH, type BulkArchiveOrdersRequest as fI, type BulkArchiveOrdersResponse as fJ, type BulkArchiveOrdersByFilterRequest as fK, type BulkArchiveOrdersByFilterResponse as fL, type UnArchiveOrderRequest as fM, type UnArchiveOrderResponse as fN, type BulkUnArchiveOrdersRequest as fO, type BulkUnArchiveOrdersResponse as fP, type BulkUnArchiveOrdersByFilterRequest as fQ, type BulkUnArchiveOrdersByFilterResponse as fR, type UpdateBuyerInfoRequest as fS, type BuyerInfoUpdate as fT, type UpdateBuyerInfoResponse as fU, type UpdateBuyerEmailRequest as fV, type UpdateBuyerEmailResponse as fW, type UpdateOrderShippingAddressRequest as fX, type UpdateOrderShippingAddressResponse as fY, type UpdateBillingContactDetailsRequest as fZ, type UpdateBillingContactDetailsResponse as f_, type SearchOrdersRequest as fa, type CursorSearch as fb, type CursorSearchPagingMethodOneOf as fc, type CursorPagingMetadata as fd, type CreateOrderRequest as fe, type OrderCreationSettings as ff, type OrderCreateNotifications as fg, type CreateOrderResponse as fh, type UpdateOrderRequest as fi, type UpdateOrderResponse as fj, type BulkUpdateOrdersRequest as fk, type CommitDeltasRequest as fl, type DraftOrderDiffs as fm, type DraftOrderDiffsShippingUpdateInfoOneOf as fn, type DraftOrderDiffsBuyerUpdateInfoOneOf as fo, type DraftOrderDiffsBillingUpdateInfoOneOf as fp, type DraftOrderDiffsRecipientUpdateInfoOneOf as fq, type V1LineItemDelta as fr, type V1LineItemDeltaDeltaOneOf as fs, type OrderLineItemChangedDetails as ft, type ItemChangedDetails as fu, type AppliedDiscountDelta as fv, type AppliedDiscountDeltaDeltaOneOf as fw, type AdditionalFeeDelta as fx, type AdditionalFeeDeltaDeltaOneOf as fy, type DraftOrderCommitSettings as fz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as g, type GetShipmentsRequest as g$, type UpdateOrderLineItemsRequest as g0, type MaskedOrderLineItem as g1, type UpdateOrderLineItemsResponse as g2, type AddInternalActivityRequest as g3, type InternalActivity as g4, type InternalActivityContentOneOf as g5, type OrderPlaced as g6, type OrderPaid as g7, type OrderFulfilled as g8, type OrderNotFulfilled as g9, type MarkOrderAsSeenByHumanResponse as gA, type CancelOrderRequest as gB, type OrderCanceledEventOrderCanceled as gC, type UpdateOrderStatusRequest as gD, type MarkAsFulfilledRequest as gE, type MarkAsFulfilledResponse as gF, type FulfillmentStatusUpdated as gG, type BulkMarkAsFulfilledRequest as gH, type BulkMarkAsFulfilledResponse as gI, type BulkMarkAsFulfilledByFilterRequest as gJ, type BulkMarkAsFulfilledByFilterResponse as gK, type MarkAsUnfulfilledRequest as gL, type MarkAsUnfulfilledResponse as gM, type BulkMarkAsUnfulfilledRequest as gN, type BulkMarkAsUnfulfilledResponse as gO, type BulkMarkAsUnfulfilledByFilterRequest as gP, type BulkMarkAsUnfulfilledByFilterResponse as gQ, type BulkSetBusinessLocationRequest as gR, type BulkSetBusinessLocationResponse as gS, type BulkSetBusinessLocationResult as gT, type V1MarkOrderAsPaidRequest as gU, type V1MarkOrderAsPaidResponse as gV, type PaymentStatusUpdated as gW, type V1BulkMarkOrdersAsPaidRequest as gX, type V1BulkMarkOrdersAsPaidResponse as gY, type V1CreatePaymentGatewayOrderRequest as gZ, type V1CreatePaymentGatewayOrderResponse as g_, type OrderCanceled as ga, type DownloadLinkSent as gb, type TrackingNumberAdded as gc, type TrackingNumberEdited as gd, type TrackingLinkAdded as ge, type ShippingConfirmationEmailSent as gf, type InvoiceAdded as gg, type InvoiceSent as gh, type FulfillerEmailSent as gi, type ShippingAddressEdited as gj, type EmailEdited as gk, type PickupReadyEmailSent as gl, type OrderPartiallyPaid as gm, type OrderPending as gn, type OrderRejected as go, type AddInternalActivityResponse as gp, type AddActivityRequest as gq, type PublicActivityContentOneOf as gr, type AddActivitiesRequest as gs, type AddActivitiesResponse as gt, type UpdateActivityRequest as gu, type DeleteActivityRequest as gv, type UpdateLineItemsDescriptionLinesRequest as gw, type LineItemUpdate as gx, type UpdateLineItemsDescriptionLinesResponse as gy, type MarkOrderAsSeenByHumanRequest as gz, type ChargeMembershipsOptions as h, type PickupMethodWithLiterals as h$, type GetShipmentsResponse as h0, type AggregateOrdersRequest as h1, type DecrementItemsQuantityRequest as h2, type DecrementData as h3, type DecrementItemsQuantityResponse as h4, type BulkUpdateOrderTagsRequest as h5, type BulkUpdateOrderTagsResult as h6, type Task as h7, type TaskKey as h8, type TaskAction as h9, type ItemizedFee as hA, type Discount as hB, type DiscountOneDiscountTypeOneOf as hC, type CalculatedTaxes as hD, type CalculatedTax as hE, type Payments as hF, type InvoicesPayment as hG, type MetaData as hH, type InvoiceDynamicPriceTotals as hI, type CustomFieldValue as hJ, type Value as hK, type Deposit as hL, type TriggerSideEffectsFromLegacyData as hM, type BaseEventMetadata as hN, type EventMetadata as hO, type OrderSearchSpec as hP, type DescriptionLineTypeWithLiterals as hQ, type ItemTypeItemTypeWithLiterals as hR, type PaymentOptionTypeWithLiterals as hS, type JurisdictionTypeWithLiterals as hT, type SubscriptionFrequencyWithLiterals as hU, type AdjustmentTypeWithLiterals as hV, type TaxableAddressTypeWithLiterals as hW, type PaymentStatusWithLiterals as hX, type FulfillmentStatusWithLiterals as hY, type WeightUnitWithLiterals as hZ, type VatTypeWithLiterals as h_, type TaskActionActionOneOf as ha, type Complete as hb, type Cancel as hc, type Reschedule as hd, type InvoiceSentEvent as he, type IdAndVersion as hf, type InvoiceFields as hg, type Customer as hh, type Email as hi, type QuotesAddress as hj, type AddressDescription as hk, type Phone as hl, type Company as hm, type CommonAddress as hn, type CommonAddressStreetOneOf as ho, type Subdivision as hp, type StandardDetails as hq, type InvoiceDates as hr, type LineItems as hs, type LineItem as ht, type BigDecimalWrapper as hu, type LineItemTax as hv, type Source as hw, type LineItemMetaData as hx, type Locale as hy, type TotalPrice as hz, type PaymentRefund as i, cancelOrder as i$, type DiscountTypeWithLiterals as i0, type DiscountReasonWithLiterals as i1, type LineItemQuantityChangeTypeWithLiterals as i2, type ActivityTypeWithLiterals as i3, type AttributionSourceWithLiterals as i4, type ChannelTypeWithLiterals as i5, type PreviewEmailTypeWithLiterals as i6, type WebhookIdentityTypeWithLiterals as i7, type ScheduledActionWithLiterals as i8, type DurationUnitWithLiterals as i9, type InvoiceStatusWithLiterals as iA, onOrderApproved as iB, onOrderUpdated as iC, onOrderCanceled as iD, onOrderCreated as iE, onOrderPaymentStatusUpdated as iF, preparePaymentCollection as iG, getPaymentCollectabilityStatus as iH, recordManuallyCollectedPayment as iI, paymentCollectionMarkOrderAsPaid as iJ, paymentCollectionBulkMarkOrdersAsPaid as iK, getRefundabilityStatus as iL, paymentCollectionCreatePaymentGatewayOrder as iM, chargeMemberships as iN, triggerRefund as iO, voidAuthorizedPayments as iP, captureAuthorizedPayments as iQ, getOrder as iR, type CommonSearchWithEntityContext as iS, createOrder as iT, updateOrder as iU, bulkUpdateOrders as iV, commitDeltas as iW, updateOrderLineItem as iX, addActivity as iY, updateActivity as iZ, deleteActivity as i_, type PaymentCollectabilityStatusWithLiterals as ia, type RefundableStatusWithLiterals as ib, type NonRefundableReasonWithLiterals as ic, type ManuallyRefundableReasonWithLiterals as id, type RestockTypeWithLiterals as ie, type TransactionStatusWithLiterals as ig, type AuthorizationCaptureStatusWithLiterals as ih, type AuthorizationVoidStatusWithLiterals as ii, type ReasonWithLiterals as ij, type ActionTypeWithLiterals as ik, type ChargebackStatusWithLiterals as il, type MembershipPaymentStatusWithLiterals as im, type RefundStatusWithLiterals as io, type VersioningModeWithLiterals as ip, type SortOrderWithLiterals as iq, type OrderApprovalStrategyWithLiterals as ir, type DeltaPaymentOptionTypeWithLiterals as is, type InventoryActionWithLiterals as it, type PlacementWithLiterals as iu, type SubdivisionTypeWithLiterals as iv, type SourceTypeWithLiterals as iw, type CustomFieldGroupWithLiterals as ix, type ValueTypeWithLiterals as iy, type DepositTypeWithLiterals as iz, type TriggerRefundResponse as j, updateOrderStatus as j0, aggregateOrders as j1, bulkUpdateOrderTags as j2, type TriggerRefundApplicationErrors as k, type VoidAuthorizedPaymentsApplicationErrors as l, type PaymentCapture as m, type CaptureAuthorizedPaymentsResponse as n, type CaptureAuthorizedPaymentsApplicationErrors as o, type GetOrderApplicationErrors as p, type OrderSearch as q, type CreateOrderOptions as r, type CreateOrderApplicationErrors as s, type UpdateOrderApplicationErrors as t, type MaskedOrder as u, type BulkUpdateOrdersOptions as v, type BulkUpdateOrdersResponse as w, type CommitDeltasOptions as x, type CommitDeltasResponse as y, type CommitDeltasApplicationErrors as z };
|