@wix/auto_sdk_ecom_orders 1.0.157 → 1.0.158
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-DU76CE0b.d.ts → ecom-v1-order-orders.universal-BOLQMhL7.d.ts} +173 -156
- 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 +174 -157
- package/build/cjs/meta.js +6 -6
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-DU76CE0b.d.mts → ecom-v1-order-orders.universal-BOLQMhL7.d.mts} +173 -156
- 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 +174 -157
- package/build/es/meta.mjs +6 -6
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-D_VKundM.d.ts → ecom-v1-order-orders.universal-CvNePsM_.d.ts} +173 -156
- 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 +174 -157
- 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-D_VKundM.d.mts → ecom-v1-order-orders.universal-CvNePsM_.d.mts} +173 -156
- 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 +174 -157
- package/build/internal/es/meta.mjs +6 -6
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3207,167 +3207,22 @@ declare enum WebhookIdentityType {
|
|
|
3207
3207
|
}
|
|
3208
3208
|
/** @enumType */
|
|
3209
3209
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3210
|
-
interface
|
|
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[];
|
|
3210
|
+
interface AccountDetails {
|
|
3330
3211
|
/**
|
|
3331
|
-
*
|
|
3332
|
-
* @
|
|
3333
|
-
* @maxLength 300
|
|
3212
|
+
* ID of the account.
|
|
3213
|
+
* @format GUID
|
|
3334
3214
|
*/
|
|
3335
|
-
|
|
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;
|
|
3215
|
+
accountId?: string | null;
|
|
3348
3216
|
/**
|
|
3349
|
-
*
|
|
3350
|
-
* @
|
|
3351
|
-
* @maxSize 100
|
|
3217
|
+
* ID of the parent account.
|
|
3218
|
+
* @format GUID
|
|
3352
3219
|
*/
|
|
3353
|
-
|
|
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;
|
|
3220
|
+
parentAccountId?: string | null;
|
|
3366
3221
|
/**
|
|
3367
|
-
*
|
|
3368
|
-
* @
|
|
3222
|
+
* ID of the site, if applicable.
|
|
3223
|
+
* @format GUID
|
|
3369
3224
|
*/
|
|
3370
|
-
|
|
3225
|
+
siteId?: string | null;
|
|
3371
3226
|
}
|
|
3372
3227
|
interface SendBuyerConfirmationEmailRequest {
|
|
3373
3228
|
/** @format GUID */
|
|
@@ -3661,6 +3516,8 @@ interface PreviewResendDownloadLinksEmailRequest {
|
|
|
3661
3516
|
interface PreviewResendDownloadLinksEmailResponse {
|
|
3662
3517
|
emailPreview?: string;
|
|
3663
3518
|
}
|
|
3519
|
+
interface Empty {
|
|
3520
|
+
}
|
|
3664
3521
|
interface PreparePaymentCollectionRequest {
|
|
3665
3522
|
/**
|
|
3666
3523
|
* Ecom order ID.
|
|
@@ -4725,6 +4582,166 @@ interface ChargeSavedPaymentMethodResponse {
|
|
|
4725
4582
|
/** Payment gateway's order ID (e.g Wix Payments) */
|
|
4726
4583
|
paymentGatewayOrderId?: string;
|
|
4727
4584
|
}
|
|
4585
|
+
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
4586
|
+
/** insert/update documents */
|
|
4587
|
+
update?: InternalDocumentUpdateOperation;
|
|
4588
|
+
/** delete by document ids */
|
|
4589
|
+
deleteByIds?: DeleteByIdsOperation;
|
|
4590
|
+
/** delete documents matching filter */
|
|
4591
|
+
deleteByFilter?: DeleteByFilterOperation;
|
|
4592
|
+
/** update internal documents matching filter */
|
|
4593
|
+
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
4594
|
+
/** update only existing documents */
|
|
4595
|
+
updateExisting?: InternalUpdateExistingOperation;
|
|
4596
|
+
/** insert/update documents with versioning */
|
|
4597
|
+
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
4598
|
+
/** delete by document ids with versioning */
|
|
4599
|
+
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
4600
|
+
/**
|
|
4601
|
+
* type of the documents
|
|
4602
|
+
* @minLength 2
|
|
4603
|
+
*/
|
|
4604
|
+
documentType?: string;
|
|
4605
|
+
/**
|
|
4606
|
+
* language of the documents (mandatory)
|
|
4607
|
+
* @minLength 2
|
|
4608
|
+
*/
|
|
4609
|
+
language?: string | null;
|
|
4610
|
+
/**
|
|
4611
|
+
* one or more search documents
|
|
4612
|
+
* @deprecated
|
|
4613
|
+
*/
|
|
4614
|
+
addDocuments?: InternalDocument[];
|
|
4615
|
+
/**
|
|
4616
|
+
* one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
|
|
4617
|
+
* @deprecated
|
|
4618
|
+
*/
|
|
4619
|
+
removeDocumentIds?: string[];
|
|
4620
|
+
/** id to pass to processing notification */
|
|
4621
|
+
correlationId?: string | null;
|
|
4622
|
+
/** when event was created / issued */
|
|
4623
|
+
issuedAt?: Date | null;
|
|
4624
|
+
}
|
|
4625
|
+
/** @oneof */
|
|
4626
|
+
interface UpdateInternalDocumentsEventOperationOneOf {
|
|
4627
|
+
/** insert/update documents */
|
|
4628
|
+
update?: InternalDocumentUpdateOperation;
|
|
4629
|
+
/** delete by document ids */
|
|
4630
|
+
deleteByIds?: DeleteByIdsOperation;
|
|
4631
|
+
/** delete documents matching filter */
|
|
4632
|
+
deleteByFilter?: DeleteByFilterOperation;
|
|
4633
|
+
/** update internal documents matching filter */
|
|
4634
|
+
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
4635
|
+
/** update only existing documents */
|
|
4636
|
+
updateExisting?: InternalUpdateExistingOperation;
|
|
4637
|
+
/** insert/update documents with versioning */
|
|
4638
|
+
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
4639
|
+
/** delete by document ids with versioning */
|
|
4640
|
+
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
4641
|
+
}
|
|
4642
|
+
interface InternalDocument {
|
|
4643
|
+
/** document with mandatory fields (id) and with fields specific to the type of the document */
|
|
4644
|
+
document?: Record<string, any> | null;
|
|
4645
|
+
}
|
|
4646
|
+
interface InternalDocumentUpdateOperation {
|
|
4647
|
+
/** documents to index or update */
|
|
4648
|
+
documents?: InternalDocument[];
|
|
4649
|
+
}
|
|
4650
|
+
interface DeleteByIdsOperation {
|
|
4651
|
+
/** ids of the documents to delete */
|
|
4652
|
+
documentIds?: string[];
|
|
4653
|
+
/**
|
|
4654
|
+
* tenant id for custom tenancy strategy
|
|
4655
|
+
* @minLength 2
|
|
4656
|
+
* @maxLength 300
|
|
4657
|
+
*/
|
|
4658
|
+
tenantId?: string | null;
|
|
4659
|
+
}
|
|
4660
|
+
interface DeleteByFilterOperation {
|
|
4661
|
+
/** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
|
|
4662
|
+
filter?: Record<string, any> | null;
|
|
4663
|
+
/**
|
|
4664
|
+
* tenant id for custom tenancy strategy
|
|
4665
|
+
* @minLength 2
|
|
4666
|
+
* @maxLength 300
|
|
4667
|
+
*/
|
|
4668
|
+
tenantId?: string | null;
|
|
4669
|
+
}
|
|
4670
|
+
interface InternalDocumentUpdateByFilterOperation {
|
|
4671
|
+
/** documents matching this filter will be updated */
|
|
4672
|
+
filter?: Record<string, any> | null;
|
|
4673
|
+
/** partial document to apply */
|
|
4674
|
+
document?: InternalDocument;
|
|
4675
|
+
/**
|
|
4676
|
+
* tenant id for custom tenancy strategy
|
|
4677
|
+
* @minLength 2
|
|
4678
|
+
* @maxLength 300
|
|
4679
|
+
*/
|
|
4680
|
+
tenantId?: string | null;
|
|
4681
|
+
}
|
|
4682
|
+
interface InternalUpdateExistingOperation {
|
|
4683
|
+
/** documents to update */
|
|
4684
|
+
documents?: InternalDocument[];
|
|
4685
|
+
}
|
|
4686
|
+
interface VersionedDocumentUpdateOperation {
|
|
4687
|
+
/** documents to create or overwrite */
|
|
4688
|
+
documents?: InternalDocument[];
|
|
4689
|
+
/** versioning mode to use instead of default */
|
|
4690
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
4691
|
+
}
|
|
4692
|
+
declare enum VersioningMode {
|
|
4693
|
+
/** use default versioning mode agreed with search team */
|
|
4694
|
+
DEFAULT = "DEFAULT",
|
|
4695
|
+
/** execute only if version is greater than existing */
|
|
4696
|
+
GREATER_THAN = "GREATER_THAN",
|
|
4697
|
+
/** execute only if version is greater or equal to existing */
|
|
4698
|
+
GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
|
|
4699
|
+
}
|
|
4700
|
+
/** @enumType */
|
|
4701
|
+
type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
|
|
4702
|
+
interface VersionedDeleteByIdsOperation {
|
|
4703
|
+
/** ids with version of the documents to delete */
|
|
4704
|
+
documentIds?: VersionedDocumentId[];
|
|
4705
|
+
/**
|
|
4706
|
+
* tenant id for custom tenancy strategy
|
|
4707
|
+
* @minLength 2
|
|
4708
|
+
* @maxLength 300
|
|
4709
|
+
*/
|
|
4710
|
+
tenantId?: string | null;
|
|
4711
|
+
}
|
|
4712
|
+
interface VersionedDocumentId {
|
|
4713
|
+
/** document id */
|
|
4714
|
+
documentId?: string;
|
|
4715
|
+
/** document version */
|
|
4716
|
+
version?: string;
|
|
4717
|
+
/** versioning mode to use instead of default */
|
|
4718
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
4719
|
+
}
|
|
4720
|
+
interface TriggerReindexRequest {
|
|
4721
|
+
/** @format GUID */
|
|
4722
|
+
metasiteId?: string;
|
|
4723
|
+
/**
|
|
4724
|
+
* @minLength 1
|
|
4725
|
+
* @maxLength 100
|
|
4726
|
+
* @maxSize 100
|
|
4727
|
+
*/
|
|
4728
|
+
orderIds?: string[];
|
|
4729
|
+
}
|
|
4730
|
+
interface TriggerReindexResponse {
|
|
4731
|
+
}
|
|
4732
|
+
interface BatchOfTriggerReindexOrderRequest {
|
|
4733
|
+
/** @maxSize 25 */
|
|
4734
|
+
requests?: TriggerReindexOrderRequest[];
|
|
4735
|
+
}
|
|
4736
|
+
interface TriggerReindexOrderRequest {
|
|
4737
|
+
/** @format GUID */
|
|
4738
|
+
metasiteId?: string;
|
|
4739
|
+
/**
|
|
4740
|
+
* @minLength 1
|
|
4741
|
+
* @maxLength 100
|
|
4742
|
+
*/
|
|
4743
|
+
orderId?: string;
|
|
4744
|
+
}
|
|
4728
4745
|
interface DiffmatokyPayload {
|
|
4729
4746
|
left?: string;
|
|
4730
4747
|
right?: string;
|
|
@@ -7831,4 +7848,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
7831
7848
|
unassignTags?: Tags;
|
|
7832
7849
|
}
|
|
7833
7850
|
|
|
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 };
|
|
7851
|
+
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 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 Refundability as d$, type AccountDetails as d0, type SendBuyerConfirmationEmailRequest as d1, type SendBuyerConfirmationEmailResponse as d2, type SendBuyerPaymentsReceivedEmailRequest as d3, type SendBuyerPaymentsReceivedEmailResponse as d4, type SendBuyerPickupConfirmationEmailRequest as d5, type SendBuyerPickupConfirmationEmailResponse as d6, type BulkSendBuyerPickupConfirmationEmailsRequest as d7, type BulkSendBuyerPickupConfirmationEmailsResponse as d8, type SendBuyerShippingConfirmationEmailRequest as d9, type PreviewBuyerPaymentsReceivedEmailResponse as dA, type PreviewBuyerConfirmationEmailRequest as dB, type PreviewBuyerConfirmationEmailResponse as dC, type PreviewBuyerPickupConfirmationEmailRequest as dD, type PreviewBuyerPickupConfirmationEmailResponse as dE, type PreviewShippingConfirmationEmailRequest as dF, type PreviewShippingConfirmationEmailResponse as dG, type PreviewResendDownloadLinksEmailRequest as dH, type PreviewResendDownloadLinksEmailResponse as dI, type Empty as dJ, type PreparePaymentCollectionRequest as dK, type RedirectUrls as dL, type DelayedCaptureSettings as dM, type Duration as dN, type GetPaymentCollectabilityStatusRequest as dO, type RecordManuallyCollectedPaymentRequest as dP, type RecordManuallyCollectedPaymentResponse as dQ, type MarkOrderAsPaidRequest as dR, type MarkOrderAsPaidResponse as dS, type BulkMarkOrdersAsPaidRequest as dT, type BulkMarkOrdersAsPaidResponse as dU, type BulkOrderResult as dV, type ItemMetadata as dW, type ApplicationError as dX, type BulkActionMetadata as dY, type GetRefundabilityStatusRequest as dZ, type GetRefundabilityStatusResponse as d_, type SendBuyerShippingConfirmationEmailResponse as da, type BulkSendBuyerShippingConfirmationEmailsRequest as db, type BulkSendBuyerShippingConfirmationEmailsResponse as dc, type SendMerchantOrderReceivedNotificationRequest as dd, type SendMerchantOrderReceivedNotificationResponse as de, type SendCancelRefundEmailRequest as df, type SendCancelRefundEmailResponse as dg, type SendRefundEmailRequest as dh, type SendRefundEmailResponse as di, type SendMerchantOrderReceivedPushRequest as dj, type SendMerchantOrderReceivedPushResponse as dk, type PreviewEmailByTypeRequest as dl, type PreviewEmailByTypeResponse as dm, type PreviewRefundEmailRequest as dn, type RefundDetails as dp, type RefundItem as dq, type LineItemRefund as dr, type AdditionalFeeRefund as ds, type ShippingRefund as dt, type PreviewRefundEmailResponse as du, type PreviewCancelEmailRequest as dv, type PreviewCancelEmailResponse as dw, type PreviewCancelRefundEmailRequest as dx, type PreviewCancelRefundEmailResponse as dy, type PreviewBuyerPaymentsReceivedEmailRequest as dz, type PaymentCapture as e, type GetOrderRequest as e$, type RefundabilityAdditionalRefundabilityInfoOneOf as e0, type CreatePaymentGatewayOrderRequest as e1, type ChargedBy as e2, type CreatePaymentGatewayOrderResponse as e3, type ChargeMembershipsRequest as e4, type MembershipChargeItem as e5, type MembershipName as e6, type ServiceProperties as e7, type ChargeMembershipsResponse as e8, type TriggerRefundRequest as e9, type RefundItemsBreakdown as eA, type LineItemRefundSummary as eB, type CalculateRefundRequest as eC, type CalculateRefundItemRequest as eD, type CalculateRefundResponse as eE, type CalculateRefundItemResponse as eF, type VoidAuthorizedPaymentsRequest as eG, type CaptureAuthorizedPaymentsRequest as eH, type ChargeSavedPaymentMethodRequest as eI, type ChargeSavedPaymentMethodResponse as eJ, type UpdateInternalDocumentsEvent as eK, type UpdateInternalDocumentsEventOperationOneOf as eL, type InternalDocument as eM, type InternalDocumentUpdateOperation as eN, type DeleteByIdsOperation as eO, type DeleteByFilterOperation as eP, type InternalDocumentUpdateByFilterOperation as eQ, type InternalUpdateExistingOperation as eR, type VersionedDocumentUpdateOperation as eS, type VersionedDeleteByIdsOperation as eT, type VersionedDocumentId as eU, type TriggerReindexRequest as eV, type TriggerReindexResponse as eW, type BatchOfTriggerReindexOrderRequest as eX, type TriggerReindexOrderRequest as eY, type DiffmatokyPayload as eZ, type ErrorInformation as e_, type PaymentRefund as ea, type RefundSideEffects as eb, type RestockInfo as ec, type RestockItem as ed, type TriggerRefundResponse as ee, type OrderTransactions as ef, type Payment as eg, type PaymentPaymentDetailsOneOf as eh, type PaymentReceiptInfoOneOf as ei, type RegularPaymentDetails as ej, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ek, type CreditCardPaymentMethodDetails as el, type AuthorizationDetails as em, type AuthorizationCapture as en, type AuthorizationActionFailureDetails as eo, type AuthorizationVoid as ep, type V1ScheduledAction as eq, type Chargeback as er, type GiftCardPaymentDetails as es, type MembershipPaymentDetails as et, type WixReceiptInfo as eu, type ExternalReceiptInfo as ev, type Refund as ew, type RefundTransaction as ex, type RefundStatusInfo as ey, type AggregatedRefundSummary as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type UpdateOrderShippingAddressResponse as f$, type GetOrderResponse as f0, type InternalQueryOrdersRequest as f1, type PlatformQuery as f2, type PlatformQueryPagingMethodOneOf as f3, type Sorting as f4, type PlatformPaging as f5, type CursorPaging as f6, type InternalQueryOrdersResponse as f7, type PlatformPagingMetadata as f8, type Cursors as f9, type AdditionalFeeDeltaDeltaOneOf as fA, type DraftOrderCommitSettings as fB, type InventoryUpdateDetails as fC, type CommitDeltasResponse as fD, type OrderDeltasCommitted as fE, type CommittedDiffs as fF, type CommittedDiffsShippingUpdateInfoOneOf as fG, type LineItemDelta as fH, type LineItemDeltaDeltaOneOf as fI, type ArchiveOrderRequest as fJ, type ArchiveOrderResponse as fK, type BulkArchiveOrdersRequest as fL, type BulkArchiveOrdersResponse as fM, type BulkArchiveOrdersByFilterRequest as fN, type BulkArchiveOrdersByFilterResponse as fO, type UnArchiveOrderRequest as fP, type UnArchiveOrderResponse as fQ, type BulkUnArchiveOrdersRequest as fR, type BulkUnArchiveOrdersResponse as fS, type BulkUnArchiveOrdersByFilterRequest as fT, type BulkUnArchiveOrdersByFilterResponse as fU, type UpdateBuyerInfoRequest as fV, type BuyerInfoUpdate as fW, type UpdateBuyerInfoResponse as fX, type UpdateBuyerEmailRequest as fY, type UpdateBuyerEmailResponse as fZ, type UpdateOrderShippingAddressRequest as f_, type QueryOrderRequest as fa, type QueryOrderResponse as fb, type SearchOrdersRequest as fc, type CursorSearch as fd, type CursorSearchPagingMethodOneOf as fe, type CursorPagingMetadata as ff, type CreateOrderRequest as fg, type OrderCreationSettings as fh, type OrderCreateNotifications as fi, type CreateOrderResponse as fj, type UpdateOrderRequest as fk, type UpdateOrderResponse as fl, type BulkUpdateOrdersRequest as fm, type CommitDeltasRequest as fn, type DraftOrderDiffs as fo, type DraftOrderDiffsShippingUpdateInfoOneOf as fp, type DraftOrderDiffsBuyerUpdateInfoOneOf as fq, type DraftOrderDiffsBillingUpdateInfoOneOf as fr, type DraftOrderDiffsRecipientUpdateInfoOneOf as fs, type V1LineItemDelta as ft, type V1LineItemDeltaDeltaOneOf as fu, type OrderLineItemChangedDetails as fv, type ItemChangedDetails as fw, type AppliedDiscountDelta as fx, type AppliedDiscountDeltaDeltaOneOf as fy, type AdditionalFeeDelta as fz, type GetOrderApplicationErrors as g, type BulkSetBusinessLocationResult as g$, type UpdateBillingContactDetailsRequest as g0, type UpdateBillingContactDetailsResponse as g1, type UpdateOrderLineItemRequest as g2, type UpdateOrderLineItemResponse as g3, type UpdateOrderLineItemsRequest as g4, type MaskedOrderLineItem as g5, type UpdateOrderLineItemsResponse as g6, type AddInternalActivityRequest as g7, type InternalActivity as g8, type InternalActivityContentOneOf as g9, type UpdateActivityResponse as gA, type DeleteActivityRequest as gB, type DeleteActivityResponse as gC, type UpdateLineItemsDescriptionLinesRequest as gD, type LineItemUpdate as gE, type UpdateLineItemsDescriptionLinesResponse as gF, type MarkOrderAsSeenByHumanRequest as gG, type MarkOrderAsSeenByHumanResponse as gH, type CancelOrderRequest as gI, type OrderCanceledEventOrderCanceled as gJ, type UpdateOrderStatusRequest as gK, type UpdateOrderStatusResponse as gL, type MarkAsFulfilledRequest as gM, type MarkAsFulfilledResponse as gN, type FulfillmentStatusUpdated as gO, type BulkMarkAsFulfilledRequest as gP, type BulkMarkAsFulfilledResponse as gQ, type BulkMarkAsFulfilledByFilterRequest as gR, type BulkMarkAsFulfilledByFilterResponse as gS, type MarkAsUnfulfilledRequest as gT, type MarkAsUnfulfilledResponse as gU, type BulkMarkAsUnfulfilledRequest as gV, type BulkMarkAsUnfulfilledResponse as gW, type BulkMarkAsUnfulfilledByFilterRequest as gX, type BulkMarkAsUnfulfilledByFilterResponse as gY, type BulkSetBusinessLocationRequest as gZ, type BulkSetBusinessLocationResponse as g_, type OrderPlaced as ga, type OrderPaid as gb, type OrderFulfilled as gc, type OrderNotFulfilled as gd, type OrderCanceled as ge, type DownloadLinkSent as gf, type TrackingNumberAdded as gg, type TrackingNumberEdited as gh, type TrackingLinkAdded as gi, type ShippingConfirmationEmailSent as gj, type InvoiceAdded as gk, type InvoiceSent as gl, type FulfillerEmailSent as gm, type ShippingAddressEdited as gn, type EmailEdited as go, type PickupReadyEmailSent as gp, type OrderPartiallyPaid as gq, type OrderPending as gr, type OrderRejected as gs, type AddInternalActivityResponse as gt, type AddActivityRequest as gu, type PublicActivity as gv, type PublicActivityContentOneOf as gw, type AddActivityResponse as gx, type AddActivitiesRequest as gy, type UpdateActivityRequest as gz, type OrderSearch as h, type TriggerRefundOptions as h$, type V1MarkOrderAsPaidRequest as h0, type V1MarkOrderAsPaidResponse as h1, type PaymentStatusUpdated as h2, type V1BulkMarkOrdersAsPaidRequest as h3, type V1BulkMarkOrdersAsPaidResponse as h4, type V1CreatePaymentGatewayOrderRequest as h5, type V1CreatePaymentGatewayOrderResponse as h6, type GetShipmentsRequest as h7, type GetShipmentsResponse as h8, type AggregateOrdersRequest as h9, type InvoiceDates as hA, type LineItems as hB, type LineItem as hC, type BigDecimalWrapper as hD, type LineItemTax as hE, type Source as hF, type LineItemMetaData as hG, type Locale as hH, type TotalPrice as hI, type ItemizedFee as hJ, type Discount as hK, type DiscountOneDiscountTypeOneOf as hL, type CalculatedTaxes as hM, type CalculatedTax as hN, type Payments as hO, type InvoicesPayment as hP, type MetaData as hQ, type InvoiceDynamicPriceTotals as hR, type CustomFieldValue as hS, type Value as hT, type Deposit as hU, type BaseEventMetadata as hV, type EventMetadata as hW, type SetOrderNumberCounterOptions as hX, type BulkDeleteImportedOrdersOptions as hY, type CreatePaymentGatewayOrderOptions as hZ, type ChargeMembershipsOptions as h_, type AggregateOrdersResponse as ha, type DecrementItemsQuantityRequest as hb, type DecrementData as hc, type DecrementItemsQuantityResponse as hd, type BulkUpdateOrderTagsRequest as he, type BulkUpdateOrderTagsResult as hf, type Task as hg, type TaskKey as hh, type TaskAction as hi, type TaskActionActionOneOf as hj, type Complete as hk, type Cancel as hl, type Reschedule as hm, type InvoiceSentEvent as hn, type IdAndVersion as ho, type InvoiceFields as hp, type Customer as hq, type Email as hr, type QuotesAddress as hs, type AddressDescription as ht, type Phone as hu, type Company as hv, type CommonAddress as hw, type CommonAddressStreetOneOf as hx, type Subdivision as hy, type StandardDetails as hz, type CreateOrderOptions as i, type TriggerRefundApplicationErrors as i$, type OrderSearchSpec as i0, type UpdateOrderLineItemIdentifiers as i1, type UpdateOrderLineItem as i2, type UpdateActivityIdentifiers as i3, type DeleteActivityIdentifiers as i4, type AggregateOrdersOptions as i5, type DescriptionLineTypeWithLiterals as i6, type ItemTypePresetWithLiterals as i7, type PaymentOptionTypeWithLiterals as i8, type JurisdictionTypeWithLiterals as i9, type RefundableStatusWithLiterals as iA, type NonRefundableReasonWithLiterals as iB, type ManuallyRefundableReasonWithLiterals as iC, type RestockTypeWithLiterals as iD, type TransactionStatusWithLiterals as iE, type AuthorizationCaptureStatusWithLiterals as iF, type AuthorizationVoidStatusWithLiterals as iG, type ReasonWithLiterals as iH, type ActionTypeWithLiterals as iI, type ChargebackStatusWithLiterals as iJ, type MembershipPaymentStatusWithLiterals as iK, type RefundStatusWithLiterals as iL, type VersioningModeWithLiterals as iM, type SortOrderWithLiterals as iN, type OrderApprovalStrategyWithLiterals as iO, type DeltaPaymentOptionTypeWithLiterals as iP, type InventoryActionWithLiterals as iQ, type PlacementWithLiterals as iR, type SubdivisionTypeWithLiterals as iS, type SourceTypeWithLiterals as iT, type CustomFieldGroupWithLiterals as iU, type ValueTypeWithLiterals as iV, type DepositTypeWithLiterals as iW, type InvoiceStatusWithLiterals as iX, type RecordManuallyCollectedPaymentApplicationErrors as iY, type MarkOrderAsPaidApplicationErrors as iZ, type CreatePaymentGatewayOrderApplicationErrors as i_, type SubscriptionFrequencyWithLiterals as ia, type AdjustmentTypeWithLiterals as ib, type TaxableAddressTypeWithLiterals as ic, type PaymentStatusWithLiterals as id, type FulfillmentStatusWithLiterals as ie, type WeightUnitWithLiterals as ig, type VatTypeWithLiterals as ih, type PickupMethodWithLiterals as ii, type OrderStatusWithLiterals as ij, type DiscountTypeWithLiterals as ik, type DiscountReasonWithLiterals as il, type LineItemQuantityChangeTypeWithLiterals as im, type ActivityTypeWithLiterals as io, type OrderActivityTypeEnumActivityTypeWithLiterals as ip, type AttributionSourceWithLiterals as iq, type ChannelTypeWithLiterals as ir, type AdditionalFeeSourceWithLiterals as is, type OrderActionTypeWithLiterals as it, type ChargeTypeWithLiterals as iu, type WebhookIdentityTypeWithLiterals as iv, type PreviewEmailTypeWithLiterals as iw, type ScheduledActionWithLiterals as ix, type DurationUnitWithLiterals as iy, type PaymentCollectabilityStatusWithLiterals as iz, type CreateOrderApplicationErrors as j, type UpdateOrderStatusApplicationErrors as j0, type CommonSearchWithEntityContext as j1, onOrderApproved as j2, onOrderUpdated as j3, onOrderCanceled as j4, onOrderCreated as j5, onOrderPaymentStatusUpdated as j6, preparePaymentCollection as j7, getPaymentCollectabilityStatus as j8, voidAuthorizedPayments as j9, captureAuthorizedPayments as ja, getOrder as jb, createOrder as jc, updateOrder as jd, bulkUpdateOrders as je, addActivities as jf, cancelOrder as jg, bulkUpdateOrderTags as jh, 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 { 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-DU76CE0b.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-BOLQMhL7.js';
|
|
3
|
+
export { d0 as AccountDetails, cY as ActionEvent, af as ActionType, iI as ActionTypeWithLiterals, bu as Activity, bv as ActivityContentOneOf, X as ActivityType, io as ActivityTypeWithLiterals, gy as AddActivitiesRequest, gu as AddActivityRequest, gx as AddActivityResponse, g7 as AddInternalActivityRequest, gt as AddInternalActivityResponse, cr as AdditionalFee, fz as AdditionalFeeDelta, fA as AdditionalFeeDeltaDeltaOneOf, ds as AdditionalFeeRefund, $ as AdditionalFeeSource, is as AdditionalFeeSourceWithLiterals, b4 as Address, ht as AddressDescription, b6 as AddressLocation, b3 as AddressWithContact, z as AdjustmentType, ib as AdjustmentTypeWithLiterals, i5 as AggregateOrdersOptions, h9 as AggregateOrdersRequest, ha as AggregateOrdersResponse, ez as AggregatedRefundSummary, dX as ApplicationError, bk as AppliedDiscount, fx as AppliedDiscountDelta, fy as AppliedDiscountDeltaDeltaOneOf, bl as AppliedDiscountDiscountSourceOneOf, fJ as ArchiveOrderRequest, fK as ArchiveOrderResponse, Z as AttributionSource, iq as AttributionSourceWithLiterals, eo as AuthorizationActionFailureDetails, en as AuthorizationCapture, ac as AuthorizationCaptureStatus, iF as AuthorizationCaptureStatusWithLiterals, em as AuthorizationDetails, ep as AuthorizationVoid, ad as AuthorizationVoidStatus, iG as AuthorizationVoidStatusWithLiterals, bV as AuthorizedPaymentCaptured, bU as AuthorizedPaymentCreated, bW as AuthorizedPaymentVoided, cq as Balance, cp as BalanceSummary, hV as BaseEventMetadata, eX as BatchOfTriggerReindexOrderRequest, hD as BigDecimalWrapper, aR as BillingAdjustment, aS as BillingAdjustmentPriceSummary, dY as BulkActionMetadata, fN as BulkArchiveOrdersByFilterRequest, fO as BulkArchiveOrdersByFilterResponse, fL as BulkArchiveOrdersRequest, fM as BulkArchiveOrdersResponse, hY as BulkDeleteImportedOrdersOptions, cQ as BulkDeleteImportedOrdersRequest, cR as BulkDeleteImportedOrdersResponse, gR as BulkMarkAsFulfilledByFilterRequest, gS as BulkMarkAsFulfilledByFilterResponse, gP as BulkMarkAsFulfilledRequest, gQ as BulkMarkAsFulfilledResponse, gX as BulkMarkAsUnfulfilledByFilterRequest, gY as BulkMarkAsUnfulfilledByFilterResponse, gV as BulkMarkAsUnfulfilledRequest, gW as BulkMarkAsUnfulfilledResponse, dT as BulkMarkOrdersAsPaidRequest, dU as BulkMarkOrdersAsPaidResponse, dV as BulkOrderResult, d7 as BulkSendBuyerPickupConfirmationEmailsRequest, d8 as BulkSendBuyerPickupConfirmationEmailsResponse, db as BulkSendBuyerShippingConfirmationEmailsRequest, dc as BulkSendBuyerShippingConfirmationEmailsResponse, gZ as BulkSetBusinessLocationRequest, g_ as BulkSetBusinessLocationResponse, g$ as BulkSetBusinessLocationResult, fT as BulkUnArchiveOrdersByFilterRequest, fU as BulkUnArchiveOrdersByFilterResponse, fR as BulkUnArchiveOrdersRequest, fS as BulkUnArchiveOrdersResponse, he as BulkUpdateOrderTagsRequest, hf as BulkUpdateOrderTagsResult, fm as BulkUpdateOrdersRequest, a$ as BuyerInfo, b0 as BuyerInfoIdOneOf, fW as BuyerInfoUpdate, eD as CalculateRefundItemRequest, eF as CalculateRefundItemResponse, eC as CalculateRefundRequest, eE as CalculateRefundResponse, hN as CalculatedTax, hM as CalculatedTaxes, hl as Cancel, gI as CancelOrderRequest, eH as CaptureAuthorizedPaymentsRequest, ax as CatalogReference, cn as ChannelInfo, _ as ChannelType, ir as ChannelTypeWithLiterals, h_ as ChargeMembershipsOptions, e4 as ChargeMembershipsRequest, e8 as ChargeMembershipsResponse, eI as ChargeSavedPaymentMethodRequest, eJ as ChargeSavedPaymentMethodResponse, a1 as ChargeType, iu as ChargeTypeWithLiterals, er as Chargeback, cj as ChargebackCreated, ck as ChargebackReversed, ag as ChargebackStatus, iJ as ChargebackStatusWithLiterals, e2 as ChargedBy, aD as Color, fn as CommitDeltasRequest, fD as CommitDeltasResponse, fF as CommittedDiffs, fG as CommittedDiffsShippingUpdateInfoOneOf, hw as CommonAddress, hx as CommonAddressStreetOneOf, j1 as CommonSearchWithEntityContext, hv as Company, hk as Complete, bm as Coupon, fg as CreateOrderRequest, fj as CreateOrderResponse, i_ as CreatePaymentGatewayOrderApplicationErrors, hZ as CreatePaymentGatewayOrderOptions, e1 as CreatePaymentGatewayOrderRequest, e3 as CreatePaymentGatewayOrderResponse, cl as CreatedBy, cm as CreatedByStringOneOf, c8 as CreditCardDetails, el as CreditCardPaymentMethodDetails, b1 as CurrencyConversionDetails, f6 as CursorPaging, ff as CursorPagingMetadata, fd as CursorSearch, fe as CursorSearchPagingMethodOneOf, f9 as Cursors, bw as CustomActivity, cz as CustomAllowedActions, co as CustomField, ar as CustomFieldGroup, iU as CustomFieldGroupWithLiterals, hS as CustomFieldValue, hq as Customer, hc as DecrementData, hb as DecrementItemsQuantityRequest, hd as DecrementItemsQuantityResponse, dM as DelayedCaptureSettings, i4 as DeleteActivityIdentifiers, gB as DeleteActivityRequest, gC as DeleteActivityResponse, eP as DeleteByFilterOperation, eO as DeleteByIdsOperation, ba as DeliveryLogistics, bb as DeliveryLogisticsAddressOneOf, be as DeliveryTimeSlot, am as DeltaPaymentOptionType, iP as DeltaPaymentOptionTypeWithLiterals, hU as Deposit, at as DepositType, iW as DepositTypeWithLiterals, ay as DescriptionLine, aA as DescriptionLineDescriptionLineValueOneOf, aB as DescriptionLineName, D as DescriptionLineType, i6 as DescriptionLineTypeWithLiterals, az as DescriptionLineValueOneOf, eZ as DiffmatokyPayload, aL as DigitalFile, hK as Discount, hL as DiscountOneDiscountTypeOneOf, Q as DiscountReason, il as DiscountReasonWithLiterals, bp as DiscountRule, bq as DiscountRuleName, N as DiscountType, ik as DiscountTypeWithLiterals, cS as DomainEvent, cT as DomainEventBodyOneOf, gf as DownloadLinkSent, bC as DraftOrderChangesApplied, fB as DraftOrderCommitSettings, fo as DraftOrderDiffs, fr as DraftOrderDiffsBillingUpdateInfoOneOf, fq as DraftOrderDiffsBuyerUpdateInfoOneOf, fs as DraftOrderDiffsRecipientUpdateInfoOneOf, fp as DraftOrderDiffsShippingUpdateInfoOneOf, dN as Duration, a5 as DurationUnit, iy as DurationUnitWithLiterals, hr as Email, go as EmailEdited, dJ as Empty, cU as EntityCreatedEvent, cX as EntityDeletedEvent, cW as EntityUpdatedEvent, e_ as ErrorInformation, hW as EventMetadata, aX as ExtendedFields, cg as ExternalReceipt, ev as ExternalReceiptInfo, aE as FocalPoint, cC as FormIdentifier, cB as FormInfo, aQ as FreeTrialPeriod, gm as FulfillerEmailSent, F as FulfillmentStatus, gO as FulfillmentStatusUpdated, ie as FulfillmentStatusWithLiterals, cs as FulfillmentStatusesAggregate, b7 as FullAddressContactDetails, e$ as GetOrderRequest, f0 as GetOrderResponse, dO as GetPaymentCollectabilityStatusRequest, dZ as GetRefundabilityStatusRequest, d_ as GetRefundabilityStatusResponse, h7 as GetShipmentsRequest, h8 as GetShipmentsResponse, es as GiftCardPaymentDetails, b$ as GiftCardPaymentRefund, ho as IdAndVersion, c_ as IdentificationData, c$ as IdentificationDataIdOneOf, cM as ImportOrderRequest, cN as ImportOrderResponse, cL as ImportedOrderDeleted, g8 as InternalActivity, g9 as InternalActivityContentOneOf, eM as InternalDocument, eQ as InternalDocumentUpdateByFilterOperation, eN as InternalDocumentUpdateOperation, f1 as InternalQueryOrdersRequest, f7 as InternalQueryOrdersResponse, eR as InternalUpdateExistingOperation, an as InventoryAction, iQ as InventoryActionWithLiterals, fC as InventoryUpdateDetails, gk as InvoiceAdded, hA as InvoiceDates, hR as InvoiceDynamicPriceTotals, hp as InvoiceFields, gl as InvoiceSent, hn as InvoiceSentEvent, au as InvoiceStatus, iX as InvoiceStatusWithLiterals, hP as InvoicesPayment, fw as ItemChangedDetails, bs as ItemCombination, bt as ItemCombinationLineItem, dW as ItemMetadata, a_ as ItemModifier, aI as ItemTaxFullDetails, aG as ItemType, aH as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, i7 as ItemTypePresetWithLiterals, hJ as ItemizedFee, J as JurisdictionType, i9 as JurisdictionTypeWithLiterals, hC as LineItem, bO as LineItemAmount, bF as LineItemChanges, fH as LineItemDelta, fI as LineItemDeltaDeltaOneOf, bJ as LineItemDescriptionLineChange, br as LineItemDiscount, bB as LineItemExchangeData, hG as LineItemMetaData, bK as LineItemModifiersChange, bH as LineItemPriceChange, bI as LineItemProductNameChange, bG as LineItemQuantityChange, R as LineItemQuantityChangeType, im as LineItemQuantityChangeTypeWithLiterals, dr as LineItemRefund, eB as LineItemRefundSummary, hE as LineItemTax, aK as LineItemTaxBreakdown, aJ as LineItemTaxInfo, gE as LineItemUpdate, hB as LineItems, hH as Locale, cv as Location, aU as LocationAndQuantity, bP as ManagedAdditionalFee, bM as ManagedDiscount, bL as ManagedLineItem, a9 as ManuallyRefundableReason, iC as ManuallyRefundableReasonWithLiterals, gM as MarkAsFulfilledRequest, gN as MarkAsFulfilledResponse, gT as MarkAsUnfulfilledRequest, gU as MarkAsUnfulfilledResponse, iZ as MarkOrderAsPaidApplicationErrors, dR as MarkOrderAsPaidRequest, dS as MarkOrderAsPaidResponse, gG as MarkOrderAsSeenByHumanRequest, gH as MarkOrderAsSeenByHumanResponse, g5 as MaskedOrderLineItem, e5 as MembershipChargeItem, e6 as MembershipName, et as MembershipPaymentDetails, c0 as MembershipPaymentRefund, ah as MembershipPaymentStatus, iK as MembershipPaymentStatusWithLiterals, bx as MerchantComment, bn as MerchantDiscount, bo as MerchantDiscountMerchantDiscountReasonOneOf, cZ as MessageEnvelope, hQ as MetaData, aY as ModifierGroup, bA as NewExchangeOrderCreated, a8 as NonRefundableReason, iB as NonRefundableReasonWithLiterals, a0 as OrderActionType, it as OrderActionTypeWithLiterals, Y as OrderActivityTypeEnumActivityType, ip as OrderActivityTypeEnumActivityTypeWithLiterals, al as OrderApprovalStrategy, iO as OrderApprovalStrategyWithLiterals, cF as OrderApproved, ge as OrderCanceled, gJ as OrderCanceledEventOrderCanceled, bD as OrderChange, bE as OrderChangeValueOneOf, fi as OrderCreateNotifications, bz as OrderCreatedFromExchange, fh as OrderCreationSettings, fE as OrderDeltasCommitted, gc as OrderFulfilled, cK as OrderImported, cI as OrderItemsRestocked, av as OrderLineItem, fv as OrderLineItemChangedDetails, gd as OrderNotFulfilled, gb as OrderPaid, gq as OrderPartiallyPaid, gr as OrderPending, ga as OrderPlaced, by as OrderRefunded, gs as OrderRejected, cH as OrderRejectedEventOrderRejected, i0 as OrderSearchSpec, cw as OrderSettings, cx as OrderSettingsAllowedActionsOneOf, cy as OrderSettingsEditableByOneOf, L as OrderStatus, ij as OrderStatusWithLiterals, bj as OrderTaxBreakdown, bi as OrderTaxInfo, ef as OrderTransactions, cG as OrdersExperiments, cA as OwnerApps, eg as Payment, c9 as PaymentCanceled, ca as PaymentCanceledPaymentDetailsOneOf, a6 as PaymentCollectabilityStatus, iz as PaymentCollectabilityStatusWithLiterals, cb as PaymentDeclined, cc as PaymentDeclinedPaymentDetailsOneOf, x as PaymentOptionType, i8 as PaymentOptionTypeWithLiterals, eh as PaymentPaymentDetailsOneOf, c4 as PaymentPending, c5 as PaymentPendingPaymentDetailsOneOf, ei as PaymentReceiptInfoOneOf, ea as PaymentRefund, c2 as PaymentRefundFailed, c1 as PaymentRefunded, E as PaymentStatus, h2 as PaymentStatusUpdated, id as PaymentStatusWithLiterals, hO as Payments, hu as Phone, aF as PhysicalProperties, bd as PickupAddress, bc as PickupDetails, K as PickupMethod, ii as PickupMethodWithLiterals, gp as PickupReadyEmailSent, ao as Placement, iR as PlacementWithLiterals, aC as PlainTextValue, cE as PlatformFee, cD as PlatformFeeSummary, f5 as PlatformPaging, f8 as PlatformPagingMetadata, f2 as PlatformQuery, f3 as PlatformQueryPagingMethodOneOf, dK as PreparePaymentCollectionRequest, dB as PreviewBuyerConfirmationEmailRequest, dC as PreviewBuyerConfirmationEmailResponse, dz as PreviewBuyerPaymentsReceivedEmailRequest, dA as PreviewBuyerPaymentsReceivedEmailResponse, dD as PreviewBuyerPickupConfirmationEmailRequest, dE as PreviewBuyerPickupConfirmationEmailResponse, dv as PreviewCancelEmailRequest, dw as PreviewCancelEmailResponse, dx as PreviewCancelRefundEmailRequest, dy as PreviewCancelRefundEmailResponse, dl as PreviewEmailByTypeRequest, dm as PreviewEmailByTypeResponse, a3 as PreviewEmailType, iw as PreviewEmailTypeWithLiterals, dn as PreviewRefundEmailRequest, du as PreviewRefundEmailResponse, dH as PreviewResendDownloadLinksEmailRequest, dI as PreviewResendDownloadLinksEmailResponse, dF as PreviewShippingConfirmationEmailRequest, dG as PreviewShippingConfirmationEmailResponse, aT as PriceDescription, b2 as PriceSummary, aw as ProductName, gv as PublicActivity, gw as PublicActivityContentOneOf, fa as QueryOrderRequest, fb as QueryOrderResponse, hs as QuotesAddress, ae as Reason, iH as ReasonWithLiterals, cd as ReceiptCreated, ce as ReceiptCreatedReceiptInfoOneOf, ch as ReceiptSent, ci as ReceiptSentReceiptInfoOneOf, iY as RecordManuallyCollectedPaymentApplicationErrors, dP as RecordManuallyCollectedPaymentRequest, dQ as RecordManuallyCollectedPaymentResponse, dL as RedirectUrls, ew as Refund, dp as RefundDetails, bX as RefundInitiated, dq as RefundItem, eA as RefundItemsBreakdown, eb as RefundSideEffects, ai as RefundStatus, ey as RefundStatusInfo, iL as RefundStatusWithLiterals, ex as RefundTransaction, d$ as Refundability, e0 as RefundabilityAdditionalRefundabilityInfoOneOf, a7 as RefundableStatus, iA as RefundableStatusWithLiterals, c3 as RefundedAsStoreCredit, bY as RefundedPayment, bZ as RefundedPaymentKindOneOf, c6 as RegularPayment, ej as RegularPaymentDetails, ek as RegularPaymentDetailsPaymentMethodDetailsOneOf, c7 as RegularPaymentPaymentMethodDetailsOneOf, b_ as RegularPaymentRefund, hm as Reschedule, ec as RestockInfo, ed as RestockItem, aa as RestockType, iD as RestockTypeWithLiterals, cV as RestoreInfo, bT as SavedPaymentMethod, a4 as ScheduledAction, ix as ScheduledActionWithLiterals, fc as SearchOrdersRequest, d1 as SendBuyerConfirmationEmailRequest, d2 as SendBuyerConfirmationEmailResponse, d3 as SendBuyerPaymentsReceivedEmailRequest, d4 as SendBuyerPaymentsReceivedEmailResponse, d5 as SendBuyerPickupConfirmationEmailRequest, d6 as SendBuyerPickupConfirmationEmailResponse, d9 as SendBuyerShippingConfirmationEmailRequest, da as SendBuyerShippingConfirmationEmailResponse, df as SendCancelRefundEmailRequest, dg as SendCancelRefundEmailResponse, dd as SendMerchantOrderReceivedNotificationRequest, de as SendMerchantOrderReceivedNotificationResponse, dj as SendMerchantOrderReceivedPushRequest, dk as SendMerchantOrderReceivedPushResponse, dh as SendRefundEmailRequest, di as SendRefundEmailResponse, e7 as ServiceProperties, hX as SetOrderNumberCounterOptions, cO as SetOrderNumberCounterRequest, cP as SetOrderNumberCounterResponse, gn as ShippingAddressEdited, gj as ShippingConfirmationEmailSent, bS as ShippingInformation, bR as ShippingInformationChange, bf as ShippingPrice, dt as ShippingRefund, bg as ShippingRegion, ak as SortOrder, iN as SortOrderWithLiterals, f4 as Sorting, hF as Source, aq as SourceType, iT as SourceTypeWithLiterals, hz as StandardDetails, b5 as StreetAddress, hy as Subdivision, ap as SubdivisionType, iS as SubdivisionTypeWithLiterals, aO as SubscriptionDescription, y as SubscriptionFrequency, ia as SubscriptionFrequencyWithLiterals, aM as SubscriptionInfo, aP as SubscriptionSettings, aN as SubscriptionTitle, cu as TagList, ct as Tags, hg as Task, hi as TaskAction, hj as TaskActionActionOneOf, hh as TaskKey, bh as TaxSummary, aV as TaxableAddress, aW as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, ic as TaxableAddressTypeWithLiterals, hI as TotalPrice, bQ as TotalPriceChange, gi as TrackingLinkAdded, gg as TrackingNumberAdded, gh as TrackingNumberEdited, ab as TransactionStatus, iE as TransactionStatusWithLiterals, aZ as TranslatableString, bN as TranslatedValue, i$ as TriggerRefundApplicationErrors, h$ as TriggerRefundOptions, e9 as TriggerRefundRequest, ee as TriggerRefundResponse, eY as TriggerReindexOrderRequest, eV as TriggerReindexRequest, eW as TriggerReindexResponse, fP as UnArchiveOrderRequest, fQ as UnArchiveOrderResponse, i3 as UpdateActivityIdentifiers, gz as UpdateActivityRequest, gA as UpdateActivityResponse, g0 as UpdateBillingContactDetailsRequest, g1 as UpdateBillingContactDetailsResponse, fY as UpdateBuyerEmailRequest, fZ as UpdateBuyerEmailResponse, fV as UpdateBuyerInfoRequest, fX as UpdateBuyerInfoResponse, eK as UpdateInternalDocumentsEvent, eL as UpdateInternalDocumentsEventOperationOneOf, gD as UpdateLineItemsDescriptionLinesRequest, gF as UpdateLineItemsDescriptionLinesResponse, i2 as UpdateOrderLineItem, i1 as UpdateOrderLineItemIdentifiers, g2 as UpdateOrderLineItemRequest, g3 as UpdateOrderLineItemResponse, g4 as UpdateOrderLineItemsRequest, g6 as UpdateOrderLineItemsResponse, fk as UpdateOrderRequest, fl as UpdateOrderResponse, f_ as UpdateOrderShippingAddressRequest, f$ as UpdateOrderShippingAddressResponse, j0 as UpdateOrderStatusApplicationErrors, gK as UpdateOrderStatusRequest, gL as UpdateOrderStatusResponse, h3 as V1BulkMarkOrdersAsPaidRequest, h4 as V1BulkMarkOrdersAsPaidResponse, h5 as V1CreatePaymentGatewayOrderRequest, h6 as V1CreatePaymentGatewayOrderResponse, ft as V1LineItemDelta, fu as V1LineItemDeltaDeltaOneOf, h0 as V1MarkOrderAsPaidRequest, h1 as V1MarkOrderAsPaidResponse, cJ as V1RestockItem, eq as V1ScheduledAction, b9 as V1ShippingInformation, hT as Value, as as ValueType, iV as ValueTypeWithLiterals, b8 as VatId, H as VatType, ih as VatTypeWithLiterals, eT as VersionedDeleteByIdsOperation, eU as VersionedDocumentId, eS as VersionedDocumentUpdateOperation, aj as VersioningMode, iM as VersioningModeWithLiterals, eG as VoidAuthorizedPaymentsRequest, a2 as WebhookIdentityType, iv as WebhookIdentityTypeWithLiterals, W as WeightUnit, ig as WeightUnitWithLiterals, cf as WixReceipt, eu as WixReceiptInfo } from './ecom-v1-order-orders.universal-BOLQMhL7.js';
|
|
4
4
|
|
|
5
5
|
declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
|
|
6
6
|
interface PreparePaymentCollectionSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -2050,12 +2050,6 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
|
2050
2050
|
WebhookIdentityType2["APP"] = "APP";
|
|
2051
2051
|
return WebhookIdentityType2;
|
|
2052
2052
|
})(WebhookIdentityType || {});
|
|
2053
|
-
var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
|
|
2054
|
-
VersioningMode2["DEFAULT"] = "DEFAULT";
|
|
2055
|
-
VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
|
|
2056
|
-
VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
|
|
2057
|
-
return VersioningMode2;
|
|
2058
|
-
})(VersioningMode || {});
|
|
2059
2053
|
var PreviewEmailType = /* @__PURE__ */ ((PreviewEmailType2) => {
|
|
2060
2054
|
PreviewEmailType2["ORDER_PLACED"] = "ORDER_PLACED";
|
|
2061
2055
|
PreviewEmailType2["DOWNLOAD_LINKS"] = "DOWNLOAD_LINKS";
|
|
@@ -2181,6 +2175,12 @@ var RefundStatus = /* @__PURE__ */ ((RefundStatus2) => {
|
|
|
2181
2175
|
RefundStatus2["STARTED"] = "STARTED";
|
|
2182
2176
|
return RefundStatus2;
|
|
2183
2177
|
})(RefundStatus || {});
|
|
2178
|
+
var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
|
|
2179
|
+
VersioningMode2["DEFAULT"] = "DEFAULT";
|
|
2180
|
+
VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
|
|
2181
|
+
VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
|
|
2182
|
+
return VersioningMode2;
|
|
2183
|
+
})(VersioningMode || {});
|
|
2184
2184
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
2185
2185
|
SortOrder2["ASC"] = "ASC";
|
|
2186
2186
|
SortOrder2["DESC"] = "DESC";
|