@wix/auto_sdk_ecom_orders 1.0.218 → 1.0.220
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-u09r8hRJ.d.ts → ecom-v1-order-orders.universal-BjvDnQO1.d.ts} +177 -168
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +14 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +14 -6
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +178 -169
- package/build/cjs/meta.js +14 -6
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-u09r8hRJ.d.mts → ecom-v1-order-orders.universal-BjvDnQO1.d.mts} +177 -168
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +13 -6
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +13 -6
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +178 -169
- package/build/es/meta.mjs +13 -6
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-B_SIJVco.d.ts → ecom-v1-order-orders.universal-lXc4bLyX.d.ts} +183 -168
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +14 -6
- 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 +14 -6
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +178 -169
- package/build/internal/cjs/meta.js +14 -6
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-B_SIJVco.d.mts → ecom-v1-order-orders.universal-lXc4bLyX.d.mts} +183 -168
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +13 -6
- 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 +13 -6
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +178 -169
- package/build/internal/es/meta.mjs +13 -6
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -596,6 +596,20 @@ declare enum ItemTypePreset {
|
|
|
596
596
|
}
|
|
597
597
|
/** @enumType */
|
|
598
598
|
type ItemTypePresetWithLiterals = ItemTypePreset | 'UNRECOGNISED' | 'PHYSICAL' | 'DIGITAL' | 'GIFT_CARD' | 'SERVICE';
|
|
599
|
+
/** Quantity of items restocked at a specific location. */
|
|
600
|
+
interface RestockLocation {
|
|
601
|
+
/**
|
|
602
|
+
* ID of the location where items were restocked.
|
|
603
|
+
* @format GUID
|
|
604
|
+
*/
|
|
605
|
+
locationId?: string;
|
|
606
|
+
/**
|
|
607
|
+
* Number of items restocked at this location.
|
|
608
|
+
* @min 1
|
|
609
|
+
* @max 100000
|
|
610
|
+
*/
|
|
611
|
+
quantity?: number;
|
|
612
|
+
}
|
|
599
613
|
/** Type of selected payment option for catalog item */
|
|
600
614
|
declare enum PaymentOptionType {
|
|
601
615
|
/** The entire payment for this item happens as part of the checkout. */
|
|
@@ -3838,164 +3852,6 @@ interface AccountInfo {
|
|
|
3838
3852
|
*/
|
|
3839
3853
|
siteId?: string | null;
|
|
3840
3854
|
}
|
|
3841
|
-
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
3842
|
-
/** insert/update documents */
|
|
3843
|
-
update?: InternalDocumentUpdateOperation;
|
|
3844
|
-
/** delete by document ids */
|
|
3845
|
-
deleteByIds?: DeleteByIdsOperation;
|
|
3846
|
-
/** delete documents matching filter */
|
|
3847
|
-
deleteByFilter?: DeleteByFilterOperation;
|
|
3848
|
-
/** update internal documents matching filter */
|
|
3849
|
-
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
3850
|
-
/** update only existing documents */
|
|
3851
|
-
updateExisting?: InternalUpdateExistingOperation;
|
|
3852
|
-
/** insert/update documents with versioning */
|
|
3853
|
-
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
3854
|
-
/** delete by document ids with versioning */
|
|
3855
|
-
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
3856
|
-
/**
|
|
3857
|
-
* type of the documents
|
|
3858
|
-
* @minLength 2
|
|
3859
|
-
*/
|
|
3860
|
-
documentType?: string;
|
|
3861
|
-
/**
|
|
3862
|
-
* language of the documents (mandatory)
|
|
3863
|
-
* @minLength 2
|
|
3864
|
-
*/
|
|
3865
|
-
language?: string | null;
|
|
3866
|
-
/**
|
|
3867
|
-
* one or more search documents
|
|
3868
|
-
* @deprecated
|
|
3869
|
-
*/
|
|
3870
|
-
addDocuments?: InternalDocument[];
|
|
3871
|
-
/**
|
|
3872
|
-
* one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
|
|
3873
|
-
* @deprecated
|
|
3874
|
-
*/
|
|
3875
|
-
removeDocumentIds?: string[];
|
|
3876
|
-
/** id to pass to processing notification */
|
|
3877
|
-
correlationId?: string | null;
|
|
3878
|
-
/** when event was created / issued */
|
|
3879
|
-
issuedAt?: Date | null;
|
|
3880
|
-
}
|
|
3881
|
-
/** @oneof */
|
|
3882
|
-
interface UpdateInternalDocumentsEventOperationOneOf {
|
|
3883
|
-
/** insert/update documents */
|
|
3884
|
-
update?: InternalDocumentUpdateOperation;
|
|
3885
|
-
/** delete by document ids */
|
|
3886
|
-
deleteByIds?: DeleteByIdsOperation;
|
|
3887
|
-
/** delete documents matching filter */
|
|
3888
|
-
deleteByFilter?: DeleteByFilterOperation;
|
|
3889
|
-
/** update internal documents matching filter */
|
|
3890
|
-
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
3891
|
-
/** update only existing documents */
|
|
3892
|
-
updateExisting?: InternalUpdateExistingOperation;
|
|
3893
|
-
/** insert/update documents with versioning */
|
|
3894
|
-
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
3895
|
-
/** delete by document ids with versioning */
|
|
3896
|
-
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
3897
|
-
}
|
|
3898
|
-
interface InternalDocument {
|
|
3899
|
-
/** document with mandatory fields (id) and with fields specific to the type of the document */
|
|
3900
|
-
document?: Record<string, any> | null;
|
|
3901
|
-
}
|
|
3902
|
-
interface InternalDocumentUpdateOperation {
|
|
3903
|
-
/** documents to index or update */
|
|
3904
|
-
documents?: InternalDocument[];
|
|
3905
|
-
}
|
|
3906
|
-
interface DeleteByIdsOperation {
|
|
3907
|
-
/** ids of the documents to delete */
|
|
3908
|
-
documentIds?: string[];
|
|
3909
|
-
/**
|
|
3910
|
-
* tenant id for custom tenancy strategy
|
|
3911
|
-
* @minLength 2
|
|
3912
|
-
* @maxLength 300
|
|
3913
|
-
*/
|
|
3914
|
-
tenantId?: string | null;
|
|
3915
|
-
}
|
|
3916
|
-
interface DeleteByFilterOperation {
|
|
3917
|
-
/** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
|
|
3918
|
-
filter?: Record<string, any> | null;
|
|
3919
|
-
/**
|
|
3920
|
-
* tenant id for custom tenancy strategy
|
|
3921
|
-
* @minLength 2
|
|
3922
|
-
* @maxLength 300
|
|
3923
|
-
*/
|
|
3924
|
-
tenantId?: string | null;
|
|
3925
|
-
}
|
|
3926
|
-
interface InternalDocumentUpdateByFilterOperation {
|
|
3927
|
-
/** documents matching this filter will be updated */
|
|
3928
|
-
filter?: Record<string, any> | null;
|
|
3929
|
-
/** partial document to apply */
|
|
3930
|
-
document?: InternalDocument;
|
|
3931
|
-
/**
|
|
3932
|
-
* tenant id for custom tenancy strategy
|
|
3933
|
-
* @minLength 2
|
|
3934
|
-
* @maxLength 300
|
|
3935
|
-
*/
|
|
3936
|
-
tenantId?: string | null;
|
|
3937
|
-
}
|
|
3938
|
-
interface InternalUpdateExistingOperation {
|
|
3939
|
-
/** documents to update */
|
|
3940
|
-
documents?: InternalDocument[];
|
|
3941
|
-
}
|
|
3942
|
-
interface VersionedDocumentUpdateOperation {
|
|
3943
|
-
/** documents to create or overwrite */
|
|
3944
|
-
documents?: InternalDocument[];
|
|
3945
|
-
/** versioning mode to use instead of default */
|
|
3946
|
-
versioningMode?: VersioningModeWithLiterals;
|
|
3947
|
-
}
|
|
3948
|
-
declare enum VersioningMode {
|
|
3949
|
-
/** use default versioning mode agreed with search team */
|
|
3950
|
-
DEFAULT = "DEFAULT",
|
|
3951
|
-
/** execute only if version is greater than existing */
|
|
3952
|
-
GREATER_THAN = "GREATER_THAN",
|
|
3953
|
-
/** execute only if version is greater or equal to existing */
|
|
3954
|
-
GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
|
|
3955
|
-
}
|
|
3956
|
-
/** @enumType */
|
|
3957
|
-
type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
|
|
3958
|
-
interface VersionedDeleteByIdsOperation {
|
|
3959
|
-
/** ids with version of the documents to delete */
|
|
3960
|
-
documentIds?: VersionedDocumentId[];
|
|
3961
|
-
/**
|
|
3962
|
-
* tenant id for custom tenancy strategy
|
|
3963
|
-
* @minLength 2
|
|
3964
|
-
* @maxLength 300
|
|
3965
|
-
*/
|
|
3966
|
-
tenantId?: string | null;
|
|
3967
|
-
}
|
|
3968
|
-
interface VersionedDocumentId {
|
|
3969
|
-
/** document id */
|
|
3970
|
-
documentId?: string;
|
|
3971
|
-
/** document version */
|
|
3972
|
-
version?: string;
|
|
3973
|
-
/** versioning mode to use instead of default */
|
|
3974
|
-
versioningMode?: VersioningModeWithLiterals;
|
|
3975
|
-
}
|
|
3976
|
-
interface TriggerReindexRequest {
|
|
3977
|
-
/** @format GUID */
|
|
3978
|
-
metasiteId?: string;
|
|
3979
|
-
/**
|
|
3980
|
-
* @minLength 1
|
|
3981
|
-
* @maxLength 100
|
|
3982
|
-
* @maxSize 100
|
|
3983
|
-
*/
|
|
3984
|
-
orderIds?: string[];
|
|
3985
|
-
}
|
|
3986
|
-
interface TriggerReindexResponse {
|
|
3987
|
-
}
|
|
3988
|
-
interface Empty {
|
|
3989
|
-
}
|
|
3990
|
-
interface TriggerReindexOrderRequest {
|
|
3991
|
-
/** @format GUID */
|
|
3992
|
-
metasiteId?: string;
|
|
3993
|
-
/**
|
|
3994
|
-
* @minLength 1
|
|
3995
|
-
* @maxLength 100
|
|
3996
|
-
*/
|
|
3997
|
-
orderId?: string;
|
|
3998
|
-
}
|
|
3999
3855
|
interface SendBuyerConfirmationEmailRequest {
|
|
4000
3856
|
/** @format GUID */
|
|
4001
3857
|
orderId?: string;
|
|
@@ -4296,6 +4152,8 @@ interface PreviewResendDownloadLinksEmailRequest {
|
|
|
4296
4152
|
interface PreviewResendDownloadLinksEmailResponse {
|
|
4297
4153
|
emailPreview?: string;
|
|
4298
4154
|
}
|
|
4155
|
+
interface Empty {
|
|
4156
|
+
}
|
|
4299
4157
|
interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
|
|
4300
4158
|
/** Emitted on a meta site creation. */
|
|
4301
4159
|
siteCreated?: SiteCreated;
|
|
@@ -4825,7 +4683,16 @@ interface HasCustomEmailConfigurationsResponse {
|
|
|
4825
4683
|
interface AddToAutomationMigrationPopulationRequest {
|
|
4826
4684
|
/** When true, sends custom email configurations to automation system via email */
|
|
4827
4685
|
sendCustomEmailConfigs?: boolean;
|
|
4686
|
+
/** Origin of the migration request. Defaults to OPT_IN when UNKNOWN_ORIGIN. */
|
|
4687
|
+
origin?: OriginWithLiterals;
|
|
4828
4688
|
}
|
|
4689
|
+
declare enum Origin {
|
|
4690
|
+
UNKNOWN_ORIGIN = "UNKNOWN_ORIGIN",
|
|
4691
|
+
OPT_IN = "OPT_IN",
|
|
4692
|
+
MIGRATION = "MIGRATION"
|
|
4693
|
+
}
|
|
4694
|
+
/** @enumType */
|
|
4695
|
+
type OriginWithLiterals = Origin | 'UNKNOWN_ORIGIN' | 'OPT_IN' | 'MIGRATION';
|
|
4829
4696
|
interface AddToAutomationMigrationPopulationResponse {
|
|
4830
4697
|
success?: boolean;
|
|
4831
4698
|
}
|
|
@@ -5351,6 +5218,12 @@ interface RestockItem {
|
|
|
5351
5218
|
* @max 100000
|
|
5352
5219
|
*/
|
|
5353
5220
|
quantity?: number;
|
|
5221
|
+
/**
|
|
5222
|
+
* Per-location breakdown of restock quantities.
|
|
5223
|
+
* @internal
|
|
5224
|
+
* @maxSize 5
|
|
5225
|
+
*/
|
|
5226
|
+
restockLocations?: RestockLocation[];
|
|
5354
5227
|
}
|
|
5355
5228
|
interface TriggerRefundResponse {
|
|
5356
5229
|
/** All order's transactions after the refunds were added */
|
|
@@ -6085,19 +5958,161 @@ interface ChargeSavedPaymentMethodResponse {
|
|
|
6085
5958
|
/** Payment gateway's order ID (e.g Wix Payments) */
|
|
6086
5959
|
paymentGatewayOrderId?: string;
|
|
6087
5960
|
}
|
|
6088
|
-
|
|
6089
|
-
|
|
5961
|
+
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
5962
|
+
/** insert/update documents */
|
|
5963
|
+
update?: InternalDocumentUpdateOperation;
|
|
5964
|
+
/** delete by document ids */
|
|
5965
|
+
deleteByIds?: DeleteByIdsOperation;
|
|
5966
|
+
/** delete documents matching filter */
|
|
5967
|
+
deleteByFilter?: DeleteByFilterOperation;
|
|
5968
|
+
/** update internal documents matching filter */
|
|
5969
|
+
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
5970
|
+
/** update only existing documents */
|
|
5971
|
+
updateExisting?: InternalUpdateExistingOperation;
|
|
5972
|
+
/** insert/update documents with versioning */
|
|
5973
|
+
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
5974
|
+
/** delete by document ids with versioning */
|
|
5975
|
+
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
6090
5976
|
/**
|
|
6091
|
-
*
|
|
6092
|
-
* @
|
|
5977
|
+
* type of the documents
|
|
5978
|
+
* @minLength 2
|
|
6093
5979
|
*/
|
|
6094
|
-
|
|
5980
|
+
documentType?: string;
|
|
6095
5981
|
/**
|
|
6096
|
-
*
|
|
6097
|
-
* @
|
|
6098
|
-
* @max 100000
|
|
5982
|
+
* language of the documents (mandatory)
|
|
5983
|
+
* @minLength 2
|
|
6099
5984
|
*/
|
|
6100
|
-
|
|
5985
|
+
language?: string | null;
|
|
5986
|
+
/**
|
|
5987
|
+
* one or more search documents
|
|
5988
|
+
* @deprecated
|
|
5989
|
+
*/
|
|
5990
|
+
addDocuments?: InternalDocument[];
|
|
5991
|
+
/**
|
|
5992
|
+
* one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
|
|
5993
|
+
* @deprecated
|
|
5994
|
+
*/
|
|
5995
|
+
removeDocumentIds?: string[];
|
|
5996
|
+
/** id to pass to processing notification */
|
|
5997
|
+
correlationId?: string | null;
|
|
5998
|
+
/** when event was created / issued */
|
|
5999
|
+
issuedAt?: Date | null;
|
|
6000
|
+
}
|
|
6001
|
+
/** @oneof */
|
|
6002
|
+
interface UpdateInternalDocumentsEventOperationOneOf {
|
|
6003
|
+
/** insert/update documents */
|
|
6004
|
+
update?: InternalDocumentUpdateOperation;
|
|
6005
|
+
/** delete by document ids */
|
|
6006
|
+
deleteByIds?: DeleteByIdsOperation;
|
|
6007
|
+
/** delete documents matching filter */
|
|
6008
|
+
deleteByFilter?: DeleteByFilterOperation;
|
|
6009
|
+
/** update internal documents matching filter */
|
|
6010
|
+
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
6011
|
+
/** update only existing documents */
|
|
6012
|
+
updateExisting?: InternalUpdateExistingOperation;
|
|
6013
|
+
/** insert/update documents with versioning */
|
|
6014
|
+
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
6015
|
+
/** delete by document ids with versioning */
|
|
6016
|
+
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
6017
|
+
}
|
|
6018
|
+
interface InternalDocument {
|
|
6019
|
+
/** document with mandatory fields (id) and with fields specific to the type of the document */
|
|
6020
|
+
document?: Record<string, any> | null;
|
|
6021
|
+
}
|
|
6022
|
+
interface InternalDocumentUpdateOperation {
|
|
6023
|
+
/** documents to index or update */
|
|
6024
|
+
documents?: InternalDocument[];
|
|
6025
|
+
}
|
|
6026
|
+
interface DeleteByIdsOperation {
|
|
6027
|
+
/** ids of the documents to delete */
|
|
6028
|
+
documentIds?: string[];
|
|
6029
|
+
/**
|
|
6030
|
+
* tenant id for custom tenancy strategy
|
|
6031
|
+
* @minLength 2
|
|
6032
|
+
* @maxLength 300
|
|
6033
|
+
*/
|
|
6034
|
+
tenantId?: string | null;
|
|
6035
|
+
}
|
|
6036
|
+
interface DeleteByFilterOperation {
|
|
6037
|
+
/** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
|
|
6038
|
+
filter?: Record<string, any> | null;
|
|
6039
|
+
/**
|
|
6040
|
+
* tenant id for custom tenancy strategy
|
|
6041
|
+
* @minLength 2
|
|
6042
|
+
* @maxLength 300
|
|
6043
|
+
*/
|
|
6044
|
+
tenantId?: string | null;
|
|
6045
|
+
}
|
|
6046
|
+
interface InternalDocumentUpdateByFilterOperation {
|
|
6047
|
+
/** documents matching this filter will be updated */
|
|
6048
|
+
filter?: Record<string, any> | null;
|
|
6049
|
+
/** partial document to apply */
|
|
6050
|
+
document?: InternalDocument;
|
|
6051
|
+
/**
|
|
6052
|
+
* tenant id for custom tenancy strategy
|
|
6053
|
+
* @minLength 2
|
|
6054
|
+
* @maxLength 300
|
|
6055
|
+
*/
|
|
6056
|
+
tenantId?: string | null;
|
|
6057
|
+
}
|
|
6058
|
+
interface InternalUpdateExistingOperation {
|
|
6059
|
+
/** documents to update */
|
|
6060
|
+
documents?: InternalDocument[];
|
|
6061
|
+
}
|
|
6062
|
+
interface VersionedDocumentUpdateOperation {
|
|
6063
|
+
/** documents to create or overwrite */
|
|
6064
|
+
documents?: InternalDocument[];
|
|
6065
|
+
/** versioning mode to use instead of default */
|
|
6066
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
6067
|
+
}
|
|
6068
|
+
declare enum VersioningMode {
|
|
6069
|
+
/** use default versioning mode agreed with search team */
|
|
6070
|
+
DEFAULT = "DEFAULT",
|
|
6071
|
+
/** execute only if version is greater than existing */
|
|
6072
|
+
GREATER_THAN = "GREATER_THAN",
|
|
6073
|
+
/** execute only if version is greater or equal to existing */
|
|
6074
|
+
GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
|
|
6075
|
+
}
|
|
6076
|
+
/** @enumType */
|
|
6077
|
+
type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
|
|
6078
|
+
interface VersionedDeleteByIdsOperation {
|
|
6079
|
+
/** ids with version of the documents to delete */
|
|
6080
|
+
documentIds?: VersionedDocumentId[];
|
|
6081
|
+
/**
|
|
6082
|
+
* tenant id for custom tenancy strategy
|
|
6083
|
+
* @minLength 2
|
|
6084
|
+
* @maxLength 300
|
|
6085
|
+
*/
|
|
6086
|
+
tenantId?: string | null;
|
|
6087
|
+
}
|
|
6088
|
+
interface VersionedDocumentId {
|
|
6089
|
+
/** document id */
|
|
6090
|
+
documentId?: string;
|
|
6091
|
+
/** document version */
|
|
6092
|
+
version?: string;
|
|
6093
|
+
/** versioning mode to use instead of default */
|
|
6094
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
6095
|
+
}
|
|
6096
|
+
interface TriggerReindexRequest {
|
|
6097
|
+
/** @format GUID */
|
|
6098
|
+
metasiteId?: string;
|
|
6099
|
+
/**
|
|
6100
|
+
* @minLength 1
|
|
6101
|
+
* @maxLength 100
|
|
6102
|
+
* @maxSize 100
|
|
6103
|
+
*/
|
|
6104
|
+
orderIds?: string[];
|
|
6105
|
+
}
|
|
6106
|
+
interface TriggerReindexResponse {
|
|
6107
|
+
}
|
|
6108
|
+
interface TriggerReindexOrderRequest {
|
|
6109
|
+
/** @format GUID */
|
|
6110
|
+
metasiteId?: string;
|
|
6111
|
+
/**
|
|
6112
|
+
* @minLength 1
|
|
6113
|
+
* @maxLength 100
|
|
6114
|
+
*/
|
|
6115
|
+
orderId?: string;
|
|
6101
6116
|
}
|
|
6102
6117
|
interface DiffmatokyPayload {
|
|
6103
6118
|
left?: string;
|
|
@@ -9492,4 +9507,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
9492
9507
|
unassignTags?: TagsTags;
|
|
9493
9508
|
}
|
|
9494
9509
|
|
|
9495
|
-
export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersOptions as D, type BulkUpdateOrdersResponse as E, type UpdateOrderLineItemIdentifiers as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItem as H, type ImportOrderResponse as I, type UpdateOrderLineItemResponse as J, type PublicActivity as K, type AddActivityResponse as L, type MarkOrderAsPaidResponse as M, type AddActivitiesOptions as N, type Order as O, type Price as P, type AddActivitiesResponse as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityIdentifiers as W, type UpdateActivityResponse as X, type DeleteActivityIdentifiers as Y, type DeleteActivityResponse as Z, type CancelOrderOptions as _, type SetOrderNumberCounterResponse as a, MembershipPaymentStatus as a$, type CancelOrderApplicationErrors as a0, type OrderStatusWithLiterals as a1, type UpdateOrderStatusResponse as a2, type UpdateOrderStatusApplicationErrors as a3, type AggregateOrdersOptions as a4, type AggregateOrdersResponse as a5, type BulkUpdateOrderTagsOptions as a6, type BulkUpdateOrderTagsResponse as a7, type OrderApprovedEnvelope as a8, type OrderCanceledEnvelope as a9, AdditionalFeeSource as aA, OrderActionType as aB, SpecificItemsCouponBehavior as aC, ChargeType as aD, DeltaPaymentOptionType as aE, InventoryAction as aF, WebhookIdentityType as aG, VersioningMode as aH, PreviewEmailType as aI, State as aJ, SiteCreatedContext as aK, Namespace as aL, DeleteStatus as aM, ScheduledAction as aN, DurationUnit as aO, PaymentCollectabilityStatus as aP, PredefinedPaymentMethod as aQ, RefundableStatus as aR, NonRefundableReason as aS, ManuallyRefundableReason as aT, RestockType as aU, TransactionStatus as aV, AuthorizationCaptureStatus as aW, AuthorizationVoidStatus as aX, Reason as aY, ActionType as aZ, ChargebackStatus as a_, type OrderCommittedEnvelope as aa, type OrderCreatedEnvelope as ab, type OrderFulfilledEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, type OrderUpdatedEnvelope as ae, DescriptionLineType as af, DimensionsUnit as ag, ItemTypePreset as ah, PaymentOptionType as ai, JurisdictionType as aj, SubscriptionFrequency as ak, AdjustmentType as al, TaxableAddressType as am, PaymentStatus as an, FulfillmentStatus as ao, WeightUnit as ap, VatType as aq, PickupMethod as ar, OrderStatus as as, DiscountType as at, DiscountReason as au, LineItemQuantityChangeType as av, ActivityType as aw, OrderActivityTypeEnumActivityType as ax, AttributionSource as ay, ChannelType as az, type BulkDeleteImportedOrdersResponse as b, type OrderTaxBreakdown as b$, RefundStatus as b0, SortOrder as b1, OrderApprovalStrategy as b2, Placement as b3, SubdivisionType as b4, SourceType as b5, CustomFieldGroup as b6, ValueType as b7, DepositType as b8, InvoiceStatus as b9, type LocationAndQuantity as bA, type TaxableAddress as bB, type TaxableAddressTaxableAddressDataOneOf as bC, type ExtendedFields as bD, type ModifierGroup as bE, type TranslatableString as bF, type ItemModifier as bG, type BuyerInfo as bH, type BuyerInfoIdOneOf as bI, type CurrencyConversionDetails as bJ, type PriceSummary as bK, type AddressWithContact as bL, type Address as bM, type StreetAddress as bN, type AddressLocation as bO, type FullAddressContactDetails as bP, type VatId as bQ, type V1ShippingInformation as bR, type DeliveryLogistics as bS, type DeliveryLogisticsAddressOneOf as bT, type PickupDetails as bU, type PickupAddress as bV, type DeliveryTimeSlot as bW, type ShippingPrice as bX, type ShippingRegion as bY, type TaxSummary as bZ, type OrderTaxInfo as b_, type OrderLineItem as ba, type ProductName as bb, type CatalogReference as bc, type DescriptionLine as bd, type DescriptionLineValueOneOf as be, type DescriptionLineDescriptionLineValueOneOf as bf, type DescriptionLineName as bg, type PlainTextValue as bh, type Color as bi, type FocalPoint as bj, type PhysicalProperties as bk, type Dimensions as bl, type ItemType as bm, type ItemTypeItemTypeDataOneOf as bn, type ItemTaxFullDetails as bo, type LineItemTaxInfo as bp, type LineItemTaxBreakdown as bq, type DigitalFile as br, type SubscriptionInfo as bs, type SubscriptionTitle as bt, type SubscriptionDescription as bu, type SubscriptionSettings as bv, type FreeTrialPeriod as bw, type BillingAdjustment as bx, type BillingAdjustmentPriceSummary as by, type PriceDescription as bz, type PreparePaymentCollectionOptions as c, type ChargebackCreated as c$, type AppliedDiscount as c0, type AppliedDiscountDiscountSourceOneOf as c1, type Coupon as c2, type MerchantDiscount as c3, type MerchantDiscountMerchantDiscountReasonOneOf as c4, type DiscountRule as c5, type DiscountRuleName as c6, type LineItemDiscount as c7, type ItemCombination as c8, type ItemCombinationLineItem as c9, 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 ReceiptSentReceiptInfoOneOf as c_, type Activity as ca, type ActivityContentOneOf as cb, type CustomActivity as cc, type MerchantComment as cd, type OrderRefunded as ce, type OrderCreatedFromExchange as cf, type NewExchangeOrderCreated as cg, type LineItemExchangeData as ch, type DraftOrderChangesApplied as ci, type OrderChange as cj, type OrderChangeValueOneOf as ck, type LineItemChanges as cl, type LineItemQuantityChange as cm, type LineItemPriceChange as cn, type LineItemProductNameChange as co, type LineItemDescriptionLineChange as cp, type LineItemModifiersChange as cq, type ManagedLineItem as cr, type ManagedDiscount as cs, type TranslatedValue as ct, type LineItemAmount as cu, type ManagedAdditionalFee as cv, type TotalPriceChange as cw, type ShippingInformationChange as cx, type ShippingInformation as cy, type SavedPaymentMethod as cz, type PreparePaymentCollectionResponse as d, type InternalDocumentUpdateOperation as d$, type ChargebackReversed as d0, type CreatedBy as d1, type CreatedByStringOneOf as d2, type ChannelInfo as d3, type CustomField as d4, type BalanceSummary as d5, type Balance as d6, type CashRounding as d7, type AdditionalFee as d8, type FulfillmentStatusesAggregate as d9, type ItemChangedDetails as dA, type OrderLineItemChangedDetails as dB, type LineItemDelta as dC, type LineItemDeltaDeltaOneOf as dD, type AppliedDiscountDelta as dE, type AppliedDiscountDeltaDeltaOneOf as dF, type AdditionalFeeDelta as dG, type AdditionalFeeDeltaDeltaOneOf as dH, type DraftOrderCommitSettings as dI, type InventoryUpdateDetails as dJ, type ImportOrderRequest as dK, type SetOrderNumberCounterRequest as dL, type BulkDeleteImportedOrdersRequest as dM, type DomainEvent as dN, type DomainEventBodyOneOf as dO, type EntityCreatedEvent as dP, type RestoreInfo as dQ, type EntityUpdatedEvent as dR, type EntityDeletedEvent as dS, type ActionEvent as dT, type MessageEnvelope as dU, type IdentificationData as dV, type IdentificationDataIdOneOf as dW, type AccountInfo as dX, type UpdateInternalDocumentsEvent as dY, type UpdateInternalDocumentsEventOperationOneOf as dZ, type InternalDocument as d_, type Tags as da, type TagList as db, type Location as dc, type OrderSettings as dd, type OrderSettingsAllowedActionsOneOf as de, type OrderSettingsEditableByOneOf as df, type CustomAllowedActions as dg, type OwnerApps as dh, type FormInfo as di, type FormIdentifier as dj, type PlatformFeeSummary as dk, type PlatformFee as dl, type OrderApproved as dm, type OrdersExperiments as dn, type OrderRejectedEventOrderRejected as dp, type OrderItemsRestocked as dq, type V1RestockItem as dr, type OrderImported as ds, type ImportedOrderDeleted as dt, type PaymentStatusUpdated as du, type FulfillmentStatusUpdated as dv, type OrderCanceledEventOrderCanceled as dw, type OrderDeltasCommitted as dx, type CommittedDiffs as dy, type CommittedDiffsShippingUpdateInfoOneOf as dz, type PreparePaymentCollectionApplicationErrors as e, type SiteUndeleted as e$, type DeleteByIdsOperation as e0, type DeleteByFilterOperation as e1, type InternalDocumentUpdateByFilterOperation as e2, type InternalUpdateExistingOperation as e3, type VersionedDocumentUpdateOperation as e4, type VersionedDeleteByIdsOperation as e5, type VersionedDocumentId as e6, type TriggerReindexRequest as e7, type TriggerReindexResponse as e8, type Empty as e9, type RefundDetails as eA, type RefundItem as eB, type LineItemRefund as eC, type AdditionalFeeRefund as eD, type ShippingRefund as eE, type PreviewRefundEmailResponse as eF, type PreviewCancelEmailRequest as eG, type PreviewCancelEmailResponse as eH, type PreviewCancelRefundEmailRequest as eI, type PreviewCancelRefundEmailResponse as eJ, type PreviewBuyerPaymentsReceivedEmailRequest as eK, type PreviewBuyerPaymentsReceivedEmailResponse as eL, type PreviewBuyerConfirmationEmailRequest as eM, type PreviewBuyerConfirmationEmailResponse as eN, type PreviewBuyerPickupConfirmationEmailRequest as eO, type PreviewBuyerPickupConfirmationEmailResponse as eP, type PreviewShippingConfirmationEmailRequest as eQ, type PreviewShippingConfirmationEmailResponse as eR, type PreviewResendDownloadLinksEmailRequest as eS, type PreviewResendDownloadLinksEmailResponse as eT, type MetaSiteSpecialEvent as eU, type MetaSiteSpecialEventPayloadOneOf as eV, type Asset as eW, type SiteCreated as eX, type SiteTransferred as eY, type SiteDeleted as eZ, type DeleteContext as e_, type TriggerReindexOrderRequest as ea, type SendBuyerConfirmationEmailRequest as eb, type SendBuyerConfirmationEmailResponse as ec, type SendBuyerPaymentsReceivedEmailRequest as ed, type SendBuyerPaymentsReceivedEmailResponse as ee, type SendBuyerPickupConfirmationEmailRequest as ef, type SendBuyerPickupConfirmationEmailResponse as eg, type BulkSendBuyerPickupConfirmationEmailsRequest as eh, type BulkSendBuyerPickupConfirmationEmailsResponse as ei, type SendBuyerShippingConfirmationEmailRequest as ej, type SendBuyerShippingConfirmationEmailResponse as ek, type BulkSendBuyerShippingConfirmationEmailsRequest as el, type BulkSendBuyerShippingConfirmationEmailsResponse as em, type SendMerchantOrderReceivedNotificationRequest as en, type SendMerchantOrderReceivedNotificationResponse as eo, type SendCancelRefundEmailRequest as ep, type SendCancelRefundEmailResponse as eq, type SendRefundEmailRequest as er, type SendRefundEmailResponse as es, type SendFulfillmentEmailRequest as et, type SendFulfillmentEmailResponse as eu, type SendMerchantOrderReceivedPushRequest as ev, type SendMerchantOrderReceivedPushResponse as ew, type PreviewEmailByTypeRequest as ex, type PreviewEmailByTypeResponse as ey, type PreviewRefundEmailRequest as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type PaymentReceiptInfoOneOf as f$, type SitePublished as f0, type SiteUnpublished as f1, type SiteMarkedAsTemplate as f2, type SiteMarkedAsWixSite as f3, type ServiceProvisioned as f4, type ServiceRemoved as f5, type SiteRenamed as f6, type SiteHardDeleted as f7, type NamespaceChanged as f8, type StudioAssigned as f9, type RecordManuallyCollectedPaymentRequest as fA, type UserDefinedPaymentMethodName as fB, type UserDefinedPaymentMethodNameKindOneOf as fC, type RecordManuallyCollectedPaymentResponse as fD, type MarkOrderAsPaidRequest as fE, type BulkMarkOrdersAsPaidRequest as fF, type BulkOrderResult as fG, type ItemMetadata as fH, type ApplicationError as fI, type BulkActionMetadata as fJ, type GetRefundabilityStatusRequest as fK, type Refundability as fL, type RefundabilityAdditionalRefundabilityInfoOneOf as fM, type CreatePaymentGatewayOrderRequest as fN, type ChargedBy as fO, type ChargeMembershipsRequest as fP, type MembershipChargeItem as fQ, type MembershipName as fR, type ServiceProperties as fS, type ChargeMembershipsResponse as fT, type TriggerRefundRequest as fU, type RefundSideEffects as fV, type RestockInfo as fW, type RestockItem as fX, type OrderTransactions as fY, type Payment as fZ, type PaymentPaymentDetailsOneOf as f_, type StudioUnassigned as fa, type SiteUrlChanged as fb, type SitePurgedExternally as fc, type OdeditorAssigned as fd, type OdeditorUnassigned as fe, type PicassoAssigned as ff, type PicassoUnassigned as fg, type WixelAssigned as fh, type WixelUnassigned as fi, type StudioTwoAssigned as fj, type StudioTwoUnassigned as fk, type UserDomainMediaEnabled as fl, type UserDomainMediaDisabled as fm, type EditorlessAssigned as fn, type EditorlessUnassigned as fo, type HasCustomEmailConfigurationsRequest as fp, type HasCustomEmailConfigurationsResponse as fq, type AddToAutomationMigrationPopulationRequest as fr, type AddToAutomationMigrationPopulationResponse as fs, type IsInAutomationMigrationPopulationRequest as ft, type IsInAutomationMigrationPopulationResponse as fu, type PreparePaymentCollectionRequest as fv, type RedirectUrls as fw, type DelayedCaptureSettings as fx, type Duration as fy, type GetPaymentCollectabilityStatusRequest as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type V1LineItemDelta as g$, type RegularPaymentDetails as g0, type RegularPaymentDetailsPaymentMethodDetailsOneOf as g1, type CreditCardPaymentMethodDetails as g2, type AuthorizationDetails as g3, type AuthorizationCapture as g4, type AuthorizationActionFailureDetails as g5, type AuthorizationVoid as g6, type V1ScheduledAction as g7, type Chargeback as g8, type PaymentMethodName as g9, type PlatformQueryPagingMethodOneOf as gA, type Sorting as gB, type PlatformPaging as gC, type CursorPaging as gD, type InternalQueryOrdersResponse as gE, type PlatformPagingMetadata as gF, type Cursors as gG, type QueryOrderRequest as gH, type QueryOrderResponse as gI, type SearchOrdersRequest as gJ, type CursorSearch as gK, type CursorSearchPagingMethodOneOf as gL, type CursorPagingMetadata as gM, type CreateOrderRequest as gN, type OrderCreationSettings as gO, type OrderCreationSettingsEditableByOneOf as gP, type OrderCreateNotifications as gQ, type CreateOrderResponse as gR, type UpdateOrderRequest as gS, type UpdateOrderResponse as gT, type BulkUpdateOrdersRequest as gU, type CommitDeltasRequest as gV, type DraftOrderDiffs as gW, type DraftOrderDiffsShippingUpdateInfoOneOf as gX, type DraftOrderDiffsBuyerUpdateInfoOneOf as gY, type DraftOrderDiffsBillingUpdateInfoOneOf as gZ, type DraftOrderDiffsRecipientUpdateInfoOneOf as g_, type GiftCardPaymentDetails as ga, type MembershipPaymentDetails as gb, type WixReceiptInfo as gc, type ExternalReceiptInfo as gd, type CashRoundingDetails as ge, type Refund as gf, type RefundTransaction as gg, type RefundStatusInfo as gh, type AggregatedRefundSummary as gi, type RefundItemsBreakdown as gj, type LineItemRefundSummary as gk, type CalculateRefundRequest as gl, type CalculateRefundItemRequest as gm, type CalculateRefundResponse as gn, type CalculateRefundItemResponse as go, type VoidAuthorizedPaymentsRequest as gp, type CaptureAuthorizedPaymentsRequest as gq, type ChargeSavedPaymentMethodRequest as gr, type ChargeSavedPaymentMethodResponse as gs, type RestockLocation as gt, type DiffmatokyPayload as gu, type ErrorInformation as gv, type GetOrderRequest as gw, type GetOrderResponse as gx, type InternalQueryOrdersRequest as gy, type PlatformQuery as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type MarkAsFulfilledResponse as h$, type V1LineItemDeltaDeltaOneOf as h0, type CommitDeltasResponse as h1, type ArchiveOrderRequest as h2, type ArchiveOrderResponse as h3, type BulkArchiveOrdersRequest as h4, type BulkArchiveOrdersResponse as h5, type BulkArchiveOrdersByFilterRequest as h6, type BulkArchiveOrdersByFilterResponse as h7, type UnArchiveOrderRequest as h8, type UnArchiveOrderResponse as h9, type TrackingNumberAdded as hA, type TrackingNumberEdited as hB, type TrackingLinkAdded as hC, type ShippingConfirmationEmailSent as hD, type InvoiceAdded as hE, type InvoiceSent as hF, type FulfillerEmailSent as hG, type ShippingAddressEdited as hH, type EmailEdited as hI, type PickupReadyEmailSent as hJ, type OrderPartiallyPaid as hK, type OrderPending as hL, type OrderRejected as hM, type AddInternalActivityResponse as hN, type AddActivityRequest as hO, type PublicActivityContentOneOf as hP, type AddActivitiesRequest as hQ, type UpdateActivityRequest as hR, type DeleteActivityRequest as hS, type UpdateLineItemsDescriptionLinesRequest as hT, type LineItemUpdate as hU, type UpdateLineItemsDescriptionLinesResponse as hV, type MarkOrderAsSeenByHumanRequest as hW, type MarkOrderAsSeenByHumanResponse as hX, type CancelOrderRequest as hY, type UpdateOrderStatusRequest as hZ, type MarkAsFulfilledRequest as h_, type BulkUnArchiveOrdersRequest as ha, type BulkUnArchiveOrdersResponse as hb, type BulkUnArchiveOrdersByFilterRequest as hc, type BulkUnArchiveOrdersByFilterResponse as hd, type UpdateBuyerInfoRequest as he, type BuyerInfoUpdate as hf, type UpdateBuyerInfoResponse as hg, type UpdateBuyerEmailRequest as hh, type UpdateBuyerEmailResponse as hi, type UpdateOrderShippingAddressRequest as hj, type UpdateOrderShippingAddressResponse as hk, type UpdateBillingContactDetailsRequest as hl, type UpdateBillingContactDetailsResponse as hm, type UpdateOrderLineItemRequest as hn, type UpdateOrderLineItemsRequest as ho, type MaskedOrderLineItem as hp, type UpdateOrderLineItemsResponse as hq, type AddInternalActivityRequest as hr, type InternalActivity as hs, type InternalActivityContentOneOf as ht, type OrderPlaced as hu, type OrderPaid as hv, type OrderFulfilled as hw, type OrderNotFulfilled as hx, type OrderCanceled as hy, type DownloadLinkSent as hz, type BulkMarkOrdersAsPaidResponse as i, type Discount as i$, type BulkMarkAsFulfilledRequest as i0, type BulkMarkAsFulfilledResponse as i1, type BulkMarkAsFulfilledByFilterRequest as i2, type BulkMarkAsFulfilledByFilterResponse as i3, type MarkAsUnfulfilledRequest as i4, type MarkAsUnfulfilledResponse as i5, type BulkMarkAsUnfulfilledRequest as i6, type BulkMarkAsUnfulfilledResponse as i7, type BulkMarkAsUnfulfilledByFilterRequest as i8, type BulkMarkAsUnfulfilledByFilterResponse as i9, type TaskActionActionOneOf as iA, type Complete as iB, type Cancel as iC, type Reschedule as iD, type InvoiceSentEvent as iE, type IdAndVersion as iF, type InvoiceFields as iG, type Customer as iH, type Email as iI, type QuotesAddress as iJ, type AddressDescription as iK, type Phone as iL, type Company as iM, type CommonAddress as iN, type CommonAddressStreetOneOf as iO, type Subdivision as iP, type StandardDetails as iQ, type InvoiceDates as iR, type LineItems as iS, type LineItem as iT, type BigDecimalWrapper as iU, type LineItemTax as iV, type Source as iW, type LineItemMetaData as iX, type Locale as iY, type TotalPrice as iZ, type ItemizedFee as i_, type BulkSetBusinessLocationRequest as ia, type BulkSetBusinessLocationResponse as ib, type BulkSetBusinessLocationResult as ic, type V1MarkOrderAsPaidRequest as id, type V1MarkOrderAsPaidResponse as ie, type V1BulkMarkOrdersAsPaidRequest as ig, type V1BulkMarkOrdersAsPaidResponse as ih, type V1CreatePaymentGatewayOrderRequest as ii, type V1CreatePaymentGatewayOrderResponse as ij, type GetShipmentsRequest as ik, type GetShipmentsResponse as il, type AggregateOrdersRequest as im, type DecrementItemsQuantityRequest as io, type DecrementData as ip, type DecrementItemsQuantityResponse as iq, type BulkUpdateOrderTagsRequest as ir, type TagsTags as is, type TagsTagList as it, type BulkUpdateOrderTagsResult as iu, type SendOrderUpdatedDomainEventRequest as iv, type SendOrderUpdatedDomainEventResponse as iw, type Task as ix, type TaskKey as iy, type TaskAction as iz, type GetRefundabilityStatusResponse as j, type RefundStatusWithLiterals as j$, type DiscountOneDiscountTypeOneOf as j0, type CalculatedTaxes as j1, type CalculatedTax as j2, type Payments as j3, type InvoicesPayment as j4, type MetaData as j5, type InvoiceDynamicPriceTotals as j6, type CustomFieldValue as j7, type Value as j8, type Deposit as j9, type OrderActionTypeWithLiterals as jA, type SpecificItemsCouponBehaviorWithLiterals as jB, type ChargeTypeWithLiterals as jC, type DeltaPaymentOptionTypeWithLiterals as jD, type InventoryActionWithLiterals as jE, type WebhookIdentityTypeWithLiterals as jF, type VersioningModeWithLiterals as jG, type PreviewEmailTypeWithLiterals as jH, type StateWithLiterals as jI, type SiteCreatedContextWithLiterals as jJ, type NamespaceWithLiterals as jK, type DeleteStatusWithLiterals as jL, type ScheduledActionWithLiterals as jM, type DurationUnitWithLiterals as jN, type PaymentCollectabilityStatusWithLiterals as jO, type PredefinedPaymentMethodWithLiterals as jP, type RefundableStatusWithLiterals as jQ, type NonRefundableReasonWithLiterals as jR, type ManuallyRefundableReasonWithLiterals as jS, type RestockTypeWithLiterals as jT, type TransactionStatusWithLiterals as jU, type AuthorizationCaptureStatusWithLiterals as jV, type AuthorizationVoidStatusWithLiterals as jW, type ReasonWithLiterals as jX, type ActionTypeWithLiterals as jY, type ChargebackStatusWithLiterals as jZ, type MembershipPaymentStatusWithLiterals as j_, type BaseEventMetadata as ja, type EventMetadata as jb, type AccountInfoMetadata as jc, type OrderSearchSpec as jd, utils as je, type DescriptionLineTypeWithLiterals as jf, type DimensionsUnitWithLiterals as jg, type ItemTypePresetWithLiterals as jh, type PaymentOptionTypeWithLiterals as ji, type JurisdictionTypeWithLiterals as jj, type SubscriptionFrequencyWithLiterals as jk, type AdjustmentTypeWithLiterals as jl, type TaxableAddressTypeWithLiterals as jm, type PaymentStatusWithLiterals as jn, type FulfillmentStatusWithLiterals as jo, type WeightUnitWithLiterals as jp, type VatTypeWithLiterals as jq, type PickupMethodWithLiterals as jr, type DiscountTypeWithLiterals as js, type DiscountReasonWithLiterals as jt, type LineItemQuantityChangeTypeWithLiterals as ju, type ActivityTypeWithLiterals as jv, type OrderActivityTypeEnumActivityTypeWithLiterals as jw, type AttributionSourceWithLiterals as jx, type ChannelTypeWithLiterals as jy, type AdditionalFeeSourceWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type SortOrderWithLiterals as k0, type OrderApprovalStrategyWithLiterals as k1, type PlacementWithLiterals as k2, type SubdivisionTypeWithLiterals as k3, type SourceTypeWithLiterals as k4, type CustomFieldGroupWithLiterals as k5, type ValueTypeWithLiterals as k6, type DepositTypeWithLiterals as k7, type InvoiceStatusWithLiterals as k8, type CommonSearchWithEntityContext as k9, addActivity as kA, addActivities as kB, updateActivity as kC, deleteActivity as kD, cancelOrder as kE, updateOrderStatus as kF, aggregateOrders as kG, bulkUpdateOrderTags as kH, onOrderApproved as ka, onOrderCanceled as kb, onOrderCommitted as kc, onOrderCreated as kd, onOrderFulfilled as ke, onOrderPaymentStatusUpdated as kf, onOrderUpdated as kg, importOrder as kh, setOrderNumberCounter as ki, bulkDeleteImportedOrders as kj, preparePaymentCollection as kk, getPaymentCollectabilityStatus as kl, recordManuallyCollectedPayment as km, paymentCollectionMarkOrderAsPaid as kn, paymentCollectionBulkMarkOrdersAsPaid as ko, getRefundabilityStatus as kp, paymentCollectionCreatePaymentGatewayOrder as kq, chargeMemberships as kr, triggerRefund as ks, voidAuthorizedPayments as kt, captureAuthorizedPayments as ku, getOrder as kv, createOrder as kw, updateOrder as kx, bulkUpdateOrders as ky, updateOrderLineItem as kz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as l, type ChargeMembershipsOptions as m, type PaymentRefund as n, type TriggerRefundResponse as o, type TriggerRefundApplicationErrors as p, type VoidAuthorizedPaymentsApplicationErrors as q, type PaymentCapture as r, type CaptureAuthorizedPaymentsResponse as s, type CaptureAuthorizedPaymentsApplicationErrors as t, type GetOrderApplicationErrors as u, type OrderSearch as v, type SearchOrdersResponse as w, type CreateOrderOptions as x, type CreateOrderApplicationErrors as y, type UpdateOrderApplicationErrors as z };
|
|
9510
|
+
export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersOptions as D, type BulkUpdateOrdersResponse as E, type UpdateOrderLineItemIdentifiers as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItem as H, type ImportOrderResponse as I, type UpdateOrderLineItemResponse as J, type PublicActivity as K, type AddActivityResponse as L, type MarkOrderAsPaidResponse as M, type AddActivitiesOptions as N, type Order as O, type Price as P, type AddActivitiesResponse as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityIdentifiers as W, type UpdateActivityResponse as X, type DeleteActivityIdentifiers as Y, type DeleteActivityResponse as Z, type CancelOrderOptions as _, type SetOrderNumberCounterResponse as a, MembershipPaymentStatus as a$, type CancelOrderApplicationErrors as a0, type OrderStatusWithLiterals as a1, type UpdateOrderStatusResponse as a2, type UpdateOrderStatusApplicationErrors as a3, type AggregateOrdersOptions as a4, type AggregateOrdersResponse as a5, type BulkUpdateOrderTagsOptions as a6, type BulkUpdateOrderTagsResponse as a7, type OrderApprovedEnvelope as a8, type OrderCanceledEnvelope as a9, AdditionalFeeSource as aA, OrderActionType as aB, SpecificItemsCouponBehavior as aC, ChargeType as aD, DeltaPaymentOptionType as aE, InventoryAction as aF, WebhookIdentityType as aG, PreviewEmailType as aH, State as aI, SiteCreatedContext as aJ, Namespace as aK, DeleteStatus as aL, Origin as aM, ScheduledAction as aN, DurationUnit as aO, PaymentCollectabilityStatus as aP, PredefinedPaymentMethod as aQ, RefundableStatus as aR, NonRefundableReason as aS, ManuallyRefundableReason as aT, RestockType as aU, TransactionStatus as aV, AuthorizationCaptureStatus as aW, AuthorizationVoidStatus as aX, Reason as aY, ActionType as aZ, ChargebackStatus as a_, type OrderCommittedEnvelope as aa, type OrderCreatedEnvelope as ab, type OrderFulfilledEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, type OrderUpdatedEnvelope as ae, DescriptionLineType as af, DimensionsUnit as ag, ItemTypePreset as ah, PaymentOptionType as ai, JurisdictionType as aj, SubscriptionFrequency as ak, AdjustmentType as al, TaxableAddressType as am, PaymentStatus as an, FulfillmentStatus as ao, WeightUnit as ap, VatType as aq, PickupMethod as ar, OrderStatus as as, DiscountType as at, DiscountReason as au, LineItemQuantityChangeType as av, ActivityType as aw, OrderActivityTypeEnumActivityType as ax, AttributionSource as ay, ChannelType as az, type BulkDeleteImportedOrdersResponse as b, type TaxSummary as b$, RefundStatus as b0, VersioningMode as b1, SortOrder as b2, OrderApprovalStrategy as b3, Placement as b4, SubdivisionType as b5, SourceType as b6, CustomFieldGroup as b7, ValueType as b8, DepositType as b9, type BillingAdjustmentPriceSummary as bA, type PriceDescription as bB, type LocationAndQuantity as bC, type TaxableAddress as bD, type TaxableAddressTaxableAddressDataOneOf as bE, type ExtendedFields as bF, type ModifierGroup as bG, type TranslatableString as bH, type ItemModifier as bI, type BuyerInfo as bJ, type BuyerInfoIdOneOf as bK, type CurrencyConversionDetails as bL, type PriceSummary as bM, type AddressWithContact as bN, type Address as bO, type StreetAddress as bP, type AddressLocation as bQ, type FullAddressContactDetails as bR, type VatId as bS, type V1ShippingInformation as bT, type DeliveryLogistics as bU, type DeliveryLogisticsAddressOneOf as bV, type PickupDetails as bW, type PickupAddress as bX, type DeliveryTimeSlot as bY, type ShippingPrice as bZ, type ShippingRegion as b_, InvoiceStatus as ba, type OrderLineItem as bb, type ProductName as bc, type CatalogReference as bd, type DescriptionLine as be, type DescriptionLineValueOneOf as bf, type DescriptionLineDescriptionLineValueOneOf as bg, type DescriptionLineName as bh, type PlainTextValue as bi, type Color as bj, type FocalPoint as bk, type PhysicalProperties as bl, type Dimensions as bm, type ItemType as bn, type ItemTypeItemTypeDataOneOf as bo, type RestockLocation as bp, type ItemTaxFullDetails as bq, type LineItemTaxInfo as br, type LineItemTaxBreakdown as bs, type DigitalFile as bt, type SubscriptionInfo as bu, type SubscriptionTitle as bv, type SubscriptionDescription as bw, type SubscriptionSettings as bx, type FreeTrialPeriod as by, type BillingAdjustment as bz, type PreparePaymentCollectionOptions as c, type ReceiptSent as c$, type OrderTaxInfo as c0, type OrderTaxBreakdown as c1, type AppliedDiscount as c2, type AppliedDiscountDiscountSourceOneOf as c3, type Coupon as c4, type MerchantDiscount as c5, type MerchantDiscountMerchantDiscountReasonOneOf as c6, type DiscountRule as c7, type DiscountRuleName as c8, type LineItemDiscount as c9, type ShippingInformation as cA, type SavedPaymentMethod as cB, type AuthorizedPaymentCreated as cC, type AuthorizedPaymentCaptured as cD, type AuthorizedPaymentVoided as cE, type RefundInitiated as cF, type RefundedPayment as cG, type RefundedPaymentKindOneOf as cH, type RegularPaymentRefund as cI, type GiftCardPaymentRefund as cJ, type MembershipPaymentRefund as cK, type PaymentRefunded as cL, type PaymentRefundFailed as cM, type RefundedAsStoreCredit as cN, type PaymentPending as cO, type PaymentPendingPaymentDetailsOneOf as cP, type RegularPayment as cQ, type RegularPaymentPaymentMethodDetailsOneOf as cR, type CreditCardDetails as cS, type PaymentCanceled as cT, type PaymentCanceledPaymentDetailsOneOf as cU, type PaymentDeclined as cV, type PaymentDeclinedPaymentDetailsOneOf as cW, type ReceiptCreated as cX, type ReceiptCreatedReceiptInfoOneOf as cY, type WixReceipt as cZ, type ExternalReceipt as c_, type ItemCombination as ca, type ItemCombinationLineItem as cb, type Activity as cc, type ActivityContentOneOf as cd, type CustomActivity as ce, type MerchantComment as cf, type OrderRefunded as cg, type OrderCreatedFromExchange as ch, type NewExchangeOrderCreated as ci, type LineItemExchangeData as cj, type DraftOrderChangesApplied as ck, type OrderChange as cl, type OrderChangeValueOneOf as cm, type LineItemChanges as cn, type LineItemQuantityChange as co, type LineItemPriceChange as cp, type LineItemProductNameChange as cq, type LineItemDescriptionLineChange as cr, type LineItemModifiersChange as cs, type ManagedLineItem as ct, type ManagedDiscount as cu, type TranslatedValue as cv, type LineItemAmount as cw, type ManagedAdditionalFee as cx, type TotalPriceChange as cy, type ShippingInformationChange as cz, type PreparePaymentCollectionResponse as d, type SendBuyerConfirmationEmailResponse as d$, type ReceiptSentReceiptInfoOneOf as d0, type ChargebackCreated as d1, type ChargebackReversed as d2, type CreatedBy as d3, type CreatedByStringOneOf as d4, type ChannelInfo as d5, type CustomField as d6, type BalanceSummary as d7, type Balance as d8, type CashRounding as d9, type CommittedDiffs as dA, type CommittedDiffsShippingUpdateInfoOneOf as dB, type ItemChangedDetails as dC, type OrderLineItemChangedDetails as dD, type LineItemDelta as dE, type LineItemDeltaDeltaOneOf as dF, type AppliedDiscountDelta as dG, type AppliedDiscountDeltaDeltaOneOf as dH, type AdditionalFeeDelta as dI, type AdditionalFeeDeltaDeltaOneOf as dJ, type DraftOrderCommitSettings as dK, type InventoryUpdateDetails as dL, type ImportOrderRequest as dM, type SetOrderNumberCounterRequest as dN, type BulkDeleteImportedOrdersRequest as dO, type DomainEvent as dP, type DomainEventBodyOneOf as dQ, type EntityCreatedEvent as dR, type RestoreInfo as dS, type EntityUpdatedEvent as dT, type EntityDeletedEvent as dU, type ActionEvent as dV, type MessageEnvelope as dW, type IdentificationData as dX, type IdentificationDataIdOneOf as dY, type AccountInfo as dZ, type SendBuyerConfirmationEmailRequest as d_, type AdditionalFee as da, type FulfillmentStatusesAggregate as db, type Tags as dc, type TagList as dd, type Location as de, type OrderSettings as df, type OrderSettingsAllowedActionsOneOf as dg, type OrderSettingsEditableByOneOf as dh, type CustomAllowedActions as di, type OwnerApps as dj, type FormInfo as dk, type FormIdentifier as dl, type PlatformFeeSummary as dm, type PlatformFee as dn, type OrderApproved as dp, type OrdersExperiments as dq, type OrderRejectedEventOrderRejected as dr, type OrderItemsRestocked as ds, type V1RestockItem as dt, type OrderImported as du, type ImportedOrderDeleted as dv, type PaymentStatusUpdated as dw, type FulfillmentStatusUpdated as dx, type OrderCanceledEventOrderCanceled as dy, type OrderDeltasCommitted as dz, type PreparePaymentCollectionApplicationErrors as e, type SiteUrlChanged as e$, type SendBuyerPaymentsReceivedEmailRequest as e0, type SendBuyerPaymentsReceivedEmailResponse as e1, type SendBuyerPickupConfirmationEmailRequest as e2, type SendBuyerPickupConfirmationEmailResponse as e3, type BulkSendBuyerPickupConfirmationEmailsRequest as e4, type BulkSendBuyerPickupConfirmationEmailsResponse as e5, type SendBuyerShippingConfirmationEmailRequest as e6, type SendBuyerShippingConfirmationEmailResponse as e7, type BulkSendBuyerShippingConfirmationEmailsRequest as e8, type BulkSendBuyerShippingConfirmationEmailsResponse as e9, type PreviewBuyerConfirmationEmailResponse as eA, type PreviewBuyerPickupConfirmationEmailRequest as eB, type PreviewBuyerPickupConfirmationEmailResponse as eC, type PreviewShippingConfirmationEmailRequest as eD, type PreviewShippingConfirmationEmailResponse as eE, type PreviewResendDownloadLinksEmailRequest as eF, type PreviewResendDownloadLinksEmailResponse as eG, type Empty as eH, type MetaSiteSpecialEvent as eI, type MetaSiteSpecialEventPayloadOneOf as eJ, type Asset as eK, type SiteCreated as eL, type SiteTransferred as eM, type SiteDeleted as eN, type DeleteContext as eO, type SiteUndeleted as eP, type SitePublished as eQ, type SiteUnpublished as eR, type SiteMarkedAsTemplate as eS, type SiteMarkedAsWixSite as eT, type ServiceProvisioned as eU, type ServiceRemoved as eV, type SiteRenamed as eW, type SiteHardDeleted as eX, type NamespaceChanged as eY, type StudioAssigned as eZ, type StudioUnassigned as e_, type SendMerchantOrderReceivedNotificationRequest as ea, type SendMerchantOrderReceivedNotificationResponse as eb, type SendCancelRefundEmailRequest as ec, type SendCancelRefundEmailResponse as ed, type SendRefundEmailRequest as ee, type SendRefundEmailResponse as ef, type SendFulfillmentEmailRequest as eg, type SendFulfillmentEmailResponse as eh, type SendMerchantOrderReceivedPushRequest as ei, type SendMerchantOrderReceivedPushResponse as ej, type PreviewEmailByTypeRequest as ek, type PreviewEmailByTypeResponse as el, type PreviewRefundEmailRequest as em, type RefundDetails as en, type RefundItem as eo, type LineItemRefund as ep, type AdditionalFeeRefund as eq, type ShippingRefund as er, type PreviewRefundEmailResponse as es, type PreviewCancelEmailRequest as et, type PreviewCancelEmailResponse as eu, type PreviewCancelRefundEmailRequest as ev, type PreviewCancelRefundEmailResponse as ew, type PreviewBuyerPaymentsReceivedEmailRequest as ex, type PreviewBuyerPaymentsReceivedEmailResponse as ey, type PreviewBuyerConfirmationEmailRequest as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type MembershipPaymentDetails as f$, type SitePurgedExternally as f0, type OdeditorAssigned as f1, type OdeditorUnassigned as f2, type PicassoAssigned as f3, type PicassoUnassigned as f4, type WixelAssigned as f5, type WixelUnassigned as f6, type StudioTwoAssigned as f7, type StudioTwoUnassigned as f8, type UserDomainMediaEnabled as f9, type RefundabilityAdditionalRefundabilityInfoOneOf as fA, type CreatePaymentGatewayOrderRequest as fB, type ChargedBy as fC, type ChargeMembershipsRequest as fD, type MembershipChargeItem as fE, type MembershipName as fF, type ServiceProperties as fG, type ChargeMembershipsResponse as fH, type TriggerRefundRequest as fI, type RefundSideEffects as fJ, type RestockInfo as fK, type RestockItem as fL, type OrderTransactions as fM, type Payment as fN, type PaymentPaymentDetailsOneOf as fO, type PaymentReceiptInfoOneOf as fP, type RegularPaymentDetails as fQ, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fR, type CreditCardPaymentMethodDetails as fS, type AuthorizationDetails as fT, type AuthorizationCapture as fU, type AuthorizationActionFailureDetails as fV, type AuthorizationVoid as fW, type V1ScheduledAction as fX, type Chargeback as fY, type PaymentMethodName as fZ, type GiftCardPaymentDetails as f_, type UserDomainMediaDisabled as fa, type EditorlessAssigned as fb, type EditorlessUnassigned as fc, type HasCustomEmailConfigurationsRequest as fd, type HasCustomEmailConfigurationsResponse as fe, type AddToAutomationMigrationPopulationRequest as ff, type AddToAutomationMigrationPopulationResponse as fg, type IsInAutomationMigrationPopulationRequest as fh, type IsInAutomationMigrationPopulationResponse as fi, type PreparePaymentCollectionRequest as fj, type RedirectUrls as fk, type DelayedCaptureSettings as fl, type Duration as fm, type GetPaymentCollectabilityStatusRequest as fn, type RecordManuallyCollectedPaymentRequest as fo, type UserDefinedPaymentMethodName as fp, type UserDefinedPaymentMethodNameKindOneOf as fq, type RecordManuallyCollectedPaymentResponse as fr, type MarkOrderAsPaidRequest as fs, type BulkMarkOrdersAsPaidRequest as ft, type BulkOrderResult as fu, type ItemMetadata as fv, type ApplicationError as fw, type BulkActionMetadata as fx, type GetRefundabilityStatusRequest as fy, type Refundability as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type DraftOrderDiffsRecipientUpdateInfoOneOf as g$, type WixReceiptInfo as g0, type ExternalReceiptInfo as g1, type CashRoundingDetails as g2, type Refund as g3, type RefundTransaction as g4, type RefundStatusInfo as g5, type AggregatedRefundSummary as g6, type RefundItemsBreakdown as g7, type LineItemRefundSummary as g8, type CalculateRefundRequest as g9, type PlatformQuery as gA, type PlatformQueryPagingMethodOneOf as gB, type Sorting as gC, type PlatformPaging as gD, type CursorPaging as gE, type InternalQueryOrdersResponse as gF, type PlatformPagingMetadata as gG, type Cursors as gH, type QueryOrderRequest as gI, type QueryOrderResponse as gJ, type SearchOrdersRequest as gK, type CursorSearch as gL, type CursorSearchPagingMethodOneOf as gM, type CursorPagingMetadata as gN, type CreateOrderRequest as gO, type OrderCreationSettings as gP, type OrderCreationSettingsEditableByOneOf as gQ, type OrderCreateNotifications as gR, type CreateOrderResponse as gS, type UpdateOrderRequest as gT, type UpdateOrderResponse as gU, type BulkUpdateOrdersRequest as gV, type CommitDeltasRequest as gW, type DraftOrderDiffs as gX, type DraftOrderDiffsShippingUpdateInfoOneOf as gY, type DraftOrderDiffsBuyerUpdateInfoOneOf as gZ, type DraftOrderDiffsBillingUpdateInfoOneOf as g_, type CalculateRefundItemRequest as ga, type CalculateRefundResponse as gb, type CalculateRefundItemResponse as gc, type VoidAuthorizedPaymentsRequest as gd, type CaptureAuthorizedPaymentsRequest as ge, type ChargeSavedPaymentMethodRequest as gf, type ChargeSavedPaymentMethodResponse as gg, type UpdateInternalDocumentsEvent as gh, type UpdateInternalDocumentsEventOperationOneOf as gi, type InternalDocument as gj, type InternalDocumentUpdateOperation as gk, type DeleteByIdsOperation as gl, type DeleteByFilterOperation as gm, type InternalDocumentUpdateByFilterOperation as gn, type InternalUpdateExistingOperation as go, type VersionedDocumentUpdateOperation as gp, type VersionedDeleteByIdsOperation as gq, type VersionedDocumentId as gr, type TriggerReindexRequest as gs, type TriggerReindexResponse as gt, type TriggerReindexOrderRequest as gu, type DiffmatokyPayload as gv, type ErrorInformation as gw, type GetOrderRequest as gx, type GetOrderResponse as gy, type InternalQueryOrdersRequest as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type MarkAsFulfilledRequest as h$, type V1LineItemDelta as h0, type V1LineItemDeltaDeltaOneOf as h1, type CommitDeltasResponse as h2, type ArchiveOrderRequest as h3, type ArchiveOrderResponse as h4, type BulkArchiveOrdersRequest as h5, type BulkArchiveOrdersResponse as h6, type BulkArchiveOrdersByFilterRequest as h7, type BulkArchiveOrdersByFilterResponse as h8, type UnArchiveOrderRequest as h9, type DownloadLinkSent as hA, type TrackingNumberAdded as hB, type TrackingNumberEdited as hC, type TrackingLinkAdded as hD, type ShippingConfirmationEmailSent as hE, type InvoiceAdded as hF, type InvoiceSent as hG, type FulfillerEmailSent as hH, type ShippingAddressEdited as hI, type EmailEdited as hJ, type PickupReadyEmailSent as hK, type OrderPartiallyPaid as hL, type OrderPending as hM, type OrderRejected as hN, type AddInternalActivityResponse as hO, type AddActivityRequest as hP, type PublicActivityContentOneOf as hQ, type AddActivitiesRequest as hR, type UpdateActivityRequest as hS, type DeleteActivityRequest as hT, type UpdateLineItemsDescriptionLinesRequest as hU, type LineItemUpdate as hV, type UpdateLineItemsDescriptionLinesResponse as hW, type MarkOrderAsSeenByHumanRequest as hX, type MarkOrderAsSeenByHumanResponse as hY, type CancelOrderRequest as hZ, type UpdateOrderStatusRequest as h_, type UnArchiveOrderResponse as ha, type BulkUnArchiveOrdersRequest as hb, type BulkUnArchiveOrdersResponse as hc, type BulkUnArchiveOrdersByFilterRequest as hd, type BulkUnArchiveOrdersByFilterResponse as he, type UpdateBuyerInfoRequest as hf, type BuyerInfoUpdate as hg, type UpdateBuyerInfoResponse as hh, type UpdateBuyerEmailRequest as hi, type UpdateBuyerEmailResponse as hj, type UpdateOrderShippingAddressRequest as hk, type UpdateOrderShippingAddressResponse as hl, type UpdateBillingContactDetailsRequest as hm, type UpdateBillingContactDetailsResponse as hn, type UpdateOrderLineItemRequest as ho, type UpdateOrderLineItemsRequest as hp, type MaskedOrderLineItem as hq, type UpdateOrderLineItemsResponse as hr, type AddInternalActivityRequest as hs, type InternalActivity as ht, type InternalActivityContentOneOf as hu, type OrderPlaced as hv, type OrderPaid as hw, type OrderFulfilled as hx, type OrderNotFulfilled as hy, type OrderCanceled as hz, type BulkMarkOrdersAsPaidResponse as i, type ItemizedFee as i$, type MarkAsFulfilledResponse as i0, type BulkMarkAsFulfilledRequest as i1, type BulkMarkAsFulfilledResponse as i2, type BulkMarkAsFulfilledByFilterRequest as i3, type BulkMarkAsFulfilledByFilterResponse as i4, type MarkAsUnfulfilledRequest as i5, type MarkAsUnfulfilledResponse as i6, type BulkMarkAsUnfulfilledRequest as i7, type BulkMarkAsUnfulfilledResponse as i8, type BulkMarkAsUnfulfilledByFilterRequest as i9, type TaskAction as iA, type TaskActionActionOneOf as iB, type Complete as iC, type Cancel as iD, type Reschedule as iE, type InvoiceSentEvent as iF, type IdAndVersion as iG, type InvoiceFields as iH, type Customer as iI, type Email as iJ, type QuotesAddress as iK, type AddressDescription as iL, type Phone as iM, type Company as iN, type CommonAddress as iO, type CommonAddressStreetOneOf as iP, type Subdivision as iQ, type StandardDetails as iR, type InvoiceDates as iS, type LineItems as iT, type LineItem as iU, type BigDecimalWrapper as iV, type LineItemTax as iW, type Source as iX, type LineItemMetaData as iY, type Locale as iZ, type TotalPrice as i_, type BulkMarkAsUnfulfilledByFilterResponse as ia, type BulkSetBusinessLocationRequest as ib, type BulkSetBusinessLocationResponse as ic, type BulkSetBusinessLocationResult as id, type V1MarkOrderAsPaidRequest as ie, type V1MarkOrderAsPaidResponse as ig, type V1BulkMarkOrdersAsPaidRequest as ih, type V1BulkMarkOrdersAsPaidResponse as ii, type V1CreatePaymentGatewayOrderRequest as ij, type V1CreatePaymentGatewayOrderResponse as ik, type GetShipmentsRequest as il, type GetShipmentsResponse as im, type AggregateOrdersRequest as io, type DecrementItemsQuantityRequest as ip, type DecrementData as iq, type DecrementItemsQuantityResponse as ir, type BulkUpdateOrderTagsRequest as is, type TagsTags as it, type TagsTagList as iu, type BulkUpdateOrderTagsResult as iv, type SendOrderUpdatedDomainEventRequest as iw, type SendOrderUpdatedDomainEventResponse as ix, type Task as iy, type TaskKey as iz, type GetRefundabilityStatusResponse as j, type MembershipPaymentStatusWithLiterals as j$, type Discount as j0, type DiscountOneDiscountTypeOneOf as j1, type CalculatedTaxes as j2, type CalculatedTax as j3, type Payments as j4, type InvoicesPayment as j5, type MetaData as j6, type InvoiceDynamicPriceTotals as j7, type CustomFieldValue as j8, type Value as j9, type AdditionalFeeSourceWithLiterals as jA, type OrderActionTypeWithLiterals as jB, type SpecificItemsCouponBehaviorWithLiterals as jC, type ChargeTypeWithLiterals as jD, type DeltaPaymentOptionTypeWithLiterals as jE, type InventoryActionWithLiterals as jF, type WebhookIdentityTypeWithLiterals as jG, type PreviewEmailTypeWithLiterals as jH, type StateWithLiterals as jI, type SiteCreatedContextWithLiterals as jJ, type NamespaceWithLiterals as jK, type DeleteStatusWithLiterals as jL, type OriginWithLiterals as jM, type ScheduledActionWithLiterals as jN, type DurationUnitWithLiterals as jO, type PaymentCollectabilityStatusWithLiterals as jP, type PredefinedPaymentMethodWithLiterals as jQ, type RefundableStatusWithLiterals as jR, type NonRefundableReasonWithLiterals as jS, type ManuallyRefundableReasonWithLiterals as jT, type RestockTypeWithLiterals as jU, type TransactionStatusWithLiterals as jV, type AuthorizationCaptureStatusWithLiterals as jW, type AuthorizationVoidStatusWithLiterals as jX, type ReasonWithLiterals as jY, type ActionTypeWithLiterals as jZ, type ChargebackStatusWithLiterals as j_, type Deposit as ja, type BaseEventMetadata as jb, type EventMetadata as jc, type AccountInfoMetadata as jd, type OrderSearchSpec as je, utils as jf, type DescriptionLineTypeWithLiterals as jg, type DimensionsUnitWithLiterals as jh, type ItemTypePresetWithLiterals as ji, type PaymentOptionTypeWithLiterals as jj, type JurisdictionTypeWithLiterals as jk, type SubscriptionFrequencyWithLiterals as jl, type AdjustmentTypeWithLiterals as jm, type TaxableAddressTypeWithLiterals as jn, type PaymentStatusWithLiterals as jo, type FulfillmentStatusWithLiterals as jp, type WeightUnitWithLiterals as jq, type VatTypeWithLiterals as jr, type PickupMethodWithLiterals as js, type DiscountTypeWithLiterals as jt, type DiscountReasonWithLiterals as ju, type LineItemQuantityChangeTypeWithLiterals as jv, type ActivityTypeWithLiterals as jw, type OrderActivityTypeEnumActivityTypeWithLiterals as jx, type AttributionSourceWithLiterals as jy, type ChannelTypeWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type RefundStatusWithLiterals as k0, type VersioningModeWithLiterals as k1, type SortOrderWithLiterals as k2, type OrderApprovalStrategyWithLiterals as k3, type PlacementWithLiterals as k4, type SubdivisionTypeWithLiterals as k5, type SourceTypeWithLiterals as k6, type CustomFieldGroupWithLiterals as k7, type ValueTypeWithLiterals as k8, type DepositTypeWithLiterals as k9, bulkUpdateOrders as kA, updateOrderLineItem as kB, addActivity as kC, addActivities as kD, updateActivity as kE, deleteActivity as kF, cancelOrder as kG, updateOrderStatus as kH, aggregateOrders as kI, bulkUpdateOrderTags as kJ, type InvoiceStatusWithLiterals as ka, type CommonSearchWithEntityContext as kb, onOrderApproved as kc, onOrderCanceled as kd, onOrderCommitted as ke, onOrderCreated as kf, onOrderFulfilled as kg, onOrderPaymentStatusUpdated as kh, onOrderUpdated as ki, importOrder as kj, setOrderNumberCounter as kk, bulkDeleteImportedOrders as kl, preparePaymentCollection as km, getPaymentCollectabilityStatus as kn, recordManuallyCollectedPayment as ko, paymentCollectionMarkOrderAsPaid as kp, paymentCollectionBulkMarkOrdersAsPaid as kq, getRefundabilityStatus as kr, paymentCollectionCreatePaymentGatewayOrder as ks, chargeMemberships as kt, triggerRefund as ku, voidAuthorizedPayments as kv, captureAuthorizedPayments as kw, getOrder as kx, createOrder as ky, updateOrder as kz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as l, type ChargeMembershipsOptions as m, type PaymentRefund as n, type TriggerRefundResponse as o, type TriggerRefundApplicationErrors as p, type VoidAuthorizedPaymentsApplicationErrors as q, type PaymentCapture as r, type CaptureAuthorizedPaymentsResponse as s, type CaptureAuthorizedPaymentsApplicationErrors as t, type GetOrderApplicationErrors as u, type OrderSearch as v, type SearchOrdersResponse as w, type CreateOrderOptions as x, type CreateOrderApplicationErrors as y, type UpdateOrderApplicationErrors as z };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, b as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentOptions, f as RecordManuallyCollectedPaymentApplicationErrors, g as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, h as PaymentCollectionMarkOrderAsPaidApplicationErrors, i as BulkMarkOrdersAsPaidResponse, j as GetRefundabilityStatusResponse, k as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, l as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, m as ChargeMembershipsOptions, n as PaymentRefund, T as TriggerRefundOptions, o as TriggerRefundResponse, p as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, q as VoidAuthorizedPaymentsApplicationErrors, r as PaymentCapture, s as CaptureAuthorizedPaymentsResponse, t as CaptureAuthorizedPaymentsApplicationErrors, u as GetOrderApplicationErrors, v as OrderSearch, w as SearchOrdersResponse, x as CreateOrderOptions, y as CreateOrderApplicationErrors, U as UpdateOrder, z as UpdateOrderApplicationErrors, A as MaskedOrder, D as BulkUpdateOrdersOptions, E as BulkUpdateOrdersResponse, F as UpdateOrderLineItemIdentifiers, H as UpdateOrderLineItem, J as UpdateOrderLineItemResponse, K as PublicActivity, L as AddActivityResponse, N as AddActivitiesOptions, Q as AddActivitiesResponse, W as UpdateActivityIdentifiers, X as UpdateActivityResponse, Y as DeleteActivityIdentifiers, Z as DeleteActivityResponse, _ as CancelOrderOptions, $ as CancelOrderResponse, a0 as CancelOrderApplicationErrors, a1 as OrderStatusWithLiterals, a2 as UpdateOrderStatusResponse, a3 as UpdateOrderStatusApplicationErrors, a4 as AggregateOrdersOptions, a5 as AggregateOrdersResponse, a6 as BulkUpdateOrderTagsOptions, a7 as BulkUpdateOrderTagsResponse, a8 as OrderApprovedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCommittedEnvelope, ab as OrderCreatedEnvelope, ac as OrderFulfilledEnvelope, ad as OrderPaymentStatusUpdatedEnvelope, ae as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { dX as AccountInfo, jc as AccountInfoMetadata, dT as ActionEvent, aZ as ActionType, jY as ActionTypeWithLiterals, ca as Activity, cb as ActivityContentOneOf, aw as ActivityType, jv as ActivityTypeWithLiterals, hQ as AddActivitiesRequest, hO as AddActivityRequest, hr as AddInternalActivityRequest, hN as AddInternalActivityResponse, fr as AddToAutomationMigrationPopulationRequest, fs as AddToAutomationMigrationPopulationResponse, d8 as AdditionalFee, dG as AdditionalFeeDelta, dH as AdditionalFeeDeltaDeltaOneOf, eD as AdditionalFeeRefund, aA as AdditionalFeeSource, jz as AdditionalFeeSourceWithLiterals, bM as Address, iK as AddressDescription, bO as AddressLocation, bL as AddressWithContact, al as AdjustmentType, jl as AdjustmentTypeWithLiterals, im as AggregateOrdersRequest, gi as AggregatedRefundSummary, fI as ApplicationError, c0 as AppliedDiscount, dE as AppliedDiscountDelta, dF as AppliedDiscountDeltaDeltaOneOf, c1 as AppliedDiscountDiscountSourceOneOf, h2 as ArchiveOrderRequest, h3 as ArchiveOrderResponse, eW as Asset, ay as AttributionSource, jx as AttributionSourceWithLiterals, g5 as AuthorizationActionFailureDetails, g4 as AuthorizationCapture, aW as AuthorizationCaptureStatus, jV as AuthorizationCaptureStatusWithLiterals, g3 as AuthorizationDetails, g6 as AuthorizationVoid, aX as AuthorizationVoidStatus, jW as AuthorizationVoidStatusWithLiterals, cB as AuthorizedPaymentCaptured, cA as AuthorizedPaymentCreated, cC as AuthorizedPaymentVoided, d6 as Balance, d5 as BalanceSummary, ja as BaseEventMetadata, iU as BigDecimalWrapper, bx as BillingAdjustment, by as BillingAdjustmentPriceSummary, fJ as BulkActionMetadata, h6 as BulkArchiveOrdersByFilterRequest, h7 as BulkArchiveOrdersByFilterResponse, h4 as BulkArchiveOrdersRequest, h5 as BulkArchiveOrdersResponse, dM as BulkDeleteImportedOrdersRequest, i2 as BulkMarkAsFulfilledByFilterRequest, i3 as BulkMarkAsFulfilledByFilterResponse, i0 as BulkMarkAsFulfilledRequest, i1 as BulkMarkAsFulfilledResponse, i8 as BulkMarkAsUnfulfilledByFilterRequest, i9 as BulkMarkAsUnfulfilledByFilterResponse, i6 as BulkMarkAsUnfulfilledRequest, i7 as BulkMarkAsUnfulfilledResponse, fF as BulkMarkOrdersAsPaidRequest, fG as BulkOrderResult, eh as BulkSendBuyerPickupConfirmationEmailsRequest, ei as BulkSendBuyerPickupConfirmationEmailsResponse, el as BulkSendBuyerShippingConfirmationEmailsRequest, em as BulkSendBuyerShippingConfirmationEmailsResponse, ia as BulkSetBusinessLocationRequest, ib as BulkSetBusinessLocationResponse, ic as BulkSetBusinessLocationResult, hc as BulkUnArchiveOrdersByFilterRequest, hd as BulkUnArchiveOrdersByFilterResponse, ha as BulkUnArchiveOrdersRequest, hb as BulkUnArchiveOrdersResponse, ir as BulkUpdateOrderTagsRequest, iu as BulkUpdateOrderTagsResult, gU as BulkUpdateOrdersRequest, bH as BuyerInfo, bI as BuyerInfoIdOneOf, hf as BuyerInfoUpdate, gm as CalculateRefundItemRequest, go as CalculateRefundItemResponse, gl as CalculateRefundRequest, gn as CalculateRefundResponse, j2 as CalculatedTax, j1 as CalculatedTaxes, iC as Cancel, hY as CancelOrderRequest, gq as CaptureAuthorizedPaymentsRequest, d7 as CashRounding, ge as CashRoundingDetails, bc as CatalogReference, d3 as ChannelInfo, az as ChannelType, jy as ChannelTypeWithLiterals, fP as ChargeMembershipsRequest, fT as ChargeMembershipsResponse, gr as ChargeSavedPaymentMethodRequest, gs as ChargeSavedPaymentMethodResponse, aD as ChargeType, jC as ChargeTypeWithLiterals, g8 as Chargeback, c$ as ChargebackCreated, d0 as ChargebackReversed, a_ as ChargebackStatus, jZ as ChargebackStatusWithLiterals, fO as ChargedBy, bi as Color, gV as CommitDeltasRequest, h1 as CommitDeltasResponse, dy as CommittedDiffs, dz as CommittedDiffsShippingUpdateInfoOneOf, iN as CommonAddress, iO as CommonAddressStreetOneOf, k9 as CommonSearchWithEntityContext, iM as Company, iB as Complete, c2 as Coupon, gN as CreateOrderRequest, gR as CreateOrderResponse, fN as CreatePaymentGatewayOrderRequest, d1 as CreatedBy, d2 as CreatedByStringOneOf, cQ as CreditCardDetails, g2 as CreditCardPaymentMethodDetails, bJ as CurrencyConversionDetails, gD as CursorPaging, gM as CursorPagingMetadata, gK as CursorSearch, gL as CursorSearchPagingMethodOneOf, gG as Cursors, cc as CustomActivity, dg as CustomAllowedActions, d4 as CustomField, b6 as CustomFieldGroup, k5 as CustomFieldGroupWithLiterals, j7 as CustomFieldValue, iH as Customer, ip as DecrementData, io as DecrementItemsQuantityRequest, iq as DecrementItemsQuantityResponse, fx as DelayedCaptureSettings, hS as DeleteActivityRequest, e1 as DeleteByFilterOperation, e0 as DeleteByIdsOperation, e_ as DeleteContext, aM as DeleteStatus, jL as DeleteStatusWithLiterals, bS as DeliveryLogistics, bT as DeliveryLogisticsAddressOneOf, bW as DeliveryTimeSlot, aE as DeltaPaymentOptionType, jD as DeltaPaymentOptionTypeWithLiterals, j9 as Deposit, b8 as DepositType, k7 as DepositTypeWithLiterals, bd as DescriptionLine, bf as DescriptionLineDescriptionLineValueOneOf, bg as DescriptionLineName, af as DescriptionLineType, jf as DescriptionLineTypeWithLiterals, be as DescriptionLineValueOneOf, gu as DiffmatokyPayload, br as DigitalFile, bl as Dimensions, ag as DimensionsUnit, jg as DimensionsUnitWithLiterals, i$ as Discount, j0 as DiscountOneDiscountTypeOneOf, au as DiscountReason, jt as DiscountReasonWithLiterals, c5 as DiscountRule, c6 as DiscountRuleName, at as DiscountType, js as DiscountTypeWithLiterals, dN as DomainEvent, dO as DomainEventBodyOneOf, hz as DownloadLinkSent, ci as DraftOrderChangesApplied, dI as DraftOrderCommitSettings, gW as DraftOrderDiffs, gZ as DraftOrderDiffsBillingUpdateInfoOneOf, gY as DraftOrderDiffsBuyerUpdateInfoOneOf, g_ as DraftOrderDiffsRecipientUpdateInfoOneOf, gX as DraftOrderDiffsShippingUpdateInfoOneOf, fy as Duration, aO as DurationUnit, jN as DurationUnitWithLiterals, fn as EditorlessAssigned, fo as EditorlessUnassigned, iI as Email, hI as EmailEdited, e9 as Empty, dP as EntityCreatedEvent, dS as EntityDeletedEvent, dR as EntityUpdatedEvent, gv as ErrorInformation, jb as EventMetadata, bD as ExtendedFields, cY as ExternalReceipt, gd as ExternalReceiptInfo, bj as FocalPoint, dj as FormIdentifier, di as FormInfo, bw as FreeTrialPeriod, hG as FulfillerEmailSent, ao as FulfillmentStatus, dv as FulfillmentStatusUpdated, jo as FulfillmentStatusWithLiterals, d9 as FulfillmentStatusesAggregate, bP as FullAddressContactDetails, gw as GetOrderRequest, gx as GetOrderResponse, fz as GetPaymentCollectabilityStatusRequest, fK as GetRefundabilityStatusRequest, ik as GetShipmentsRequest, il as GetShipmentsResponse, ga as GiftCardPaymentDetails, cH as GiftCardPaymentRefund, fp as HasCustomEmailConfigurationsRequest, fq as HasCustomEmailConfigurationsResponse, iF as IdAndVersion, dV as IdentificationData, dW as IdentificationDataIdOneOf, dK as ImportOrderRequest, dt as ImportedOrderDeleted, hs as InternalActivity, ht as InternalActivityContentOneOf, d_ as InternalDocument, e2 as InternalDocumentUpdateByFilterOperation, d$ as InternalDocumentUpdateOperation, gy as InternalQueryOrdersRequest, gE as InternalQueryOrdersResponse, e3 as InternalUpdateExistingOperation, aF as InventoryAction, jE as InventoryActionWithLiterals, dJ as InventoryUpdateDetails, hE as InvoiceAdded, iR as InvoiceDates, j6 as InvoiceDynamicPriceTotals, iG as InvoiceFields, hF as InvoiceSent, iE as InvoiceSentEvent, b9 as InvoiceStatus, k8 as InvoiceStatusWithLiterals, j4 as InvoicesPayment, ft as IsInAutomationMigrationPopulationRequest, fu as IsInAutomationMigrationPopulationResponse, dA as ItemChangedDetails, c8 as ItemCombination, c9 as ItemCombinationLineItem, fH as ItemMetadata, bG as ItemModifier, bo as ItemTaxFullDetails, bm as ItemType, bn as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, jh as ItemTypePresetWithLiterals, i_ as ItemizedFee, aj as JurisdictionType, jj as JurisdictionTypeWithLiterals, iT as LineItem, cu as LineItemAmount, cl as LineItemChanges, dC as LineItemDelta, dD as LineItemDeltaDeltaOneOf, cp as LineItemDescriptionLineChange, c7 as LineItemDiscount, ch as LineItemExchangeData, iX as LineItemMetaData, cq as LineItemModifiersChange, cn as LineItemPriceChange, co as LineItemProductNameChange, cm as LineItemQuantityChange, av as LineItemQuantityChangeType, ju as LineItemQuantityChangeTypeWithLiterals, eC as LineItemRefund, gk as LineItemRefundSummary, iV as LineItemTax, bq as LineItemTaxBreakdown, bp as LineItemTaxInfo, hU as LineItemUpdate, iS as LineItems, iY as Locale, dc as Location, bA as LocationAndQuantity, cv as ManagedAdditionalFee, cs as ManagedDiscount, cr as ManagedLineItem, aT as ManuallyRefundableReason, jS as ManuallyRefundableReasonWithLiterals, h_ as MarkAsFulfilledRequest, h$ as MarkAsFulfilledResponse, i4 as MarkAsUnfulfilledRequest, i5 as MarkAsUnfulfilledResponse, fE as MarkOrderAsPaidRequest, hW as MarkOrderAsSeenByHumanRequest, hX as MarkOrderAsSeenByHumanResponse, hp as MaskedOrderLineItem, fQ as MembershipChargeItem, fR as MembershipName, gb as MembershipPaymentDetails, cI as MembershipPaymentRefund, a$ as MembershipPaymentStatus, j_ as MembershipPaymentStatusWithLiterals, cd as MerchantComment, c3 as MerchantDiscount, c4 as MerchantDiscountMerchantDiscountReasonOneOf, dU as MessageEnvelope, j5 as MetaData, eU as MetaSiteSpecialEvent, eV as MetaSiteSpecialEventPayloadOneOf, bE as ModifierGroup, aL as Namespace, f8 as NamespaceChanged, jK as NamespaceWithLiterals, cg as NewExchangeOrderCreated, aS as NonRefundableReason, jR as NonRefundableReasonWithLiterals, fd as OdeditorAssigned, fe as OdeditorUnassigned, aB as OrderActionType, jA as OrderActionTypeWithLiterals, ax as OrderActivityTypeEnumActivityType, jw as OrderActivityTypeEnumActivityTypeWithLiterals, b2 as OrderApprovalStrategy, k1 as OrderApprovalStrategyWithLiterals, dm as OrderApproved, hy as OrderCanceled, dw as OrderCanceledEventOrderCanceled, cj as OrderChange, ck as OrderChangeValueOneOf, gQ as OrderCreateNotifications, cf as OrderCreatedFromExchange, gO as OrderCreationSettings, gP as OrderCreationSettingsEditableByOneOf, dx as OrderDeltasCommitted, hw as OrderFulfilled, ds as OrderImported, dq as OrderItemsRestocked, ba as OrderLineItem, dB as OrderLineItemChangedDetails, hx as OrderNotFulfilled, hv as OrderPaid, hK as OrderPartiallyPaid, hL as OrderPending, hu as OrderPlaced, ce as OrderRefunded, hM as OrderRejected, dp as OrderRejectedEventOrderRejected, jd as OrderSearchSpec, dd as OrderSettings, de as OrderSettingsAllowedActionsOneOf, df as OrderSettingsEditableByOneOf, as as OrderStatus, b$ as OrderTaxBreakdown, b_ as OrderTaxInfo, fY as OrderTransactions, dn as OrdersExperiments, dh as OwnerApps, fZ as Payment, cR as PaymentCanceled, cS as PaymentCanceledPaymentDetailsOneOf, aP as PaymentCollectabilityStatus, jO as PaymentCollectabilityStatusWithLiterals, cT as PaymentDeclined, cU as PaymentDeclinedPaymentDetailsOneOf, g9 as PaymentMethodName, ai as PaymentOptionType, ji as PaymentOptionTypeWithLiterals, f_ as PaymentPaymentDetailsOneOf, cM as PaymentPending, cN as PaymentPendingPaymentDetailsOneOf, f$ as PaymentReceiptInfoOneOf, cK as PaymentRefundFailed, cJ as PaymentRefunded, an as PaymentStatus, du as PaymentStatusUpdated, jn as PaymentStatusWithLiterals, j3 as Payments, iL as Phone, bk as PhysicalProperties, ff as PicassoAssigned, fg as PicassoUnassigned, bV as PickupAddress, bU as PickupDetails, ar as PickupMethod, jr as PickupMethodWithLiterals, hJ as PickupReadyEmailSent, b3 as Placement, k2 as PlacementWithLiterals, bh as PlainTextValue, dl as PlatformFee, dk as PlatformFeeSummary, gC as PlatformPaging, gF as PlatformPagingMetadata, gz as PlatformQuery, gA as PlatformQueryPagingMethodOneOf, aQ as PredefinedPaymentMethod, jP as PredefinedPaymentMethodWithLiterals, fv as PreparePaymentCollectionRequest, eM as PreviewBuyerConfirmationEmailRequest, eN as PreviewBuyerConfirmationEmailResponse, eK as PreviewBuyerPaymentsReceivedEmailRequest, eL as PreviewBuyerPaymentsReceivedEmailResponse, eO as PreviewBuyerPickupConfirmationEmailRequest, eP as PreviewBuyerPickupConfirmationEmailResponse, eG as PreviewCancelEmailRequest, eH as PreviewCancelEmailResponse, eI as PreviewCancelRefundEmailRequest, eJ as PreviewCancelRefundEmailResponse, ex as PreviewEmailByTypeRequest, ey as PreviewEmailByTypeResponse, aI as PreviewEmailType, jH as PreviewEmailTypeWithLiterals, ez as PreviewRefundEmailRequest, eF as PreviewRefundEmailResponse, eS as PreviewResendDownloadLinksEmailRequest, eT as PreviewResendDownloadLinksEmailResponse, eQ as PreviewShippingConfirmationEmailRequest, eR as PreviewShippingConfirmationEmailResponse, bz as PriceDescription, bK as PriceSummary, bb as ProductName, hP as PublicActivityContentOneOf, gH as QueryOrderRequest, gI as QueryOrderResponse, iJ as QuotesAddress, aY as Reason, jX as ReasonWithLiterals, cV as ReceiptCreated, cW as ReceiptCreatedReceiptInfoOneOf, cZ as ReceiptSent, c_ as ReceiptSentReceiptInfoOneOf, fA as RecordManuallyCollectedPaymentRequest, fD as RecordManuallyCollectedPaymentResponse, fw as RedirectUrls, gf as Refund, eA as RefundDetails, cD as RefundInitiated, eB as RefundItem, gj as RefundItemsBreakdown, fV as RefundSideEffects, b0 as RefundStatus, gh as RefundStatusInfo, j$ as RefundStatusWithLiterals, gg as RefundTransaction, fL as Refundability, fM as RefundabilityAdditionalRefundabilityInfoOneOf, aR as RefundableStatus, jQ as RefundableStatusWithLiterals, cL as RefundedAsStoreCredit, cE as RefundedPayment, cF as RefundedPaymentKindOneOf, cO as RegularPayment, g0 as RegularPaymentDetails, g1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, cP as RegularPaymentPaymentMethodDetailsOneOf, cG as RegularPaymentRefund, iD as Reschedule, fW as RestockInfo, fX as RestockItem, gt as RestockLocation, aU as RestockType, jT as RestockTypeWithLiterals, dQ as RestoreInfo, cz as SavedPaymentMethod, aN as ScheduledAction, jM as ScheduledActionWithLiterals, gJ as SearchOrdersRequest, eb as SendBuyerConfirmationEmailRequest, ec as SendBuyerConfirmationEmailResponse, ed as SendBuyerPaymentsReceivedEmailRequest, ee as SendBuyerPaymentsReceivedEmailResponse, ef as SendBuyerPickupConfirmationEmailRequest, eg as SendBuyerPickupConfirmationEmailResponse, ej as SendBuyerShippingConfirmationEmailRequest, ek as SendBuyerShippingConfirmationEmailResponse, ep as SendCancelRefundEmailRequest, eq as SendCancelRefundEmailResponse, et as SendFulfillmentEmailRequest, eu as SendFulfillmentEmailResponse, en as SendMerchantOrderReceivedNotificationRequest, eo as SendMerchantOrderReceivedNotificationResponse, ev as SendMerchantOrderReceivedPushRequest, ew as SendMerchantOrderReceivedPushResponse, iv as SendOrderUpdatedDomainEventRequest, iw as SendOrderUpdatedDomainEventResponse, er as SendRefundEmailRequest, es as SendRefundEmailResponse, fS as ServiceProperties, f4 as ServiceProvisioned, f5 as ServiceRemoved, dL as SetOrderNumberCounterRequest, hH as ShippingAddressEdited, hD as ShippingConfirmationEmailSent, cy as ShippingInformation, cx as ShippingInformationChange, bX as ShippingPrice, eE as ShippingRefund, bY as ShippingRegion, eX as SiteCreated, aK as SiteCreatedContext, jJ as SiteCreatedContextWithLiterals, eZ as SiteDeleted, f7 as SiteHardDeleted, f2 as SiteMarkedAsTemplate, f3 as SiteMarkedAsWixSite, f0 as SitePublished, fc as SitePurgedExternally, f6 as SiteRenamed, eY as SiteTransferred, e$ as SiteUndeleted, f1 as SiteUnpublished, fb as SiteUrlChanged, b1 as SortOrder, k0 as SortOrderWithLiterals, gB as Sorting, iW as Source, b5 as SourceType, k4 as SourceTypeWithLiterals, aC as SpecificItemsCouponBehavior, jB as SpecificItemsCouponBehaviorWithLiterals, iQ as StandardDetails, aJ as State, jI as StateWithLiterals, bN as StreetAddress, f9 as StudioAssigned, fj as StudioTwoAssigned, fk as StudioTwoUnassigned, fa as StudioUnassigned, iP as Subdivision, b4 as SubdivisionType, k3 as SubdivisionTypeWithLiterals, bu as SubscriptionDescription, ak as SubscriptionFrequency, jk as SubscriptionFrequencyWithLiterals, bs as SubscriptionInfo, bv as SubscriptionSettings, bt as SubscriptionTitle, db as TagList, da as Tags, it as TagsTagList, is as TagsTags, ix as Task, iz as TaskAction, iA as TaskActionActionOneOf, iy as TaskKey, bZ as TaxSummary, bB as TaxableAddress, bC as TaxableAddressTaxableAddressDataOneOf, am as TaxableAddressType, jm as TaxableAddressTypeWithLiterals, iZ as TotalPrice, cw as TotalPriceChange, hC as TrackingLinkAdded, hA as TrackingNumberAdded, hB as TrackingNumberEdited, aV as TransactionStatus, jU as TransactionStatusWithLiterals, bF as TranslatableString, ct as TranslatedValue, fU as TriggerRefundRequest, ea as TriggerReindexOrderRequest, e7 as TriggerReindexRequest, e8 as TriggerReindexResponse, h8 as UnArchiveOrderRequest, h9 as UnArchiveOrderResponse, hR as UpdateActivityRequest, hl as UpdateBillingContactDetailsRequest, hm as UpdateBillingContactDetailsResponse, hh as UpdateBuyerEmailRequest, hi as UpdateBuyerEmailResponse, he as UpdateBuyerInfoRequest, hg as UpdateBuyerInfoResponse, dY as UpdateInternalDocumentsEvent, dZ as UpdateInternalDocumentsEventOperationOneOf, hT as UpdateLineItemsDescriptionLinesRequest, hV as UpdateLineItemsDescriptionLinesResponse, hn as UpdateOrderLineItemRequest, ho as UpdateOrderLineItemsRequest, hq as UpdateOrderLineItemsResponse, gS as UpdateOrderRequest, gT as UpdateOrderResponse, hj as UpdateOrderShippingAddressRequest, hk as UpdateOrderShippingAddressResponse, hZ as UpdateOrderStatusRequest, fB as UserDefinedPaymentMethodName, fC as UserDefinedPaymentMethodNameKindOneOf, fm as UserDomainMediaDisabled, fl as UserDomainMediaEnabled, ig as V1BulkMarkOrdersAsPaidRequest, ih as V1BulkMarkOrdersAsPaidResponse, ii as V1CreatePaymentGatewayOrderRequest, ij as V1CreatePaymentGatewayOrderResponse, g$ as V1LineItemDelta, h0 as V1LineItemDeltaDeltaOneOf, id as V1MarkOrderAsPaidRequest, ie as V1MarkOrderAsPaidResponse, dr as V1RestockItem, g7 as V1ScheduledAction, bR as V1ShippingInformation, j8 as Value, b7 as ValueType, k6 as ValueTypeWithLiterals, bQ as VatId, aq as VatType, jq as VatTypeWithLiterals, e5 as VersionedDeleteByIdsOperation, e6 as VersionedDocumentId, e4 as VersionedDocumentUpdateOperation, aH as VersioningMode, jG as VersioningModeWithLiterals, gp as VoidAuthorizedPaymentsRequest, aG as WebhookIdentityType, jF as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jp as WeightUnitWithLiterals, cX as WixReceipt, gc as WixReceiptInfo, fh as WixelAssigned, fi as WixelUnassigned, je as utils } from './ecom-v1-order-orders.universal-B_SIJVco.mjs';
|
|
2
|
+
import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, b as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentOptions, f as RecordManuallyCollectedPaymentApplicationErrors, g as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, h as PaymentCollectionMarkOrderAsPaidApplicationErrors, i as BulkMarkOrdersAsPaidResponse, j as GetRefundabilityStatusResponse, k as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, l as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, m as ChargeMembershipsOptions, n as PaymentRefund, T as TriggerRefundOptions, o as TriggerRefundResponse, p as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, q as VoidAuthorizedPaymentsApplicationErrors, r as PaymentCapture, s as CaptureAuthorizedPaymentsResponse, t as CaptureAuthorizedPaymentsApplicationErrors, u as GetOrderApplicationErrors, v as OrderSearch, w as SearchOrdersResponse, x as CreateOrderOptions, y as CreateOrderApplicationErrors, U as UpdateOrder, z as UpdateOrderApplicationErrors, A as MaskedOrder, D as BulkUpdateOrdersOptions, E as BulkUpdateOrdersResponse, F as UpdateOrderLineItemIdentifiers, H as UpdateOrderLineItem, J as UpdateOrderLineItemResponse, K as PublicActivity, L as AddActivityResponse, N as AddActivitiesOptions, Q as AddActivitiesResponse, W as UpdateActivityIdentifiers, X as UpdateActivityResponse, Y as DeleteActivityIdentifiers, Z as DeleteActivityResponse, _ as CancelOrderOptions, $ as CancelOrderResponse, a0 as CancelOrderApplicationErrors, a1 as OrderStatusWithLiterals, a2 as UpdateOrderStatusResponse, a3 as UpdateOrderStatusApplicationErrors, a4 as AggregateOrdersOptions, a5 as AggregateOrdersResponse, a6 as BulkUpdateOrderTagsOptions, a7 as BulkUpdateOrderTagsResponse, a8 as OrderApprovedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCommittedEnvelope, ab as OrderCreatedEnvelope, ac as OrderFulfilledEnvelope, ad as OrderPaymentStatusUpdatedEnvelope, ae as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-lXc4bLyX.mjs';
|
|
3
|
+
export { dZ as AccountInfo, jd as AccountInfoMetadata, dV as ActionEvent, aZ as ActionType, jZ as ActionTypeWithLiterals, cc as Activity, cd as ActivityContentOneOf, aw as ActivityType, jw as ActivityTypeWithLiterals, hR as AddActivitiesRequest, hP as AddActivityRequest, hs as AddInternalActivityRequest, hO as AddInternalActivityResponse, ff as AddToAutomationMigrationPopulationRequest, fg as AddToAutomationMigrationPopulationResponse, da as AdditionalFee, dI as AdditionalFeeDelta, dJ as AdditionalFeeDeltaDeltaOneOf, eq as AdditionalFeeRefund, aA as AdditionalFeeSource, jA as AdditionalFeeSourceWithLiterals, bO as Address, iL as AddressDescription, bQ as AddressLocation, bN as AddressWithContact, al as AdjustmentType, jm as AdjustmentTypeWithLiterals, io as AggregateOrdersRequest, g6 as AggregatedRefundSummary, fw as ApplicationError, c2 as AppliedDiscount, dG as AppliedDiscountDelta, dH as AppliedDiscountDeltaDeltaOneOf, c3 as AppliedDiscountDiscountSourceOneOf, h3 as ArchiveOrderRequest, h4 as ArchiveOrderResponse, eK as Asset, ay as AttributionSource, jy as AttributionSourceWithLiterals, fV as AuthorizationActionFailureDetails, fU as AuthorizationCapture, aW as AuthorizationCaptureStatus, jW as AuthorizationCaptureStatusWithLiterals, fT as AuthorizationDetails, fW as AuthorizationVoid, aX as AuthorizationVoidStatus, jX as AuthorizationVoidStatusWithLiterals, cD as AuthorizedPaymentCaptured, cC as AuthorizedPaymentCreated, cE as AuthorizedPaymentVoided, d8 as Balance, d7 as BalanceSummary, jb as BaseEventMetadata, iV as BigDecimalWrapper, bz as BillingAdjustment, bA as BillingAdjustmentPriceSummary, fx as BulkActionMetadata, h7 as BulkArchiveOrdersByFilterRequest, h8 as BulkArchiveOrdersByFilterResponse, h5 as BulkArchiveOrdersRequest, h6 as BulkArchiveOrdersResponse, dO as BulkDeleteImportedOrdersRequest, i3 as BulkMarkAsFulfilledByFilterRequest, i4 as BulkMarkAsFulfilledByFilterResponse, i1 as BulkMarkAsFulfilledRequest, i2 as BulkMarkAsFulfilledResponse, i9 as BulkMarkAsUnfulfilledByFilterRequest, ia as BulkMarkAsUnfulfilledByFilterResponse, i7 as BulkMarkAsUnfulfilledRequest, i8 as BulkMarkAsUnfulfilledResponse, ft as BulkMarkOrdersAsPaidRequest, fu as BulkOrderResult, e4 as BulkSendBuyerPickupConfirmationEmailsRequest, e5 as BulkSendBuyerPickupConfirmationEmailsResponse, e8 as BulkSendBuyerShippingConfirmationEmailsRequest, e9 as BulkSendBuyerShippingConfirmationEmailsResponse, ib as BulkSetBusinessLocationRequest, ic as BulkSetBusinessLocationResponse, id as BulkSetBusinessLocationResult, hd as BulkUnArchiveOrdersByFilterRequest, he as BulkUnArchiveOrdersByFilterResponse, hb as BulkUnArchiveOrdersRequest, hc as BulkUnArchiveOrdersResponse, is as BulkUpdateOrderTagsRequest, iv as BulkUpdateOrderTagsResult, gV as BulkUpdateOrdersRequest, bJ as BuyerInfo, bK as BuyerInfoIdOneOf, hg as BuyerInfoUpdate, ga as CalculateRefundItemRequest, gc as CalculateRefundItemResponse, g9 as CalculateRefundRequest, gb as CalculateRefundResponse, j3 as CalculatedTax, j2 as CalculatedTaxes, iD as Cancel, hZ as CancelOrderRequest, ge as CaptureAuthorizedPaymentsRequest, d9 as CashRounding, g2 as CashRoundingDetails, bd as CatalogReference, d5 as ChannelInfo, az as ChannelType, jz as ChannelTypeWithLiterals, fD as ChargeMembershipsRequest, fH as ChargeMembershipsResponse, gf as ChargeSavedPaymentMethodRequest, gg as ChargeSavedPaymentMethodResponse, aD as ChargeType, jD as ChargeTypeWithLiterals, fY as Chargeback, d1 as ChargebackCreated, d2 as ChargebackReversed, a_ as ChargebackStatus, j_ as ChargebackStatusWithLiterals, fC as ChargedBy, bj as Color, gW as CommitDeltasRequest, h2 as CommitDeltasResponse, dA as CommittedDiffs, dB as CommittedDiffsShippingUpdateInfoOneOf, iO as CommonAddress, iP as CommonAddressStreetOneOf, kb as CommonSearchWithEntityContext, iN as Company, iC as Complete, c4 as Coupon, gO as CreateOrderRequest, gS as CreateOrderResponse, fB as CreatePaymentGatewayOrderRequest, d3 as CreatedBy, d4 as CreatedByStringOneOf, cS as CreditCardDetails, fS as CreditCardPaymentMethodDetails, bL as CurrencyConversionDetails, gE as CursorPaging, gN as CursorPagingMetadata, gL as CursorSearch, gM as CursorSearchPagingMethodOneOf, gH as Cursors, ce as CustomActivity, di as CustomAllowedActions, d6 as CustomField, b7 as CustomFieldGroup, k7 as CustomFieldGroupWithLiterals, j8 as CustomFieldValue, iI as Customer, iq as DecrementData, ip as DecrementItemsQuantityRequest, ir as DecrementItemsQuantityResponse, fl as DelayedCaptureSettings, hT as DeleteActivityRequest, gm as DeleteByFilterOperation, gl as DeleteByIdsOperation, eO as DeleteContext, aL as DeleteStatus, jL as DeleteStatusWithLiterals, bU as DeliveryLogistics, bV as DeliveryLogisticsAddressOneOf, bY as DeliveryTimeSlot, aE as DeltaPaymentOptionType, jE as DeltaPaymentOptionTypeWithLiterals, ja as Deposit, b9 as DepositType, k9 as DepositTypeWithLiterals, be as DescriptionLine, bg as DescriptionLineDescriptionLineValueOneOf, bh as DescriptionLineName, af as DescriptionLineType, jg as DescriptionLineTypeWithLiterals, bf as DescriptionLineValueOneOf, gv as DiffmatokyPayload, bt as DigitalFile, bm as Dimensions, ag as DimensionsUnit, jh as DimensionsUnitWithLiterals, j0 as Discount, j1 as DiscountOneDiscountTypeOneOf, au as DiscountReason, ju as DiscountReasonWithLiterals, c7 as DiscountRule, c8 as DiscountRuleName, at as DiscountType, jt as DiscountTypeWithLiterals, dP as DomainEvent, dQ as DomainEventBodyOneOf, hA as DownloadLinkSent, ck as DraftOrderChangesApplied, dK as DraftOrderCommitSettings, gX as DraftOrderDiffs, g_ as DraftOrderDiffsBillingUpdateInfoOneOf, gZ as DraftOrderDiffsBuyerUpdateInfoOneOf, g$ as DraftOrderDiffsRecipientUpdateInfoOneOf, gY as DraftOrderDiffsShippingUpdateInfoOneOf, fm as Duration, aO as DurationUnit, jO as DurationUnitWithLiterals, fb as EditorlessAssigned, fc as EditorlessUnassigned, iJ as Email, hJ as EmailEdited, eH as Empty, dR as EntityCreatedEvent, dU as EntityDeletedEvent, dT as EntityUpdatedEvent, gw as ErrorInformation, jc as EventMetadata, bF as ExtendedFields, c_ as ExternalReceipt, g1 as ExternalReceiptInfo, bk as FocalPoint, dl as FormIdentifier, dk as FormInfo, by as FreeTrialPeriod, hH as FulfillerEmailSent, ao as FulfillmentStatus, dx as FulfillmentStatusUpdated, jp as FulfillmentStatusWithLiterals, db as FulfillmentStatusesAggregate, bR as FullAddressContactDetails, gx as GetOrderRequest, gy as GetOrderResponse, fn as GetPaymentCollectabilityStatusRequest, fy as GetRefundabilityStatusRequest, il as GetShipmentsRequest, im as GetShipmentsResponse, f_ as GiftCardPaymentDetails, cJ as GiftCardPaymentRefund, fd as HasCustomEmailConfigurationsRequest, fe as HasCustomEmailConfigurationsResponse, iG as IdAndVersion, dX as IdentificationData, dY as IdentificationDataIdOneOf, dM as ImportOrderRequest, dv as ImportedOrderDeleted, ht as InternalActivity, hu as InternalActivityContentOneOf, gj as InternalDocument, gn as InternalDocumentUpdateByFilterOperation, gk as InternalDocumentUpdateOperation, gz as InternalQueryOrdersRequest, gF as InternalQueryOrdersResponse, go as InternalUpdateExistingOperation, aF as InventoryAction, jF as InventoryActionWithLiterals, dL as InventoryUpdateDetails, hF as InvoiceAdded, iS as InvoiceDates, j7 as InvoiceDynamicPriceTotals, iH as InvoiceFields, hG as InvoiceSent, iF as InvoiceSentEvent, ba as InvoiceStatus, ka as InvoiceStatusWithLiterals, j5 as InvoicesPayment, fh as IsInAutomationMigrationPopulationRequest, fi as IsInAutomationMigrationPopulationResponse, dC as ItemChangedDetails, ca as ItemCombination, cb as ItemCombinationLineItem, fv as ItemMetadata, bI as ItemModifier, bq as ItemTaxFullDetails, bn as ItemType, bo as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, ji as ItemTypePresetWithLiterals, i$ as ItemizedFee, aj as JurisdictionType, jk as JurisdictionTypeWithLiterals, iU as LineItem, cw as LineItemAmount, cn as LineItemChanges, dE as LineItemDelta, dF as LineItemDeltaDeltaOneOf, cr as LineItemDescriptionLineChange, c9 as LineItemDiscount, cj as LineItemExchangeData, iY as LineItemMetaData, cs as LineItemModifiersChange, cp as LineItemPriceChange, cq as LineItemProductNameChange, co as LineItemQuantityChange, av as LineItemQuantityChangeType, jv as LineItemQuantityChangeTypeWithLiterals, ep as LineItemRefund, g8 as LineItemRefundSummary, iW as LineItemTax, bs as LineItemTaxBreakdown, br as LineItemTaxInfo, hV as LineItemUpdate, iT as LineItems, iZ as Locale, de as Location, bC as LocationAndQuantity, cx as ManagedAdditionalFee, cu as ManagedDiscount, ct as ManagedLineItem, aT as ManuallyRefundableReason, jT as ManuallyRefundableReasonWithLiterals, h$ as MarkAsFulfilledRequest, i0 as MarkAsFulfilledResponse, i5 as MarkAsUnfulfilledRequest, i6 as MarkAsUnfulfilledResponse, fs as MarkOrderAsPaidRequest, hX as MarkOrderAsSeenByHumanRequest, hY as MarkOrderAsSeenByHumanResponse, hq as MaskedOrderLineItem, fE as MembershipChargeItem, fF as MembershipName, f$ as MembershipPaymentDetails, cK as MembershipPaymentRefund, a$ as MembershipPaymentStatus, j$ as MembershipPaymentStatusWithLiterals, cf as MerchantComment, c5 as MerchantDiscount, c6 as MerchantDiscountMerchantDiscountReasonOneOf, dW as MessageEnvelope, j6 as MetaData, eI as MetaSiteSpecialEvent, eJ as MetaSiteSpecialEventPayloadOneOf, bG as ModifierGroup, aK as Namespace, eY as NamespaceChanged, jK as NamespaceWithLiterals, ci as NewExchangeOrderCreated, aS as NonRefundableReason, jS as NonRefundableReasonWithLiterals, f1 as OdeditorAssigned, f2 as OdeditorUnassigned, aB as OrderActionType, jB as OrderActionTypeWithLiterals, ax as OrderActivityTypeEnumActivityType, jx as OrderActivityTypeEnumActivityTypeWithLiterals, b3 as OrderApprovalStrategy, k3 as OrderApprovalStrategyWithLiterals, dp as OrderApproved, hz as OrderCanceled, dy as OrderCanceledEventOrderCanceled, cl as OrderChange, cm as OrderChangeValueOneOf, gR as OrderCreateNotifications, ch as OrderCreatedFromExchange, gP as OrderCreationSettings, gQ as OrderCreationSettingsEditableByOneOf, dz as OrderDeltasCommitted, hx as OrderFulfilled, du as OrderImported, ds as OrderItemsRestocked, bb as OrderLineItem, dD as OrderLineItemChangedDetails, hy as OrderNotFulfilled, hw as OrderPaid, hL as OrderPartiallyPaid, hM as OrderPending, hv as OrderPlaced, cg as OrderRefunded, hN as OrderRejected, dr as OrderRejectedEventOrderRejected, je as OrderSearchSpec, df as OrderSettings, dg as OrderSettingsAllowedActionsOneOf, dh as OrderSettingsEditableByOneOf, as as OrderStatus, c1 as OrderTaxBreakdown, c0 as OrderTaxInfo, fM as OrderTransactions, dq as OrdersExperiments, aM as Origin, jM as OriginWithLiterals, dj as OwnerApps, fN as Payment, cT as PaymentCanceled, cU as PaymentCanceledPaymentDetailsOneOf, aP as PaymentCollectabilityStatus, jP as PaymentCollectabilityStatusWithLiterals, cV as PaymentDeclined, cW as PaymentDeclinedPaymentDetailsOneOf, fZ as PaymentMethodName, ai as PaymentOptionType, jj as PaymentOptionTypeWithLiterals, fO as PaymentPaymentDetailsOneOf, cO as PaymentPending, cP as PaymentPendingPaymentDetailsOneOf, fP as PaymentReceiptInfoOneOf, cM as PaymentRefundFailed, cL as PaymentRefunded, an as PaymentStatus, dw as PaymentStatusUpdated, jo as PaymentStatusWithLiterals, j4 as Payments, iM as Phone, bl as PhysicalProperties, f3 as PicassoAssigned, f4 as PicassoUnassigned, bX as PickupAddress, bW as PickupDetails, ar as PickupMethod, js as PickupMethodWithLiterals, hK as PickupReadyEmailSent, b4 as Placement, k4 as PlacementWithLiterals, bi as PlainTextValue, dn as PlatformFee, dm as PlatformFeeSummary, gD as PlatformPaging, gG as PlatformPagingMetadata, gA as PlatformQuery, gB as PlatformQueryPagingMethodOneOf, aQ as PredefinedPaymentMethod, jQ as PredefinedPaymentMethodWithLiterals, fj as PreparePaymentCollectionRequest, ez as PreviewBuyerConfirmationEmailRequest, eA as PreviewBuyerConfirmationEmailResponse, ex as PreviewBuyerPaymentsReceivedEmailRequest, ey as PreviewBuyerPaymentsReceivedEmailResponse, eB as PreviewBuyerPickupConfirmationEmailRequest, eC as PreviewBuyerPickupConfirmationEmailResponse, et as PreviewCancelEmailRequest, eu as PreviewCancelEmailResponse, ev as PreviewCancelRefundEmailRequest, ew as PreviewCancelRefundEmailResponse, ek as PreviewEmailByTypeRequest, el as PreviewEmailByTypeResponse, aH as PreviewEmailType, jH as PreviewEmailTypeWithLiterals, em as PreviewRefundEmailRequest, es as PreviewRefundEmailResponse, eF as PreviewResendDownloadLinksEmailRequest, eG as PreviewResendDownloadLinksEmailResponse, eD as PreviewShippingConfirmationEmailRequest, eE as PreviewShippingConfirmationEmailResponse, bB as PriceDescription, bM as PriceSummary, bc as ProductName, hQ as PublicActivityContentOneOf, gI as QueryOrderRequest, gJ as QueryOrderResponse, iK as QuotesAddress, aY as Reason, jY as ReasonWithLiterals, cX as ReceiptCreated, cY as ReceiptCreatedReceiptInfoOneOf, c$ as ReceiptSent, d0 as ReceiptSentReceiptInfoOneOf, fo as RecordManuallyCollectedPaymentRequest, fr as RecordManuallyCollectedPaymentResponse, fk as RedirectUrls, g3 as Refund, en as RefundDetails, cF as RefundInitiated, eo as RefundItem, g7 as RefundItemsBreakdown, fJ as RefundSideEffects, b0 as RefundStatus, g5 as RefundStatusInfo, k0 as RefundStatusWithLiterals, g4 as RefundTransaction, fz as Refundability, fA as RefundabilityAdditionalRefundabilityInfoOneOf, aR as RefundableStatus, jR as RefundableStatusWithLiterals, cN as RefundedAsStoreCredit, cG as RefundedPayment, cH as RefundedPaymentKindOneOf, cQ as RegularPayment, fQ as RegularPaymentDetails, fR as RegularPaymentDetailsPaymentMethodDetailsOneOf, cR as RegularPaymentPaymentMethodDetailsOneOf, cI as RegularPaymentRefund, iE as Reschedule, fK as RestockInfo, fL as RestockItem, bp as RestockLocation, aU as RestockType, jU as RestockTypeWithLiterals, dS as RestoreInfo, cB as SavedPaymentMethod, aN as ScheduledAction, jN as ScheduledActionWithLiterals, gK as SearchOrdersRequest, d_ as SendBuyerConfirmationEmailRequest, d$ as SendBuyerConfirmationEmailResponse, e0 as SendBuyerPaymentsReceivedEmailRequest, e1 as SendBuyerPaymentsReceivedEmailResponse, e2 as SendBuyerPickupConfirmationEmailRequest, e3 as SendBuyerPickupConfirmationEmailResponse, e6 as SendBuyerShippingConfirmationEmailRequest, e7 as SendBuyerShippingConfirmationEmailResponse, ec as SendCancelRefundEmailRequest, ed as SendCancelRefundEmailResponse, eg as SendFulfillmentEmailRequest, eh as SendFulfillmentEmailResponse, ea as SendMerchantOrderReceivedNotificationRequest, eb as SendMerchantOrderReceivedNotificationResponse, ei as SendMerchantOrderReceivedPushRequest, ej as SendMerchantOrderReceivedPushResponse, iw as SendOrderUpdatedDomainEventRequest, ix as SendOrderUpdatedDomainEventResponse, ee as SendRefundEmailRequest, ef as SendRefundEmailResponse, fG as ServiceProperties, eU as ServiceProvisioned, eV as ServiceRemoved, dN as SetOrderNumberCounterRequest, hI as ShippingAddressEdited, hE as ShippingConfirmationEmailSent, cA as ShippingInformation, cz as ShippingInformationChange, bZ as ShippingPrice, er as ShippingRefund, b_ as ShippingRegion, eL as SiteCreated, aJ as SiteCreatedContext, jJ as SiteCreatedContextWithLiterals, eN as SiteDeleted, eX as SiteHardDeleted, eS as SiteMarkedAsTemplate, eT as SiteMarkedAsWixSite, eQ as SitePublished, f0 as SitePurgedExternally, eW as SiteRenamed, eM as SiteTransferred, eP as SiteUndeleted, eR as SiteUnpublished, e$ as SiteUrlChanged, b2 as SortOrder, k2 as SortOrderWithLiterals, gC as Sorting, iX as Source, b6 as SourceType, k6 as SourceTypeWithLiterals, aC as SpecificItemsCouponBehavior, jC as SpecificItemsCouponBehaviorWithLiterals, iR as StandardDetails, aI as State, jI as StateWithLiterals, bP as StreetAddress, eZ as StudioAssigned, f7 as StudioTwoAssigned, f8 as StudioTwoUnassigned, e_ as StudioUnassigned, iQ as Subdivision, b5 as SubdivisionType, k5 as SubdivisionTypeWithLiterals, bw as SubscriptionDescription, ak as SubscriptionFrequency, jl as SubscriptionFrequencyWithLiterals, bu as SubscriptionInfo, bx as SubscriptionSettings, bv as SubscriptionTitle, dd as TagList, dc as Tags, iu as TagsTagList, it as TagsTags, iy as Task, iA as TaskAction, iB as TaskActionActionOneOf, iz as TaskKey, b$ as TaxSummary, bD as TaxableAddress, bE as TaxableAddressTaxableAddressDataOneOf, am as TaxableAddressType, jn as TaxableAddressTypeWithLiterals, i_ as TotalPrice, cy as TotalPriceChange, hD as TrackingLinkAdded, hB as TrackingNumberAdded, hC as TrackingNumberEdited, aV as TransactionStatus, jV as TransactionStatusWithLiterals, bH as TranslatableString, cv as TranslatedValue, fI as TriggerRefundRequest, gu as TriggerReindexOrderRequest, gs as TriggerReindexRequest, gt as TriggerReindexResponse, h9 as UnArchiveOrderRequest, ha as UnArchiveOrderResponse, hS as UpdateActivityRequest, hm as UpdateBillingContactDetailsRequest, hn as UpdateBillingContactDetailsResponse, hi as UpdateBuyerEmailRequest, hj as UpdateBuyerEmailResponse, hf as UpdateBuyerInfoRequest, hh as UpdateBuyerInfoResponse, gh as UpdateInternalDocumentsEvent, gi as UpdateInternalDocumentsEventOperationOneOf, hU as UpdateLineItemsDescriptionLinesRequest, hW as UpdateLineItemsDescriptionLinesResponse, ho as UpdateOrderLineItemRequest, hp as UpdateOrderLineItemsRequest, hr as UpdateOrderLineItemsResponse, gT as UpdateOrderRequest, gU as UpdateOrderResponse, hk as UpdateOrderShippingAddressRequest, hl as UpdateOrderShippingAddressResponse, h_ as UpdateOrderStatusRequest, fp as UserDefinedPaymentMethodName, fq as UserDefinedPaymentMethodNameKindOneOf, fa as UserDomainMediaDisabled, f9 as UserDomainMediaEnabled, ih as V1BulkMarkOrdersAsPaidRequest, ii as V1BulkMarkOrdersAsPaidResponse, ij as V1CreatePaymentGatewayOrderRequest, ik as V1CreatePaymentGatewayOrderResponse, h0 as V1LineItemDelta, h1 as V1LineItemDeltaDeltaOneOf, ie as V1MarkOrderAsPaidRequest, ig as V1MarkOrderAsPaidResponse, dt as V1RestockItem, fX as V1ScheduledAction, bT as V1ShippingInformation, j9 as Value, b8 as ValueType, k8 as ValueTypeWithLiterals, bS as VatId, aq as VatType, jr as VatTypeWithLiterals, gq as VersionedDeleteByIdsOperation, gr as VersionedDocumentId, gp as VersionedDocumentUpdateOperation, b1 as VersioningMode, k1 as VersioningModeWithLiterals, gd as VoidAuthorizedPaymentsRequest, aG as WebhookIdentityType, jG as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jq as WeightUnitWithLiterals, cZ as WixReceipt, g0 as WixReceiptInfo, f5 as WixelAssigned, f6 as WixelUnassigned, jf as utils } from './ecom-v1-order-orders.universal-lXc4bLyX.mjs';
|
|
4
4
|
|
|
5
5
|
/** @internal */
|
|
6
6
|
declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
|
|
@@ -1972,12 +1972,6 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
|
1972
1972
|
WebhookIdentityType2["APP"] = "APP";
|
|
1973
1973
|
return WebhookIdentityType2;
|
|
1974
1974
|
})(WebhookIdentityType || {});
|
|
1975
|
-
var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
|
|
1976
|
-
VersioningMode2["DEFAULT"] = "DEFAULT";
|
|
1977
|
-
VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
|
|
1978
|
-
VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
|
|
1979
|
-
return VersioningMode2;
|
|
1980
|
-
})(VersioningMode || {});
|
|
1981
1975
|
var PreviewEmailType = /* @__PURE__ */ ((PreviewEmailType2) => {
|
|
1982
1976
|
PreviewEmailType2["ORDER_PLACED"] = "ORDER_PLACED";
|
|
1983
1977
|
PreviewEmailType2["DOWNLOAD_LINKS"] = "DOWNLOAD_LINKS";
|
|
@@ -2047,6 +2041,12 @@ var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
|
|
|
2047
2041
|
DeleteStatus2["PURGED_EXTERNALLY"] = "PURGED_EXTERNALLY";
|
|
2048
2042
|
return DeleteStatus2;
|
|
2049
2043
|
})(DeleteStatus || {});
|
|
2044
|
+
var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
2045
|
+
Origin2["UNKNOWN_ORIGIN"] = "UNKNOWN_ORIGIN";
|
|
2046
|
+
Origin2["OPT_IN"] = "OPT_IN";
|
|
2047
|
+
Origin2["MIGRATION"] = "MIGRATION";
|
|
2048
|
+
return Origin2;
|
|
2049
|
+
})(Origin || {});
|
|
2050
2050
|
var ScheduledAction = /* @__PURE__ */ ((ScheduledAction2) => {
|
|
2051
2051
|
ScheduledAction2["UNSPECIFIED"] = "UNSPECIFIED";
|
|
2052
2052
|
ScheduledAction2["VOID"] = "VOID";
|
|
@@ -2174,6 +2174,12 @@ var RefundStatus = /* @__PURE__ */ ((RefundStatus2) => {
|
|
|
2174
2174
|
RefundStatus2["STARTED"] = "STARTED";
|
|
2175
2175
|
return RefundStatus2;
|
|
2176
2176
|
})(RefundStatus || {});
|
|
2177
|
+
var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
|
|
2178
|
+
VersioningMode2["DEFAULT"] = "DEFAULT";
|
|
2179
|
+
VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
|
|
2180
|
+
VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
|
|
2181
|
+
return VersioningMode2;
|
|
2182
|
+
})(VersioningMode || {});
|
|
2177
2183
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
2178
2184
|
SortOrder2["ASC"] = "ASC";
|
|
2179
2185
|
SortOrder2["DESC"] = "DESC";
|
|
@@ -4053,6 +4059,7 @@ export {
|
|
|
4053
4059
|
OrderActivityTypeEnumActivityType,
|
|
4054
4060
|
OrderApprovalStrategy,
|
|
4055
4061
|
OrderStatus,
|
|
4062
|
+
Origin,
|
|
4056
4063
|
PaymentCollectabilityStatus,
|
|
4057
4064
|
PaymentOptionType,
|
|
4058
4065
|
PaymentStatus,
|