@wix/auto_sdk_ecom_orders 1.0.155 → 1.0.156
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-BDEIT7ev.d.ts → ecom-v1-order-orders.universal-YceODZmo.d.ts} +176 -164
- 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 +177 -165
- package/build/cjs/meta.js +6 -6
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-BDEIT7ev.d.mts → ecom-v1-order-orders.universal-YceODZmo.d.mts} +176 -164
- 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 +177 -165
- package/build/es/meta.mjs +6 -6
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-SdMObkQv.d.ts → ecom-v1-order-orders.universal-DTCzmNVX.d.ts} +200 -164
- 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 +177 -165
- 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-SdMObkQv.d.mts → ecom-v1-order-orders.universal-DTCzmNVX.d.mts} +200 -164
- 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 +177 -165
- package/build/internal/es/meta.mjs +6 -6
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2805,7 +2805,7 @@ interface Location {
|
|
|
2805
2805
|
*/
|
|
2806
2806
|
name?: string;
|
|
2807
2807
|
}
|
|
2808
|
-
interface OrderSettings extends OrderSettingsAllowedActionsOneOf {
|
|
2808
|
+
interface OrderSettings extends OrderSettingsAllowedActionsOneOf, OrderSettingsEditableByOneOf {
|
|
2809
2809
|
/** Regular order with full set of allowed actions (ActionType for reference). */
|
|
2810
2810
|
standardActions?: boolean;
|
|
2811
2811
|
/**
|
|
@@ -2838,6 +2838,9 @@ interface OrderSettingsAllowedActionsOneOf {
|
|
|
2838
2838
|
/** Custom list of allowed actions for order. */
|
|
2839
2839
|
customActions?: CustomAllowedActions;
|
|
2840
2840
|
}
|
|
2841
|
+
/** @oneof */
|
|
2842
|
+
interface OrderSettingsEditableByOneOf {
|
|
2843
|
+
}
|
|
2841
2844
|
interface CustomAllowedActions {
|
|
2842
2845
|
/** @maxSize 17 */
|
|
2843
2846
|
orderActions?: OrderActionTypeWithLiterals[];
|
|
@@ -2876,6 +2879,15 @@ declare enum OrderActionType {
|
|
|
2876
2879
|
}
|
|
2877
2880
|
/** @enumType */
|
|
2878
2881
|
type OrderActionTypeWithLiterals = OrderActionType | 'EDIT' | 'UPDATE' | 'REFUND' | 'APPROVE' | 'CANCEL' | 'FULFILL' | 'COLLECT_PAYMENTS' | 'SEND_NOTIFICATIONS' | 'ADD_MERCHANT_ACTIVITY' | 'ADD_ACTIVITY' | 'CREATE_INVOICE' | 'CREATE_RECEIPTS' | 'ASSIGN_TAG' | 'PRINT_PACKAGING_SLIP' | 'MODIFY_INVENTORY';
|
|
2882
|
+
interface OwnerApps {
|
|
2883
|
+
/**
|
|
2884
|
+
* Identifies the owning apps for this order.
|
|
2885
|
+
* @format GUID
|
|
2886
|
+
* @minSize 1
|
|
2887
|
+
* @maxSize 10
|
|
2888
|
+
*/
|
|
2889
|
+
appIds?: string[];
|
|
2890
|
+
}
|
|
2879
2891
|
interface FormInfo {
|
|
2880
2892
|
/**
|
|
2881
2893
|
* The identifier of the form schema.
|
|
@@ -3195,6 +3207,168 @@ declare enum WebhookIdentityType {
|
|
|
3195
3207
|
}
|
|
3196
3208
|
/** @enumType */
|
|
3197
3209
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3210
|
+
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
3211
|
+
/** insert/update documents */
|
|
3212
|
+
update?: InternalDocumentUpdateOperation;
|
|
3213
|
+
/** delete by document ids */
|
|
3214
|
+
deleteByIds?: DeleteByIdsOperation;
|
|
3215
|
+
/** delete documents matching filter */
|
|
3216
|
+
deleteByFilter?: DeleteByFilterOperation;
|
|
3217
|
+
/** update internal documents matching filter */
|
|
3218
|
+
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
3219
|
+
/** update only existing documents */
|
|
3220
|
+
updateExisting?: InternalUpdateExistingOperation;
|
|
3221
|
+
/** insert/update documents with versioning */
|
|
3222
|
+
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
3223
|
+
/** delete by document ids with versioning */
|
|
3224
|
+
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
3225
|
+
/**
|
|
3226
|
+
* type of the documents
|
|
3227
|
+
* @minLength 2
|
|
3228
|
+
*/
|
|
3229
|
+
documentType?: string;
|
|
3230
|
+
/**
|
|
3231
|
+
* language of the documents (mandatory)
|
|
3232
|
+
* @minLength 2
|
|
3233
|
+
*/
|
|
3234
|
+
language?: string | null;
|
|
3235
|
+
/**
|
|
3236
|
+
* one or more search documents
|
|
3237
|
+
* @deprecated
|
|
3238
|
+
*/
|
|
3239
|
+
addDocuments?: InternalDocument[];
|
|
3240
|
+
/**
|
|
3241
|
+
* one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
|
|
3242
|
+
* @deprecated
|
|
3243
|
+
*/
|
|
3244
|
+
removeDocumentIds?: string[];
|
|
3245
|
+
/** id to pass to processing notification */
|
|
3246
|
+
correlationId?: string | null;
|
|
3247
|
+
/** when event was created / issued */
|
|
3248
|
+
issuedAt?: Date | null;
|
|
3249
|
+
}
|
|
3250
|
+
/** @oneof */
|
|
3251
|
+
interface UpdateInternalDocumentsEventOperationOneOf {
|
|
3252
|
+
/** insert/update documents */
|
|
3253
|
+
update?: InternalDocumentUpdateOperation;
|
|
3254
|
+
/** delete by document ids */
|
|
3255
|
+
deleteByIds?: DeleteByIdsOperation;
|
|
3256
|
+
/** delete documents matching filter */
|
|
3257
|
+
deleteByFilter?: DeleteByFilterOperation;
|
|
3258
|
+
/** update internal documents matching filter */
|
|
3259
|
+
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
3260
|
+
/** update only existing documents */
|
|
3261
|
+
updateExisting?: InternalUpdateExistingOperation;
|
|
3262
|
+
/** insert/update documents with versioning */
|
|
3263
|
+
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
3264
|
+
/** delete by document ids with versioning */
|
|
3265
|
+
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
3266
|
+
}
|
|
3267
|
+
interface InternalDocument {
|
|
3268
|
+
/** document with mandatory fields (id) and with fields specific to the type of the document */
|
|
3269
|
+
document?: Record<string, any> | null;
|
|
3270
|
+
}
|
|
3271
|
+
interface InternalDocumentUpdateOperation {
|
|
3272
|
+
/** documents to index or update */
|
|
3273
|
+
documents?: InternalDocument[];
|
|
3274
|
+
}
|
|
3275
|
+
interface DeleteByIdsOperation {
|
|
3276
|
+
/** ids of the documents to delete */
|
|
3277
|
+
documentIds?: string[];
|
|
3278
|
+
/**
|
|
3279
|
+
* tenant id for custom tenancy strategy
|
|
3280
|
+
* @minLength 2
|
|
3281
|
+
* @maxLength 300
|
|
3282
|
+
*/
|
|
3283
|
+
tenantId?: string | null;
|
|
3284
|
+
}
|
|
3285
|
+
interface DeleteByFilterOperation {
|
|
3286
|
+
/** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
|
|
3287
|
+
filter?: Record<string, any> | null;
|
|
3288
|
+
/**
|
|
3289
|
+
* tenant id for custom tenancy strategy
|
|
3290
|
+
* @minLength 2
|
|
3291
|
+
* @maxLength 300
|
|
3292
|
+
*/
|
|
3293
|
+
tenantId?: string | null;
|
|
3294
|
+
}
|
|
3295
|
+
interface InternalDocumentUpdateByFilterOperation {
|
|
3296
|
+
/** documents matching this filter will be updated */
|
|
3297
|
+
filter?: Record<string, any> | null;
|
|
3298
|
+
/** partial document to apply */
|
|
3299
|
+
document?: InternalDocument;
|
|
3300
|
+
/**
|
|
3301
|
+
* tenant id for custom tenancy strategy
|
|
3302
|
+
* @minLength 2
|
|
3303
|
+
* @maxLength 300
|
|
3304
|
+
*/
|
|
3305
|
+
tenantId?: string | null;
|
|
3306
|
+
}
|
|
3307
|
+
interface InternalUpdateExistingOperation {
|
|
3308
|
+
/** documents to update */
|
|
3309
|
+
documents?: InternalDocument[];
|
|
3310
|
+
}
|
|
3311
|
+
interface VersionedDocumentUpdateOperation {
|
|
3312
|
+
/** documents to create or overwrite */
|
|
3313
|
+
documents?: InternalDocument[];
|
|
3314
|
+
/** versioning mode to use instead of default */
|
|
3315
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
3316
|
+
}
|
|
3317
|
+
declare enum VersioningMode {
|
|
3318
|
+
/** use default versioning mode agreed with search team */
|
|
3319
|
+
DEFAULT = "DEFAULT",
|
|
3320
|
+
/** execute only if version is greater than existing */
|
|
3321
|
+
GREATER_THAN = "GREATER_THAN",
|
|
3322
|
+
/** execute only if version is greater or equal to existing */
|
|
3323
|
+
GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
|
|
3324
|
+
}
|
|
3325
|
+
/** @enumType */
|
|
3326
|
+
type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
|
|
3327
|
+
interface VersionedDeleteByIdsOperation {
|
|
3328
|
+
/** ids with version of the documents to delete */
|
|
3329
|
+
documentIds?: VersionedDocumentId[];
|
|
3330
|
+
/**
|
|
3331
|
+
* tenant id for custom tenancy strategy
|
|
3332
|
+
* @minLength 2
|
|
3333
|
+
* @maxLength 300
|
|
3334
|
+
*/
|
|
3335
|
+
tenantId?: string | null;
|
|
3336
|
+
}
|
|
3337
|
+
interface VersionedDocumentId {
|
|
3338
|
+
/** document id */
|
|
3339
|
+
documentId?: string;
|
|
3340
|
+
/** document version */
|
|
3341
|
+
version?: string;
|
|
3342
|
+
/** versioning mode to use instead of default */
|
|
3343
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
3344
|
+
}
|
|
3345
|
+
interface TriggerReindexRequest {
|
|
3346
|
+
/** @format GUID */
|
|
3347
|
+
metasiteId?: string;
|
|
3348
|
+
/**
|
|
3349
|
+
* @minLength 1
|
|
3350
|
+
* @maxLength 100
|
|
3351
|
+
* @maxSize 100
|
|
3352
|
+
*/
|
|
3353
|
+
orderIds?: string[];
|
|
3354
|
+
}
|
|
3355
|
+
interface TriggerReindexResponse {
|
|
3356
|
+
}
|
|
3357
|
+
interface Empty {
|
|
3358
|
+
}
|
|
3359
|
+
interface BatchOfTriggerReindexOrderRequest {
|
|
3360
|
+
/** @maxSize 25 */
|
|
3361
|
+
requests?: TriggerReindexOrderRequest[];
|
|
3362
|
+
}
|
|
3363
|
+
interface TriggerReindexOrderRequest {
|
|
3364
|
+
/** @format GUID */
|
|
3365
|
+
metasiteId?: string;
|
|
3366
|
+
/**
|
|
3367
|
+
* @minLength 1
|
|
3368
|
+
* @maxLength 100
|
|
3369
|
+
*/
|
|
3370
|
+
orderId?: string;
|
|
3371
|
+
}
|
|
3198
3372
|
interface SendBuyerConfirmationEmailRequest {
|
|
3199
3373
|
/** @format GUID */
|
|
3200
3374
|
orderId?: string;
|
|
@@ -3487,8 +3661,6 @@ interface PreviewResendDownloadLinksEmailRequest {
|
|
|
3487
3661
|
interface PreviewResendDownloadLinksEmailResponse {
|
|
3488
3662
|
emailPreview?: string;
|
|
3489
3663
|
}
|
|
3490
|
-
interface Empty {
|
|
3491
|
-
}
|
|
3492
3664
|
interface PreparePaymentCollectionRequest {
|
|
3493
3665
|
/**
|
|
3494
3666
|
* Ecom order ID.
|
|
@@ -4553,166 +4725,6 @@ interface ChargeSavedPaymentMethodResponse {
|
|
|
4553
4725
|
/** Payment gateway's order ID (e.g Wix Payments) */
|
|
4554
4726
|
paymentGatewayOrderId?: string;
|
|
4555
4727
|
}
|
|
4556
|
-
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
4557
|
-
/** insert/update documents */
|
|
4558
|
-
update?: InternalDocumentUpdateOperation;
|
|
4559
|
-
/** delete by document ids */
|
|
4560
|
-
deleteByIds?: DeleteByIdsOperation;
|
|
4561
|
-
/** delete documents matching filter */
|
|
4562
|
-
deleteByFilter?: DeleteByFilterOperation;
|
|
4563
|
-
/** update internal documents matching filter */
|
|
4564
|
-
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
4565
|
-
/** update only existing documents */
|
|
4566
|
-
updateExisting?: InternalUpdateExistingOperation;
|
|
4567
|
-
/** insert/update documents with versioning */
|
|
4568
|
-
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
4569
|
-
/** delete by document ids with versioning */
|
|
4570
|
-
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
4571
|
-
/**
|
|
4572
|
-
* type of the documents
|
|
4573
|
-
* @minLength 2
|
|
4574
|
-
*/
|
|
4575
|
-
documentType?: string;
|
|
4576
|
-
/**
|
|
4577
|
-
* language of the documents (mandatory)
|
|
4578
|
-
* @minLength 2
|
|
4579
|
-
*/
|
|
4580
|
-
language?: string | null;
|
|
4581
|
-
/**
|
|
4582
|
-
* one or more search documents
|
|
4583
|
-
* @deprecated
|
|
4584
|
-
*/
|
|
4585
|
-
addDocuments?: InternalDocument[];
|
|
4586
|
-
/**
|
|
4587
|
-
* one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
|
|
4588
|
-
* @deprecated
|
|
4589
|
-
*/
|
|
4590
|
-
removeDocumentIds?: string[];
|
|
4591
|
-
/** id to pass to processing notification */
|
|
4592
|
-
correlationId?: string | null;
|
|
4593
|
-
/** when event was created / issued */
|
|
4594
|
-
issuedAt?: Date | null;
|
|
4595
|
-
}
|
|
4596
|
-
/** @oneof */
|
|
4597
|
-
interface UpdateInternalDocumentsEventOperationOneOf {
|
|
4598
|
-
/** insert/update documents */
|
|
4599
|
-
update?: InternalDocumentUpdateOperation;
|
|
4600
|
-
/** delete by document ids */
|
|
4601
|
-
deleteByIds?: DeleteByIdsOperation;
|
|
4602
|
-
/** delete documents matching filter */
|
|
4603
|
-
deleteByFilter?: DeleteByFilterOperation;
|
|
4604
|
-
/** update internal documents matching filter */
|
|
4605
|
-
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
4606
|
-
/** update only existing documents */
|
|
4607
|
-
updateExisting?: InternalUpdateExistingOperation;
|
|
4608
|
-
/** insert/update documents with versioning */
|
|
4609
|
-
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
4610
|
-
/** delete by document ids with versioning */
|
|
4611
|
-
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
4612
|
-
}
|
|
4613
|
-
interface InternalDocument {
|
|
4614
|
-
/** document with mandatory fields (id) and with fields specific to the type of the document */
|
|
4615
|
-
document?: Record<string, any> | null;
|
|
4616
|
-
}
|
|
4617
|
-
interface InternalDocumentUpdateOperation {
|
|
4618
|
-
/** documents to index or update */
|
|
4619
|
-
documents?: InternalDocument[];
|
|
4620
|
-
}
|
|
4621
|
-
interface DeleteByIdsOperation {
|
|
4622
|
-
/** ids of the documents to delete */
|
|
4623
|
-
documentIds?: string[];
|
|
4624
|
-
/**
|
|
4625
|
-
* tenant id for custom tenancy strategy
|
|
4626
|
-
* @minLength 2
|
|
4627
|
-
* @maxLength 300
|
|
4628
|
-
*/
|
|
4629
|
-
tenantId?: string | null;
|
|
4630
|
-
}
|
|
4631
|
-
interface DeleteByFilterOperation {
|
|
4632
|
-
/** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
|
|
4633
|
-
filter?: Record<string, any> | null;
|
|
4634
|
-
/**
|
|
4635
|
-
* tenant id for custom tenancy strategy
|
|
4636
|
-
* @minLength 2
|
|
4637
|
-
* @maxLength 300
|
|
4638
|
-
*/
|
|
4639
|
-
tenantId?: string | null;
|
|
4640
|
-
}
|
|
4641
|
-
interface InternalDocumentUpdateByFilterOperation {
|
|
4642
|
-
/** documents matching this filter will be updated */
|
|
4643
|
-
filter?: Record<string, any> | null;
|
|
4644
|
-
/** partial document to apply */
|
|
4645
|
-
document?: InternalDocument;
|
|
4646
|
-
/**
|
|
4647
|
-
* tenant id for custom tenancy strategy
|
|
4648
|
-
* @minLength 2
|
|
4649
|
-
* @maxLength 300
|
|
4650
|
-
*/
|
|
4651
|
-
tenantId?: string | null;
|
|
4652
|
-
}
|
|
4653
|
-
interface InternalUpdateExistingOperation {
|
|
4654
|
-
/** documents to update */
|
|
4655
|
-
documents?: InternalDocument[];
|
|
4656
|
-
}
|
|
4657
|
-
interface VersionedDocumentUpdateOperation {
|
|
4658
|
-
/** documents to create or overwrite */
|
|
4659
|
-
documents?: InternalDocument[];
|
|
4660
|
-
/** versioning mode to use instead of default */
|
|
4661
|
-
versioningMode?: VersioningModeWithLiterals;
|
|
4662
|
-
}
|
|
4663
|
-
declare enum VersioningMode {
|
|
4664
|
-
/** use default versioning mode agreed with search team */
|
|
4665
|
-
DEFAULT = "DEFAULT",
|
|
4666
|
-
/** execute only if version is greater than existing */
|
|
4667
|
-
GREATER_THAN = "GREATER_THAN",
|
|
4668
|
-
/** execute only if version is greater or equal to existing */
|
|
4669
|
-
GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
|
|
4670
|
-
}
|
|
4671
|
-
/** @enumType */
|
|
4672
|
-
type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
|
|
4673
|
-
interface VersionedDeleteByIdsOperation {
|
|
4674
|
-
/** ids with version of the documents to delete */
|
|
4675
|
-
documentIds?: VersionedDocumentId[];
|
|
4676
|
-
/**
|
|
4677
|
-
* tenant id for custom tenancy strategy
|
|
4678
|
-
* @minLength 2
|
|
4679
|
-
* @maxLength 300
|
|
4680
|
-
*/
|
|
4681
|
-
tenantId?: string | null;
|
|
4682
|
-
}
|
|
4683
|
-
interface VersionedDocumentId {
|
|
4684
|
-
/** document id */
|
|
4685
|
-
documentId?: string;
|
|
4686
|
-
/** document version */
|
|
4687
|
-
version?: string;
|
|
4688
|
-
/** versioning mode to use instead of default */
|
|
4689
|
-
versioningMode?: VersioningModeWithLiterals;
|
|
4690
|
-
}
|
|
4691
|
-
interface TriggerReindexRequest {
|
|
4692
|
-
/** @format GUID */
|
|
4693
|
-
metasiteId?: string;
|
|
4694
|
-
/**
|
|
4695
|
-
* @minLength 1
|
|
4696
|
-
* @maxLength 100
|
|
4697
|
-
* @maxSize 100
|
|
4698
|
-
*/
|
|
4699
|
-
orderIds?: string[];
|
|
4700
|
-
}
|
|
4701
|
-
interface TriggerReindexResponse {
|
|
4702
|
-
}
|
|
4703
|
-
interface BatchOfTriggerReindexOrderRequest {
|
|
4704
|
-
/** @maxSize 25 */
|
|
4705
|
-
requests?: TriggerReindexOrderRequest[];
|
|
4706
|
-
}
|
|
4707
|
-
interface TriggerReindexOrderRequest {
|
|
4708
|
-
/** @format GUID */
|
|
4709
|
-
metasiteId?: string;
|
|
4710
|
-
/**
|
|
4711
|
-
* @minLength 1
|
|
4712
|
-
* @maxLength 100
|
|
4713
|
-
*/
|
|
4714
|
-
orderId?: string;
|
|
4715
|
-
}
|
|
4716
4728
|
interface DiffmatokyPayload {
|
|
4717
4729
|
left?: string;
|
|
4718
4730
|
right?: string;
|
|
@@ -7819,4 +7831,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
7819
7831
|
unassignTags?: Tags;
|
|
7820
7832
|
}
|
|
7821
7833
|
|
|
7822
|
-
export { AdditionalFeeSource as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentStatus as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, VatType as H, ItemTypePreset as I, JurisdictionType as J, PickupMethod as K, OrderStatus as L, type MaskedOrder as M, DiscountType as N, type Order as O, type Price as P, DiscountReason as Q, LineItemQuantityChangeType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ActivityType as X, OrderActivityTypeEnumActivityType as Y, AttributionSource as Z, ChannelType as _, type PreparePaymentCollectionOptions as a, type BuyerInfo as a$, OrderActionType as a0, ChargeType as a1, WebhookIdentityType as a2, PreviewEmailType as a3, ScheduledAction as a4, DurationUnit as a5, PaymentCollectabilityStatus as a6, RefundableStatus as a7, NonRefundableReason as a8, ManuallyRefundableReason as a9, type DescriptionLineDescriptionLineValueOneOf as aA, type DescriptionLineName as aB, type PlainTextValue as aC, type Color as aD, type FocalPoint as aE, type PhysicalProperties as aF, type ItemType as aG, type ItemTypeItemTypeDataOneOf as aH, type ItemTaxFullDetails as aI, type LineItemTaxInfo as aJ, type LineItemTaxBreakdown as aK, type DigitalFile as aL, type SubscriptionInfo as aM, type SubscriptionTitle as aN, type SubscriptionDescription as aO, type SubscriptionSettings as aP, type FreeTrialPeriod as aQ, type BillingAdjustment as aR, type BillingAdjustmentPriceSummary as aS, type PriceDescription as aT, type LocationAndQuantity as aU, type TaxableAddress as aV, type TaxableAddressTaxableAddressDataOneOf as aW, type ExtendedFields as aX, type ModifierGroup as aY, type TranslatableString as aZ, type ItemModifier as a_, RestockType as aa, TransactionStatus as ab, AuthorizationCaptureStatus as ac, AuthorizationVoidStatus as ad, Reason as ae, ActionType as af, ChargebackStatus as ag, MembershipPaymentStatus as ah, RefundStatus as ai, VersioningMode as aj, SortOrder as ak, OrderApprovalStrategy as al, DeltaPaymentOptionType as am, InventoryAction as an, Placement as ao, SubdivisionType as ap, SourceType as aq, CustomFieldGroup as ar, ValueType as as, DepositType as at, InvoiceStatus as au, type OrderLineItem as av, type ProductName as aw, type CatalogReference as ax, type DescriptionLine as ay, type DescriptionLineValueOneOf as az, type PreparePaymentCollectionResponse as b, type GiftCardPaymentRefund as b$, type BuyerInfoIdOneOf as b0, type CurrencyConversionDetails as b1, type PriceSummary as b2, type AddressWithContact as b3, type Address as b4, type StreetAddress as b5, type AddressLocation as b6, type FullAddressContactDetails as b7, type VatId as b8, type V1ShippingInformation as b9, type NewExchangeOrderCreated as bA, type LineItemExchangeData as bB, type DraftOrderChangesApplied as bC, type OrderChange as bD, type OrderChangeValueOneOf as bE, type LineItemChanges as bF, type LineItemQuantityChange as bG, type LineItemPriceChange as bH, type LineItemProductNameChange as bI, type LineItemDescriptionLineChange as bJ, type LineItemModifiersChange as bK, type ManagedLineItem as bL, type ManagedDiscount as bM, type TranslatedValue as bN, type LineItemAmount as bO, type ManagedAdditionalFee as bP, type TotalPriceChange as bQ, type ShippingInformationChange as bR, type ShippingInformation as bS, type SavedPaymentMethod as bT, type AuthorizedPaymentCreated as bU, type AuthorizedPaymentCaptured as bV, type AuthorizedPaymentVoided as bW, type RefundInitiated as bX, type RefundedPayment as bY, type RefundedPaymentKindOneOf as bZ, type RegularPaymentRefund as b_, type DeliveryLogistics as ba, type DeliveryLogisticsAddressOneOf as bb, type PickupDetails as bc, type PickupAddress as bd, type DeliveryTimeSlot as be, type ShippingPrice as bf, type ShippingRegion as bg, type TaxSummary as bh, type OrderTaxInfo as bi, type OrderTaxBreakdown as bj, type AppliedDiscount as bk, type AppliedDiscountDiscountSourceOneOf as bl, type Coupon as bm, type MerchantDiscount as bn, type MerchantDiscountMerchantDiscountReasonOneOf as bo, type DiscountRule as bp, type DiscountRuleName as bq, type LineItemDiscount as br, type ItemCombination as bs, type ItemCombinationLineItem as bt, type Activity as bu, type ActivityContentOneOf as bv, type CustomActivity as bw, type MerchantComment as bx, type OrderRefunded as by, type OrderCreatedFromExchange as bz, type PreparePaymentCollectionApplicationErrors as c, type SendBuyerConfirmationEmailResponse as c$, type MembershipPaymentRefund as c0, type PaymentRefunded as c1, type PaymentRefundFailed as c2, type RefundedAsStoreCredit as c3, type PaymentPending as c4, type PaymentPendingPaymentDetailsOneOf as c5, type RegularPayment as c6, type RegularPaymentPaymentMethodDetailsOneOf as c7, type CreditCardDetails as c8, type PaymentCanceled as c9, type FormIdentifier as cA, type PlatformFeeSummary as cB, type PlatformFee as cC, type OrderApproved as cD, type OrdersExperiments as cE, type OrderRejectedEventOrderRejected as cF, type OrderItemsRestocked as cG, type V1RestockItem as cH, type OrderImported as cI, type ImportedOrderDeleted as cJ, type ImportOrderRequest as cK, type ImportOrderResponse as cL, type SetOrderNumberCounterRequest as cM, type SetOrderNumberCounterResponse as cN, type BulkDeleteImportedOrdersRequest as cO, type BulkDeleteImportedOrdersResponse as cP, type DomainEvent as cQ, type DomainEventBodyOneOf as cR, type EntityCreatedEvent as cS, type RestoreInfo as cT, type EntityUpdatedEvent as cU, type EntityDeletedEvent as cV, type ActionEvent as cW, type MessageEnvelope as cX, type IdentificationData as cY, type IdentificationDataIdOneOf as cZ, type SendBuyerConfirmationEmailRequest as c_, type PaymentCanceledPaymentDetailsOneOf as ca, type PaymentDeclined as cb, type PaymentDeclinedPaymentDetailsOneOf as cc, type ReceiptCreated as cd, type ReceiptCreatedReceiptInfoOneOf as ce, type WixReceipt as cf, type ExternalReceipt as cg, type ReceiptSent as ch, type ReceiptSentReceiptInfoOneOf as ci, type ChargebackCreated as cj, type ChargebackReversed as ck, type CreatedBy as cl, type CreatedByStringOneOf as cm, type ChannelInfo as cn, type CustomField as co, type BalanceSummary as cp, type Balance as cq, type AdditionalFee as cr, type FulfillmentStatusesAggregate as cs, type Tags as ct, type TagList as cu, type Location as cv, type OrderSettings as cw, type OrderSettingsAllowedActionsOneOf as cx, type CustomAllowedActions as cy, type FormInfo as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type ChargedBy as d$, type SendBuyerPaymentsReceivedEmailRequest as d0, type SendBuyerPaymentsReceivedEmailResponse as d1, type SendBuyerPickupConfirmationEmailRequest as d2, type SendBuyerPickupConfirmationEmailResponse as d3, type BulkSendBuyerPickupConfirmationEmailsRequest as d4, type BulkSendBuyerPickupConfirmationEmailsResponse as d5, type SendBuyerShippingConfirmationEmailRequest as d6, type SendBuyerShippingConfirmationEmailResponse as d7, type BulkSendBuyerShippingConfirmationEmailsRequest as d8, type BulkSendBuyerShippingConfirmationEmailsResponse as d9, type PreviewBuyerPickupConfirmationEmailRequest as dA, type PreviewBuyerPickupConfirmationEmailResponse as dB, type PreviewShippingConfirmationEmailRequest as dC, type PreviewShippingConfirmationEmailResponse as dD, type PreviewResendDownloadLinksEmailRequest as dE, type PreviewResendDownloadLinksEmailResponse as dF, type Empty as dG, type PreparePaymentCollectionRequest as dH, type RedirectUrls as dI, type DelayedCaptureSettings as dJ, type Duration as dK, type GetPaymentCollectabilityStatusRequest as dL, type RecordManuallyCollectedPaymentRequest as dM, type RecordManuallyCollectedPaymentResponse as dN, type MarkOrderAsPaidRequest as dO, type MarkOrderAsPaidResponse as dP, type BulkMarkOrdersAsPaidRequest as dQ, type BulkMarkOrdersAsPaidResponse as dR, type BulkOrderResult as dS, type ItemMetadata as dT, type ApplicationError as dU, type BulkActionMetadata as dV, type GetRefundabilityStatusRequest as dW, type GetRefundabilityStatusResponse as dX, type Refundability as dY, type RefundabilityAdditionalRefundabilityInfoOneOf as dZ, type CreatePaymentGatewayOrderRequest as d_, type SendMerchantOrderReceivedNotificationRequest as da, type SendMerchantOrderReceivedNotificationResponse as db, type SendCancelRefundEmailRequest as dc, type SendCancelRefundEmailResponse as dd, type SendRefundEmailRequest as de, type SendRefundEmailResponse as df, type SendMerchantOrderReceivedPushRequest as dg, type SendMerchantOrderReceivedPushResponse as dh, type PreviewEmailByTypeRequest as di, type PreviewEmailByTypeResponse as dj, type PreviewRefundEmailRequest as dk, type RefundDetails as dl, type RefundItem as dm, type LineItemRefund as dn, type AdditionalFeeRefund as dp, type ShippingRefund as dq, type PreviewRefundEmailResponse as dr, type PreviewCancelEmailRequest as ds, type PreviewCancelEmailResponse as dt, type PreviewCancelRefundEmailRequest as du, type PreviewCancelRefundEmailResponse as dv, type PreviewBuyerPaymentsReceivedEmailRequest as dw, type PreviewBuyerPaymentsReceivedEmailResponse as dx, type PreviewBuyerConfirmationEmailRequest as dy, type PreviewBuyerConfirmationEmailResponse as dz, type PaymentCapture as e, type PlatformQuery as e$, type CreatePaymentGatewayOrderResponse as e0, type ChargeMembershipsRequest as e1, type MembershipChargeItem as e2, type MembershipName as e3, type ServiceProperties as e4, type ChargeMembershipsResponse as e5, type TriggerRefundRequest as e6, type PaymentRefund as e7, type RefundSideEffects as e8, type RestockInfo as e9, type CalculateRefundItemRequest as eA, type CalculateRefundResponse as eB, type CalculateRefundItemResponse as eC, type VoidAuthorizedPaymentsRequest as eD, type CaptureAuthorizedPaymentsRequest as eE, type ChargeSavedPaymentMethodRequest as eF, type ChargeSavedPaymentMethodResponse as eG, type UpdateInternalDocumentsEvent as eH, type UpdateInternalDocumentsEventOperationOneOf as eI, type InternalDocument as eJ, type InternalDocumentUpdateOperation as eK, type DeleteByIdsOperation as eL, type DeleteByFilterOperation as eM, type InternalDocumentUpdateByFilterOperation as eN, type InternalUpdateExistingOperation as eO, type VersionedDocumentUpdateOperation as eP, type VersionedDeleteByIdsOperation as eQ, type VersionedDocumentId as eR, type TriggerReindexRequest as eS, type TriggerReindexResponse as eT, type BatchOfTriggerReindexOrderRequest as eU, type TriggerReindexOrderRequest as eV, type DiffmatokyPayload as eW, type ErrorInformation as eX, type GetOrderRequest as eY, type GetOrderResponse as eZ, type InternalQueryOrdersRequest as e_, type RestockItem as ea, type TriggerRefundResponse as eb, type OrderTransactions as ec, type Payment as ed, type PaymentPaymentDetailsOneOf as ee, type PaymentReceiptInfoOneOf as ef, type RegularPaymentDetails as eg, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eh, type CreditCardPaymentMethodDetails as ei, type AuthorizationDetails as ej, type AuthorizationCapture as ek, type AuthorizationActionFailureDetails as el, type AuthorizationVoid as em, type V1ScheduledAction as en, type Chargeback as eo, type GiftCardPaymentDetails as ep, type MembershipPaymentDetails as eq, type WixReceiptInfo as er, type ExternalReceiptInfo as es, type Refund as et, type RefundTransaction as eu, type RefundStatusInfo as ev, type AggregatedRefundSummary as ew, type RefundItemsBreakdown as ex, type LineItemRefundSummary as ey, type CalculateRefundRequest as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type UpdateOrderLineItemRequest as f$, type PlatformQueryPagingMethodOneOf as f0, type Sorting as f1, type PlatformPaging as f2, type CursorPaging as f3, type InternalQueryOrdersResponse as f4, type PlatformPagingMetadata as f5, type Cursors as f6, type QueryOrderRequest as f7, type QueryOrderResponse as f8, type SearchOrdersRequest as f9, type CommitDeltasResponse as fA, type OrderDeltasCommitted as fB, type CommittedDiffs as fC, type CommittedDiffsShippingUpdateInfoOneOf as fD, type LineItemDelta as fE, type LineItemDeltaDeltaOneOf as fF, type ArchiveOrderRequest as fG, type ArchiveOrderResponse as fH, type BulkArchiveOrdersRequest as fI, type BulkArchiveOrdersResponse as fJ, type BulkArchiveOrdersByFilterRequest as fK, type BulkArchiveOrdersByFilterResponse as fL, type UnArchiveOrderRequest as fM, type UnArchiveOrderResponse as fN, type BulkUnArchiveOrdersRequest as fO, type BulkUnArchiveOrdersResponse as fP, type BulkUnArchiveOrdersByFilterRequest as fQ, type BulkUnArchiveOrdersByFilterResponse as fR, type UpdateBuyerInfoRequest as fS, type BuyerInfoUpdate as fT, type UpdateBuyerInfoResponse as fU, type UpdateBuyerEmailRequest as fV, type UpdateBuyerEmailResponse as fW, type UpdateOrderShippingAddressRequest as fX, type UpdateOrderShippingAddressResponse as fY, type UpdateBillingContactDetailsRequest as fZ, type UpdateBillingContactDetailsResponse as f_, type CursorSearch as fa, type CursorSearchPagingMethodOneOf as fb, type CursorPagingMetadata as fc, type CreateOrderRequest as fd, type OrderCreationSettings as fe, type OrderCreateNotifications as ff, type CreateOrderResponse as fg, type UpdateOrderRequest as fh, type UpdateOrderResponse as fi, type BulkUpdateOrdersRequest as fj, type CommitDeltasRequest as fk, type DraftOrderDiffs as fl, type DraftOrderDiffsShippingUpdateInfoOneOf as fm, type DraftOrderDiffsBuyerUpdateInfoOneOf as fn, type DraftOrderDiffsBillingUpdateInfoOneOf as fo, type DraftOrderDiffsRecipientUpdateInfoOneOf as fp, type V1LineItemDelta as fq, type V1LineItemDeltaDeltaOneOf as fr, type OrderLineItemChangedDetails as fs, type ItemChangedDetails as ft, type AppliedDiscountDelta as fu, type AppliedDiscountDeltaDeltaOneOf as fv, type AdditionalFeeDelta as fw, type AdditionalFeeDeltaDeltaOneOf as fx, type DraftOrderCommitSettings as fy, type InventoryUpdateDetails as fz, type GetOrderApplicationErrors as g, type PaymentStatusUpdated as g$, type UpdateOrderLineItemResponse as g0, type UpdateOrderLineItemsRequest as g1, type MaskedOrderLineItem as g2, type UpdateOrderLineItemsResponse as g3, type AddInternalActivityRequest as g4, type InternalActivity as g5, type InternalActivityContentOneOf as g6, type OrderPlaced as g7, type OrderPaid as g8, type OrderFulfilled as g9, type UpdateLineItemsDescriptionLinesRequest as gA, type LineItemUpdate as gB, type UpdateLineItemsDescriptionLinesResponse as gC, type MarkOrderAsSeenByHumanRequest as gD, type MarkOrderAsSeenByHumanResponse as gE, type CancelOrderRequest as gF, type OrderCanceledEventOrderCanceled as gG, type UpdateOrderStatusRequest as gH, type UpdateOrderStatusResponse as gI, type MarkAsFulfilledRequest as gJ, type MarkAsFulfilledResponse as gK, type FulfillmentStatusUpdated as gL, type BulkMarkAsFulfilledRequest as gM, type BulkMarkAsFulfilledResponse as gN, type BulkMarkAsFulfilledByFilterRequest as gO, type BulkMarkAsFulfilledByFilterResponse as gP, type MarkAsUnfulfilledRequest as gQ, type MarkAsUnfulfilledResponse as gR, type BulkMarkAsUnfulfilledRequest as gS, type BulkMarkAsUnfulfilledResponse as gT, type BulkMarkAsUnfulfilledByFilterRequest as gU, type BulkMarkAsUnfulfilledByFilterResponse as gV, type BulkSetBusinessLocationRequest as gW, type BulkSetBusinessLocationResponse as gX, type BulkSetBusinessLocationResult as gY, type V1MarkOrderAsPaidRequest as gZ, type V1MarkOrderAsPaidResponse as g_, type OrderNotFulfilled as ga, type OrderCanceled as gb, type DownloadLinkSent as gc, type TrackingNumberAdded as gd, type TrackingNumberEdited as ge, type TrackingLinkAdded as gf, type ShippingConfirmationEmailSent as gg, type InvoiceAdded as gh, type InvoiceSent as gi, type FulfillerEmailSent as gj, type ShippingAddressEdited as gk, type EmailEdited as gl, type PickupReadyEmailSent as gm, type OrderPartiallyPaid as gn, type OrderPending as go, type OrderRejected as gp, type AddInternalActivityResponse as gq, type AddActivityRequest as gr, type PublicActivity as gs, type PublicActivityContentOneOf as gt, type AddActivityResponse as gu, type AddActivitiesRequest as gv, type UpdateActivityRequest as gw, type UpdateActivityResponse as gx, type DeleteActivityRequest as gy, type DeleteActivityResponse as gz, type OrderSearch as h, type UpdateOrderLineItem as h$, type V1BulkMarkOrdersAsPaidRequest as h0, type V1BulkMarkOrdersAsPaidResponse as h1, type V1CreatePaymentGatewayOrderRequest as h2, type V1CreatePaymentGatewayOrderResponse as h3, type GetShipmentsRequest as h4, type GetShipmentsResponse as h5, type AggregateOrdersRequest as h6, type AggregateOrdersResponse as h7, type DecrementItemsQuantityRequest as h8, type DecrementData as h9, type BigDecimalWrapper as hA, type LineItemTax as hB, type Source as hC, type LineItemMetaData as hD, type Locale as hE, type TotalPrice as hF, type ItemizedFee as hG, type Discount as hH, type DiscountOneDiscountTypeOneOf as hI, type CalculatedTaxes as hJ, type CalculatedTax as hK, type Payments as hL, type InvoicesPayment as hM, type MetaData as hN, type InvoiceDynamicPriceTotals as hO, type CustomFieldValue as hP, type Value as hQ, type Deposit as hR, type BaseEventMetadata as hS, type EventMetadata as hT, type SetOrderNumberCounterOptions as hU, type BulkDeleteImportedOrdersOptions as hV, type CreatePaymentGatewayOrderOptions as hW, type ChargeMembershipsOptions as hX, type TriggerRefundOptions as hY, type OrderSearchSpec as hZ, type UpdateOrderLineItemIdentifiers as h_, type DecrementItemsQuantityResponse as ha, type BulkUpdateOrderTagsRequest as hb, type BulkUpdateOrderTagsResult as hc, type Task as hd, type TaskKey as he, type TaskAction as hf, type TaskActionActionOneOf as hg, type Complete as hh, type Cancel as hi, type Reschedule as hj, type InvoiceSentEvent as hk, type IdAndVersion as hl, type InvoiceFields as hm, type Customer as hn, type Email as ho, type QuotesAddress as hp, type AddressDescription as hq, type Phone as hr, type Company as hs, type CommonAddress as ht, type CommonAddressStreetOneOf as hu, type Subdivision as hv, type StandardDetails as hw, type InvoiceDates as hx, type LineItems as hy, type LineItem as hz, type CreateOrderOptions as i, onOrderApproved as i$, type UpdateActivityIdentifiers as i0, type DeleteActivityIdentifiers as i1, type AggregateOrdersOptions as i2, type DescriptionLineTypeWithLiterals as i3, type ItemTypePresetWithLiterals as i4, type PaymentOptionTypeWithLiterals as i5, type JurisdictionTypeWithLiterals as i6, type SubscriptionFrequencyWithLiterals as i7, type AdjustmentTypeWithLiterals as i8, type TaxableAddressTypeWithLiterals as i9, type RestockTypeWithLiterals as iA, type TransactionStatusWithLiterals as iB, type AuthorizationCaptureStatusWithLiterals as iC, type AuthorizationVoidStatusWithLiterals as iD, type ReasonWithLiterals as iE, type ActionTypeWithLiterals as iF, type ChargebackStatusWithLiterals as iG, type MembershipPaymentStatusWithLiterals as iH, type RefundStatusWithLiterals as iI, type VersioningModeWithLiterals as iJ, type SortOrderWithLiterals as iK, type OrderApprovalStrategyWithLiterals as iL, type DeltaPaymentOptionTypeWithLiterals as iM, type InventoryActionWithLiterals as iN, type PlacementWithLiterals as iO, type SubdivisionTypeWithLiterals as iP, type SourceTypeWithLiterals as iQ, type CustomFieldGroupWithLiterals as iR, type ValueTypeWithLiterals as iS, type DepositTypeWithLiterals as iT, type InvoiceStatusWithLiterals as iU, type RecordManuallyCollectedPaymentApplicationErrors as iV, type MarkOrderAsPaidApplicationErrors as iW, type CreatePaymentGatewayOrderApplicationErrors as iX, type TriggerRefundApplicationErrors as iY, type UpdateOrderStatusApplicationErrors as iZ, type CommonSearchWithEntityContext as i_, type PaymentStatusWithLiterals as ia, type FulfillmentStatusWithLiterals as ib, type WeightUnitWithLiterals as ic, type VatTypeWithLiterals as id, type PickupMethodWithLiterals as ie, type OrderStatusWithLiterals as ig, type DiscountTypeWithLiterals as ih, type DiscountReasonWithLiterals as ii, type LineItemQuantityChangeTypeWithLiterals as ij, type ActivityTypeWithLiterals as ik, type OrderActivityTypeEnumActivityTypeWithLiterals as il, type AttributionSourceWithLiterals as im, type ChannelTypeWithLiterals as io, type AdditionalFeeSourceWithLiterals as ip, type OrderActionTypeWithLiterals as iq, type ChargeTypeWithLiterals as ir, type WebhookIdentityTypeWithLiterals as is, type PreviewEmailTypeWithLiterals as it, type ScheduledActionWithLiterals as iu, type DurationUnitWithLiterals as iv, type PaymentCollectabilityStatusWithLiterals as iw, type RefundableStatusWithLiterals as ix, type NonRefundableReasonWithLiterals as iy, type ManuallyRefundableReasonWithLiterals as iz, type CreateOrderApplicationErrors as j, onOrderUpdated as j0, onOrderCanceled as j1, onOrderCreated as j2, onOrderPaymentStatusUpdated as j3, preparePaymentCollection as j4, getPaymentCollectabilityStatus as j5, voidAuthorizedPayments as j6, captureAuthorizedPayments as j7, getOrder as j8, createOrder as j9, updateOrder as ja, bulkUpdateOrders as jb, addActivities as jc, cancelOrder as jd, bulkUpdateOrderTags as je, type UpdateOrderApplicationErrors as k, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderUpdatedEnvelope as t, type OrderCanceledEnvelope as u, type OrderCreatedEnvelope as v, type OrderPaymentStatusUpdatedEnvelope as w, PaymentOptionType as x, SubscriptionFrequency as y, AdjustmentType as z };
|
|
7834
|
+
export { AdditionalFeeSource as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentStatus as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, VatType as H, ItemTypePreset as I, JurisdictionType as J, PickupMethod as K, OrderStatus as L, type MaskedOrder as M, DiscountType as N, type Order as O, type Price as P, DiscountReason as Q, LineItemQuantityChangeType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ActivityType as X, OrderActivityTypeEnumActivityType as Y, AttributionSource as Z, ChannelType as _, type PreparePaymentCollectionOptions as a, type BuyerInfo as a$, OrderActionType as a0, ChargeType as a1, WebhookIdentityType as a2, VersioningMode as a3, PreviewEmailType as a4, ScheduledAction as a5, DurationUnit as a6, PaymentCollectabilityStatus as a7, RefundableStatus as a8, NonRefundableReason as a9, type DescriptionLineDescriptionLineValueOneOf as aA, type DescriptionLineName as aB, type PlainTextValue as aC, type Color as aD, type FocalPoint as aE, type PhysicalProperties as aF, type ItemType as aG, type ItemTypeItemTypeDataOneOf as aH, type ItemTaxFullDetails as aI, type LineItemTaxInfo as aJ, type LineItemTaxBreakdown as aK, type DigitalFile as aL, type SubscriptionInfo as aM, type SubscriptionTitle as aN, type SubscriptionDescription as aO, type SubscriptionSettings as aP, type FreeTrialPeriod as aQ, type BillingAdjustment as aR, type BillingAdjustmentPriceSummary as aS, type PriceDescription as aT, type LocationAndQuantity as aU, type TaxableAddress as aV, type TaxableAddressTaxableAddressDataOneOf as aW, type ExtendedFields as aX, type ModifierGroup as aY, type TranslatableString as aZ, type ItemModifier as a_, ManuallyRefundableReason as aa, RestockType as ab, TransactionStatus as ac, AuthorizationCaptureStatus as ad, AuthorizationVoidStatus as ae, Reason as af, ActionType as ag, ChargebackStatus as ah, MembershipPaymentStatus as ai, RefundStatus as aj, SortOrder as ak, OrderApprovalStrategy as al, DeltaPaymentOptionType as am, InventoryAction as an, Placement as ao, SubdivisionType as ap, SourceType as aq, CustomFieldGroup as ar, ValueType as as, DepositType as at, InvoiceStatus as au, type OrderLineItem as av, type ProductName as aw, type CatalogReference as ax, type DescriptionLine as ay, type DescriptionLineValueOneOf as az, type PreparePaymentCollectionResponse as b, type GiftCardPaymentRefund as b$, type BuyerInfoIdOneOf as b0, type CurrencyConversionDetails as b1, type PriceSummary as b2, type AddressWithContact as b3, type Address as b4, type StreetAddress as b5, type AddressLocation as b6, type FullAddressContactDetails as b7, type VatId as b8, type V1ShippingInformation as b9, type NewExchangeOrderCreated as bA, type LineItemExchangeData as bB, type DraftOrderChangesApplied as bC, type OrderChange as bD, type OrderChangeValueOneOf as bE, type LineItemChanges as bF, type LineItemQuantityChange as bG, type LineItemPriceChange as bH, type LineItemProductNameChange as bI, type LineItemDescriptionLineChange as bJ, type LineItemModifiersChange as bK, type ManagedLineItem as bL, type ManagedDiscount as bM, type TranslatedValue as bN, type LineItemAmount as bO, type ManagedAdditionalFee as bP, type TotalPriceChange as bQ, type ShippingInformationChange as bR, type ShippingInformation as bS, type SavedPaymentMethod as bT, type AuthorizedPaymentCreated as bU, type AuthorizedPaymentCaptured as bV, type AuthorizedPaymentVoided as bW, type RefundInitiated as bX, type RefundedPayment as bY, type RefundedPaymentKindOneOf as bZ, type RegularPaymentRefund as b_, type DeliveryLogistics as ba, type DeliveryLogisticsAddressOneOf as bb, type PickupDetails as bc, type PickupAddress as bd, type DeliveryTimeSlot as be, type ShippingPrice as bf, type ShippingRegion as bg, type TaxSummary as bh, type OrderTaxInfo as bi, type OrderTaxBreakdown as bj, type AppliedDiscount as bk, type AppliedDiscountDiscountSourceOneOf as bl, type Coupon as bm, type MerchantDiscount as bn, type MerchantDiscountMerchantDiscountReasonOneOf as bo, type DiscountRule as bp, type DiscountRuleName as bq, type LineItemDiscount as br, type ItemCombination as bs, type ItemCombinationLineItem as bt, type Activity as bu, type ActivityContentOneOf as bv, type CustomActivity as bw, type MerchantComment as bx, type OrderRefunded as by, type OrderCreatedFromExchange as bz, type PreparePaymentCollectionApplicationErrors as c, type IdentificationDataIdOneOf as c$, type MembershipPaymentRefund as c0, type PaymentRefunded as c1, type PaymentRefundFailed as c2, type RefundedAsStoreCredit as c3, type PaymentPending as c4, type PaymentPendingPaymentDetailsOneOf as c5, type RegularPayment as c6, type RegularPaymentPaymentMethodDetailsOneOf as c7, type CreditCardDetails as c8, type PaymentCanceled as c9, type OwnerApps as cA, type FormInfo as cB, type FormIdentifier as cC, type PlatformFeeSummary as cD, type PlatformFee as cE, type OrderApproved as cF, type OrdersExperiments as cG, type OrderRejectedEventOrderRejected as cH, type OrderItemsRestocked as cI, type V1RestockItem as cJ, type OrderImported as cK, type ImportedOrderDeleted as cL, type ImportOrderRequest as cM, type ImportOrderResponse as cN, type SetOrderNumberCounterRequest as cO, type SetOrderNumberCounterResponse as cP, type BulkDeleteImportedOrdersRequest as cQ, type BulkDeleteImportedOrdersResponse as cR, type DomainEvent as cS, type DomainEventBodyOneOf as cT, type EntityCreatedEvent as cU, type RestoreInfo as cV, type EntityUpdatedEvent as cW, type EntityDeletedEvent as cX, type ActionEvent as cY, type MessageEnvelope as cZ, type IdentificationData as c_, type PaymentCanceledPaymentDetailsOneOf as ca, type PaymentDeclined as cb, type PaymentDeclinedPaymentDetailsOneOf as cc, type ReceiptCreated as cd, type ReceiptCreatedReceiptInfoOneOf as ce, type WixReceipt as cf, type ExternalReceipt as cg, type ReceiptSent as ch, type ReceiptSentReceiptInfoOneOf as ci, type ChargebackCreated as cj, type ChargebackReversed as ck, type CreatedBy as cl, type CreatedByStringOneOf as cm, type ChannelInfo as cn, type CustomField as co, type BalanceSummary as cp, type Balance as cq, type AdditionalFee as cr, type FulfillmentStatusesAggregate as cs, type Tags as ct, type TagList as cu, type Location as cv, type OrderSettings as cw, type OrderSettingsAllowedActionsOneOf as cx, type OrderSettingsEditableByOneOf as cy, type CustomAllowedActions as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type Duration as d$, type UpdateInternalDocumentsEvent as d0, type UpdateInternalDocumentsEventOperationOneOf as d1, type InternalDocument as d2, type InternalDocumentUpdateOperation as d3, type DeleteByIdsOperation as d4, type DeleteByFilterOperation as d5, type InternalDocumentUpdateByFilterOperation as d6, type InternalUpdateExistingOperation as d7, type VersionedDocumentUpdateOperation as d8, type VersionedDeleteByIdsOperation as d9, type SendMerchantOrderReceivedPushResponse as dA, type PreviewEmailByTypeRequest as dB, type PreviewEmailByTypeResponse as dC, type PreviewRefundEmailRequest as dD, type RefundDetails as dE, type RefundItem as dF, type LineItemRefund as dG, type AdditionalFeeRefund as dH, type ShippingRefund as dI, type PreviewRefundEmailResponse as dJ, type PreviewCancelEmailRequest as dK, type PreviewCancelEmailResponse as dL, type PreviewCancelRefundEmailRequest as dM, type PreviewCancelRefundEmailResponse as dN, type PreviewBuyerPaymentsReceivedEmailRequest as dO, type PreviewBuyerPaymentsReceivedEmailResponse as dP, type PreviewBuyerConfirmationEmailRequest as dQ, type PreviewBuyerConfirmationEmailResponse as dR, type PreviewBuyerPickupConfirmationEmailRequest as dS, type PreviewBuyerPickupConfirmationEmailResponse as dT, type PreviewShippingConfirmationEmailRequest as dU, type PreviewShippingConfirmationEmailResponse as dV, type PreviewResendDownloadLinksEmailRequest as dW, type PreviewResendDownloadLinksEmailResponse as dX, type PreparePaymentCollectionRequest as dY, type RedirectUrls as dZ, type DelayedCaptureSettings as d_, 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 dp, type SendBuyerShippingConfirmationEmailResponse as dq, type BulkSendBuyerShippingConfirmationEmailsRequest as dr, type BulkSendBuyerShippingConfirmationEmailsResponse as ds, type SendMerchantOrderReceivedNotificationRequest as dt, type SendMerchantOrderReceivedNotificationResponse as du, type SendCancelRefundEmailRequest as dv, type SendCancelRefundEmailResponse as dw, type SendRefundEmailRequest as dx, type SendRefundEmailResponse as dy, type SendMerchantOrderReceivedPushRequest as dz, type PaymentCapture as e, type GetOrderResponse as e$, type GetPaymentCollectabilityStatusRequest as e0, type RecordManuallyCollectedPaymentRequest as e1, type RecordManuallyCollectedPaymentResponse as e2, type MarkOrderAsPaidRequest as e3, type MarkOrderAsPaidResponse as e4, type BulkMarkOrdersAsPaidRequest as e5, type BulkMarkOrdersAsPaidResponse as e6, type BulkOrderResult as e7, type ItemMetadata as e8, type ApplicationError as e9, type AuthorizationDetails as eA, type AuthorizationCapture as eB, type AuthorizationActionFailureDetails as eC, type AuthorizationVoid as eD, type V1ScheduledAction as eE, type Chargeback as eF, type GiftCardPaymentDetails as eG, type MembershipPaymentDetails as eH, type WixReceiptInfo as eI, type ExternalReceiptInfo as eJ, type Refund as eK, type RefundTransaction as eL, type RefundStatusInfo as eM, type AggregatedRefundSummary as eN, type RefundItemsBreakdown as eO, type LineItemRefundSummary as eP, type CalculateRefundRequest as eQ, type CalculateRefundItemRequest as eR, type CalculateRefundResponse as eS, type CalculateRefundItemResponse as eT, type VoidAuthorizedPaymentsRequest as eU, type CaptureAuthorizedPaymentsRequest as eV, type ChargeSavedPaymentMethodRequest as eW, type ChargeSavedPaymentMethodResponse as eX, type DiffmatokyPayload as eY, type ErrorInformation as eZ, type GetOrderRequest as e_, type BulkActionMetadata as ea, type GetRefundabilityStatusRequest as eb, type GetRefundabilityStatusResponse as ec, type Refundability as ed, type RefundabilityAdditionalRefundabilityInfoOneOf as ee, type CreatePaymentGatewayOrderRequest as ef, type ChargedBy as eg, type CreatePaymentGatewayOrderResponse as eh, type ChargeMembershipsRequest as ei, type MembershipChargeItem as ej, type MembershipName as ek, type ServiceProperties as el, type ChargeMembershipsResponse as em, type TriggerRefundRequest as en, type PaymentRefund as eo, type RefundSideEffects as ep, type RestockInfo as eq, type RestockItem as er, type TriggerRefundResponse as es, type OrderTransactions as et, type Payment as eu, type PaymentPaymentDetailsOneOf as ev, type PaymentReceiptInfoOneOf as ew, type RegularPaymentDetails as ex, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ey, type CreditCardPaymentMethodDetails as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type UpdateBillingContactDetailsRequest as f$, type InternalQueryOrdersRequest as f0, type PlatformQuery as f1, type PlatformQueryPagingMethodOneOf as f2, type Sorting as f3, type PlatformPaging as f4, type CursorPaging as f5, type InternalQueryOrdersResponse as f6, type PlatformPagingMetadata as f7, type Cursors as f8, type QueryOrderRequest as f9, type DraftOrderCommitSettings as fA, type InventoryUpdateDetails as fB, type CommitDeltasResponse as fC, type OrderDeltasCommitted as fD, type CommittedDiffs as fE, type CommittedDiffsShippingUpdateInfoOneOf as fF, type LineItemDelta as fG, type LineItemDeltaDeltaOneOf as fH, type ArchiveOrderRequest as fI, type ArchiveOrderResponse as fJ, type BulkArchiveOrdersRequest as fK, type BulkArchiveOrdersResponse as fL, type BulkArchiveOrdersByFilterRequest as fM, type BulkArchiveOrdersByFilterResponse as fN, type UnArchiveOrderRequest as fO, type UnArchiveOrderResponse as fP, type BulkUnArchiveOrdersRequest as fQ, type BulkUnArchiveOrdersResponse as fR, type BulkUnArchiveOrdersByFilterRequest as fS, type BulkUnArchiveOrdersByFilterResponse as fT, type UpdateBuyerInfoRequest as fU, type BuyerInfoUpdate as fV, type UpdateBuyerInfoResponse as fW, type UpdateBuyerEmailRequest as fX, type UpdateBuyerEmailResponse as fY, type UpdateOrderShippingAddressRequest as fZ, type UpdateOrderShippingAddressResponse as f_, type QueryOrderResponse as fa, type SearchOrdersRequest as fb, type CursorSearch as fc, type CursorSearchPagingMethodOneOf as fd, type CursorPagingMetadata as fe, type CreateOrderRequest as ff, type OrderCreationSettings as fg, type OrderCreateNotifications as fh, type CreateOrderResponse as fi, type UpdateOrderRequest as fj, type UpdateOrderResponse as fk, type BulkUpdateOrdersRequest as fl, type CommitDeltasRequest as fm, type DraftOrderDiffs as fn, type DraftOrderDiffsShippingUpdateInfoOneOf as fo, type DraftOrderDiffsBuyerUpdateInfoOneOf as fp, type DraftOrderDiffsBillingUpdateInfoOneOf as fq, type DraftOrderDiffsRecipientUpdateInfoOneOf as fr, type V1LineItemDelta as fs, type V1LineItemDeltaDeltaOneOf as ft, type OrderLineItemChangedDetails as fu, type ItemChangedDetails as fv, type AppliedDiscountDelta as fw, type AppliedDiscountDeltaDeltaOneOf as fx, type AdditionalFeeDelta as fy, type AdditionalFeeDeltaDeltaOneOf as fz, type GetOrderApplicationErrors as g, type V1MarkOrderAsPaidRequest as g$, type UpdateBillingContactDetailsResponse as g0, type UpdateOrderLineItemRequest as g1, type UpdateOrderLineItemResponse as g2, type UpdateOrderLineItemsRequest as g3, type MaskedOrderLineItem as g4, type UpdateOrderLineItemsResponse as g5, type AddInternalActivityRequest as g6, type InternalActivity as g7, type InternalActivityContentOneOf as g8, type OrderPlaced as g9, type DeleteActivityRequest as gA, type DeleteActivityResponse as gB, type UpdateLineItemsDescriptionLinesRequest as gC, type LineItemUpdate as gD, type UpdateLineItemsDescriptionLinesResponse as gE, type MarkOrderAsSeenByHumanRequest as gF, type MarkOrderAsSeenByHumanResponse as gG, type CancelOrderRequest as gH, type OrderCanceledEventOrderCanceled as gI, type UpdateOrderStatusRequest as gJ, type UpdateOrderStatusResponse as gK, type MarkAsFulfilledRequest as gL, type MarkAsFulfilledResponse as gM, type FulfillmentStatusUpdated as gN, type BulkMarkAsFulfilledRequest as gO, type BulkMarkAsFulfilledResponse as gP, type BulkMarkAsFulfilledByFilterRequest as gQ, type BulkMarkAsFulfilledByFilterResponse as gR, type MarkAsUnfulfilledRequest as gS, type MarkAsUnfulfilledResponse as gT, type BulkMarkAsUnfulfilledRequest as gU, type BulkMarkAsUnfulfilledResponse as gV, type BulkMarkAsUnfulfilledByFilterRequest as gW, type BulkMarkAsUnfulfilledByFilterResponse as gX, type BulkSetBusinessLocationRequest as gY, type BulkSetBusinessLocationResponse as gZ, type BulkSetBusinessLocationResult as g_, type OrderPaid as ga, type OrderFulfilled as gb, type OrderNotFulfilled as gc, type OrderCanceled as gd, type DownloadLinkSent as ge, type TrackingNumberAdded as gf, type TrackingNumberEdited as gg, type TrackingLinkAdded as gh, type ShippingConfirmationEmailSent as gi, type InvoiceAdded as gj, type InvoiceSent as gk, type FulfillerEmailSent as gl, type ShippingAddressEdited as gm, type EmailEdited as gn, type PickupReadyEmailSent as go, type OrderPartiallyPaid as gp, type OrderPending as gq, type OrderRejected as gr, type AddInternalActivityResponse as gs, type AddActivityRequest as gt, type PublicActivity as gu, type PublicActivityContentOneOf as gv, type AddActivityResponse as gw, type AddActivitiesRequest as gx, type UpdateActivityRequest as gy, type UpdateActivityResponse as gz, type OrderSearch as h, type OrderSearchSpec as h$, type V1MarkOrderAsPaidResponse as h0, type PaymentStatusUpdated as h1, type V1BulkMarkOrdersAsPaidRequest as h2, type V1BulkMarkOrdersAsPaidResponse as h3, type V1CreatePaymentGatewayOrderRequest as h4, type V1CreatePaymentGatewayOrderResponse as h5, type GetShipmentsRequest as h6, type GetShipmentsResponse as h7, type AggregateOrdersRequest as h8, type AggregateOrdersResponse as h9, type LineItems as hA, type LineItem as hB, type BigDecimalWrapper as hC, type LineItemTax as hD, type Source as hE, type LineItemMetaData as hF, type Locale as hG, type TotalPrice as hH, type ItemizedFee as hI, type Discount as hJ, type DiscountOneDiscountTypeOneOf as hK, type CalculatedTaxes as hL, type CalculatedTax as hM, type Payments as hN, type InvoicesPayment as hO, type MetaData as hP, type InvoiceDynamicPriceTotals as hQ, type CustomFieldValue as hR, type Value as hS, type Deposit as hT, type BaseEventMetadata as hU, type EventMetadata as hV, type SetOrderNumberCounterOptions as hW, type BulkDeleteImportedOrdersOptions as hX, type CreatePaymentGatewayOrderOptions as hY, type ChargeMembershipsOptions as hZ, type TriggerRefundOptions as h_, type DecrementItemsQuantityRequest as ha, type DecrementData as hb, type DecrementItemsQuantityResponse as hc, type BulkUpdateOrderTagsRequest as hd, type BulkUpdateOrderTagsResult as he, type Task as hf, type TaskKey as hg, type TaskAction as hh, type TaskActionActionOneOf as hi, type Complete as hj, type Cancel as hk, type Reschedule as hl, type InvoiceSentEvent as hm, type IdAndVersion as hn, type InvoiceFields as ho, type Customer as hp, type Email as hq, type QuotesAddress as hr, type AddressDescription as hs, type Phone as ht, type Company as hu, type CommonAddress as hv, type CommonAddressStreetOneOf as hw, type Subdivision as hx, type StandardDetails as hy, type InvoiceDates as hz, type CreateOrderOptions as i, type UpdateOrderStatusApplicationErrors as i$, type UpdateOrderLineItemIdentifiers as i0, type UpdateOrderLineItem as i1, type UpdateActivityIdentifiers as i2, type DeleteActivityIdentifiers as i3, type AggregateOrdersOptions as i4, type DescriptionLineTypeWithLiterals as i5, type ItemTypePresetWithLiterals as i6, type PaymentOptionTypeWithLiterals as i7, type JurisdictionTypeWithLiterals as i8, type SubscriptionFrequencyWithLiterals 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 SortOrderWithLiterals as iM, type OrderApprovalStrategyWithLiterals as iN, type DeltaPaymentOptionTypeWithLiterals as iO, type InventoryActionWithLiterals as iP, type PlacementWithLiterals as iQ, type SubdivisionTypeWithLiterals as iR, type SourceTypeWithLiterals as iS, type CustomFieldGroupWithLiterals as iT, type ValueTypeWithLiterals as iU, type DepositTypeWithLiterals as iV, type InvoiceStatusWithLiterals as iW, type RecordManuallyCollectedPaymentApplicationErrors as iX, type MarkOrderAsPaidApplicationErrors as iY, type CreatePaymentGatewayOrderApplicationErrors as iZ, type TriggerRefundApplicationErrors as i_, type AdjustmentTypeWithLiterals as ia, type TaxableAddressTypeWithLiterals as ib, type PaymentStatusWithLiterals as ic, type FulfillmentStatusWithLiterals as id, type WeightUnitWithLiterals as ie, type VatTypeWithLiterals as ig, type PickupMethodWithLiterals as ih, type OrderStatusWithLiterals as ii, type DiscountTypeWithLiterals as ij, type DiscountReasonWithLiterals as ik, type LineItemQuantityChangeTypeWithLiterals as il, type ActivityTypeWithLiterals as im, type OrderActivityTypeEnumActivityTypeWithLiterals as io, type AttributionSourceWithLiterals as ip, type ChannelTypeWithLiterals as iq, type AdditionalFeeSourceWithLiterals as ir, type OrderActionTypeWithLiterals as is, type ChargeTypeWithLiterals as it, type WebhookIdentityTypeWithLiterals as iu, type VersioningModeWithLiterals as iv, type PreviewEmailTypeWithLiterals as iw, type ScheduledActionWithLiterals as ix, type DurationUnitWithLiterals as iy, type PaymentCollectabilityStatusWithLiterals as iz, type CreateOrderApplicationErrors as j, type CommonSearchWithEntityContext as j0, onOrderApproved as j1, onOrderUpdated as j2, onOrderCanceled as j3, onOrderCreated as j4, onOrderPaymentStatusUpdated as j5, preparePaymentCollection as j6, getPaymentCollectabilityStatus as j7, voidAuthorizedPayments as j8, captureAuthorizedPayments as j9, getOrder as ja, createOrder as jb, updateOrder as jc, bulkUpdateOrders as jd, addActivities as je, cancelOrder as jf, bulkUpdateOrderTags as jg, type UpdateOrderApplicationErrors as k, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderUpdatedEnvelope as t, type OrderCanceledEnvelope as u, type OrderCreatedEnvelope as v, type OrderPaymentStatusUpdatedEnvelope as w, PaymentOptionType as x, SubscriptionFrequency as y, AdjustmentType as z };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderUpdatedEnvelope, u as OrderCanceledEnvelope, v as OrderCreatedEnvelope, w as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { cW as ActionEvent, af as ActionType, iF as ActionTypeWithLiterals, bu as Activity, bv as ActivityContentOneOf, X as ActivityType, ik as ActivityTypeWithLiterals, gv as AddActivitiesRequest, gr as AddActivityRequest, gu as AddActivityResponse, g4 as AddInternalActivityRequest, gq as AddInternalActivityResponse, cr as AdditionalFee, fw as AdditionalFeeDelta, fx as AdditionalFeeDeltaDeltaOneOf, dp as AdditionalFeeRefund, $ as AdditionalFeeSource, ip as AdditionalFeeSourceWithLiterals, b4 as Address, hq as AddressDescription, b6 as AddressLocation, b3 as AddressWithContact, z as AdjustmentType, i8 as AdjustmentTypeWithLiterals, i2 as AggregateOrdersOptions, h6 as AggregateOrdersRequest, h7 as AggregateOrdersResponse, ew as AggregatedRefundSummary, dU as ApplicationError, bk as AppliedDiscount, fu as AppliedDiscountDelta, fv as AppliedDiscountDeltaDeltaOneOf, bl as AppliedDiscountDiscountSourceOneOf, fG as ArchiveOrderRequest, fH as ArchiveOrderResponse, Z as AttributionSource, im as AttributionSourceWithLiterals, el as AuthorizationActionFailureDetails, ek as AuthorizationCapture, ac as AuthorizationCaptureStatus, iC as AuthorizationCaptureStatusWithLiterals, ej as AuthorizationDetails, em as AuthorizationVoid, ad as AuthorizationVoidStatus, iD as AuthorizationVoidStatusWithLiterals, bV as AuthorizedPaymentCaptured, bU as AuthorizedPaymentCreated, bW as AuthorizedPaymentVoided, cq as Balance, cp as BalanceSummary, hS as BaseEventMetadata, eU as BatchOfTriggerReindexOrderRequest, hA as BigDecimalWrapper, aR as BillingAdjustment, aS as BillingAdjustmentPriceSummary, dV as BulkActionMetadata, fK as BulkArchiveOrdersByFilterRequest, fL as BulkArchiveOrdersByFilterResponse, fI as BulkArchiveOrdersRequest, fJ as BulkArchiveOrdersResponse, hV as BulkDeleteImportedOrdersOptions, cO as BulkDeleteImportedOrdersRequest, cP as BulkDeleteImportedOrdersResponse, gO as BulkMarkAsFulfilledByFilterRequest, gP as BulkMarkAsFulfilledByFilterResponse, gM as BulkMarkAsFulfilledRequest, gN as BulkMarkAsFulfilledResponse, gU as BulkMarkAsUnfulfilledByFilterRequest, gV as BulkMarkAsUnfulfilledByFilterResponse, gS as BulkMarkAsUnfulfilledRequest, gT as BulkMarkAsUnfulfilledResponse, dQ as BulkMarkOrdersAsPaidRequest, dR as BulkMarkOrdersAsPaidResponse, dS as BulkOrderResult, d4 as BulkSendBuyerPickupConfirmationEmailsRequest, d5 as BulkSendBuyerPickupConfirmationEmailsResponse, d8 as BulkSendBuyerShippingConfirmationEmailsRequest, d9 as BulkSendBuyerShippingConfirmationEmailsResponse, gW as BulkSetBusinessLocationRequest, gX as BulkSetBusinessLocationResponse, gY as BulkSetBusinessLocationResult, fQ as BulkUnArchiveOrdersByFilterRequest, fR as BulkUnArchiveOrdersByFilterResponse, fO as BulkUnArchiveOrdersRequest, fP as BulkUnArchiveOrdersResponse, hb as BulkUpdateOrderTagsRequest, hc as BulkUpdateOrderTagsResult, fj as BulkUpdateOrdersRequest, a$ as BuyerInfo, b0 as BuyerInfoIdOneOf, fT as BuyerInfoUpdate, eA as CalculateRefundItemRequest, eC as CalculateRefundItemResponse, ez as CalculateRefundRequest, eB as CalculateRefundResponse, hK as CalculatedTax, hJ as CalculatedTaxes, hi as Cancel, gF as CancelOrderRequest, eE as CaptureAuthorizedPaymentsRequest, ax as CatalogReference, cn as ChannelInfo, _ as ChannelType, io as ChannelTypeWithLiterals, hX as ChargeMembershipsOptions, e1 as ChargeMembershipsRequest, e5 as ChargeMembershipsResponse, eF as ChargeSavedPaymentMethodRequest, eG as ChargeSavedPaymentMethodResponse, a1 as ChargeType, ir as ChargeTypeWithLiterals, eo as Chargeback, cj as ChargebackCreated, ck as ChargebackReversed, ag as ChargebackStatus, iG as ChargebackStatusWithLiterals, d$ as ChargedBy, aD as Color, fk as CommitDeltasRequest, fA as CommitDeltasResponse, fC as CommittedDiffs, fD as CommittedDiffsShippingUpdateInfoOneOf, ht as CommonAddress, hu as CommonAddressStreetOneOf, i_ as CommonSearchWithEntityContext, hs as Company, hh as Complete, bm as Coupon, fd as CreateOrderRequest, fg as CreateOrderResponse, iX as CreatePaymentGatewayOrderApplicationErrors, hW as CreatePaymentGatewayOrderOptions, d_ as CreatePaymentGatewayOrderRequest, e0 as CreatePaymentGatewayOrderResponse, cl as CreatedBy, cm as CreatedByStringOneOf, c8 as CreditCardDetails, ei as CreditCardPaymentMethodDetails, b1 as CurrencyConversionDetails, f3 as CursorPaging, fc as CursorPagingMetadata, fa as CursorSearch, fb as CursorSearchPagingMethodOneOf, f6 as Cursors, bw as CustomActivity, cy as CustomAllowedActions, co as CustomField, ar as CustomFieldGroup, iR as CustomFieldGroupWithLiterals, hP as CustomFieldValue, hn as Customer, h9 as DecrementData, h8 as DecrementItemsQuantityRequest, ha as DecrementItemsQuantityResponse, dJ as DelayedCaptureSettings, i1 as DeleteActivityIdentifiers, gy as DeleteActivityRequest, gz as DeleteActivityResponse, eM as DeleteByFilterOperation, eL as DeleteByIdsOperation, ba as DeliveryLogistics, bb as DeliveryLogisticsAddressOneOf, be as DeliveryTimeSlot, am as DeltaPaymentOptionType, iM as DeltaPaymentOptionTypeWithLiterals, hR as Deposit, at as DepositType, iT as DepositTypeWithLiterals, ay as DescriptionLine, aA as DescriptionLineDescriptionLineValueOneOf, aB as DescriptionLineName, D as DescriptionLineType, i3 as DescriptionLineTypeWithLiterals, az as DescriptionLineValueOneOf, eW as DiffmatokyPayload, aL as DigitalFile, hH as Discount, hI as DiscountOneDiscountTypeOneOf, Q as DiscountReason, ii as DiscountReasonWithLiterals, bp as DiscountRule, bq as DiscountRuleName, N as DiscountType, ih as DiscountTypeWithLiterals, cQ as DomainEvent, cR as DomainEventBodyOneOf, gc as DownloadLinkSent, bC as DraftOrderChangesApplied, fy as DraftOrderCommitSettings, fl as DraftOrderDiffs, fo as DraftOrderDiffsBillingUpdateInfoOneOf, fn as DraftOrderDiffsBuyerUpdateInfoOneOf, fp as DraftOrderDiffsRecipientUpdateInfoOneOf, fm as DraftOrderDiffsShippingUpdateInfoOneOf, dK as Duration, a5 as DurationUnit, iv as DurationUnitWithLiterals, ho as Email, gl as EmailEdited, dG as Empty, cS as EntityCreatedEvent, cV as EntityDeletedEvent, cU as EntityUpdatedEvent, eX as ErrorInformation, hT as EventMetadata, aX as ExtendedFields, cg as ExternalReceipt, es as ExternalReceiptInfo, aE as FocalPoint, cA as FormIdentifier, cz as FormInfo, aQ as FreeTrialPeriod, gj as FulfillerEmailSent, F as FulfillmentStatus, gL as FulfillmentStatusUpdated, ib as FulfillmentStatusWithLiterals, cs as FulfillmentStatusesAggregate, b7 as FullAddressContactDetails, eY as GetOrderRequest, eZ as GetOrderResponse, dL as GetPaymentCollectabilityStatusRequest, dW as GetRefundabilityStatusRequest, dX as GetRefundabilityStatusResponse, h4 as GetShipmentsRequest, h5 as GetShipmentsResponse, ep as GiftCardPaymentDetails, b$ as GiftCardPaymentRefund, hl as IdAndVersion, cY as IdentificationData, cZ as IdentificationDataIdOneOf, cK as ImportOrderRequest, cL as ImportOrderResponse, cJ as ImportedOrderDeleted, g5 as InternalActivity, g6 as InternalActivityContentOneOf, eJ as InternalDocument, eN as InternalDocumentUpdateByFilterOperation, eK as InternalDocumentUpdateOperation, e_ as InternalQueryOrdersRequest, f4 as InternalQueryOrdersResponse, eO as InternalUpdateExistingOperation, an as InventoryAction, iN as InventoryActionWithLiterals, fz as InventoryUpdateDetails, gh as InvoiceAdded, hx as InvoiceDates, hO as InvoiceDynamicPriceTotals, hm as InvoiceFields, gi as InvoiceSent, hk as InvoiceSentEvent, au as InvoiceStatus, iU as InvoiceStatusWithLiterals, hM as InvoicesPayment, ft as ItemChangedDetails, bs as ItemCombination, bt as ItemCombinationLineItem, dT as ItemMetadata, a_ as ItemModifier, aI as ItemTaxFullDetails, aG as ItemType, aH as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, i4 as ItemTypePresetWithLiterals, hG as ItemizedFee, J as JurisdictionType, i6 as JurisdictionTypeWithLiterals, hz as LineItem, bO as LineItemAmount, bF as LineItemChanges, fE as LineItemDelta, fF as LineItemDeltaDeltaOneOf, bJ as LineItemDescriptionLineChange, br as LineItemDiscount, bB as LineItemExchangeData, hD as LineItemMetaData, bK as LineItemModifiersChange, bH as LineItemPriceChange, bI as LineItemProductNameChange, bG as LineItemQuantityChange, R as LineItemQuantityChangeType, ij as LineItemQuantityChangeTypeWithLiterals, dn as LineItemRefund, ey as LineItemRefundSummary, hB as LineItemTax, aK as LineItemTaxBreakdown, aJ as LineItemTaxInfo, gB as LineItemUpdate, hy as LineItems, hE as Locale, cv as Location, aU as LocationAndQuantity, bP as ManagedAdditionalFee, bM as ManagedDiscount, bL as ManagedLineItem, a9 as ManuallyRefundableReason, iz as ManuallyRefundableReasonWithLiterals, gJ as MarkAsFulfilledRequest, gK as MarkAsFulfilledResponse, gQ as MarkAsUnfulfilledRequest, gR as MarkAsUnfulfilledResponse, iW as MarkOrderAsPaidApplicationErrors, dO as MarkOrderAsPaidRequest, dP as MarkOrderAsPaidResponse, gD as MarkOrderAsSeenByHumanRequest, gE as MarkOrderAsSeenByHumanResponse, g2 as MaskedOrderLineItem, e2 as MembershipChargeItem, e3 as MembershipName, eq as MembershipPaymentDetails, c0 as MembershipPaymentRefund, ah as MembershipPaymentStatus, iH as MembershipPaymentStatusWithLiterals, bx as MerchantComment, bn as MerchantDiscount, bo as MerchantDiscountMerchantDiscountReasonOneOf, cX as MessageEnvelope, hN as MetaData, aY as ModifierGroup, bA as NewExchangeOrderCreated, a8 as NonRefundableReason, iy as NonRefundableReasonWithLiterals, a0 as OrderActionType, iq as OrderActionTypeWithLiterals, Y as OrderActivityTypeEnumActivityType, il as OrderActivityTypeEnumActivityTypeWithLiterals, al as OrderApprovalStrategy, iL as OrderApprovalStrategyWithLiterals, cD as OrderApproved, gb as OrderCanceled, gG as OrderCanceledEventOrderCanceled, bD as OrderChange, bE as OrderChangeValueOneOf, ff as OrderCreateNotifications, bz as OrderCreatedFromExchange, fe as OrderCreationSettings, fB as OrderDeltasCommitted, g9 as OrderFulfilled, cI as OrderImported, cG as OrderItemsRestocked, av as OrderLineItem, fs as OrderLineItemChangedDetails, ga as OrderNotFulfilled, g8 as OrderPaid, gn as OrderPartiallyPaid, go as OrderPending, g7 as OrderPlaced, by as OrderRefunded, gp as OrderRejected, cF as OrderRejectedEventOrderRejected, hZ as OrderSearchSpec, cw as OrderSettings, cx as OrderSettingsAllowedActionsOneOf, L as OrderStatus, ig as OrderStatusWithLiterals, bj as OrderTaxBreakdown, bi as OrderTaxInfo, ec as OrderTransactions, cE as OrdersExperiments, ed as Payment, c9 as PaymentCanceled, ca as PaymentCanceledPaymentDetailsOneOf, a6 as PaymentCollectabilityStatus, iw as PaymentCollectabilityStatusWithLiterals, cb as PaymentDeclined, cc as PaymentDeclinedPaymentDetailsOneOf, x as PaymentOptionType, i5 as PaymentOptionTypeWithLiterals, ee as PaymentPaymentDetailsOneOf, c4 as PaymentPending, c5 as PaymentPendingPaymentDetailsOneOf, ef as PaymentReceiptInfoOneOf, e7 as PaymentRefund, c2 as PaymentRefundFailed, c1 as PaymentRefunded, E as PaymentStatus, g$ as PaymentStatusUpdated, ia as PaymentStatusWithLiterals, hL as Payments, hr as Phone, aF as PhysicalProperties, bd as PickupAddress, bc as PickupDetails, K as PickupMethod, ie as PickupMethodWithLiterals, gm as PickupReadyEmailSent, ao as Placement, iO as PlacementWithLiterals, aC as PlainTextValue, cC as PlatformFee, cB as PlatformFeeSummary, f2 as PlatformPaging, f5 as PlatformPagingMetadata, e$ as PlatformQuery, f0 as PlatformQueryPagingMethodOneOf, dH as PreparePaymentCollectionRequest, dy as PreviewBuyerConfirmationEmailRequest, dz as PreviewBuyerConfirmationEmailResponse, dw as PreviewBuyerPaymentsReceivedEmailRequest, dx as PreviewBuyerPaymentsReceivedEmailResponse, dA as PreviewBuyerPickupConfirmationEmailRequest, dB as PreviewBuyerPickupConfirmationEmailResponse, ds as PreviewCancelEmailRequest, dt as PreviewCancelEmailResponse, du as PreviewCancelRefundEmailRequest, dv as PreviewCancelRefundEmailResponse, di as PreviewEmailByTypeRequest, dj as PreviewEmailByTypeResponse, a3 as PreviewEmailType, it as PreviewEmailTypeWithLiterals, dk as PreviewRefundEmailRequest, dr as PreviewRefundEmailResponse, dE as PreviewResendDownloadLinksEmailRequest, dF as PreviewResendDownloadLinksEmailResponse, dC as PreviewShippingConfirmationEmailRequest, dD as PreviewShippingConfirmationEmailResponse, aT as PriceDescription, b2 as PriceSummary, aw as ProductName, gs as PublicActivity, gt as PublicActivityContentOneOf, f7 as QueryOrderRequest, f8 as QueryOrderResponse, hp as QuotesAddress, ae as Reason, iE as ReasonWithLiterals, cd as ReceiptCreated, ce as ReceiptCreatedReceiptInfoOneOf, ch as ReceiptSent, ci as ReceiptSentReceiptInfoOneOf, iV as RecordManuallyCollectedPaymentApplicationErrors, dM as RecordManuallyCollectedPaymentRequest, dN as RecordManuallyCollectedPaymentResponse, dI as RedirectUrls, et as Refund, dl as RefundDetails, bX as RefundInitiated, dm as RefundItem, ex as RefundItemsBreakdown, e8 as RefundSideEffects, ai as RefundStatus, ev as RefundStatusInfo, iI as RefundStatusWithLiterals, eu as RefundTransaction, dY as Refundability, dZ as RefundabilityAdditionalRefundabilityInfoOneOf, a7 as RefundableStatus, ix as RefundableStatusWithLiterals, c3 as RefundedAsStoreCredit, bY as RefundedPayment, bZ as RefundedPaymentKindOneOf, c6 as RegularPayment, eg as RegularPaymentDetails, eh as RegularPaymentDetailsPaymentMethodDetailsOneOf, c7 as RegularPaymentPaymentMethodDetailsOneOf, b_ as RegularPaymentRefund, hj as Reschedule, e9 as RestockInfo, ea as RestockItem, aa as RestockType, iA as RestockTypeWithLiterals, cT as RestoreInfo, bT as SavedPaymentMethod, a4 as ScheduledAction, iu as ScheduledActionWithLiterals, f9 as SearchOrdersRequest, c_ as SendBuyerConfirmationEmailRequest, c$ as SendBuyerConfirmationEmailResponse, d0 as SendBuyerPaymentsReceivedEmailRequest, d1 as SendBuyerPaymentsReceivedEmailResponse, d2 as SendBuyerPickupConfirmationEmailRequest, d3 as SendBuyerPickupConfirmationEmailResponse, d6 as SendBuyerShippingConfirmationEmailRequest, d7 as SendBuyerShippingConfirmationEmailResponse, dc as SendCancelRefundEmailRequest, dd as SendCancelRefundEmailResponse, da as SendMerchantOrderReceivedNotificationRequest, db as SendMerchantOrderReceivedNotificationResponse, dg as SendMerchantOrderReceivedPushRequest, dh as SendMerchantOrderReceivedPushResponse, de as SendRefundEmailRequest, df as SendRefundEmailResponse, e4 as ServiceProperties, hU as SetOrderNumberCounterOptions, cM as SetOrderNumberCounterRequest, cN as SetOrderNumberCounterResponse, gk as ShippingAddressEdited, gg as ShippingConfirmationEmailSent, bS as ShippingInformation, bR as ShippingInformationChange, bf as ShippingPrice, dq as ShippingRefund, bg as ShippingRegion, ak as SortOrder, iK as SortOrderWithLiterals, f1 as Sorting, hC as Source, aq as SourceType, iQ as SourceTypeWithLiterals, hw as StandardDetails, b5 as StreetAddress, hv as Subdivision, ap as SubdivisionType, iP as SubdivisionTypeWithLiterals, aO as SubscriptionDescription, y as SubscriptionFrequency, i7 as SubscriptionFrequencyWithLiterals, aM as SubscriptionInfo, aP as SubscriptionSettings, aN as SubscriptionTitle, cu as TagList, ct as Tags, hd as Task, hf as TaskAction, hg as TaskActionActionOneOf, he as TaskKey, bh as TaxSummary, aV as TaxableAddress, aW as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, i9 as TaxableAddressTypeWithLiterals, hF as TotalPrice, bQ as TotalPriceChange, gf as TrackingLinkAdded, gd as TrackingNumberAdded, ge as TrackingNumberEdited, ab as TransactionStatus, iB as TransactionStatusWithLiterals, aZ as TranslatableString, bN as TranslatedValue, iY as TriggerRefundApplicationErrors, hY as TriggerRefundOptions, e6 as TriggerRefundRequest, eb as TriggerRefundResponse, eV as TriggerReindexOrderRequest, eS as TriggerReindexRequest, eT as TriggerReindexResponse, fM as UnArchiveOrderRequest, fN as UnArchiveOrderResponse, i0 as UpdateActivityIdentifiers, gw as UpdateActivityRequest, gx as UpdateActivityResponse, fZ as UpdateBillingContactDetailsRequest, f_ as UpdateBillingContactDetailsResponse, fV as UpdateBuyerEmailRequest, fW as UpdateBuyerEmailResponse, fS as UpdateBuyerInfoRequest, fU as UpdateBuyerInfoResponse, eH as UpdateInternalDocumentsEvent, eI as UpdateInternalDocumentsEventOperationOneOf, gA as UpdateLineItemsDescriptionLinesRequest, gC as UpdateLineItemsDescriptionLinesResponse, h$ as UpdateOrderLineItem, h_ as UpdateOrderLineItemIdentifiers, f$ as UpdateOrderLineItemRequest, g0 as UpdateOrderLineItemResponse, g1 as UpdateOrderLineItemsRequest, g3 as UpdateOrderLineItemsResponse, fh as UpdateOrderRequest, fi as UpdateOrderResponse, fX as UpdateOrderShippingAddressRequest, fY as UpdateOrderShippingAddressResponse, iZ as UpdateOrderStatusApplicationErrors, gH as UpdateOrderStatusRequest, gI as UpdateOrderStatusResponse, h0 as V1BulkMarkOrdersAsPaidRequest, h1 as V1BulkMarkOrdersAsPaidResponse, h2 as V1CreatePaymentGatewayOrderRequest, h3 as V1CreatePaymentGatewayOrderResponse, fq as V1LineItemDelta, fr as V1LineItemDeltaDeltaOneOf, gZ as V1MarkOrderAsPaidRequest, g_ as V1MarkOrderAsPaidResponse, cH as V1RestockItem, en as V1ScheduledAction, b9 as V1ShippingInformation, hQ as Value, as as ValueType, iS as ValueTypeWithLiterals, b8 as VatId, H as VatType, id as VatTypeWithLiterals, eQ as VersionedDeleteByIdsOperation, eR as VersionedDocumentId, eP as VersionedDocumentUpdateOperation, aj as VersioningMode, iJ as VersioningModeWithLiterals, eD as VoidAuthorizedPaymentsRequest, a2 as WebhookIdentityType, is as WebhookIdentityTypeWithLiterals, W as WeightUnit, ic as WeightUnitWithLiterals, cf as WixReceipt, er as WixReceiptInfo } from './ecom-v1-order-orders.universal-BDEIT7ev.js';
|
|
2
|
+
import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderUpdatedEnvelope, u as OrderCanceledEnvelope, v as OrderCreatedEnvelope, w as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-YceODZmo.js';
|
|
3
|
+
export { cY as ActionEvent, ag as ActionType, iI as ActionTypeWithLiterals, bu as Activity, bv as ActivityContentOneOf, X as ActivityType, im as ActivityTypeWithLiterals, gx as AddActivitiesRequest, gt as AddActivityRequest, gw as AddActivityResponse, g6 as AddInternalActivityRequest, gs as AddInternalActivityResponse, cr as AdditionalFee, fy as AdditionalFeeDelta, fz as AdditionalFeeDeltaDeltaOneOf, dH as AdditionalFeeRefund, $ as AdditionalFeeSource, ir as AdditionalFeeSourceWithLiterals, b4 as Address, hs as AddressDescription, b6 as AddressLocation, b3 as AddressWithContact, z as AdjustmentType, ia as AdjustmentTypeWithLiterals, i4 as AggregateOrdersOptions, h8 as AggregateOrdersRequest, h9 as AggregateOrdersResponse, eN as AggregatedRefundSummary, e9 as ApplicationError, bk as AppliedDiscount, fw as AppliedDiscountDelta, fx as AppliedDiscountDeltaDeltaOneOf, bl as AppliedDiscountDiscountSourceOneOf, fI as ArchiveOrderRequest, fJ as ArchiveOrderResponse, Z as AttributionSource, ip as AttributionSourceWithLiterals, eC as AuthorizationActionFailureDetails, eB as AuthorizationCapture, ad as AuthorizationCaptureStatus, iF as AuthorizationCaptureStatusWithLiterals, eA as AuthorizationDetails, eD as AuthorizationVoid, ae as AuthorizationVoidStatus, iG as AuthorizationVoidStatusWithLiterals, bV as AuthorizedPaymentCaptured, bU as AuthorizedPaymentCreated, bW as AuthorizedPaymentVoided, cq as Balance, cp as BalanceSummary, hU as BaseEventMetadata, de as BatchOfTriggerReindexOrderRequest, hC as BigDecimalWrapper, aR as BillingAdjustment, aS as BillingAdjustmentPriceSummary, ea as BulkActionMetadata, fM as BulkArchiveOrdersByFilterRequest, fN as BulkArchiveOrdersByFilterResponse, fK as BulkArchiveOrdersRequest, fL as BulkArchiveOrdersResponse, hX as BulkDeleteImportedOrdersOptions, cQ as BulkDeleteImportedOrdersRequest, cR as BulkDeleteImportedOrdersResponse, gQ as BulkMarkAsFulfilledByFilterRequest, gR as BulkMarkAsFulfilledByFilterResponse, gO as BulkMarkAsFulfilledRequest, gP as BulkMarkAsFulfilledResponse, gW as BulkMarkAsUnfulfilledByFilterRequest, gX as BulkMarkAsUnfulfilledByFilterResponse, gU as BulkMarkAsUnfulfilledRequest, gV as BulkMarkAsUnfulfilledResponse, e5 as BulkMarkOrdersAsPaidRequest, e6 as BulkMarkOrdersAsPaidResponse, e7 as BulkOrderResult, dm as BulkSendBuyerPickupConfirmationEmailsRequest, dn as BulkSendBuyerPickupConfirmationEmailsResponse, dr as BulkSendBuyerShippingConfirmationEmailsRequest, ds as BulkSendBuyerShippingConfirmationEmailsResponse, gY as BulkSetBusinessLocationRequest, gZ as BulkSetBusinessLocationResponse, g_ as BulkSetBusinessLocationResult, fS as BulkUnArchiveOrdersByFilterRequest, fT as BulkUnArchiveOrdersByFilterResponse, fQ as BulkUnArchiveOrdersRequest, fR as BulkUnArchiveOrdersResponse, hd as BulkUpdateOrderTagsRequest, he as BulkUpdateOrderTagsResult, fl as BulkUpdateOrdersRequest, a$ as BuyerInfo, b0 as BuyerInfoIdOneOf, fV as BuyerInfoUpdate, eR as CalculateRefundItemRequest, eT as CalculateRefundItemResponse, eQ as CalculateRefundRequest, eS as CalculateRefundResponse, hM as CalculatedTax, hL as CalculatedTaxes, hk as Cancel, gH as CancelOrderRequest, eV as CaptureAuthorizedPaymentsRequest, ax as CatalogReference, cn as ChannelInfo, _ as ChannelType, iq as ChannelTypeWithLiterals, hZ as ChargeMembershipsOptions, ei as ChargeMembershipsRequest, em as ChargeMembershipsResponse, eW as ChargeSavedPaymentMethodRequest, eX as ChargeSavedPaymentMethodResponse, a1 as ChargeType, it as ChargeTypeWithLiterals, eF as Chargeback, cj as ChargebackCreated, ck as ChargebackReversed, ah as ChargebackStatus, iJ as ChargebackStatusWithLiterals, eg as ChargedBy, aD as Color, fm as CommitDeltasRequest, fC as CommitDeltasResponse, fE as CommittedDiffs, fF as CommittedDiffsShippingUpdateInfoOneOf, hv as CommonAddress, hw as CommonAddressStreetOneOf, j0 as CommonSearchWithEntityContext, hu as Company, hj as Complete, bm as Coupon, ff as CreateOrderRequest, fi as CreateOrderResponse, iZ as CreatePaymentGatewayOrderApplicationErrors, hY as CreatePaymentGatewayOrderOptions, ef as CreatePaymentGatewayOrderRequest, eh as CreatePaymentGatewayOrderResponse, cl as CreatedBy, cm as CreatedByStringOneOf, c8 as CreditCardDetails, ez as CreditCardPaymentMethodDetails, b1 as CurrencyConversionDetails, f5 as CursorPaging, fe as CursorPagingMetadata, fc as CursorSearch, fd as CursorSearchPagingMethodOneOf, f8 as Cursors, bw as CustomActivity, cz as CustomAllowedActions, co as CustomField, ar as CustomFieldGroup, iT as CustomFieldGroupWithLiterals, hR as CustomFieldValue, hp as Customer, hb as DecrementData, ha as DecrementItemsQuantityRequest, hc as DecrementItemsQuantityResponse, d_ as DelayedCaptureSettings, i3 as DeleteActivityIdentifiers, gA as DeleteActivityRequest, gB as DeleteActivityResponse, d5 as DeleteByFilterOperation, d4 as DeleteByIdsOperation, ba as DeliveryLogistics, bb as DeliveryLogisticsAddressOneOf, be as DeliveryTimeSlot, am as DeltaPaymentOptionType, iO as DeltaPaymentOptionTypeWithLiterals, hT as Deposit, at as DepositType, iV as DepositTypeWithLiterals, ay as DescriptionLine, aA as DescriptionLineDescriptionLineValueOneOf, aB as DescriptionLineName, D as DescriptionLineType, i5 as DescriptionLineTypeWithLiterals, az as DescriptionLineValueOneOf, eY as DiffmatokyPayload, aL as DigitalFile, hJ as Discount, hK as DiscountOneDiscountTypeOneOf, Q as DiscountReason, ik as DiscountReasonWithLiterals, bp as DiscountRule, bq as DiscountRuleName, N as DiscountType, ij as DiscountTypeWithLiterals, cS as DomainEvent, cT as DomainEventBodyOneOf, ge as DownloadLinkSent, bC as DraftOrderChangesApplied, fA as DraftOrderCommitSettings, fn as DraftOrderDiffs, fq as DraftOrderDiffsBillingUpdateInfoOneOf, fp as DraftOrderDiffsBuyerUpdateInfoOneOf, fr as DraftOrderDiffsRecipientUpdateInfoOneOf, fo as DraftOrderDiffsShippingUpdateInfoOneOf, d$ as Duration, a6 as DurationUnit, iy as DurationUnitWithLiterals, hq as Email, gn as EmailEdited, dd as Empty, cU as EntityCreatedEvent, cX as EntityDeletedEvent, cW as EntityUpdatedEvent, eZ as ErrorInformation, hV as EventMetadata, aX as ExtendedFields, cg as ExternalReceipt, eJ as ExternalReceiptInfo, aE as FocalPoint, cC as FormIdentifier, cB as FormInfo, aQ as FreeTrialPeriod, gl as FulfillerEmailSent, F as FulfillmentStatus, gN as FulfillmentStatusUpdated, id as FulfillmentStatusWithLiterals, cs as FulfillmentStatusesAggregate, b7 as FullAddressContactDetails, e_ as GetOrderRequest, e$ as GetOrderResponse, e0 as GetPaymentCollectabilityStatusRequest, eb as GetRefundabilityStatusRequest, ec as GetRefundabilityStatusResponse, h6 as GetShipmentsRequest, h7 as GetShipmentsResponse, eG as GiftCardPaymentDetails, b$ as GiftCardPaymentRefund, hn as IdAndVersion, c_ as IdentificationData, c$ as IdentificationDataIdOneOf, cM as ImportOrderRequest, cN as ImportOrderResponse, cL as ImportedOrderDeleted, g7 as InternalActivity, g8 as InternalActivityContentOneOf, d2 as InternalDocument, d6 as InternalDocumentUpdateByFilterOperation, d3 as InternalDocumentUpdateOperation, f0 as InternalQueryOrdersRequest, f6 as InternalQueryOrdersResponse, d7 as InternalUpdateExistingOperation, an as InventoryAction, iP as InventoryActionWithLiterals, fB as InventoryUpdateDetails, gj as InvoiceAdded, hz as InvoiceDates, hQ as InvoiceDynamicPriceTotals, ho as InvoiceFields, gk as InvoiceSent, hm as InvoiceSentEvent, au as InvoiceStatus, iW as InvoiceStatusWithLiterals, hO as InvoicesPayment, fv as ItemChangedDetails, bs as ItemCombination, bt as ItemCombinationLineItem, e8 as ItemMetadata, a_ as ItemModifier, aI as ItemTaxFullDetails, aG as ItemType, aH as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, i6 as ItemTypePresetWithLiterals, hI as ItemizedFee, J as JurisdictionType, i8 as JurisdictionTypeWithLiterals, hB as LineItem, bO as LineItemAmount, bF as LineItemChanges, fG as LineItemDelta, fH as LineItemDeltaDeltaOneOf, bJ as LineItemDescriptionLineChange, br as LineItemDiscount, bB as LineItemExchangeData, hF as LineItemMetaData, bK as LineItemModifiersChange, bH as LineItemPriceChange, bI as LineItemProductNameChange, bG as LineItemQuantityChange, R as LineItemQuantityChangeType, il as LineItemQuantityChangeTypeWithLiterals, dG as LineItemRefund, eP as LineItemRefundSummary, hD as LineItemTax, aK as LineItemTaxBreakdown, aJ as LineItemTaxInfo, gD as LineItemUpdate, hA as LineItems, hG as Locale, cv as Location, aU as LocationAndQuantity, bP as ManagedAdditionalFee, bM as ManagedDiscount, bL as ManagedLineItem, aa as ManuallyRefundableReason, iC as ManuallyRefundableReasonWithLiterals, gL as MarkAsFulfilledRequest, gM as MarkAsFulfilledResponse, gS as MarkAsUnfulfilledRequest, gT as MarkAsUnfulfilledResponse, iY as MarkOrderAsPaidApplicationErrors, e3 as MarkOrderAsPaidRequest, e4 as MarkOrderAsPaidResponse, gF as MarkOrderAsSeenByHumanRequest, gG as MarkOrderAsSeenByHumanResponse, g4 as MaskedOrderLineItem, ej as MembershipChargeItem, ek as MembershipName, eH as MembershipPaymentDetails, c0 as MembershipPaymentRefund, ai as MembershipPaymentStatus, iK as MembershipPaymentStatusWithLiterals, bx as MerchantComment, bn as MerchantDiscount, bo as MerchantDiscountMerchantDiscountReasonOneOf, cZ as MessageEnvelope, hP as MetaData, aY as ModifierGroup, bA as NewExchangeOrderCreated, a9 as NonRefundableReason, iB as NonRefundableReasonWithLiterals, a0 as OrderActionType, is as OrderActionTypeWithLiterals, Y as OrderActivityTypeEnumActivityType, io as OrderActivityTypeEnumActivityTypeWithLiterals, al as OrderApprovalStrategy, iN as OrderApprovalStrategyWithLiterals, cF as OrderApproved, gd as OrderCanceled, gI as OrderCanceledEventOrderCanceled, bD as OrderChange, bE as OrderChangeValueOneOf, fh as OrderCreateNotifications, bz as OrderCreatedFromExchange, fg as OrderCreationSettings, fD as OrderDeltasCommitted, gb as OrderFulfilled, cK as OrderImported, cI as OrderItemsRestocked, av as OrderLineItem, fu as OrderLineItemChangedDetails, gc as OrderNotFulfilled, ga as OrderPaid, gp as OrderPartiallyPaid, gq as OrderPending, g9 as OrderPlaced, by as OrderRefunded, gr as OrderRejected, cH as OrderRejectedEventOrderRejected, h$ as OrderSearchSpec, cw as OrderSettings, cx as OrderSettingsAllowedActionsOneOf, cy as OrderSettingsEditableByOneOf, L as OrderStatus, ii as OrderStatusWithLiterals, bj as OrderTaxBreakdown, bi as OrderTaxInfo, et as OrderTransactions, cG as OrdersExperiments, cA as OwnerApps, eu as Payment, c9 as PaymentCanceled, ca as PaymentCanceledPaymentDetailsOneOf, a7 as PaymentCollectabilityStatus, iz as PaymentCollectabilityStatusWithLiterals, cb as PaymentDeclined, cc as PaymentDeclinedPaymentDetailsOneOf, x as PaymentOptionType, i7 as PaymentOptionTypeWithLiterals, ev as PaymentPaymentDetailsOneOf, c4 as PaymentPending, c5 as PaymentPendingPaymentDetailsOneOf, ew as PaymentReceiptInfoOneOf, eo as PaymentRefund, c2 as PaymentRefundFailed, c1 as PaymentRefunded, E as PaymentStatus, h1 as PaymentStatusUpdated, ic as PaymentStatusWithLiterals, hN as Payments, ht as Phone, aF as PhysicalProperties, bd as PickupAddress, bc as PickupDetails, K as PickupMethod, ih as PickupMethodWithLiterals, go as PickupReadyEmailSent, ao as Placement, iQ as PlacementWithLiterals, aC as PlainTextValue, cE as PlatformFee, cD as PlatformFeeSummary, f4 as PlatformPaging, f7 as PlatformPagingMetadata, f1 as PlatformQuery, f2 as PlatformQueryPagingMethodOneOf, dY as PreparePaymentCollectionRequest, dQ as PreviewBuyerConfirmationEmailRequest, dR as PreviewBuyerConfirmationEmailResponse, dO as PreviewBuyerPaymentsReceivedEmailRequest, dP as PreviewBuyerPaymentsReceivedEmailResponse, dS as PreviewBuyerPickupConfirmationEmailRequest, dT as PreviewBuyerPickupConfirmationEmailResponse, dK as PreviewCancelEmailRequest, dL as PreviewCancelEmailResponse, dM as PreviewCancelRefundEmailRequest, dN as PreviewCancelRefundEmailResponse, dB as PreviewEmailByTypeRequest, dC as PreviewEmailByTypeResponse, a4 as PreviewEmailType, iw as PreviewEmailTypeWithLiterals, dD as PreviewRefundEmailRequest, dJ as PreviewRefundEmailResponse, dW as PreviewResendDownloadLinksEmailRequest, dX as PreviewResendDownloadLinksEmailResponse, dU as PreviewShippingConfirmationEmailRequest, dV as PreviewShippingConfirmationEmailResponse, aT as PriceDescription, b2 as PriceSummary, aw as ProductName, gu as PublicActivity, gv as PublicActivityContentOneOf, f9 as QueryOrderRequest, fa as QueryOrderResponse, hr as QuotesAddress, af as Reason, iH as ReasonWithLiterals, cd as ReceiptCreated, ce as ReceiptCreatedReceiptInfoOneOf, ch as ReceiptSent, ci as ReceiptSentReceiptInfoOneOf, iX as RecordManuallyCollectedPaymentApplicationErrors, e1 as RecordManuallyCollectedPaymentRequest, e2 as RecordManuallyCollectedPaymentResponse, dZ as RedirectUrls, eK as Refund, dE as RefundDetails, bX as RefundInitiated, dF as RefundItem, eO as RefundItemsBreakdown, ep as RefundSideEffects, aj as RefundStatus, eM as RefundStatusInfo, iL as RefundStatusWithLiterals, eL as RefundTransaction, ed as Refundability, ee as RefundabilityAdditionalRefundabilityInfoOneOf, a8 as RefundableStatus, iA as RefundableStatusWithLiterals, c3 as RefundedAsStoreCredit, bY as RefundedPayment, bZ as RefundedPaymentKindOneOf, c6 as RegularPayment, ex as RegularPaymentDetails, ey as RegularPaymentDetailsPaymentMethodDetailsOneOf, c7 as RegularPaymentPaymentMethodDetailsOneOf, b_ as RegularPaymentRefund, hl as Reschedule, eq as RestockInfo, er as RestockItem, ab as RestockType, iD as RestockTypeWithLiterals, cV as RestoreInfo, bT as SavedPaymentMethod, a5 as ScheduledAction, ix as ScheduledActionWithLiterals, fb as SearchOrdersRequest, dg as SendBuyerConfirmationEmailRequest, dh as SendBuyerConfirmationEmailResponse, di as SendBuyerPaymentsReceivedEmailRequest, dj as SendBuyerPaymentsReceivedEmailResponse, dk as SendBuyerPickupConfirmationEmailRequest, dl as SendBuyerPickupConfirmationEmailResponse, dp as SendBuyerShippingConfirmationEmailRequest, dq as SendBuyerShippingConfirmationEmailResponse, dv as SendCancelRefundEmailRequest, dw as SendCancelRefundEmailResponse, dt as SendMerchantOrderReceivedNotificationRequest, du as SendMerchantOrderReceivedNotificationResponse, dz as SendMerchantOrderReceivedPushRequest, dA as SendMerchantOrderReceivedPushResponse, dx as SendRefundEmailRequest, dy as SendRefundEmailResponse, el as ServiceProperties, hW as SetOrderNumberCounterOptions, cO as SetOrderNumberCounterRequest, cP as SetOrderNumberCounterResponse, gm as ShippingAddressEdited, gi as ShippingConfirmationEmailSent, bS as ShippingInformation, bR as ShippingInformationChange, bf as ShippingPrice, dI as ShippingRefund, bg as ShippingRegion, ak as SortOrder, iM as SortOrderWithLiterals, f3 as Sorting, hE as Source, aq as SourceType, iS as SourceTypeWithLiterals, hy as StandardDetails, b5 as StreetAddress, hx as Subdivision, ap as SubdivisionType, iR as SubdivisionTypeWithLiterals, aO as SubscriptionDescription, y as SubscriptionFrequency, i9 as SubscriptionFrequencyWithLiterals, aM as SubscriptionInfo, aP as SubscriptionSettings, aN as SubscriptionTitle, cu as TagList, ct as Tags, hf as Task, hh as TaskAction, hi as TaskActionActionOneOf, hg as TaskKey, bh as TaxSummary, aV as TaxableAddress, aW as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, ib as TaxableAddressTypeWithLiterals, hH as TotalPrice, bQ as TotalPriceChange, gh as TrackingLinkAdded, gf as TrackingNumberAdded, gg as TrackingNumberEdited, ac as TransactionStatus, iE as TransactionStatusWithLiterals, aZ as TranslatableString, bN as TranslatedValue, i_ as TriggerRefundApplicationErrors, h_ as TriggerRefundOptions, en as TriggerRefundRequest, es as TriggerRefundResponse, df as TriggerReindexOrderRequest, db as TriggerReindexRequest, dc as TriggerReindexResponse, fO as UnArchiveOrderRequest, fP as UnArchiveOrderResponse, i2 as UpdateActivityIdentifiers, gy as UpdateActivityRequest, gz as UpdateActivityResponse, f$ as UpdateBillingContactDetailsRequest, g0 as UpdateBillingContactDetailsResponse, fX as UpdateBuyerEmailRequest, fY as UpdateBuyerEmailResponse, fU as UpdateBuyerInfoRequest, fW as UpdateBuyerInfoResponse, d0 as UpdateInternalDocumentsEvent, d1 as UpdateInternalDocumentsEventOperationOneOf, gC as UpdateLineItemsDescriptionLinesRequest, gE as UpdateLineItemsDescriptionLinesResponse, i1 as UpdateOrderLineItem, i0 as UpdateOrderLineItemIdentifiers, g1 as UpdateOrderLineItemRequest, g2 as UpdateOrderLineItemResponse, g3 as UpdateOrderLineItemsRequest, g5 as UpdateOrderLineItemsResponse, fj as UpdateOrderRequest, fk as UpdateOrderResponse, fZ as UpdateOrderShippingAddressRequest, f_ as UpdateOrderShippingAddressResponse, i$ as UpdateOrderStatusApplicationErrors, gJ as UpdateOrderStatusRequest, gK as UpdateOrderStatusResponse, h2 as V1BulkMarkOrdersAsPaidRequest, h3 as V1BulkMarkOrdersAsPaidResponse, h4 as V1CreatePaymentGatewayOrderRequest, h5 as V1CreatePaymentGatewayOrderResponse, fs as V1LineItemDelta, ft as V1LineItemDeltaDeltaOneOf, g$ as V1MarkOrderAsPaidRequest, h0 as V1MarkOrderAsPaidResponse, cJ as V1RestockItem, eE as V1ScheduledAction, b9 as V1ShippingInformation, hS as Value, as as ValueType, iU as ValueTypeWithLiterals, b8 as VatId, H as VatType, ig as VatTypeWithLiterals, d9 as VersionedDeleteByIdsOperation, da as VersionedDocumentId, d8 as VersionedDocumentUpdateOperation, a3 as VersioningMode, iv as VersioningModeWithLiterals, eU as VoidAuthorizedPaymentsRequest, a2 as WebhookIdentityType, iu as WebhookIdentityTypeWithLiterals, W as WeightUnit, ie as WeightUnitWithLiterals, cf as WixReceipt, eI as WixReceiptInfo } from './ecom-v1-order-orders.universal-YceODZmo.js';
|
|
4
4
|
|
|
5
5
|
declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
|
|
6
6
|
interface PreparePaymentCollectionSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -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";
|