@wix/auto_sdk_ecom_orders 1.0.68 → 1.0.70
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-D9sENjnN.d.ts → ecom-v1-order-orders.universal-C73TYoI7.d.ts} +217 -914
- package/build/cjs/index.d.ts +8 -3
- package/build/cjs/index.js +70 -75
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +23 -75
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +71 -13
- package/build/cjs/meta.js +18 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-D9sENjnN.d.mts → ecom-v1-order-orders.universal-C73TYoI7.d.mts} +217 -914
- package/build/es/index.d.mts +8 -3
- package/build/es/index.mjs +69 -70
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +23 -70
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +71 -13
- package/build/es/meta.mjs +18 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-Dt_KjUcw.d.ts → ecom-v1-order-orders.universal-KCtJReRk.d.ts} +217 -914
- package/build/internal/cjs/index.d.ts +8 -3
- package/build/internal/cjs/index.js +70 -75
- 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 +23 -75
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +71 -13
- package/build/internal/cjs/meta.js +18 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-Dt_KjUcw.d.mts → ecom-v1-order-orders.universal-KCtJReRk.d.mts} +217 -914
- package/build/internal/es/index.d.mts +8 -3
- package/build/internal/es/index.mjs +69 -70
- 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 +23 -70
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +71 -13
- package/build/internal/es/meta.mjs +18 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3255,6 +3255,11 @@ interface RegularPaymentDetails extends RegularPaymentDetailsPaymentMethodDetail
|
|
|
3255
3255
|
* @maxLength 300
|
|
3256
3256
|
*/
|
|
3257
3257
|
paymentProvider?: string | null;
|
|
3258
|
+
/**
|
|
3259
|
+
* Record of chargebacks made by the buyer.
|
|
3260
|
+
* @maxSize 6
|
|
3261
|
+
*/
|
|
3262
|
+
chargebacks?: Chargeback[];
|
|
3258
3263
|
}
|
|
3259
3264
|
/** @oneof */
|
|
3260
3265
|
interface RegularPaymentDetailsPaymentMethodDetailsOneOf {
|
|
@@ -3798,955 +3803,122 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
3798
3803
|
/** ID of the entity associated with the event. */
|
|
3799
3804
|
entityId?: string;
|
|
3800
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`. */
|
|
3801
|
-
eventTime?: Date | null;
|
|
3802
|
-
/**
|
|
3803
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
3804
|
-
* (for example, GDPR).
|
|
3805
|
-
*/
|
|
3806
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
3807
|
-
/** If present, indicates the action that triggered the event. */
|
|
3808
|
-
originatedFrom?: string | null;
|
|
3809
|
-
/**
|
|
3810
|
-
* 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.
|
|
3811
|
-
* 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.
|
|
3812
|
-
*/
|
|
3813
|
-
entityEventSequence?: string | null;
|
|
3814
|
-
}
|
|
3815
|
-
/** @oneof */
|
|
3816
|
-
interface DomainEventBodyOneOf {
|
|
3817
|
-
createdEvent?: EntityCreatedEvent;
|
|
3818
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
3819
|
-
deletedEvent?: EntityDeletedEvent;
|
|
3820
|
-
actionEvent?: ActionEvent;
|
|
3821
|
-
}
|
|
3822
|
-
interface EntityCreatedEvent {
|
|
3823
|
-
entity?: string;
|
|
3824
|
-
}
|
|
3825
|
-
interface RestoreInfo {
|
|
3826
|
-
deletedDate?: Date | null;
|
|
3827
|
-
}
|
|
3828
|
-
interface EntityUpdatedEvent {
|
|
3829
|
-
/**
|
|
3830
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
3831
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
3832
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
3833
|
-
*/
|
|
3834
|
-
currentEntity?: string;
|
|
3835
|
-
}
|
|
3836
|
-
interface EntityDeletedEvent {
|
|
3837
|
-
/** Entity that was deleted. */
|
|
3838
|
-
deletedEntity?: string | null;
|
|
3839
|
-
}
|
|
3840
|
-
interface ActionEvent {
|
|
3841
|
-
body?: string;
|
|
3842
|
-
}
|
|
3843
|
-
interface Empty {
|
|
3844
|
-
}
|
|
3845
|
-
interface MessageEnvelope {
|
|
3846
|
-
/**
|
|
3847
|
-
* App instance ID.
|
|
3848
|
-
* @format GUID
|
|
3849
|
-
*/
|
|
3850
|
-
instanceId?: string | null;
|
|
3851
|
-
/**
|
|
3852
|
-
* Event type.
|
|
3853
|
-
* @maxLength 150
|
|
3854
|
-
*/
|
|
3855
|
-
eventType?: string;
|
|
3856
|
-
/** The identification type and identity data. */
|
|
3857
|
-
identity?: IdentificationData;
|
|
3858
|
-
/** Stringify payload. */
|
|
3859
|
-
data?: string;
|
|
3860
|
-
}
|
|
3861
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
3862
|
-
/**
|
|
3863
|
-
* ID of a site visitor that has not logged in to the site.
|
|
3864
|
-
* @format GUID
|
|
3865
|
-
*/
|
|
3866
|
-
anonymousVisitorId?: string;
|
|
3867
|
-
/**
|
|
3868
|
-
* ID of a site visitor that has logged in to the site.
|
|
3869
|
-
* @format GUID
|
|
3870
|
-
*/
|
|
3871
|
-
memberId?: string;
|
|
3872
|
-
/**
|
|
3873
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
3874
|
-
* @format GUID
|
|
3875
|
-
*/
|
|
3876
|
-
wixUserId?: string;
|
|
3877
|
-
/**
|
|
3878
|
-
* ID of an app.
|
|
3879
|
-
* @format GUID
|
|
3880
|
-
*/
|
|
3881
|
-
appId?: string;
|
|
3882
|
-
/** @readonly */
|
|
3883
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
3884
|
-
}
|
|
3885
|
-
/** @oneof */
|
|
3886
|
-
interface IdentificationDataIdOneOf {
|
|
3887
|
-
/**
|
|
3888
|
-
* ID of a site visitor that has not logged in to the site.
|
|
3889
|
-
* @format GUID
|
|
3890
|
-
*/
|
|
3891
|
-
anonymousVisitorId?: string;
|
|
3892
|
-
/**
|
|
3893
|
-
* ID of a site visitor that has logged in to the site.
|
|
3894
|
-
* @format GUID
|
|
3895
|
-
*/
|
|
3896
|
-
memberId?: string;
|
|
3897
|
-
/**
|
|
3898
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
3899
|
-
* @format GUID
|
|
3900
|
-
*/
|
|
3901
|
-
wixUserId?: string;
|
|
3902
|
-
/**
|
|
3903
|
-
* ID of an app.
|
|
3904
|
-
* @format GUID
|
|
3905
|
-
*/
|
|
3906
|
-
appId?: string;
|
|
3907
|
-
}
|
|
3908
|
-
declare enum WebhookIdentityType {
|
|
3909
|
-
UNKNOWN = "UNKNOWN",
|
|
3910
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3911
|
-
MEMBER = "MEMBER",
|
|
3912
|
-
WIX_USER = "WIX_USER",
|
|
3913
|
-
APP = "APP"
|
|
3914
|
-
}
|
|
3915
|
-
/** @enumType */
|
|
3916
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3917
|
-
declare enum TextDetection {
|
|
3918
|
-
/** No detection was made */
|
|
3919
|
-
UNKNOWN_TEXT_DETECTION = "UNKNOWN_TEXT_DETECTION",
|
|
3920
|
-
/** The image contains text */
|
|
3921
|
-
CONTAINS_TEXT = "CONTAINS_TEXT",
|
|
3922
|
-
/** The image does not contain text */
|
|
3923
|
-
NO_TEXT = "NO_TEXT"
|
|
3924
|
-
}
|
|
3925
|
-
/** @enumType */
|
|
3926
|
-
type TextDetectionWithLiterals = TextDetection | 'UNKNOWN_TEXT_DETECTION' | 'CONTAINS_TEXT' | 'NO_TEXT';
|
|
3927
|
-
declare enum AnimationDetection {
|
|
3928
|
-
/** No detection was made */
|
|
3929
|
-
UNKNOWN_ANIMATION_DETECTION = "UNKNOWN_ANIMATION_DETECTION",
|
|
3930
|
-
/** The image contains animation */
|
|
3931
|
-
CONTAINS_ANIMATION = "CONTAINS_ANIMATION",
|
|
3932
|
-
/** The image does not contain animation */
|
|
3933
|
-
NO_ANIMATION = "NO_ANIMATION"
|
|
3934
|
-
}
|
|
3935
|
-
/** @enumType */
|
|
3936
|
-
type AnimationDetectionWithLiterals = AnimationDetection | 'UNKNOWN_ANIMATION_DETECTION' | 'CONTAINS_ANIMATION' | 'NO_ANIMATION';
|
|
3937
|
-
interface ImageContent {
|
|
3938
|
-
/** Text detection */
|
|
3939
|
-
text?: TextDetectionWithLiterals;
|
|
3940
|
-
/** Animation detection */
|
|
3941
|
-
animation?: AnimationDetectionWithLiterals;
|
|
3942
|
-
}
|
|
3943
|
-
interface SendBuyerConfirmationEmailRequest {
|
|
3944
|
-
/** @format GUID */
|
|
3945
|
-
orderId?: string;
|
|
3946
|
-
}
|
|
3947
|
-
interface SendBuyerConfirmationEmailResponse {
|
|
3948
|
-
}
|
|
3949
|
-
interface SendBuyerPaymentsReceivedEmailRequest {
|
|
3950
|
-
/**
|
|
3951
|
-
* @minLength 1
|
|
3952
|
-
* @maxLength 100
|
|
3953
|
-
*/
|
|
3954
|
-
orderId?: string;
|
|
3955
|
-
}
|
|
3956
|
-
interface SendBuyerPaymentsReceivedEmailResponse {
|
|
3957
|
-
}
|
|
3958
|
-
interface SendBuyerPickupConfirmationEmailRequest {
|
|
3959
|
-
/**
|
|
3960
|
-
* @minLength 1
|
|
3961
|
-
* @maxLength 100
|
|
3962
|
-
*/
|
|
3963
|
-
orderId?: string;
|
|
3964
|
-
}
|
|
3965
|
-
interface SendBuyerPickupConfirmationEmailResponse {
|
|
3966
|
-
}
|
|
3967
|
-
interface BulkSendBuyerPickupConfirmationEmailsRequest {
|
|
3968
|
-
/**
|
|
3969
|
-
* IDs of orders to send pickup emails for.
|
|
3970
|
-
* @minSize 1
|
|
3971
|
-
* @maxSize 300
|
|
3972
|
-
*/
|
|
3973
|
-
orderIds?: string[];
|
|
3974
|
-
}
|
|
3975
|
-
interface BulkSendBuyerPickupConfirmationEmailsResponse {
|
|
3976
|
-
}
|
|
3977
|
-
interface SendBuyerShippingConfirmationEmailRequest {
|
|
3978
|
-
/**
|
|
3979
|
-
* @minLength 1
|
|
3980
|
-
* @maxLength 100
|
|
3981
|
-
*/
|
|
3982
|
-
orderId?: string;
|
|
3983
|
-
}
|
|
3984
|
-
interface SendBuyerShippingConfirmationEmailResponse {
|
|
3985
|
-
}
|
|
3986
|
-
interface BulkSendBuyerShippingConfirmationEmailsRequest {
|
|
3987
|
-
/**
|
|
3988
|
-
* IDs of orders to send pickup emails for.
|
|
3989
|
-
* @minSize 1
|
|
3990
|
-
* @maxSize 300
|
|
3991
|
-
*/
|
|
3992
|
-
orderIds?: string[];
|
|
3993
|
-
}
|
|
3994
|
-
interface BulkSendBuyerShippingConfirmationEmailsResponse {
|
|
3995
|
-
}
|
|
3996
|
-
interface SendMerchantOrderReceivedNotificationRequest {
|
|
3997
|
-
/**
|
|
3998
|
-
* @minLength 1
|
|
3999
|
-
* @maxLength 100
|
|
4000
|
-
*/
|
|
4001
|
-
orderId?: string;
|
|
4002
|
-
}
|
|
4003
|
-
interface SendMerchantOrderReceivedNotificationResponse {
|
|
4004
|
-
}
|
|
4005
|
-
interface SendCancelRefundEmailRequest {
|
|
4006
|
-
/**
|
|
4007
|
-
* The ID of order that is canceled/refunded
|
|
4008
|
-
* @minLength 1
|
|
4009
|
-
* @maxLength 100
|
|
4010
|
-
*/
|
|
4011
|
-
orderId?: string;
|
|
4012
|
-
/**
|
|
4013
|
-
* Personal note added to the email (optional)
|
|
4014
|
-
* @minLength 1
|
|
4015
|
-
* @maxLength 1000
|
|
4016
|
-
*/
|
|
4017
|
-
customMessage?: string | null;
|
|
4018
|
-
/** Refund amount */
|
|
4019
|
-
refundAmount?: Price;
|
|
4020
|
-
/**
|
|
4021
|
-
* Refund ID. (Optional)
|
|
4022
|
-
* @format GUID
|
|
4023
|
-
*/
|
|
4024
|
-
refundId?: string | null;
|
|
4025
|
-
}
|
|
4026
|
-
interface SendCancelRefundEmailResponse {
|
|
4027
|
-
}
|
|
4028
|
-
interface SendRefundEmailRequest {
|
|
4029
|
-
/**
|
|
4030
|
-
* The ID of order that is refunded
|
|
4031
|
-
* @format GUID
|
|
4032
|
-
*/
|
|
4033
|
-
orderId?: string;
|
|
4034
|
-
/**
|
|
4035
|
-
* Refund ID
|
|
4036
|
-
* @format GUID
|
|
4037
|
-
*/
|
|
4038
|
-
refundId?: string;
|
|
4039
|
-
/**
|
|
4040
|
-
* Personal note added to the email (optional)
|
|
4041
|
-
* @minLength 1
|
|
4042
|
-
* @maxLength 1000
|
|
4043
|
-
*/
|
|
4044
|
-
customMessage?: string | null;
|
|
4045
|
-
}
|
|
4046
|
-
interface SendRefundEmailResponse {
|
|
4047
|
-
}
|
|
4048
|
-
interface SendMerchantOrderReceivedPushRequest {
|
|
4049
|
-
/**
|
|
4050
|
-
* @minLength 1
|
|
4051
|
-
* @maxLength 100
|
|
4052
|
-
*/
|
|
4053
|
-
orderId?: string;
|
|
4054
|
-
}
|
|
4055
|
-
interface SendMerchantOrderReceivedPushResponse {
|
|
4056
|
-
}
|
|
4057
|
-
interface PreviewEmailByTypeRequest {
|
|
4058
|
-
emailType?: PreviewEmailTypeWithLiterals;
|
|
4059
|
-
}
|
|
4060
|
-
declare enum PreviewEmailType {
|
|
4061
|
-
ORDER_PLACED = "ORDER_PLACED",
|
|
4062
|
-
DOWNLOAD_LINKS = "DOWNLOAD_LINKS",
|
|
4063
|
-
ORDER_SHIPPED = "ORDER_SHIPPED",
|
|
4064
|
-
ORDER_READY_FOR_PICKUP = "ORDER_READY_FOR_PICKUP"
|
|
4065
|
-
}
|
|
4066
|
-
/** @enumType */
|
|
4067
|
-
type PreviewEmailTypeWithLiterals = PreviewEmailType | 'ORDER_PLACED' | 'DOWNLOAD_LINKS' | 'ORDER_SHIPPED' | 'ORDER_READY_FOR_PICKUP';
|
|
4068
|
-
interface PreviewEmailByTypeResponse {
|
|
4069
|
-
emailPreview?: string;
|
|
4070
|
-
}
|
|
4071
|
-
interface PreviewRefundEmailRequest {
|
|
4072
|
-
/**
|
|
4073
|
-
* @minLength 1
|
|
4074
|
-
* @maxLength 100
|
|
4075
|
-
*/
|
|
4076
|
-
orderId?: string;
|
|
4077
|
-
/** Refund amount */
|
|
4078
|
-
refundAmount?: Price;
|
|
4079
|
-
/** Refund business details */
|
|
4080
|
-
details?: RefundDetails;
|
|
4081
|
-
/**
|
|
4082
|
-
* Personal note added to the email (optional)
|
|
4083
|
-
* @minLength 1
|
|
4084
|
-
* @maxLength 1000
|
|
4085
|
-
*/
|
|
4086
|
-
customMessage?: string | null;
|
|
4087
|
-
/**
|
|
4088
|
-
* Refund ID. (Optional)
|
|
4089
|
-
* @format GUID
|
|
4090
|
-
*/
|
|
4091
|
-
refundId?: string | null;
|
|
4092
|
-
}
|
|
4093
|
-
interface PreviewRefundEmailResponse {
|
|
4094
|
-
emailPreview?: string;
|
|
4095
|
-
}
|
|
4096
|
-
interface PreviewCancelEmailRequest {
|
|
4097
|
-
/**
|
|
4098
|
-
* @minLength 1
|
|
4099
|
-
* @maxLength 100
|
|
4100
|
-
*/
|
|
4101
|
-
orderId?: string;
|
|
4102
|
-
/**
|
|
4103
|
-
* Personal note added to the email (optional)
|
|
4104
|
-
* @minLength 1
|
|
4105
|
-
* @maxLength 1000
|
|
4106
|
-
*/
|
|
4107
|
-
customMessage?: string | null;
|
|
4108
|
-
}
|
|
4109
|
-
interface PreviewCancelEmailResponse {
|
|
4110
|
-
emailPreview?: string;
|
|
4111
|
-
}
|
|
4112
|
-
interface PreviewCancelRefundEmailRequest {
|
|
4113
|
-
/**
|
|
4114
|
-
* @minLength 1
|
|
4115
|
-
* @maxLength 100
|
|
4116
|
-
*/
|
|
4117
|
-
orderId?: string;
|
|
4118
|
-
/**
|
|
4119
|
-
* Personal note added to the email (optional)
|
|
4120
|
-
* @minLength 1
|
|
4121
|
-
* @maxLength 1000
|
|
4122
|
-
*/
|
|
4123
|
-
customMessage?: string | null;
|
|
4124
|
-
/** Refund amount */
|
|
4125
|
-
refundAmount?: Price;
|
|
4126
|
-
/**
|
|
4127
|
-
* Refund ID. (Optional)
|
|
4128
|
-
* @format GUID
|
|
4129
|
-
*/
|
|
4130
|
-
refundId?: string | null;
|
|
4131
|
-
}
|
|
4132
|
-
interface PreviewCancelRefundEmailResponse {
|
|
4133
|
-
emailPreview?: string;
|
|
4134
|
-
}
|
|
4135
|
-
interface PreviewBuyerPaymentsReceivedEmailRequest {
|
|
4136
|
-
}
|
|
4137
|
-
interface PreviewBuyerPaymentsReceivedEmailResponse {
|
|
4138
|
-
emailPreview?: string;
|
|
4139
|
-
}
|
|
4140
|
-
interface PreviewBuyerConfirmationEmailRequest {
|
|
4141
|
-
}
|
|
4142
|
-
interface PreviewBuyerConfirmationEmailResponse {
|
|
4143
|
-
emailPreview?: string;
|
|
4144
|
-
}
|
|
4145
|
-
interface PreviewBuyerPickupConfirmationEmailRequest {
|
|
4146
|
-
}
|
|
4147
|
-
interface PreviewBuyerPickupConfirmationEmailResponse {
|
|
4148
|
-
emailPreview?: string;
|
|
4149
|
-
}
|
|
4150
|
-
interface PreviewShippingConfirmationEmailRequest {
|
|
4151
|
-
}
|
|
4152
|
-
interface PreviewShippingConfirmationEmailResponse {
|
|
4153
|
-
emailPreview?: string;
|
|
4154
|
-
}
|
|
4155
|
-
interface PreviewResendDownloadLinksEmailRequest {
|
|
4156
|
-
}
|
|
4157
|
-
interface PreviewResendDownloadLinksEmailResponse {
|
|
4158
|
-
emailPreview?: string;
|
|
4159
|
-
}
|
|
4160
|
-
interface TriggerReindexOrderRequest {
|
|
4161
|
-
/** @format GUID */
|
|
4162
|
-
metasiteId?: string;
|
|
4163
|
-
/**
|
|
4164
|
-
* @minLength 1
|
|
4165
|
-
* @maxLength 100
|
|
4166
|
-
*/
|
|
4167
|
-
orderId?: string;
|
|
4168
|
-
}
|
|
4169
|
-
interface SnapshotMessage {
|
|
4170
|
-
_id?: string;
|
|
4171
|
-
opType?: number;
|
|
4172
|
-
}
|
|
4173
|
-
/** Triggered when the payment status of an order is updated */
|
|
4174
|
-
interface PaymentStatusUpdated {
|
|
4175
|
-
/** The order that was updated */
|
|
4176
|
-
order?: Order;
|
|
4177
|
-
/** The previous status (before the update) */
|
|
4178
|
-
previousPaymentStatus?: PaymentStatusWithLiterals;
|
|
4179
|
-
}
|
|
4180
|
-
interface GetMetasiteDataRequest {
|
|
4181
|
-
/**
|
|
4182
|
-
* meta site Id for data to retrieve
|
|
4183
|
-
* @format GUID
|
|
4184
|
-
*/
|
|
4185
|
-
metasiteId?: string;
|
|
4186
|
-
}
|
|
4187
|
-
interface GetMetasiteDataResponse {
|
|
4188
|
-
/** meta site data */
|
|
4189
|
-
metasite?: MetaSite;
|
|
4190
|
-
/** is metasite added to new SDL population via population manager */
|
|
4191
|
-
isInNewPopulation?: boolean;
|
|
4192
|
-
/** metasite url */
|
|
4193
|
-
metasiteUrl?: string;
|
|
4194
|
-
/** owner data */
|
|
4195
|
-
userDataResponse?: UserDataResponse;
|
|
4196
|
-
}
|
|
4197
|
-
/**
|
|
4198
|
-
* Represents Meta Site.
|
|
4199
|
-
*
|
|
4200
|
-
* Meta Site is a legacy concept, it aggregates data from several domains. Generally, it contains and manages
|
|
4201
|
-
* relations between different entities related to the site (or, as a new concept, to the container).
|
|
4202
|
-
*
|
|
4203
|
-
* We prefer to pronounce it as 2 separate words, therefore we use terms "meta site" or "metaSite" or "meta_site" in code.
|
|
4204
|
-
*/
|
|
4205
|
-
interface MetaSite {
|
|
4206
|
-
/**
|
|
4207
|
-
* Identifier of meta site.
|
|
4208
|
-
* @format GUID
|
|
4209
|
-
* @readonly
|
|
4210
|
-
*/
|
|
4211
|
-
metaSiteId?: string;
|
|
4212
|
-
/**
|
|
4213
|
-
* Internal version of meta site. Monotonically increasing number.
|
|
4214
|
-
*
|
|
4215
|
-
* If passed within update request, it will be used for optimistic locking. In this case,
|
|
4216
|
-
* StaleStateException will be thrown if current version doesn't match.
|
|
4217
|
-
*
|
|
4218
|
-
* In old MetaSiteDTO -- revision.
|
|
4219
|
-
* @readonly
|
|
4220
|
-
*/
|
|
4221
|
-
version?: string;
|
|
4222
|
-
/**
|
|
4223
|
-
* Identifier of account that owns this meta site.
|
|
4224
|
-
* @readonly
|
|
4225
|
-
*/
|
|
4226
|
-
ownerId?: string;
|
|
4227
|
-
/**
|
|
4228
|
-
* Date and time when meta site was created.
|
|
4229
|
-
* @readonly
|
|
4230
|
-
*/
|
|
4231
|
-
dateCreated?: Date | null;
|
|
4232
|
-
/**
|
|
4233
|
-
* Date and time when meta site was updated for the last time.
|
|
4234
|
-
* @readonly
|
|
4235
|
-
*/
|
|
4236
|
-
dateUpdated?: Date | null;
|
|
4237
|
-
/**
|
|
4238
|
-
* All "applications" of this meta site.
|
|
4239
|
-
*
|
|
4240
|
-
* In old MetaSiteDTO -- embeddedServices.
|
|
4241
|
-
*/
|
|
4242
|
-
apps?: App[];
|
|
4243
|
-
/** Namespace of meta site. */
|
|
4244
|
-
namespace?: NamespaceWithLiterals;
|
|
4245
|
-
/**
|
|
4246
|
-
* Indicates whether https should be used for viewing a site.
|
|
4247
|
-
*
|
|
4248
|
-
* In old MetaSiteDTO -- flags.UseHttps.
|
|
4249
|
-
*/
|
|
4250
|
-
useHttps?: boolean;
|
|
4251
|
-
defaultSeoData?: SeoData;
|
|
4252
|
-
/**
|
|
4253
|
-
* Information about HTML application.
|
|
4254
|
-
*
|
|
4255
|
-
* In old MetaSiteDTO -- appplications.find(_.applicationType == HtmlWeb).
|
|
4256
|
-
*/
|
|
4257
|
-
htmlApp?: HtmlApplication;
|
|
4258
|
-
/**
|
|
4259
|
-
* @maxSize 10000
|
|
4260
|
-
* @deprecated
|
|
4261
|
-
*/
|
|
4262
|
-
externalUriMappings?: ExternalUriMapping[];
|
|
4263
|
-
/** Indicates whether meta site was published. If true - site should be accessible for viewing. */
|
|
4264
|
-
published?: boolean;
|
|
4265
|
-
/**
|
|
4266
|
-
* The name of meta site.
|
|
4267
|
-
*
|
|
4268
|
-
* Matches this regular expression: [a-z0-9_\-]{4,20} (but for some legacy sites might be shorted/longer).
|
|
4269
|
-
*/
|
|
4270
|
-
name?: string;
|
|
4271
|
-
/**
|
|
4272
|
-
* Indicates whether this site is managed by ADI editor
|
|
4273
|
-
*
|
|
4274
|
-
* Values:
|
|
4275
|
-
* None - not managed.
|
|
4276
|
-
* Some(false) - site was created via ADI editor, but later on user switched to regular editor.
|
|
4277
|
-
* Some(true) - site was created and still is managed by ADI editor.
|
|
4278
|
-
*
|
|
4279
|
-
* In old MetaSiteDTO: embeddedService[embeddedServiceType=Onboarding].attributes.isInUse.
|
|
4280
|
-
*/
|
|
4281
|
-
adi?: boolean | null;
|
|
4282
|
-
/**
|
|
4283
|
-
* Indicates whether this meta site is template.
|
|
4284
|
-
*
|
|
4285
|
-
* In old MetaSiteDTO: documentType == Template.
|
|
4286
|
-
* @readonly
|
|
4287
|
-
*/
|
|
4288
|
-
template?: boolean | null;
|
|
4289
|
-
/**
|
|
4290
|
-
* Identifier of a template (meta site) from which this site was created.
|
|
4291
|
-
*
|
|
4292
|
-
* If it's empty it either means that site wasn't created from a template OR it's very old, so we didn't store
|
|
4293
|
-
* it back then.
|
|
4294
|
-
*
|
|
4295
|
-
* For example, if "site" was created from "template", then "template"'s id will be in origin_template_id.
|
|
4296
|
-
* When "site" is cloned, clone will also have "template"'s id in origin_instance_id.
|
|
4297
|
-
* @format GUID
|
|
4298
|
-
* @readonly
|
|
4299
|
-
*/
|
|
4300
|
-
originTemplateId?: string | null;
|
|
4301
|
-
/**
|
|
4302
|
-
* Indicates meta site blocked from publishing and added additional filtering in listing API (MSS). READ_ONLY.
|
|
4303
|
-
* @readonly
|
|
4304
|
-
*/
|
|
4305
|
-
blocked?: boolean;
|
|
4306
|
-
/**
|
|
4307
|
-
* If true - default meta site routing (connected domains, free url, ML) is not used for this meta site.
|
|
4308
|
-
*
|
|
4309
|
-
* Meaning, that if `example.org` is connected to this meta site, `router-server` will return 404 for `example.org`
|
|
4310
|
-
* anyway.
|
|
4311
|
-
*
|
|
4312
|
-
* This flag is set for some sites that have custom mapping in Routes API / wix-pages-bo.
|
|
4313
|
-
*/
|
|
4314
|
-
dontUseDefaultRouting?: boolean;
|
|
4315
|
-
/**
|
|
4316
|
-
* Indicates the site is used as critical asset and as such is protected. You would be only able to provision applications to this meta site. READ_ONLY.
|
|
4317
|
-
* @readonly
|
|
4318
|
-
*/
|
|
4319
|
-
criticalAsset?: boolean;
|
|
4320
|
-
/**
|
|
4321
|
-
* Date and time when the account that owns this meta site was created.
|
|
4322
|
-
* @readonly
|
|
4323
|
-
*/
|
|
4324
|
-
accountCreatedDate?: Date | null;
|
|
4325
|
-
}
|
|
4326
|
-
interface App {
|
|
4327
|
-
/**
|
|
4328
|
-
* Identifier of application type (application definition id).
|
|
4329
|
-
*
|
|
4330
|
-
* Can be both UUID and non-UUID, for example: SiteMembers, Onboarding, CloudSiteExtension etc.
|
|
4331
|
-
* @maxLength 36
|
|
4332
|
-
*/
|
|
4333
|
-
appDefId?: string;
|
|
4334
|
-
/**
|
|
4335
|
-
* Identifier of the instance (concrete application, installed on a site).
|
|
4336
|
-
*
|
|
4337
|
-
* Mostly UUID, but for some specific legacy cases might be something else.
|
|
4338
|
-
* @maxLength 36
|
|
4339
|
-
*/
|
|
4340
|
-
instanceId?: string;
|
|
4341
|
-
/**
|
|
4342
|
-
* State of this app (see docs for state).
|
|
4343
|
-
* @readonly
|
|
4344
|
-
*/
|
|
4345
|
-
state?: StateWithLiterals;
|
|
4346
|
-
/**
|
|
4347
|
-
* Identifier of the originating application. For example, if this app was part of a template,
|
|
4348
|
-
* then an app will get instance_id of that app as origin instance id.
|
|
4349
|
-
*
|
|
4350
|
-
* If application was provisioned not from some template, it should be empty.
|
|
4351
|
-
*
|
|
4352
|
-
* Note, it could be == to instance_id (for old sites).
|
|
4353
|
-
* @maxLength 36
|
|
4354
|
-
*/
|
|
4355
|
-
originInstanceId?: string;
|
|
4356
|
-
}
|
|
4357
|
-
/**
|
|
4358
|
-
* Represents the actual state of the application on site. Do not confuse with the State in the old MetaSiteDTO,
|
|
4359
|
-
* which has less values and doesn't have 1-to-1 correspondence with this one (this one is exact and correct!)
|
|
4360
|
-
*/
|
|
4361
|
-
declare enum State {
|
|
4362
|
-
UNKNOWN = "UNKNOWN",
|
|
4363
|
-
/** App is installed on a site. */
|
|
4364
|
-
ENABLED = "ENABLED",
|
|
4365
|
-
/** App is removed from a site (but we preserve it just in case). */
|
|
4366
|
-
DISABLED = "DISABLED",
|
|
4367
|
-
/** App is in "demo" mode, meaning that it's in read-only mode (it's in a template OR not installed yet). */
|
|
4368
|
-
TEMPLATE = "TEMPLATE",
|
|
4369
|
-
/** App is not installed, there is a user intention for it only (user will see the pimpl in the editor). */
|
|
4370
|
-
PENDING = "PENDING"
|
|
4371
|
-
}
|
|
4372
|
-
/** @enumType */
|
|
4373
|
-
type StateWithLiterals = State | 'UNKNOWN' | 'ENABLED' | 'DISABLED' | 'TEMPLATE' | 'PENDING';
|
|
4374
|
-
declare enum Namespace {
|
|
4375
|
-
UNKNOWN_NAMESPACE = "UNKNOWN_NAMESPACE",
|
|
4376
|
-
/** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
|
|
4377
|
-
WIX = "WIX",
|
|
4378
|
-
/** ShoutOut stand alone product. These are siteless (no actual Wix site, no HtmlWeb). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4379
|
-
SHOUT_OUT = "SHOUT_OUT",
|
|
4380
|
-
/** MetaSites created by the Albums product, they appear as part of the Albums app. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4381
|
-
ALBUMS = "ALBUMS",
|
|
4382
|
-
/** Part of the WixStores migration flow, a user tries to migrate and gets this site to view and if the user likes it then stores removes this namespace and deletes the old site with the old stores. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4383
|
-
WIX_STORES_TEST_DRIVE = "WIX_STORES_TEST_DRIVE",
|
|
4384
|
-
/** Hotels standalone (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4385
|
-
HOTELS = "HOTELS",
|
|
4386
|
-
/** Clubs siteless MetaSites, a club without a wix website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4387
|
-
CLUBS = "CLUBS",
|
|
4388
|
-
/** A partially created ADI website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4389
|
-
ONBOARDING_DRAFT = "ONBOARDING_DRAFT",
|
|
4390
|
-
/** AppBuilder for AppStudio / shmite (c). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4391
|
-
DEV_SITE = "DEV_SITE",
|
|
4392
|
-
/** LogoMaker websites offered to the user after logo purchase. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4393
|
-
LOGOS = "LOGOS",
|
|
4394
|
-
/** VideoMaker websites offered to the user after video purchase. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4395
|
-
VIDEO_MAKER = "VIDEO_MAKER",
|
|
4396
|
-
/** MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4397
|
-
PARTNER_DASHBOARD = "PARTNER_DASHBOARD",
|
|
4398
|
-
/** MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4399
|
-
DEV_CENTER_COMPANY = "DEV_CENTER_COMPANY",
|
|
4400
|
-
/**
|
|
4401
|
-
* A draft created by HTML editor on open. Upon "first save" it will be moved to be of WIX domain.
|
|
4402
|
-
*
|
|
4403
|
-
* Meta site with this namespace will *not* be shown in a user's site list by default.
|
|
4404
|
-
*/
|
|
4405
|
-
HTML_DRAFT = "HTML_DRAFT",
|
|
4406
|
-
/**
|
|
4407
|
-
* the user-journey for Fitness users who want to start from managing their business instead of designing their website.
|
|
4408
|
-
* Will be accessible from Site List and will not have a website app.
|
|
4409
|
-
* Once the user attaches a site, the site will become a regular wixsite.
|
|
4410
|
-
*/
|
|
4411
|
-
SITELESS_BUSINESS = "SITELESS_BUSINESS",
|
|
4412
|
-
/** Belongs to "strategic products" company. Supports new product in the creator's economy space. */
|
|
4413
|
-
CREATOR_ECONOMY = "CREATOR_ECONOMY",
|
|
4414
|
-
/** It is to be used in the Business First efforts. */
|
|
4415
|
-
DASHBOARD_FIRST = "DASHBOARD_FIRST",
|
|
4416
|
-
/** Bookings business flow with no site. */
|
|
4417
|
-
ANYWHERE = "ANYWHERE",
|
|
4418
|
-
/** Namespace for Headless Backoffice with no editor */
|
|
4419
|
-
HEADLESS = "HEADLESS",
|
|
4420
|
-
/**
|
|
4421
|
-
* Namespace for master site that will exist in parent account that will be referenced by subaccounts
|
|
4422
|
-
* The site will be used for account level CSM feature for enterprise
|
|
4423
|
-
*/
|
|
4424
|
-
ACCOUNT_MASTER_CMS = "ACCOUNT_MASTER_CMS",
|
|
4425
|
-
/** Rise.ai Siteless account management for Gift Cards and Store Credit. */
|
|
4426
|
-
RISE = "RISE",
|
|
4427
|
-
/**
|
|
4428
|
-
* As part of the branded app new funnel, users now can create a meta site that will be branded app first.
|
|
4429
|
-
* There's a blank site behind the scene but it's blank).
|
|
4430
|
-
* The Mobile company will be the owner of this namespace.
|
|
4431
|
-
*/
|
|
4432
|
-
BRANDED_FIRST = "BRANDED_FIRST",
|
|
4433
|
-
/** Nownia.com Siteless account management for Ai Scheduling Assistant. */
|
|
4434
|
-
NOWNIA = "NOWNIA",
|
|
4435
|
-
/**
|
|
4436
|
-
* UGC Templates are templates that are created by users for personal use and to sale to other users.
|
|
4437
|
-
* The Partners company owns this namespace.
|
|
4438
|
-
*/
|
|
4439
|
-
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
4440
|
-
/** Codux Headless Sites */
|
|
4441
|
-
CODUX = "CODUX",
|
|
4442
|
-
/** Bobb - AI Design Creator. */
|
|
4443
|
-
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR",
|
|
4444
|
-
/**
|
|
4445
|
-
* Shared Blog Site is a unique single site across Enterprise account,
|
|
4446
|
-
* This site will hold all Blog posts related to the Marketing product.
|
|
4447
|
-
*/
|
|
4448
|
-
SHARED_BLOG_ENTERPRISE = "SHARED_BLOG_ENTERPRISE",
|
|
4449
|
-
/** Standalone forms (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4450
|
-
STANDALONE_FORMS = "STANDALONE_FORMS",
|
|
4451
|
-
/** Standalone events (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4452
|
-
STANDALONE_EVENTS = "STANDALONE_EVENTS",
|
|
4453
|
-
/** MIMIR - Siteless account for MIMIR Ai Job runner. */
|
|
4454
|
-
MIMIR = "MIMIR"
|
|
4455
|
-
}
|
|
4456
|
-
/** @enumType */
|
|
4457
|
-
type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR';
|
|
4458
|
-
interface SeoData {
|
|
4459
|
-
/**
|
|
4460
|
-
* A title.
|
|
4461
|
-
* @maxLength 255
|
|
4462
|
-
*/
|
|
4463
|
-
title?: string | null;
|
|
4464
|
-
/** Indicates whether the site should be indexable by bots. */
|
|
4465
|
-
indexable?: boolean;
|
|
4466
|
-
/** TDB. */
|
|
4467
|
-
suppressTrackingCookies?: boolean;
|
|
4468
|
-
/**
|
|
4469
|
-
* TDB.
|
|
4470
|
-
* @maxLength 300
|
|
4471
|
-
*/
|
|
4472
|
-
ogImage?: string | null;
|
|
4473
|
-
/**
|
|
4474
|
-
* A list of meta tags.
|
|
4475
|
-
* @maxSize 100
|
|
4476
|
-
*/
|
|
4477
|
-
metaTags?: MetaTag[];
|
|
4478
|
-
/**
|
|
4479
|
-
* A canonical URL for a site.
|
|
4480
|
-
* @maxLength 4000
|
|
4481
|
-
*/
|
|
4482
|
-
canonicalUrl?: string | null;
|
|
4483
|
-
}
|
|
4484
|
-
interface MetaTag {
|
|
4485
|
-
/**
|
|
4486
|
-
* A name.
|
|
4487
|
-
* @maxLength 50
|
|
4488
|
-
*/
|
|
4489
|
-
name?: string;
|
|
4490
|
-
/**
|
|
4491
|
-
* A value.
|
|
4492
|
-
* @maxLength 500
|
|
4493
|
-
*/
|
|
4494
|
-
value?: string;
|
|
4495
|
-
/** Indicates whether should be rendered as property. */
|
|
4496
|
-
property?: boolean;
|
|
4497
|
-
}
|
|
4498
|
-
/** Represents an HTML application (HTML site). */
|
|
4499
|
-
interface HtmlApplication {
|
|
4500
|
-
/** Legacy, don't use it if you can. */
|
|
4501
|
-
intId?: number;
|
|
4502
|
-
/** Identifier of the instance. */
|
|
4503
|
-
instanceId?: string;
|
|
4504
|
-
seoData?: SeoData;
|
|
4505
|
-
/** Language of this site. */
|
|
4506
|
-
languageCode?: string;
|
|
4507
|
-
/** File name for thumbnail. */
|
|
4508
|
-
thumbnail?: string | null;
|
|
4509
|
-
/** Indicates whether this site is managed by EditorX. */
|
|
4510
|
-
editorX?: boolean;
|
|
4511
|
-
/** Indicates whether this site is managed by Wix Studio. */
|
|
4512
|
-
studio?: boolean;
|
|
4513
|
-
/** Indicates that site is managed by Odeditor */
|
|
4514
|
-
odeditor?: boolean;
|
|
4515
|
-
/** Indicates that site is managed by Picasso */
|
|
4516
|
-
picasso?: boolean;
|
|
4517
|
-
}
|
|
4518
|
-
interface ExternalUriMapping {
|
|
4519
|
-
/**
|
|
4520
|
-
* Deprecated.
|
|
4521
|
-
* @maxLength 255
|
|
4522
|
-
*/
|
|
4523
|
-
fromExternalUri?: string;
|
|
4524
|
-
/**
|
|
4525
|
-
* Deprecated.
|
|
4526
|
-
* @maxLength 255
|
|
4527
|
-
*/
|
|
4528
|
-
toWixUri?: string;
|
|
4529
|
-
/**
|
|
4530
|
-
* Deprecated.
|
|
4531
|
-
* @maxLength 255
|
|
4532
|
-
*/
|
|
4533
|
-
oldToWixUri?: string | null;
|
|
4534
|
-
/** Deprecated. */
|
|
4535
|
-
requireDomain?: boolean | null;
|
|
4536
|
-
}
|
|
4537
|
-
interface UserDataResponse {
|
|
4538
|
-
userEmail?: string;
|
|
4539
|
-
/** owner name */
|
|
4540
|
-
userName?: string;
|
|
4541
|
-
/** owner status */
|
|
4542
|
-
userStatus?: string;
|
|
4543
|
-
/** owner language */
|
|
4544
|
-
userLanguage?: string;
|
|
4545
|
-
}
|
|
4546
|
-
interface QueryOrdersForMetasiteRequest {
|
|
4547
|
-
/**
|
|
4548
|
-
* meta site Id for EP orders to retrieve
|
|
4549
|
-
* @format GUID
|
|
4550
|
-
*/
|
|
4551
|
-
metasiteId?: string;
|
|
4552
|
-
/** paginated internal orders query request */
|
|
4553
|
-
internalQueryOrdersRequest?: InternalQueryOrdersRequest;
|
|
4554
|
-
}
|
|
4555
|
-
interface InternalQueryOrdersRequest {
|
|
4556
|
-
/** Query options. */
|
|
4557
|
-
query?: PlatformQuery;
|
|
4558
|
-
}
|
|
4559
|
-
interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
|
|
4560
|
-
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
4561
|
-
paging?: PlatformPaging;
|
|
4562
|
-
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
4563
|
-
cursorPaging?: CursorPaging;
|
|
4564
|
-
/** Filter object. */
|
|
4565
|
-
filter?: Record<string, any> | null;
|
|
4566
|
-
/** Sorting options. For example, `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]`. */
|
|
4567
|
-
sort?: Sorting[];
|
|
4568
|
-
}
|
|
4569
|
-
/** @oneof */
|
|
4570
|
-
interface PlatformQueryPagingMethodOneOf {
|
|
4571
|
-
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
4572
|
-
paging?: PlatformPaging;
|
|
4573
|
-
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
4574
|
-
cursorPaging?: CursorPaging;
|
|
4575
|
-
}
|
|
4576
|
-
interface Sorting {
|
|
4577
|
-
/**
|
|
4578
|
-
* Name of the field to sort by.
|
|
4579
|
-
* @maxLength 512
|
|
4580
|
-
*/
|
|
4581
|
-
fieldName?: string;
|
|
4582
|
-
/** Sort order. */
|
|
4583
|
-
order?: SortOrderWithLiterals;
|
|
4584
|
-
}
|
|
4585
|
-
declare enum SortOrder {
|
|
4586
|
-
ASC = "ASC",
|
|
4587
|
-
DESC = "DESC"
|
|
4588
|
-
}
|
|
4589
|
-
/** @enumType */
|
|
4590
|
-
type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
4591
|
-
interface PlatformPaging {
|
|
4592
|
-
/**
|
|
4593
|
-
* Number of items to load.
|
|
4594
|
-
* @max 100
|
|
4595
|
-
*/
|
|
4596
|
-
limit?: number | null;
|
|
4597
|
-
/** Number of items to skip in the current sort order. */
|
|
4598
|
-
offset?: number | null;
|
|
4599
|
-
}
|
|
4600
|
-
interface CursorPaging {
|
|
4601
|
-
/**
|
|
4602
|
-
* Maximum number of items to return in the results.
|
|
4603
|
-
* @max 100
|
|
4604
|
-
*/
|
|
4605
|
-
limit?: number | null;
|
|
4606
|
-
/**
|
|
4607
|
-
* Pointer to the next or previous page in the list of results.
|
|
4608
|
-
*
|
|
4609
|
-
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
4610
|
-
* Not relevant for the first request.
|
|
4611
|
-
* @maxLength 16000
|
|
4612
|
-
*/
|
|
4613
|
-
cursor?: string | null;
|
|
4614
|
-
}
|
|
4615
|
-
interface QueryOrdersForMetasiteResponse {
|
|
4616
|
-
/** found exisitng orders according to pagination and query provided. */
|
|
4617
|
-
orders?: Order[];
|
|
4618
|
-
/** Details on the paged set of results returned. */
|
|
4619
|
-
pagingMetadata?: PlatformPagingMetadata;
|
|
4620
|
-
}
|
|
4621
|
-
interface PlatformPagingMetadata {
|
|
4622
|
-
/** The number of items returned in this response. */
|
|
4623
|
-
count?: number | null;
|
|
4624
|
-
/** The offset which was requested. Returned if offset paging was used. */
|
|
4625
|
-
offset?: number | null;
|
|
4626
|
-
/** The total number of items that match the query. Returned if offset paging was used. */
|
|
4627
|
-
total?: number | null;
|
|
4628
|
-
/** Cursors to navigate through result pages. Returned if cursor paging was used. */
|
|
4629
|
-
cursors?: Cursors;
|
|
4630
|
-
}
|
|
4631
|
-
interface Cursors {
|
|
3806
|
+
eventTime?: Date | null;
|
|
4632
3807
|
/**
|
|
4633
|
-
*
|
|
4634
|
-
*
|
|
3808
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
3809
|
+
* (for example, GDPR).
|
|
4635
3810
|
*/
|
|
4636
|
-
|
|
3811
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
3812
|
+
/** If present, indicates the action that triggered the event. */
|
|
3813
|
+
originatedFrom?: string | null;
|
|
4637
3814
|
/**
|
|
4638
|
-
*
|
|
4639
|
-
*
|
|
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.
|
|
4640
3817
|
*/
|
|
4641
|
-
|
|
3818
|
+
entityEventSequence?: string | null;
|
|
4642
3819
|
}
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
|
|
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 {
|
|
4649
3834
|
/**
|
|
4650
|
-
*
|
|
4651
|
-
*
|
|
4652
|
-
*
|
|
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.
|
|
4653
3838
|
*/
|
|
4654
|
-
|
|
3839
|
+
currentEntity?: string;
|
|
4655
3840
|
}
|
|
4656
|
-
interface
|
|
4657
|
-
/**
|
|
4658
|
-
|
|
3841
|
+
interface EntityDeletedEvent {
|
|
3842
|
+
/** Entity that was deleted. */
|
|
3843
|
+
deletedEntity?: string | null;
|
|
3844
|
+
}
|
|
3845
|
+
interface ActionEvent {
|
|
3846
|
+
body?: string;
|
|
3847
|
+
}
|
|
3848
|
+
interface Empty {
|
|
4659
3849
|
}
|
|
4660
|
-
interface
|
|
3850
|
+
interface MessageEnvelope {
|
|
4661
3851
|
/**
|
|
4662
|
-
*
|
|
3852
|
+
* App instance ID.
|
|
4663
3853
|
* @format GUID
|
|
4664
3854
|
*/
|
|
4665
|
-
|
|
3855
|
+
instanceId?: string | null;
|
|
4666
3856
|
/**
|
|
4667
|
-
*
|
|
4668
|
-
* @
|
|
3857
|
+
* Event type.
|
|
3858
|
+
* @maxLength 150
|
|
4669
3859
|
*/
|
|
4670
|
-
|
|
4671
|
-
|
|
4672
|
-
|
|
4673
|
-
/**
|
|
4674
|
-
|
|
3860
|
+
eventType?: string;
|
|
3861
|
+
/** The identification type and identity data. */
|
|
3862
|
+
identity?: IdentificationData;
|
|
3863
|
+
/** Stringify payload. */
|
|
3864
|
+
data?: string;
|
|
4675
3865
|
}
|
|
4676
|
-
interface
|
|
3866
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
4677
3867
|
/**
|
|
4678
|
-
*
|
|
3868
|
+
* ID of a site visitor that has not logged in to the site.
|
|
4679
3869
|
* @format GUID
|
|
4680
3870
|
*/
|
|
4681
|
-
|
|
3871
|
+
anonymousVisitorId?: string;
|
|
4682
3872
|
/**
|
|
4683
|
-
*
|
|
3873
|
+
* ID of a site visitor that has logged in to the site.
|
|
4684
3874
|
* @format GUID
|
|
4685
3875
|
*/
|
|
4686
|
-
|
|
4687
|
-
/** Refund to upsert. */
|
|
4688
|
-
refund?: Refund;
|
|
4689
|
-
}
|
|
4690
|
-
interface UpsertRefundResponse {
|
|
4691
|
-
/** Updated order transactions. */
|
|
4692
|
-
orderTransactions?: OrderTransactions;
|
|
4693
|
-
}
|
|
4694
|
-
interface GetOrderOutOfBoxRequest {
|
|
3876
|
+
memberId?: string;
|
|
4695
3877
|
/**
|
|
4696
|
-
*
|
|
4697
|
-
* @
|
|
4698
|
-
* @maxLength 100
|
|
3878
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3879
|
+
* @format GUID
|
|
4699
3880
|
*/
|
|
4700
|
-
|
|
4701
|
-
}
|
|
4702
|
-
interface GetOrderOutOfBoxResponse {
|
|
3881
|
+
wixUserId?: string;
|
|
4703
3882
|
/**
|
|
4704
|
-
*
|
|
4705
|
-
* @
|
|
4706
|
-
* @maxLength 100
|
|
3883
|
+
* ID of an app.
|
|
3884
|
+
* @format GUID
|
|
4707
3885
|
*/
|
|
4708
|
-
|
|
3886
|
+
appId?: string;
|
|
3887
|
+
/** @readonly */
|
|
3888
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
4709
3889
|
}
|
|
4710
|
-
|
|
3890
|
+
/** @oneof */
|
|
3891
|
+
interface IdentificationDataIdOneOf {
|
|
4711
3892
|
/**
|
|
4712
|
-
*
|
|
4713
|
-
* @
|
|
4714
|
-
* @maxLength 100
|
|
3893
|
+
* ID of a site visitor that has not logged in to the site.
|
|
3894
|
+
* @format GUID
|
|
4715
3895
|
*/
|
|
4716
|
-
|
|
4717
|
-
}
|
|
4718
|
-
interface GetOrderAgcResponse {
|
|
3896
|
+
anonymousVisitorId?: string;
|
|
4719
3897
|
/**
|
|
4720
|
-
*
|
|
4721
|
-
* @
|
|
4722
|
-
* @maxLength 100
|
|
3898
|
+
* ID of a site visitor that has logged in to the site.
|
|
3899
|
+
* @format GUID
|
|
4723
3900
|
*/
|
|
4724
|
-
|
|
4725
|
-
}
|
|
4726
|
-
interface GetOrderWithFilterByLocationRequest {
|
|
3901
|
+
memberId?: string;
|
|
4727
3902
|
/**
|
|
4728
|
-
*
|
|
4729
|
-
* @
|
|
4730
|
-
* @maxLength 100
|
|
3903
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3904
|
+
* @format GUID
|
|
4731
3905
|
*/
|
|
4732
|
-
|
|
4733
|
-
}
|
|
4734
|
-
interface GetOrderWithFilterByLocationResponse {
|
|
3906
|
+
wixUserId?: string;
|
|
4735
3907
|
/**
|
|
4736
|
-
*
|
|
4737
|
-
* @
|
|
4738
|
-
* @maxLength 100
|
|
3908
|
+
* ID of an app.
|
|
3909
|
+
* @format GUID
|
|
4739
3910
|
*/
|
|
4740
|
-
|
|
4741
|
-
}
|
|
4742
|
-
interface V1UpdateOrderRequest {
|
|
4743
|
-
/** Order to be updated. */
|
|
4744
|
-
order?: Order;
|
|
3911
|
+
appId?: string;
|
|
4745
3912
|
}
|
|
4746
|
-
|
|
4747
|
-
|
|
4748
|
-
|
|
3913
|
+
declare enum WebhookIdentityType {
|
|
3914
|
+
UNKNOWN = "UNKNOWN",
|
|
3915
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3916
|
+
MEMBER = "MEMBER",
|
|
3917
|
+
WIX_USER = "WIX_USER",
|
|
3918
|
+
APP = "APP"
|
|
4749
3919
|
}
|
|
3920
|
+
/** @enumType */
|
|
3921
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
4750
3922
|
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
4751
3923
|
/** insert/update documents */
|
|
4752
3924
|
update?: InternalDocumentUpdateOperation;
|
|
@@ -4898,6 +4070,15 @@ interface BatchOfTriggerReindexOrderRequest {
|
|
|
4898
4070
|
/** @maxSize 25 */
|
|
4899
4071
|
requests?: TriggerReindexOrderRequest[];
|
|
4900
4072
|
}
|
|
4073
|
+
interface TriggerReindexOrderRequest {
|
|
4074
|
+
/** @format GUID */
|
|
4075
|
+
metasiteId?: string;
|
|
4076
|
+
/**
|
|
4077
|
+
* @minLength 1
|
|
4078
|
+
* @maxLength 100
|
|
4079
|
+
*/
|
|
4080
|
+
orderId?: string;
|
|
4081
|
+
}
|
|
4901
4082
|
interface DiffmatokyPayload {
|
|
4902
4083
|
left?: string;
|
|
4903
4084
|
right?: string;
|
|
@@ -4914,6 +4095,10 @@ interface ContinueSideEffectsFlowInLegacyData {
|
|
|
4914
4095
|
orderId?: string;
|
|
4915
4096
|
ordersExperiments?: OrdersExperiments;
|
|
4916
4097
|
}
|
|
4098
|
+
interface SnapshotMessage {
|
|
4099
|
+
_id?: string;
|
|
4100
|
+
opType?: number;
|
|
4101
|
+
}
|
|
4917
4102
|
interface IndexingMessage {
|
|
4918
4103
|
_id?: string;
|
|
4919
4104
|
opType?: number;
|
|
@@ -4931,12 +4116,94 @@ interface GetOrderResponse {
|
|
|
4931
4116
|
/** The requested order. */
|
|
4932
4117
|
order?: Order;
|
|
4933
4118
|
}
|
|
4119
|
+
interface InternalQueryOrdersRequest {
|
|
4120
|
+
/** Query options. */
|
|
4121
|
+
query?: PlatformQuery;
|
|
4122
|
+
}
|
|
4123
|
+
interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
|
|
4124
|
+
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
4125
|
+
paging?: PlatformPaging;
|
|
4126
|
+
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
4127
|
+
cursorPaging?: CursorPaging;
|
|
4128
|
+
/** Filter object. */
|
|
4129
|
+
filter?: Record<string, any> | null;
|
|
4130
|
+
/** Sorting options. For example, `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]`. */
|
|
4131
|
+
sort?: Sorting[];
|
|
4132
|
+
}
|
|
4133
|
+
/** @oneof */
|
|
4134
|
+
interface PlatformQueryPagingMethodOneOf {
|
|
4135
|
+
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
4136
|
+
paging?: PlatformPaging;
|
|
4137
|
+
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
4138
|
+
cursorPaging?: CursorPaging;
|
|
4139
|
+
}
|
|
4140
|
+
interface Sorting {
|
|
4141
|
+
/**
|
|
4142
|
+
* Name of the field to sort by.
|
|
4143
|
+
* @maxLength 512
|
|
4144
|
+
*/
|
|
4145
|
+
fieldName?: string;
|
|
4146
|
+
/** Sort order. */
|
|
4147
|
+
order?: SortOrderWithLiterals;
|
|
4148
|
+
}
|
|
4149
|
+
declare enum SortOrder {
|
|
4150
|
+
ASC = "ASC",
|
|
4151
|
+
DESC = "DESC"
|
|
4152
|
+
}
|
|
4153
|
+
/** @enumType */
|
|
4154
|
+
type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
4155
|
+
interface PlatformPaging {
|
|
4156
|
+
/**
|
|
4157
|
+
* Number of items to load.
|
|
4158
|
+
* @max 100
|
|
4159
|
+
*/
|
|
4160
|
+
limit?: number | null;
|
|
4161
|
+
/** Number of items to skip in the current sort order. */
|
|
4162
|
+
offset?: number | null;
|
|
4163
|
+
}
|
|
4164
|
+
interface CursorPaging {
|
|
4165
|
+
/**
|
|
4166
|
+
* Maximum number of items to return in the results.
|
|
4167
|
+
* @max 100
|
|
4168
|
+
*/
|
|
4169
|
+
limit?: number | null;
|
|
4170
|
+
/**
|
|
4171
|
+
* Pointer to the next or previous page in the list of results.
|
|
4172
|
+
*
|
|
4173
|
+
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
4174
|
+
* Not relevant for the first request.
|
|
4175
|
+
* @maxLength 16000
|
|
4176
|
+
*/
|
|
4177
|
+
cursor?: string | null;
|
|
4178
|
+
}
|
|
4934
4179
|
interface InternalQueryOrdersResponse {
|
|
4935
4180
|
/** List of orders. */
|
|
4936
4181
|
orders?: Order[];
|
|
4937
4182
|
/** Details on the paged set of results returned. */
|
|
4938
4183
|
metadata?: PlatformPagingMetadata;
|
|
4939
4184
|
}
|
|
4185
|
+
interface PlatformPagingMetadata {
|
|
4186
|
+
/** The number of items returned in this response. */
|
|
4187
|
+
count?: number | null;
|
|
4188
|
+
/** The offset which was requested. Returned if offset paging was used. */
|
|
4189
|
+
offset?: number | null;
|
|
4190
|
+
/** The total number of items that match the query. Returned if offset paging was used. */
|
|
4191
|
+
total?: number | null;
|
|
4192
|
+
/** Cursors to navigate through result pages. Returned if cursor paging was used. */
|
|
4193
|
+
cursors?: Cursors;
|
|
4194
|
+
}
|
|
4195
|
+
interface Cursors {
|
|
4196
|
+
/**
|
|
4197
|
+
* Cursor string pointing to the next page in the list of results.
|
|
4198
|
+
* @maxLength 16000
|
|
4199
|
+
*/
|
|
4200
|
+
next?: string | null;
|
|
4201
|
+
/**
|
|
4202
|
+
* Cursor pointing to the previous page in the list of results.
|
|
4203
|
+
* @maxLength 16000
|
|
4204
|
+
*/
|
|
4205
|
+
prev?: string | null;
|
|
4206
|
+
}
|
|
4940
4207
|
interface QueryOrderRequest {
|
|
4941
4208
|
/** Query options. */
|
|
4942
4209
|
query?: PlatformQuery;
|
|
@@ -6264,6 +5531,13 @@ interface V1MarkOrderAsPaidResponse {
|
|
|
6264
5531
|
/** Updated order. */
|
|
6265
5532
|
order?: Order;
|
|
6266
5533
|
}
|
|
5534
|
+
/** Triggered when the payment status of an order is updated */
|
|
5535
|
+
interface PaymentStatusUpdated {
|
|
5536
|
+
/** The order that was updated */
|
|
5537
|
+
order?: Order;
|
|
5538
|
+
/** The previous status (before the update) */
|
|
5539
|
+
previousPaymentStatus?: PaymentStatusWithLiterals;
|
|
5540
|
+
}
|
|
6267
5541
|
interface V1BulkMarkOrdersAsPaidRequest {
|
|
6268
5542
|
/**
|
|
6269
5543
|
* IDs of orders to mark as paid.
|
|
@@ -7161,6 +6435,35 @@ interface OrderCreatedEnvelope {
|
|
|
7161
6435
|
* @slug created
|
|
7162
6436
|
*/
|
|
7163
6437
|
declare function onOrderCreated(handler: (event: OrderCreatedEnvelope) => void | Promise<void>): void;
|
|
6438
|
+
interface OrderPaymentStatusUpdatedEnvelope {
|
|
6439
|
+
data: PaymentStatusUpdated;
|
|
6440
|
+
metadata: EventMetadata;
|
|
6441
|
+
}
|
|
6442
|
+
/**
|
|
6443
|
+
* Triggered when an order's payment status is updated.
|
|
6444
|
+
* @permissionScope Manage Stores - all permissions
|
|
6445
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
6446
|
+
* @permissionScope Manage Stores
|
|
6447
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
6448
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
6449
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
6450
|
+
* @permissionScope Read Orders
|
|
6451
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-ORDERS
|
|
6452
|
+
* @permissionScope Read Stores - all read permissions
|
|
6453
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
6454
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
6455
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
6456
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
6457
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
6458
|
+
* @permissionScope Manage Orders
|
|
6459
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
6460
|
+
* @permissionId ECOM.READ_ORDERS
|
|
6461
|
+
* @webhook
|
|
6462
|
+
* @eventType wix.ecom.v1.order_payment_status_updated
|
|
6463
|
+
* @serviceIdentifier com.wix.ecom.orders.v1.Orders
|
|
6464
|
+
* @slug payment_status_updated
|
|
6465
|
+
*/
|
|
6466
|
+
declare function onOrderPaymentStatusUpdated(handler: (event: OrderPaymentStatusUpdatedEnvelope) => void | Promise<void>): void;
|
|
7164
6467
|
type OrderNonNullablePaths = `number` | `lineItems` | `lineItems.${number}._id` | `lineItems.${number}.productName.original` | `lineItems.${number}.catalogReference.catalogItemId` | `lineItems.${number}.catalogReference.appId` | `lineItems.${number}.quantity` | `lineItems.${number}.totalDiscount.amount` | `lineItems.${number}.totalDiscount.formattedAmount` | `lineItems.${number}.physicalProperties.shippable` | `lineItems.${number}.itemType.preset` | `lineItems.${number}.itemType.custom` | `lineItems.${number}.paymentOption` | `lineItems.${number}.taxDetails.taxRate` | `lineItems.${number}.taxInfo.taxIncludedInPrice` | `lineItems.${number}.digitalFile.fileId` | `lineItems.${number}.subscriptionInfo.cycleNumber` | `lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.freeTrialPeriod.frequency` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.freeTrialPeriod.interval` | `lineItems.${number}.priceDescription.original` | `lineItems.${number}.taxableAddress.addressType` | `buyerInfo.visitorId` | `buyerInfo.memberId` | `paymentStatus` | `fulfillmentStatus` | `weightUnit` | `taxIncludedInPrices` | `priceSummary.subtotal.amount` | `priceSummary.subtotal.formattedAmount` | `billingInfo.address.streetAddress.number` | `billingInfo.address.streetAddress.name` | `billingInfo.contactDetails.vatId._id` | `billingInfo.contactDetails.vatId.type` | `shippingInfo.title` | `shippingInfo.logistics.shippingDestination.address.streetAddress.number` | `shippingInfo.logistics.shippingDestination.address.streetAddress.name` | `shippingInfo.logistics.shippingDestination.contactDetails.vatId._id` | `shippingInfo.logistics.shippingDestination.contactDetails.vatId.type` | `shippingInfo.logistics.pickupDetails.pickupMethod` | `shippingInfo.cost.price.amount` | `shippingInfo.cost.price.formattedAmount` | `shippingInfo.cost.taxDetails.taxRate` | `status` | `taxSummary.totalTax.amount` | `taxSummary.totalTax.formattedAmount` | `taxInfo.totalTax.amount` | `taxInfo.totalTax.formattedAmount` | `taxInfo.taxBreakdown` | `taxInfo.taxBreakdown.${number}.taxName` | `taxInfo.taxBreakdown.${number}.taxType` | `taxInfo.taxBreakdown.${number}.jurisdiction` | `taxInfo.taxBreakdown.${number}.jurisdictionType` | `taxInfo.taxBreakdown.${number}.rate` | `appliedDiscounts` | `appliedDiscounts.${number}.coupon._id` | `appliedDiscounts.${number}.coupon.code` | `appliedDiscounts.${number}.coupon.name` | `appliedDiscounts.${number}.coupon.amount.amount` | `appliedDiscounts.${number}.coupon.amount.formattedAmount` | `appliedDiscounts.${number}.merchantDiscount.discountReason` | `appliedDiscounts.${number}.discountRule._id` | `appliedDiscounts.${number}.discountRule.name.original` | `appliedDiscounts.${number}.discountType` | `activities` | `activities.${number}.customActivity.appId` | `activities.${number}.customActivity.type` | `activities.${number}.merchantComment.message` | `activities.${number}.orderRefunded.manual` | `activities.${number}.orderRefunded.amount.amount` | `activities.${number}.orderRefunded.amount.formattedAmount` | `activities.${number}.orderRefunded.reason` | `activities.${number}.type` | `attributionSource` | `createdBy.userId` | `createdBy.memberId` | `createdBy.visitorId` | `createdBy.appId` | `channelInfo.type` | `customFields` | `customFields.${number}.title` | `balanceSummary.balance.amount` | `balanceSummary.balance.formattedAmount` | `balanceSummary.paid.amount` | `balanceSummary.paid.formattedAmount` | `additionalFees` | `additionalFees.${number}.name` | `additionalFees.${number}.price.amount` | `additionalFees.${number}.price.formattedAmount` | `additionalFees.${number}.taxDetails.taxRate` | `additionalFees.${number}._id` | `recipientInfo.address.streetAddress.number` | `recipientInfo.address.streetAddress.name` | `recipientInfo.contactDetails.vatId._id` | `recipientInfo.contactDetails.vatId.type` | `tags.privateTags.tagIds` | `businessLocation._id` | `businessLocation.name` | `payAfterFreeTrial.subtotal.amount` | `payAfterFreeTrial.subtotal.formattedAmount`;
|
|
7165
6468
|
/**
|
|
7166
6469
|
* Prepares payment collection for given ecom order. This is the first of 2-step process of payment collection.
|
|
@@ -8187,4 +7490,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
8187
7490
|
unassignTags?: Tags;
|
|
8188
7491
|
}
|
|
8189
7492
|
|
|
8190
|
-
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 DescriptionLineDescriptionLineValueOneOf 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, DescriptionLineType as a6, ItemTypeItemType as a7, PaymentOptionType as a8, JurisdictionType as a9, ActionType as aA, ChargebackStatus as aB, MembershipPaymentStatus as aC, RefundStatus as aD, WebhookIdentityType as aE, TextDetection as aF, AnimationDetection as aG, PreviewEmailType as aH, State as aI, Namespace as aJ, SortOrder as aK, VersioningMode as aL, OrderApprovalStrategy as aM, DeltaPaymentOptionType as aN, InventoryAction as aO, Placement as aP, SubdivisionType as aQ, SourceType as aR, CustomFieldGroup as aS, ValueType as aT, DepositType as aU, InvoiceStatus as aV, type OrderLineItem as aW, type ProductName as aX, type CatalogReference as aY, type DescriptionLine as aZ, type DescriptionLineValueOneOf as a_, SubscriptionFrequency as aa, AdjustmentType as ab, TaxableAddressType as ac, PaymentStatus as ad, FulfillmentStatus as ae, WeightUnit as af, VatType as ag, PickupMethod as ah, OrderStatus as ai, DiscountType as aj, DiscountReason as ak, LineItemQuantityChangeType as al, ActivityType as am, AttributionSource as an, ChannelType as ao, ScheduledAction as ap, DurationUnit as aq, PaymentCollectabilityStatus as ar, RefundableStatus as as, NonRefundableReason as at, ManuallyRefundableReason as au, RestockType as av, TransactionStatus as aw, AuthorizationCaptureStatus as ax, AuthorizationVoidStatus as ay, Reason as az, type PreparePaymentCollectionResponse as b, type DraftOrderChangesApplied as b$, type DescriptionLineName as b0, type PlainTextValue as b1, type Color as b2, type FocalPoint as b3, type PhysicalProperties as b4, type ItemType as b5, type ItemTypeItemTypeDataOneOf as b6, type ItemTaxFullDetails as b7, type LineItemTaxInfo as b8, type LineItemTaxBreakdown as b9, type V1ShippingInformation as bA, type DeliveryLogistics as bB, type DeliveryLogisticsAddressOneOf as bC, type PickupDetails as bD, type PickupAddress as bE, type DeliveryTimeSlot as bF, type ShippingPrice as bG, type ShippingRegion as bH, type TaxSummary as bI, type OrderTaxInfo as bJ, type OrderTaxBreakdown as bK, type AppliedDiscount as bL, type AppliedDiscountDiscountSourceOneOf as bM, type Coupon as bN, type MerchantDiscount as bO, type MerchantDiscountMerchantDiscountReasonOneOf as bP, type DiscountRule as bQ, type DiscountRuleName as bR, type LineItemDiscount as bS, type Activity as bT, type ActivityContentOneOf as bU, type CustomActivity as bV, type MerchantComment as bW, type OrderRefunded as bX, type OrderCreatedFromExchange as bY, type NewExchangeOrderCreated as bZ, type LineItemExchangeData as b_, type DigitalFile as ba, type SubscriptionInfo as bb, type SubscriptionTitle as bc, type SubscriptionDescription as bd, type SubscriptionSettings as be, type FreeTrialPeriod as bf, type BillingAdjustment as bg, type BillingAdjustmentPriceSummary as bh, type PriceDescription as bi, type LocationAndQuantity as bj, type TaxableAddress as bk, type TaxableAddressTaxableAddressDataOneOf as bl, type ExtendedFields as bm, type ModifierGroup as bn, type TranslatableString as bo, type ItemModifier as bp, type BuyerInfo as bq, type BuyerInfoIdOneOf as br, type CurrencyConversionDetails as bs, type PriceSummary as bt, type AddressWithContact as bu, type Address as bv, type StreetAddress as bw, type AddressLocation as bx, type FullAddressContactDetails as by, type VatId as bz, type PreparePaymentCollectionApplicationErrors as c, type GetPaymentCollectabilityStatusRequest as c$, type OrderChange as c0, type OrderChangeValueOneOf as c1, type LineItemChanges as c2, type LineItemQuantityChange as c3, type LineItemPriceChange as c4, type ManagedLineItem as c5, type ManagedDiscount as c6, type TranslatedValue as c7, type LineItemAmount as c8, type ManagedAdditionalFee as c9, type ReceiptCreatedReceiptInfoOneOf as cA, type WixReceipt as cB, type ExternalReceipt as cC, type ReceiptSent as cD, type ReceiptSentReceiptInfoOneOf as cE, type ChargebackCreated as cF, type ChargebackReversed as cG, type CreatedBy as cH, type CreatedByStringOneOf as cI, type ChannelInfo as cJ, type CustomField as cK, type BalanceSummary as cL, type Balance as cM, type AdditionalFee as cN, type FulfillmentStatusesAggregate as cO, type Tags as cP, type TagList as cQ, type Location as cR, type OrderApproved as cS, type OrdersExperiments as cT, type OrderRejectedEventOrderRejected as cU, type OrderItemsRestocked as cV, type V1RestockItem as cW, type PreparePaymentCollectionRequest as cX, type RedirectUrls as cY, type DelayedCaptureSettings as cZ, type Duration as c_, type TotalPriceChange as ca, type ShippingInformationChange as cb, type ShippingInformation as cc, type SavedPaymentMethod as cd, type AuthorizedPaymentCreated as ce, type AuthorizedPaymentCaptured as cf, type AuthorizedPaymentVoided as cg, type RefundInitiated as ch, type RefundedPayment as ci, type RefundedPaymentKindOneOf as cj, type RegularPaymentRefund as ck, type GiftCardPaymentRefund as cl, type MembershipPaymentRefund as cm, type PaymentRefunded as cn, type PaymentRefundFailed as co, type RefundedAsStoreCredit as cp, type PaymentPending as cq, type PaymentPendingPaymentDetailsOneOf as cr, type RegularPayment as cs, type RegularPaymentPaymentMethodDetailsOneOf as ct, type CreditCardDetails as cu, type PaymentCanceled as cv, type PaymentCanceledPaymentDetailsOneOf as cw, type PaymentDeclined as cx, type PaymentDeclinedPaymentDetailsOneOf as cy, type ReceiptCreated as cz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as d, type EntityUpdatedEvent as d$, type RecordManuallyCollectedPaymentRequest as d0, type RecordManuallyCollectedPaymentResponse as d1, type MarkOrderAsPaidRequest as d2, type BulkMarkOrdersAsPaidRequest as d3, type BulkOrderResult as d4, type ItemMetadata as d5, type ApplicationError as d6, type BulkActionMetadata as d7, type GetRefundabilityStatusRequest as d8, type Refundability as d9, type AuthorizationCapture as dA, type AuthorizationActionFailureDetails as dB, type AuthorizationVoid as dC, type V1ScheduledAction as dD, type Chargeback as dE, type GiftCardPaymentDetails as dF, type MembershipPaymentDetails as dG, type WixReceiptInfo as dH, type ExternalReceiptInfo as dI, type Refund as dJ, type RefundTransaction as dK, type RefundStatusInfo as dL, type AggregatedRefundSummary as dM, type RefundItemsBreakdown as dN, type LineItemRefundSummary as dO, type CalculateRefundRequest as dP, type CalculateRefundItemRequest as dQ, type CalculateRefundResponse as dR, type CalculateRefundItemResponse as dS, type VoidAuthorizedPaymentsRequest as dT, type CaptureAuthorizedPaymentsRequest as dU, type ChargeSavedPaymentMethodRequest as dV, type ChargeSavedPaymentMethodResponse as dW, type DomainEvent as dX, type DomainEventBodyOneOf as dY, type EntityCreatedEvent as dZ, type RestoreInfo as d_, type RefundabilityAdditionalRefundabilityInfoOneOf as da, type CreatePaymentGatewayOrderRequest as db, type ChargedBy as dc, type ChargeMembershipsRequest as dd, type MembershipChargeItem as de, type MembershipName as df, type ServiceProperties as dg, type ChargeMembershipsResponse as dh, type TriggerRefundRequest as di, type RefundDetails as dj, type RefundItem as dk, type LineItemRefund as dl, type AdditionalFeeRefund as dm, type ShippingRefund as dn, type RefundSideEffects as dp, type RestockInfo as dq, type RestockItem as dr, type OrderTransactions as ds, type Payment as dt, type PaymentPaymentDetailsOneOf as du, type PaymentReceiptInfoOneOf as dv, type RegularPaymentDetails as dw, type RegularPaymentDetailsPaymentMethodDetailsOneOf as dx, type CreditCardPaymentMethodDetails as dy, type AuthorizationDetails as dz, type GetRefundabilityStatusResponse as e, type CursorPaging as e$, type EntityDeletedEvent as e0, type ActionEvent as e1, type Empty as e2, type MessageEnvelope as e3, type IdentificationData as e4, type IdentificationDataIdOneOf as e5, type ImageContent as e6, type SendBuyerConfirmationEmailRequest as e7, type SendBuyerConfirmationEmailResponse as e8, type SendBuyerPaymentsReceivedEmailRequest as e9, type PreviewBuyerPaymentsReceivedEmailResponse as eA, type PreviewBuyerConfirmationEmailRequest as eB, type PreviewBuyerConfirmationEmailResponse as eC, type PreviewBuyerPickupConfirmationEmailRequest as eD, type PreviewBuyerPickupConfirmationEmailResponse as eE, type PreviewShippingConfirmationEmailRequest as eF, type PreviewShippingConfirmationEmailResponse as eG, type PreviewResendDownloadLinksEmailRequest as eH, type PreviewResendDownloadLinksEmailResponse as eI, type TriggerReindexOrderRequest as eJ, type SnapshotMessage as eK, type PaymentStatusUpdated as eL, type GetMetasiteDataRequest as eM, type GetMetasiteDataResponse as eN, type MetaSite as eO, type App as eP, type SeoData as eQ, type MetaTag as eR, type HtmlApplication as eS, type ExternalUriMapping as eT, type UserDataResponse as eU, type QueryOrdersForMetasiteRequest as eV, type InternalQueryOrdersRequest as eW, type PlatformQuery as eX, type PlatformQueryPagingMethodOneOf as eY, type Sorting as eZ, type PlatformPaging as e_, type SendBuyerPaymentsReceivedEmailResponse as ea, type SendBuyerPickupConfirmationEmailRequest as eb, type SendBuyerPickupConfirmationEmailResponse as ec, type BulkSendBuyerPickupConfirmationEmailsRequest as ed, type BulkSendBuyerPickupConfirmationEmailsResponse as ee, type SendBuyerShippingConfirmationEmailRequest as ef, type SendBuyerShippingConfirmationEmailResponse as eg, type BulkSendBuyerShippingConfirmationEmailsRequest as eh, type BulkSendBuyerShippingConfirmationEmailsResponse as ei, type SendMerchantOrderReceivedNotificationRequest as ej, type SendMerchantOrderReceivedNotificationResponse as ek, type SendCancelRefundEmailRequest as el, type SendCancelRefundEmailResponse as em, type SendRefundEmailRequest as en, type SendRefundEmailResponse as eo, type SendMerchantOrderReceivedPushRequest as ep, type SendMerchantOrderReceivedPushResponse as eq, type PreviewEmailByTypeRequest as er, type PreviewEmailByTypeResponse as es, type PreviewRefundEmailRequest as et, type PreviewRefundEmailResponse as eu, type PreviewCancelEmailRequest as ev, type PreviewCancelEmailResponse as ew, type PreviewCancelRefundEmailRequest as ex, type PreviewCancelRefundEmailResponse as ey, type PreviewBuyerPaymentsReceivedEmailRequest as ez, type PaymentCollectionCreatePaymentGatewayOrderOptions as f, type AdditionalFeeDelta as f$, type QueryOrdersForMetasiteResponse as f0, type PlatformPagingMetadata as f1, type Cursors as f2, type GetOrderForMetasiteRequest as f3, type GetOrderForMetasiteResponse as f4, type ListOrderTransactionsForMetasiteRequest as f5, type ListOrderTransactionsForMetasiteResponse as f6, type UpsertRefundRequest as f7, type UpsertRefundResponse as f8, type GetOrderOutOfBoxRequest as f9, type GetOrderResponse as fA, type InternalQueryOrdersResponse as fB, type QueryOrderRequest as fC, type QueryOrderResponse as fD, type SearchOrdersRequest as fE, type CursorSearch as fF, type CursorSearchPagingMethodOneOf as fG, type CursorPagingMetadata as fH, type CreateOrderRequest as fI, type OrderCreationSettings as fJ, type OrderCreateNotifications as fK, type CreateOrderResponse as fL, type UpdateOrderRequest as fM, type UpdateOrderResponse as fN, type BulkUpdateOrdersRequest as fO, type CommitDeltasRequest as fP, type DraftOrderDiffs as fQ, type DraftOrderDiffsShippingUpdateInfoOneOf as fR, type DraftOrderDiffsBuyerUpdateInfoOneOf as fS, type DraftOrderDiffsBillingUpdateInfoOneOf as fT, type DraftOrderDiffsRecipientUpdateInfoOneOf as fU, type V1LineItemDelta as fV, type V1LineItemDeltaDeltaOneOf as fW, type OrderLineItemChangedDetails as fX, type ItemChangedDetails as fY, type AppliedDiscountDelta as fZ, type AppliedDiscountDeltaDeltaOneOf as f_, type GetOrderOutOfBoxResponse as fa, type GetOrderAgcRequest as fb, type GetOrderAgcResponse as fc, type GetOrderWithFilterByLocationRequest as fd, type GetOrderWithFilterByLocationResponse as fe, type V1UpdateOrderRequest as ff, type V1UpdateOrderResponse as fg, type UpdateInternalDocumentsEvent as fh, type UpdateInternalDocumentsEventOperationOneOf as fi, type InternalDocument as fj, type InternalDocumentUpdateOperation as fk, type DeleteByIdsOperation as fl, type DeleteByFilterOperation as fm, type InternalDocumentUpdateByFilterOperation as fn, type InternalUpdateExistingOperation as fo, type VersionedDocumentUpdateOperation as fp, type VersionedDeleteByIdsOperation as fq, type VersionedDocumentId as fr, type TriggerReindexRequest as fs, type TriggerReindexResponse as ft, type BatchOfTriggerReindexOrderRequest as fu, type DiffmatokyPayload as fv, type ErrorInformation as fw, type ContinueSideEffectsFlowInLegacyData as fx, type IndexingMessage as fy, type GetOrderRequest as fz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as g, type LineItemUpdate as g$, type AdditionalFeeDeltaDeltaOneOf as g0, type DraftOrderCommitSettings as g1, type InventoryUpdateDetails as g2, type OrderDeltasCommitted as g3, type CommittedDiffs as g4, type CommittedDiffsShippingUpdateInfoOneOf as g5, type LineItemDelta as g6, type LineItemDeltaDeltaOneOf as g7, type ArchiveOrderRequest as g8, type ArchiveOrderResponse as g9, type OrderPlaced as gA, type OrderPaid as gB, type OrderFulfilled as gC, type OrderNotFulfilled as gD, type OrderCanceled as gE, type DownloadLinkSent as gF, type TrackingNumberAdded as gG, type TrackingNumberEdited as gH, type TrackingLinkAdded as gI, type ShippingConfirmationEmailSent as gJ, type InvoiceAdded as gK, type InvoiceSent as gL, type FulfillerEmailSent as gM, type ShippingAddressEdited as gN, type EmailEdited as gO, type PickupReadyEmailSent as gP, type OrderPartiallyPaid as gQ, type OrderPending as gR, type OrderRejected as gS, type AddInternalActivityResponse as gT, type AddActivityRequest as gU, type PublicActivityContentOneOf as gV, type AddActivitiesRequest as gW, type AddActivitiesResponse as gX, type UpdateActivityRequest as gY, type DeleteActivityRequest as gZ, type UpdateLineItemsDescriptionLinesRequest as g_, type BulkArchiveOrdersRequest as ga, type BulkArchiveOrdersResponse as gb, type BulkArchiveOrdersByFilterRequest as gc, type BulkArchiveOrdersByFilterResponse as gd, type UnArchiveOrderRequest as ge, type UnArchiveOrderResponse as gf, type BulkUnArchiveOrdersRequest as gg, type BulkUnArchiveOrdersResponse as gh, type BulkUnArchiveOrdersByFilterRequest as gi, type BulkUnArchiveOrdersByFilterResponse as gj, type UpdateBuyerInfoRequest as gk, type BuyerInfoUpdate as gl, type UpdateBuyerInfoResponse as gm, type UpdateBuyerEmailRequest as gn, type UpdateBuyerEmailResponse as go, type UpdateOrderShippingAddressRequest as gp, type UpdateOrderShippingAddressResponse as gq, type UpdateBillingContactDetailsRequest as gr, type UpdateBillingContactDetailsResponse as gs, type UpdateOrderLineItemRequest as gt, type UpdateOrderLineItemsRequest as gu, type MaskedOrderLineItem as gv, type UpdateOrderLineItemsResponse as gw, type AddInternalActivityRequest as gx, type InternalActivity as gy, type InternalActivityContentOneOf as gz, type ChargeMembershipsOptions as h, type Locale as h$, type UpdateLineItemsDescriptionLinesResponse as h0, type MarkOrderAsSeenByHumanRequest as h1, type MarkOrderAsSeenByHumanResponse as h2, type CancelOrderRequest as h3, type OrderCanceledEventOrderCanceled as h4, type UpdateOrderStatusRequest as h5, type MarkAsFulfilledRequest as h6, type MarkAsFulfilledResponse as h7, type FulfillmentStatusUpdated as h8, type BulkMarkAsFulfilledRequest as h9, type Task as hA, type TaskKey as hB, type TaskAction as hC, type TaskActionActionOneOf as hD, type Complete as hE, type Cancel as hF, type Reschedule as hG, type InvoiceSentEvent as hH, type IdAndVersion as hI, type InvoiceFields as hJ, type Customer as hK, type Email as hL, type QuotesAddress as hM, type AddressDescription as hN, type Phone as hO, type Company as hP, type CommonAddress as hQ, type CommonAddressStreetOneOf as hR, type Subdivision as hS, type StandardDetails as hT, type InvoiceDates as hU, type LineItems as hV, type LineItem as hW, type BigDecimalWrapper as hX, type LineItemTax as hY, type Source as hZ, type LineItemMetaData as h_, type BulkMarkAsFulfilledResponse as ha, type BulkMarkAsFulfilledByFilterRequest as hb, type BulkMarkAsFulfilledByFilterResponse as hc, type MarkAsUnfulfilledRequest as hd, type MarkAsUnfulfilledResponse as he, type BulkMarkAsUnfulfilledRequest as hf, type BulkMarkAsUnfulfilledResponse as hg, type BulkMarkAsUnfulfilledByFilterRequest as hh, type BulkMarkAsUnfulfilledByFilterResponse as hi, type BulkSetBusinessLocationRequest as hj, type BulkSetBusinessLocationResponse as hk, type BulkSetBusinessLocationResult as hl, type V1MarkOrderAsPaidRequest as hm, type V1MarkOrderAsPaidResponse as hn, type V1BulkMarkOrdersAsPaidRequest as ho, type V1BulkMarkOrdersAsPaidResponse as hp, type V1CreatePaymentGatewayOrderRequest as hq, type V1CreatePaymentGatewayOrderResponse as hr, type GetShipmentsRequest as hs, type GetShipmentsResponse as ht, type AggregateOrdersRequest as hu, type DecrementItemsQuantityRequest as hv, type DecrementData as hw, type DecrementItemsQuantityResponse as hx, type BulkUpdateOrderTagsRequest as hy, type BulkUpdateOrderTagsResult as hz, type PaymentRefund as i, type PlacementWithLiterals as i$, type TotalPrice as i0, type ItemizedFee as i1, type Discount as i2, type DiscountOneDiscountTypeOneOf as i3, type CalculatedTaxes as i4, type CalculatedTax as i5, type Payments as i6, type InvoicesPayment as i7, type MetaData as i8, type InvoiceDynamicPriceTotals as i9, type ChannelTypeWithLiterals as iA, type ScheduledActionWithLiterals as iB, type DurationUnitWithLiterals as iC, type PaymentCollectabilityStatusWithLiterals as iD, type RefundableStatusWithLiterals as iE, type NonRefundableReasonWithLiterals as iF, type ManuallyRefundableReasonWithLiterals as iG, type RestockTypeWithLiterals as iH, type TransactionStatusWithLiterals as iI, type AuthorizationCaptureStatusWithLiterals as iJ, type AuthorizationVoidStatusWithLiterals as iK, type ReasonWithLiterals as iL, type ActionTypeWithLiterals as iM, type ChargebackStatusWithLiterals as iN, type MembershipPaymentStatusWithLiterals as iO, type RefundStatusWithLiterals as iP, type WebhookIdentityTypeWithLiterals as iQ, type TextDetectionWithLiterals as iR, type AnimationDetectionWithLiterals as iS, type PreviewEmailTypeWithLiterals as iT, type StateWithLiterals as iU, type NamespaceWithLiterals as iV, type SortOrderWithLiterals as iW, type VersioningModeWithLiterals as iX, type OrderApprovalStrategyWithLiterals as iY, type DeltaPaymentOptionTypeWithLiterals as iZ, type InventoryActionWithLiterals as i_, type CustomFieldValue as ia, type Value as ib, type Deposit as ic, type TriggerSideEffectsFromLegacyData as id, type BaseEventMetadata as ie, type EventMetadata as ig, type OrderSearchSpec as ih, type DescriptionLineTypeWithLiterals as ii, type ItemTypeItemTypeWithLiterals as ij, type PaymentOptionTypeWithLiterals as ik, type JurisdictionTypeWithLiterals as il, type SubscriptionFrequencyWithLiterals as im, type AdjustmentTypeWithLiterals as io, type TaxableAddressTypeWithLiterals as ip, type PaymentStatusWithLiterals as iq, type FulfillmentStatusWithLiterals as ir, type WeightUnitWithLiterals as is, type VatTypeWithLiterals as it, type PickupMethodWithLiterals as iu, type DiscountTypeWithLiterals as iv, type DiscountReasonWithLiterals as iw, type LineItemQuantityChangeTypeWithLiterals as ix, type ActivityTypeWithLiterals as iy, type AttributionSourceWithLiterals as iz, type TriggerRefundResponse as j, type SubdivisionTypeWithLiterals as j0, type SourceTypeWithLiterals as j1, type CustomFieldGroupWithLiterals as j2, type ValueTypeWithLiterals as j3, type DepositTypeWithLiterals as j4, type InvoiceStatusWithLiterals as j5, onOrderApproved as j6, onOrderUpdated as j7, onOrderCanceled as j8, onOrderCreated as j9, preparePaymentCollection as ja, getPaymentCollectabilityStatus as jb, recordManuallyCollectedPayment as jc, paymentCollectionMarkOrderAsPaid as jd, paymentCollectionBulkMarkOrdersAsPaid as je, getRefundabilityStatus as jf, paymentCollectionCreatePaymentGatewayOrder as jg, chargeMemberships as jh, triggerRefund as ji, voidAuthorizedPayments as jj, captureAuthorizedPayments as jk, getOrder as jl, type CommonSearchWithEntityContext as jm, createOrder as jn, updateOrder as jo, bulkUpdateOrders as jp, commitDeltas as jq, updateOrderLineItem as jr, addActivity as js, updateActivity as jt, deleteActivity as ju, cancelOrder as jv, updateOrderStatus as jw, aggregateOrders as jx, bulkUpdateOrderTags as jy, 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 };
|
|
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 };
|