@wix/auto_sdk_ecom_orders 1.0.169 → 1.0.171
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-C4PB-9NO.d.ts → ecom-v1-order-orders.universal-BiSsdnAT.d.ts} +163 -163
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +6 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +6 -6
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +163 -163
- package/build/cjs/meta.js +6 -6
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-C4PB-9NO.d.mts → ecom-v1-order-orders.universal-BiSsdnAT.d.mts} +163 -163
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +6 -6
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +6 -6
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +163 -163
- package/build/es/meta.mjs +6 -6
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-ClLqcVyj.d.ts → ecom-v1-order-orders.universal-BoI3BNkc.d.ts} +163 -163
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +6 -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 +6 -6
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +163 -163
- package/build/internal/cjs/meta.js +6 -6
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-ClLqcVyj.d.mts → ecom-v1-order-orders.universal-BoI3BNkc.d.mts} +163 -163
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +6 -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 +6 -6
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +163 -163
- package/build/internal/es/meta.mjs +6 -6
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3410,168 +3410,6 @@ interface AccountInfo {
|
|
|
3410
3410
|
*/
|
|
3411
3411
|
siteId?: string | null;
|
|
3412
3412
|
}
|
|
3413
|
-
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
3414
|
-
/** insert/update documents */
|
|
3415
|
-
update?: InternalDocumentUpdateOperation;
|
|
3416
|
-
/** delete by document ids */
|
|
3417
|
-
deleteByIds?: DeleteByIdsOperation;
|
|
3418
|
-
/** delete documents matching filter */
|
|
3419
|
-
deleteByFilter?: DeleteByFilterOperation;
|
|
3420
|
-
/** update internal documents matching filter */
|
|
3421
|
-
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
3422
|
-
/** update only existing documents */
|
|
3423
|
-
updateExisting?: InternalUpdateExistingOperation;
|
|
3424
|
-
/** insert/update documents with versioning */
|
|
3425
|
-
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
3426
|
-
/** delete by document ids with versioning */
|
|
3427
|
-
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
3428
|
-
/**
|
|
3429
|
-
* type of the documents
|
|
3430
|
-
* @minLength 2
|
|
3431
|
-
*/
|
|
3432
|
-
documentType?: string;
|
|
3433
|
-
/**
|
|
3434
|
-
* language of the documents (mandatory)
|
|
3435
|
-
* @minLength 2
|
|
3436
|
-
*/
|
|
3437
|
-
language?: string | null;
|
|
3438
|
-
/**
|
|
3439
|
-
* one or more search documents
|
|
3440
|
-
* @deprecated
|
|
3441
|
-
*/
|
|
3442
|
-
addDocuments?: InternalDocument[];
|
|
3443
|
-
/**
|
|
3444
|
-
* one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
|
|
3445
|
-
* @deprecated
|
|
3446
|
-
*/
|
|
3447
|
-
removeDocumentIds?: string[];
|
|
3448
|
-
/** id to pass to processing notification */
|
|
3449
|
-
correlationId?: string | null;
|
|
3450
|
-
/** when event was created / issued */
|
|
3451
|
-
issuedAt?: Date | null;
|
|
3452
|
-
}
|
|
3453
|
-
/** @oneof */
|
|
3454
|
-
interface UpdateInternalDocumentsEventOperationOneOf {
|
|
3455
|
-
/** insert/update documents */
|
|
3456
|
-
update?: InternalDocumentUpdateOperation;
|
|
3457
|
-
/** delete by document ids */
|
|
3458
|
-
deleteByIds?: DeleteByIdsOperation;
|
|
3459
|
-
/** delete documents matching filter */
|
|
3460
|
-
deleteByFilter?: DeleteByFilterOperation;
|
|
3461
|
-
/** update internal documents matching filter */
|
|
3462
|
-
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
3463
|
-
/** update only existing documents */
|
|
3464
|
-
updateExisting?: InternalUpdateExistingOperation;
|
|
3465
|
-
/** insert/update documents with versioning */
|
|
3466
|
-
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
3467
|
-
/** delete by document ids with versioning */
|
|
3468
|
-
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
3469
|
-
}
|
|
3470
|
-
interface InternalDocument {
|
|
3471
|
-
/** document with mandatory fields (id) and with fields specific to the type of the document */
|
|
3472
|
-
document?: Record<string, any> | null;
|
|
3473
|
-
}
|
|
3474
|
-
interface InternalDocumentUpdateOperation {
|
|
3475
|
-
/** documents to index or update */
|
|
3476
|
-
documents?: InternalDocument[];
|
|
3477
|
-
}
|
|
3478
|
-
interface DeleteByIdsOperation {
|
|
3479
|
-
/** ids of the documents to delete */
|
|
3480
|
-
documentIds?: string[];
|
|
3481
|
-
/**
|
|
3482
|
-
* tenant id for custom tenancy strategy
|
|
3483
|
-
* @minLength 2
|
|
3484
|
-
* @maxLength 300
|
|
3485
|
-
*/
|
|
3486
|
-
tenantId?: string | null;
|
|
3487
|
-
}
|
|
3488
|
-
interface DeleteByFilterOperation {
|
|
3489
|
-
/** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
|
|
3490
|
-
filter?: Record<string, any> | null;
|
|
3491
|
-
/**
|
|
3492
|
-
* tenant id for custom tenancy strategy
|
|
3493
|
-
* @minLength 2
|
|
3494
|
-
* @maxLength 300
|
|
3495
|
-
*/
|
|
3496
|
-
tenantId?: string | null;
|
|
3497
|
-
}
|
|
3498
|
-
interface InternalDocumentUpdateByFilterOperation {
|
|
3499
|
-
/** documents matching this filter will be updated */
|
|
3500
|
-
filter?: Record<string, any> | null;
|
|
3501
|
-
/** partial document to apply */
|
|
3502
|
-
document?: InternalDocument;
|
|
3503
|
-
/**
|
|
3504
|
-
* tenant id for custom tenancy strategy
|
|
3505
|
-
* @minLength 2
|
|
3506
|
-
* @maxLength 300
|
|
3507
|
-
*/
|
|
3508
|
-
tenantId?: string | null;
|
|
3509
|
-
}
|
|
3510
|
-
interface InternalUpdateExistingOperation {
|
|
3511
|
-
/** documents to update */
|
|
3512
|
-
documents?: InternalDocument[];
|
|
3513
|
-
}
|
|
3514
|
-
interface VersionedDocumentUpdateOperation {
|
|
3515
|
-
/** documents to create or overwrite */
|
|
3516
|
-
documents?: InternalDocument[];
|
|
3517
|
-
/** versioning mode to use instead of default */
|
|
3518
|
-
versioningMode?: VersioningModeWithLiterals;
|
|
3519
|
-
}
|
|
3520
|
-
declare enum VersioningMode {
|
|
3521
|
-
/** use default versioning mode agreed with search team */
|
|
3522
|
-
DEFAULT = "DEFAULT",
|
|
3523
|
-
/** execute only if version is greater than existing */
|
|
3524
|
-
GREATER_THAN = "GREATER_THAN",
|
|
3525
|
-
/** execute only if version is greater or equal to existing */
|
|
3526
|
-
GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
|
|
3527
|
-
}
|
|
3528
|
-
/** @enumType */
|
|
3529
|
-
type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
|
|
3530
|
-
interface VersionedDeleteByIdsOperation {
|
|
3531
|
-
/** ids with version of the documents to delete */
|
|
3532
|
-
documentIds?: VersionedDocumentId[];
|
|
3533
|
-
/**
|
|
3534
|
-
* tenant id for custom tenancy strategy
|
|
3535
|
-
* @minLength 2
|
|
3536
|
-
* @maxLength 300
|
|
3537
|
-
*/
|
|
3538
|
-
tenantId?: string | null;
|
|
3539
|
-
}
|
|
3540
|
-
interface VersionedDocumentId {
|
|
3541
|
-
/** document id */
|
|
3542
|
-
documentId?: string;
|
|
3543
|
-
/** document version */
|
|
3544
|
-
version?: string;
|
|
3545
|
-
/** versioning mode to use instead of default */
|
|
3546
|
-
versioningMode?: VersioningModeWithLiterals;
|
|
3547
|
-
}
|
|
3548
|
-
interface TriggerReindexRequest {
|
|
3549
|
-
/** @format GUID */
|
|
3550
|
-
metasiteId?: string;
|
|
3551
|
-
/**
|
|
3552
|
-
* @minLength 1
|
|
3553
|
-
* @maxLength 100
|
|
3554
|
-
* @maxSize 100
|
|
3555
|
-
*/
|
|
3556
|
-
orderIds?: string[];
|
|
3557
|
-
}
|
|
3558
|
-
interface TriggerReindexResponse {
|
|
3559
|
-
}
|
|
3560
|
-
interface Empty {
|
|
3561
|
-
}
|
|
3562
|
-
interface BatchOfTriggerReindexOrderRequest {
|
|
3563
|
-
/** @maxSize 25 */
|
|
3564
|
-
requests?: TriggerReindexOrderRequest[];
|
|
3565
|
-
}
|
|
3566
|
-
interface TriggerReindexOrderRequest {
|
|
3567
|
-
/** @format GUID */
|
|
3568
|
-
metasiteId?: string;
|
|
3569
|
-
/**
|
|
3570
|
-
* @minLength 1
|
|
3571
|
-
* @maxLength 100
|
|
3572
|
-
*/
|
|
3573
|
-
orderId?: string;
|
|
3574
|
-
}
|
|
3575
3413
|
interface SendBuyerConfirmationEmailRequest {
|
|
3576
3414
|
/** @format GUID */
|
|
3577
3415
|
orderId?: string;
|
|
@@ -3864,6 +3702,8 @@ interface PreviewResendDownloadLinksEmailRequest {
|
|
|
3864
3702
|
interface PreviewResendDownloadLinksEmailResponse {
|
|
3865
3703
|
emailPreview?: string;
|
|
3866
3704
|
}
|
|
3705
|
+
interface Empty {
|
|
3706
|
+
}
|
|
3867
3707
|
interface PreparePaymentCollectionRequest {
|
|
3868
3708
|
/**
|
|
3869
3709
|
* Ecom order ID.
|
|
@@ -4997,6 +4837,166 @@ interface ChargeSavedPaymentMethodResponse {
|
|
|
4997
4837
|
/** Payment gateway's order ID (e.g Wix Payments) */
|
|
4998
4838
|
paymentGatewayOrderId?: string;
|
|
4999
4839
|
}
|
|
4840
|
+
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
4841
|
+
/** insert/update documents */
|
|
4842
|
+
update?: InternalDocumentUpdateOperation;
|
|
4843
|
+
/** delete by document ids */
|
|
4844
|
+
deleteByIds?: DeleteByIdsOperation;
|
|
4845
|
+
/** delete documents matching filter */
|
|
4846
|
+
deleteByFilter?: DeleteByFilterOperation;
|
|
4847
|
+
/** update internal documents matching filter */
|
|
4848
|
+
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
4849
|
+
/** update only existing documents */
|
|
4850
|
+
updateExisting?: InternalUpdateExistingOperation;
|
|
4851
|
+
/** insert/update documents with versioning */
|
|
4852
|
+
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
4853
|
+
/** delete by document ids with versioning */
|
|
4854
|
+
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
4855
|
+
/**
|
|
4856
|
+
* type of the documents
|
|
4857
|
+
* @minLength 2
|
|
4858
|
+
*/
|
|
4859
|
+
documentType?: string;
|
|
4860
|
+
/**
|
|
4861
|
+
* language of the documents (mandatory)
|
|
4862
|
+
* @minLength 2
|
|
4863
|
+
*/
|
|
4864
|
+
language?: string | null;
|
|
4865
|
+
/**
|
|
4866
|
+
* one or more search documents
|
|
4867
|
+
* @deprecated
|
|
4868
|
+
*/
|
|
4869
|
+
addDocuments?: InternalDocument[];
|
|
4870
|
+
/**
|
|
4871
|
+
* one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
|
|
4872
|
+
* @deprecated
|
|
4873
|
+
*/
|
|
4874
|
+
removeDocumentIds?: string[];
|
|
4875
|
+
/** id to pass to processing notification */
|
|
4876
|
+
correlationId?: string | null;
|
|
4877
|
+
/** when event was created / issued */
|
|
4878
|
+
issuedAt?: Date | null;
|
|
4879
|
+
}
|
|
4880
|
+
/** @oneof */
|
|
4881
|
+
interface UpdateInternalDocumentsEventOperationOneOf {
|
|
4882
|
+
/** insert/update documents */
|
|
4883
|
+
update?: InternalDocumentUpdateOperation;
|
|
4884
|
+
/** delete by document ids */
|
|
4885
|
+
deleteByIds?: DeleteByIdsOperation;
|
|
4886
|
+
/** delete documents matching filter */
|
|
4887
|
+
deleteByFilter?: DeleteByFilterOperation;
|
|
4888
|
+
/** update internal documents matching filter */
|
|
4889
|
+
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
4890
|
+
/** update only existing documents */
|
|
4891
|
+
updateExisting?: InternalUpdateExistingOperation;
|
|
4892
|
+
/** insert/update documents with versioning */
|
|
4893
|
+
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
4894
|
+
/** delete by document ids with versioning */
|
|
4895
|
+
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
4896
|
+
}
|
|
4897
|
+
interface InternalDocument {
|
|
4898
|
+
/** document with mandatory fields (id) and with fields specific to the type of the document */
|
|
4899
|
+
document?: Record<string, any> | null;
|
|
4900
|
+
}
|
|
4901
|
+
interface InternalDocumentUpdateOperation {
|
|
4902
|
+
/** documents to index or update */
|
|
4903
|
+
documents?: InternalDocument[];
|
|
4904
|
+
}
|
|
4905
|
+
interface DeleteByIdsOperation {
|
|
4906
|
+
/** ids of the documents to delete */
|
|
4907
|
+
documentIds?: string[];
|
|
4908
|
+
/**
|
|
4909
|
+
* tenant id for custom tenancy strategy
|
|
4910
|
+
* @minLength 2
|
|
4911
|
+
* @maxLength 300
|
|
4912
|
+
*/
|
|
4913
|
+
tenantId?: string | null;
|
|
4914
|
+
}
|
|
4915
|
+
interface DeleteByFilterOperation {
|
|
4916
|
+
/** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
|
|
4917
|
+
filter?: Record<string, any> | null;
|
|
4918
|
+
/**
|
|
4919
|
+
* tenant id for custom tenancy strategy
|
|
4920
|
+
* @minLength 2
|
|
4921
|
+
* @maxLength 300
|
|
4922
|
+
*/
|
|
4923
|
+
tenantId?: string | null;
|
|
4924
|
+
}
|
|
4925
|
+
interface InternalDocumentUpdateByFilterOperation {
|
|
4926
|
+
/** documents matching this filter will be updated */
|
|
4927
|
+
filter?: Record<string, any> | null;
|
|
4928
|
+
/** partial document to apply */
|
|
4929
|
+
document?: InternalDocument;
|
|
4930
|
+
/**
|
|
4931
|
+
* tenant id for custom tenancy strategy
|
|
4932
|
+
* @minLength 2
|
|
4933
|
+
* @maxLength 300
|
|
4934
|
+
*/
|
|
4935
|
+
tenantId?: string | null;
|
|
4936
|
+
}
|
|
4937
|
+
interface InternalUpdateExistingOperation {
|
|
4938
|
+
/** documents to update */
|
|
4939
|
+
documents?: InternalDocument[];
|
|
4940
|
+
}
|
|
4941
|
+
interface VersionedDocumentUpdateOperation {
|
|
4942
|
+
/** documents to create or overwrite */
|
|
4943
|
+
documents?: InternalDocument[];
|
|
4944
|
+
/** versioning mode to use instead of default */
|
|
4945
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
4946
|
+
}
|
|
4947
|
+
declare enum VersioningMode {
|
|
4948
|
+
/** use default versioning mode agreed with search team */
|
|
4949
|
+
DEFAULT = "DEFAULT",
|
|
4950
|
+
/** execute only if version is greater than existing */
|
|
4951
|
+
GREATER_THAN = "GREATER_THAN",
|
|
4952
|
+
/** execute only if version is greater or equal to existing */
|
|
4953
|
+
GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
|
|
4954
|
+
}
|
|
4955
|
+
/** @enumType */
|
|
4956
|
+
type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
|
|
4957
|
+
interface VersionedDeleteByIdsOperation {
|
|
4958
|
+
/** ids with version of the documents to delete */
|
|
4959
|
+
documentIds?: VersionedDocumentId[];
|
|
4960
|
+
/**
|
|
4961
|
+
* tenant id for custom tenancy strategy
|
|
4962
|
+
* @minLength 2
|
|
4963
|
+
* @maxLength 300
|
|
4964
|
+
*/
|
|
4965
|
+
tenantId?: string | null;
|
|
4966
|
+
}
|
|
4967
|
+
interface VersionedDocumentId {
|
|
4968
|
+
/** document id */
|
|
4969
|
+
documentId?: string;
|
|
4970
|
+
/** document version */
|
|
4971
|
+
version?: string;
|
|
4972
|
+
/** versioning mode to use instead of default */
|
|
4973
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
4974
|
+
}
|
|
4975
|
+
interface TriggerReindexRequest {
|
|
4976
|
+
/** @format GUID */
|
|
4977
|
+
metasiteId?: string;
|
|
4978
|
+
/**
|
|
4979
|
+
* @minLength 1
|
|
4980
|
+
* @maxLength 100
|
|
4981
|
+
* @maxSize 100
|
|
4982
|
+
*/
|
|
4983
|
+
orderIds?: string[];
|
|
4984
|
+
}
|
|
4985
|
+
interface TriggerReindexResponse {
|
|
4986
|
+
}
|
|
4987
|
+
interface BatchOfTriggerReindexOrderRequest {
|
|
4988
|
+
/** @maxSize 25 */
|
|
4989
|
+
requests?: TriggerReindexOrderRequest[];
|
|
4990
|
+
}
|
|
4991
|
+
interface TriggerReindexOrderRequest {
|
|
4992
|
+
/** @format GUID */
|
|
4993
|
+
metasiteId?: string;
|
|
4994
|
+
/**
|
|
4995
|
+
* @minLength 1
|
|
4996
|
+
* @maxLength 100
|
|
4997
|
+
*/
|
|
4998
|
+
orderId?: string;
|
|
4999
|
+
}
|
|
5000
5000
|
interface DiffmatokyPayload {
|
|
5001
5001
|
left?: string;
|
|
5002
5002
|
right?: string;
|
|
@@ -8521,4 +8521,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
8521
8521
|
unassignTags?: Tags;
|
|
8522
8522
|
}
|
|
8523
8523
|
|
|
8524
|
-
export { type OrderStatusWithLiterals as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type UpdateOrderLineItemIdentifiers as D, type UpdateOrderLineItem as E, type UpdateOrderLineItemResponse as F, type GetPaymentCollectabilityStatusResponse as G, type PublicActivity as H, type ImportOrderResponse as I, type AddActivityResponse as J, type AddActivitiesOptions as K, type AddActivitiesResponse as L, type MarkOrderAsPaidResponse as M, type UpdateActivityIdentifiers as N, type Order as O, type Price as P, type UpdateActivityResponse as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type DeleteActivityIdentifiers as W, type DeleteActivityResponse as X, type CancelOrderOptions as Y, type CancelOrderResponse as Z, type CancelOrderApplicationErrors as _, type SetOrderNumberCounterResponse as a, type OrderLineItem as a$, type UpdateOrderStatusResponse as a0, type UpdateOrderStatusApplicationErrors as a1, type AggregateOrdersOptions as a2, type AggregateOrdersResponse as a3, type BulkUpdateOrderTagsOptions as a4, type BulkUpdateOrderTagsResponse as a5, type OrderApprovedEnvelope as a6, type OrderUpdatedEnvelope as a7, type OrderCanceledEnvelope as a8, type OrderCreatedEnvelope as a9, PreviewEmailType as aA, ScheduledAction as aB, DurationUnit as aC, PaymentCollectabilityStatus as aD, RefundableStatus as aE, NonRefundableReason as aF, ManuallyRefundableReason as aG, RestockType as aH, TransactionStatus as aI, AuthorizationCaptureStatus as aJ, AuthorizationVoidStatus as aK, Reason as aL, ActionType as aM, ChargebackStatus as aN, MembershipPaymentStatus as aO, RefundStatus as aP, SortOrder as aQ, OrderApprovalStrategy as aR, DeltaPaymentOptionType as aS, InventoryAction as aT, Placement as aU, SubdivisionType as aV, SourceType as aW, CustomFieldGroup as aX, ValueType as aY, DepositType as aZ, InvoiceStatus as a_, type OrderPaymentStatusUpdatedEnvelope as aa, DescriptionLineType as ab, ItemTypePreset as ac, PaymentOptionType as ad, JurisdictionType as ae, SubscriptionFrequency as af, AdjustmentType as ag, TaxableAddressType as ah, PaymentStatus as ai, FulfillmentStatus as aj, WeightUnit as ak, VatType as al, PickupMethod as am, OrderStatus as an, DiscountType as ao, DiscountReason as ap, LineItemQuantityChangeType as aq, ActivityType as ar, OrderActivityTypeEnumActivityType as as, AttributionSource as at, ChannelType as au, AdditionalFeeSource as av, OrderActionType as aw, ChargeType as ax, WebhookIdentityType as ay, VersioningMode as az, type BulkDeleteImportedOrdersResponse as b, type ActivityContentOneOf as b$, type ProductName as b0, type CatalogReference as b1, type DescriptionLine as b2, type DescriptionLineValueOneOf as b3, type DescriptionLineDescriptionLineValueOneOf as b4, type DescriptionLineName as b5, type PlainTextValue as b6, type Color as b7, type FocalPoint as b8, type PhysicalProperties as b9, type Address as bA, type StreetAddress as bB, type AddressLocation as bC, type FullAddressContactDetails as bD, type VatId as bE, type V1ShippingInformation as bF, type DeliveryLogistics as bG, type DeliveryLogisticsAddressOneOf as bH, type PickupDetails as bI, type PickupAddress as bJ, type DeliveryTimeSlot as bK, type ShippingPrice as bL, type ShippingRegion as bM, type TaxSummary as bN, type OrderTaxInfo as bO, type OrderTaxBreakdown as bP, type AppliedDiscount as bQ, type AppliedDiscountDiscountSourceOneOf as bR, type Coupon as bS, type MerchantDiscount as bT, type MerchantDiscountMerchantDiscountReasonOneOf as bU, type DiscountRule as bV, type DiscountRuleName as bW, type LineItemDiscount as bX, type ItemCombination as bY, type ItemCombinationLineItem as bZ, type Activity as b_, type ItemType as ba, type ItemTypeItemTypeDataOneOf as bb, type ItemTaxFullDetails as bc, type LineItemTaxInfo as bd, type LineItemTaxBreakdown as be, type DigitalFile as bf, type SubscriptionInfo as bg, type SubscriptionTitle as bh, type SubscriptionDescription as bi, type SubscriptionSettings as bj, type FreeTrialPeriod as bk, type BillingAdjustment as bl, type BillingAdjustmentPriceSummary as bm, type PriceDescription as bn, type LocationAndQuantity as bo, type TaxableAddress as bp, type TaxableAddressTaxableAddressDataOneOf as bq, type ExtendedFields as br, type ModifierGroup as bs, type TranslatableString as bt, type ItemModifier as bu, type BuyerInfo as bv, type BuyerInfoIdOneOf as bw, type CurrencyConversionDetails as bx, type PriceSummary as by, type AddressWithContact as bz, type PreparePaymentCollectionOptions as c, type Location as c$, type CustomActivity as c0, type MerchantComment as c1, type OrderRefunded as c2, type OrderCreatedFromExchange as c3, type NewExchangeOrderCreated as c4, type LineItemExchangeData as c5, type DraftOrderChangesApplied as c6, type OrderChange as c7, type OrderChangeValueOneOf as c8, type LineItemChanges as c9, type PaymentPending as cA, type PaymentPendingPaymentDetailsOneOf as cB, type RegularPayment as cC, type RegularPaymentPaymentMethodDetailsOneOf as cD, type CreditCardDetails as cE, type PaymentCanceled as cF, type PaymentCanceledPaymentDetailsOneOf as cG, type PaymentDeclined as cH, type PaymentDeclinedPaymentDetailsOneOf as cI, type ReceiptCreated as cJ, type ReceiptCreatedReceiptInfoOneOf as cK, type WixReceipt as cL, type ExternalReceipt as cM, type ReceiptSent as cN, type ReceiptSentReceiptInfoOneOf as cO, type ChargebackCreated as cP, type ChargebackReversed as cQ, type CreatedBy as cR, type CreatedByStringOneOf as cS, type ChannelInfo as cT, type CustomField as cU, type BalanceSummary as cV, type Balance as cW, type AdditionalFee as cX, type FulfillmentStatusesAggregate as cY, type Tags as cZ, type TagList as c_, type LineItemQuantityChange as ca, type LineItemPriceChange as cb, type LineItemProductNameChange as cc, type LineItemDescriptionLineChange as cd, type LineItemModifiersChange as ce, type ManagedLineItem as cf, type ManagedDiscount as cg, type TranslatedValue as ch, type LineItemAmount as ci, type ManagedAdditionalFee as cj, type TotalPriceChange as ck, type ShippingInformationChange as cl, type ShippingInformation as cm, type SavedPaymentMethod as cn, type AuthorizedPaymentCreated as co, type AuthorizedPaymentCaptured as cp, type AuthorizedPaymentVoided as cq, type RefundInitiated as cr, type RefundedPayment as cs, type RefundedPaymentKindOneOf as ct, type RegularPaymentRefund as cu, type GiftCardPaymentRefund as cv, type MembershipPaymentRefund as cw, type PaymentRefunded as cx, type PaymentRefundFailed as cy, type RefundedAsStoreCredit as cz, type PreparePaymentCollectionResponse as d, type SendRefundEmailRequest as d$, type OrderSettings as d0, type OrderSettingsAllowedActionsOneOf as d1, type OrderSettingsEditableByOneOf as d2, type CustomAllowedActions as d3, type OwnerApps as d4, type FormInfo as d5, type FormIdentifier as d6, type PlatformFeeSummary as d7, type PlatformFee as d8, type OrderApproved as d9, type DeleteByFilterOperation as dA, type InternalDocumentUpdateByFilterOperation as dB, type InternalUpdateExistingOperation as dC, type VersionedDocumentUpdateOperation as dD, type VersionedDeleteByIdsOperation as dE, type VersionedDocumentId as dF, type TriggerReindexRequest as dG, type TriggerReindexResponse as dH, type Empty as dI, type BatchOfTriggerReindexOrderRequest as dJ, type TriggerReindexOrderRequest as dK, type SendBuyerConfirmationEmailRequest as dL, type SendBuyerConfirmationEmailResponse as dM, type SendBuyerPaymentsReceivedEmailRequest as dN, type SendBuyerPaymentsReceivedEmailResponse as dO, type SendBuyerPickupConfirmationEmailRequest as dP, type SendBuyerPickupConfirmationEmailResponse as dQ, type BulkSendBuyerPickupConfirmationEmailsRequest as dR, type BulkSendBuyerPickupConfirmationEmailsResponse as dS, type SendBuyerShippingConfirmationEmailRequest as dT, type SendBuyerShippingConfirmationEmailResponse as dU, type BulkSendBuyerShippingConfirmationEmailsRequest as dV, type BulkSendBuyerShippingConfirmationEmailsResponse as dW, type SendMerchantOrderReceivedNotificationRequest as dX, type SendMerchantOrderReceivedNotificationResponse as dY, type SendCancelRefundEmailRequest as dZ, type SendCancelRefundEmailResponse as d_, type OrdersExperiments as da, type OrderRejectedEventOrderRejected as db, type OrderItemsRestocked as dc, type V1RestockItem as dd, type OrderImported as de, type ImportedOrderDeleted as df, type ImportOrderRequest as dg, type SetOrderNumberCounterRequest as dh, type BulkDeleteImportedOrdersRequest as di, type DomainEvent as dj, type DomainEventBodyOneOf as dk, type EntityCreatedEvent as dl, type RestoreInfo as dm, type EntityUpdatedEvent as dn, type EntityDeletedEvent as dp, type ActionEvent as dq, type MessageEnvelope as dr, type IdentificationData as ds, type IdentificationDataIdOneOf as dt, type AccountInfo as du, type UpdateInternalDocumentsEvent as dv, type UpdateInternalDocumentsEventOperationOneOf as dw, type InternalDocument as dx, type InternalDocumentUpdateOperation as dy, type DeleteByIdsOperation as dz, type PreparePaymentCollectionApplicationErrors as e, type AuthorizationVoid as e$, type SendRefundEmailResponse as e0, type SendMerchantOrderReceivedPushRequest as e1, type SendMerchantOrderReceivedPushResponse as e2, type PreviewEmailByTypeRequest as e3, type PreviewEmailByTypeResponse as e4, type PreviewRefundEmailRequest as e5, type RefundDetails as e6, type RefundItem as e7, type LineItemRefund as e8, type AdditionalFeeRefund as e9, type ItemMetadata as eA, type ApplicationError as eB, type BulkActionMetadata as eC, type GetRefundabilityStatusRequest as eD, type Refundability as eE, type RefundabilityAdditionalRefundabilityInfoOneOf as eF, type CreatePaymentGatewayOrderRequest as eG, type ChargedBy as eH, type ChargeMembershipsRequest as eI, type MembershipChargeItem as eJ, type MembershipName as eK, type ServiceProperties as eL, type ChargeMembershipsResponse as eM, type TriggerRefundRequest as eN, type RefundSideEffects as eO, type RestockInfo as eP, type RestockItem as eQ, type OrderTransactions as eR, type Payment as eS, type PaymentPaymentDetailsOneOf as eT, type PaymentReceiptInfoOneOf as eU, type RegularPaymentDetails as eV, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eW, type CreditCardPaymentMethodDetails as eX, type AuthorizationDetails as eY, type AuthorizationCapture as eZ, type AuthorizationActionFailureDetails as e_, type ShippingRefund as ea, type PreviewRefundEmailResponse as eb, type PreviewCancelEmailRequest as ec, type PreviewCancelEmailResponse as ed, type PreviewCancelRefundEmailRequest as ee, type PreviewCancelRefundEmailResponse as ef, type PreviewBuyerPaymentsReceivedEmailRequest as eg, type PreviewBuyerPaymentsReceivedEmailResponse as eh, type PreviewBuyerConfirmationEmailRequest as ei, type PreviewBuyerConfirmationEmailResponse as ej, type PreviewBuyerPickupConfirmationEmailRequest as ek, type PreviewBuyerPickupConfirmationEmailResponse as el, type PreviewShippingConfirmationEmailRequest as em, type PreviewShippingConfirmationEmailResponse as en, type PreviewResendDownloadLinksEmailRequest as eo, type PreviewResendDownloadLinksEmailResponse as ep, type PreparePaymentCollectionRequest as eq, type RedirectUrls as er, type DelayedCaptureSettings as es, type Duration as et, type GetPaymentCollectabilityStatusRequest as eu, type RecordManuallyCollectedPaymentRequest as ev, type RecordManuallyCollectedPaymentResponse as ew, type MarkOrderAsPaidRequest as ex, type BulkMarkOrdersAsPaidRequest as ey, type BulkOrderResult as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type OrderDeltasCommitted as f$, type V1ScheduledAction as f0, type Chargeback as f1, type GiftCardPaymentDetails as f2, type MembershipPaymentDetails as f3, type WixReceiptInfo as f4, type ExternalReceiptInfo as f5, type Refund as f6, type RefundTransaction as f7, type RefundStatusInfo as f8, type AggregatedRefundSummary as f9, type CursorSearch as fA, type CursorSearchPagingMethodOneOf as fB, type CursorPagingMetadata as fC, type CreateOrderRequest as fD, type OrderCreationSettings as fE, type OrderCreateNotifications as fF, type CreateOrderResponse as fG, type UpdateOrderRequest as fH, type UpdateOrderResponse as fI, type BulkUpdateOrdersRequest as fJ, type CommitDeltasRequest as fK, type DraftOrderDiffs as fL, type DraftOrderDiffsShippingUpdateInfoOneOf as fM, type DraftOrderDiffsBuyerUpdateInfoOneOf as fN, type DraftOrderDiffsBillingUpdateInfoOneOf as fO, type DraftOrderDiffsRecipientUpdateInfoOneOf as fP, type V1LineItemDelta as fQ, type V1LineItemDeltaDeltaOneOf as fR, type OrderLineItemChangedDetails as fS, type ItemChangedDetails as fT, type AppliedDiscountDelta as fU, type AppliedDiscountDeltaDeltaOneOf as fV, type AdditionalFeeDelta as fW, type AdditionalFeeDeltaDeltaOneOf as fX, type DraftOrderCommitSettings as fY, type InventoryUpdateDetails as fZ, type CommitDeltasResponse as f_, type RefundItemsBreakdown as fa, type LineItemRefundSummary as fb, type CalculateRefundRequest as fc, type CalculateRefundItemRequest as fd, type CalculateRefundResponse as fe, type CalculateRefundItemResponse as ff, type VoidAuthorizedPaymentsRequest as fg, type CaptureAuthorizedPaymentsRequest as fh, type ChargeSavedPaymentMethodRequest as fi, type ChargeSavedPaymentMethodResponse as fj, type DiffmatokyPayload as fk, type ErrorInformation as fl, type GetOrderRequest as fm, type GetOrderResponse as fn, type InternalQueryOrdersRequest as fo, type PlatformQuery as fp, type PlatformQueryPagingMethodOneOf as fq, type Sorting as fr, type PlatformPaging as fs, type CursorPaging as ft, type InternalQueryOrdersResponse as fu, type PlatformPagingMetadata as fv, type Cursors as fw, type QueryOrderRequest as fx, type QueryOrderResponse as fy, type SearchOrdersRequest as fz, type BulkMarkOrdersAsPaidResponse as g, type OrderCanceledEventOrderCanceled as g$, type CommittedDiffs as g0, type CommittedDiffsShippingUpdateInfoOneOf as g1, type LineItemDelta as g2, type LineItemDeltaDeltaOneOf as g3, type ArchiveOrderRequest as g4, type ArchiveOrderResponse as g5, type BulkArchiveOrdersRequest as g6, type BulkArchiveOrdersResponse as g7, type BulkArchiveOrdersByFilterRequest as g8, type BulkArchiveOrdersByFilterResponse as g9, type OrderCanceled as gA, type DownloadLinkSent as gB, type TrackingNumberAdded as gC, type TrackingNumberEdited as gD, type TrackingLinkAdded as gE, type ShippingConfirmationEmailSent as gF, type InvoiceAdded as gG, type InvoiceSent as gH, type FulfillerEmailSent as gI, type ShippingAddressEdited as gJ, type EmailEdited as gK, type PickupReadyEmailSent as gL, type OrderPartiallyPaid as gM, type OrderPending as gN, type OrderRejected as gO, type AddInternalActivityResponse as gP, type AddActivityRequest as gQ, type PublicActivityContentOneOf as gR, type AddActivitiesRequest as gS, type UpdateActivityRequest as gT, type DeleteActivityRequest as gU, type UpdateLineItemsDescriptionLinesRequest as gV, type LineItemUpdate as gW, type UpdateLineItemsDescriptionLinesResponse as gX, type MarkOrderAsSeenByHumanRequest as gY, type MarkOrderAsSeenByHumanResponse as gZ, type CancelOrderRequest as g_, type UnArchiveOrderRequest as ga, type UnArchiveOrderResponse as gb, type BulkUnArchiveOrdersRequest as gc, type BulkUnArchiveOrdersResponse as gd, type BulkUnArchiveOrdersByFilterRequest as ge, type BulkUnArchiveOrdersByFilterResponse as gf, type UpdateBuyerInfoRequest as gg, type BuyerInfoUpdate as gh, type UpdateBuyerInfoResponse as gi, type UpdateBuyerEmailRequest as gj, type UpdateBuyerEmailResponse as gk, type UpdateOrderShippingAddressRequest as gl, type UpdateOrderShippingAddressResponse as gm, type UpdateBillingContactDetailsRequest as gn, type UpdateBillingContactDetailsResponse as go, type UpdateOrderLineItemRequest as gp, type UpdateOrderLineItemsRequest as gq, type MaskedOrderLineItem as gr, type UpdateOrderLineItemsResponse as gs, type AddInternalActivityRequest as gt, type InternalActivity as gu, type InternalActivityContentOneOf as gv, type OrderPlaced as gw, type OrderPaid as gx, type OrderFulfilled as gy, type OrderNotFulfilled as gz, type GetRefundabilityStatusResponse as h, type DiscountOneDiscountTypeOneOf as h$, type UpdateOrderStatusRequest as h0, type MarkAsFulfilledRequest as h1, type MarkAsFulfilledResponse as h2, type FulfillmentStatusUpdated as h3, type BulkMarkAsFulfilledRequest as h4, type BulkMarkAsFulfilledResponse as h5, type BulkMarkAsFulfilledByFilterRequest as h6, type BulkMarkAsFulfilledByFilterResponse as h7, type MarkAsUnfulfilledRequest as h8, type MarkAsUnfulfilledResponse as h9, type Complete as hA, type Cancel as hB, type Reschedule as hC, type InvoiceSentEvent as hD, type IdAndVersion as hE, type InvoiceFields as hF, type Customer as hG, type Email as hH, type QuotesAddress as hI, type AddressDescription as hJ, type Phone as hK, type Company as hL, type CommonAddress as hM, type CommonAddressStreetOneOf as hN, type Subdivision as hO, type StandardDetails as hP, type InvoiceDates as hQ, type LineItems as hR, type LineItem as hS, type BigDecimalWrapper as hT, type LineItemTax as hU, type Source as hV, type LineItemMetaData as hW, type Locale as hX, type TotalPrice as hY, type ItemizedFee as hZ, type Discount as h_, type BulkMarkAsUnfulfilledRequest as ha, type BulkMarkAsUnfulfilledResponse as hb, type BulkMarkAsUnfulfilledByFilterRequest as hc, type BulkMarkAsUnfulfilledByFilterResponse as hd, type BulkSetBusinessLocationRequest as he, type BulkSetBusinessLocationResponse as hf, type BulkSetBusinessLocationResult as hg, type V1MarkOrderAsPaidRequest as hh, type V1MarkOrderAsPaidResponse as hi, type PaymentStatusUpdated as hj, type V1BulkMarkOrdersAsPaidRequest as hk, type V1BulkMarkOrdersAsPaidResponse as hl, type V1CreatePaymentGatewayOrderRequest as hm, type V1CreatePaymentGatewayOrderResponse as hn, type GetShipmentsRequest as ho, type GetShipmentsResponse as hp, type AggregateOrdersRequest as hq, type DecrementItemsQuantityRequest as hr, type DecrementData as hs, type DecrementItemsQuantityResponse as ht, type BulkUpdateOrderTagsRequest as hu, type BulkUpdateOrderTagsResult as hv, type Task as hw, type TaskKey as hx, type TaskAction as hy, type TaskActionActionOneOf as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, type ValueTypeWithLiterals as i$, type CalculatedTaxes as i0, type CalculatedTax as i1, type Payments as i2, type InvoicesPayment as i3, type MetaData as i4, type InvoiceDynamicPriceTotals as i5, type CustomFieldValue as i6, type Value as i7, type Deposit as i8, type BaseEventMetadata as i9, type ChargeTypeWithLiterals as iA, type WebhookIdentityTypeWithLiterals as iB, type VersioningModeWithLiterals as iC, type PreviewEmailTypeWithLiterals as iD, type ScheduledActionWithLiterals as iE, type DurationUnitWithLiterals as iF, type PaymentCollectabilityStatusWithLiterals as iG, type RefundableStatusWithLiterals as iH, type NonRefundableReasonWithLiterals as iI, type ManuallyRefundableReasonWithLiterals as iJ, type RestockTypeWithLiterals as iK, type TransactionStatusWithLiterals as iL, type AuthorizationCaptureStatusWithLiterals as iM, type AuthorizationVoidStatusWithLiterals as iN, type ReasonWithLiterals as iO, type ActionTypeWithLiterals as iP, type ChargebackStatusWithLiterals as iQ, type MembershipPaymentStatusWithLiterals as iR, type RefundStatusWithLiterals as iS, type SortOrderWithLiterals as iT, type OrderApprovalStrategyWithLiterals as iU, type DeltaPaymentOptionTypeWithLiterals as iV, type InventoryActionWithLiterals as iW, type PlacementWithLiterals as iX, type SubdivisionTypeWithLiterals as iY, type SourceTypeWithLiterals as iZ, type CustomFieldGroupWithLiterals as i_, type EventMetadata as ia, type AccountInfoMetadata as ib, type OrderSearchSpec as ic, type DescriptionLineTypeWithLiterals as id, type ItemTypePresetWithLiterals as ie, type PaymentOptionTypeWithLiterals as ig, type JurisdictionTypeWithLiterals as ih, type SubscriptionFrequencyWithLiterals as ii, type AdjustmentTypeWithLiterals as ij, type TaxableAddressTypeWithLiterals as ik, type PaymentStatusWithLiterals as il, type FulfillmentStatusWithLiterals as im, type WeightUnitWithLiterals as io, type VatTypeWithLiterals as ip, type PickupMethodWithLiterals as iq, type DiscountTypeWithLiterals as ir, type DiscountReasonWithLiterals as is, type LineItemQuantityChangeTypeWithLiterals as it, type ActivityTypeWithLiterals as iu, type OrderActivityTypeEnumActivityTypeWithLiterals as iv, type AttributionSourceWithLiterals as iw, type ChannelTypeWithLiterals as ix, type AdditionalFeeSourceWithLiterals as iy, type OrderActionTypeWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, type DepositTypeWithLiterals as j0, type InvoiceStatusWithLiterals as j1, type CommonSearchWithEntityContext as j2, onOrderApproved as j3, onOrderUpdated as j4, onOrderCanceled as j5, onOrderCreated as j6, onOrderPaymentStatusUpdated as j7, importOrder as j8, setOrderNumberCounter as j9, bulkDeleteImportedOrders as ja, preparePaymentCollection as jb, getPaymentCollectabilityStatus as jc, recordManuallyCollectedPayment as jd, paymentCollectionMarkOrderAsPaid as je, paymentCollectionBulkMarkOrdersAsPaid as jf, getRefundabilityStatus as jg, paymentCollectionCreatePaymentGatewayOrder as jh, chargeMemberships as ji, triggerRefund as jj, voidAuthorizedPayments as jk, captureAuthorizedPayments as jl, getOrder as jm, createOrder as jn, updateOrder as jo, bulkUpdateOrders as jp, updateOrderLineItem as jq, addActivity as jr, addActivities as js, updateActivity as jt, deleteActivity as ju, cancelOrder as jv, updateOrderStatus as jw, aggregateOrders as jx, bulkUpdateOrderTags as jy, type ChargeMembershipsOptions as k, type PaymentRefund as l, type TriggerRefundResponse as m, type TriggerRefundApplicationErrors as n, type VoidAuthorizedPaymentsApplicationErrors as o, type PaymentCapture as p, type CaptureAuthorizedPaymentsResponse as q, type CaptureAuthorizedPaymentsApplicationErrors as r, type GetOrderApplicationErrors as s, type OrderSearch as t, type SearchOrdersResponse as u, type CreateOrderOptions as v, type CreateOrderApplicationErrors as w, type UpdateOrderApplicationErrors as x, type MaskedOrder as y, type BulkUpdateOrdersOptions as z };
|
|
8524
|
+
export { type OrderStatusWithLiterals as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type UpdateOrderLineItemIdentifiers as D, type UpdateOrderLineItem as E, type UpdateOrderLineItemResponse as F, type GetPaymentCollectabilityStatusResponse as G, type PublicActivity as H, type ImportOrderResponse as I, type AddActivityResponse as J, type AddActivitiesOptions as K, type AddActivitiesResponse as L, type MarkOrderAsPaidResponse as M, type UpdateActivityIdentifiers as N, type Order as O, type Price as P, type UpdateActivityResponse as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type DeleteActivityIdentifiers as W, type DeleteActivityResponse as X, type CancelOrderOptions as Y, type CancelOrderResponse as Z, type CancelOrderApplicationErrors as _, type SetOrderNumberCounterResponse as a, type OrderLineItem as a$, type UpdateOrderStatusResponse as a0, type UpdateOrderStatusApplicationErrors as a1, type AggregateOrdersOptions as a2, type AggregateOrdersResponse as a3, type BulkUpdateOrderTagsOptions as a4, type BulkUpdateOrderTagsResponse as a5, type OrderApprovedEnvelope as a6, type OrderUpdatedEnvelope as a7, type OrderCanceledEnvelope as a8, type OrderCreatedEnvelope as a9, ScheduledAction as aA, DurationUnit as aB, PaymentCollectabilityStatus as aC, RefundableStatus as aD, NonRefundableReason as aE, ManuallyRefundableReason as aF, RestockType as aG, TransactionStatus as aH, AuthorizationCaptureStatus as aI, AuthorizationVoidStatus as aJ, Reason as aK, ActionType as aL, ChargebackStatus as aM, MembershipPaymentStatus as aN, RefundStatus as aO, VersioningMode as aP, SortOrder as aQ, OrderApprovalStrategy as aR, DeltaPaymentOptionType as aS, InventoryAction as aT, Placement as aU, SubdivisionType as aV, SourceType as aW, CustomFieldGroup as aX, ValueType as aY, DepositType as aZ, InvoiceStatus as a_, type OrderPaymentStatusUpdatedEnvelope as aa, DescriptionLineType as ab, ItemTypePreset as ac, PaymentOptionType as ad, JurisdictionType as ae, SubscriptionFrequency as af, AdjustmentType as ag, TaxableAddressType as ah, PaymentStatus as ai, FulfillmentStatus as aj, WeightUnit as ak, VatType as al, PickupMethod as am, OrderStatus as an, DiscountType as ao, DiscountReason as ap, LineItemQuantityChangeType as aq, ActivityType as ar, OrderActivityTypeEnumActivityType as as, AttributionSource as at, ChannelType as au, AdditionalFeeSource as av, OrderActionType as aw, ChargeType as ax, WebhookIdentityType as ay, PreviewEmailType as az, type BulkDeleteImportedOrdersResponse as b, type ActivityContentOneOf as b$, type ProductName as b0, type CatalogReference as b1, type DescriptionLine as b2, type DescriptionLineValueOneOf as b3, type DescriptionLineDescriptionLineValueOneOf as b4, type DescriptionLineName as b5, type PlainTextValue as b6, type Color as b7, type FocalPoint as b8, type PhysicalProperties as b9, type Address as bA, type StreetAddress as bB, type AddressLocation as bC, type FullAddressContactDetails as bD, type VatId as bE, type V1ShippingInformation as bF, type DeliveryLogistics as bG, type DeliveryLogisticsAddressOneOf as bH, type PickupDetails as bI, type PickupAddress as bJ, type DeliveryTimeSlot as bK, type ShippingPrice as bL, type ShippingRegion as bM, type TaxSummary as bN, type OrderTaxInfo as bO, type OrderTaxBreakdown as bP, type AppliedDiscount as bQ, type AppliedDiscountDiscountSourceOneOf as bR, type Coupon as bS, type MerchantDiscount as bT, type MerchantDiscountMerchantDiscountReasonOneOf as bU, type DiscountRule as bV, type DiscountRuleName as bW, type LineItemDiscount as bX, type ItemCombination as bY, type ItemCombinationLineItem as bZ, type Activity as b_, type ItemType as ba, type ItemTypeItemTypeDataOneOf as bb, type ItemTaxFullDetails as bc, type LineItemTaxInfo as bd, type LineItemTaxBreakdown as be, type DigitalFile as bf, type SubscriptionInfo as bg, type SubscriptionTitle as bh, type SubscriptionDescription as bi, type SubscriptionSettings as bj, type FreeTrialPeriod as bk, type BillingAdjustment as bl, type BillingAdjustmentPriceSummary as bm, type PriceDescription as bn, type LocationAndQuantity as bo, type TaxableAddress as bp, type TaxableAddressTaxableAddressDataOneOf as bq, type ExtendedFields as br, type ModifierGroup as bs, type TranslatableString as bt, type ItemModifier as bu, type BuyerInfo as bv, type BuyerInfoIdOneOf as bw, type CurrencyConversionDetails as bx, type PriceSummary as by, type AddressWithContact as bz, type PreparePaymentCollectionOptions as c, type Location as c$, type CustomActivity as c0, type MerchantComment as c1, type OrderRefunded as c2, type OrderCreatedFromExchange as c3, type NewExchangeOrderCreated as c4, type LineItemExchangeData as c5, type DraftOrderChangesApplied as c6, type OrderChange as c7, type OrderChangeValueOneOf as c8, type LineItemChanges as c9, type PaymentPending as cA, type PaymentPendingPaymentDetailsOneOf as cB, type RegularPayment as cC, type RegularPaymentPaymentMethodDetailsOneOf as cD, type CreditCardDetails as cE, type PaymentCanceled as cF, type PaymentCanceledPaymentDetailsOneOf as cG, type PaymentDeclined as cH, type PaymentDeclinedPaymentDetailsOneOf as cI, type ReceiptCreated as cJ, type ReceiptCreatedReceiptInfoOneOf as cK, type WixReceipt as cL, type ExternalReceipt as cM, type ReceiptSent as cN, type ReceiptSentReceiptInfoOneOf as cO, type ChargebackCreated as cP, type ChargebackReversed as cQ, type CreatedBy as cR, type CreatedByStringOneOf as cS, type ChannelInfo as cT, type CustomField as cU, type BalanceSummary as cV, type Balance as cW, type AdditionalFee as cX, type FulfillmentStatusesAggregate as cY, type Tags as cZ, type TagList as c_, type LineItemQuantityChange as ca, type LineItemPriceChange as cb, type LineItemProductNameChange as cc, type LineItemDescriptionLineChange as cd, type LineItemModifiersChange as ce, type ManagedLineItem as cf, type ManagedDiscount as cg, type TranslatedValue as ch, type LineItemAmount as ci, type ManagedAdditionalFee as cj, type TotalPriceChange as ck, type ShippingInformationChange as cl, type ShippingInformation as cm, type SavedPaymentMethod as cn, type AuthorizedPaymentCreated as co, type AuthorizedPaymentCaptured as cp, type AuthorizedPaymentVoided as cq, type RefundInitiated as cr, type RefundedPayment as cs, type RefundedPaymentKindOneOf as ct, type RegularPaymentRefund as cu, type GiftCardPaymentRefund as cv, type MembershipPaymentRefund as cw, type PaymentRefunded as cx, type PaymentRefundFailed as cy, type RefundedAsStoreCredit as cz, type PreparePaymentCollectionResponse as d, type PreviewCancelRefundEmailResponse as d$, type OrderSettings as d0, type OrderSettingsAllowedActionsOneOf as d1, type OrderSettingsEditableByOneOf as d2, type CustomAllowedActions as d3, type OwnerApps as d4, type FormInfo as d5, type FormIdentifier as d6, type PlatformFeeSummary as d7, type PlatformFee as d8, type OrderApproved as d9, type SendBuyerPickupConfirmationEmailResponse as dA, type BulkSendBuyerPickupConfirmationEmailsRequest as dB, type BulkSendBuyerPickupConfirmationEmailsResponse as dC, type SendBuyerShippingConfirmationEmailRequest as dD, type SendBuyerShippingConfirmationEmailResponse as dE, type BulkSendBuyerShippingConfirmationEmailsRequest as dF, type BulkSendBuyerShippingConfirmationEmailsResponse as dG, type SendMerchantOrderReceivedNotificationRequest as dH, type SendMerchantOrderReceivedNotificationResponse as dI, type SendCancelRefundEmailRequest as dJ, type SendCancelRefundEmailResponse as dK, type SendRefundEmailRequest as dL, type SendRefundEmailResponse as dM, type SendMerchantOrderReceivedPushRequest as dN, type SendMerchantOrderReceivedPushResponse as dO, type PreviewEmailByTypeRequest as dP, type PreviewEmailByTypeResponse as dQ, type PreviewRefundEmailRequest as dR, type RefundDetails as dS, type RefundItem as dT, type LineItemRefund as dU, type AdditionalFeeRefund as dV, type ShippingRefund as dW, type PreviewRefundEmailResponse as dX, type PreviewCancelEmailRequest as dY, type PreviewCancelEmailResponse as dZ, type PreviewCancelRefundEmailRequest as d_, type OrdersExperiments as da, type OrderRejectedEventOrderRejected as db, type OrderItemsRestocked as dc, type V1RestockItem as dd, type OrderImported as de, type ImportedOrderDeleted as df, type ImportOrderRequest as dg, type SetOrderNumberCounterRequest as dh, type BulkDeleteImportedOrdersRequest as di, type DomainEvent as dj, type DomainEventBodyOneOf as dk, type EntityCreatedEvent as dl, type RestoreInfo as dm, type EntityUpdatedEvent as dn, type EntityDeletedEvent as dp, type ActionEvent as dq, type MessageEnvelope as dr, type IdentificationData as ds, type IdentificationDataIdOneOf as dt, type AccountInfo as du, type SendBuyerConfirmationEmailRequest as dv, type SendBuyerConfirmationEmailResponse as dw, type SendBuyerPaymentsReceivedEmailRequest as dx, type SendBuyerPaymentsReceivedEmailResponse as dy, type SendBuyerPickupConfirmationEmailRequest as dz, type PreparePaymentCollectionApplicationErrors as e, type CalculateRefundResponse as e$, type PreviewBuyerPaymentsReceivedEmailRequest as e0, type PreviewBuyerPaymentsReceivedEmailResponse as e1, type PreviewBuyerConfirmationEmailRequest as e2, type PreviewBuyerConfirmationEmailResponse as e3, type PreviewBuyerPickupConfirmationEmailRequest as e4, type PreviewBuyerPickupConfirmationEmailResponse as e5, type PreviewShippingConfirmationEmailRequest as e6, type PreviewShippingConfirmationEmailResponse as e7, type PreviewResendDownloadLinksEmailRequest as e8, type PreviewResendDownloadLinksEmailResponse as e9, type RestockInfo as eA, type RestockItem as eB, type OrderTransactions as eC, type Payment as eD, type PaymentPaymentDetailsOneOf as eE, type PaymentReceiptInfoOneOf as eF, type RegularPaymentDetails as eG, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eH, type CreditCardPaymentMethodDetails as eI, type AuthorizationDetails as eJ, type AuthorizationCapture as eK, type AuthorizationActionFailureDetails as eL, type AuthorizationVoid as eM, type V1ScheduledAction as eN, type Chargeback as eO, type GiftCardPaymentDetails as eP, type MembershipPaymentDetails as eQ, type WixReceiptInfo as eR, type ExternalReceiptInfo as eS, type Refund as eT, type RefundTransaction as eU, type RefundStatusInfo as eV, type AggregatedRefundSummary as eW, type RefundItemsBreakdown as eX, type LineItemRefundSummary as eY, type CalculateRefundRequest as eZ, type CalculateRefundItemRequest as e_, type Empty as ea, type PreparePaymentCollectionRequest as eb, type RedirectUrls as ec, type DelayedCaptureSettings as ed, type Duration as ee, type GetPaymentCollectabilityStatusRequest as ef, type RecordManuallyCollectedPaymentRequest as eg, type RecordManuallyCollectedPaymentResponse as eh, type MarkOrderAsPaidRequest as ei, type BulkMarkOrdersAsPaidRequest as ej, type BulkOrderResult as ek, type ItemMetadata as el, type ApplicationError as em, type BulkActionMetadata as en, type GetRefundabilityStatusRequest as eo, type Refundability as ep, type RefundabilityAdditionalRefundabilityInfoOneOf as eq, type CreatePaymentGatewayOrderRequest as er, type ChargedBy as es, type ChargeMembershipsRequest as et, type MembershipChargeItem as eu, type MembershipName as ev, type ServiceProperties as ew, type ChargeMembershipsResponse as ex, type TriggerRefundRequest as ey, type RefundSideEffects as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type OrderDeltasCommitted as f$, type CalculateRefundItemResponse as f0, type VoidAuthorizedPaymentsRequest as f1, type CaptureAuthorizedPaymentsRequest as f2, type ChargeSavedPaymentMethodRequest as f3, type ChargeSavedPaymentMethodResponse as f4, type UpdateInternalDocumentsEvent as f5, type UpdateInternalDocumentsEventOperationOneOf as f6, type InternalDocument as f7, type InternalDocumentUpdateOperation as f8, type DeleteByIdsOperation as f9, type CursorSearch as fA, type CursorSearchPagingMethodOneOf as fB, type CursorPagingMetadata as fC, type CreateOrderRequest as fD, type OrderCreationSettings as fE, type OrderCreateNotifications as fF, type CreateOrderResponse as fG, type UpdateOrderRequest as fH, type UpdateOrderResponse as fI, type BulkUpdateOrdersRequest as fJ, type CommitDeltasRequest as fK, type DraftOrderDiffs as fL, type DraftOrderDiffsShippingUpdateInfoOneOf as fM, type DraftOrderDiffsBuyerUpdateInfoOneOf as fN, type DraftOrderDiffsBillingUpdateInfoOneOf as fO, type DraftOrderDiffsRecipientUpdateInfoOneOf as fP, type V1LineItemDelta as fQ, type V1LineItemDeltaDeltaOneOf as fR, type OrderLineItemChangedDetails as fS, type ItemChangedDetails as fT, type AppliedDiscountDelta as fU, type AppliedDiscountDeltaDeltaOneOf as fV, type AdditionalFeeDelta as fW, type AdditionalFeeDeltaDeltaOneOf as fX, type DraftOrderCommitSettings as fY, type InventoryUpdateDetails as fZ, type CommitDeltasResponse as f_, type DeleteByFilterOperation as fa, type InternalDocumentUpdateByFilterOperation as fb, type InternalUpdateExistingOperation as fc, type VersionedDocumentUpdateOperation as fd, type VersionedDeleteByIdsOperation as fe, type VersionedDocumentId as ff, type TriggerReindexRequest as fg, type TriggerReindexResponse as fh, type BatchOfTriggerReindexOrderRequest as fi, type TriggerReindexOrderRequest as fj, type DiffmatokyPayload as fk, type ErrorInformation as fl, type GetOrderRequest as fm, type GetOrderResponse as fn, type InternalQueryOrdersRequest as fo, type PlatformQuery as fp, type PlatformQueryPagingMethodOneOf as fq, type Sorting as fr, type PlatformPaging as fs, type CursorPaging as ft, type InternalQueryOrdersResponse as fu, type PlatformPagingMetadata as fv, type Cursors as fw, type QueryOrderRequest as fx, type QueryOrderResponse as fy, type SearchOrdersRequest as fz, type BulkMarkOrdersAsPaidResponse as g, type OrderCanceledEventOrderCanceled as g$, type CommittedDiffs as g0, type CommittedDiffsShippingUpdateInfoOneOf as g1, type LineItemDelta as g2, type LineItemDeltaDeltaOneOf as g3, type ArchiveOrderRequest as g4, type ArchiveOrderResponse as g5, type BulkArchiveOrdersRequest as g6, type BulkArchiveOrdersResponse as g7, type BulkArchiveOrdersByFilterRequest as g8, type BulkArchiveOrdersByFilterResponse as g9, type OrderCanceled as gA, type DownloadLinkSent as gB, type TrackingNumberAdded as gC, type TrackingNumberEdited as gD, type TrackingLinkAdded as gE, type ShippingConfirmationEmailSent as gF, type InvoiceAdded as gG, type InvoiceSent as gH, type FulfillerEmailSent as gI, type ShippingAddressEdited as gJ, type EmailEdited as gK, type PickupReadyEmailSent as gL, type OrderPartiallyPaid as gM, type OrderPending as gN, type OrderRejected as gO, type AddInternalActivityResponse as gP, type AddActivityRequest as gQ, type PublicActivityContentOneOf as gR, type AddActivitiesRequest as gS, type UpdateActivityRequest as gT, type DeleteActivityRequest as gU, type UpdateLineItemsDescriptionLinesRequest as gV, type LineItemUpdate as gW, type UpdateLineItemsDescriptionLinesResponse as gX, type MarkOrderAsSeenByHumanRequest as gY, type MarkOrderAsSeenByHumanResponse as gZ, type CancelOrderRequest as g_, type UnArchiveOrderRequest as ga, type UnArchiveOrderResponse as gb, type BulkUnArchiveOrdersRequest as gc, type BulkUnArchiveOrdersResponse as gd, type BulkUnArchiveOrdersByFilterRequest as ge, type BulkUnArchiveOrdersByFilterResponse as gf, type UpdateBuyerInfoRequest as gg, type BuyerInfoUpdate as gh, type UpdateBuyerInfoResponse as gi, type UpdateBuyerEmailRequest as gj, type UpdateBuyerEmailResponse as gk, type UpdateOrderShippingAddressRequest as gl, type UpdateOrderShippingAddressResponse as gm, type UpdateBillingContactDetailsRequest as gn, type UpdateBillingContactDetailsResponse as go, type UpdateOrderLineItemRequest as gp, type UpdateOrderLineItemsRequest as gq, type MaskedOrderLineItem as gr, type UpdateOrderLineItemsResponse as gs, type AddInternalActivityRequest as gt, type InternalActivity as gu, type InternalActivityContentOneOf as gv, type OrderPlaced as gw, type OrderPaid as gx, type OrderFulfilled as gy, type OrderNotFulfilled as gz, type GetRefundabilityStatusResponse as h, type DiscountOneDiscountTypeOneOf as h$, type UpdateOrderStatusRequest as h0, type MarkAsFulfilledRequest as h1, type MarkAsFulfilledResponse as h2, type FulfillmentStatusUpdated as h3, type BulkMarkAsFulfilledRequest as h4, type BulkMarkAsFulfilledResponse as h5, type BulkMarkAsFulfilledByFilterRequest as h6, type BulkMarkAsFulfilledByFilterResponse as h7, type MarkAsUnfulfilledRequest as h8, type MarkAsUnfulfilledResponse as h9, type Complete as hA, type Cancel as hB, type Reschedule as hC, type InvoiceSentEvent as hD, type IdAndVersion as hE, type InvoiceFields as hF, type Customer as hG, type Email as hH, type QuotesAddress as hI, type AddressDescription as hJ, type Phone as hK, type Company as hL, type CommonAddress as hM, type CommonAddressStreetOneOf as hN, type Subdivision as hO, type StandardDetails as hP, type InvoiceDates as hQ, type LineItems as hR, type LineItem as hS, type BigDecimalWrapper as hT, type LineItemTax as hU, type Source as hV, type LineItemMetaData as hW, type Locale as hX, type TotalPrice as hY, type ItemizedFee as hZ, type Discount as h_, type BulkMarkAsUnfulfilledRequest as ha, type BulkMarkAsUnfulfilledResponse as hb, type BulkMarkAsUnfulfilledByFilterRequest as hc, type BulkMarkAsUnfulfilledByFilterResponse as hd, type BulkSetBusinessLocationRequest as he, type BulkSetBusinessLocationResponse as hf, type BulkSetBusinessLocationResult as hg, type V1MarkOrderAsPaidRequest as hh, type V1MarkOrderAsPaidResponse as hi, type PaymentStatusUpdated as hj, type V1BulkMarkOrdersAsPaidRequest as hk, type V1BulkMarkOrdersAsPaidResponse as hl, type V1CreatePaymentGatewayOrderRequest as hm, type V1CreatePaymentGatewayOrderResponse as hn, type GetShipmentsRequest as ho, type GetShipmentsResponse as hp, type AggregateOrdersRequest as hq, type DecrementItemsQuantityRequest as hr, type DecrementData as hs, type DecrementItemsQuantityResponse as ht, type BulkUpdateOrderTagsRequest as hu, type BulkUpdateOrderTagsResult as hv, type Task as hw, type TaskKey as hx, type TaskAction as hy, type TaskActionActionOneOf as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, type ValueTypeWithLiterals as i$, type CalculatedTaxes as i0, type CalculatedTax as i1, type Payments as i2, type InvoicesPayment as i3, type MetaData as i4, type InvoiceDynamicPriceTotals as i5, type CustomFieldValue as i6, type Value as i7, type Deposit as i8, type BaseEventMetadata as i9, type ChargeTypeWithLiterals as iA, type WebhookIdentityTypeWithLiterals as iB, type PreviewEmailTypeWithLiterals as iC, type ScheduledActionWithLiterals as iD, type DurationUnitWithLiterals as iE, type PaymentCollectabilityStatusWithLiterals as iF, type RefundableStatusWithLiterals as iG, type NonRefundableReasonWithLiterals as iH, type ManuallyRefundableReasonWithLiterals as iI, type RestockTypeWithLiterals as iJ, type TransactionStatusWithLiterals as iK, type AuthorizationCaptureStatusWithLiterals as iL, type AuthorizationVoidStatusWithLiterals as iM, type ReasonWithLiterals as iN, type ActionTypeWithLiterals as iO, type ChargebackStatusWithLiterals as iP, type MembershipPaymentStatusWithLiterals as iQ, type RefundStatusWithLiterals as iR, type VersioningModeWithLiterals as iS, type SortOrderWithLiterals as iT, type OrderApprovalStrategyWithLiterals as iU, type DeltaPaymentOptionTypeWithLiterals as iV, type InventoryActionWithLiterals as iW, type PlacementWithLiterals as iX, type SubdivisionTypeWithLiterals as iY, type SourceTypeWithLiterals as iZ, type CustomFieldGroupWithLiterals as i_, type EventMetadata as ia, type AccountInfoMetadata as ib, type OrderSearchSpec as ic, type DescriptionLineTypeWithLiterals as id, type ItemTypePresetWithLiterals as ie, type PaymentOptionTypeWithLiterals as ig, type JurisdictionTypeWithLiterals as ih, type SubscriptionFrequencyWithLiterals as ii, type AdjustmentTypeWithLiterals as ij, type TaxableAddressTypeWithLiterals as ik, type PaymentStatusWithLiterals as il, type FulfillmentStatusWithLiterals as im, type WeightUnitWithLiterals as io, type VatTypeWithLiterals as ip, type PickupMethodWithLiterals as iq, type DiscountTypeWithLiterals as ir, type DiscountReasonWithLiterals as is, type LineItemQuantityChangeTypeWithLiterals as it, type ActivityTypeWithLiterals as iu, type OrderActivityTypeEnumActivityTypeWithLiterals as iv, type AttributionSourceWithLiterals as iw, type ChannelTypeWithLiterals as ix, type AdditionalFeeSourceWithLiterals as iy, type OrderActionTypeWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, type DepositTypeWithLiterals as j0, type InvoiceStatusWithLiterals as j1, type CommonSearchWithEntityContext as j2, onOrderApproved as j3, onOrderUpdated as j4, onOrderCanceled as j5, onOrderCreated as j6, onOrderPaymentStatusUpdated as j7, importOrder as j8, setOrderNumberCounter as j9, bulkDeleteImportedOrders as ja, preparePaymentCollection as jb, getPaymentCollectabilityStatus as jc, recordManuallyCollectedPayment as jd, paymentCollectionMarkOrderAsPaid as je, paymentCollectionBulkMarkOrdersAsPaid as jf, getRefundabilityStatus as jg, paymentCollectionCreatePaymentGatewayOrder as jh, chargeMemberships as ji, triggerRefund as jj, voidAuthorizedPayments as jk, captureAuthorizedPayments as jl, getOrder as jm, createOrder as jn, updateOrder as jo, bulkUpdateOrders as jp, updateOrderLineItem as jq, addActivity as jr, addActivities as js, updateActivity as jt, deleteActivity as ju, cancelOrder as jv, updateOrderStatus as jw, aggregateOrders as jx, bulkUpdateOrderTags as jy, type ChargeMembershipsOptions as k, type PaymentRefund as l, type TriggerRefundResponse as m, type TriggerRefundApplicationErrors as n, type VoidAuthorizedPaymentsApplicationErrors as o, type PaymentCapture as p, type CaptureAuthorizedPaymentsResponse as q, type CaptureAuthorizedPaymentsApplicationErrors as r, type GetOrderApplicationErrors as s, type OrderSearch as t, type SearchOrdersResponse as u, type CreateOrderOptions as v, type CreateOrderApplicationErrors as w, type UpdateOrderApplicationErrors as x, type MaskedOrder as y, type BulkUpdateOrdersOptions as z };
|
|
@@ -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 RecordManuallyCollectedPaymentApplicationErrors, M as MarkOrderAsPaidResponse, f as PaymentCollectionMarkOrderAsPaidApplicationErrors, g as BulkMarkOrdersAsPaidResponse, h as GetRefundabilityStatusResponse, i as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, j as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, k as ChargeMembershipsOptions, l as PaymentRefund, T as TriggerRefundOptions, m as TriggerRefundResponse, n as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, o as VoidAuthorizedPaymentsApplicationErrors, p as PaymentCapture, q as CaptureAuthorizedPaymentsResponse, r as CaptureAuthorizedPaymentsApplicationErrors, s as GetOrderApplicationErrors, t as OrderSearch, u as SearchOrdersResponse, v as CreateOrderOptions, w as CreateOrderApplicationErrors, U as UpdateOrder, x as UpdateOrderApplicationErrors, y as MaskedOrder, z as BulkUpdateOrdersOptions, A as BulkUpdateOrdersResponse, D as UpdateOrderLineItemIdentifiers, E as UpdateOrderLineItem, F as UpdateOrderLineItemResponse, H as PublicActivity, J as AddActivityResponse, K as AddActivitiesOptions, L as AddActivitiesResponse, N as UpdateActivityIdentifiers, Q as UpdateActivityResponse, W as DeleteActivityIdentifiers, X as DeleteActivityResponse, Y as CancelOrderOptions, Z as CancelOrderResponse, _ as CancelOrderApplicationErrors, $ as OrderStatusWithLiterals, a0 as UpdateOrderStatusResponse, a1 as UpdateOrderStatusApplicationErrors, a2 as AggregateOrdersOptions, a3 as AggregateOrdersResponse, a4 as BulkUpdateOrderTagsOptions, a5 as BulkUpdateOrderTagsResponse, a6 as OrderApprovedEnvelope, a7 as OrderUpdatedEnvelope, a8 as OrderCanceledEnvelope, a9 as OrderCreatedEnvelope, aa as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { du as AccountInfo, ib as AccountInfoMetadata, dq as ActionEvent, aM as ActionType, iP as ActionTypeWithLiterals, b_ as Activity, b$ as ActivityContentOneOf, ar as ActivityType, iu as ActivityTypeWithLiterals, gS as AddActivitiesRequest, gQ as AddActivityRequest, gt as AddInternalActivityRequest, gP as AddInternalActivityResponse, cX as AdditionalFee, fW as AdditionalFeeDelta, fX as AdditionalFeeDeltaDeltaOneOf, e9 as AdditionalFeeRefund, av as AdditionalFeeSource, iy as AdditionalFeeSourceWithLiterals, bA as Address, hJ as AddressDescription, bC as AddressLocation, bz as AddressWithContact, ag as AdjustmentType, ij as AdjustmentTypeWithLiterals, hq as AggregateOrdersRequest, f9 as AggregatedRefundSummary, eB as ApplicationError, bQ as AppliedDiscount, fU as AppliedDiscountDelta, fV as AppliedDiscountDeltaDeltaOneOf, bR as AppliedDiscountDiscountSourceOneOf, g4 as ArchiveOrderRequest, g5 as ArchiveOrderResponse, at as AttributionSource, iw as AttributionSourceWithLiterals, e_ as AuthorizationActionFailureDetails, eZ as AuthorizationCapture, aJ as AuthorizationCaptureStatus, iM as AuthorizationCaptureStatusWithLiterals, eY as AuthorizationDetails, e$ as AuthorizationVoid, aK as AuthorizationVoidStatus, iN as AuthorizationVoidStatusWithLiterals, cp as AuthorizedPaymentCaptured, co as AuthorizedPaymentCreated, cq as AuthorizedPaymentVoided, cW as Balance, cV as BalanceSummary, i9 as BaseEventMetadata, dJ as BatchOfTriggerReindexOrderRequest, hT as BigDecimalWrapper, bl as BillingAdjustment, bm as BillingAdjustmentPriceSummary, eC as BulkActionMetadata, g8 as BulkArchiveOrdersByFilterRequest, g9 as BulkArchiveOrdersByFilterResponse, g6 as BulkArchiveOrdersRequest, g7 as BulkArchiveOrdersResponse, di as BulkDeleteImportedOrdersRequest, h6 as BulkMarkAsFulfilledByFilterRequest, h7 as BulkMarkAsFulfilledByFilterResponse, h4 as BulkMarkAsFulfilledRequest, h5 as BulkMarkAsFulfilledResponse, hc as BulkMarkAsUnfulfilledByFilterRequest, hd as BulkMarkAsUnfulfilledByFilterResponse, ha as BulkMarkAsUnfulfilledRequest, hb as BulkMarkAsUnfulfilledResponse, ey as BulkMarkOrdersAsPaidRequest, ez as BulkOrderResult, dR as BulkSendBuyerPickupConfirmationEmailsRequest, dS as BulkSendBuyerPickupConfirmationEmailsResponse, dV as BulkSendBuyerShippingConfirmationEmailsRequest, dW as BulkSendBuyerShippingConfirmationEmailsResponse, he as BulkSetBusinessLocationRequest, hf as BulkSetBusinessLocationResponse, hg as BulkSetBusinessLocationResult, ge as BulkUnArchiveOrdersByFilterRequest, gf as BulkUnArchiveOrdersByFilterResponse, gc as BulkUnArchiveOrdersRequest, gd as BulkUnArchiveOrdersResponse, hu as BulkUpdateOrderTagsRequest, hv as BulkUpdateOrderTagsResult, fJ as BulkUpdateOrdersRequest, bv as BuyerInfo, bw as BuyerInfoIdOneOf, gh as BuyerInfoUpdate, fd as CalculateRefundItemRequest, ff as CalculateRefundItemResponse, fc as CalculateRefundRequest, fe as CalculateRefundResponse, i1 as CalculatedTax, i0 as CalculatedTaxes, hB as Cancel, g_ as CancelOrderRequest, fh as CaptureAuthorizedPaymentsRequest, b1 as CatalogReference, cT as ChannelInfo, au as ChannelType, ix as ChannelTypeWithLiterals, eI as ChargeMembershipsRequest, eM as ChargeMembershipsResponse, fi as ChargeSavedPaymentMethodRequest, fj as ChargeSavedPaymentMethodResponse, ax as ChargeType, iA as ChargeTypeWithLiterals, f1 as Chargeback, cP as ChargebackCreated, cQ as ChargebackReversed, aN as ChargebackStatus, iQ as ChargebackStatusWithLiterals, eH as ChargedBy, b7 as Color, fK as CommitDeltasRequest, f_ as CommitDeltasResponse, g0 as CommittedDiffs, g1 as CommittedDiffsShippingUpdateInfoOneOf, hM as CommonAddress, hN as CommonAddressStreetOneOf, j2 as CommonSearchWithEntityContext, hL as Company, hA as Complete, bS as Coupon, fD as CreateOrderRequest, fG as CreateOrderResponse, eG as CreatePaymentGatewayOrderRequest, cR as CreatedBy, cS as CreatedByStringOneOf, cE as CreditCardDetails, eX as CreditCardPaymentMethodDetails, bx as CurrencyConversionDetails, ft as CursorPaging, fC as CursorPagingMetadata, fA as CursorSearch, fB as CursorSearchPagingMethodOneOf, fw as Cursors, c0 as CustomActivity, d3 as CustomAllowedActions, cU as CustomField, aX as CustomFieldGroup, i_ as CustomFieldGroupWithLiterals, i6 as CustomFieldValue, hG as Customer, hs as DecrementData, hr as DecrementItemsQuantityRequest, ht as DecrementItemsQuantityResponse, es as DelayedCaptureSettings, gU as DeleteActivityRequest, dA as DeleteByFilterOperation, dz as DeleteByIdsOperation, bG as DeliveryLogistics, bH as DeliveryLogisticsAddressOneOf, bK as DeliveryTimeSlot, aS as DeltaPaymentOptionType, iV as DeltaPaymentOptionTypeWithLiterals, i8 as Deposit, aZ as DepositType, j0 as DepositTypeWithLiterals, b2 as DescriptionLine, b4 as DescriptionLineDescriptionLineValueOneOf, b5 as DescriptionLineName, ab as DescriptionLineType, id as DescriptionLineTypeWithLiterals, b3 as DescriptionLineValueOneOf, fk as DiffmatokyPayload, bf as DigitalFile, h_ as Discount, h$ as DiscountOneDiscountTypeOneOf, ap as DiscountReason, is as DiscountReasonWithLiterals, bV as DiscountRule, bW as DiscountRuleName, ao as DiscountType, ir as DiscountTypeWithLiterals, dj as DomainEvent, dk as DomainEventBodyOneOf, gB as DownloadLinkSent, c6 as DraftOrderChangesApplied, fY as DraftOrderCommitSettings, fL as DraftOrderDiffs, fO as DraftOrderDiffsBillingUpdateInfoOneOf, fN as DraftOrderDiffsBuyerUpdateInfoOneOf, fP as DraftOrderDiffsRecipientUpdateInfoOneOf, fM as DraftOrderDiffsShippingUpdateInfoOneOf, et as Duration, aC as DurationUnit, iF as DurationUnitWithLiterals, hH as Email, gK as EmailEdited, dI as Empty, dl as EntityCreatedEvent, dp as EntityDeletedEvent, dn as EntityUpdatedEvent, fl as ErrorInformation, ia as EventMetadata, br as ExtendedFields, cM as ExternalReceipt, f5 as ExternalReceiptInfo, b8 as FocalPoint, d6 as FormIdentifier, d5 as FormInfo, bk as FreeTrialPeriod, gI as FulfillerEmailSent, aj as FulfillmentStatus, h3 as FulfillmentStatusUpdated, im as FulfillmentStatusWithLiterals, cY as FulfillmentStatusesAggregate, bD as FullAddressContactDetails, fm as GetOrderRequest, fn as GetOrderResponse, eu as GetPaymentCollectabilityStatusRequest, eD as GetRefundabilityStatusRequest, ho as GetShipmentsRequest, hp as GetShipmentsResponse, f2 as GiftCardPaymentDetails, cv as GiftCardPaymentRefund, hE as IdAndVersion, ds as IdentificationData, dt as IdentificationDataIdOneOf, dg as ImportOrderRequest, df as ImportedOrderDeleted, gu as InternalActivity, gv as InternalActivityContentOneOf, dx as InternalDocument, dB as InternalDocumentUpdateByFilterOperation, dy as InternalDocumentUpdateOperation, fo as InternalQueryOrdersRequest, fu as InternalQueryOrdersResponse, dC as InternalUpdateExistingOperation, aT as InventoryAction, iW as InventoryActionWithLiterals, fZ as InventoryUpdateDetails, gG as InvoiceAdded, hQ as InvoiceDates, i5 as InvoiceDynamicPriceTotals, hF as InvoiceFields, gH as InvoiceSent, hD as InvoiceSentEvent, a_ as InvoiceStatus, j1 as InvoiceStatusWithLiterals, i3 as InvoicesPayment, fT as ItemChangedDetails, bY as ItemCombination, bZ as ItemCombinationLineItem, eA as ItemMetadata, bu as ItemModifier, bc as ItemTaxFullDetails, ba as ItemType, bb as ItemTypeItemTypeDataOneOf, ac as ItemTypePreset, ie as ItemTypePresetWithLiterals, hZ as ItemizedFee, ae as JurisdictionType, ih as JurisdictionTypeWithLiterals, hS as LineItem, ci as LineItemAmount, c9 as LineItemChanges, g2 as LineItemDelta, g3 as LineItemDeltaDeltaOneOf, cd as LineItemDescriptionLineChange, bX as LineItemDiscount, c5 as LineItemExchangeData, hW as LineItemMetaData, ce as LineItemModifiersChange, cb as LineItemPriceChange, cc as LineItemProductNameChange, ca as LineItemQuantityChange, aq as LineItemQuantityChangeType, it as LineItemQuantityChangeTypeWithLiterals, e8 as LineItemRefund, fb as LineItemRefundSummary, hU as LineItemTax, be as LineItemTaxBreakdown, bd as LineItemTaxInfo, gW as LineItemUpdate, hR as LineItems, hX as Locale, c$ as Location, bo as LocationAndQuantity, cj as ManagedAdditionalFee, cg as ManagedDiscount, cf as ManagedLineItem, aG as ManuallyRefundableReason, iJ as ManuallyRefundableReasonWithLiterals, h1 as MarkAsFulfilledRequest, h2 as MarkAsFulfilledResponse, h8 as MarkAsUnfulfilledRequest, h9 as MarkAsUnfulfilledResponse, ex as MarkOrderAsPaidRequest, gY as MarkOrderAsSeenByHumanRequest, gZ as MarkOrderAsSeenByHumanResponse, gr as MaskedOrderLineItem, eJ as MembershipChargeItem, eK as MembershipName, f3 as MembershipPaymentDetails, cw as MembershipPaymentRefund, aO as MembershipPaymentStatus, iR as MembershipPaymentStatusWithLiterals, c1 as MerchantComment, bT as MerchantDiscount, bU as MerchantDiscountMerchantDiscountReasonOneOf, dr as MessageEnvelope, i4 as MetaData, bs as ModifierGroup, c4 as NewExchangeOrderCreated, aF as NonRefundableReason, iI as NonRefundableReasonWithLiterals, aw as OrderActionType, iz as OrderActionTypeWithLiterals, as as OrderActivityTypeEnumActivityType, iv as OrderActivityTypeEnumActivityTypeWithLiterals, aR as OrderApprovalStrategy, iU as OrderApprovalStrategyWithLiterals, d9 as OrderApproved, gA as OrderCanceled, g$ as OrderCanceledEventOrderCanceled, c7 as OrderChange, c8 as OrderChangeValueOneOf, fF as OrderCreateNotifications, c3 as OrderCreatedFromExchange, fE as OrderCreationSettings, f$ as OrderDeltasCommitted, gy as OrderFulfilled, de as OrderImported, dc as OrderItemsRestocked, a$ as OrderLineItem, fS as OrderLineItemChangedDetails, gz as OrderNotFulfilled, gx as OrderPaid, gM as OrderPartiallyPaid, gN as OrderPending, gw as OrderPlaced, c2 as OrderRefunded, gO as OrderRejected, db as OrderRejectedEventOrderRejected, ic as OrderSearchSpec, d0 as OrderSettings, d1 as OrderSettingsAllowedActionsOneOf, d2 as OrderSettingsEditableByOneOf, an as OrderStatus, bP as OrderTaxBreakdown, bO as OrderTaxInfo, eR as OrderTransactions, da as OrdersExperiments, d4 as OwnerApps, eS as Payment, cF as PaymentCanceled, cG as PaymentCanceledPaymentDetailsOneOf, aD as PaymentCollectabilityStatus, iG as PaymentCollectabilityStatusWithLiterals, cH as PaymentDeclined, cI as PaymentDeclinedPaymentDetailsOneOf, ad as PaymentOptionType, ig as PaymentOptionTypeWithLiterals, eT as PaymentPaymentDetailsOneOf, cA as PaymentPending, cB as PaymentPendingPaymentDetailsOneOf, eU as PaymentReceiptInfoOneOf, cy as PaymentRefundFailed, cx as PaymentRefunded, ai as PaymentStatus, hj as PaymentStatusUpdated, il as PaymentStatusWithLiterals, i2 as Payments, hK as Phone, b9 as PhysicalProperties, bJ as PickupAddress, bI as PickupDetails, am as PickupMethod, iq as PickupMethodWithLiterals, gL as PickupReadyEmailSent, aU as Placement, iX as PlacementWithLiterals, b6 as PlainTextValue, d8 as PlatformFee, d7 as PlatformFeeSummary, fs as PlatformPaging, fv as PlatformPagingMetadata, fp as PlatformQuery, fq as PlatformQueryPagingMethodOneOf, eq as PreparePaymentCollectionRequest, ei as PreviewBuyerConfirmationEmailRequest, ej as PreviewBuyerConfirmationEmailResponse, eg as PreviewBuyerPaymentsReceivedEmailRequest, eh as PreviewBuyerPaymentsReceivedEmailResponse, ek as PreviewBuyerPickupConfirmationEmailRequest, el as PreviewBuyerPickupConfirmationEmailResponse, ec as PreviewCancelEmailRequest, ed as PreviewCancelEmailResponse, ee as PreviewCancelRefundEmailRequest, ef as PreviewCancelRefundEmailResponse, e3 as PreviewEmailByTypeRequest, e4 as PreviewEmailByTypeResponse, aA as PreviewEmailType, iD as PreviewEmailTypeWithLiterals, e5 as PreviewRefundEmailRequest, eb as PreviewRefundEmailResponse, eo as PreviewResendDownloadLinksEmailRequest, ep as PreviewResendDownloadLinksEmailResponse, em as PreviewShippingConfirmationEmailRequest, en as PreviewShippingConfirmationEmailResponse, bn as PriceDescription, by as PriceSummary, b0 as ProductName, gR as PublicActivityContentOneOf, fx as QueryOrderRequest, fy as QueryOrderResponse, hI as QuotesAddress, aL as Reason, iO as ReasonWithLiterals, cJ as ReceiptCreated, cK as ReceiptCreatedReceiptInfoOneOf, cN as ReceiptSent, cO as ReceiptSentReceiptInfoOneOf, ev as RecordManuallyCollectedPaymentRequest, ew as RecordManuallyCollectedPaymentResponse, er as RedirectUrls, f6 as Refund, e6 as RefundDetails, cr as RefundInitiated, e7 as RefundItem, fa as RefundItemsBreakdown, eO as RefundSideEffects, aP as RefundStatus, f8 as RefundStatusInfo, iS as RefundStatusWithLiterals, f7 as RefundTransaction, eE as Refundability, eF as RefundabilityAdditionalRefundabilityInfoOneOf, aE as RefundableStatus, iH as RefundableStatusWithLiterals, cz as RefundedAsStoreCredit, cs as RefundedPayment, ct as RefundedPaymentKindOneOf, cC as RegularPayment, eV as RegularPaymentDetails, eW as RegularPaymentDetailsPaymentMethodDetailsOneOf, cD as RegularPaymentPaymentMethodDetailsOneOf, cu as RegularPaymentRefund, hC as Reschedule, eP as RestockInfo, eQ as RestockItem, aH as RestockType, iK as RestockTypeWithLiterals, dm as RestoreInfo, cn as SavedPaymentMethod, aB as ScheduledAction, iE as ScheduledActionWithLiterals, fz as SearchOrdersRequest, dL as SendBuyerConfirmationEmailRequest, dM as SendBuyerConfirmationEmailResponse, dN as SendBuyerPaymentsReceivedEmailRequest, dO as SendBuyerPaymentsReceivedEmailResponse, dP as SendBuyerPickupConfirmationEmailRequest, dQ as SendBuyerPickupConfirmationEmailResponse, dT as SendBuyerShippingConfirmationEmailRequest, dU as SendBuyerShippingConfirmationEmailResponse, dZ as SendCancelRefundEmailRequest, d_ as SendCancelRefundEmailResponse, dX as SendMerchantOrderReceivedNotificationRequest, dY as SendMerchantOrderReceivedNotificationResponse, e1 as SendMerchantOrderReceivedPushRequest, e2 as SendMerchantOrderReceivedPushResponse, d$ as SendRefundEmailRequest, e0 as SendRefundEmailResponse, eL as ServiceProperties, dh as SetOrderNumberCounterRequest, gJ as ShippingAddressEdited, gF as ShippingConfirmationEmailSent, cm as ShippingInformation, cl as ShippingInformationChange, bL as ShippingPrice, ea as ShippingRefund, bM as ShippingRegion, aQ as SortOrder, iT as SortOrderWithLiterals, fr as Sorting, hV as Source, aW as SourceType, iZ as SourceTypeWithLiterals, hP as StandardDetails, bB as StreetAddress, hO as Subdivision, aV as SubdivisionType, iY as SubdivisionTypeWithLiterals, bi as SubscriptionDescription, af as SubscriptionFrequency, ii as SubscriptionFrequencyWithLiterals, bg as SubscriptionInfo, bj as SubscriptionSettings, bh as SubscriptionTitle, c_ as TagList, cZ as Tags, hw as Task, hy as TaskAction, hz as TaskActionActionOneOf, hx as TaskKey, bN as TaxSummary, bp as TaxableAddress, bq as TaxableAddressTaxableAddressDataOneOf, ah as TaxableAddressType, ik as TaxableAddressTypeWithLiterals, hY as TotalPrice, ck as TotalPriceChange, gE as TrackingLinkAdded, gC as TrackingNumberAdded, gD as TrackingNumberEdited, aI as TransactionStatus, iL as TransactionStatusWithLiterals, bt as TranslatableString, ch as TranslatedValue, eN as TriggerRefundRequest, dK as TriggerReindexOrderRequest, dG as TriggerReindexRequest, dH as TriggerReindexResponse, ga as UnArchiveOrderRequest, gb as UnArchiveOrderResponse, gT as UpdateActivityRequest, gn as UpdateBillingContactDetailsRequest, go as UpdateBillingContactDetailsResponse, gj as UpdateBuyerEmailRequest, gk as UpdateBuyerEmailResponse, gg as UpdateBuyerInfoRequest, gi as UpdateBuyerInfoResponse, dv as UpdateInternalDocumentsEvent, dw as UpdateInternalDocumentsEventOperationOneOf, gV as UpdateLineItemsDescriptionLinesRequest, gX as UpdateLineItemsDescriptionLinesResponse, gp as UpdateOrderLineItemRequest, gq as UpdateOrderLineItemsRequest, gs as UpdateOrderLineItemsResponse, fH as UpdateOrderRequest, fI as UpdateOrderResponse, gl as UpdateOrderShippingAddressRequest, gm as UpdateOrderShippingAddressResponse, h0 as UpdateOrderStatusRequest, hk as V1BulkMarkOrdersAsPaidRequest, hl as V1BulkMarkOrdersAsPaidResponse, hm as V1CreatePaymentGatewayOrderRequest, hn as V1CreatePaymentGatewayOrderResponse, fQ as V1LineItemDelta, fR as V1LineItemDeltaDeltaOneOf, hh as V1MarkOrderAsPaidRequest, hi as V1MarkOrderAsPaidResponse, dd as V1RestockItem, f0 as V1ScheduledAction, bF as V1ShippingInformation, i7 as Value, aY as ValueType, i$ as ValueTypeWithLiterals, bE as VatId, al as VatType, ip as VatTypeWithLiterals, dE as VersionedDeleteByIdsOperation, dF as VersionedDocumentId, dD as VersionedDocumentUpdateOperation, az as VersioningMode, iC as VersioningModeWithLiterals, fg as VoidAuthorizedPaymentsRequest, ay as WebhookIdentityType, iB as WebhookIdentityTypeWithLiterals, ak as WeightUnit, io as WeightUnitWithLiterals, cL as WixReceipt, f4 as WixReceiptInfo } from './ecom-v1-order-orders.universal-ClLqcVyj.js';
|
|
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 RecordManuallyCollectedPaymentApplicationErrors, M as MarkOrderAsPaidResponse, f as PaymentCollectionMarkOrderAsPaidApplicationErrors, g as BulkMarkOrdersAsPaidResponse, h as GetRefundabilityStatusResponse, i as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, j as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, k as ChargeMembershipsOptions, l as PaymentRefund, T as TriggerRefundOptions, m as TriggerRefundResponse, n as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, o as VoidAuthorizedPaymentsApplicationErrors, p as PaymentCapture, q as CaptureAuthorizedPaymentsResponse, r as CaptureAuthorizedPaymentsApplicationErrors, s as GetOrderApplicationErrors, t as OrderSearch, u as SearchOrdersResponse, v as CreateOrderOptions, w as CreateOrderApplicationErrors, U as UpdateOrder, x as UpdateOrderApplicationErrors, y as MaskedOrder, z as BulkUpdateOrdersOptions, A as BulkUpdateOrdersResponse, D as UpdateOrderLineItemIdentifiers, E as UpdateOrderLineItem, F as UpdateOrderLineItemResponse, H as PublicActivity, J as AddActivityResponse, K as AddActivitiesOptions, L as AddActivitiesResponse, N as UpdateActivityIdentifiers, Q as UpdateActivityResponse, W as DeleteActivityIdentifiers, X as DeleteActivityResponse, Y as CancelOrderOptions, Z as CancelOrderResponse, _ as CancelOrderApplicationErrors, $ as OrderStatusWithLiterals, a0 as UpdateOrderStatusResponse, a1 as UpdateOrderStatusApplicationErrors, a2 as AggregateOrdersOptions, a3 as AggregateOrdersResponse, a4 as BulkUpdateOrderTagsOptions, a5 as BulkUpdateOrderTagsResponse, a6 as OrderApprovedEnvelope, a7 as OrderUpdatedEnvelope, a8 as OrderCanceledEnvelope, a9 as OrderCreatedEnvelope, aa as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-BoI3BNkc.js';
|
|
3
|
+
export { du as AccountInfo, ib as AccountInfoMetadata, dq as ActionEvent, aL as ActionType, iO as ActionTypeWithLiterals, b_ as Activity, b$ as ActivityContentOneOf, ar as ActivityType, iu as ActivityTypeWithLiterals, gS as AddActivitiesRequest, gQ as AddActivityRequest, gt as AddInternalActivityRequest, gP as AddInternalActivityResponse, cX as AdditionalFee, fW as AdditionalFeeDelta, fX as AdditionalFeeDeltaDeltaOneOf, dV as AdditionalFeeRefund, av as AdditionalFeeSource, iy as AdditionalFeeSourceWithLiterals, bA as Address, hJ as AddressDescription, bC as AddressLocation, bz as AddressWithContact, ag as AdjustmentType, ij as AdjustmentTypeWithLiterals, hq as AggregateOrdersRequest, eW as AggregatedRefundSummary, em as ApplicationError, bQ as AppliedDiscount, fU as AppliedDiscountDelta, fV as AppliedDiscountDeltaDeltaOneOf, bR as AppliedDiscountDiscountSourceOneOf, g4 as ArchiveOrderRequest, g5 as ArchiveOrderResponse, at as AttributionSource, iw as AttributionSourceWithLiterals, eL as AuthorizationActionFailureDetails, eK as AuthorizationCapture, aI as AuthorizationCaptureStatus, iL as AuthorizationCaptureStatusWithLiterals, eJ as AuthorizationDetails, eM as AuthorizationVoid, aJ as AuthorizationVoidStatus, iM as AuthorizationVoidStatusWithLiterals, cp as AuthorizedPaymentCaptured, co as AuthorizedPaymentCreated, cq as AuthorizedPaymentVoided, cW as Balance, cV as BalanceSummary, i9 as BaseEventMetadata, fi as BatchOfTriggerReindexOrderRequest, hT as BigDecimalWrapper, bl as BillingAdjustment, bm as BillingAdjustmentPriceSummary, en as BulkActionMetadata, g8 as BulkArchiveOrdersByFilterRequest, g9 as BulkArchiveOrdersByFilterResponse, g6 as BulkArchiveOrdersRequest, g7 as BulkArchiveOrdersResponse, di as BulkDeleteImportedOrdersRequest, h6 as BulkMarkAsFulfilledByFilterRequest, h7 as BulkMarkAsFulfilledByFilterResponse, h4 as BulkMarkAsFulfilledRequest, h5 as BulkMarkAsFulfilledResponse, hc as BulkMarkAsUnfulfilledByFilterRequest, hd as BulkMarkAsUnfulfilledByFilterResponse, ha as BulkMarkAsUnfulfilledRequest, hb as BulkMarkAsUnfulfilledResponse, ej as BulkMarkOrdersAsPaidRequest, ek as BulkOrderResult, dB as BulkSendBuyerPickupConfirmationEmailsRequest, dC as BulkSendBuyerPickupConfirmationEmailsResponse, dF as BulkSendBuyerShippingConfirmationEmailsRequest, dG as BulkSendBuyerShippingConfirmationEmailsResponse, he as BulkSetBusinessLocationRequest, hf as BulkSetBusinessLocationResponse, hg as BulkSetBusinessLocationResult, ge as BulkUnArchiveOrdersByFilterRequest, gf as BulkUnArchiveOrdersByFilterResponse, gc as BulkUnArchiveOrdersRequest, gd as BulkUnArchiveOrdersResponse, hu as BulkUpdateOrderTagsRequest, hv as BulkUpdateOrderTagsResult, fJ as BulkUpdateOrdersRequest, bv as BuyerInfo, bw as BuyerInfoIdOneOf, gh as BuyerInfoUpdate, e_ as CalculateRefundItemRequest, f0 as CalculateRefundItemResponse, eZ as CalculateRefundRequest, e$ as CalculateRefundResponse, i1 as CalculatedTax, i0 as CalculatedTaxes, hB as Cancel, g_ as CancelOrderRequest, f2 as CaptureAuthorizedPaymentsRequest, b1 as CatalogReference, cT as ChannelInfo, au as ChannelType, ix as ChannelTypeWithLiterals, et as ChargeMembershipsRequest, ex as ChargeMembershipsResponse, f3 as ChargeSavedPaymentMethodRequest, f4 as ChargeSavedPaymentMethodResponse, ax as ChargeType, iA as ChargeTypeWithLiterals, eO as Chargeback, cP as ChargebackCreated, cQ as ChargebackReversed, aM as ChargebackStatus, iP as ChargebackStatusWithLiterals, es as ChargedBy, b7 as Color, fK as CommitDeltasRequest, f_ as CommitDeltasResponse, g0 as CommittedDiffs, g1 as CommittedDiffsShippingUpdateInfoOneOf, hM as CommonAddress, hN as CommonAddressStreetOneOf, j2 as CommonSearchWithEntityContext, hL as Company, hA as Complete, bS as Coupon, fD as CreateOrderRequest, fG as CreateOrderResponse, er as CreatePaymentGatewayOrderRequest, cR as CreatedBy, cS as CreatedByStringOneOf, cE as CreditCardDetails, eI as CreditCardPaymentMethodDetails, bx as CurrencyConversionDetails, ft as CursorPaging, fC as CursorPagingMetadata, fA as CursorSearch, fB as CursorSearchPagingMethodOneOf, fw as Cursors, c0 as CustomActivity, d3 as CustomAllowedActions, cU as CustomField, aX as CustomFieldGroup, i_ as CustomFieldGroupWithLiterals, i6 as CustomFieldValue, hG as Customer, hs as DecrementData, hr as DecrementItemsQuantityRequest, ht as DecrementItemsQuantityResponse, ed as DelayedCaptureSettings, gU as DeleteActivityRequest, fa as DeleteByFilterOperation, f9 as DeleteByIdsOperation, bG as DeliveryLogistics, bH as DeliveryLogisticsAddressOneOf, bK as DeliveryTimeSlot, aS as DeltaPaymentOptionType, iV as DeltaPaymentOptionTypeWithLiterals, i8 as Deposit, aZ as DepositType, j0 as DepositTypeWithLiterals, b2 as DescriptionLine, b4 as DescriptionLineDescriptionLineValueOneOf, b5 as DescriptionLineName, ab as DescriptionLineType, id as DescriptionLineTypeWithLiterals, b3 as DescriptionLineValueOneOf, fk as DiffmatokyPayload, bf as DigitalFile, h_ as Discount, h$ as DiscountOneDiscountTypeOneOf, ap as DiscountReason, is as DiscountReasonWithLiterals, bV as DiscountRule, bW as DiscountRuleName, ao as DiscountType, ir as DiscountTypeWithLiterals, dj as DomainEvent, dk as DomainEventBodyOneOf, gB as DownloadLinkSent, c6 as DraftOrderChangesApplied, fY as DraftOrderCommitSettings, fL as DraftOrderDiffs, fO as DraftOrderDiffsBillingUpdateInfoOneOf, fN as DraftOrderDiffsBuyerUpdateInfoOneOf, fP as DraftOrderDiffsRecipientUpdateInfoOneOf, fM as DraftOrderDiffsShippingUpdateInfoOneOf, ee as Duration, aB as DurationUnit, iE as DurationUnitWithLiterals, hH as Email, gK as EmailEdited, ea as Empty, dl as EntityCreatedEvent, dp as EntityDeletedEvent, dn as EntityUpdatedEvent, fl as ErrorInformation, ia as EventMetadata, br as ExtendedFields, cM as ExternalReceipt, eS as ExternalReceiptInfo, b8 as FocalPoint, d6 as FormIdentifier, d5 as FormInfo, bk as FreeTrialPeriod, gI as FulfillerEmailSent, aj as FulfillmentStatus, h3 as FulfillmentStatusUpdated, im as FulfillmentStatusWithLiterals, cY as FulfillmentStatusesAggregate, bD as FullAddressContactDetails, fm as GetOrderRequest, fn as GetOrderResponse, ef as GetPaymentCollectabilityStatusRequest, eo as GetRefundabilityStatusRequest, ho as GetShipmentsRequest, hp as GetShipmentsResponse, eP as GiftCardPaymentDetails, cv as GiftCardPaymentRefund, hE as IdAndVersion, ds as IdentificationData, dt as IdentificationDataIdOneOf, dg as ImportOrderRequest, df as ImportedOrderDeleted, gu as InternalActivity, gv as InternalActivityContentOneOf, f7 as InternalDocument, fb as InternalDocumentUpdateByFilterOperation, f8 as InternalDocumentUpdateOperation, fo as InternalQueryOrdersRequest, fu as InternalQueryOrdersResponse, fc as InternalUpdateExistingOperation, aT as InventoryAction, iW as InventoryActionWithLiterals, fZ as InventoryUpdateDetails, gG as InvoiceAdded, hQ as InvoiceDates, i5 as InvoiceDynamicPriceTotals, hF as InvoiceFields, gH as InvoiceSent, hD as InvoiceSentEvent, a_ as InvoiceStatus, j1 as InvoiceStatusWithLiterals, i3 as InvoicesPayment, fT as ItemChangedDetails, bY as ItemCombination, bZ as ItemCombinationLineItem, el as ItemMetadata, bu as ItemModifier, bc as ItemTaxFullDetails, ba as ItemType, bb as ItemTypeItemTypeDataOneOf, ac as ItemTypePreset, ie as ItemTypePresetWithLiterals, hZ as ItemizedFee, ae as JurisdictionType, ih as JurisdictionTypeWithLiterals, hS as LineItem, ci as LineItemAmount, c9 as LineItemChanges, g2 as LineItemDelta, g3 as LineItemDeltaDeltaOneOf, cd as LineItemDescriptionLineChange, bX as LineItemDiscount, c5 as LineItemExchangeData, hW as LineItemMetaData, ce as LineItemModifiersChange, cb as LineItemPriceChange, cc as LineItemProductNameChange, ca as LineItemQuantityChange, aq as LineItemQuantityChangeType, it as LineItemQuantityChangeTypeWithLiterals, dU as LineItemRefund, eY as LineItemRefundSummary, hU as LineItemTax, be as LineItemTaxBreakdown, bd as LineItemTaxInfo, gW as LineItemUpdate, hR as LineItems, hX as Locale, c$ as Location, bo as LocationAndQuantity, cj as ManagedAdditionalFee, cg as ManagedDiscount, cf as ManagedLineItem, aF as ManuallyRefundableReason, iI as ManuallyRefundableReasonWithLiterals, h1 as MarkAsFulfilledRequest, h2 as MarkAsFulfilledResponse, h8 as MarkAsUnfulfilledRequest, h9 as MarkAsUnfulfilledResponse, ei as MarkOrderAsPaidRequest, gY as MarkOrderAsSeenByHumanRequest, gZ as MarkOrderAsSeenByHumanResponse, gr as MaskedOrderLineItem, eu as MembershipChargeItem, ev as MembershipName, eQ as MembershipPaymentDetails, cw as MembershipPaymentRefund, aN as MembershipPaymentStatus, iQ as MembershipPaymentStatusWithLiterals, c1 as MerchantComment, bT as MerchantDiscount, bU as MerchantDiscountMerchantDiscountReasonOneOf, dr as MessageEnvelope, i4 as MetaData, bs as ModifierGroup, c4 as NewExchangeOrderCreated, aE as NonRefundableReason, iH as NonRefundableReasonWithLiterals, aw as OrderActionType, iz as OrderActionTypeWithLiterals, as as OrderActivityTypeEnumActivityType, iv as OrderActivityTypeEnumActivityTypeWithLiterals, aR as OrderApprovalStrategy, iU as OrderApprovalStrategyWithLiterals, d9 as OrderApproved, gA as OrderCanceled, g$ as OrderCanceledEventOrderCanceled, c7 as OrderChange, c8 as OrderChangeValueOneOf, fF as OrderCreateNotifications, c3 as OrderCreatedFromExchange, fE as OrderCreationSettings, f$ as OrderDeltasCommitted, gy as OrderFulfilled, de as OrderImported, dc as OrderItemsRestocked, a$ as OrderLineItem, fS as OrderLineItemChangedDetails, gz as OrderNotFulfilled, gx as OrderPaid, gM as OrderPartiallyPaid, gN as OrderPending, gw as OrderPlaced, c2 as OrderRefunded, gO as OrderRejected, db as OrderRejectedEventOrderRejected, ic as OrderSearchSpec, d0 as OrderSettings, d1 as OrderSettingsAllowedActionsOneOf, d2 as OrderSettingsEditableByOneOf, an as OrderStatus, bP as OrderTaxBreakdown, bO as OrderTaxInfo, eC as OrderTransactions, da as OrdersExperiments, d4 as OwnerApps, eD as Payment, cF as PaymentCanceled, cG as PaymentCanceledPaymentDetailsOneOf, aC as PaymentCollectabilityStatus, iF as PaymentCollectabilityStatusWithLiterals, cH as PaymentDeclined, cI as PaymentDeclinedPaymentDetailsOneOf, ad as PaymentOptionType, ig as PaymentOptionTypeWithLiterals, eE as PaymentPaymentDetailsOneOf, cA as PaymentPending, cB as PaymentPendingPaymentDetailsOneOf, eF as PaymentReceiptInfoOneOf, cy as PaymentRefundFailed, cx as PaymentRefunded, ai as PaymentStatus, hj as PaymentStatusUpdated, il as PaymentStatusWithLiterals, i2 as Payments, hK as Phone, b9 as PhysicalProperties, bJ as PickupAddress, bI as PickupDetails, am as PickupMethod, iq as PickupMethodWithLiterals, gL as PickupReadyEmailSent, aU as Placement, iX as PlacementWithLiterals, b6 as PlainTextValue, d8 as PlatformFee, d7 as PlatformFeeSummary, fs as PlatformPaging, fv as PlatformPagingMetadata, fp as PlatformQuery, fq as PlatformQueryPagingMethodOneOf, eb as PreparePaymentCollectionRequest, e2 as PreviewBuyerConfirmationEmailRequest, e3 as PreviewBuyerConfirmationEmailResponse, e0 as PreviewBuyerPaymentsReceivedEmailRequest, e1 as PreviewBuyerPaymentsReceivedEmailResponse, e4 as PreviewBuyerPickupConfirmationEmailRequest, e5 as PreviewBuyerPickupConfirmationEmailResponse, dY as PreviewCancelEmailRequest, dZ as PreviewCancelEmailResponse, d_ as PreviewCancelRefundEmailRequest, d$ as PreviewCancelRefundEmailResponse, dP as PreviewEmailByTypeRequest, dQ as PreviewEmailByTypeResponse, az as PreviewEmailType, iC as PreviewEmailTypeWithLiterals, dR as PreviewRefundEmailRequest, dX as PreviewRefundEmailResponse, e8 as PreviewResendDownloadLinksEmailRequest, e9 as PreviewResendDownloadLinksEmailResponse, e6 as PreviewShippingConfirmationEmailRequest, e7 as PreviewShippingConfirmationEmailResponse, bn as PriceDescription, by as PriceSummary, b0 as ProductName, gR as PublicActivityContentOneOf, fx as QueryOrderRequest, fy as QueryOrderResponse, hI as QuotesAddress, aK as Reason, iN as ReasonWithLiterals, cJ as ReceiptCreated, cK as ReceiptCreatedReceiptInfoOneOf, cN as ReceiptSent, cO as ReceiptSentReceiptInfoOneOf, eg as RecordManuallyCollectedPaymentRequest, eh as RecordManuallyCollectedPaymentResponse, ec as RedirectUrls, eT as Refund, dS as RefundDetails, cr as RefundInitiated, dT as RefundItem, eX as RefundItemsBreakdown, ez as RefundSideEffects, aO as RefundStatus, eV as RefundStatusInfo, iR as RefundStatusWithLiterals, eU as RefundTransaction, ep as Refundability, eq as RefundabilityAdditionalRefundabilityInfoOneOf, aD as RefundableStatus, iG as RefundableStatusWithLiterals, cz as RefundedAsStoreCredit, cs as RefundedPayment, ct as RefundedPaymentKindOneOf, cC as RegularPayment, eG as RegularPaymentDetails, eH as RegularPaymentDetailsPaymentMethodDetailsOneOf, cD as RegularPaymentPaymentMethodDetailsOneOf, cu as RegularPaymentRefund, hC as Reschedule, eA as RestockInfo, eB as RestockItem, aG as RestockType, iJ as RestockTypeWithLiterals, dm as RestoreInfo, cn as SavedPaymentMethod, aA as ScheduledAction, iD as ScheduledActionWithLiterals, fz as SearchOrdersRequest, dv as SendBuyerConfirmationEmailRequest, dw as SendBuyerConfirmationEmailResponse, dx as SendBuyerPaymentsReceivedEmailRequest, dy as SendBuyerPaymentsReceivedEmailResponse, dz as SendBuyerPickupConfirmationEmailRequest, dA as SendBuyerPickupConfirmationEmailResponse, dD as SendBuyerShippingConfirmationEmailRequest, dE as SendBuyerShippingConfirmationEmailResponse, dJ as SendCancelRefundEmailRequest, dK as SendCancelRefundEmailResponse, dH as SendMerchantOrderReceivedNotificationRequest, dI as SendMerchantOrderReceivedNotificationResponse, dN as SendMerchantOrderReceivedPushRequest, dO as SendMerchantOrderReceivedPushResponse, dL as SendRefundEmailRequest, dM as SendRefundEmailResponse, ew as ServiceProperties, dh as SetOrderNumberCounterRequest, gJ as ShippingAddressEdited, gF as ShippingConfirmationEmailSent, cm as ShippingInformation, cl as ShippingInformationChange, bL as ShippingPrice, dW as ShippingRefund, bM as ShippingRegion, aQ as SortOrder, iT as SortOrderWithLiterals, fr as Sorting, hV as Source, aW as SourceType, iZ as SourceTypeWithLiterals, hP as StandardDetails, bB as StreetAddress, hO as Subdivision, aV as SubdivisionType, iY as SubdivisionTypeWithLiterals, bi as SubscriptionDescription, af as SubscriptionFrequency, ii as SubscriptionFrequencyWithLiterals, bg as SubscriptionInfo, bj as SubscriptionSettings, bh as SubscriptionTitle, c_ as TagList, cZ as Tags, hw as Task, hy as TaskAction, hz as TaskActionActionOneOf, hx as TaskKey, bN as TaxSummary, bp as TaxableAddress, bq as TaxableAddressTaxableAddressDataOneOf, ah as TaxableAddressType, ik as TaxableAddressTypeWithLiterals, hY as TotalPrice, ck as TotalPriceChange, gE as TrackingLinkAdded, gC as TrackingNumberAdded, gD as TrackingNumberEdited, aH as TransactionStatus, iK as TransactionStatusWithLiterals, bt as TranslatableString, ch as TranslatedValue, ey as TriggerRefundRequest, fj as TriggerReindexOrderRequest, fg as TriggerReindexRequest, fh as TriggerReindexResponse, ga as UnArchiveOrderRequest, gb as UnArchiveOrderResponse, gT as UpdateActivityRequest, gn as UpdateBillingContactDetailsRequest, go as UpdateBillingContactDetailsResponse, gj as UpdateBuyerEmailRequest, gk as UpdateBuyerEmailResponse, gg as UpdateBuyerInfoRequest, gi as UpdateBuyerInfoResponse, f5 as UpdateInternalDocumentsEvent, f6 as UpdateInternalDocumentsEventOperationOneOf, gV as UpdateLineItemsDescriptionLinesRequest, gX as UpdateLineItemsDescriptionLinesResponse, gp as UpdateOrderLineItemRequest, gq as UpdateOrderLineItemsRequest, gs as UpdateOrderLineItemsResponse, fH as UpdateOrderRequest, fI as UpdateOrderResponse, gl as UpdateOrderShippingAddressRequest, gm as UpdateOrderShippingAddressResponse, h0 as UpdateOrderStatusRequest, hk as V1BulkMarkOrdersAsPaidRequest, hl as V1BulkMarkOrdersAsPaidResponse, hm as V1CreatePaymentGatewayOrderRequest, hn as V1CreatePaymentGatewayOrderResponse, fQ as V1LineItemDelta, fR as V1LineItemDeltaDeltaOneOf, hh as V1MarkOrderAsPaidRequest, hi as V1MarkOrderAsPaidResponse, dd as V1RestockItem, eN as V1ScheduledAction, bF as V1ShippingInformation, i7 as Value, aY as ValueType, i$ as ValueTypeWithLiterals, bE as VatId, al as VatType, ip as VatTypeWithLiterals, fe as VersionedDeleteByIdsOperation, ff as VersionedDocumentId, fd as VersionedDocumentUpdateOperation, aP as VersioningMode, iS as VersioningModeWithLiterals, f1 as VoidAuthorizedPaymentsRequest, ay as WebhookIdentityType, iB as WebhookIdentityTypeWithLiterals, ak as WeightUnit, io as WeightUnitWithLiterals, cL as WixReceipt, eR as WixReceiptInfo } from './ecom-v1-order-orders.universal-BoI3BNkc.js';
|
|
4
4
|
|
|
5
5
|
/** @internal */
|
|
6
6
|
declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
|
|
@@ -2050,12 +2050,6 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
|
2050
2050
|
WebhookIdentityType2["APP"] = "APP";
|
|
2051
2051
|
return WebhookIdentityType2;
|
|
2052
2052
|
})(WebhookIdentityType || {});
|
|
2053
|
-
var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
|
|
2054
|
-
VersioningMode2["DEFAULT"] = "DEFAULT";
|
|
2055
|
-
VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
|
|
2056
|
-
VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
|
|
2057
|
-
return VersioningMode2;
|
|
2058
|
-
})(VersioningMode || {});
|
|
2059
2053
|
var PreviewEmailType = /* @__PURE__ */ ((PreviewEmailType2) => {
|
|
2060
2054
|
PreviewEmailType2["ORDER_PLACED"] = "ORDER_PLACED";
|
|
2061
2055
|
PreviewEmailType2["DOWNLOAD_LINKS"] = "DOWNLOAD_LINKS";
|
|
@@ -2181,6 +2175,12 @@ var RefundStatus = /* @__PURE__ */ ((RefundStatus2) => {
|
|
|
2181
2175
|
RefundStatus2["STARTED"] = "STARTED";
|
|
2182
2176
|
return RefundStatus2;
|
|
2183
2177
|
})(RefundStatus || {});
|
|
2178
|
+
var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
|
|
2179
|
+
VersioningMode2["DEFAULT"] = "DEFAULT";
|
|
2180
|
+
VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
|
|
2181
|
+
VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
|
|
2182
|
+
return VersioningMode2;
|
|
2183
|
+
})(VersioningMode || {});
|
|
2184
2184
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
2185
2185
|
SortOrder2["ASC"] = "ASC";
|
|
2186
2186
|
SortOrder2["DESC"] = "DESC";
|