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