@wix/auto_sdk_ecom_orders 1.0.207 → 1.0.208
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-D3-Z-bHz.d.ts → ecom-v1-order-orders.universal-CvSMoLJ1.d.ts} +159 -159
- 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 +159 -159
- package/build/cjs/meta.js +6 -6
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-D3-Z-bHz.d.mts → ecom-v1-order-orders.universal-CvSMoLJ1.d.mts} +159 -159
- 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 +159 -159
- package/build/es/meta.mjs +6 -6
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-DmQnQVc2.d.ts → ecom-v1-order-orders.universal-C82IbNQo.d.ts} +159 -159
- 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 +159 -159
- 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-DmQnQVc2.d.mts → ecom-v1-order-orders.universal-C82IbNQo.d.mts} +159 -159
- 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 +159 -159
- package/build/internal/es/meta.mjs +6 -6
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3527,6 +3527,164 @@ interface AccountInfo {
|
|
|
3527
3527
|
*/
|
|
3528
3528
|
siteId?: string | null;
|
|
3529
3529
|
}
|
|
3530
|
+
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
3531
|
+
/** insert/update documents */
|
|
3532
|
+
update?: InternalDocumentUpdateOperation;
|
|
3533
|
+
/** delete by document ids */
|
|
3534
|
+
deleteByIds?: DeleteByIdsOperation;
|
|
3535
|
+
/** delete documents matching filter */
|
|
3536
|
+
deleteByFilter?: DeleteByFilterOperation;
|
|
3537
|
+
/** update internal documents matching filter */
|
|
3538
|
+
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
3539
|
+
/** update only existing documents */
|
|
3540
|
+
updateExisting?: InternalUpdateExistingOperation;
|
|
3541
|
+
/** insert/update documents with versioning */
|
|
3542
|
+
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
3543
|
+
/** delete by document ids with versioning */
|
|
3544
|
+
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
3545
|
+
/**
|
|
3546
|
+
* type of the documents
|
|
3547
|
+
* @minLength 2
|
|
3548
|
+
*/
|
|
3549
|
+
documentType?: string;
|
|
3550
|
+
/**
|
|
3551
|
+
* language of the documents (mandatory)
|
|
3552
|
+
* @minLength 2
|
|
3553
|
+
*/
|
|
3554
|
+
language?: string | null;
|
|
3555
|
+
/**
|
|
3556
|
+
* one or more search documents
|
|
3557
|
+
* @deprecated
|
|
3558
|
+
*/
|
|
3559
|
+
addDocuments?: InternalDocument[];
|
|
3560
|
+
/**
|
|
3561
|
+
* one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
|
|
3562
|
+
* @deprecated
|
|
3563
|
+
*/
|
|
3564
|
+
removeDocumentIds?: string[];
|
|
3565
|
+
/** id to pass to processing notification */
|
|
3566
|
+
correlationId?: string | null;
|
|
3567
|
+
/** when event was created / issued */
|
|
3568
|
+
issuedAt?: Date | null;
|
|
3569
|
+
}
|
|
3570
|
+
/** @oneof */
|
|
3571
|
+
interface UpdateInternalDocumentsEventOperationOneOf {
|
|
3572
|
+
/** insert/update documents */
|
|
3573
|
+
update?: InternalDocumentUpdateOperation;
|
|
3574
|
+
/** delete by document ids */
|
|
3575
|
+
deleteByIds?: DeleteByIdsOperation;
|
|
3576
|
+
/** delete documents matching filter */
|
|
3577
|
+
deleteByFilter?: DeleteByFilterOperation;
|
|
3578
|
+
/** update internal documents matching filter */
|
|
3579
|
+
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
3580
|
+
/** update only existing documents */
|
|
3581
|
+
updateExisting?: InternalUpdateExistingOperation;
|
|
3582
|
+
/** insert/update documents with versioning */
|
|
3583
|
+
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
3584
|
+
/** delete by document ids with versioning */
|
|
3585
|
+
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
3586
|
+
}
|
|
3587
|
+
interface InternalDocument {
|
|
3588
|
+
/** document with mandatory fields (id) and with fields specific to the type of the document */
|
|
3589
|
+
document?: Record<string, any> | null;
|
|
3590
|
+
}
|
|
3591
|
+
interface InternalDocumentUpdateOperation {
|
|
3592
|
+
/** documents to index or update */
|
|
3593
|
+
documents?: InternalDocument[];
|
|
3594
|
+
}
|
|
3595
|
+
interface DeleteByIdsOperation {
|
|
3596
|
+
/** ids of the documents to delete */
|
|
3597
|
+
documentIds?: string[];
|
|
3598
|
+
/**
|
|
3599
|
+
* tenant id for custom tenancy strategy
|
|
3600
|
+
* @minLength 2
|
|
3601
|
+
* @maxLength 300
|
|
3602
|
+
*/
|
|
3603
|
+
tenantId?: string | null;
|
|
3604
|
+
}
|
|
3605
|
+
interface DeleteByFilterOperation {
|
|
3606
|
+
/** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
|
|
3607
|
+
filter?: Record<string, any> | null;
|
|
3608
|
+
/**
|
|
3609
|
+
* tenant id for custom tenancy strategy
|
|
3610
|
+
* @minLength 2
|
|
3611
|
+
* @maxLength 300
|
|
3612
|
+
*/
|
|
3613
|
+
tenantId?: string | null;
|
|
3614
|
+
}
|
|
3615
|
+
interface InternalDocumentUpdateByFilterOperation {
|
|
3616
|
+
/** documents matching this filter will be updated */
|
|
3617
|
+
filter?: Record<string, any> | null;
|
|
3618
|
+
/** partial document to apply */
|
|
3619
|
+
document?: InternalDocument;
|
|
3620
|
+
/**
|
|
3621
|
+
* tenant id for custom tenancy strategy
|
|
3622
|
+
* @minLength 2
|
|
3623
|
+
* @maxLength 300
|
|
3624
|
+
*/
|
|
3625
|
+
tenantId?: string | null;
|
|
3626
|
+
}
|
|
3627
|
+
interface InternalUpdateExistingOperation {
|
|
3628
|
+
/** documents to update */
|
|
3629
|
+
documents?: InternalDocument[];
|
|
3630
|
+
}
|
|
3631
|
+
interface VersionedDocumentUpdateOperation {
|
|
3632
|
+
/** documents to create or overwrite */
|
|
3633
|
+
documents?: InternalDocument[];
|
|
3634
|
+
/** versioning mode to use instead of default */
|
|
3635
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
3636
|
+
}
|
|
3637
|
+
declare enum VersioningMode {
|
|
3638
|
+
/** use default versioning mode agreed with search team */
|
|
3639
|
+
DEFAULT = "DEFAULT",
|
|
3640
|
+
/** execute only if version is greater than existing */
|
|
3641
|
+
GREATER_THAN = "GREATER_THAN",
|
|
3642
|
+
/** execute only if version is greater or equal to existing */
|
|
3643
|
+
GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
|
|
3644
|
+
}
|
|
3645
|
+
/** @enumType */
|
|
3646
|
+
type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
|
|
3647
|
+
interface VersionedDeleteByIdsOperation {
|
|
3648
|
+
/** ids with version of the documents to delete */
|
|
3649
|
+
documentIds?: VersionedDocumentId[];
|
|
3650
|
+
/**
|
|
3651
|
+
* tenant id for custom tenancy strategy
|
|
3652
|
+
* @minLength 2
|
|
3653
|
+
* @maxLength 300
|
|
3654
|
+
*/
|
|
3655
|
+
tenantId?: string | null;
|
|
3656
|
+
}
|
|
3657
|
+
interface VersionedDocumentId {
|
|
3658
|
+
/** document id */
|
|
3659
|
+
documentId?: string;
|
|
3660
|
+
/** document version */
|
|
3661
|
+
version?: string;
|
|
3662
|
+
/** versioning mode to use instead of default */
|
|
3663
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
3664
|
+
}
|
|
3665
|
+
interface TriggerReindexRequest {
|
|
3666
|
+
/** @format GUID */
|
|
3667
|
+
metasiteId?: string;
|
|
3668
|
+
/**
|
|
3669
|
+
* @minLength 1
|
|
3670
|
+
* @maxLength 100
|
|
3671
|
+
* @maxSize 100
|
|
3672
|
+
*/
|
|
3673
|
+
orderIds?: string[];
|
|
3674
|
+
}
|
|
3675
|
+
interface TriggerReindexResponse {
|
|
3676
|
+
}
|
|
3677
|
+
interface Empty {
|
|
3678
|
+
}
|
|
3679
|
+
interface TriggerReindexOrderRequest {
|
|
3680
|
+
/** @format GUID */
|
|
3681
|
+
metasiteId?: string;
|
|
3682
|
+
/**
|
|
3683
|
+
* @minLength 1
|
|
3684
|
+
* @maxLength 100
|
|
3685
|
+
*/
|
|
3686
|
+
orderId?: string;
|
|
3687
|
+
}
|
|
3530
3688
|
interface SendBuyerConfirmationEmailRequest {
|
|
3531
3689
|
/** @format GUID */
|
|
3532
3690
|
orderId?: string;
|
|
@@ -3827,8 +3985,6 @@ interface PreviewResendDownloadLinksEmailRequest {
|
|
|
3827
3985
|
interface PreviewResendDownloadLinksEmailResponse {
|
|
3828
3986
|
emailPreview?: string;
|
|
3829
3987
|
}
|
|
3830
|
-
interface Empty {
|
|
3831
|
-
}
|
|
3832
3988
|
interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
|
|
3833
3989
|
/** Emitted on a meta site creation. */
|
|
3834
3990
|
siteCreated?: SiteCreated;
|
|
@@ -5514,162 +5670,6 @@ interface ChargeSavedPaymentMethodResponse {
|
|
|
5514
5670
|
/** Payment gateway's order ID (e.g Wix Payments) */
|
|
5515
5671
|
paymentGatewayOrderId?: string;
|
|
5516
5672
|
}
|
|
5517
|
-
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
5518
|
-
/** insert/update documents */
|
|
5519
|
-
update?: InternalDocumentUpdateOperation;
|
|
5520
|
-
/** delete by document ids */
|
|
5521
|
-
deleteByIds?: DeleteByIdsOperation;
|
|
5522
|
-
/** delete documents matching filter */
|
|
5523
|
-
deleteByFilter?: DeleteByFilterOperation;
|
|
5524
|
-
/** update internal documents matching filter */
|
|
5525
|
-
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
5526
|
-
/** update only existing documents */
|
|
5527
|
-
updateExisting?: InternalUpdateExistingOperation;
|
|
5528
|
-
/** insert/update documents with versioning */
|
|
5529
|
-
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
5530
|
-
/** delete by document ids with versioning */
|
|
5531
|
-
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
5532
|
-
/**
|
|
5533
|
-
* type of the documents
|
|
5534
|
-
* @minLength 2
|
|
5535
|
-
*/
|
|
5536
|
-
documentType?: string;
|
|
5537
|
-
/**
|
|
5538
|
-
* language of the documents (mandatory)
|
|
5539
|
-
* @minLength 2
|
|
5540
|
-
*/
|
|
5541
|
-
language?: string | null;
|
|
5542
|
-
/**
|
|
5543
|
-
* one or more search documents
|
|
5544
|
-
* @deprecated
|
|
5545
|
-
*/
|
|
5546
|
-
addDocuments?: InternalDocument[];
|
|
5547
|
-
/**
|
|
5548
|
-
* one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
|
|
5549
|
-
* @deprecated
|
|
5550
|
-
*/
|
|
5551
|
-
removeDocumentIds?: string[];
|
|
5552
|
-
/** id to pass to processing notification */
|
|
5553
|
-
correlationId?: string | null;
|
|
5554
|
-
/** when event was created / issued */
|
|
5555
|
-
issuedAt?: Date | null;
|
|
5556
|
-
}
|
|
5557
|
-
/** @oneof */
|
|
5558
|
-
interface UpdateInternalDocumentsEventOperationOneOf {
|
|
5559
|
-
/** insert/update documents */
|
|
5560
|
-
update?: InternalDocumentUpdateOperation;
|
|
5561
|
-
/** delete by document ids */
|
|
5562
|
-
deleteByIds?: DeleteByIdsOperation;
|
|
5563
|
-
/** delete documents matching filter */
|
|
5564
|
-
deleteByFilter?: DeleteByFilterOperation;
|
|
5565
|
-
/** update internal documents matching filter */
|
|
5566
|
-
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
5567
|
-
/** update only existing documents */
|
|
5568
|
-
updateExisting?: InternalUpdateExistingOperation;
|
|
5569
|
-
/** insert/update documents with versioning */
|
|
5570
|
-
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
5571
|
-
/** delete by document ids with versioning */
|
|
5572
|
-
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
5573
|
-
}
|
|
5574
|
-
interface InternalDocument {
|
|
5575
|
-
/** document with mandatory fields (id) and with fields specific to the type of the document */
|
|
5576
|
-
document?: Record<string, any> | null;
|
|
5577
|
-
}
|
|
5578
|
-
interface InternalDocumentUpdateOperation {
|
|
5579
|
-
/** documents to index or update */
|
|
5580
|
-
documents?: InternalDocument[];
|
|
5581
|
-
}
|
|
5582
|
-
interface DeleteByIdsOperation {
|
|
5583
|
-
/** ids of the documents to delete */
|
|
5584
|
-
documentIds?: string[];
|
|
5585
|
-
/**
|
|
5586
|
-
* tenant id for custom tenancy strategy
|
|
5587
|
-
* @minLength 2
|
|
5588
|
-
* @maxLength 300
|
|
5589
|
-
*/
|
|
5590
|
-
tenantId?: string | null;
|
|
5591
|
-
}
|
|
5592
|
-
interface DeleteByFilterOperation {
|
|
5593
|
-
/** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
|
|
5594
|
-
filter?: Record<string, any> | null;
|
|
5595
|
-
/**
|
|
5596
|
-
* tenant id for custom tenancy strategy
|
|
5597
|
-
* @minLength 2
|
|
5598
|
-
* @maxLength 300
|
|
5599
|
-
*/
|
|
5600
|
-
tenantId?: string | null;
|
|
5601
|
-
}
|
|
5602
|
-
interface InternalDocumentUpdateByFilterOperation {
|
|
5603
|
-
/** documents matching this filter will be updated */
|
|
5604
|
-
filter?: Record<string, any> | null;
|
|
5605
|
-
/** partial document to apply */
|
|
5606
|
-
document?: InternalDocument;
|
|
5607
|
-
/**
|
|
5608
|
-
* tenant id for custom tenancy strategy
|
|
5609
|
-
* @minLength 2
|
|
5610
|
-
* @maxLength 300
|
|
5611
|
-
*/
|
|
5612
|
-
tenantId?: string | null;
|
|
5613
|
-
}
|
|
5614
|
-
interface InternalUpdateExistingOperation {
|
|
5615
|
-
/** documents to update */
|
|
5616
|
-
documents?: InternalDocument[];
|
|
5617
|
-
}
|
|
5618
|
-
interface VersionedDocumentUpdateOperation {
|
|
5619
|
-
/** documents to create or overwrite */
|
|
5620
|
-
documents?: InternalDocument[];
|
|
5621
|
-
/** versioning mode to use instead of default */
|
|
5622
|
-
versioningMode?: VersioningModeWithLiterals;
|
|
5623
|
-
}
|
|
5624
|
-
declare enum VersioningMode {
|
|
5625
|
-
/** use default versioning mode agreed with search team */
|
|
5626
|
-
DEFAULT = "DEFAULT",
|
|
5627
|
-
/** execute only if version is greater than existing */
|
|
5628
|
-
GREATER_THAN = "GREATER_THAN",
|
|
5629
|
-
/** execute only if version is greater or equal to existing */
|
|
5630
|
-
GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
|
|
5631
|
-
}
|
|
5632
|
-
/** @enumType */
|
|
5633
|
-
type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
|
|
5634
|
-
interface VersionedDeleteByIdsOperation {
|
|
5635
|
-
/** ids with version of the documents to delete */
|
|
5636
|
-
documentIds?: VersionedDocumentId[];
|
|
5637
|
-
/**
|
|
5638
|
-
* tenant id for custom tenancy strategy
|
|
5639
|
-
* @minLength 2
|
|
5640
|
-
* @maxLength 300
|
|
5641
|
-
*/
|
|
5642
|
-
tenantId?: string | null;
|
|
5643
|
-
}
|
|
5644
|
-
interface VersionedDocumentId {
|
|
5645
|
-
/** document id */
|
|
5646
|
-
documentId?: string;
|
|
5647
|
-
/** document version */
|
|
5648
|
-
version?: string;
|
|
5649
|
-
/** versioning mode to use instead of default */
|
|
5650
|
-
versioningMode?: VersioningModeWithLiterals;
|
|
5651
|
-
}
|
|
5652
|
-
interface TriggerReindexRequest {
|
|
5653
|
-
/** @format GUID */
|
|
5654
|
-
metasiteId?: string;
|
|
5655
|
-
/**
|
|
5656
|
-
* @minLength 1
|
|
5657
|
-
* @maxLength 100
|
|
5658
|
-
* @maxSize 100
|
|
5659
|
-
*/
|
|
5660
|
-
orderIds?: string[];
|
|
5661
|
-
}
|
|
5662
|
-
interface TriggerReindexResponse {
|
|
5663
|
-
}
|
|
5664
|
-
interface TriggerReindexOrderRequest {
|
|
5665
|
-
/** @format GUID */
|
|
5666
|
-
metasiteId?: string;
|
|
5667
|
-
/**
|
|
5668
|
-
* @minLength 1
|
|
5669
|
-
* @maxLength 100
|
|
5670
|
-
*/
|
|
5671
|
-
orderId?: string;
|
|
5672
|
-
}
|
|
5673
5673
|
interface DiffmatokyPayload {
|
|
5674
5674
|
left?: string;
|
|
5675
5675
|
right?: string;
|
|
@@ -8630,4 +8630,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
8630
8630
|
unassignTags?: TagsTags;
|
|
8631
8631
|
}
|
|
8632
8632
|
|
|
8633
|
-
export { OrderActivityTypeEnumActivityType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentOptionType as E, SubscriptionFrequency as F, type GetPaymentCollectabilityStatusResponse as G, AdjustmentType as H, ItemTypePreset as I, JurisdictionType as J, PaymentStatus as K, FulfillmentStatus as L, type MaskedOrder as M, VatType as N, type Order as O, type Price as P, PickupMethod as Q, OrderStatus as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, DiscountType as X, DiscountReason as Y, LineItemQuantityChangeType as Z, ActivityType as _, type PreparePaymentCollectionOptions as a, type BillingAdjustmentPriceSummary as a$, AttributionSource as a0, ChannelType as a1, AdditionalFeeSource as a2, OrderActionType as a3, ChargeType as a4, DeltaPaymentOptionType as a5, InventoryAction as a6, WebhookIdentityType as a7, PreviewEmailType as a8, State as a9, ValueType as aA, DepositType as aB, InvoiceStatus as aC, type OrderLineItem as aD, type ProductName as aE, type CatalogReference as aF, type DescriptionLine as aG, type DescriptionLineValueOneOf as aH, type DescriptionLineDescriptionLineValueOneOf as aI, type DescriptionLineName as aJ, type PlainTextValue as aK, type Color as aL, type FocalPoint as aM, type PhysicalProperties as aN, type Dimensions as aO, type ItemType as aP, type ItemTypeItemTypeDataOneOf as aQ, type ItemTaxFullDetails as aR, type LineItemTaxInfo as aS, type LineItemTaxBreakdown as aT, type DigitalFile as aU, type SubscriptionInfo as aV, type SubscriptionTitle as aW, type SubscriptionDescription as aX, type SubscriptionSettings as aY, type FreeTrialPeriod as aZ, type BillingAdjustment as a_, SiteCreatedContext as aa, Namespace as ab, DeleteStatus as ac, ScheduledAction as ad, DurationUnit as ae, PaymentCollectabilityStatus as af, PredefinedPaymentMethod as ag, RefundableStatus as ah, NonRefundableReason as ai, ManuallyRefundableReason as aj, RestockType as ak, TransactionStatus as al, AuthorizationCaptureStatus as am, AuthorizationVoidStatus as an, Reason as ao, ActionType as ap, ChargebackStatus as aq, MembershipPaymentStatus as ar, RefundStatus as as, VersioningMode as at, SortOrder as au, OrderApprovalStrategy as av, Placement as aw, SubdivisionType as ax, SourceType as ay, CustomFieldGroup as az, type PreparePaymentCollectionResponse as b, type ShippingInformation as b$, type PriceDescription as b0, type LocationAndQuantity as b1, type TaxableAddress as b2, type TaxableAddressTaxableAddressDataOneOf as b3, type ExtendedFields as b4, type ModifierGroup as b5, type TranslatableString as b6, type ItemModifier as b7, type BuyerInfo as b8, type BuyerInfoIdOneOf as b9, type LineItemDiscount as bA, type ItemCombination as bB, type ItemCombinationLineItem as bC, type Activity as bD, type ActivityContentOneOf as bE, type CustomActivity as bF, type MerchantComment as bG, type OrderRefunded as bH, type OrderCreatedFromExchange as bI, type NewExchangeOrderCreated as bJ, type LineItemExchangeData as bK, type DraftOrderChangesApplied as bL, type OrderChange as bM, type OrderChangeValueOneOf as bN, type LineItemChanges as bO, type LineItemQuantityChange as bP, type LineItemPriceChange as bQ, type LineItemProductNameChange as bR, type LineItemDescriptionLineChange as bS, type LineItemModifiersChange as bT, type ManagedLineItem as bU, type ManagedDiscount as bV, type TranslatedValue as bW, type LineItemAmount as bX, type ManagedAdditionalFee as bY, type TotalPriceChange as bZ, type ShippingInformationChange as b_, type CurrencyConversionDetails as ba, type PriceSummary as bb, type AddressWithContact as bc, type Address as bd, type StreetAddress as be, type AddressLocation as bf, type FullAddressContactDetails as bg, type VatId as bh, type V1ShippingInformation as bi, type DeliveryLogistics as bj, type DeliveryLogisticsAddressOneOf as bk, type PickupDetails as bl, type PickupAddress as bm, type DeliveryTimeSlot as bn, type ShippingPrice as bo, type ShippingRegion as bp, type TaxSummary as bq, type OrderTaxInfo as br, type OrderTaxBreakdown as bs, type AppliedDiscount as bt, type AppliedDiscountDiscountSourceOneOf as bu, type Coupon as bv, type MerchantDiscount as bw, type MerchantDiscountMerchantDiscountReasonOneOf as bx, type DiscountRule as by, type DiscountRuleName as bz, type PreparePaymentCollectionApplicationErrors as c, type ItemChangedDetails as c$, type SavedPaymentMethod as c0, type AuthorizedPaymentCreated as c1, type AuthorizedPaymentCaptured as c2, type AuthorizedPaymentVoided as c3, type RefundInitiated as c4, type RefundedPayment as c5, type RefundedPaymentKindOneOf as c6, type RegularPaymentRefund as c7, type GiftCardPaymentRefund as c8, type MembershipPaymentRefund as c9, type AdditionalFee as cA, type FulfillmentStatusesAggregate as cB, type Tags as cC, type TagList as cD, type Location as cE, type OrderSettings as cF, type OrderSettingsAllowedActionsOneOf as cG, type OrderSettingsEditableByOneOf as cH, type CustomAllowedActions as cI, type OwnerApps as cJ, type FormInfo as cK, type FormIdentifier as cL, type PlatformFeeSummary as cM, type PlatformFee as cN, type OrderApproved as cO, type OrdersExperiments as cP, type OrderRejectedEventOrderRejected as cQ, type OrderItemsRestocked as cR, type V1RestockItem as cS, type OrderImported as cT, type ImportedOrderDeleted as cU, type PaymentStatusUpdated as cV, type FulfillmentStatusUpdated as cW, type OrderCanceledEventOrderCanceled as cX, type OrderDeltasCommitted as cY, type CommittedDiffs as cZ, type CommittedDiffsShippingUpdateInfoOneOf as c_, type PaymentRefunded as ca, type PaymentRefundFailed as cb, type RefundedAsStoreCredit as cc, type PaymentPending as cd, type PaymentPendingPaymentDetailsOneOf as ce, type RegularPayment as cf, type RegularPaymentPaymentMethodDetailsOneOf as cg, type CreditCardDetails as ch, type PaymentCanceled as ci, type PaymentCanceledPaymentDetailsOneOf as cj, type PaymentDeclined as ck, type PaymentDeclinedPaymentDetailsOneOf as cl, type ReceiptCreated as cm, type ReceiptCreatedReceiptInfoOneOf as cn, type WixReceipt as co, type ExternalReceipt as cp, type ReceiptSent as cq, type ReceiptSentReceiptInfoOneOf as cr, type ChargebackCreated as cs, type ChargebackReversed as ct, type CreatedBy as cu, type CreatedByStringOneOf as cv, type ChannelInfo as cw, type CustomField as cx, type BalanceSummary as cy, type Balance as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type PreviewBuyerPaymentsReceivedEmailResponse as d$, type OrderLineItemChangedDetails as d0, type LineItemDelta as d1, type LineItemDeltaDeltaOneOf as d2, type AppliedDiscountDelta as d3, type AppliedDiscountDeltaDeltaOneOf as d4, type AdditionalFeeDelta as d5, type AdditionalFeeDeltaDeltaOneOf as d6, type DraftOrderCommitSettings as d7, type InventoryUpdateDetails as d8, type ImportOrderRequest as d9, type SendBuyerShippingConfirmationEmailResponse as dA, type BulkSendBuyerShippingConfirmationEmailsRequest as dB, type BulkSendBuyerShippingConfirmationEmailsResponse as dC, type SendMerchantOrderReceivedNotificationRequest as dD, type SendMerchantOrderReceivedNotificationResponse as dE, type SendCancelRefundEmailRequest as dF, type SendCancelRefundEmailResponse as dG, type SendRefundEmailRequest as dH, type SendRefundEmailResponse as dI, type SendFulfillmentEmailRequest as dJ, type SendFulfillmentEmailResponse as dK, type SendMerchantOrderReceivedPushRequest as dL, type SendMerchantOrderReceivedPushResponse as dM, type PreviewEmailByTypeRequest as dN, type PreviewEmailByTypeResponse as dO, type PreviewRefundEmailRequest as dP, type RefundDetails as dQ, type RefundItem as dR, type LineItemRefund as dS, type AdditionalFeeRefund as dT, type ShippingRefund as dU, type PreviewRefundEmailResponse as dV, type PreviewCancelEmailRequest as dW, type PreviewCancelEmailResponse as dX, type PreviewCancelRefundEmailRequest as dY, type PreviewCancelRefundEmailResponse as dZ, type PreviewBuyerPaymentsReceivedEmailRequest as d_, type ImportOrderResponse as da, type SetOrderNumberCounterRequest as db, type SetOrderNumberCounterResponse as dc, type BulkDeleteImportedOrdersRequest as dd, type BulkDeleteImportedOrdersResponse as de, type DomainEvent as df, type DomainEventBodyOneOf as dg, type EntityCreatedEvent as dh, type RestoreInfo as di, type EntityUpdatedEvent as dj, type EntityDeletedEvent as dk, type ActionEvent as dl, type MessageEnvelope as dm, type IdentificationData as dn, type IdentificationDataIdOneOf as dp, type AccountInfo as dq, type SendBuyerConfirmationEmailRequest as dr, type SendBuyerConfirmationEmailResponse as ds, type SendBuyerPaymentsReceivedEmailRequest as dt, type SendBuyerPaymentsReceivedEmailResponse as du, type SendBuyerPickupConfirmationEmailRequest as dv, type SendBuyerPickupConfirmationEmailResponse as dw, type BulkSendBuyerPickupConfirmationEmailsRequest as dx, type BulkSendBuyerPickupConfirmationEmailsResponse as dy, type SendBuyerShippingConfirmationEmailRequest as dz, type PaymentCapture as e, type ApplicationError as e$, type PreviewBuyerConfirmationEmailRequest as e0, type PreviewBuyerConfirmationEmailResponse as e1, type PreviewBuyerPickupConfirmationEmailRequest as e2, type PreviewBuyerPickupConfirmationEmailResponse as e3, type PreviewShippingConfirmationEmailRequest as e4, type PreviewShippingConfirmationEmailResponse as e5, type PreviewResendDownloadLinksEmailRequest as e6, type PreviewResendDownloadLinksEmailResponse as e7, type Empty as e8, type MetaSiteSpecialEvent as e9, type StudioTwoAssigned as eA, type StudioTwoUnassigned as eB, type UserDomainMediaEnabled as eC, type UserDomainMediaDisabled as eD, type EditorlessAssigned as eE, type EditorlessUnassigned as eF, type HasCustomEmailConfigurationsRequest as eG, type HasCustomEmailConfigurationsResponse as eH, type AddToAutomationMigrationPopulationRequest as eI, type AddToAutomationMigrationPopulationResponse as eJ, type IsInAutomationMigrationPopulationRequest as eK, type IsInAutomationMigrationPopulationResponse as eL, type PreparePaymentCollectionRequest as eM, type RedirectUrls as eN, type DelayedCaptureSettings as eO, type Duration as eP, type GetPaymentCollectabilityStatusRequest as eQ, type RecordManuallyCollectedPaymentRequest as eR, type UserDefinedPaymentMethodName as eS, type UserDefinedPaymentMethodNameKindOneOf as eT, type RecordManuallyCollectedPaymentResponse as eU, type MarkOrderAsPaidRequest as eV, type MarkOrderAsPaidResponse as eW, type BulkMarkOrdersAsPaidRequest as eX, type BulkMarkOrdersAsPaidResponse as eY, type BulkOrderResult as eZ, type ItemMetadata as e_, type MetaSiteSpecialEventPayloadOneOf as ea, type Asset as eb, type SiteCreated as ec, type SiteTransferred as ed, type SiteDeleted as ee, type DeleteContext as ef, type SiteUndeleted as eg, type SitePublished as eh, type SiteUnpublished as ei, type SiteMarkedAsTemplate as ej, type SiteMarkedAsWixSite as ek, type ServiceProvisioned as el, type ServiceRemoved as em, type SiteRenamed as en, type SiteHardDeleted as eo, type NamespaceChanged as ep, type StudioAssigned as eq, type StudioUnassigned as er, type SiteUrlChanged as es, type SitePurgedExternally as et, type OdeditorAssigned as eu, type OdeditorUnassigned as ev, type PicassoAssigned as ew, type PicassoUnassigned as ex, type WixelAssigned as ey, type WixelUnassigned as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type TriggerReindexResponse as f$, type BulkActionMetadata as f0, type GetRefundabilityStatusRequest as f1, type GetRefundabilityStatusResponse as f2, type Refundability as f3, type RefundabilityAdditionalRefundabilityInfoOneOf as f4, type CreatePaymentGatewayOrderRequest as f5, type ChargedBy as f6, type CreatePaymentGatewayOrderResponse as f7, type ChargeMembershipsRequest as f8, type MembershipChargeItem as f9, type ExternalReceiptInfo as fA, type Refund as fB, type RefundTransaction as fC, type RefundStatusInfo as fD, type AggregatedRefundSummary as fE, type RefundItemsBreakdown as fF, type LineItemRefundSummary as fG, type CalculateRefundRequest as fH, type CalculateRefundItemRequest as fI, type CalculateRefundResponse as fJ, type CalculateRefundItemResponse as fK, type VoidAuthorizedPaymentsRequest as fL, type CaptureAuthorizedPaymentsRequest as fM, type ChargeSavedPaymentMethodRequest as fN, type ChargeSavedPaymentMethodResponse as fO, type UpdateInternalDocumentsEvent as fP, type UpdateInternalDocumentsEventOperationOneOf as fQ, type InternalDocument as fR, type InternalDocumentUpdateOperation as fS, type DeleteByIdsOperation as fT, type DeleteByFilterOperation as fU, type InternalDocumentUpdateByFilterOperation as fV, type InternalUpdateExistingOperation as fW, type VersionedDocumentUpdateOperation as fX, type VersionedDeleteByIdsOperation as fY, type VersionedDocumentId as fZ, type TriggerReindexRequest as f_, type MembershipName as fa, type ServiceProperties as fb, type ChargeMembershipsResponse as fc, type TriggerRefundRequest as fd, type PaymentRefund as fe, type RefundSideEffects as ff, type RestockInfo as fg, type RestockItem as fh, type TriggerRefundResponse as fi, type OrderTransactions as fj, type Payment as fk, type PaymentPaymentDetailsOneOf as fl, type PaymentReceiptInfoOneOf as fm, type RegularPaymentDetails as fn, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fo, type CreditCardPaymentMethodDetails as fp, type AuthorizationDetails as fq, type AuthorizationCapture as fr, type AuthorizationActionFailureDetails as fs, type AuthorizationVoid as ft, type V1ScheduledAction as fu, type Chargeback as fv, type PaymentMethodName as fw, type GiftCardPaymentDetails as fx, type MembershipPaymentDetails as fy, type WixReceiptInfo as fz, type GetOrderApplicationErrors as g, type AddInternalActivityRequest as g$, type TriggerReindexOrderRequest as g0, type DiffmatokyPayload as g1, type ErrorInformation as g2, type GetOrderRequest as g3, type GetOrderResponse as g4, type InternalQueryOrdersRequest as g5, type PlatformQuery as g6, type PlatformQueryPagingMethodOneOf as g7, type Sorting as g8, type PlatformPaging as g9, type CommitDeltasResponse as gA, type ArchiveOrderRequest as gB, type ArchiveOrderResponse as gC, type BulkArchiveOrdersRequest as gD, type BulkArchiveOrdersResponse as gE, type BulkArchiveOrdersByFilterRequest as gF, type BulkArchiveOrdersByFilterResponse as gG, type UnArchiveOrderRequest as gH, type UnArchiveOrderResponse as gI, type BulkUnArchiveOrdersRequest as gJ, type BulkUnArchiveOrdersResponse as gK, type BulkUnArchiveOrdersByFilterRequest as gL, type BulkUnArchiveOrdersByFilterResponse as gM, type UpdateBuyerInfoRequest as gN, type BuyerInfoUpdate as gO, type UpdateBuyerInfoResponse as gP, type UpdateBuyerEmailRequest as gQ, type UpdateBuyerEmailResponse as gR, type UpdateOrderShippingAddressRequest as gS, type UpdateOrderShippingAddressResponse as gT, type UpdateBillingContactDetailsRequest as gU, type UpdateBillingContactDetailsResponse as gV, type UpdateOrderLineItemRequest as gW, type UpdateOrderLineItemResponse as gX, type UpdateOrderLineItemsRequest as gY, type MaskedOrderLineItem as gZ, type UpdateOrderLineItemsResponse as g_, type CursorPaging as ga, type InternalQueryOrdersResponse as gb, type PlatformPagingMetadata as gc, type Cursors as gd, type QueryOrderRequest as ge, type QueryOrderResponse as gf, type SearchOrdersRequest as gg, type CursorSearch as gh, type CursorSearchPagingMethodOneOf as gi, type CursorPagingMetadata as gj, type CreateOrderRequest as gk, type OrderCreationSettings as gl, type OrderCreationSettingsEditableByOneOf as gm, type OrderCreateNotifications as gn, type CreateOrderResponse as go, type UpdateOrderRequest as gp, type UpdateOrderResponse as gq, type BulkUpdateOrdersRequest as gr, type CommitDeltasRequest as gs, type DraftOrderDiffs as gt, type DraftOrderDiffsShippingUpdateInfoOneOf as gu, type DraftOrderDiffsBuyerUpdateInfoOneOf as gv, type DraftOrderDiffsBillingUpdateInfoOneOf as gw, type DraftOrderDiffsRecipientUpdateInfoOneOf as gx, type V1LineItemDelta as gy, type V1LineItemDeltaDeltaOneOf as gz, type OrderSearch as h, type AggregateOrdersResponse as h$, type InternalActivity as h0, type InternalActivityContentOneOf as h1, type OrderPlaced as h2, type OrderPaid as h3, type OrderFulfilled as h4, type OrderNotFulfilled as h5, type OrderCanceled as h6, type DownloadLinkSent as h7, type TrackingNumberAdded as h8, type TrackingNumberEdited as h9, type CancelOrderRequest as hA, type UpdateOrderStatusRequest as hB, type UpdateOrderStatusResponse as hC, type MarkAsFulfilledRequest as hD, type MarkAsFulfilledResponse as hE, type BulkMarkAsFulfilledRequest as hF, type BulkMarkAsFulfilledResponse as hG, type BulkMarkAsFulfilledByFilterRequest as hH, type BulkMarkAsFulfilledByFilterResponse as hI, type MarkAsUnfulfilledRequest as hJ, type MarkAsUnfulfilledResponse as hK, type BulkMarkAsUnfulfilledRequest as hL, type BulkMarkAsUnfulfilledResponse as hM, type BulkMarkAsUnfulfilledByFilterRequest as hN, type BulkMarkAsUnfulfilledByFilterResponse as hO, type BulkSetBusinessLocationRequest as hP, type BulkSetBusinessLocationResponse as hQ, type BulkSetBusinessLocationResult as hR, type V1MarkOrderAsPaidRequest as hS, type V1MarkOrderAsPaidResponse as hT, type V1BulkMarkOrdersAsPaidRequest as hU, type V1BulkMarkOrdersAsPaidResponse as hV, type V1CreatePaymentGatewayOrderRequest as hW, type V1CreatePaymentGatewayOrderResponse as hX, type GetShipmentsRequest as hY, type GetShipmentsResponse as hZ, type AggregateOrdersRequest as h_, type TrackingLinkAdded as ha, type ShippingConfirmationEmailSent as hb, type InvoiceAdded as hc, type InvoiceSent as hd, type FulfillerEmailSent as he, type ShippingAddressEdited as hf, type EmailEdited as hg, type PickupReadyEmailSent as hh, type OrderPartiallyPaid as hi, type OrderPending as hj, type OrderRejected as hk, type AddInternalActivityResponse as hl, type AddActivityRequest as hm, type PublicActivity as hn, type PublicActivityContentOneOf as ho, type AddActivityResponse as hp, type AddActivitiesRequest as hq, type UpdateActivityRequest as hr, type UpdateActivityResponse as hs, type DeleteActivityRequest as ht, type DeleteActivityResponse as hu, type UpdateLineItemsDescriptionLinesRequest as hv, type LineItemUpdate as hw, type UpdateLineItemsDescriptionLinesResponse as hx, type MarkOrderAsSeenByHumanRequest as hy, type MarkOrderAsSeenByHumanResponse as hz, type CreateOrderOptions as i, type UpdateOrderLineItemIdentifiers as i$, type DecrementItemsQuantityRequest as i0, type DecrementData as i1, type DecrementItemsQuantityResponse as i2, type BulkUpdateOrderTagsRequest as i3, type TagsTags as i4, type TagsTagList as i5, type BulkUpdateOrderTagsResult as i6, type SendOrderUpdatedDomainEventRequest as i7, type SendOrderUpdatedDomainEventResponse as i8, type Task as i9, type Source as iA, type LineItemMetaData as iB, type Locale as iC, type TotalPrice as iD, type ItemizedFee as iE, type Discount as iF, type DiscountOneDiscountTypeOneOf as iG, type CalculatedTaxes as iH, type CalculatedTax as iI, type Payments as iJ, type InvoicesPayment as iK, type MetaData as iL, type InvoiceDynamicPriceTotals as iM, type CustomFieldValue as iN, type Value as iO, type Deposit as iP, type BaseEventMetadata as iQ, type EventMetadata as iR, type AccountInfoMetadata as iS, type SetOrderNumberCounterOptions as iT, type BulkDeleteImportedOrdersOptions as iU, type RecordManuallyCollectedPaymentOptions as iV, type PaymentCollectionMarkOrderAsPaidOptions as iW, type PaymentCollectionCreatePaymentGatewayOrderOptions as iX, type ChargeMembershipsOptions as iY, type TriggerRefundOptions as iZ, type OrderSearchSpec as i_, type TaskKey as ia, type TaskAction as ib, type TaskActionActionOneOf as ic, type Complete as id, type Cancel as ie, type Reschedule as ig, type InvoiceSentEvent as ih, type IdAndVersion as ii, type InvoiceFields as ij, type Customer as ik, type Email as il, type QuotesAddress as im, type AddressDescription as io, type Phone as ip, type Company as iq, type CommonAddress as ir, type CommonAddressStreetOneOf as is, type Subdivision as it, type StandardDetails as iu, type InvoiceDates as iv, type LineItems as iw, type LineItem as ix, type BigDecimalWrapper as iy, type LineItemTax as iz, type CreateOrderApplicationErrors as j, type PaymentCollectionMarkOrderAsPaidApplicationErrors as j$, type UpdateOrderLineItem as j0, type UpdateActivityIdentifiers as j1, type DeleteActivityIdentifiers as j2, type AggregateOrdersOptions as j3, type DescriptionLineTypeWithLiterals as j4, type DimensionsUnitWithLiterals as j5, type ItemTypePresetWithLiterals as j6, type PaymentOptionTypeWithLiterals as j7, type JurisdictionTypeWithLiterals as j8, type SubscriptionFrequencyWithLiterals as j9, type ScheduledActionWithLiterals as jA, type DurationUnitWithLiterals as jB, type PaymentCollectabilityStatusWithLiterals as jC, type PredefinedPaymentMethodWithLiterals as jD, type RefundableStatusWithLiterals as jE, type NonRefundableReasonWithLiterals as jF, type ManuallyRefundableReasonWithLiterals as jG, type RestockTypeWithLiterals as jH, type TransactionStatusWithLiterals as jI, type AuthorizationCaptureStatusWithLiterals as jJ, type AuthorizationVoidStatusWithLiterals as jK, type ReasonWithLiterals as jL, type ActionTypeWithLiterals as jM, type ChargebackStatusWithLiterals as jN, type MembershipPaymentStatusWithLiterals as jO, type RefundStatusWithLiterals as jP, type VersioningModeWithLiterals as jQ, type SortOrderWithLiterals as jR, type OrderApprovalStrategyWithLiterals as jS, type PlacementWithLiterals as jT, type SubdivisionTypeWithLiterals as jU, type SourceTypeWithLiterals as jV, type CustomFieldGroupWithLiterals as jW, type ValueTypeWithLiterals as jX, type DepositTypeWithLiterals as jY, type InvoiceStatusWithLiterals as jZ, type RecordManuallyCollectedPaymentApplicationErrors as j_, type AdjustmentTypeWithLiterals as ja, type TaxableAddressTypeWithLiterals as jb, type PaymentStatusWithLiterals as jc, type FulfillmentStatusWithLiterals as jd, type WeightUnitWithLiterals as je, type VatTypeWithLiterals as jf, type PickupMethodWithLiterals as jg, type OrderStatusWithLiterals as jh, type DiscountTypeWithLiterals as ji, type DiscountReasonWithLiterals as jj, type LineItemQuantityChangeTypeWithLiterals as jk, type ActivityTypeWithLiterals as jl, type OrderActivityTypeEnumActivityTypeWithLiterals as jm, type AttributionSourceWithLiterals as jn, type ChannelTypeWithLiterals as jo, type AdditionalFeeSourceWithLiterals as jp, type OrderActionTypeWithLiterals as jq, type ChargeTypeWithLiterals as jr, type DeltaPaymentOptionTypeWithLiterals as js, type InventoryActionWithLiterals as jt, type WebhookIdentityTypeWithLiterals as ju, type PreviewEmailTypeWithLiterals as jv, type StateWithLiterals as jw, type SiteCreatedContextWithLiterals as jx, type NamespaceWithLiterals as jy, type DeleteStatusWithLiterals as jz, type UpdateOrderApplicationErrors as k, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as k0, type TriggerRefundApplicationErrors as k1, type UpdateOrderStatusApplicationErrors as k2, type CommonSearchWithEntityContext as k3, onOrderApproved as k4, onOrderCanceled as k5, onOrderCommitted as k6, onOrderCreated as k7, onOrderFulfilled as k8, onOrderPaymentStatusUpdated as k9, onOrderUpdated as ka, preparePaymentCollection as kb, getPaymentCollectabilityStatus as kc, voidAuthorizedPayments as kd, captureAuthorizedPayments as ke, getOrder as kf, createOrder as kg, updateOrder as kh, bulkUpdateOrders as ki, addActivities as kj, cancelOrder as kk, bulkUpdateOrderTags as kl, 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 OrderCanceledEnvelope as t, type OrderCommittedEnvelope as u, type OrderCreatedEnvelope as v, type OrderFulfilledEnvelope as w, type OrderPaymentStatusUpdatedEnvelope as x, type OrderUpdatedEnvelope as y, DimensionsUnit as z };
|
|
8633
|
+
export { OrderActivityTypeEnumActivityType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentOptionType as E, SubscriptionFrequency as F, type GetPaymentCollectabilityStatusResponse as G, AdjustmentType as H, ItemTypePreset as I, JurisdictionType as J, PaymentStatus as K, FulfillmentStatus as L, type MaskedOrder as M, VatType as N, type Order as O, type Price as P, PickupMethod as Q, OrderStatus as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, DiscountType as X, DiscountReason as Y, LineItemQuantityChangeType as Z, ActivityType as _, type PreparePaymentCollectionOptions as a, type BillingAdjustmentPriceSummary as a$, AttributionSource as a0, ChannelType as a1, AdditionalFeeSource as a2, OrderActionType as a3, ChargeType as a4, DeltaPaymentOptionType as a5, InventoryAction as a6, WebhookIdentityType as a7, VersioningMode as a8, PreviewEmailType as a9, ValueType as aA, DepositType as aB, InvoiceStatus as aC, type OrderLineItem as aD, type ProductName as aE, type CatalogReference as aF, type DescriptionLine as aG, type DescriptionLineValueOneOf as aH, type DescriptionLineDescriptionLineValueOneOf as aI, type DescriptionLineName as aJ, type PlainTextValue as aK, type Color as aL, type FocalPoint as aM, type PhysicalProperties as aN, type Dimensions as aO, type ItemType as aP, type ItemTypeItemTypeDataOneOf as aQ, type ItemTaxFullDetails as aR, type LineItemTaxInfo as aS, type LineItemTaxBreakdown as aT, type DigitalFile as aU, type SubscriptionInfo as aV, type SubscriptionTitle as aW, type SubscriptionDescription as aX, type SubscriptionSettings as aY, type FreeTrialPeriod as aZ, type BillingAdjustment as a_, State as aa, SiteCreatedContext as ab, Namespace as ac, DeleteStatus as ad, ScheduledAction as ae, DurationUnit as af, PaymentCollectabilityStatus as ag, PredefinedPaymentMethod as ah, RefundableStatus as ai, NonRefundableReason as aj, ManuallyRefundableReason as ak, RestockType as al, TransactionStatus as am, AuthorizationCaptureStatus as an, AuthorizationVoidStatus as ao, Reason as ap, ActionType as aq, ChargebackStatus as ar, MembershipPaymentStatus as as, RefundStatus as at, SortOrder as au, OrderApprovalStrategy as av, Placement as aw, SubdivisionType as ax, SourceType as ay, CustomFieldGroup as az, type PreparePaymentCollectionResponse as b, type ShippingInformation as b$, type PriceDescription as b0, type LocationAndQuantity as b1, type TaxableAddress as b2, type TaxableAddressTaxableAddressDataOneOf as b3, type ExtendedFields as b4, type ModifierGroup as b5, type TranslatableString as b6, type ItemModifier as b7, type BuyerInfo as b8, type BuyerInfoIdOneOf as b9, type LineItemDiscount as bA, type ItemCombination as bB, type ItemCombinationLineItem as bC, type Activity as bD, type ActivityContentOneOf as bE, type CustomActivity as bF, type MerchantComment as bG, type OrderRefunded as bH, type OrderCreatedFromExchange as bI, type NewExchangeOrderCreated as bJ, type LineItemExchangeData as bK, type DraftOrderChangesApplied as bL, type OrderChange as bM, type OrderChangeValueOneOf as bN, type LineItemChanges as bO, type LineItemQuantityChange as bP, type LineItemPriceChange as bQ, type LineItemProductNameChange as bR, type LineItemDescriptionLineChange as bS, type LineItemModifiersChange as bT, type ManagedLineItem as bU, type ManagedDiscount as bV, type TranslatedValue as bW, type LineItemAmount as bX, type ManagedAdditionalFee as bY, type TotalPriceChange as bZ, type ShippingInformationChange as b_, type CurrencyConversionDetails as ba, type PriceSummary as bb, type AddressWithContact as bc, type Address as bd, type StreetAddress as be, type AddressLocation as bf, type FullAddressContactDetails as bg, type VatId as bh, type V1ShippingInformation as bi, type DeliveryLogistics as bj, type DeliveryLogisticsAddressOneOf as bk, type PickupDetails as bl, type PickupAddress as bm, type DeliveryTimeSlot as bn, type ShippingPrice as bo, type ShippingRegion as bp, type TaxSummary as bq, type OrderTaxInfo as br, type OrderTaxBreakdown as bs, type AppliedDiscount as bt, type AppliedDiscountDiscountSourceOneOf as bu, type Coupon as bv, type MerchantDiscount as bw, type MerchantDiscountMerchantDiscountReasonOneOf as bx, type DiscountRule as by, type DiscountRuleName as bz, type PreparePaymentCollectionApplicationErrors as c, type ItemChangedDetails as c$, type SavedPaymentMethod as c0, type AuthorizedPaymentCreated as c1, type AuthorizedPaymentCaptured as c2, type AuthorizedPaymentVoided as c3, type RefundInitiated as c4, type RefundedPayment as c5, type RefundedPaymentKindOneOf as c6, type RegularPaymentRefund as c7, type GiftCardPaymentRefund as c8, type MembershipPaymentRefund as c9, type AdditionalFee as cA, type FulfillmentStatusesAggregate as cB, type Tags as cC, type TagList as cD, type Location as cE, type OrderSettings as cF, type OrderSettingsAllowedActionsOneOf as cG, type OrderSettingsEditableByOneOf as cH, type CustomAllowedActions as cI, type OwnerApps as cJ, type FormInfo as cK, type FormIdentifier as cL, type PlatformFeeSummary as cM, type PlatformFee as cN, type OrderApproved as cO, type OrdersExperiments as cP, type OrderRejectedEventOrderRejected as cQ, type OrderItemsRestocked as cR, type V1RestockItem as cS, type OrderImported as cT, type ImportedOrderDeleted as cU, type PaymentStatusUpdated as cV, type FulfillmentStatusUpdated as cW, type OrderCanceledEventOrderCanceled as cX, type OrderDeltasCommitted as cY, type CommittedDiffs as cZ, type CommittedDiffsShippingUpdateInfoOneOf as c_, type PaymentRefunded as ca, type PaymentRefundFailed as cb, type RefundedAsStoreCredit as cc, type PaymentPending as cd, type PaymentPendingPaymentDetailsOneOf as ce, type RegularPayment as cf, type RegularPaymentPaymentMethodDetailsOneOf as cg, type CreditCardDetails as ch, type PaymentCanceled as ci, type PaymentCanceledPaymentDetailsOneOf as cj, type PaymentDeclined as ck, type PaymentDeclinedPaymentDetailsOneOf as cl, type ReceiptCreated as cm, type ReceiptCreatedReceiptInfoOneOf as cn, type WixReceipt as co, type ExternalReceipt as cp, type ReceiptSent as cq, type ReceiptSentReceiptInfoOneOf as cr, type ChargebackCreated as cs, type ChargebackReversed as ct, type CreatedBy as cu, type CreatedByStringOneOf as cv, type ChannelInfo as cw, type CustomField as cx, type BalanceSummary as cy, type Balance as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type SendMerchantOrderReceivedPushResponse as d$, type OrderLineItemChangedDetails as d0, type LineItemDelta as d1, type LineItemDeltaDeltaOneOf as d2, type AppliedDiscountDelta as d3, type AppliedDiscountDeltaDeltaOneOf as d4, type AdditionalFeeDelta as d5, type AdditionalFeeDeltaDeltaOneOf as d6, type DraftOrderCommitSettings as d7, type InventoryUpdateDetails as d8, type ImportOrderRequest as d9, type VersionedDeleteByIdsOperation as dA, type VersionedDocumentId as dB, type TriggerReindexRequest as dC, type TriggerReindexResponse as dD, type Empty as dE, type TriggerReindexOrderRequest as dF, type SendBuyerConfirmationEmailRequest as dG, type SendBuyerConfirmationEmailResponse as dH, type SendBuyerPaymentsReceivedEmailRequest as dI, type SendBuyerPaymentsReceivedEmailResponse as dJ, type SendBuyerPickupConfirmationEmailRequest as dK, type SendBuyerPickupConfirmationEmailResponse as dL, type BulkSendBuyerPickupConfirmationEmailsRequest as dM, type BulkSendBuyerPickupConfirmationEmailsResponse as dN, type SendBuyerShippingConfirmationEmailRequest as dO, type SendBuyerShippingConfirmationEmailResponse as dP, type BulkSendBuyerShippingConfirmationEmailsRequest as dQ, type BulkSendBuyerShippingConfirmationEmailsResponse as dR, type SendMerchantOrderReceivedNotificationRequest as dS, type SendMerchantOrderReceivedNotificationResponse as dT, type SendCancelRefundEmailRequest as dU, type SendCancelRefundEmailResponse as dV, type SendRefundEmailRequest as dW, type SendRefundEmailResponse as dX, type SendFulfillmentEmailRequest as dY, type SendFulfillmentEmailResponse as dZ, type SendMerchantOrderReceivedPushRequest as d_, type ImportOrderResponse as da, type SetOrderNumberCounterRequest as db, type SetOrderNumberCounterResponse as dc, type BulkDeleteImportedOrdersRequest as dd, type BulkDeleteImportedOrdersResponse as de, type DomainEvent as df, type DomainEventBodyOneOf as dg, type EntityCreatedEvent as dh, type RestoreInfo as di, type EntityUpdatedEvent as dj, type EntityDeletedEvent as dk, type ActionEvent as dl, type MessageEnvelope as dm, type IdentificationData as dn, type IdentificationDataIdOneOf as dp, type AccountInfo as dq, type UpdateInternalDocumentsEvent as dr, type UpdateInternalDocumentsEventOperationOneOf as ds, type InternalDocument as dt, type InternalDocumentUpdateOperation as du, type DeleteByIdsOperation as dv, type DeleteByFilterOperation as dw, type InternalDocumentUpdateByFilterOperation as dx, type InternalUpdateExistingOperation as dy, type VersionedDocumentUpdateOperation as dz, type PaymentCapture as e, type RedirectUrls as e$, type PreviewEmailByTypeRequest as e0, type PreviewEmailByTypeResponse as e1, type PreviewRefundEmailRequest as e2, type RefundDetails as e3, type RefundItem as e4, type LineItemRefund as e5, type AdditionalFeeRefund as e6, type ShippingRefund as e7, type PreviewRefundEmailResponse as e8, type PreviewCancelEmailRequest as e9, type ServiceRemoved as eA, type SiteRenamed as eB, type SiteHardDeleted as eC, type NamespaceChanged as eD, type StudioAssigned as eE, type StudioUnassigned as eF, type SiteUrlChanged as eG, type SitePurgedExternally as eH, type OdeditorAssigned as eI, type OdeditorUnassigned as eJ, type PicassoAssigned as eK, type PicassoUnassigned as eL, type WixelAssigned as eM, type WixelUnassigned as eN, type StudioTwoAssigned as eO, type StudioTwoUnassigned as eP, type UserDomainMediaEnabled as eQ, type UserDomainMediaDisabled as eR, type EditorlessAssigned as eS, type EditorlessUnassigned as eT, type HasCustomEmailConfigurationsRequest as eU, type HasCustomEmailConfigurationsResponse as eV, type AddToAutomationMigrationPopulationRequest as eW, type AddToAutomationMigrationPopulationResponse as eX, type IsInAutomationMigrationPopulationRequest as eY, type IsInAutomationMigrationPopulationResponse as eZ, type PreparePaymentCollectionRequest as e_, type PreviewCancelEmailResponse as ea, type PreviewCancelRefundEmailRequest as eb, type PreviewCancelRefundEmailResponse as ec, type PreviewBuyerPaymentsReceivedEmailRequest as ed, type PreviewBuyerPaymentsReceivedEmailResponse as ee, type PreviewBuyerConfirmationEmailRequest as ef, type PreviewBuyerConfirmationEmailResponse as eg, type PreviewBuyerPickupConfirmationEmailRequest as eh, type PreviewBuyerPickupConfirmationEmailResponse as ei, type PreviewShippingConfirmationEmailRequest as ej, type PreviewShippingConfirmationEmailResponse as ek, type PreviewResendDownloadLinksEmailRequest as el, type PreviewResendDownloadLinksEmailResponse as em, type MetaSiteSpecialEvent as en, type MetaSiteSpecialEventPayloadOneOf as eo, type Asset as ep, type SiteCreated as eq, type SiteTransferred as er, type SiteDeleted as es, type DeleteContext as et, type SiteUndeleted as eu, type SitePublished as ev, type SiteUnpublished as ew, type SiteMarkedAsTemplate as ex, type SiteMarkedAsWixSite as ey, type ServiceProvisioned as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type ChargeSavedPaymentMethodRequest as f$, type DelayedCaptureSettings as f0, type Duration as f1, type GetPaymentCollectabilityStatusRequest as f2, type RecordManuallyCollectedPaymentRequest as f3, type UserDefinedPaymentMethodName as f4, type UserDefinedPaymentMethodNameKindOneOf as f5, type RecordManuallyCollectedPaymentResponse as f6, type MarkOrderAsPaidRequest as f7, type MarkOrderAsPaidResponse as f8, type BulkMarkOrdersAsPaidRequest as f9, type PaymentReceiptInfoOneOf as fA, type RegularPaymentDetails as fB, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fC, type CreditCardPaymentMethodDetails as fD, type AuthorizationDetails as fE, type AuthorizationCapture as fF, type AuthorizationActionFailureDetails as fG, type AuthorizationVoid as fH, type V1ScheduledAction as fI, type Chargeback as fJ, type PaymentMethodName as fK, type GiftCardPaymentDetails as fL, type MembershipPaymentDetails as fM, type WixReceiptInfo as fN, type ExternalReceiptInfo as fO, type Refund as fP, type RefundTransaction as fQ, type RefundStatusInfo as fR, type AggregatedRefundSummary as fS, type RefundItemsBreakdown as fT, type LineItemRefundSummary as fU, type CalculateRefundRequest as fV, type CalculateRefundItemRequest as fW, type CalculateRefundResponse as fX, type CalculateRefundItemResponse as fY, type VoidAuthorizedPaymentsRequest as fZ, type CaptureAuthorizedPaymentsRequest as f_, type BulkMarkOrdersAsPaidResponse as fa, type BulkOrderResult as fb, type ItemMetadata as fc, type ApplicationError as fd, type BulkActionMetadata as fe, type GetRefundabilityStatusRequest as ff, type GetRefundabilityStatusResponse as fg, type Refundability as fh, type RefundabilityAdditionalRefundabilityInfoOneOf as fi, type CreatePaymentGatewayOrderRequest as fj, type ChargedBy as fk, type CreatePaymentGatewayOrderResponse as fl, type ChargeMembershipsRequest as fm, type MembershipChargeItem as fn, type MembershipName as fo, type ServiceProperties as fp, type ChargeMembershipsResponse as fq, type TriggerRefundRequest as fr, type PaymentRefund as fs, type RefundSideEffects as ft, type RestockInfo as fu, type RestockItem as fv, type TriggerRefundResponse as fw, type OrderTransactions as fx, type Payment as fy, type PaymentPaymentDetailsOneOf as fz, type GetOrderApplicationErrors as g, type AddInternalActivityRequest as g$, type ChargeSavedPaymentMethodResponse as g0, type DiffmatokyPayload as g1, type ErrorInformation as g2, type GetOrderRequest as g3, type GetOrderResponse as g4, type InternalQueryOrdersRequest as g5, type PlatformQuery as g6, type PlatformQueryPagingMethodOneOf as g7, type Sorting as g8, type PlatformPaging as g9, type CommitDeltasResponse as gA, type ArchiveOrderRequest as gB, type ArchiveOrderResponse as gC, type BulkArchiveOrdersRequest as gD, type BulkArchiveOrdersResponse as gE, type BulkArchiveOrdersByFilterRequest as gF, type BulkArchiveOrdersByFilterResponse as gG, type UnArchiveOrderRequest as gH, type UnArchiveOrderResponse as gI, type BulkUnArchiveOrdersRequest as gJ, type BulkUnArchiveOrdersResponse as gK, type BulkUnArchiveOrdersByFilterRequest as gL, type BulkUnArchiveOrdersByFilterResponse as gM, type UpdateBuyerInfoRequest as gN, type BuyerInfoUpdate as gO, type UpdateBuyerInfoResponse as gP, type UpdateBuyerEmailRequest as gQ, type UpdateBuyerEmailResponse as gR, type UpdateOrderShippingAddressRequest as gS, type UpdateOrderShippingAddressResponse as gT, type UpdateBillingContactDetailsRequest as gU, type UpdateBillingContactDetailsResponse as gV, type UpdateOrderLineItemRequest as gW, type UpdateOrderLineItemResponse as gX, type UpdateOrderLineItemsRequest as gY, type MaskedOrderLineItem as gZ, type UpdateOrderLineItemsResponse as g_, type CursorPaging as ga, type InternalQueryOrdersResponse as gb, type PlatformPagingMetadata as gc, type Cursors as gd, type QueryOrderRequest as ge, type QueryOrderResponse as gf, type SearchOrdersRequest as gg, type CursorSearch as gh, type CursorSearchPagingMethodOneOf as gi, type CursorPagingMetadata as gj, type CreateOrderRequest as gk, type OrderCreationSettings as gl, type OrderCreationSettingsEditableByOneOf as gm, type OrderCreateNotifications as gn, type CreateOrderResponse as go, type UpdateOrderRequest as gp, type UpdateOrderResponse as gq, type BulkUpdateOrdersRequest as gr, type CommitDeltasRequest as gs, type DraftOrderDiffs as gt, type DraftOrderDiffsShippingUpdateInfoOneOf as gu, type DraftOrderDiffsBuyerUpdateInfoOneOf as gv, type DraftOrderDiffsBillingUpdateInfoOneOf as gw, type DraftOrderDiffsRecipientUpdateInfoOneOf as gx, type V1LineItemDelta as gy, type V1LineItemDeltaDeltaOneOf as gz, type OrderSearch as h, type AggregateOrdersResponse as h$, type InternalActivity as h0, type InternalActivityContentOneOf as h1, type OrderPlaced as h2, type OrderPaid as h3, type OrderFulfilled as h4, type OrderNotFulfilled as h5, type OrderCanceled as h6, type DownloadLinkSent as h7, type TrackingNumberAdded as h8, type TrackingNumberEdited as h9, type CancelOrderRequest as hA, type UpdateOrderStatusRequest as hB, type UpdateOrderStatusResponse as hC, type MarkAsFulfilledRequest as hD, type MarkAsFulfilledResponse as hE, type BulkMarkAsFulfilledRequest as hF, type BulkMarkAsFulfilledResponse as hG, type BulkMarkAsFulfilledByFilterRequest as hH, type BulkMarkAsFulfilledByFilterResponse as hI, type MarkAsUnfulfilledRequest as hJ, type MarkAsUnfulfilledResponse as hK, type BulkMarkAsUnfulfilledRequest as hL, type BulkMarkAsUnfulfilledResponse as hM, type BulkMarkAsUnfulfilledByFilterRequest as hN, type BulkMarkAsUnfulfilledByFilterResponse as hO, type BulkSetBusinessLocationRequest as hP, type BulkSetBusinessLocationResponse as hQ, type BulkSetBusinessLocationResult as hR, type V1MarkOrderAsPaidRequest as hS, type V1MarkOrderAsPaidResponse as hT, type V1BulkMarkOrdersAsPaidRequest as hU, type V1BulkMarkOrdersAsPaidResponse as hV, type V1CreatePaymentGatewayOrderRequest as hW, type V1CreatePaymentGatewayOrderResponse as hX, type GetShipmentsRequest as hY, type GetShipmentsResponse as hZ, type AggregateOrdersRequest as h_, type TrackingLinkAdded as ha, type ShippingConfirmationEmailSent as hb, type InvoiceAdded as hc, type InvoiceSent as hd, type FulfillerEmailSent as he, type ShippingAddressEdited as hf, type EmailEdited as hg, type PickupReadyEmailSent as hh, type OrderPartiallyPaid as hi, type OrderPending as hj, type OrderRejected as hk, type AddInternalActivityResponse as hl, type AddActivityRequest as hm, type PublicActivity as hn, type PublicActivityContentOneOf as ho, type AddActivityResponse as hp, type AddActivitiesRequest as hq, type UpdateActivityRequest as hr, type UpdateActivityResponse as hs, type DeleteActivityRequest as ht, type DeleteActivityResponse as hu, type UpdateLineItemsDescriptionLinesRequest as hv, type LineItemUpdate as hw, type UpdateLineItemsDescriptionLinesResponse as hx, type MarkOrderAsSeenByHumanRequest as hy, type MarkOrderAsSeenByHumanResponse as hz, type CreateOrderOptions as i, type UpdateOrderLineItemIdentifiers as i$, type DecrementItemsQuantityRequest as i0, type DecrementData as i1, type DecrementItemsQuantityResponse as i2, type BulkUpdateOrderTagsRequest as i3, type TagsTags as i4, type TagsTagList as i5, type BulkUpdateOrderTagsResult as i6, type SendOrderUpdatedDomainEventRequest as i7, type SendOrderUpdatedDomainEventResponse as i8, type Task as i9, type Source as iA, type LineItemMetaData as iB, type Locale as iC, type TotalPrice as iD, type ItemizedFee as iE, type Discount as iF, type DiscountOneDiscountTypeOneOf as iG, type CalculatedTaxes as iH, type CalculatedTax as iI, type Payments as iJ, type InvoicesPayment as iK, type MetaData as iL, type InvoiceDynamicPriceTotals as iM, type CustomFieldValue as iN, type Value as iO, type Deposit as iP, type BaseEventMetadata as iQ, type EventMetadata as iR, type AccountInfoMetadata as iS, type SetOrderNumberCounterOptions as iT, type BulkDeleteImportedOrdersOptions as iU, type RecordManuallyCollectedPaymentOptions as iV, type PaymentCollectionMarkOrderAsPaidOptions as iW, type PaymentCollectionCreatePaymentGatewayOrderOptions as iX, type ChargeMembershipsOptions as iY, type TriggerRefundOptions as iZ, type OrderSearchSpec as i_, type TaskKey as ia, type TaskAction as ib, type TaskActionActionOneOf as ic, type Complete as id, type Cancel as ie, type Reschedule as ig, type InvoiceSentEvent as ih, type IdAndVersion as ii, type InvoiceFields as ij, type Customer as ik, type Email as il, type QuotesAddress as im, type AddressDescription as io, type Phone as ip, type Company as iq, type CommonAddress as ir, type CommonAddressStreetOneOf as is, type Subdivision as it, type StandardDetails as iu, type InvoiceDates as iv, type LineItems as iw, type LineItem as ix, type BigDecimalWrapper as iy, type LineItemTax as iz, type CreateOrderApplicationErrors as j, type PaymentCollectionMarkOrderAsPaidApplicationErrors as j$, type UpdateOrderLineItem as j0, type UpdateActivityIdentifiers as j1, type DeleteActivityIdentifiers as j2, type AggregateOrdersOptions as j3, type DescriptionLineTypeWithLiterals as j4, type DimensionsUnitWithLiterals as j5, type ItemTypePresetWithLiterals as j6, type PaymentOptionTypeWithLiterals as j7, type JurisdictionTypeWithLiterals as j8, type SubscriptionFrequencyWithLiterals as j9, type DeleteStatusWithLiterals as jA, type ScheduledActionWithLiterals as jB, type DurationUnitWithLiterals as jC, type PaymentCollectabilityStatusWithLiterals as jD, type PredefinedPaymentMethodWithLiterals as jE, type RefundableStatusWithLiterals as jF, type NonRefundableReasonWithLiterals as jG, type ManuallyRefundableReasonWithLiterals as jH, type RestockTypeWithLiterals as jI, type TransactionStatusWithLiterals as jJ, type AuthorizationCaptureStatusWithLiterals as jK, type AuthorizationVoidStatusWithLiterals as jL, type ReasonWithLiterals as jM, type ActionTypeWithLiterals as jN, type ChargebackStatusWithLiterals as jO, type MembershipPaymentStatusWithLiterals as jP, type RefundStatusWithLiterals as jQ, type SortOrderWithLiterals as jR, type OrderApprovalStrategyWithLiterals as jS, type PlacementWithLiterals as jT, type SubdivisionTypeWithLiterals as jU, type SourceTypeWithLiterals as jV, type CustomFieldGroupWithLiterals as jW, type ValueTypeWithLiterals as jX, type DepositTypeWithLiterals as jY, type InvoiceStatusWithLiterals as jZ, type RecordManuallyCollectedPaymentApplicationErrors as j_, type AdjustmentTypeWithLiterals as ja, type TaxableAddressTypeWithLiterals as jb, type PaymentStatusWithLiterals as jc, type FulfillmentStatusWithLiterals as jd, type WeightUnitWithLiterals as je, type VatTypeWithLiterals as jf, type PickupMethodWithLiterals as jg, type OrderStatusWithLiterals as jh, type DiscountTypeWithLiterals as ji, type DiscountReasonWithLiterals as jj, type LineItemQuantityChangeTypeWithLiterals as jk, type ActivityTypeWithLiterals as jl, type OrderActivityTypeEnumActivityTypeWithLiterals as jm, type AttributionSourceWithLiterals as jn, type ChannelTypeWithLiterals as jo, type AdditionalFeeSourceWithLiterals as jp, type OrderActionTypeWithLiterals as jq, type ChargeTypeWithLiterals as jr, type DeltaPaymentOptionTypeWithLiterals as js, type InventoryActionWithLiterals as jt, type WebhookIdentityTypeWithLiterals as ju, type VersioningModeWithLiterals as jv, type PreviewEmailTypeWithLiterals as jw, type StateWithLiterals as jx, type SiteCreatedContextWithLiterals as jy, type NamespaceWithLiterals as jz, type UpdateOrderApplicationErrors as k, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as k0, type TriggerRefundApplicationErrors as k1, type UpdateOrderStatusApplicationErrors as k2, type CommonSearchWithEntityContext as k3, onOrderApproved as k4, onOrderCanceled as k5, onOrderCommitted as k6, onOrderCreated as k7, onOrderFulfilled as k8, onOrderPaymentStatusUpdated as k9, onOrderUpdated as ka, preparePaymentCollection as kb, getPaymentCollectabilityStatus as kc, voidAuthorizedPayments as kd, captureAuthorizedPayments as ke, getOrder as kf, createOrder as kg, updateOrder as kh, bulkUpdateOrders as ki, addActivities as kj, cancelOrder as kk, bulkUpdateOrderTags as kl, 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 OrderCanceledEnvelope as t, type OrderCommittedEnvelope as u, type OrderCreatedEnvelope as v, type OrderFulfilledEnvelope as w, type OrderPaymentStatusUpdatedEnvelope as x, type OrderUpdatedEnvelope as y, DimensionsUnit 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 OrderCanceledEnvelope, u as OrderCommittedEnvelope, v as OrderCreatedEnvelope, w as OrderFulfilledEnvelope, x as OrderPaymentStatusUpdatedEnvelope, y as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { dq as AccountInfo, iS as AccountInfoMetadata, dl as ActionEvent, ap as ActionType, jM as ActionTypeWithLiterals, bD as Activity, bE as ActivityContentOneOf, _ as ActivityType, jl as ActivityTypeWithLiterals, hq as AddActivitiesRequest, hm as AddActivityRequest, hp as AddActivityResponse, g$ as AddInternalActivityRequest, hl as AddInternalActivityResponse, eI as AddToAutomationMigrationPopulationRequest, eJ as AddToAutomationMigrationPopulationResponse, cA as AdditionalFee, d5 as AdditionalFeeDelta, d6 as AdditionalFeeDeltaDeltaOneOf, dT as AdditionalFeeRefund, a2 as AdditionalFeeSource, jp as AdditionalFeeSourceWithLiterals, bd as Address, io as AddressDescription, bf as AddressLocation, bc as AddressWithContact, H as AdjustmentType, ja as AdjustmentTypeWithLiterals, j3 as AggregateOrdersOptions, h_ as AggregateOrdersRequest, h$ as AggregateOrdersResponse, fE as AggregatedRefundSummary, e$ as ApplicationError, bt as AppliedDiscount, d3 as AppliedDiscountDelta, d4 as AppliedDiscountDeltaDeltaOneOf, bu as AppliedDiscountDiscountSourceOneOf, gB as ArchiveOrderRequest, gC as ArchiveOrderResponse, eb as Asset, a0 as AttributionSource, jn as AttributionSourceWithLiterals, fs as AuthorizationActionFailureDetails, fr as AuthorizationCapture, am as AuthorizationCaptureStatus, jJ as AuthorizationCaptureStatusWithLiterals, fq as AuthorizationDetails, ft as AuthorizationVoid, an as AuthorizationVoidStatus, jK as AuthorizationVoidStatusWithLiterals, c2 as AuthorizedPaymentCaptured, c1 as AuthorizedPaymentCreated, c3 as AuthorizedPaymentVoided, cz as Balance, cy as BalanceSummary, iQ as BaseEventMetadata, iy as BigDecimalWrapper, a_ as BillingAdjustment, a$ as BillingAdjustmentPriceSummary, f0 as BulkActionMetadata, gF as BulkArchiveOrdersByFilterRequest, gG as BulkArchiveOrdersByFilterResponse, gD as BulkArchiveOrdersRequest, gE as BulkArchiveOrdersResponse, iU as BulkDeleteImportedOrdersOptions, dd as BulkDeleteImportedOrdersRequest, de as BulkDeleteImportedOrdersResponse, hH as BulkMarkAsFulfilledByFilterRequest, hI as BulkMarkAsFulfilledByFilterResponse, hF as BulkMarkAsFulfilledRequest, hG as BulkMarkAsFulfilledResponse, hN as BulkMarkAsUnfulfilledByFilterRequest, hO as BulkMarkAsUnfulfilledByFilterResponse, hL as BulkMarkAsUnfulfilledRequest, hM as BulkMarkAsUnfulfilledResponse, eX as BulkMarkOrdersAsPaidRequest, eY as BulkMarkOrdersAsPaidResponse, eZ as BulkOrderResult, dx as BulkSendBuyerPickupConfirmationEmailsRequest, dy as BulkSendBuyerPickupConfirmationEmailsResponse, dB as BulkSendBuyerShippingConfirmationEmailsRequest, dC as BulkSendBuyerShippingConfirmationEmailsResponse, hP as BulkSetBusinessLocationRequest, hQ as BulkSetBusinessLocationResponse, hR as BulkSetBusinessLocationResult, gL as BulkUnArchiveOrdersByFilterRequest, gM as BulkUnArchiveOrdersByFilterResponse, gJ as BulkUnArchiveOrdersRequest, gK as BulkUnArchiveOrdersResponse, i3 as BulkUpdateOrderTagsRequest, i6 as BulkUpdateOrderTagsResult, gr as BulkUpdateOrdersRequest, b8 as BuyerInfo, b9 as BuyerInfoIdOneOf, gO as BuyerInfoUpdate, fI as CalculateRefundItemRequest, fK as CalculateRefundItemResponse, fH as CalculateRefundRequest, fJ as CalculateRefundResponse, iI as CalculatedTax, iH as CalculatedTaxes, ie as Cancel, hA as CancelOrderRequest, fM as CaptureAuthorizedPaymentsRequest, aF as CatalogReference, cw as ChannelInfo, a1 as ChannelType, jo as ChannelTypeWithLiterals, iY as ChargeMembershipsOptions, f8 as ChargeMembershipsRequest, fc as ChargeMembershipsResponse, fN as ChargeSavedPaymentMethodRequest, fO as ChargeSavedPaymentMethodResponse, a4 as ChargeType, jr as ChargeTypeWithLiterals, fv as Chargeback, cs as ChargebackCreated, ct as ChargebackReversed, aq as ChargebackStatus, jN as ChargebackStatusWithLiterals, f6 as ChargedBy, aL as Color, gs as CommitDeltasRequest, gA as CommitDeltasResponse, cZ as CommittedDiffs, c_ as CommittedDiffsShippingUpdateInfoOneOf, ir as CommonAddress, is as CommonAddressStreetOneOf, k3 as CommonSearchWithEntityContext, iq as Company, id as Complete, bv as Coupon, gk as CreateOrderRequest, go as CreateOrderResponse, f5 as CreatePaymentGatewayOrderRequest, f7 as CreatePaymentGatewayOrderResponse, cu as CreatedBy, cv as CreatedByStringOneOf, ch as CreditCardDetails, fp as CreditCardPaymentMethodDetails, ba as CurrencyConversionDetails, ga as CursorPaging, gj as CursorPagingMetadata, gh as CursorSearch, gi as CursorSearchPagingMethodOneOf, gd as Cursors, bF as CustomActivity, cI as CustomAllowedActions, cx as CustomField, az as CustomFieldGroup, jW as CustomFieldGroupWithLiterals, iN as CustomFieldValue, ik as Customer, i1 as DecrementData, i0 as DecrementItemsQuantityRequest, i2 as DecrementItemsQuantityResponse, eO as DelayedCaptureSettings, j2 as DeleteActivityIdentifiers, ht as DeleteActivityRequest, hu as DeleteActivityResponse, fU as DeleteByFilterOperation, fT as DeleteByIdsOperation, ef as DeleteContext, ac as DeleteStatus, jz as DeleteStatusWithLiterals, bj as DeliveryLogistics, bk as DeliveryLogisticsAddressOneOf, bn as DeliveryTimeSlot, a5 as DeltaPaymentOptionType, js as DeltaPaymentOptionTypeWithLiterals, iP as Deposit, aB as DepositType, jY as DepositTypeWithLiterals, aG as DescriptionLine, aI as DescriptionLineDescriptionLineValueOneOf, aJ as DescriptionLineName, D as DescriptionLineType, j4 as DescriptionLineTypeWithLiterals, aH as DescriptionLineValueOneOf, g1 as DiffmatokyPayload, aU as DigitalFile, aO as Dimensions, z as DimensionsUnit, j5 as DimensionsUnitWithLiterals, iF as Discount, iG as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jj as DiscountReasonWithLiterals, by as DiscountRule, bz as DiscountRuleName, X as DiscountType, ji as DiscountTypeWithLiterals, df as DomainEvent, dg as DomainEventBodyOneOf, h7 as DownloadLinkSent, bL as DraftOrderChangesApplied, d7 as DraftOrderCommitSettings, gt as DraftOrderDiffs, gw as DraftOrderDiffsBillingUpdateInfoOneOf, gv as DraftOrderDiffsBuyerUpdateInfoOneOf, gx as DraftOrderDiffsRecipientUpdateInfoOneOf, gu as DraftOrderDiffsShippingUpdateInfoOneOf, eP as Duration, ae as DurationUnit, jB as DurationUnitWithLiterals, eE as EditorlessAssigned, eF as EditorlessUnassigned, il as Email, hg as EmailEdited, e8 as Empty, dh as EntityCreatedEvent, dk as EntityDeletedEvent, dj as EntityUpdatedEvent, g2 as ErrorInformation, iR as EventMetadata, b4 as ExtendedFields, cp as ExternalReceipt, fA as ExternalReceiptInfo, aM as FocalPoint, cL as FormIdentifier, cK as FormInfo, aZ as FreeTrialPeriod, he as FulfillerEmailSent, L as FulfillmentStatus, cW as FulfillmentStatusUpdated, jd as FulfillmentStatusWithLiterals, cB as FulfillmentStatusesAggregate, bg as FullAddressContactDetails, g3 as GetOrderRequest, g4 as GetOrderResponse, eQ as GetPaymentCollectabilityStatusRequest, f1 as GetRefundabilityStatusRequest, f2 as GetRefundabilityStatusResponse, hY as GetShipmentsRequest, hZ as GetShipmentsResponse, fx as GiftCardPaymentDetails, c8 as GiftCardPaymentRefund, eG as HasCustomEmailConfigurationsRequest, eH as HasCustomEmailConfigurationsResponse, ii as IdAndVersion, dn as IdentificationData, dp as IdentificationDataIdOneOf, d9 as ImportOrderRequest, da as ImportOrderResponse, cU as ImportedOrderDeleted, h0 as InternalActivity, h1 as InternalActivityContentOneOf, fR as InternalDocument, fV as InternalDocumentUpdateByFilterOperation, fS as InternalDocumentUpdateOperation, g5 as InternalQueryOrdersRequest, gb as InternalQueryOrdersResponse, fW as InternalUpdateExistingOperation, a6 as InventoryAction, jt as InventoryActionWithLiterals, d8 as InventoryUpdateDetails, hc as InvoiceAdded, iv as InvoiceDates, iM as InvoiceDynamicPriceTotals, ij as InvoiceFields, hd as InvoiceSent, ih as InvoiceSentEvent, aC as InvoiceStatus, jZ as InvoiceStatusWithLiterals, iK as InvoicesPayment, eK as IsInAutomationMigrationPopulationRequest, eL as IsInAutomationMigrationPopulationResponse, c$ as ItemChangedDetails, bB as ItemCombination, bC as ItemCombinationLineItem, e_ as ItemMetadata, b7 as ItemModifier, aR as ItemTaxFullDetails, aP as ItemType, aQ as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, j6 as ItemTypePresetWithLiterals, iE as ItemizedFee, J as JurisdictionType, j8 as JurisdictionTypeWithLiterals, ix as LineItem, bX as LineItemAmount, bO as LineItemChanges, d1 as LineItemDelta, d2 as LineItemDeltaDeltaOneOf, bS as LineItemDescriptionLineChange, bA as LineItemDiscount, bK as LineItemExchangeData, iB as LineItemMetaData, bT as LineItemModifiersChange, bQ as LineItemPriceChange, bR as LineItemProductNameChange, bP as LineItemQuantityChange, Z as LineItemQuantityChangeType, jk as LineItemQuantityChangeTypeWithLiterals, dS as LineItemRefund, fG as LineItemRefundSummary, iz as LineItemTax, aT as LineItemTaxBreakdown, aS as LineItemTaxInfo, hw as LineItemUpdate, iw as LineItems, iC as Locale, cE as Location, b1 as LocationAndQuantity, bY as ManagedAdditionalFee, bV as ManagedDiscount, bU as ManagedLineItem, aj as ManuallyRefundableReason, jG as ManuallyRefundableReasonWithLiterals, hD as MarkAsFulfilledRequest, hE as MarkAsFulfilledResponse, hJ as MarkAsUnfulfilledRequest, hK as MarkAsUnfulfilledResponse, eV as MarkOrderAsPaidRequest, eW as MarkOrderAsPaidResponse, hy as MarkOrderAsSeenByHumanRequest, hz as MarkOrderAsSeenByHumanResponse, gZ as MaskedOrderLineItem, f9 as MembershipChargeItem, fa as MembershipName, fy as MembershipPaymentDetails, c9 as MembershipPaymentRefund, ar as MembershipPaymentStatus, jO as MembershipPaymentStatusWithLiterals, bG as MerchantComment, bw as MerchantDiscount, bx as MerchantDiscountMerchantDiscountReasonOneOf, dm as MessageEnvelope, iL as MetaData, e9 as MetaSiteSpecialEvent, ea as MetaSiteSpecialEventPayloadOneOf, b5 as ModifierGroup, ab as Namespace, ep as NamespaceChanged, jy as NamespaceWithLiterals, bJ as NewExchangeOrderCreated, ai as NonRefundableReason, jF as NonRefundableReasonWithLiterals, eu as OdeditorAssigned, ev as OdeditorUnassigned, a3 as OrderActionType, jq as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, jm as OrderActivityTypeEnumActivityTypeWithLiterals, av as OrderApprovalStrategy, jS as OrderApprovalStrategyWithLiterals, cO as OrderApproved, h6 as OrderCanceled, cX as OrderCanceledEventOrderCanceled, bM as OrderChange, bN as OrderChangeValueOneOf, gn as OrderCreateNotifications, bI as OrderCreatedFromExchange, gl as OrderCreationSettings, gm as OrderCreationSettingsEditableByOneOf, cY as OrderDeltasCommitted, h4 as OrderFulfilled, cT as OrderImported, cR as OrderItemsRestocked, aD as OrderLineItem, d0 as OrderLineItemChangedDetails, h5 as OrderNotFulfilled, h3 as OrderPaid, hi as OrderPartiallyPaid, hj as OrderPending, h2 as OrderPlaced, bH as OrderRefunded, hk as OrderRejected, cQ as OrderRejectedEventOrderRejected, i_ as OrderSearchSpec, cF as OrderSettings, cG as OrderSettingsAllowedActionsOneOf, cH as OrderSettingsEditableByOneOf, R as OrderStatus, jh as OrderStatusWithLiterals, bs as OrderTaxBreakdown, br as OrderTaxInfo, fj as OrderTransactions, cP as OrdersExperiments, cJ as OwnerApps, fk as Payment, ci as PaymentCanceled, cj as PaymentCanceledPaymentDetailsOneOf, af as PaymentCollectabilityStatus, jC as PaymentCollectabilityStatusWithLiterals, k0 as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, iX as PaymentCollectionCreatePaymentGatewayOrderOptions, j$ as PaymentCollectionMarkOrderAsPaidApplicationErrors, iW as PaymentCollectionMarkOrderAsPaidOptions, ck as PaymentDeclined, cl as PaymentDeclinedPaymentDetailsOneOf, fw as PaymentMethodName, E as PaymentOptionType, j7 as PaymentOptionTypeWithLiterals, fl as PaymentPaymentDetailsOneOf, cd as PaymentPending, ce as PaymentPendingPaymentDetailsOneOf, fm as PaymentReceiptInfoOneOf, fe as PaymentRefund, cb as PaymentRefundFailed, ca as PaymentRefunded, K as PaymentStatus, cV as PaymentStatusUpdated, jc as PaymentStatusWithLiterals, iJ as Payments, ip as Phone, aN as PhysicalProperties, ew as PicassoAssigned, ex as PicassoUnassigned, bm as PickupAddress, bl as PickupDetails, Q as PickupMethod, jg as PickupMethodWithLiterals, hh as PickupReadyEmailSent, aw as Placement, jT as PlacementWithLiterals, aK as PlainTextValue, cN as PlatformFee, cM as PlatformFeeSummary, g9 as PlatformPaging, gc as PlatformPagingMetadata, g6 as PlatformQuery, g7 as PlatformQueryPagingMethodOneOf, ag as PredefinedPaymentMethod, jD as PredefinedPaymentMethodWithLiterals, eM as PreparePaymentCollectionRequest, e0 as PreviewBuyerConfirmationEmailRequest, e1 as PreviewBuyerConfirmationEmailResponse, d_ as PreviewBuyerPaymentsReceivedEmailRequest, d$ as PreviewBuyerPaymentsReceivedEmailResponse, e2 as PreviewBuyerPickupConfirmationEmailRequest, e3 as PreviewBuyerPickupConfirmationEmailResponse, dW as PreviewCancelEmailRequest, dX as PreviewCancelEmailResponse, dY as PreviewCancelRefundEmailRequest, dZ as PreviewCancelRefundEmailResponse, dN as PreviewEmailByTypeRequest, dO as PreviewEmailByTypeResponse, a8 as PreviewEmailType, jv as PreviewEmailTypeWithLiterals, dP as PreviewRefundEmailRequest, dV as PreviewRefundEmailResponse, e6 as PreviewResendDownloadLinksEmailRequest, e7 as PreviewResendDownloadLinksEmailResponse, e4 as PreviewShippingConfirmationEmailRequest, e5 as PreviewShippingConfirmationEmailResponse, b0 as PriceDescription, bb as PriceSummary, aE as ProductName, hn as PublicActivity, ho as PublicActivityContentOneOf, ge as QueryOrderRequest, gf as QueryOrderResponse, im as QuotesAddress, ao as Reason, jL as ReasonWithLiterals, cm as ReceiptCreated, cn as ReceiptCreatedReceiptInfoOneOf, cq as ReceiptSent, cr as ReceiptSentReceiptInfoOneOf, j_ as RecordManuallyCollectedPaymentApplicationErrors, iV as RecordManuallyCollectedPaymentOptions, eR as RecordManuallyCollectedPaymentRequest, eU as RecordManuallyCollectedPaymentResponse, eN as RedirectUrls, fB as Refund, dQ as RefundDetails, c4 as RefundInitiated, dR as RefundItem, fF as RefundItemsBreakdown, ff as RefundSideEffects, as as RefundStatus, fD as RefundStatusInfo, jP as RefundStatusWithLiterals, fC as RefundTransaction, f3 as Refundability, f4 as RefundabilityAdditionalRefundabilityInfoOneOf, ah as RefundableStatus, jE as RefundableStatusWithLiterals, cc as RefundedAsStoreCredit, c5 as RefundedPayment, c6 as RefundedPaymentKindOneOf, cf as RegularPayment, fn as RegularPaymentDetails, fo as RegularPaymentDetailsPaymentMethodDetailsOneOf, cg as RegularPaymentPaymentMethodDetailsOneOf, c7 as RegularPaymentRefund, ig as Reschedule, fg as RestockInfo, fh as RestockItem, ak as RestockType, jH as RestockTypeWithLiterals, di as RestoreInfo, c0 as SavedPaymentMethod, ad as ScheduledAction, jA as ScheduledActionWithLiterals, gg as SearchOrdersRequest, dr as SendBuyerConfirmationEmailRequest, ds as SendBuyerConfirmationEmailResponse, dt as SendBuyerPaymentsReceivedEmailRequest, du as SendBuyerPaymentsReceivedEmailResponse, dv as SendBuyerPickupConfirmationEmailRequest, dw as SendBuyerPickupConfirmationEmailResponse, dz as SendBuyerShippingConfirmationEmailRequest, dA as SendBuyerShippingConfirmationEmailResponse, dF as SendCancelRefundEmailRequest, dG as SendCancelRefundEmailResponse, dJ as SendFulfillmentEmailRequest, dK as SendFulfillmentEmailResponse, dD as SendMerchantOrderReceivedNotificationRequest, dE as SendMerchantOrderReceivedNotificationResponse, dL as SendMerchantOrderReceivedPushRequest, dM as SendMerchantOrderReceivedPushResponse, i7 as SendOrderUpdatedDomainEventRequest, i8 as SendOrderUpdatedDomainEventResponse, dH as SendRefundEmailRequest, dI as SendRefundEmailResponse, fb as ServiceProperties, el as ServiceProvisioned, em as ServiceRemoved, iT as SetOrderNumberCounterOptions, db as SetOrderNumberCounterRequest, dc as SetOrderNumberCounterResponse, hf as ShippingAddressEdited, hb as ShippingConfirmationEmailSent, b$ as ShippingInformation, b_ as ShippingInformationChange, bo as ShippingPrice, dU as ShippingRefund, bp as ShippingRegion, ec as SiteCreated, aa as SiteCreatedContext, jx as SiteCreatedContextWithLiterals, ee as SiteDeleted, eo as SiteHardDeleted, ej as SiteMarkedAsTemplate, ek as SiteMarkedAsWixSite, eh as SitePublished, et as SitePurgedExternally, en as SiteRenamed, ed as SiteTransferred, eg as SiteUndeleted, ei as SiteUnpublished, es as SiteUrlChanged, au as SortOrder, jR as SortOrderWithLiterals, g8 as Sorting, iA as Source, ay as SourceType, jV as SourceTypeWithLiterals, iu as StandardDetails, a9 as State, jw as StateWithLiterals, be as StreetAddress, eq as StudioAssigned, eA as StudioTwoAssigned, eB as StudioTwoUnassigned, er as StudioUnassigned, it as Subdivision, ax as SubdivisionType, jU as SubdivisionTypeWithLiterals, aX as SubscriptionDescription, F as SubscriptionFrequency, j9 as SubscriptionFrequencyWithLiterals, aV as SubscriptionInfo, aY as SubscriptionSettings, aW as SubscriptionTitle, cD as TagList, cC as Tags, i5 as TagsTagList, i4 as TagsTags, i9 as Task, ib as TaskAction, ic as TaskActionActionOneOf, ia as TaskKey, bq as TaxSummary, b2 as TaxableAddress, b3 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, jb as TaxableAddressTypeWithLiterals, iD as TotalPrice, bZ as TotalPriceChange, ha as TrackingLinkAdded, h8 as TrackingNumberAdded, h9 as TrackingNumberEdited, al as TransactionStatus, jI as TransactionStatusWithLiterals, b6 as TranslatableString, bW as TranslatedValue, k1 as TriggerRefundApplicationErrors, iZ as TriggerRefundOptions, fd as TriggerRefundRequest, fi as TriggerRefundResponse, g0 as TriggerReindexOrderRequest, f_ as TriggerReindexRequest, f$ as TriggerReindexResponse, gH as UnArchiveOrderRequest, gI as UnArchiveOrderResponse, j1 as UpdateActivityIdentifiers, hr as UpdateActivityRequest, hs as UpdateActivityResponse, gU as UpdateBillingContactDetailsRequest, gV as UpdateBillingContactDetailsResponse, gQ as UpdateBuyerEmailRequest, gR as UpdateBuyerEmailResponse, gN as UpdateBuyerInfoRequest, gP as UpdateBuyerInfoResponse, fP as UpdateInternalDocumentsEvent, fQ as UpdateInternalDocumentsEventOperationOneOf, hv as UpdateLineItemsDescriptionLinesRequest, hx as UpdateLineItemsDescriptionLinesResponse, j0 as UpdateOrderLineItem, i$ as UpdateOrderLineItemIdentifiers, gW as UpdateOrderLineItemRequest, gX as UpdateOrderLineItemResponse, gY as UpdateOrderLineItemsRequest, g_ as UpdateOrderLineItemsResponse, gp as UpdateOrderRequest, gq as UpdateOrderResponse, gS as UpdateOrderShippingAddressRequest, gT as UpdateOrderShippingAddressResponse, k2 as UpdateOrderStatusApplicationErrors, hB as UpdateOrderStatusRequest, hC as UpdateOrderStatusResponse, eS as UserDefinedPaymentMethodName, eT as UserDefinedPaymentMethodNameKindOneOf, eD as UserDomainMediaDisabled, eC as UserDomainMediaEnabled, hU as V1BulkMarkOrdersAsPaidRequest, hV as V1BulkMarkOrdersAsPaidResponse, hW as V1CreatePaymentGatewayOrderRequest, hX as V1CreatePaymentGatewayOrderResponse, gy as V1LineItemDelta, gz as V1LineItemDeltaDeltaOneOf, hS as V1MarkOrderAsPaidRequest, hT as V1MarkOrderAsPaidResponse, cS as V1RestockItem, fu as V1ScheduledAction, bi as V1ShippingInformation, iO as Value, aA as ValueType, jX as ValueTypeWithLiterals, bh as VatId, N as VatType, jf as VatTypeWithLiterals, fY as VersionedDeleteByIdsOperation, fZ as VersionedDocumentId, fX as VersionedDocumentUpdateOperation, at as VersioningMode, jQ as VersioningModeWithLiterals, fL as VoidAuthorizedPaymentsRequest, a7 as WebhookIdentityType, ju as WebhookIdentityTypeWithLiterals, W as WeightUnit, je as WeightUnitWithLiterals, co as WixReceipt, fz as WixReceiptInfo, ey as WixelAssigned, ez as WixelUnassigned } from './ecom-v1-order-orders.universal-D3-Z-bHz.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 OrderCanceledEnvelope, u as OrderCommittedEnvelope, v as OrderCreatedEnvelope, w as OrderFulfilledEnvelope, x as OrderPaymentStatusUpdatedEnvelope, y as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-CvSMoLJ1.js';
|
|
3
|
+
export { dq as AccountInfo, iS as AccountInfoMetadata, dl as ActionEvent, aq as ActionType, jN as ActionTypeWithLiterals, bD as Activity, bE as ActivityContentOneOf, _ as ActivityType, jl as ActivityTypeWithLiterals, hq as AddActivitiesRequest, hm as AddActivityRequest, hp as AddActivityResponse, g$ as AddInternalActivityRequest, hl as AddInternalActivityResponse, eW as AddToAutomationMigrationPopulationRequest, eX as AddToAutomationMigrationPopulationResponse, cA as AdditionalFee, d5 as AdditionalFeeDelta, d6 as AdditionalFeeDeltaDeltaOneOf, e6 as AdditionalFeeRefund, a2 as AdditionalFeeSource, jp as AdditionalFeeSourceWithLiterals, bd as Address, io as AddressDescription, bf as AddressLocation, bc as AddressWithContact, H as AdjustmentType, ja as AdjustmentTypeWithLiterals, j3 as AggregateOrdersOptions, h_ as AggregateOrdersRequest, h$ as AggregateOrdersResponse, fS as AggregatedRefundSummary, fd as ApplicationError, bt as AppliedDiscount, d3 as AppliedDiscountDelta, d4 as AppliedDiscountDeltaDeltaOneOf, bu as AppliedDiscountDiscountSourceOneOf, gB as ArchiveOrderRequest, gC as ArchiveOrderResponse, ep as Asset, a0 as AttributionSource, jn as AttributionSourceWithLiterals, fG as AuthorizationActionFailureDetails, fF as AuthorizationCapture, an as AuthorizationCaptureStatus, jK as AuthorizationCaptureStatusWithLiterals, fE as AuthorizationDetails, fH as AuthorizationVoid, ao as AuthorizationVoidStatus, jL as AuthorizationVoidStatusWithLiterals, c2 as AuthorizedPaymentCaptured, c1 as AuthorizedPaymentCreated, c3 as AuthorizedPaymentVoided, cz as Balance, cy as BalanceSummary, iQ as BaseEventMetadata, iy as BigDecimalWrapper, a_ as BillingAdjustment, a$ as BillingAdjustmentPriceSummary, fe as BulkActionMetadata, gF as BulkArchiveOrdersByFilterRequest, gG as BulkArchiveOrdersByFilterResponse, gD as BulkArchiveOrdersRequest, gE as BulkArchiveOrdersResponse, iU as BulkDeleteImportedOrdersOptions, dd as BulkDeleteImportedOrdersRequest, de as BulkDeleteImportedOrdersResponse, hH as BulkMarkAsFulfilledByFilterRequest, hI as BulkMarkAsFulfilledByFilterResponse, hF as BulkMarkAsFulfilledRequest, hG as BulkMarkAsFulfilledResponse, hN as BulkMarkAsUnfulfilledByFilterRequest, hO as BulkMarkAsUnfulfilledByFilterResponse, hL as BulkMarkAsUnfulfilledRequest, hM as BulkMarkAsUnfulfilledResponse, f9 as BulkMarkOrdersAsPaidRequest, fa as BulkMarkOrdersAsPaidResponse, fb as BulkOrderResult, dM as BulkSendBuyerPickupConfirmationEmailsRequest, dN as BulkSendBuyerPickupConfirmationEmailsResponse, dQ as BulkSendBuyerShippingConfirmationEmailsRequest, dR as BulkSendBuyerShippingConfirmationEmailsResponse, hP as BulkSetBusinessLocationRequest, hQ as BulkSetBusinessLocationResponse, hR as BulkSetBusinessLocationResult, gL as BulkUnArchiveOrdersByFilterRequest, gM as BulkUnArchiveOrdersByFilterResponse, gJ as BulkUnArchiveOrdersRequest, gK as BulkUnArchiveOrdersResponse, i3 as BulkUpdateOrderTagsRequest, i6 as BulkUpdateOrderTagsResult, gr as BulkUpdateOrdersRequest, b8 as BuyerInfo, b9 as BuyerInfoIdOneOf, gO as BuyerInfoUpdate, fW as CalculateRefundItemRequest, fY as CalculateRefundItemResponse, fV as CalculateRefundRequest, fX as CalculateRefundResponse, iI as CalculatedTax, iH as CalculatedTaxes, ie as Cancel, hA as CancelOrderRequest, f_ as CaptureAuthorizedPaymentsRequest, aF as CatalogReference, cw as ChannelInfo, a1 as ChannelType, jo as ChannelTypeWithLiterals, iY as ChargeMembershipsOptions, fm as ChargeMembershipsRequest, fq as ChargeMembershipsResponse, f$ as ChargeSavedPaymentMethodRequest, g0 as ChargeSavedPaymentMethodResponse, a4 as ChargeType, jr as ChargeTypeWithLiterals, fJ as Chargeback, cs as ChargebackCreated, ct as ChargebackReversed, ar as ChargebackStatus, jO as ChargebackStatusWithLiterals, fk as ChargedBy, aL as Color, gs as CommitDeltasRequest, gA as CommitDeltasResponse, cZ as CommittedDiffs, c_ as CommittedDiffsShippingUpdateInfoOneOf, ir as CommonAddress, is as CommonAddressStreetOneOf, k3 as CommonSearchWithEntityContext, iq as Company, id as Complete, bv as Coupon, gk as CreateOrderRequest, go as CreateOrderResponse, fj as CreatePaymentGatewayOrderRequest, fl as CreatePaymentGatewayOrderResponse, cu as CreatedBy, cv as CreatedByStringOneOf, ch as CreditCardDetails, fD as CreditCardPaymentMethodDetails, ba as CurrencyConversionDetails, ga as CursorPaging, gj as CursorPagingMetadata, gh as CursorSearch, gi as CursorSearchPagingMethodOneOf, gd as Cursors, bF as CustomActivity, cI as CustomAllowedActions, cx as CustomField, az as CustomFieldGroup, jW as CustomFieldGroupWithLiterals, iN as CustomFieldValue, ik as Customer, i1 as DecrementData, i0 as DecrementItemsQuantityRequest, i2 as DecrementItemsQuantityResponse, f0 as DelayedCaptureSettings, j2 as DeleteActivityIdentifiers, ht as DeleteActivityRequest, hu as DeleteActivityResponse, dw as DeleteByFilterOperation, dv as DeleteByIdsOperation, et as DeleteContext, ad as DeleteStatus, jA as DeleteStatusWithLiterals, bj as DeliveryLogistics, bk as DeliveryLogisticsAddressOneOf, bn as DeliveryTimeSlot, a5 as DeltaPaymentOptionType, js as DeltaPaymentOptionTypeWithLiterals, iP as Deposit, aB as DepositType, jY as DepositTypeWithLiterals, aG as DescriptionLine, aI as DescriptionLineDescriptionLineValueOneOf, aJ as DescriptionLineName, D as DescriptionLineType, j4 as DescriptionLineTypeWithLiterals, aH as DescriptionLineValueOneOf, g1 as DiffmatokyPayload, aU as DigitalFile, aO as Dimensions, z as DimensionsUnit, j5 as DimensionsUnitWithLiterals, iF as Discount, iG as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jj as DiscountReasonWithLiterals, by as DiscountRule, bz as DiscountRuleName, X as DiscountType, ji as DiscountTypeWithLiterals, df as DomainEvent, dg as DomainEventBodyOneOf, h7 as DownloadLinkSent, bL as DraftOrderChangesApplied, d7 as DraftOrderCommitSettings, gt as DraftOrderDiffs, gw as DraftOrderDiffsBillingUpdateInfoOneOf, gv as DraftOrderDiffsBuyerUpdateInfoOneOf, gx as DraftOrderDiffsRecipientUpdateInfoOneOf, gu as DraftOrderDiffsShippingUpdateInfoOneOf, f1 as Duration, af as DurationUnit, jC as DurationUnitWithLiterals, eS as EditorlessAssigned, eT as EditorlessUnassigned, il as Email, hg as EmailEdited, dE as Empty, dh as EntityCreatedEvent, dk as EntityDeletedEvent, dj as EntityUpdatedEvent, g2 as ErrorInformation, iR as EventMetadata, b4 as ExtendedFields, cp as ExternalReceipt, fO as ExternalReceiptInfo, aM as FocalPoint, cL as FormIdentifier, cK as FormInfo, aZ as FreeTrialPeriod, he as FulfillerEmailSent, L as FulfillmentStatus, cW as FulfillmentStatusUpdated, jd as FulfillmentStatusWithLiterals, cB as FulfillmentStatusesAggregate, bg as FullAddressContactDetails, g3 as GetOrderRequest, g4 as GetOrderResponse, f2 as GetPaymentCollectabilityStatusRequest, ff as GetRefundabilityStatusRequest, fg as GetRefundabilityStatusResponse, hY as GetShipmentsRequest, hZ as GetShipmentsResponse, fL as GiftCardPaymentDetails, c8 as GiftCardPaymentRefund, eU as HasCustomEmailConfigurationsRequest, eV as HasCustomEmailConfigurationsResponse, ii as IdAndVersion, dn as IdentificationData, dp as IdentificationDataIdOneOf, d9 as ImportOrderRequest, da as ImportOrderResponse, cU as ImportedOrderDeleted, h0 as InternalActivity, h1 as InternalActivityContentOneOf, dt as InternalDocument, dx as InternalDocumentUpdateByFilterOperation, du as InternalDocumentUpdateOperation, g5 as InternalQueryOrdersRequest, gb as InternalQueryOrdersResponse, dy as InternalUpdateExistingOperation, a6 as InventoryAction, jt as InventoryActionWithLiterals, d8 as InventoryUpdateDetails, hc as InvoiceAdded, iv as InvoiceDates, iM as InvoiceDynamicPriceTotals, ij as InvoiceFields, hd as InvoiceSent, ih as InvoiceSentEvent, aC as InvoiceStatus, jZ as InvoiceStatusWithLiterals, iK as InvoicesPayment, eY as IsInAutomationMigrationPopulationRequest, eZ as IsInAutomationMigrationPopulationResponse, c$ as ItemChangedDetails, bB as ItemCombination, bC as ItemCombinationLineItem, fc as ItemMetadata, b7 as ItemModifier, aR as ItemTaxFullDetails, aP as ItemType, aQ as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, j6 as ItemTypePresetWithLiterals, iE as ItemizedFee, J as JurisdictionType, j8 as JurisdictionTypeWithLiterals, ix as LineItem, bX as LineItemAmount, bO as LineItemChanges, d1 as LineItemDelta, d2 as LineItemDeltaDeltaOneOf, bS as LineItemDescriptionLineChange, bA as LineItemDiscount, bK as LineItemExchangeData, iB as LineItemMetaData, bT as LineItemModifiersChange, bQ as LineItemPriceChange, bR as LineItemProductNameChange, bP as LineItemQuantityChange, Z as LineItemQuantityChangeType, jk as LineItemQuantityChangeTypeWithLiterals, e5 as LineItemRefund, fU as LineItemRefundSummary, iz as LineItemTax, aT as LineItemTaxBreakdown, aS as LineItemTaxInfo, hw as LineItemUpdate, iw as LineItems, iC as Locale, cE as Location, b1 as LocationAndQuantity, bY as ManagedAdditionalFee, bV as ManagedDiscount, bU as ManagedLineItem, ak as ManuallyRefundableReason, jH as ManuallyRefundableReasonWithLiterals, hD as MarkAsFulfilledRequest, hE as MarkAsFulfilledResponse, hJ as MarkAsUnfulfilledRequest, hK as MarkAsUnfulfilledResponse, f7 as MarkOrderAsPaidRequest, f8 as MarkOrderAsPaidResponse, hy as MarkOrderAsSeenByHumanRequest, hz as MarkOrderAsSeenByHumanResponse, gZ as MaskedOrderLineItem, fn as MembershipChargeItem, fo as MembershipName, fM as MembershipPaymentDetails, c9 as MembershipPaymentRefund, as as MembershipPaymentStatus, jP as MembershipPaymentStatusWithLiterals, bG as MerchantComment, bw as MerchantDiscount, bx as MerchantDiscountMerchantDiscountReasonOneOf, dm as MessageEnvelope, iL as MetaData, en as MetaSiteSpecialEvent, eo as MetaSiteSpecialEventPayloadOneOf, b5 as ModifierGroup, ac as Namespace, eD as NamespaceChanged, jz as NamespaceWithLiterals, bJ as NewExchangeOrderCreated, aj as NonRefundableReason, jG as NonRefundableReasonWithLiterals, eI as OdeditorAssigned, eJ as OdeditorUnassigned, a3 as OrderActionType, jq as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, jm as OrderActivityTypeEnumActivityTypeWithLiterals, av as OrderApprovalStrategy, jS as OrderApprovalStrategyWithLiterals, cO as OrderApproved, h6 as OrderCanceled, cX as OrderCanceledEventOrderCanceled, bM as OrderChange, bN as OrderChangeValueOneOf, gn as OrderCreateNotifications, bI as OrderCreatedFromExchange, gl as OrderCreationSettings, gm as OrderCreationSettingsEditableByOneOf, cY as OrderDeltasCommitted, h4 as OrderFulfilled, cT as OrderImported, cR as OrderItemsRestocked, aD as OrderLineItem, d0 as OrderLineItemChangedDetails, h5 as OrderNotFulfilled, h3 as OrderPaid, hi as OrderPartiallyPaid, hj as OrderPending, h2 as OrderPlaced, bH as OrderRefunded, hk as OrderRejected, cQ as OrderRejectedEventOrderRejected, i_ as OrderSearchSpec, cF as OrderSettings, cG as OrderSettingsAllowedActionsOneOf, cH as OrderSettingsEditableByOneOf, R as OrderStatus, jh as OrderStatusWithLiterals, bs as OrderTaxBreakdown, br as OrderTaxInfo, fx as OrderTransactions, cP as OrdersExperiments, cJ as OwnerApps, fy as Payment, ci as PaymentCanceled, cj as PaymentCanceledPaymentDetailsOneOf, ag as PaymentCollectabilityStatus, jD as PaymentCollectabilityStatusWithLiterals, k0 as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, iX as PaymentCollectionCreatePaymentGatewayOrderOptions, j$ as PaymentCollectionMarkOrderAsPaidApplicationErrors, iW as PaymentCollectionMarkOrderAsPaidOptions, ck as PaymentDeclined, cl as PaymentDeclinedPaymentDetailsOneOf, fK as PaymentMethodName, E as PaymentOptionType, j7 as PaymentOptionTypeWithLiterals, fz as PaymentPaymentDetailsOneOf, cd as PaymentPending, ce as PaymentPendingPaymentDetailsOneOf, fA as PaymentReceiptInfoOneOf, fs as PaymentRefund, cb as PaymentRefundFailed, ca as PaymentRefunded, K as PaymentStatus, cV as PaymentStatusUpdated, jc as PaymentStatusWithLiterals, iJ as Payments, ip as Phone, aN as PhysicalProperties, eK as PicassoAssigned, eL as PicassoUnassigned, bm as PickupAddress, bl as PickupDetails, Q as PickupMethod, jg as PickupMethodWithLiterals, hh as PickupReadyEmailSent, aw as Placement, jT as PlacementWithLiterals, aK as PlainTextValue, cN as PlatformFee, cM as PlatformFeeSummary, g9 as PlatformPaging, gc as PlatformPagingMetadata, g6 as PlatformQuery, g7 as PlatformQueryPagingMethodOneOf, ah as PredefinedPaymentMethod, jE as PredefinedPaymentMethodWithLiterals, e_ as PreparePaymentCollectionRequest, ef as PreviewBuyerConfirmationEmailRequest, eg as PreviewBuyerConfirmationEmailResponse, ed as PreviewBuyerPaymentsReceivedEmailRequest, ee as PreviewBuyerPaymentsReceivedEmailResponse, eh as PreviewBuyerPickupConfirmationEmailRequest, ei as PreviewBuyerPickupConfirmationEmailResponse, e9 as PreviewCancelEmailRequest, ea as PreviewCancelEmailResponse, eb as PreviewCancelRefundEmailRequest, ec as PreviewCancelRefundEmailResponse, e0 as PreviewEmailByTypeRequest, e1 as PreviewEmailByTypeResponse, a9 as PreviewEmailType, jw as PreviewEmailTypeWithLiterals, e2 as PreviewRefundEmailRequest, e8 as PreviewRefundEmailResponse, el as PreviewResendDownloadLinksEmailRequest, em as PreviewResendDownloadLinksEmailResponse, ej as PreviewShippingConfirmationEmailRequest, ek as PreviewShippingConfirmationEmailResponse, b0 as PriceDescription, bb as PriceSummary, aE as ProductName, hn as PublicActivity, ho as PublicActivityContentOneOf, ge as QueryOrderRequest, gf as QueryOrderResponse, im as QuotesAddress, ap as Reason, jM as ReasonWithLiterals, cm as ReceiptCreated, cn as ReceiptCreatedReceiptInfoOneOf, cq as ReceiptSent, cr as ReceiptSentReceiptInfoOneOf, j_ as RecordManuallyCollectedPaymentApplicationErrors, iV as RecordManuallyCollectedPaymentOptions, f3 as RecordManuallyCollectedPaymentRequest, f6 as RecordManuallyCollectedPaymentResponse, e$ as RedirectUrls, fP as Refund, e3 as RefundDetails, c4 as RefundInitiated, e4 as RefundItem, fT as RefundItemsBreakdown, ft as RefundSideEffects, at as RefundStatus, fR as RefundStatusInfo, jQ as RefundStatusWithLiterals, fQ as RefundTransaction, fh as Refundability, fi as RefundabilityAdditionalRefundabilityInfoOneOf, ai as RefundableStatus, jF as RefundableStatusWithLiterals, cc as RefundedAsStoreCredit, c5 as RefundedPayment, c6 as RefundedPaymentKindOneOf, cf as RegularPayment, fB as RegularPaymentDetails, fC as RegularPaymentDetailsPaymentMethodDetailsOneOf, cg as RegularPaymentPaymentMethodDetailsOneOf, c7 as RegularPaymentRefund, ig as Reschedule, fu as RestockInfo, fv as RestockItem, al as RestockType, jI as RestockTypeWithLiterals, di as RestoreInfo, c0 as SavedPaymentMethod, ae as ScheduledAction, jB as ScheduledActionWithLiterals, gg as SearchOrdersRequest, dG as SendBuyerConfirmationEmailRequest, dH as SendBuyerConfirmationEmailResponse, dI as SendBuyerPaymentsReceivedEmailRequest, dJ as SendBuyerPaymentsReceivedEmailResponse, dK as SendBuyerPickupConfirmationEmailRequest, dL as SendBuyerPickupConfirmationEmailResponse, dO as SendBuyerShippingConfirmationEmailRequest, dP as SendBuyerShippingConfirmationEmailResponse, dU as SendCancelRefundEmailRequest, dV as SendCancelRefundEmailResponse, dY as SendFulfillmentEmailRequest, dZ as SendFulfillmentEmailResponse, dS as SendMerchantOrderReceivedNotificationRequest, dT as SendMerchantOrderReceivedNotificationResponse, d_ as SendMerchantOrderReceivedPushRequest, d$ as SendMerchantOrderReceivedPushResponse, i7 as SendOrderUpdatedDomainEventRequest, i8 as SendOrderUpdatedDomainEventResponse, dW as SendRefundEmailRequest, dX as SendRefundEmailResponse, fp as ServiceProperties, ez as ServiceProvisioned, eA as ServiceRemoved, iT as SetOrderNumberCounterOptions, db as SetOrderNumberCounterRequest, dc as SetOrderNumberCounterResponse, hf as ShippingAddressEdited, hb as ShippingConfirmationEmailSent, b$ as ShippingInformation, b_ as ShippingInformationChange, bo as ShippingPrice, e7 as ShippingRefund, bp as ShippingRegion, eq as SiteCreated, ab as SiteCreatedContext, jy as SiteCreatedContextWithLiterals, es as SiteDeleted, eC as SiteHardDeleted, ex as SiteMarkedAsTemplate, ey as SiteMarkedAsWixSite, ev as SitePublished, eH as SitePurgedExternally, eB as SiteRenamed, er as SiteTransferred, eu as SiteUndeleted, ew as SiteUnpublished, eG as SiteUrlChanged, au as SortOrder, jR as SortOrderWithLiterals, g8 as Sorting, iA as Source, ay as SourceType, jV as SourceTypeWithLiterals, iu as StandardDetails, aa as State, jx as StateWithLiterals, be as StreetAddress, eE as StudioAssigned, eO as StudioTwoAssigned, eP as StudioTwoUnassigned, eF as StudioUnassigned, it as Subdivision, ax as SubdivisionType, jU as SubdivisionTypeWithLiterals, aX as SubscriptionDescription, F as SubscriptionFrequency, j9 as SubscriptionFrequencyWithLiterals, aV as SubscriptionInfo, aY as SubscriptionSettings, aW as SubscriptionTitle, cD as TagList, cC as Tags, i5 as TagsTagList, i4 as TagsTags, i9 as Task, ib as TaskAction, ic as TaskActionActionOneOf, ia as TaskKey, bq as TaxSummary, b2 as TaxableAddress, b3 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, jb as TaxableAddressTypeWithLiterals, iD as TotalPrice, bZ as TotalPriceChange, ha as TrackingLinkAdded, h8 as TrackingNumberAdded, h9 as TrackingNumberEdited, am as TransactionStatus, jJ as TransactionStatusWithLiterals, b6 as TranslatableString, bW as TranslatedValue, k1 as TriggerRefundApplicationErrors, iZ as TriggerRefundOptions, fr as TriggerRefundRequest, fw as TriggerRefundResponse, dF as TriggerReindexOrderRequest, dC as TriggerReindexRequest, dD as TriggerReindexResponse, gH as UnArchiveOrderRequest, gI as UnArchiveOrderResponse, j1 as UpdateActivityIdentifiers, hr as UpdateActivityRequest, hs as UpdateActivityResponse, gU as UpdateBillingContactDetailsRequest, gV as UpdateBillingContactDetailsResponse, gQ as UpdateBuyerEmailRequest, gR as UpdateBuyerEmailResponse, gN as UpdateBuyerInfoRequest, gP as UpdateBuyerInfoResponse, dr as UpdateInternalDocumentsEvent, ds as UpdateInternalDocumentsEventOperationOneOf, hv as UpdateLineItemsDescriptionLinesRequest, hx as UpdateLineItemsDescriptionLinesResponse, j0 as UpdateOrderLineItem, i$ as UpdateOrderLineItemIdentifiers, gW as UpdateOrderLineItemRequest, gX as UpdateOrderLineItemResponse, gY as UpdateOrderLineItemsRequest, g_ as UpdateOrderLineItemsResponse, gp as UpdateOrderRequest, gq as UpdateOrderResponse, gS as UpdateOrderShippingAddressRequest, gT as UpdateOrderShippingAddressResponse, k2 as UpdateOrderStatusApplicationErrors, hB as UpdateOrderStatusRequest, hC as UpdateOrderStatusResponse, f4 as UserDefinedPaymentMethodName, f5 as UserDefinedPaymentMethodNameKindOneOf, eR as UserDomainMediaDisabled, eQ as UserDomainMediaEnabled, hU as V1BulkMarkOrdersAsPaidRequest, hV as V1BulkMarkOrdersAsPaidResponse, hW as V1CreatePaymentGatewayOrderRequest, hX as V1CreatePaymentGatewayOrderResponse, gy as V1LineItemDelta, gz as V1LineItemDeltaDeltaOneOf, hS as V1MarkOrderAsPaidRequest, hT as V1MarkOrderAsPaidResponse, cS as V1RestockItem, fI as V1ScheduledAction, bi as V1ShippingInformation, iO as Value, aA as ValueType, jX as ValueTypeWithLiterals, bh as VatId, N as VatType, jf as VatTypeWithLiterals, dA as VersionedDeleteByIdsOperation, dB as VersionedDocumentId, dz as VersionedDocumentUpdateOperation, a8 as VersioningMode, jv as VersioningModeWithLiterals, fZ as VoidAuthorizedPaymentsRequest, a7 as WebhookIdentityType, ju as WebhookIdentityTypeWithLiterals, W as WeightUnit, je as WeightUnitWithLiterals, co as WixReceipt, fN as WixReceiptInfo, eM as WixelAssigned, eN as WixelUnassigned } from './ecom-v1-order-orders.universal-CvSMoLJ1.js';
|
|
4
4
|
|
|
5
5
|
declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
|
|
6
6
|
interface PreparePaymentCollectionSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -2079,6 +2079,12 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
|
2079
2079
|
WebhookIdentityType2["APP"] = "APP";
|
|
2080
2080
|
return WebhookIdentityType2;
|
|
2081
2081
|
})(WebhookIdentityType || {});
|
|
2082
|
+
var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
|
|
2083
|
+
VersioningMode2["DEFAULT"] = "DEFAULT";
|
|
2084
|
+
VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
|
|
2085
|
+
VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
|
|
2086
|
+
return VersioningMode2;
|
|
2087
|
+
})(VersioningMode || {});
|
|
2082
2088
|
var PreviewEmailType = /* @__PURE__ */ ((PreviewEmailType2) => {
|
|
2083
2089
|
PreviewEmailType2["ORDER_PLACED"] = "ORDER_PLACED";
|
|
2084
2090
|
PreviewEmailType2["DOWNLOAD_LINKS"] = "DOWNLOAD_LINKS";
|
|
@@ -2275,12 +2281,6 @@ var RefundStatus = /* @__PURE__ */ ((RefundStatus2) => {
|
|
|
2275
2281
|
RefundStatus2["STARTED"] = "STARTED";
|
|
2276
2282
|
return RefundStatus2;
|
|
2277
2283
|
})(RefundStatus || {});
|
|
2278
|
-
var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
|
|
2279
|
-
VersioningMode2["DEFAULT"] = "DEFAULT";
|
|
2280
|
-
VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
|
|
2281
|
-
VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
|
|
2282
|
-
return VersioningMode2;
|
|
2283
|
-
})(VersioningMode || {});
|
|
2284
2284
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
2285
2285
|
SortOrder2["ASC"] = "ASC";
|
|
2286
2286
|
SortOrder2["DESC"] = "DESC";
|