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