@wix/auto_sdk_ecom_orders 1.0.149 → 1.0.151
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-CoyGOJOi.d.ts → ecom-v1-order-orders.universal-BymejMdD.d.ts} +182 -153
- 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 +183 -154
- package/build/cjs/meta.js +6 -6
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-CoyGOJOi.d.mts → ecom-v1-order-orders.universal-BymejMdD.d.mts} +182 -153
- 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 +183 -154
- package/build/es/meta.mjs +6 -6
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-DDISw1y8.d.ts → ecom-v1-order-orders.universal-Dj5XDyHJ.d.ts} +192 -153
- 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 +183 -154
- 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-DDISw1y8.d.mts → ecom-v1-order-orders.universal-Dj5XDyHJ.d.mts} +192 -153
- 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 +183 -154
- package/build/internal/es/meta.mjs +6 -6
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1472,6 +1472,16 @@ interface AppliedDiscount extends AppliedDiscountDiscountSourceOneOf {
|
|
|
1472
1472
|
* @max 999
|
|
1473
1473
|
*/
|
|
1474
1474
|
subscriptionCycles?: number | null;
|
|
1475
|
+
/**
|
|
1476
|
+
* A list of item combinations for this applied discount.
|
|
1477
|
+
* Each entry represents a unique combination of line items that triggered
|
|
1478
|
+
* or received this discount, along with how many times that combination was applied together.
|
|
1479
|
+
* Relevant ONLY for BXGY and Quantity-based promotions.
|
|
1480
|
+
* In BXGY the combination will contain the "X" items with discount amount of 0.
|
|
1481
|
+
* @internal
|
|
1482
|
+
* @maxSize 1000
|
|
1483
|
+
*/
|
|
1484
|
+
itemCombinations?: ItemCombination[];
|
|
1475
1485
|
}
|
|
1476
1486
|
/** @oneof */
|
|
1477
1487
|
interface AppliedDiscountDiscountSourceOneOf {
|
|
@@ -3316,6 +3326,168 @@ declare enum WebhookIdentityType {
|
|
|
3316
3326
|
}
|
|
3317
3327
|
/** @enumType */
|
|
3318
3328
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3329
|
+
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
3330
|
+
/** insert/update documents */
|
|
3331
|
+
update?: InternalDocumentUpdateOperation;
|
|
3332
|
+
/** delete by document ids */
|
|
3333
|
+
deleteByIds?: DeleteByIdsOperation;
|
|
3334
|
+
/** delete documents matching filter */
|
|
3335
|
+
deleteByFilter?: DeleteByFilterOperation;
|
|
3336
|
+
/** update internal documents matching filter */
|
|
3337
|
+
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
3338
|
+
/** update only existing documents */
|
|
3339
|
+
updateExisting?: InternalUpdateExistingOperation;
|
|
3340
|
+
/** insert/update documents with versioning */
|
|
3341
|
+
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
3342
|
+
/** delete by document ids with versioning */
|
|
3343
|
+
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
3344
|
+
/**
|
|
3345
|
+
* type of the documents
|
|
3346
|
+
* @minLength 2
|
|
3347
|
+
*/
|
|
3348
|
+
documentType?: string;
|
|
3349
|
+
/**
|
|
3350
|
+
* language of the documents (mandatory)
|
|
3351
|
+
* @minLength 2
|
|
3352
|
+
*/
|
|
3353
|
+
language?: string | null;
|
|
3354
|
+
/**
|
|
3355
|
+
* one or more search documents
|
|
3356
|
+
* @deprecated
|
|
3357
|
+
*/
|
|
3358
|
+
addDocuments?: InternalDocument[];
|
|
3359
|
+
/**
|
|
3360
|
+
* one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
|
|
3361
|
+
* @deprecated
|
|
3362
|
+
*/
|
|
3363
|
+
removeDocumentIds?: string[];
|
|
3364
|
+
/** id to pass to processing notification */
|
|
3365
|
+
correlationId?: string | null;
|
|
3366
|
+
/** when event was created / issued */
|
|
3367
|
+
issuedAt?: Date | null;
|
|
3368
|
+
}
|
|
3369
|
+
/** @oneof */
|
|
3370
|
+
interface UpdateInternalDocumentsEventOperationOneOf {
|
|
3371
|
+
/** insert/update documents */
|
|
3372
|
+
update?: InternalDocumentUpdateOperation;
|
|
3373
|
+
/** delete by document ids */
|
|
3374
|
+
deleteByIds?: DeleteByIdsOperation;
|
|
3375
|
+
/** delete documents matching filter */
|
|
3376
|
+
deleteByFilter?: DeleteByFilterOperation;
|
|
3377
|
+
/** update internal documents matching filter */
|
|
3378
|
+
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
3379
|
+
/** update only existing documents */
|
|
3380
|
+
updateExisting?: InternalUpdateExistingOperation;
|
|
3381
|
+
/** insert/update documents with versioning */
|
|
3382
|
+
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
3383
|
+
/** delete by document ids with versioning */
|
|
3384
|
+
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
3385
|
+
}
|
|
3386
|
+
interface InternalDocument {
|
|
3387
|
+
/** document with mandatory fields (id) and with fields specific to the type of the document */
|
|
3388
|
+
document?: Record<string, any> | null;
|
|
3389
|
+
}
|
|
3390
|
+
interface InternalDocumentUpdateOperation {
|
|
3391
|
+
/** documents to index or update */
|
|
3392
|
+
documents?: InternalDocument[];
|
|
3393
|
+
}
|
|
3394
|
+
interface DeleteByIdsOperation {
|
|
3395
|
+
/** ids of the documents to delete */
|
|
3396
|
+
documentIds?: string[];
|
|
3397
|
+
/**
|
|
3398
|
+
* tenant id for custom tenancy strategy
|
|
3399
|
+
* @minLength 2
|
|
3400
|
+
* @maxLength 300
|
|
3401
|
+
*/
|
|
3402
|
+
tenantId?: string | null;
|
|
3403
|
+
}
|
|
3404
|
+
interface DeleteByFilterOperation {
|
|
3405
|
+
/** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
|
|
3406
|
+
filter?: Record<string, any> | null;
|
|
3407
|
+
/**
|
|
3408
|
+
* tenant id for custom tenancy strategy
|
|
3409
|
+
* @minLength 2
|
|
3410
|
+
* @maxLength 300
|
|
3411
|
+
*/
|
|
3412
|
+
tenantId?: string | null;
|
|
3413
|
+
}
|
|
3414
|
+
interface InternalDocumentUpdateByFilterOperation {
|
|
3415
|
+
/** documents matching this filter will be updated */
|
|
3416
|
+
filter?: Record<string, any> | null;
|
|
3417
|
+
/** partial document to apply */
|
|
3418
|
+
document?: InternalDocument;
|
|
3419
|
+
/**
|
|
3420
|
+
* tenant id for custom tenancy strategy
|
|
3421
|
+
* @minLength 2
|
|
3422
|
+
* @maxLength 300
|
|
3423
|
+
*/
|
|
3424
|
+
tenantId?: string | null;
|
|
3425
|
+
}
|
|
3426
|
+
interface InternalUpdateExistingOperation {
|
|
3427
|
+
/** documents to update */
|
|
3428
|
+
documents?: InternalDocument[];
|
|
3429
|
+
}
|
|
3430
|
+
interface VersionedDocumentUpdateOperation {
|
|
3431
|
+
/** documents to create or overwrite */
|
|
3432
|
+
documents?: InternalDocument[];
|
|
3433
|
+
/** versioning mode to use instead of default */
|
|
3434
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
3435
|
+
}
|
|
3436
|
+
declare enum VersioningMode {
|
|
3437
|
+
/** use default versioning mode agreed with search team */
|
|
3438
|
+
DEFAULT = "DEFAULT",
|
|
3439
|
+
/** execute only if version is greater than existing */
|
|
3440
|
+
GREATER_THAN = "GREATER_THAN",
|
|
3441
|
+
/** execute only if version is greater or equal to existing */
|
|
3442
|
+
GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
|
|
3443
|
+
}
|
|
3444
|
+
/** @enumType */
|
|
3445
|
+
type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
|
|
3446
|
+
interface VersionedDeleteByIdsOperation {
|
|
3447
|
+
/** ids with version of the documents to delete */
|
|
3448
|
+
documentIds?: VersionedDocumentId[];
|
|
3449
|
+
/**
|
|
3450
|
+
* tenant id for custom tenancy strategy
|
|
3451
|
+
* @minLength 2
|
|
3452
|
+
* @maxLength 300
|
|
3453
|
+
*/
|
|
3454
|
+
tenantId?: string | null;
|
|
3455
|
+
}
|
|
3456
|
+
interface VersionedDocumentId {
|
|
3457
|
+
/** document id */
|
|
3458
|
+
documentId?: string;
|
|
3459
|
+
/** document version */
|
|
3460
|
+
version?: string;
|
|
3461
|
+
/** versioning mode to use instead of default */
|
|
3462
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
3463
|
+
}
|
|
3464
|
+
interface TriggerReindexRequest {
|
|
3465
|
+
/** @format GUID */
|
|
3466
|
+
metasiteId?: string;
|
|
3467
|
+
/**
|
|
3468
|
+
* @minLength 1
|
|
3469
|
+
* @maxLength 100
|
|
3470
|
+
* @maxSize 100
|
|
3471
|
+
*/
|
|
3472
|
+
orderIds?: string[];
|
|
3473
|
+
}
|
|
3474
|
+
interface TriggerReindexResponse {
|
|
3475
|
+
}
|
|
3476
|
+
interface Empty {
|
|
3477
|
+
}
|
|
3478
|
+
interface BatchOfTriggerReindexOrderRequest {
|
|
3479
|
+
/** @maxSize 25 */
|
|
3480
|
+
requests?: TriggerReindexOrderRequest[];
|
|
3481
|
+
}
|
|
3482
|
+
interface TriggerReindexOrderRequest {
|
|
3483
|
+
/** @format GUID */
|
|
3484
|
+
metasiteId?: string;
|
|
3485
|
+
/**
|
|
3486
|
+
* @minLength 1
|
|
3487
|
+
* @maxLength 100
|
|
3488
|
+
*/
|
|
3489
|
+
orderId?: string;
|
|
3490
|
+
}
|
|
3319
3491
|
interface SendBuyerConfirmationEmailRequest {
|
|
3320
3492
|
/** @format GUID */
|
|
3321
3493
|
orderId?: string;
|
|
@@ -3608,8 +3780,6 @@ interface PreviewResendDownloadLinksEmailRequest {
|
|
|
3608
3780
|
interface PreviewResendDownloadLinksEmailResponse {
|
|
3609
3781
|
emailPreview?: string;
|
|
3610
3782
|
}
|
|
3611
|
-
interface Empty {
|
|
3612
|
-
}
|
|
3613
3783
|
interface PreparePaymentCollectionRequest {
|
|
3614
3784
|
/**
|
|
3615
3785
|
* Ecom order ID.
|
|
@@ -4743,165 +4913,34 @@ interface ChargeSavedPaymentMethodResponse {
|
|
|
4743
4913
|
/** Payment gateway's order ID (e.g Wix Payments) */
|
|
4744
4914
|
paymentGatewayOrderId?: string;
|
|
4745
4915
|
}
|
|
4746
|
-
interface
|
|
4747
|
-
/** insert/update documents */
|
|
4748
|
-
update?: InternalDocumentUpdateOperation;
|
|
4749
|
-
/** delete by document ids */
|
|
4750
|
-
deleteByIds?: DeleteByIdsOperation;
|
|
4751
|
-
/** delete documents matching filter */
|
|
4752
|
-
deleteByFilter?: DeleteByFilterOperation;
|
|
4753
|
-
/** update internal documents matching filter */
|
|
4754
|
-
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
4755
|
-
/** update only existing documents */
|
|
4756
|
-
updateExisting?: InternalUpdateExistingOperation;
|
|
4757
|
-
/** insert/update documents with versioning */
|
|
4758
|
-
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
4759
|
-
/** delete by document ids with versioning */
|
|
4760
|
-
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
4761
|
-
/**
|
|
4762
|
-
* type of the documents
|
|
4763
|
-
* @minLength 2
|
|
4764
|
-
*/
|
|
4765
|
-
documentType?: string;
|
|
4766
|
-
/**
|
|
4767
|
-
* language of the documents (mandatory)
|
|
4768
|
-
* @minLength 2
|
|
4769
|
-
*/
|
|
4770
|
-
language?: string | null;
|
|
4771
|
-
/**
|
|
4772
|
-
* one or more search documents
|
|
4773
|
-
* @deprecated
|
|
4774
|
-
*/
|
|
4775
|
-
addDocuments?: InternalDocument[];
|
|
4776
|
-
/**
|
|
4777
|
-
* one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
|
|
4778
|
-
* @deprecated
|
|
4779
|
-
*/
|
|
4780
|
-
removeDocumentIds?: string[];
|
|
4781
|
-
/** id to pass to processing notification */
|
|
4782
|
-
correlationId?: string | null;
|
|
4783
|
-
/** when event was created / issued */
|
|
4784
|
-
issuedAt?: Date | null;
|
|
4785
|
-
}
|
|
4786
|
-
/** @oneof */
|
|
4787
|
-
interface UpdateInternalDocumentsEventOperationOneOf {
|
|
4788
|
-
/** insert/update documents */
|
|
4789
|
-
update?: InternalDocumentUpdateOperation;
|
|
4790
|
-
/** delete by document ids */
|
|
4791
|
-
deleteByIds?: DeleteByIdsOperation;
|
|
4792
|
-
/** delete documents matching filter */
|
|
4793
|
-
deleteByFilter?: DeleteByFilterOperation;
|
|
4794
|
-
/** update internal documents matching filter */
|
|
4795
|
-
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
4796
|
-
/** update only existing documents */
|
|
4797
|
-
updateExisting?: InternalUpdateExistingOperation;
|
|
4798
|
-
/** insert/update documents with versioning */
|
|
4799
|
-
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
4800
|
-
/** delete by document ids with versioning */
|
|
4801
|
-
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
4802
|
-
}
|
|
4803
|
-
interface InternalDocument {
|
|
4804
|
-
/** document with mandatory fields (id) and with fields specific to the type of the document */
|
|
4805
|
-
document?: Record<string, any> | null;
|
|
4806
|
-
}
|
|
4807
|
-
interface InternalDocumentUpdateOperation {
|
|
4808
|
-
/** documents to index or update */
|
|
4809
|
-
documents?: InternalDocument[];
|
|
4810
|
-
}
|
|
4811
|
-
interface DeleteByIdsOperation {
|
|
4812
|
-
/** ids of the documents to delete */
|
|
4813
|
-
documentIds?: string[];
|
|
4814
|
-
/**
|
|
4815
|
-
* tenant id for custom tenancy strategy
|
|
4816
|
-
* @minLength 2
|
|
4817
|
-
* @maxLength 300
|
|
4818
|
-
*/
|
|
4819
|
-
tenantId?: string | null;
|
|
4820
|
-
}
|
|
4821
|
-
interface DeleteByFilterOperation {
|
|
4822
|
-
/** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
|
|
4823
|
-
filter?: Record<string, any> | null;
|
|
4824
|
-
/**
|
|
4825
|
-
* tenant id for custom tenancy strategy
|
|
4826
|
-
* @minLength 2
|
|
4827
|
-
* @maxLength 300
|
|
4828
|
-
*/
|
|
4829
|
-
tenantId?: string | null;
|
|
4830
|
-
}
|
|
4831
|
-
interface InternalDocumentUpdateByFilterOperation {
|
|
4832
|
-
/** documents matching this filter will be updated */
|
|
4833
|
-
filter?: Record<string, any> | null;
|
|
4834
|
-
/** partial document to apply */
|
|
4835
|
-
document?: InternalDocument;
|
|
4916
|
+
interface ItemCombination {
|
|
4836
4917
|
/**
|
|
4837
|
-
*
|
|
4838
|
-
* @
|
|
4839
|
-
* @
|
|
4918
|
+
* The number of times this exact combination of items (with the specified quantities) was applied together in the order.
|
|
4919
|
+
* @min 1
|
|
4920
|
+
* @max 100000
|
|
4840
4921
|
*/
|
|
4841
|
-
|
|
4842
|
-
}
|
|
4843
|
-
interface InternalUpdateExistingOperation {
|
|
4844
|
-
/** documents to update */
|
|
4845
|
-
documents?: InternalDocument[];
|
|
4846
|
-
}
|
|
4847
|
-
interface VersionedDocumentUpdateOperation {
|
|
4848
|
-
/** documents to create or overwrite */
|
|
4849
|
-
documents?: InternalDocument[];
|
|
4850
|
-
/** versioning mode to use instead of default */
|
|
4851
|
-
versioningMode?: VersioningModeWithLiterals;
|
|
4852
|
-
}
|
|
4853
|
-
declare enum VersioningMode {
|
|
4854
|
-
/** use default versioning mode agreed with search team */
|
|
4855
|
-
DEFAULT = "DEFAULT",
|
|
4856
|
-
/** execute only if version is greater than existing */
|
|
4857
|
-
GREATER_THAN = "GREATER_THAN",
|
|
4858
|
-
/** execute only if version is greater or equal to existing */
|
|
4859
|
-
GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
|
|
4860
|
-
}
|
|
4861
|
-
/** @enumType */
|
|
4862
|
-
type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
|
|
4863
|
-
interface VersionedDeleteByIdsOperation {
|
|
4864
|
-
/** ids with version of the documents to delete */
|
|
4865
|
-
documentIds?: VersionedDocumentId[];
|
|
4922
|
+
count?: number;
|
|
4866
4923
|
/**
|
|
4867
|
-
*
|
|
4868
|
-
* @
|
|
4869
|
-
* @
|
|
4924
|
+
* Line items that participated together in this combination.
|
|
4925
|
+
* @minSize 1
|
|
4926
|
+
* @maxSize 100
|
|
4870
4927
|
*/
|
|
4871
|
-
|
|
4928
|
+
lineItems?: ItemCombinationLineItem[];
|
|
4872
4929
|
}
|
|
4873
|
-
interface
|
|
4874
|
-
/** document id */
|
|
4875
|
-
documentId?: string;
|
|
4876
|
-
/** document version */
|
|
4877
|
-
version?: string;
|
|
4878
|
-
/** versioning mode to use instead of default */
|
|
4879
|
-
versioningMode?: VersioningModeWithLiterals;
|
|
4880
|
-
}
|
|
4881
|
-
interface TriggerReindexRequest {
|
|
4882
|
-
/** @format GUID */
|
|
4883
|
-
metasiteId?: string;
|
|
4930
|
+
interface ItemCombinationLineItem {
|
|
4884
4931
|
/**
|
|
4885
|
-
*
|
|
4886
|
-
* @
|
|
4887
|
-
* @maxSize 100
|
|
4932
|
+
* The unique ID of the line item to which this discount applies.
|
|
4933
|
+
* @format GUID
|
|
4888
4934
|
*/
|
|
4889
|
-
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
}
|
|
4893
|
-
interface BatchOfTriggerReindexOrderRequest {
|
|
4894
|
-
/** @maxSize 25 */
|
|
4895
|
-
requests?: TriggerReindexOrderRequest[];
|
|
4896
|
-
}
|
|
4897
|
-
interface TriggerReindexOrderRequest {
|
|
4898
|
-
/** @format GUID */
|
|
4899
|
-
metasiteId?: string;
|
|
4935
|
+
lineItemId?: string;
|
|
4936
|
+
/** Total discount amount for all units (quantity) of this line item in this combination. */
|
|
4937
|
+
discountAmount?: Price;
|
|
4900
4938
|
/**
|
|
4901
|
-
*
|
|
4902
|
-
* @
|
|
4939
|
+
* Number of units from this line item that participated in a single combination.
|
|
4940
|
+
* @min 1
|
|
4941
|
+
* @max 100000
|
|
4903
4942
|
*/
|
|
4904
|
-
|
|
4943
|
+
quantity?: number;
|
|
4905
4944
|
}
|
|
4906
4945
|
interface DiffmatokyPayload {
|
|
4907
4946
|
left?: string;
|
|
@@ -8412,4 +8451,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
8412
8451
|
unassignTags?: Tags;
|
|
8413
8452
|
}
|
|
8414
8453
|
|
|
8415
|
-
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 MerchantComment 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 Activity as bY, type ActivityContentOneOf as bZ, type CustomActivity 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 OrderSettingsAllowedActionsOneOf as c$, type OrderRefunded as c0, type OrderCreatedFromExchange as c1, type NewExchangeOrderCreated as c2, type LineItemExchangeData as c3, type DraftOrderChangesApplied as c4, type OrderChange as c5, type OrderChangeValueOneOf as c6, type LineItemChanges as c7, type LineItemQuantityChange as c8, type LineItemPriceChange as c9, type RegularPayment as cA, type RegularPaymentPaymentMethodDetailsOneOf as cB, type CreditCardDetails as cC, type PaymentCanceled as cD, type PaymentCanceledPaymentDetailsOneOf as cE, type PaymentDeclined as cF, type PaymentDeclinedPaymentDetailsOneOf as cG, type ReceiptCreated as cH, type ReceiptCreatedReceiptInfoOneOf as cI, type WixReceipt as cJ, type ExternalReceipt as cK, type ReceiptSent as cL, type ReceiptSentReceiptInfoOneOf as cM, type ChargebackCreated as cN, type ChargebackReversed as cO, type CreatedBy as cP, type CreatedByStringOneOf as cQ, type ChannelInfo as cR, type CustomField as cS, type BalanceSummary as cT, type Balance as cU, type AdditionalFee as cV, type FulfillmentStatusesAggregate as cW, type Tags as cX, type TagList as cY, type Location as cZ, type OrderSettings as c_, type LineItemProductNameChange as ca, type LineItemDescriptionLineChange as cb, type LineItemModifiersChange as cc, type ManagedLineItem as cd, type ManagedDiscount as ce, type TranslatedValue as cf, type LineItemAmount as cg, type ManagedAdditionalFee as ch, type TotalPriceChange as ci, type ShippingInformationChange as cj, type ShippingInformation as ck, type SavedPaymentMethod as cl, type AuthorizedPaymentCreated as cm, type AuthorizedPaymentCaptured as cn, type AuthorizedPaymentVoided as co, type RefundInitiated as cp, type RefundedPayment as cq, type RefundedPaymentKindOneOf as cr, type RegularPaymentRefund as cs, type GiftCardPaymentRefund as ct, type MembershipPaymentRefund as cu, type PaymentRefunded as cv, type PaymentRefundFailed as cw, type RefundedAsStoreCredit as cx, type PaymentPending as cy, type PaymentPendingPaymentDetailsOneOf as cz, type PreparePaymentCollectionResponse as d, type PreviewBuyerPickupConfirmationEmailRequest as d$, type CustomAllowedActions as d0, type FormInfo as d1, type FormIdentifier as d2, type PlatformFeeSummary as d3, type PlatformFee as d4, type OrderApproved as d5, type OrdersExperiments as d6, type OrderRejectedEventOrderRejected as d7, type OrderItemsRestocked as d8, type V1RestockItem as d9, type BulkSendBuyerShippingConfirmationEmailsRequest as dA, type BulkSendBuyerShippingConfirmationEmailsResponse as dB, type SendMerchantOrderReceivedNotificationRequest as dC, type SendMerchantOrderReceivedNotificationResponse as dD, type SendCancelRefundEmailRequest as dE, type SendCancelRefundEmailResponse as dF, type SendRefundEmailRequest as dG, type SendRefundEmailResponse as dH, type SendMerchantOrderReceivedPushRequest as dI, type SendMerchantOrderReceivedPushResponse as dJ, type PreviewEmailByTypeRequest as dK, type PreviewEmailByTypeResponse as dL, type PreviewRefundEmailRequest as dM, type RefundDetails as dN, type RefundItem as dO, type LineItemRefund as dP, type AdditionalFeeRefund as dQ, type ShippingRefund as dR, type PreviewRefundEmailResponse as dS, type PreviewCancelEmailRequest as dT, type PreviewCancelEmailResponse as dU, type PreviewCancelRefundEmailRequest as dV, type PreviewCancelRefundEmailResponse as dW, type PreviewBuyerPaymentsReceivedEmailRequest as dX, type PreviewBuyerPaymentsReceivedEmailResponse as dY, type PreviewBuyerConfirmationEmailRequest as dZ, type PreviewBuyerConfirmationEmailResponse as d_, type OrderImported as da, type ImportedOrderDeleted as db, type ImportOrderRequest as dc, type SetOrderNumberCounterRequest as dd, type BulkDeleteImportedOrdersRequest as de, type DomainEvent as df, type DomainEventBodyOneOf as dg, type EntityCreatedEvent as dh, type RestoreInfo as di, type EntityUpdatedEvent as dj, type EntityDeletedEvent as dk, type ActionEvent as dl, type MessageEnvelope as dm, type IdentificationData as dn, type IdentificationDataIdOneOf as dp, type SendBuyerConfirmationEmailRequest as dq, type SendBuyerConfirmationEmailResponse as dr, type SendBuyerPaymentsReceivedEmailRequest as ds, type SendBuyerPaymentsReceivedEmailResponse as dt, type SendBuyerPickupConfirmationEmailRequest as du, type SendBuyerPickupConfirmationEmailResponse as dv, type BulkSendBuyerPickupConfirmationEmailsRequest as dw, type BulkSendBuyerPickupConfirmationEmailsResponse as dx, type SendBuyerShippingConfirmationEmailRequest as dy, type SendBuyerShippingConfirmationEmailResponse as dz, type PreparePaymentCollectionApplicationErrors as e, type ChargeSavedPaymentMethodResponse as e$, type PreviewBuyerPickupConfirmationEmailResponse as e0, type PreviewShippingConfirmationEmailRequest as e1, type PreviewShippingConfirmationEmailResponse as e2, type PreviewResendDownloadLinksEmailRequest as e3, type PreviewResendDownloadLinksEmailResponse as e4, type Empty as e5, type PreparePaymentCollectionRequest as e6, type RedirectUrls as e7, type DelayedCaptureSettings as e8, type Duration as e9, type PaymentReceiptInfoOneOf as eA, type RegularPaymentDetails as eB, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eC, type CreditCardPaymentMethodDetails as eD, type AuthorizationDetails as eE, type AuthorizationCapture as eF, type AuthorizationActionFailureDetails as eG, type AuthorizationVoid as eH, type V1ScheduledAction as eI, type Chargeback as eJ, type GiftCardPaymentDetails as eK, type MembershipPaymentDetails as eL, type WixReceiptInfo as eM, type ExternalReceiptInfo as eN, type Refund as eO, type RefundTransaction as eP, type RefundStatusInfo as eQ, type AggregatedRefundSummary as eR, type RefundItemsBreakdown as eS, type LineItemRefundSummary as eT, type CalculateRefundRequest as eU, type CalculateRefundItemRequest as eV, type CalculateRefundResponse as eW, type CalculateRefundItemResponse as eX, type VoidAuthorizedPaymentsRequest as eY, type CaptureAuthorizedPaymentsRequest as eZ, type ChargeSavedPaymentMethodRequest as e_, type GetPaymentCollectabilityStatusRequest as ea, type RecordManuallyCollectedPaymentRequest as eb, type RecordManuallyCollectedPaymentResponse as ec, type MarkOrderAsPaidRequest as ed, type BulkMarkOrdersAsPaidRequest as ee, type BulkOrderResult as ef, type ItemMetadata as eg, type ApplicationError as eh, type BulkActionMetadata as ei, type GetRefundabilityStatusRequest as ej, type Refundability as ek, type RefundabilityAdditionalRefundabilityInfoOneOf as el, type CreatePaymentGatewayOrderRequest as em, type ChargedBy as en, type ChargeMembershipsRequest as eo, type MembershipChargeItem as ep, type MembershipName as eq, type ServiceProperties as er, type ChargeMembershipsResponse as es, type TriggerRefundRequest as et, type RefundSideEffects as eu, type RestockInfo as ev, type RestockItem as ew, type OrderTransactions as ex, type Payment as ey, type PaymentPaymentDetailsOneOf as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type ArchiveOrderRequest as f$, type UpdateInternalDocumentsEvent as f0, type UpdateInternalDocumentsEventOperationOneOf as f1, type InternalDocument as f2, type InternalDocumentUpdateOperation as f3, type DeleteByIdsOperation as f4, type DeleteByFilterOperation as f5, type InternalDocumentUpdateByFilterOperation as f6, type InternalUpdateExistingOperation as f7, type VersionedDocumentUpdateOperation as f8, type VersionedDeleteByIdsOperation as f9, type OrderCreateNotifications as fA, type CreateOrderResponse as fB, type UpdateOrderRequest as fC, type UpdateOrderResponse as fD, type BulkUpdateOrdersRequest as fE, type CommitDeltasRequest as fF, type DraftOrderDiffs as fG, type DraftOrderDiffsShippingUpdateInfoOneOf as fH, type DraftOrderDiffsBuyerUpdateInfoOneOf as fI, type DraftOrderDiffsBillingUpdateInfoOneOf as fJ, type DraftOrderDiffsRecipientUpdateInfoOneOf as fK, type V1LineItemDelta as fL, type V1LineItemDeltaDeltaOneOf as fM, type OrderLineItemChangedDetails as fN, type ItemChangedDetails as fO, type AppliedDiscountDelta as fP, type AppliedDiscountDeltaDeltaOneOf as fQ, type AdditionalFeeDelta as fR, type AdditionalFeeDeltaDeltaOneOf as fS, type DraftOrderCommitSettings as fT, type InventoryUpdateDetails as fU, type CommitDeltasResponse as fV, type OrderDeltasCommitted as fW, type CommittedDiffs as fX, type CommittedDiffsShippingUpdateInfoOneOf as fY, type LineItemDelta as fZ, type LineItemDeltaDeltaOneOf as f_, type VersionedDocumentId as fa, type TriggerReindexRequest as fb, type TriggerReindexResponse as fc, type BatchOfTriggerReindexOrderRequest as fd, type TriggerReindexOrderRequest as fe, type DiffmatokyPayload as ff, type ErrorInformation as fg, type GetOrderRequest as fh, type GetOrderResponse as fi, type InternalQueryOrdersRequest as fj, type PlatformQuery as fk, type PlatformQueryPagingMethodOneOf as fl, type Sorting as fm, type PlatformPaging as fn, type CursorPaging as fo, type InternalQueryOrdersResponse as fp, type PlatformPagingMetadata as fq, type Cursors as fr, type QueryOrderRequest as fs, type QueryOrderResponse as ft, type SearchOrdersRequest as fu, type CursorSearch as fv, type CursorSearchPagingMethodOneOf as fw, type CursorPagingMetadata as fx, type CreateOrderRequest as fy, type OrderCreationSettings as fz, type BulkMarkOrdersAsPaidResponse as g, type BulkMarkAsFulfilledRequest as g$, type ArchiveOrderResponse as g0, type BulkArchiveOrdersRequest as g1, type BulkArchiveOrdersResponse as g2, type BulkArchiveOrdersByFilterRequest as g3, type BulkArchiveOrdersByFilterResponse as g4, type UnArchiveOrderRequest as g5, type UnArchiveOrderResponse as g6, type BulkUnArchiveOrdersRequest as g7, type BulkUnArchiveOrdersResponse as g8, type BulkUnArchiveOrdersByFilterRequest as g9, type ShippingConfirmationEmailSent as gA, type InvoiceAdded as gB, type InvoiceSent as gC, type FulfillerEmailSent as gD, type ShippingAddressEdited as gE, type EmailEdited as gF, type PickupReadyEmailSent as gG, type OrderPartiallyPaid as gH, type OrderPending as gI, type OrderRejected as gJ, type AddInternalActivityResponse as gK, type AddActivityRequest as gL, type PublicActivityContentOneOf as gM, type AddActivitiesRequest as gN, type UpdateActivityRequest as gO, type DeleteActivityRequest as gP, type UpdateLineItemsDescriptionLinesRequest as gQ, type LineItemUpdate as gR, type UpdateLineItemsDescriptionLinesResponse as gS, type MarkOrderAsSeenByHumanRequest as gT, type MarkOrderAsSeenByHumanResponse as gU, type CancelOrderRequest as gV, type OrderCanceledEventOrderCanceled as gW, type UpdateOrderStatusRequest as gX, type MarkAsFulfilledRequest as gY, type MarkAsFulfilledResponse as gZ, type FulfillmentStatusUpdated as g_, type BulkUnArchiveOrdersByFilterResponse as ga, type UpdateBuyerInfoRequest as gb, type BuyerInfoUpdate as gc, type UpdateBuyerInfoResponse as gd, type UpdateBuyerEmailRequest as ge, type UpdateBuyerEmailResponse as gf, type UpdateOrderShippingAddressRequest as gg, type UpdateOrderShippingAddressResponse as gh, type UpdateBillingContactDetailsRequest as gi, type UpdateBillingContactDetailsResponse as gj, type UpdateOrderLineItemRequest as gk, type UpdateOrderLineItemsRequest as gl, type MaskedOrderLineItem as gm, type UpdateOrderLineItemsResponse as gn, type AddInternalActivityRequest as go, type InternalActivity as gp, type InternalActivityContentOneOf as gq, type OrderPlaced as gr, type OrderPaid as gs, type OrderFulfilled as gt, type OrderNotFulfilled as gu, type OrderCanceled as gv, type DownloadLinkSent as gw, type TrackingNumberAdded as gx, type TrackingNumberEdited as gy, type TrackingLinkAdded as gz, type GetRefundabilityStatusResponse as h, type MetaData as h$, type BulkMarkAsFulfilledResponse as h0, type BulkMarkAsFulfilledByFilterRequest as h1, type BulkMarkAsFulfilledByFilterResponse as h2, type MarkAsUnfulfilledRequest as h3, type MarkAsUnfulfilledResponse as h4, type BulkMarkAsUnfulfilledRequest as h5, type BulkMarkAsUnfulfilledResponse as h6, type BulkMarkAsUnfulfilledByFilterRequest as h7, type BulkMarkAsUnfulfilledByFilterResponse as h8, type BulkSetBusinessLocationRequest as h9, type InvoiceFields as hA, type Customer as hB, type Email as hC, type QuotesAddress as hD, type AddressDescription as hE, type Phone as hF, type Company as hG, type CommonAddress as hH, type CommonAddressStreetOneOf as hI, type Subdivision as hJ, type StandardDetails as hK, type InvoiceDates as hL, type LineItems as hM, type LineItem as hN, type BigDecimalWrapper as hO, type LineItemTax as hP, type Source as hQ, type LineItemMetaData as hR, type Locale as hS, type TotalPrice as hT, type ItemizedFee as hU, type Discount as hV, type DiscountOneDiscountTypeOneOf as hW, type CalculatedTaxes as hX, type CalculatedTax as hY, type Payments as hZ, type InvoicesPayment as h_, type BulkSetBusinessLocationResponse as ha, type BulkSetBusinessLocationResult as hb, type V1MarkOrderAsPaidRequest as hc, type V1MarkOrderAsPaidResponse as hd, type PaymentStatusUpdated as he, type V1BulkMarkOrdersAsPaidRequest as hf, type V1BulkMarkOrdersAsPaidResponse as hg, type V1CreatePaymentGatewayOrderRequest as hh, type V1CreatePaymentGatewayOrderResponse as hi, type GetShipmentsRequest as hj, type GetShipmentsResponse as hk, type AggregateOrdersRequest as hl, type DecrementItemsQuantityRequest as hm, type DecrementData as hn, type DecrementItemsQuantityResponse as ho, type BulkUpdateOrderTagsRequest as hp, type BulkUpdateOrderTagsResult as hq, type Task as hr, type TaskKey as hs, type TaskAction as ht, type TaskActionActionOneOf as hu, type Complete as hv, type Cancel as hw, type Reschedule as hx, type InvoiceSentEvent as hy, type IdAndVersion as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, onOrderCanceled as i$, type InvoiceDynamicPriceTotals as i0, type CustomFieldValue as i1, type Value as i2, type Deposit as i3, type BaseEventMetadata as i4, type EventMetadata as i5, type OrderSearchSpec as i6, type DescriptionLineTypeWithLiterals as i7, type ItemTypePresetWithLiterals as i8, type PaymentOptionTypeWithLiterals as i9, type RefundableStatusWithLiterals as iA, type NonRefundableReasonWithLiterals as iB, type ManuallyRefundableReasonWithLiterals as iC, type RestockTypeWithLiterals as iD, type TransactionStatusWithLiterals as iE, type AuthorizationCaptureStatusWithLiterals as iF, type AuthorizationVoidStatusWithLiterals as iG, type ReasonWithLiterals as iH, type ActionTypeWithLiterals as iI, type ChargebackStatusWithLiterals as iJ, type MembershipPaymentStatusWithLiterals as iK, type RefundStatusWithLiterals as iL, type VersioningModeWithLiterals as iM, type SortOrderWithLiterals as iN, type OrderApprovalStrategyWithLiterals as iO, type DeltaPaymentOptionTypeWithLiterals as iP, type InventoryActionWithLiterals as iQ, type PlacementWithLiterals as iR, type SubdivisionTypeWithLiterals as iS, type SourceTypeWithLiterals as iT, type CustomFieldGroupWithLiterals as iU, type ValueTypeWithLiterals as iV, type DepositTypeWithLiterals as iW, type InvoiceStatusWithLiterals as iX, type CommonSearchWithEntityContext as iY, onOrderApproved as iZ, onOrderUpdated as i_, type JurisdictionTypeWithLiterals as ia, type SubscriptionFrequencyWithLiterals as ib, type AdjustmentTypeWithLiterals as ic, type TaxableAddressTypeWithLiterals as id, type PaymentStatusWithLiterals as ie, type FulfillmentStatusWithLiterals as ig, type WeightUnitWithLiterals as ih, type VatTypeWithLiterals as ii, type PickupMethodWithLiterals as ij, type DiscountTypeWithLiterals as ik, type DiscountReasonWithLiterals as il, type LineItemQuantityChangeTypeWithLiterals as im, type ActivityTypeWithLiterals as io, type OrderActivityTypeEnumActivityTypeWithLiterals as ip, type AttributionSourceWithLiterals as iq, type ChannelTypeWithLiterals as ir, type AdditionalFeeSourceWithLiterals as is, type OrderActionTypeWithLiterals as it, type ChargeTypeWithLiterals as iu, type WebhookIdentityTypeWithLiterals as iv, type PreviewEmailTypeWithLiterals as iw, type ScheduledActionWithLiterals as ix, type DurationUnitWithLiterals as iy, type PaymentCollectabilityStatusWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, onOrderCreated as j0, onOrderPaymentStatusUpdated as j1, importOrder as j2, setOrderNumberCounter as j3, bulkDeleteImportedOrders as j4, preparePaymentCollection as j5, getPaymentCollectabilityStatus as j6, recordManuallyCollectedPayment as j7, paymentCollectionMarkOrderAsPaid as j8, paymentCollectionBulkMarkOrdersAsPaid as j9, getRefundabilityStatus as ja, paymentCollectionCreatePaymentGatewayOrder as jb, chargeMemberships as jc, triggerRefund as jd, voidAuthorizedPayments as je, captureAuthorizedPayments as jf, getOrder as jg, createOrder as jh, updateOrder as ji, bulkUpdateOrders as jj, updateOrderLineItem as jk, addActivity as jl, addActivities as jm, updateActivity as jn, deleteActivity as jo, cancelOrder as jp, updateOrderStatus as jq, aggregateOrders as jr, bulkUpdateOrderTags as js, 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 };
|
|
8454
|
+
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 MerchantComment 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 Activity as bY, type ActivityContentOneOf as bZ, type CustomActivity 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 OrderSettingsAllowedActionsOneOf as c$, type OrderRefunded as c0, type OrderCreatedFromExchange as c1, type NewExchangeOrderCreated as c2, type LineItemExchangeData as c3, type DraftOrderChangesApplied as c4, type OrderChange as c5, type OrderChangeValueOneOf as c6, type LineItemChanges as c7, type LineItemQuantityChange as c8, type LineItemPriceChange as c9, type RegularPayment as cA, type RegularPaymentPaymentMethodDetailsOneOf as cB, type CreditCardDetails as cC, type PaymentCanceled as cD, type PaymentCanceledPaymentDetailsOneOf as cE, type PaymentDeclined as cF, type PaymentDeclinedPaymentDetailsOneOf as cG, type ReceiptCreated as cH, type ReceiptCreatedReceiptInfoOneOf as cI, type WixReceipt as cJ, type ExternalReceipt as cK, type ReceiptSent as cL, type ReceiptSentReceiptInfoOneOf as cM, type ChargebackCreated as cN, type ChargebackReversed as cO, type CreatedBy as cP, type CreatedByStringOneOf as cQ, type ChannelInfo as cR, type CustomField as cS, type BalanceSummary as cT, type Balance as cU, type AdditionalFee as cV, type FulfillmentStatusesAggregate as cW, type Tags as cX, type TagList as cY, type Location as cZ, type OrderSettings as c_, type LineItemProductNameChange as ca, type LineItemDescriptionLineChange as cb, type LineItemModifiersChange as cc, type ManagedLineItem as cd, type ManagedDiscount as ce, type TranslatedValue as cf, type LineItemAmount as cg, type ManagedAdditionalFee as ch, type TotalPriceChange as ci, type ShippingInformationChange as cj, type ShippingInformation as ck, type SavedPaymentMethod as cl, type AuthorizedPaymentCreated as cm, type AuthorizedPaymentCaptured as cn, type AuthorizedPaymentVoided as co, type RefundInitiated as cp, type RefundedPayment as cq, type RefundedPaymentKindOneOf as cr, type RegularPaymentRefund as cs, type GiftCardPaymentRefund as ct, type MembershipPaymentRefund as cu, type PaymentRefunded as cv, type PaymentRefundFailed as cw, type RefundedAsStoreCredit as cx, type PaymentPending as cy, type PaymentPendingPaymentDetailsOneOf as cz, type PreparePaymentCollectionResponse as d, type PreviewEmailByTypeResponse as d$, type CustomAllowedActions as d0, type FormInfo as d1, type FormIdentifier as d2, type PlatformFeeSummary as d3, type PlatformFee as d4, type OrderApproved as d5, type OrdersExperiments as d6, type OrderRejectedEventOrderRejected as d7, type OrderItemsRestocked as d8, type V1RestockItem as d9, type VersionedDocumentId as dA, type TriggerReindexRequest as dB, type TriggerReindexResponse as dC, type Empty as dD, type BatchOfTriggerReindexOrderRequest as dE, type TriggerReindexOrderRequest as dF, type SendBuyerConfirmationEmailRequest as dG, type SendBuyerConfirmationEmailResponse as dH, type SendBuyerPaymentsReceivedEmailRequest as dI, type SendBuyerPaymentsReceivedEmailResponse as dJ, type SendBuyerPickupConfirmationEmailRequest as dK, type SendBuyerPickupConfirmationEmailResponse as dL, type BulkSendBuyerPickupConfirmationEmailsRequest as dM, type BulkSendBuyerPickupConfirmationEmailsResponse as dN, type SendBuyerShippingConfirmationEmailRequest as dO, type SendBuyerShippingConfirmationEmailResponse as dP, type BulkSendBuyerShippingConfirmationEmailsRequest as dQ, type BulkSendBuyerShippingConfirmationEmailsResponse as dR, type SendMerchantOrderReceivedNotificationRequest as dS, type SendMerchantOrderReceivedNotificationResponse as dT, type SendCancelRefundEmailRequest as dU, type SendCancelRefundEmailResponse as dV, type SendRefundEmailRequest as dW, type SendRefundEmailResponse as dX, type SendMerchantOrderReceivedPushRequest as dY, type SendMerchantOrderReceivedPushResponse as dZ, type PreviewEmailByTypeRequest as d_, type OrderImported as da, type ImportedOrderDeleted as db, type ImportOrderRequest as dc, type SetOrderNumberCounterRequest as dd, type BulkDeleteImportedOrdersRequest as de, type DomainEvent as df, type DomainEventBodyOneOf as dg, type EntityCreatedEvent as dh, type RestoreInfo as di, type EntityUpdatedEvent as dj, type EntityDeletedEvent as dk, type ActionEvent as dl, type MessageEnvelope as dm, type IdentificationData as dn, type IdentificationDataIdOneOf as dp, type UpdateInternalDocumentsEvent as dq, type UpdateInternalDocumentsEventOperationOneOf as dr, type InternalDocument as ds, type InternalDocumentUpdateOperation as dt, type DeleteByIdsOperation as du, type DeleteByFilterOperation as dv, type InternalDocumentUpdateByFilterOperation as dw, type InternalUpdateExistingOperation as dx, type VersionedDocumentUpdateOperation as dy, type VersionedDeleteByIdsOperation as dz, type PreparePaymentCollectionApplicationErrors as e, type WixReceiptInfo as e$, type PreviewRefundEmailRequest as e0, type RefundDetails as e1, type RefundItem as e2, type LineItemRefund as e3, type AdditionalFeeRefund as e4, type ShippingRefund as e5, type PreviewRefundEmailResponse as e6, type PreviewCancelEmailRequest as e7, type PreviewCancelEmailResponse as e8, type PreviewCancelRefundEmailRequest as e9, type RefundabilityAdditionalRefundabilityInfoOneOf as eA, type CreatePaymentGatewayOrderRequest as eB, type ChargedBy as eC, type ChargeMembershipsRequest as eD, type MembershipChargeItem as eE, type MembershipName as eF, type ServiceProperties as eG, type ChargeMembershipsResponse as eH, type TriggerRefundRequest as eI, type RefundSideEffects as eJ, type RestockInfo as eK, type RestockItem as eL, type OrderTransactions as eM, type Payment as eN, type PaymentPaymentDetailsOneOf as eO, type PaymentReceiptInfoOneOf as eP, type RegularPaymentDetails as eQ, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eR, type CreditCardPaymentMethodDetails as eS, type AuthorizationDetails as eT, type AuthorizationCapture as eU, type AuthorizationActionFailureDetails as eV, type AuthorizationVoid as eW, type V1ScheduledAction as eX, type Chargeback as eY, type GiftCardPaymentDetails as eZ, type MembershipPaymentDetails as e_, type PreviewCancelRefundEmailResponse as ea, type PreviewBuyerPaymentsReceivedEmailRequest as eb, type PreviewBuyerPaymentsReceivedEmailResponse as ec, type PreviewBuyerConfirmationEmailRequest as ed, type PreviewBuyerConfirmationEmailResponse as ee, type PreviewBuyerPickupConfirmationEmailRequest as ef, type PreviewBuyerPickupConfirmationEmailResponse as eg, type PreviewShippingConfirmationEmailRequest as eh, type PreviewShippingConfirmationEmailResponse as ei, type PreviewResendDownloadLinksEmailRequest as ej, type PreviewResendDownloadLinksEmailResponse as ek, type PreparePaymentCollectionRequest as el, type RedirectUrls as em, type DelayedCaptureSettings as en, type Duration as eo, type GetPaymentCollectabilityStatusRequest as ep, type RecordManuallyCollectedPaymentRequest as eq, type RecordManuallyCollectedPaymentResponse as er, type MarkOrderAsPaidRequest as es, type BulkMarkOrdersAsPaidRequest as et, type BulkOrderResult as eu, type ItemMetadata as ev, type ApplicationError as ew, type BulkActionMetadata as ex, type GetRefundabilityStatusRequest as ey, type Refundability as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type LineItemDelta as f$, type ExternalReceiptInfo as f0, type Refund as f1, type RefundTransaction as f2, type RefundStatusInfo as f3, type AggregatedRefundSummary as f4, type RefundItemsBreakdown as f5, type LineItemRefundSummary as f6, type CalculateRefundRequest as f7, type CalculateRefundItemRequest as f8, type CalculateRefundResponse as f9, type CreateOrderRequest as fA, type OrderCreationSettings as fB, type OrderCreateNotifications as fC, type CreateOrderResponse as fD, type UpdateOrderRequest as fE, type UpdateOrderResponse as fF, type BulkUpdateOrdersRequest as fG, type CommitDeltasRequest as fH, type DraftOrderDiffs as fI, type DraftOrderDiffsShippingUpdateInfoOneOf as fJ, type DraftOrderDiffsBuyerUpdateInfoOneOf as fK, type DraftOrderDiffsBillingUpdateInfoOneOf as fL, type DraftOrderDiffsRecipientUpdateInfoOneOf as fM, type V1LineItemDelta as fN, type V1LineItemDeltaDeltaOneOf as fO, type OrderLineItemChangedDetails as fP, type ItemChangedDetails as fQ, type AppliedDiscountDelta as fR, type AppliedDiscountDeltaDeltaOneOf as fS, type AdditionalFeeDelta as fT, type AdditionalFeeDeltaDeltaOneOf as fU, type DraftOrderCommitSettings as fV, type InventoryUpdateDetails as fW, type CommitDeltasResponse as fX, type OrderDeltasCommitted as fY, type CommittedDiffs as fZ, type CommittedDiffsShippingUpdateInfoOneOf as f_, type CalculateRefundItemResponse as fa, type VoidAuthorizedPaymentsRequest as fb, type CaptureAuthorizedPaymentsRequest as fc, type ChargeSavedPaymentMethodRequest as fd, type ChargeSavedPaymentMethodResponse as fe, type ItemCombination as ff, type ItemCombinationLineItem as fg, type DiffmatokyPayload as fh, type ErrorInformation as fi, type GetOrderRequest as fj, type GetOrderResponse as fk, type InternalQueryOrdersRequest as fl, type PlatformQuery as fm, type PlatformQueryPagingMethodOneOf as fn, type Sorting as fo, type PlatformPaging as fp, type CursorPaging as fq, type InternalQueryOrdersResponse as fr, type PlatformPagingMetadata as fs, type Cursors as ft, type QueryOrderRequest as fu, type QueryOrderResponse as fv, type SearchOrdersRequest as fw, type CursorSearch as fx, type CursorSearchPagingMethodOneOf as fy, type CursorPagingMetadata as fz, type BulkMarkOrdersAsPaidResponse as g, type MarkAsFulfilledResponse as g$, type LineItemDeltaDeltaOneOf as g0, type ArchiveOrderRequest as g1, type ArchiveOrderResponse as g2, type BulkArchiveOrdersRequest as g3, type BulkArchiveOrdersResponse as g4, type BulkArchiveOrdersByFilterRequest as g5, type BulkArchiveOrdersByFilterResponse as g6, type UnArchiveOrderRequest as g7, type UnArchiveOrderResponse as g8, type BulkUnArchiveOrdersRequest as g9, type TrackingNumberEdited as gA, type TrackingLinkAdded as gB, type ShippingConfirmationEmailSent as gC, type InvoiceAdded as gD, type InvoiceSent as gE, type FulfillerEmailSent as gF, type ShippingAddressEdited as gG, type EmailEdited as gH, type PickupReadyEmailSent as gI, type OrderPartiallyPaid as gJ, type OrderPending as gK, type OrderRejected as gL, type AddInternalActivityResponse as gM, type AddActivityRequest as gN, type PublicActivityContentOneOf as gO, type AddActivitiesRequest as gP, type UpdateActivityRequest as gQ, type DeleteActivityRequest as gR, type UpdateLineItemsDescriptionLinesRequest as gS, type LineItemUpdate as gT, type UpdateLineItemsDescriptionLinesResponse as gU, type MarkOrderAsSeenByHumanRequest as gV, type MarkOrderAsSeenByHumanResponse as gW, type CancelOrderRequest as gX, type OrderCanceledEventOrderCanceled as gY, type UpdateOrderStatusRequest as gZ, type MarkAsFulfilledRequest as g_, type BulkUnArchiveOrdersResponse as ga, type BulkUnArchiveOrdersByFilterRequest as gb, type BulkUnArchiveOrdersByFilterResponse as gc, type UpdateBuyerInfoRequest as gd, type BuyerInfoUpdate as ge, type UpdateBuyerInfoResponse as gf, type UpdateBuyerEmailRequest as gg, type UpdateBuyerEmailResponse as gh, type UpdateOrderShippingAddressRequest as gi, type UpdateOrderShippingAddressResponse as gj, type UpdateBillingContactDetailsRequest as gk, type UpdateBillingContactDetailsResponse as gl, type UpdateOrderLineItemRequest as gm, type UpdateOrderLineItemsRequest as gn, type MaskedOrderLineItem as go, type UpdateOrderLineItemsResponse as gp, type AddInternalActivityRequest as gq, type InternalActivity as gr, type InternalActivityContentOneOf as gs, type OrderPlaced as gt, type OrderPaid as gu, type OrderFulfilled as gv, type OrderNotFulfilled as gw, type OrderCanceled as gx, type DownloadLinkSent as gy, type TrackingNumberAdded as gz, type GetRefundabilityStatusResponse as h, type Payments as h$, type FulfillmentStatusUpdated as h0, type BulkMarkAsFulfilledRequest as h1, type BulkMarkAsFulfilledResponse as h2, type BulkMarkAsFulfilledByFilterRequest as h3, type BulkMarkAsFulfilledByFilterResponse as h4, type MarkAsUnfulfilledRequest as h5, type MarkAsUnfulfilledResponse as h6, type BulkMarkAsUnfulfilledRequest as h7, type BulkMarkAsUnfulfilledResponse as h8, type BulkMarkAsUnfulfilledByFilterRequest as h9, type InvoiceSentEvent as hA, type IdAndVersion as hB, type InvoiceFields as hC, type Customer as hD, type Email as hE, type QuotesAddress as hF, type AddressDescription as hG, type Phone as hH, type Company as hI, type CommonAddress as hJ, type CommonAddressStreetOneOf as hK, type Subdivision as hL, type StandardDetails as hM, type InvoiceDates as hN, type LineItems as hO, type LineItem as hP, type BigDecimalWrapper as hQ, type LineItemTax as hR, type Source as hS, type LineItemMetaData as hT, type Locale as hU, type TotalPrice as hV, type ItemizedFee as hW, type Discount as hX, type DiscountOneDiscountTypeOneOf as hY, type CalculatedTaxes as hZ, type CalculatedTax as h_, type BulkMarkAsUnfulfilledByFilterResponse as ha, type BulkSetBusinessLocationRequest as hb, type BulkSetBusinessLocationResponse as hc, type BulkSetBusinessLocationResult as hd, type V1MarkOrderAsPaidRequest as he, type V1MarkOrderAsPaidResponse as hf, type PaymentStatusUpdated as hg, type V1BulkMarkOrdersAsPaidRequest as hh, type V1BulkMarkOrdersAsPaidResponse as hi, type V1CreatePaymentGatewayOrderRequest as hj, type V1CreatePaymentGatewayOrderResponse as hk, type GetShipmentsRequest as hl, type GetShipmentsResponse as hm, type AggregateOrdersRequest as hn, type DecrementItemsQuantityRequest as ho, type DecrementData as hp, type DecrementItemsQuantityResponse as hq, type BulkUpdateOrderTagsRequest as hr, type BulkUpdateOrderTagsResult as hs, type Task as ht, type TaskKey as hu, type TaskAction as hv, type TaskActionActionOneOf as hw, type Complete as hx, type Cancel as hy, type Reschedule as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, onOrderApproved as i$, type InvoicesPayment as i0, type MetaData as i1, type InvoiceDynamicPriceTotals as i2, type CustomFieldValue as i3, type Value as i4, type Deposit as i5, type BaseEventMetadata as i6, type EventMetadata as i7, type OrderSearchSpec as i8, type DescriptionLineTypeWithLiterals as i9, type ScheduledActionWithLiterals as iA, type DurationUnitWithLiterals as iB, type PaymentCollectabilityStatusWithLiterals as iC, type RefundableStatusWithLiterals as iD, type NonRefundableReasonWithLiterals as iE, type ManuallyRefundableReasonWithLiterals as iF, type RestockTypeWithLiterals as iG, type TransactionStatusWithLiterals as iH, type AuthorizationCaptureStatusWithLiterals as iI, type AuthorizationVoidStatusWithLiterals as iJ, type ReasonWithLiterals as iK, type ActionTypeWithLiterals as iL, type ChargebackStatusWithLiterals as iM, type MembershipPaymentStatusWithLiterals as iN, type RefundStatusWithLiterals as iO, type SortOrderWithLiterals as iP, type OrderApprovalStrategyWithLiterals as iQ, type DeltaPaymentOptionTypeWithLiterals as iR, type InventoryActionWithLiterals as iS, type PlacementWithLiterals as iT, type SubdivisionTypeWithLiterals as iU, type SourceTypeWithLiterals as iV, type CustomFieldGroupWithLiterals as iW, type ValueTypeWithLiterals as iX, type DepositTypeWithLiterals as iY, type InvoiceStatusWithLiterals as iZ, type CommonSearchWithEntityContext as i_, type ItemTypePresetWithLiterals as ia, type PaymentOptionTypeWithLiterals as ib, type JurisdictionTypeWithLiterals as ic, type SubscriptionFrequencyWithLiterals as id, type AdjustmentTypeWithLiterals as ie, type TaxableAddressTypeWithLiterals as ig, type PaymentStatusWithLiterals as ih, type FulfillmentStatusWithLiterals as ii, type WeightUnitWithLiterals as ij, type VatTypeWithLiterals as ik, type PickupMethodWithLiterals as il, type DiscountTypeWithLiterals as im, type DiscountReasonWithLiterals as io, type LineItemQuantityChangeTypeWithLiterals as ip, type ActivityTypeWithLiterals as iq, type OrderActivityTypeEnumActivityTypeWithLiterals as ir, type AttributionSourceWithLiterals as is, type ChannelTypeWithLiterals as it, type AdditionalFeeSourceWithLiterals as iu, type OrderActionTypeWithLiterals as iv, type ChargeTypeWithLiterals as iw, type WebhookIdentityTypeWithLiterals as ix, type VersioningModeWithLiterals as iy, type PreviewEmailTypeWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, onOrderUpdated as j0, onOrderCanceled as j1, onOrderCreated as j2, onOrderPaymentStatusUpdated as j3, importOrder as j4, setOrderNumberCounter as j5, bulkDeleteImportedOrders as j6, preparePaymentCollection as j7, getPaymentCollectabilityStatus as j8, recordManuallyCollectedPayment as j9, paymentCollectionMarkOrderAsPaid as ja, paymentCollectionBulkMarkOrdersAsPaid as jb, getRefundabilityStatus as jc, paymentCollectionCreatePaymentGatewayOrder as jd, chargeMemberships as je, triggerRefund as jf, voidAuthorizedPayments as jg, captureAuthorizedPayments as jh, getOrder as ji, createOrder as jj, updateOrder as jk, bulkUpdateOrders as jl, updateOrderLineItem as jm, addActivity as jn, addActivities as jo, updateActivity as jp, deleteActivity as jq, cancelOrder as jr, updateOrderStatus as js, aggregateOrders as jt, bulkUpdateOrderTags as ju, 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 { dl as ActionEvent, aL as ActionType, iI as ActionTypeWithLiterals, bY as Activity, bZ as ActivityContentOneOf, ar as ActivityType, io as ActivityTypeWithLiterals, gN as AddActivitiesRequest, gL as AddActivityRequest, go as AddInternalActivityRequest, gK as AddInternalActivityResponse, cV as AdditionalFee, fR as AdditionalFeeDelta, fS as AdditionalFeeDeltaDeltaOneOf, dQ as AdditionalFeeRefund, av as AdditionalFeeSource, is as AdditionalFeeSourceWithLiterals, bA as Address, hE as AddressDescription, bC as AddressLocation, bz as AddressWithContact, ag as AdjustmentType, ic as AdjustmentTypeWithLiterals, hl as AggregateOrdersRequest, eR as AggregatedRefundSummary, eh as ApplicationError, bQ as AppliedDiscount, fP as AppliedDiscountDelta, fQ as AppliedDiscountDeltaDeltaOneOf, bR as AppliedDiscountDiscountSourceOneOf, f$ as ArchiveOrderRequest, g0 as ArchiveOrderResponse, at as AttributionSource, iq as AttributionSourceWithLiterals, eG as AuthorizationActionFailureDetails, eF as AuthorizationCapture, aI as AuthorizationCaptureStatus, iF as AuthorizationCaptureStatusWithLiterals, eE as AuthorizationDetails, eH as AuthorizationVoid, aJ as AuthorizationVoidStatus, iG as AuthorizationVoidStatusWithLiterals, cn as AuthorizedPaymentCaptured, cm as AuthorizedPaymentCreated, co as AuthorizedPaymentVoided, cU as Balance, cT as BalanceSummary, i4 as BaseEventMetadata, fd as BatchOfTriggerReindexOrderRequest, hO as BigDecimalWrapper, bl as BillingAdjustment, bm as BillingAdjustmentPriceSummary, ei as BulkActionMetadata, g3 as BulkArchiveOrdersByFilterRequest, g4 as BulkArchiveOrdersByFilterResponse, g1 as BulkArchiveOrdersRequest, g2 as BulkArchiveOrdersResponse, de as BulkDeleteImportedOrdersRequest, h1 as BulkMarkAsFulfilledByFilterRequest, h2 as BulkMarkAsFulfilledByFilterResponse, g$ as BulkMarkAsFulfilledRequest, h0 as BulkMarkAsFulfilledResponse, h7 as BulkMarkAsUnfulfilledByFilterRequest, h8 as BulkMarkAsUnfulfilledByFilterResponse, h5 as BulkMarkAsUnfulfilledRequest, h6 as BulkMarkAsUnfulfilledResponse, ee as BulkMarkOrdersAsPaidRequest, ef as BulkOrderResult, dw as BulkSendBuyerPickupConfirmationEmailsRequest, dx as BulkSendBuyerPickupConfirmationEmailsResponse, dA as BulkSendBuyerShippingConfirmationEmailsRequest, dB as BulkSendBuyerShippingConfirmationEmailsResponse, h9 as BulkSetBusinessLocationRequest, ha as BulkSetBusinessLocationResponse, hb as BulkSetBusinessLocationResult, g9 as BulkUnArchiveOrdersByFilterRequest, ga as BulkUnArchiveOrdersByFilterResponse, g7 as BulkUnArchiveOrdersRequest, g8 as BulkUnArchiveOrdersResponse, hp as BulkUpdateOrderTagsRequest, hq as BulkUpdateOrderTagsResult, fE as BulkUpdateOrdersRequest, bv as BuyerInfo, bw as BuyerInfoIdOneOf, gc as BuyerInfoUpdate, eV as CalculateRefundItemRequest, eX as CalculateRefundItemResponse, eU as CalculateRefundRequest, eW as CalculateRefundResponse, hY as CalculatedTax, hX as CalculatedTaxes, hw as Cancel, gV as CancelOrderRequest, eZ as CaptureAuthorizedPaymentsRequest, b1 as CatalogReference, cR as ChannelInfo, au as ChannelType, ir as ChannelTypeWithLiterals, eo as ChargeMembershipsRequest, es as ChargeMembershipsResponse, e_ as ChargeSavedPaymentMethodRequest, e$ as ChargeSavedPaymentMethodResponse, ax as ChargeType, iu as ChargeTypeWithLiterals, eJ as Chargeback, cN as ChargebackCreated, cO as ChargebackReversed, aM as ChargebackStatus, iJ as ChargebackStatusWithLiterals, en as ChargedBy, b7 as Color, fF as CommitDeltasRequest, fV as CommitDeltasResponse, fX as CommittedDiffs, fY as CommittedDiffsShippingUpdateInfoOneOf, hH as CommonAddress, hI as CommonAddressStreetOneOf, iY as CommonSearchWithEntityContext, hG as Company, hv as Complete, bS as Coupon, fy as CreateOrderRequest, fB as CreateOrderResponse, em as CreatePaymentGatewayOrderRequest, cP as CreatedBy, cQ as CreatedByStringOneOf, cC as CreditCardDetails, eD as CreditCardPaymentMethodDetails, bx as CurrencyConversionDetails, fo as CursorPaging, fx as CursorPagingMetadata, fv as CursorSearch, fw as CursorSearchPagingMethodOneOf, fr as Cursors, b_ as CustomActivity, d0 as CustomAllowedActions, cS as CustomField, aX as CustomFieldGroup, iU as CustomFieldGroupWithLiterals, i1 as CustomFieldValue, hB as Customer, hn as DecrementData, hm as DecrementItemsQuantityRequest, ho as DecrementItemsQuantityResponse, e8 as DelayedCaptureSettings, gP as DeleteActivityRequest, f5 as DeleteByFilterOperation, f4 as DeleteByIdsOperation, bG as DeliveryLogistics, bH as DeliveryLogisticsAddressOneOf, bK as DeliveryTimeSlot, aS as DeltaPaymentOptionType, iP as DeltaPaymentOptionTypeWithLiterals, i3 as Deposit, aZ as DepositType, iW as DepositTypeWithLiterals, b2 as DescriptionLine, b4 as DescriptionLineDescriptionLineValueOneOf, b5 as DescriptionLineName, ab as DescriptionLineType, i7 as DescriptionLineTypeWithLiterals, b3 as DescriptionLineValueOneOf, ff as DiffmatokyPayload, bf as DigitalFile, hV as Discount, hW as DiscountOneDiscountTypeOneOf, ap as DiscountReason, il as DiscountReasonWithLiterals, bV as DiscountRule, bW as DiscountRuleName, ao as DiscountType, ik as DiscountTypeWithLiterals, df as DomainEvent, dg as DomainEventBodyOneOf, gw as DownloadLinkSent, c4 as DraftOrderChangesApplied, fT as DraftOrderCommitSettings, fG as DraftOrderDiffs, fJ as DraftOrderDiffsBillingUpdateInfoOneOf, fI as DraftOrderDiffsBuyerUpdateInfoOneOf, fK as DraftOrderDiffsRecipientUpdateInfoOneOf, fH as DraftOrderDiffsShippingUpdateInfoOneOf, e9 as Duration, aB as DurationUnit, iy as DurationUnitWithLiterals, hC as Email, gF as EmailEdited, e5 as Empty, dh as EntityCreatedEvent, dk as EntityDeletedEvent, dj as EntityUpdatedEvent, fg as ErrorInformation, i5 as EventMetadata, br as ExtendedFields, cK as ExternalReceipt, eN as ExternalReceiptInfo, b8 as FocalPoint, d2 as FormIdentifier, d1 as FormInfo, bk as FreeTrialPeriod, gD as FulfillerEmailSent, aj as FulfillmentStatus, g_ as FulfillmentStatusUpdated, ig as FulfillmentStatusWithLiterals, cW as FulfillmentStatusesAggregate, bD as FullAddressContactDetails, fh as GetOrderRequest, fi as GetOrderResponse, ea as GetPaymentCollectabilityStatusRequest, ej as GetRefundabilityStatusRequest, hj as GetShipmentsRequest, hk as GetShipmentsResponse, eK as GiftCardPaymentDetails, ct as GiftCardPaymentRefund, hz as IdAndVersion, dn as IdentificationData, dp as IdentificationDataIdOneOf, dc as ImportOrderRequest, db as ImportedOrderDeleted, gp as InternalActivity, gq as InternalActivityContentOneOf, f2 as InternalDocument, f6 as InternalDocumentUpdateByFilterOperation, f3 as InternalDocumentUpdateOperation, fj as InternalQueryOrdersRequest, fp as InternalQueryOrdersResponse, f7 as InternalUpdateExistingOperation, aT as InventoryAction, iQ as InventoryActionWithLiterals, fU as InventoryUpdateDetails, gB as InvoiceAdded, hL as InvoiceDates, i0 as InvoiceDynamicPriceTotals, hA as InvoiceFields, gC as InvoiceSent, hy as InvoiceSentEvent, a_ as InvoiceStatus, iX as InvoiceStatusWithLiterals, h_ as InvoicesPayment, fO as ItemChangedDetails, eg as ItemMetadata, bu as ItemModifier, bc as ItemTaxFullDetails, ba as ItemType, bb as ItemTypeItemTypeDataOneOf, ac as ItemTypePreset, i8 as ItemTypePresetWithLiterals, hU as ItemizedFee, ae as JurisdictionType, ia as JurisdictionTypeWithLiterals, hN as LineItem, cg as LineItemAmount, c7 as LineItemChanges, fZ as LineItemDelta, f_ as LineItemDeltaDeltaOneOf, cb as LineItemDescriptionLineChange, bX as LineItemDiscount, c3 as LineItemExchangeData, hR as LineItemMetaData, cc as LineItemModifiersChange, c9 as LineItemPriceChange, ca as LineItemProductNameChange, c8 as LineItemQuantityChange, aq as LineItemQuantityChangeType, im as LineItemQuantityChangeTypeWithLiterals, dP as LineItemRefund, eT as LineItemRefundSummary, hP as LineItemTax, be as LineItemTaxBreakdown, bd as LineItemTaxInfo, gR as LineItemUpdate, hM as LineItems, hS as Locale, cZ as Location, bo as LocationAndQuantity, ch as ManagedAdditionalFee, ce as ManagedDiscount, cd as ManagedLineItem, aF as ManuallyRefundableReason, iC as ManuallyRefundableReasonWithLiterals, gY as MarkAsFulfilledRequest, gZ as MarkAsFulfilledResponse, h3 as MarkAsUnfulfilledRequest, h4 as MarkAsUnfulfilledResponse, ed as MarkOrderAsPaidRequest, gT as MarkOrderAsSeenByHumanRequest, gU as MarkOrderAsSeenByHumanResponse, gm as MaskedOrderLineItem, ep as MembershipChargeItem, eq as MembershipName, eL as MembershipPaymentDetails, cu as MembershipPaymentRefund, aN as MembershipPaymentStatus, iK as MembershipPaymentStatusWithLiterals, b$ as MerchantComment, bT as MerchantDiscount, bU as MerchantDiscountMerchantDiscountReasonOneOf, dm as MessageEnvelope, h$ as MetaData, bs as ModifierGroup, c2 as NewExchangeOrderCreated, aE as NonRefundableReason, iB as NonRefundableReasonWithLiterals, aw as OrderActionType, it as OrderActionTypeWithLiterals, as as OrderActivityTypeEnumActivityType, ip as OrderActivityTypeEnumActivityTypeWithLiterals, aR as OrderApprovalStrategy, iO as OrderApprovalStrategyWithLiterals, d5 as OrderApproved, gv as OrderCanceled, gW as OrderCanceledEventOrderCanceled, c5 as OrderChange, c6 as OrderChangeValueOneOf, fA as OrderCreateNotifications, c1 as OrderCreatedFromExchange, fz as OrderCreationSettings, fW as OrderDeltasCommitted, gt as OrderFulfilled, da as OrderImported, d8 as OrderItemsRestocked, a$ as OrderLineItem, fN as OrderLineItemChangedDetails, gu as OrderNotFulfilled, gs as OrderPaid, gH as OrderPartiallyPaid, gI as OrderPending, gr as OrderPlaced, c0 as OrderRefunded, gJ as OrderRejected, d7 as OrderRejectedEventOrderRejected, i6 as OrderSearchSpec, c_ as OrderSettings, c$ as OrderSettingsAllowedActionsOneOf, an as OrderStatus, bP as OrderTaxBreakdown, bO as OrderTaxInfo, ex as OrderTransactions, d6 as OrdersExperiments, ey as Payment, cD as PaymentCanceled, cE as PaymentCanceledPaymentDetailsOneOf, aC as PaymentCollectabilityStatus, iz as PaymentCollectabilityStatusWithLiterals, cF as PaymentDeclined, cG as PaymentDeclinedPaymentDetailsOneOf, ad as PaymentOptionType, i9 as PaymentOptionTypeWithLiterals, ez as PaymentPaymentDetailsOneOf, cy as PaymentPending, cz as PaymentPendingPaymentDetailsOneOf, eA as PaymentReceiptInfoOneOf, cw as PaymentRefundFailed, cv as PaymentRefunded, ai as PaymentStatus, he as PaymentStatusUpdated, ie as PaymentStatusWithLiterals, hZ as Payments, hF as Phone, b9 as PhysicalProperties, bJ as PickupAddress, bI as PickupDetails, am as PickupMethod, ij as PickupMethodWithLiterals, gG as PickupReadyEmailSent, aU as Placement, iR as PlacementWithLiterals, b6 as PlainTextValue, d4 as PlatformFee, d3 as PlatformFeeSummary, fn as PlatformPaging, fq as PlatformPagingMetadata, fk as PlatformQuery, fl as PlatformQueryPagingMethodOneOf, e6 as PreparePaymentCollectionRequest, dZ as PreviewBuyerConfirmationEmailRequest, d_ as PreviewBuyerConfirmationEmailResponse, dX as PreviewBuyerPaymentsReceivedEmailRequest, dY as PreviewBuyerPaymentsReceivedEmailResponse, d$ as PreviewBuyerPickupConfirmationEmailRequest, e0 as PreviewBuyerPickupConfirmationEmailResponse, dT as PreviewCancelEmailRequest, dU as PreviewCancelEmailResponse, dV as PreviewCancelRefundEmailRequest, dW as PreviewCancelRefundEmailResponse, dK as PreviewEmailByTypeRequest, dL as PreviewEmailByTypeResponse, az as PreviewEmailType, iw as PreviewEmailTypeWithLiterals, dM as PreviewRefundEmailRequest, dS as PreviewRefundEmailResponse, e3 as PreviewResendDownloadLinksEmailRequest, e4 as PreviewResendDownloadLinksEmailResponse, e1 as PreviewShippingConfirmationEmailRequest, e2 as PreviewShippingConfirmationEmailResponse, bn as PriceDescription, by as PriceSummary, b0 as ProductName, gM as PublicActivityContentOneOf, fs as QueryOrderRequest, ft as QueryOrderResponse, hD as QuotesAddress, aK as Reason, iH as ReasonWithLiterals, cH as ReceiptCreated, cI as ReceiptCreatedReceiptInfoOneOf, cL as ReceiptSent, cM as ReceiptSentReceiptInfoOneOf, eb as RecordManuallyCollectedPaymentRequest, ec as RecordManuallyCollectedPaymentResponse, e7 as RedirectUrls, eO as Refund, dN as RefundDetails, cp as RefundInitiated, dO as RefundItem, eS as RefundItemsBreakdown, eu as RefundSideEffects, aO as RefundStatus, eQ as RefundStatusInfo, iL as RefundStatusWithLiterals, eP as RefundTransaction, ek as Refundability, el as RefundabilityAdditionalRefundabilityInfoOneOf, aD as RefundableStatus, iA as RefundableStatusWithLiterals, cx as RefundedAsStoreCredit, cq as RefundedPayment, cr as RefundedPaymentKindOneOf, cA as RegularPayment, eB as RegularPaymentDetails, eC as RegularPaymentDetailsPaymentMethodDetailsOneOf, cB as RegularPaymentPaymentMethodDetailsOneOf, cs as RegularPaymentRefund, hx as Reschedule, ev as RestockInfo, ew as RestockItem, aG as RestockType, iD as RestockTypeWithLiterals, di as RestoreInfo, cl as SavedPaymentMethod, aA as ScheduledAction, ix as ScheduledActionWithLiterals, fu as SearchOrdersRequest, dq as SendBuyerConfirmationEmailRequest, dr as SendBuyerConfirmationEmailResponse, ds as SendBuyerPaymentsReceivedEmailRequest, dt as SendBuyerPaymentsReceivedEmailResponse, du as SendBuyerPickupConfirmationEmailRequest, dv as SendBuyerPickupConfirmationEmailResponse, dy as SendBuyerShippingConfirmationEmailRequest, dz as SendBuyerShippingConfirmationEmailResponse, dE as SendCancelRefundEmailRequest, dF as SendCancelRefundEmailResponse, dC as SendMerchantOrderReceivedNotificationRequest, dD as SendMerchantOrderReceivedNotificationResponse, dI as SendMerchantOrderReceivedPushRequest, dJ as SendMerchantOrderReceivedPushResponse, dG as SendRefundEmailRequest, dH as SendRefundEmailResponse, er as ServiceProperties, dd as SetOrderNumberCounterRequest, gE as ShippingAddressEdited, gA as ShippingConfirmationEmailSent, ck as ShippingInformation, cj as ShippingInformationChange, bL as ShippingPrice, dR as ShippingRefund, bM as ShippingRegion, aQ as SortOrder, iN as SortOrderWithLiterals, fm as Sorting, hQ as Source, aW as SourceType, iT as SourceTypeWithLiterals, hK as StandardDetails, bB as StreetAddress, hJ as Subdivision, aV as SubdivisionType, iS as SubdivisionTypeWithLiterals, bi as SubscriptionDescription, af as SubscriptionFrequency, ib as SubscriptionFrequencyWithLiterals, bg as SubscriptionInfo, bj as SubscriptionSettings, bh as SubscriptionTitle, cY as TagList, cX as Tags, hr as Task, ht as TaskAction, hu as TaskActionActionOneOf, hs as TaskKey, bN as TaxSummary, bp as TaxableAddress, bq as TaxableAddressTaxableAddressDataOneOf, ah as TaxableAddressType, id as TaxableAddressTypeWithLiterals, hT as TotalPrice, ci as TotalPriceChange, gz as TrackingLinkAdded, gx as TrackingNumberAdded, gy as TrackingNumberEdited, aH as TransactionStatus, iE as TransactionStatusWithLiterals, bt as TranslatableString, cf as TranslatedValue, et as TriggerRefundRequest, fe as TriggerReindexOrderRequest, fb as TriggerReindexRequest, fc as TriggerReindexResponse, g5 as UnArchiveOrderRequest, g6 as UnArchiveOrderResponse, gO as UpdateActivityRequest, gi as UpdateBillingContactDetailsRequest, gj as UpdateBillingContactDetailsResponse, ge as UpdateBuyerEmailRequest, gf as UpdateBuyerEmailResponse, gb as UpdateBuyerInfoRequest, gd as UpdateBuyerInfoResponse, f0 as UpdateInternalDocumentsEvent, f1 as UpdateInternalDocumentsEventOperationOneOf, gQ as UpdateLineItemsDescriptionLinesRequest, gS as UpdateLineItemsDescriptionLinesResponse, gk as UpdateOrderLineItemRequest, gl as UpdateOrderLineItemsRequest, gn as UpdateOrderLineItemsResponse, fC as UpdateOrderRequest, fD as UpdateOrderResponse, gg as UpdateOrderShippingAddressRequest, gh as UpdateOrderShippingAddressResponse, gX as UpdateOrderStatusRequest, hf as V1BulkMarkOrdersAsPaidRequest, hg as V1BulkMarkOrdersAsPaidResponse, hh as V1CreatePaymentGatewayOrderRequest, hi as V1CreatePaymentGatewayOrderResponse, fL as V1LineItemDelta, fM as V1LineItemDeltaDeltaOneOf, hc as V1MarkOrderAsPaidRequest, hd as V1MarkOrderAsPaidResponse, d9 as V1RestockItem, eI as V1ScheduledAction, bF as V1ShippingInformation, i2 as Value, aY as ValueType, iV as ValueTypeWithLiterals, bE as VatId, al as VatType, ii as VatTypeWithLiterals, f9 as VersionedDeleteByIdsOperation, fa as VersionedDocumentId, f8 as VersionedDocumentUpdateOperation, aP as VersioningMode, iM as VersioningModeWithLiterals, eY as VoidAuthorizedPaymentsRequest, ay as WebhookIdentityType, iv as WebhookIdentityTypeWithLiterals, ak as WeightUnit, ih as WeightUnitWithLiterals, cJ as WixReceipt, eM as WixReceiptInfo } from './ecom-v1-order-orders.universal-DDISw1y8.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-Dj5XDyHJ.js';
|
|
3
|
+
export { dl as ActionEvent, aM as ActionType, iL as ActionTypeWithLiterals, bY as Activity, bZ as ActivityContentOneOf, ar as ActivityType, iq as ActivityTypeWithLiterals, gP as AddActivitiesRequest, gN as AddActivityRequest, gq as AddInternalActivityRequest, gM as AddInternalActivityResponse, cV as AdditionalFee, fT as AdditionalFeeDelta, fU as AdditionalFeeDeltaDeltaOneOf, e4 as AdditionalFeeRefund, av as AdditionalFeeSource, iu as AdditionalFeeSourceWithLiterals, bA as Address, hG as AddressDescription, bC as AddressLocation, bz as AddressWithContact, ag as AdjustmentType, ie as AdjustmentTypeWithLiterals, hn as AggregateOrdersRequest, f4 as AggregatedRefundSummary, ew as ApplicationError, bQ as AppliedDiscount, fR as AppliedDiscountDelta, fS as AppliedDiscountDeltaDeltaOneOf, bR as AppliedDiscountDiscountSourceOneOf, g1 as ArchiveOrderRequest, g2 as ArchiveOrderResponse, at as AttributionSource, is as AttributionSourceWithLiterals, eV as AuthorizationActionFailureDetails, eU as AuthorizationCapture, aJ as AuthorizationCaptureStatus, iI as AuthorizationCaptureStatusWithLiterals, eT as AuthorizationDetails, eW as AuthorizationVoid, aK as AuthorizationVoidStatus, iJ as AuthorizationVoidStatusWithLiterals, cn as AuthorizedPaymentCaptured, cm as AuthorizedPaymentCreated, co as AuthorizedPaymentVoided, cU as Balance, cT as BalanceSummary, i6 as BaseEventMetadata, dE as BatchOfTriggerReindexOrderRequest, hQ as BigDecimalWrapper, bl as BillingAdjustment, bm as BillingAdjustmentPriceSummary, ex as BulkActionMetadata, g5 as BulkArchiveOrdersByFilterRequest, g6 as BulkArchiveOrdersByFilterResponse, g3 as BulkArchiveOrdersRequest, g4 as BulkArchiveOrdersResponse, de as BulkDeleteImportedOrdersRequest, h3 as BulkMarkAsFulfilledByFilterRequest, h4 as BulkMarkAsFulfilledByFilterResponse, h1 as BulkMarkAsFulfilledRequest, h2 as BulkMarkAsFulfilledResponse, h9 as BulkMarkAsUnfulfilledByFilterRequest, ha as BulkMarkAsUnfulfilledByFilterResponse, h7 as BulkMarkAsUnfulfilledRequest, h8 as BulkMarkAsUnfulfilledResponse, et as BulkMarkOrdersAsPaidRequest, eu as BulkOrderResult, dM as BulkSendBuyerPickupConfirmationEmailsRequest, dN as BulkSendBuyerPickupConfirmationEmailsResponse, dQ as BulkSendBuyerShippingConfirmationEmailsRequest, dR as BulkSendBuyerShippingConfirmationEmailsResponse, hb as BulkSetBusinessLocationRequest, hc as BulkSetBusinessLocationResponse, hd as BulkSetBusinessLocationResult, gb as BulkUnArchiveOrdersByFilterRequest, gc as BulkUnArchiveOrdersByFilterResponse, g9 as BulkUnArchiveOrdersRequest, ga as BulkUnArchiveOrdersResponse, hr as BulkUpdateOrderTagsRequest, hs as BulkUpdateOrderTagsResult, fG as BulkUpdateOrdersRequest, bv as BuyerInfo, bw as BuyerInfoIdOneOf, ge as BuyerInfoUpdate, f8 as CalculateRefundItemRequest, fa as CalculateRefundItemResponse, f7 as CalculateRefundRequest, f9 as CalculateRefundResponse, h_ as CalculatedTax, hZ as CalculatedTaxes, hy as Cancel, gX as CancelOrderRequest, fc as CaptureAuthorizedPaymentsRequest, b1 as CatalogReference, cR as ChannelInfo, au as ChannelType, it as ChannelTypeWithLiterals, eD as ChargeMembershipsRequest, eH as ChargeMembershipsResponse, fd as ChargeSavedPaymentMethodRequest, fe as ChargeSavedPaymentMethodResponse, ax as ChargeType, iw as ChargeTypeWithLiterals, eY as Chargeback, cN as ChargebackCreated, cO as ChargebackReversed, aN as ChargebackStatus, iM as ChargebackStatusWithLiterals, eC as ChargedBy, b7 as Color, fH as CommitDeltasRequest, fX as CommitDeltasResponse, fZ as CommittedDiffs, f_ as CommittedDiffsShippingUpdateInfoOneOf, hJ as CommonAddress, hK as CommonAddressStreetOneOf, i_ as CommonSearchWithEntityContext, hI as Company, hx as Complete, bS as Coupon, fA as CreateOrderRequest, fD as CreateOrderResponse, eB as CreatePaymentGatewayOrderRequest, cP as CreatedBy, cQ as CreatedByStringOneOf, cC as CreditCardDetails, eS as CreditCardPaymentMethodDetails, bx as CurrencyConversionDetails, fq as CursorPaging, fz as CursorPagingMetadata, fx as CursorSearch, fy as CursorSearchPagingMethodOneOf, ft as Cursors, b_ as CustomActivity, d0 as CustomAllowedActions, cS as CustomField, aX as CustomFieldGroup, iW as CustomFieldGroupWithLiterals, i3 as CustomFieldValue, hD as Customer, hp as DecrementData, ho as DecrementItemsQuantityRequest, hq as DecrementItemsQuantityResponse, en as DelayedCaptureSettings, gR as DeleteActivityRequest, dv as DeleteByFilterOperation, du as DeleteByIdsOperation, bG as DeliveryLogistics, bH as DeliveryLogisticsAddressOneOf, bK as DeliveryTimeSlot, aS as DeltaPaymentOptionType, iR as DeltaPaymentOptionTypeWithLiterals, i5 as Deposit, aZ as DepositType, iY as DepositTypeWithLiterals, b2 as DescriptionLine, b4 as DescriptionLineDescriptionLineValueOneOf, b5 as DescriptionLineName, ab as DescriptionLineType, i9 as DescriptionLineTypeWithLiterals, b3 as DescriptionLineValueOneOf, fh as DiffmatokyPayload, bf as DigitalFile, hX as Discount, hY as DiscountOneDiscountTypeOneOf, ap as DiscountReason, io as DiscountReasonWithLiterals, bV as DiscountRule, bW as DiscountRuleName, ao as DiscountType, im as DiscountTypeWithLiterals, df as DomainEvent, dg as DomainEventBodyOneOf, gy as DownloadLinkSent, c4 as DraftOrderChangesApplied, fV as DraftOrderCommitSettings, fI as DraftOrderDiffs, fL as DraftOrderDiffsBillingUpdateInfoOneOf, fK as DraftOrderDiffsBuyerUpdateInfoOneOf, fM as DraftOrderDiffsRecipientUpdateInfoOneOf, fJ as DraftOrderDiffsShippingUpdateInfoOneOf, eo as Duration, aC as DurationUnit, iB as DurationUnitWithLiterals, hE as Email, gH as EmailEdited, dD as Empty, dh as EntityCreatedEvent, dk as EntityDeletedEvent, dj as EntityUpdatedEvent, fi as ErrorInformation, i7 as EventMetadata, br as ExtendedFields, cK as ExternalReceipt, f0 as ExternalReceiptInfo, b8 as FocalPoint, d2 as FormIdentifier, d1 as FormInfo, bk as FreeTrialPeriod, gF as FulfillerEmailSent, aj as FulfillmentStatus, h0 as FulfillmentStatusUpdated, ii as FulfillmentStatusWithLiterals, cW as FulfillmentStatusesAggregate, bD as FullAddressContactDetails, fj as GetOrderRequest, fk as GetOrderResponse, ep as GetPaymentCollectabilityStatusRequest, ey as GetRefundabilityStatusRequest, hl as GetShipmentsRequest, hm as GetShipmentsResponse, eZ as GiftCardPaymentDetails, ct as GiftCardPaymentRefund, hB as IdAndVersion, dn as IdentificationData, dp as IdentificationDataIdOneOf, dc as ImportOrderRequest, db as ImportedOrderDeleted, gr as InternalActivity, gs as InternalActivityContentOneOf, ds as InternalDocument, dw as InternalDocumentUpdateByFilterOperation, dt as InternalDocumentUpdateOperation, fl as InternalQueryOrdersRequest, fr as InternalQueryOrdersResponse, dx as InternalUpdateExistingOperation, aT as InventoryAction, iS as InventoryActionWithLiterals, fW as InventoryUpdateDetails, gD as InvoiceAdded, hN as InvoiceDates, i2 as InvoiceDynamicPriceTotals, hC as InvoiceFields, gE as InvoiceSent, hA as InvoiceSentEvent, a_ as InvoiceStatus, iZ as InvoiceStatusWithLiterals, i0 as InvoicesPayment, fQ as ItemChangedDetails, ff as ItemCombination, fg as ItemCombinationLineItem, ev as ItemMetadata, bu as ItemModifier, bc as ItemTaxFullDetails, ba as ItemType, bb as ItemTypeItemTypeDataOneOf, ac as ItemTypePreset, ia as ItemTypePresetWithLiterals, hW as ItemizedFee, ae as JurisdictionType, ic as JurisdictionTypeWithLiterals, hP as LineItem, cg as LineItemAmount, c7 as LineItemChanges, f$ as LineItemDelta, g0 as LineItemDeltaDeltaOneOf, cb as LineItemDescriptionLineChange, bX as LineItemDiscount, c3 as LineItemExchangeData, hT as LineItemMetaData, cc as LineItemModifiersChange, c9 as LineItemPriceChange, ca as LineItemProductNameChange, c8 as LineItemQuantityChange, aq as LineItemQuantityChangeType, ip as LineItemQuantityChangeTypeWithLiterals, e3 as LineItemRefund, f6 as LineItemRefundSummary, hR as LineItemTax, be as LineItemTaxBreakdown, bd as LineItemTaxInfo, gT as LineItemUpdate, hO as LineItems, hU as Locale, cZ as Location, bo as LocationAndQuantity, ch as ManagedAdditionalFee, ce as ManagedDiscount, cd as ManagedLineItem, aG as ManuallyRefundableReason, iF as ManuallyRefundableReasonWithLiterals, g_ as MarkAsFulfilledRequest, g$ as MarkAsFulfilledResponse, h5 as MarkAsUnfulfilledRequest, h6 as MarkAsUnfulfilledResponse, es as MarkOrderAsPaidRequest, gV as MarkOrderAsSeenByHumanRequest, gW as MarkOrderAsSeenByHumanResponse, go as MaskedOrderLineItem, eE as MembershipChargeItem, eF as MembershipName, e_ as MembershipPaymentDetails, cu as MembershipPaymentRefund, aO as MembershipPaymentStatus, iN as MembershipPaymentStatusWithLiterals, b$ as MerchantComment, bT as MerchantDiscount, bU as MerchantDiscountMerchantDiscountReasonOneOf, dm as MessageEnvelope, i1 as MetaData, bs as ModifierGroup, c2 as NewExchangeOrderCreated, aF as NonRefundableReason, iE as NonRefundableReasonWithLiterals, aw as OrderActionType, iv as OrderActionTypeWithLiterals, as as OrderActivityTypeEnumActivityType, ir as OrderActivityTypeEnumActivityTypeWithLiterals, aR as OrderApprovalStrategy, iQ as OrderApprovalStrategyWithLiterals, d5 as OrderApproved, gx as OrderCanceled, gY as OrderCanceledEventOrderCanceled, c5 as OrderChange, c6 as OrderChangeValueOneOf, fC as OrderCreateNotifications, c1 as OrderCreatedFromExchange, fB as OrderCreationSettings, fY as OrderDeltasCommitted, gv as OrderFulfilled, da as OrderImported, d8 as OrderItemsRestocked, a$ as OrderLineItem, fP as OrderLineItemChangedDetails, gw as OrderNotFulfilled, gu as OrderPaid, gJ as OrderPartiallyPaid, gK as OrderPending, gt as OrderPlaced, c0 as OrderRefunded, gL as OrderRejected, d7 as OrderRejectedEventOrderRejected, i8 as OrderSearchSpec, c_ as OrderSettings, c$ as OrderSettingsAllowedActionsOneOf, an as OrderStatus, bP as OrderTaxBreakdown, bO as OrderTaxInfo, eM as OrderTransactions, d6 as OrdersExperiments, eN as Payment, cD as PaymentCanceled, cE as PaymentCanceledPaymentDetailsOneOf, aD as PaymentCollectabilityStatus, iC as PaymentCollectabilityStatusWithLiterals, cF as PaymentDeclined, cG as PaymentDeclinedPaymentDetailsOneOf, ad as PaymentOptionType, ib as PaymentOptionTypeWithLiterals, eO as PaymentPaymentDetailsOneOf, cy as PaymentPending, cz as PaymentPendingPaymentDetailsOneOf, eP as PaymentReceiptInfoOneOf, cw as PaymentRefundFailed, cv as PaymentRefunded, ai as PaymentStatus, hg as PaymentStatusUpdated, ih as PaymentStatusWithLiterals, h$ as Payments, hH as Phone, b9 as PhysicalProperties, bJ as PickupAddress, bI as PickupDetails, am as PickupMethod, il as PickupMethodWithLiterals, gI as PickupReadyEmailSent, aU as Placement, iT as PlacementWithLiterals, b6 as PlainTextValue, d4 as PlatformFee, d3 as PlatformFeeSummary, fp as PlatformPaging, fs as PlatformPagingMetadata, fm as PlatformQuery, fn as PlatformQueryPagingMethodOneOf, el as PreparePaymentCollectionRequest, ed as PreviewBuyerConfirmationEmailRequest, ee as PreviewBuyerConfirmationEmailResponse, eb as PreviewBuyerPaymentsReceivedEmailRequest, ec as PreviewBuyerPaymentsReceivedEmailResponse, ef as PreviewBuyerPickupConfirmationEmailRequest, eg as PreviewBuyerPickupConfirmationEmailResponse, e7 as PreviewCancelEmailRequest, e8 as PreviewCancelEmailResponse, e9 as PreviewCancelRefundEmailRequest, ea as PreviewCancelRefundEmailResponse, d_ as PreviewEmailByTypeRequest, d$ as PreviewEmailByTypeResponse, aA as PreviewEmailType, iz as PreviewEmailTypeWithLiterals, e0 as PreviewRefundEmailRequest, e6 as PreviewRefundEmailResponse, ej as PreviewResendDownloadLinksEmailRequest, ek as PreviewResendDownloadLinksEmailResponse, eh as PreviewShippingConfirmationEmailRequest, ei as PreviewShippingConfirmationEmailResponse, bn as PriceDescription, by as PriceSummary, b0 as ProductName, gO as PublicActivityContentOneOf, fu as QueryOrderRequest, fv as QueryOrderResponse, hF as QuotesAddress, aL as Reason, iK as ReasonWithLiterals, cH as ReceiptCreated, cI as ReceiptCreatedReceiptInfoOneOf, cL as ReceiptSent, cM as ReceiptSentReceiptInfoOneOf, eq as RecordManuallyCollectedPaymentRequest, er as RecordManuallyCollectedPaymentResponse, em as RedirectUrls, f1 as Refund, e1 as RefundDetails, cp as RefundInitiated, e2 as RefundItem, f5 as RefundItemsBreakdown, eJ as RefundSideEffects, aP as RefundStatus, f3 as RefundStatusInfo, iO as RefundStatusWithLiterals, f2 as RefundTransaction, ez as Refundability, eA as RefundabilityAdditionalRefundabilityInfoOneOf, aE as RefundableStatus, iD as RefundableStatusWithLiterals, cx as RefundedAsStoreCredit, cq as RefundedPayment, cr as RefundedPaymentKindOneOf, cA as RegularPayment, eQ as RegularPaymentDetails, eR as RegularPaymentDetailsPaymentMethodDetailsOneOf, cB as RegularPaymentPaymentMethodDetailsOneOf, cs as RegularPaymentRefund, hz as Reschedule, eK as RestockInfo, eL as RestockItem, aH as RestockType, iG as RestockTypeWithLiterals, di as RestoreInfo, cl as SavedPaymentMethod, aB as ScheduledAction, iA as ScheduledActionWithLiterals, fw as SearchOrdersRequest, dG as SendBuyerConfirmationEmailRequest, dH as SendBuyerConfirmationEmailResponse, dI as SendBuyerPaymentsReceivedEmailRequest, dJ as SendBuyerPaymentsReceivedEmailResponse, dK as SendBuyerPickupConfirmationEmailRequest, dL as SendBuyerPickupConfirmationEmailResponse, dO as SendBuyerShippingConfirmationEmailRequest, dP as SendBuyerShippingConfirmationEmailResponse, dU as SendCancelRefundEmailRequest, dV as SendCancelRefundEmailResponse, dS as SendMerchantOrderReceivedNotificationRequest, dT as SendMerchantOrderReceivedNotificationResponse, dY as SendMerchantOrderReceivedPushRequest, dZ as SendMerchantOrderReceivedPushResponse, dW as SendRefundEmailRequest, dX as SendRefundEmailResponse, eG as ServiceProperties, dd as SetOrderNumberCounterRequest, gG as ShippingAddressEdited, gC as ShippingConfirmationEmailSent, ck as ShippingInformation, cj as ShippingInformationChange, bL as ShippingPrice, e5 as ShippingRefund, bM as ShippingRegion, aQ as SortOrder, iP as SortOrderWithLiterals, fo as Sorting, hS as Source, aW as SourceType, iV as SourceTypeWithLiterals, hM as StandardDetails, bB as StreetAddress, hL as Subdivision, aV as SubdivisionType, iU as SubdivisionTypeWithLiterals, bi as SubscriptionDescription, af as SubscriptionFrequency, id as SubscriptionFrequencyWithLiterals, bg as SubscriptionInfo, bj as SubscriptionSettings, bh as SubscriptionTitle, cY as TagList, cX as Tags, ht as Task, hv as TaskAction, hw as TaskActionActionOneOf, hu as TaskKey, bN as TaxSummary, bp as TaxableAddress, bq as TaxableAddressTaxableAddressDataOneOf, ah as TaxableAddressType, ig as TaxableAddressTypeWithLiterals, hV as TotalPrice, ci as TotalPriceChange, gB as TrackingLinkAdded, gz as TrackingNumberAdded, gA as TrackingNumberEdited, aI as TransactionStatus, iH as TransactionStatusWithLiterals, bt as TranslatableString, cf as TranslatedValue, eI as TriggerRefundRequest, dF as TriggerReindexOrderRequest, dB as TriggerReindexRequest, dC as TriggerReindexResponse, g7 as UnArchiveOrderRequest, g8 as UnArchiveOrderResponse, gQ as UpdateActivityRequest, gk as UpdateBillingContactDetailsRequest, gl as UpdateBillingContactDetailsResponse, gg as UpdateBuyerEmailRequest, gh as UpdateBuyerEmailResponse, gd as UpdateBuyerInfoRequest, gf as UpdateBuyerInfoResponse, dq as UpdateInternalDocumentsEvent, dr as UpdateInternalDocumentsEventOperationOneOf, gS as UpdateLineItemsDescriptionLinesRequest, gU as UpdateLineItemsDescriptionLinesResponse, gm as UpdateOrderLineItemRequest, gn as UpdateOrderLineItemsRequest, gp as UpdateOrderLineItemsResponse, fE as UpdateOrderRequest, fF as UpdateOrderResponse, gi as UpdateOrderShippingAddressRequest, gj as UpdateOrderShippingAddressResponse, gZ as UpdateOrderStatusRequest, hh as V1BulkMarkOrdersAsPaidRequest, hi as V1BulkMarkOrdersAsPaidResponse, hj as V1CreatePaymentGatewayOrderRequest, hk as V1CreatePaymentGatewayOrderResponse, fN as V1LineItemDelta, fO as V1LineItemDeltaDeltaOneOf, he as V1MarkOrderAsPaidRequest, hf as V1MarkOrderAsPaidResponse, d9 as V1RestockItem, eX as V1ScheduledAction, bF as V1ShippingInformation, i4 as Value, aY as ValueType, iX as ValueTypeWithLiterals, bE as VatId, al as VatType, ik as VatTypeWithLiterals, dz as VersionedDeleteByIdsOperation, dA as VersionedDocumentId, dy as VersionedDocumentUpdateOperation, az as VersioningMode, iy as VersioningModeWithLiterals, fb as VoidAuthorizedPaymentsRequest, ay as WebhookIdentityType, ix as WebhookIdentityTypeWithLiterals, ak as WeightUnit, ij as WeightUnitWithLiterals, cJ as WixReceipt, e$ as WixReceiptInfo } from './ecom-v1-order-orders.universal-Dj5XDyHJ.js';
|
|
4
4
|
|
|
5
5
|
/** @internal */
|
|
6
6
|
declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
|
|
@@ -2050,6 +2050,12 @@ 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 || {});
|
|
2053
2059
|
var PreviewEmailType = /* @__PURE__ */ ((PreviewEmailType2) => {
|
|
2054
2060
|
PreviewEmailType2["ORDER_PLACED"] = "ORDER_PLACED";
|
|
2055
2061
|
PreviewEmailType2["DOWNLOAD_LINKS"] = "DOWNLOAD_LINKS";
|
|
@@ -2175,12 +2181,6 @@ var RefundStatus = /* @__PURE__ */ ((RefundStatus2) => {
|
|
|
2175
2181
|
RefundStatus2["STARTED"] = "STARTED";
|
|
2176
2182
|
return RefundStatus2;
|
|
2177
2183
|
})(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";
|