@wix/auto_sdk_ecom_orders 1.0.196 → 1.0.197
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-BPhC1t-c.d.ts → ecom-v1-order-orders.universal-CcrfIADf.d.ts} +256 -1
- package/build/cjs/index.d.ts +39 -4
- package/build/cjs/index.js +400 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -1
- package/build/es/{ecom-v1-order-orders.universal-BPhC1t-c.d.mts → ecom-v1-order-orders.universal-CcrfIADf.d.mts} +256 -1
- package/build/es/index.d.mts +39 -4
- package/build/es/index.mjs +393 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-DDtTtfim.d.ts → ecom-v1-order-orders.universal-BJM940Ej.d.ts} +256 -1
- package/build/internal/cjs/index.d.ts +39 -4
- package/build/internal/cjs/index.js +400 -0
- 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.map +1 -1
- package/build/internal/cjs/meta.d.ts +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-DDtTtfim.d.mts → ecom-v1-order-orders.universal-BJM940Ej.d.mts} +256 -1
- package/build/internal/es/index.d.mts +39 -4
- package/build/internal/es/index.mjs +393 -0
- 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.map +1 -1
- package/build/internal/es/meta.d.mts +1 -1
- package/package.json +2 -2
|
@@ -7495,6 +7495,261 @@ type UpdateOrderStatusApplicationErrors = {
|
|
|
7495
7495
|
description?: string;
|
|
7496
7496
|
data?: Record<string, any>;
|
|
7497
7497
|
};
|
|
7498
|
+
interface BaseEventMetadata {
|
|
7499
|
+
/**
|
|
7500
|
+
* App instance ID.
|
|
7501
|
+
* @format GUID
|
|
7502
|
+
*/
|
|
7503
|
+
instanceId?: string | null;
|
|
7504
|
+
/**
|
|
7505
|
+
* Event type.
|
|
7506
|
+
* @maxLength 150
|
|
7507
|
+
*/
|
|
7508
|
+
eventType?: string;
|
|
7509
|
+
/** The identification type and identity data. */
|
|
7510
|
+
identity?: IdentificationData;
|
|
7511
|
+
/** Details related to the account */
|
|
7512
|
+
accountInfo?: AccountInfo;
|
|
7513
|
+
}
|
|
7514
|
+
interface EventMetadata extends BaseEventMetadata {
|
|
7515
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
7516
|
+
_id?: string;
|
|
7517
|
+
/**
|
|
7518
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
7519
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
7520
|
+
*/
|
|
7521
|
+
entityFqdn?: string;
|
|
7522
|
+
/**
|
|
7523
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
7524
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
7525
|
+
*/
|
|
7526
|
+
slug?: string;
|
|
7527
|
+
/** ID of the entity associated with the event. */
|
|
7528
|
+
entityId?: string;
|
|
7529
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
7530
|
+
eventTime?: Date | null;
|
|
7531
|
+
/**
|
|
7532
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
7533
|
+
* (for example, GDPR).
|
|
7534
|
+
*/
|
|
7535
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
7536
|
+
/** If present, indicates the action that triggered the event. */
|
|
7537
|
+
originatedFrom?: string | null;
|
|
7538
|
+
/**
|
|
7539
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
7540
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
7541
|
+
*/
|
|
7542
|
+
entityEventSequence?: string | null;
|
|
7543
|
+
accountInfo?: AccountInfoMetadata;
|
|
7544
|
+
}
|
|
7545
|
+
interface AccountInfoMetadata {
|
|
7546
|
+
/** ID of the Wix account associated with the event */
|
|
7547
|
+
accountId: string;
|
|
7548
|
+
/** ID of the Wix site associated with the event. Only included when the event is tied to a specific site. */
|
|
7549
|
+
siteId?: string;
|
|
7550
|
+
/** ID of the parent Wix account. Only included when 'accountId' belongs to a child account. */
|
|
7551
|
+
parentAccountId?: string;
|
|
7552
|
+
}
|
|
7553
|
+
interface OrderApprovedEnvelope {
|
|
7554
|
+
data: OrderApproved;
|
|
7555
|
+
metadata: EventMetadata;
|
|
7556
|
+
}
|
|
7557
|
+
/**
|
|
7558
|
+
* Triggered when an order is approved.
|
|
7559
|
+
* @permissionScope Manage Stores - all permissions
|
|
7560
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
7561
|
+
* @permissionScope Manage Stores
|
|
7562
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
7563
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
7564
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
7565
|
+
* @permissionScope Read Orders
|
|
7566
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-ORDERS
|
|
7567
|
+
* @permissionScope Read Stores - all read permissions
|
|
7568
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
7569
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
7570
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
7571
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
7572
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
7573
|
+
* @permissionScope Manage Orders
|
|
7574
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
7575
|
+
* @permissionId ECOM.READ_ORDERS
|
|
7576
|
+
* @webhook
|
|
7577
|
+
* @eventType wix.ecom.v1.order_approved
|
|
7578
|
+
* @slug approved
|
|
7579
|
+
*/
|
|
7580
|
+
declare function onOrderApproved(handler: (event: OrderApprovedEnvelope) => void | Promise<void>): void;
|
|
7581
|
+
interface OrderCanceledEnvelope {
|
|
7582
|
+
data: OrderCanceledEventOrderCanceled;
|
|
7583
|
+
metadata: EventMetadata;
|
|
7584
|
+
}
|
|
7585
|
+
/**
|
|
7586
|
+
* Triggered when an order is canceled.
|
|
7587
|
+
* @permissionScope Manage Stores - all permissions
|
|
7588
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
7589
|
+
* @permissionScope Manage Stores
|
|
7590
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
7591
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
7592
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
7593
|
+
* @permissionScope Read Orders
|
|
7594
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-ORDERS
|
|
7595
|
+
* @permissionScope Read Stores - all read permissions
|
|
7596
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
7597
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
7598
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
7599
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
7600
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
7601
|
+
* @permissionScope Manage Orders
|
|
7602
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
7603
|
+
* @permissionId ECOM.READ_ORDERS
|
|
7604
|
+
* @webhook
|
|
7605
|
+
* @eventType wix.ecom.v1.order_canceled
|
|
7606
|
+
* @slug canceled
|
|
7607
|
+
*/
|
|
7608
|
+
declare function onOrderCanceled(handler: (event: OrderCanceledEnvelope) => void | Promise<void>): void;
|
|
7609
|
+
interface OrderCommittedEnvelope {
|
|
7610
|
+
data: OrderDeltasCommitted;
|
|
7611
|
+
metadata: EventMetadata;
|
|
7612
|
+
}
|
|
7613
|
+
/**
|
|
7614
|
+
* Triggered when draft order changes are committed.
|
|
7615
|
+
* @permissionScope Manage Stores - all permissions
|
|
7616
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
7617
|
+
* @permissionScope Manage Stores
|
|
7618
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
7619
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
7620
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
7621
|
+
* @permissionScope Read Orders
|
|
7622
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-ORDERS
|
|
7623
|
+
* @permissionScope Read Stores - all read permissions
|
|
7624
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
7625
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
7626
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
7627
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
7628
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
7629
|
+
* @permissionScope Manage Orders
|
|
7630
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
7631
|
+
* @permissionId ECOM.READ_ORDERS
|
|
7632
|
+
* @webhook
|
|
7633
|
+
* @eventType wix.ecom.v1.order_committed
|
|
7634
|
+
* @slug committed
|
|
7635
|
+
* @documentationMaturity preview
|
|
7636
|
+
*/
|
|
7637
|
+
declare function onOrderCommitted(handler: (event: OrderCommittedEnvelope) => void | Promise<void>): void;
|
|
7638
|
+
interface OrderCreatedEnvelope {
|
|
7639
|
+
entity: Order;
|
|
7640
|
+
metadata: EventMetadata;
|
|
7641
|
+
}
|
|
7642
|
+
/**
|
|
7643
|
+
* Triggered when an order is created.
|
|
7644
|
+
* @permissionScope Manage Stores - all permissions
|
|
7645
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
7646
|
+
* @permissionScope Manage Stores
|
|
7647
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
7648
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
7649
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
7650
|
+
* @permissionScope Read Orders
|
|
7651
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-ORDERS
|
|
7652
|
+
* @permissionScope Read Stores - all read permissions
|
|
7653
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
7654
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
7655
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
7656
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
7657
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
7658
|
+
* @permissionScope Manage Orders
|
|
7659
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
7660
|
+
* @permissionId ECOM.READ_ORDERS
|
|
7661
|
+
* @webhook
|
|
7662
|
+
* @eventType wix.ecom.v1.order_created
|
|
7663
|
+
* @slug created
|
|
7664
|
+
*/
|
|
7665
|
+
declare function onOrderCreated(handler: (event: OrderCreatedEnvelope) => void | Promise<void>): void;
|
|
7666
|
+
interface OrderFulfilledEnvelope {
|
|
7667
|
+
data: FulfillmentStatusUpdated;
|
|
7668
|
+
metadata: EventMetadata;
|
|
7669
|
+
}
|
|
7670
|
+
/**
|
|
7671
|
+
* Triggered when order fulfillment status is updated.
|
|
7672
|
+
* @permissionScope Manage Stores - all permissions
|
|
7673
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
7674
|
+
* @permissionScope Manage Stores
|
|
7675
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
7676
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
7677
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
7678
|
+
* @permissionScope Read Orders
|
|
7679
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-ORDERS
|
|
7680
|
+
* @permissionScope Read Stores - all read permissions
|
|
7681
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
7682
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
7683
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
7684
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
7685
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
7686
|
+
* @permissionScope Manage Orders
|
|
7687
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
7688
|
+
* @permissionId ECOM.READ_ORDERS
|
|
7689
|
+
* @webhook
|
|
7690
|
+
* @eventType wix.ecom.v1.order_fulfilled
|
|
7691
|
+
* @slug fulfilled
|
|
7692
|
+
* @documentationMaturity preview
|
|
7693
|
+
*/
|
|
7694
|
+
declare function onOrderFulfilled(handler: (event: OrderFulfilledEnvelope) => void | Promise<void>): void;
|
|
7695
|
+
interface OrderPaymentStatusUpdatedEnvelope {
|
|
7696
|
+
data: PaymentStatusUpdated;
|
|
7697
|
+
metadata: EventMetadata;
|
|
7698
|
+
}
|
|
7699
|
+
/**
|
|
7700
|
+
* Triggered when the payment status of an order is updated.
|
|
7701
|
+
* @permissionScope Manage Stores - all permissions
|
|
7702
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
7703
|
+
* @permissionScope Manage Stores
|
|
7704
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
7705
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
7706
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
7707
|
+
* @permissionScope Read Orders
|
|
7708
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-ORDERS
|
|
7709
|
+
* @permissionScope Read Stores - all read permissions
|
|
7710
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
7711
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
7712
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
7713
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
7714
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
7715
|
+
* @permissionScope Manage Orders
|
|
7716
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
7717
|
+
* @permissionId ECOM.READ_ORDERS
|
|
7718
|
+
* @webhook
|
|
7719
|
+
* @eventType wix.ecom.v1.order_payment_status_updated
|
|
7720
|
+
* @slug payment_status_updated
|
|
7721
|
+
*/
|
|
7722
|
+
declare function onOrderPaymentStatusUpdated(handler: (event: OrderPaymentStatusUpdatedEnvelope) => void | Promise<void>): void;
|
|
7723
|
+
interface OrderUpdatedEnvelope {
|
|
7724
|
+
entity: Order;
|
|
7725
|
+
metadata: EventMetadata;
|
|
7726
|
+
/** @hidden */
|
|
7727
|
+
modifiedFields: Record<string, any>;
|
|
7728
|
+
}
|
|
7729
|
+
/**
|
|
7730
|
+
* Triggered when an order is updated.
|
|
7731
|
+
* @permissionScope Manage Stores - all permissions
|
|
7732
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
7733
|
+
* @permissionScope Manage Stores
|
|
7734
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
7735
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
7736
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
7737
|
+
* @permissionScope Read Orders
|
|
7738
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-ORDERS
|
|
7739
|
+
* @permissionScope Read Stores - all read permissions
|
|
7740
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
7741
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
7742
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
7743
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
7744
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
7745
|
+
* @permissionScope Manage Orders
|
|
7746
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
7747
|
+
* @permissionId ECOM.READ_ORDERS
|
|
7748
|
+
* @webhook
|
|
7749
|
+
* @eventType wix.ecom.v1.order_updated
|
|
7750
|
+
* @slug updated
|
|
7751
|
+
*/
|
|
7752
|
+
declare function onOrderUpdated(handler: (event: OrderUpdatedEnvelope) => void | Promise<void>): void;
|
|
7498
7753
|
interface SetOrderNumberCounterOptions {
|
|
7499
7754
|
/** Whether to allow setting a lower counter than current value */
|
|
7500
7755
|
allowLowerCounter?: boolean;
|
|
@@ -8304,4 +8559,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
8304
8559
|
unassignTags?: Tags;
|
|
8305
8560
|
}
|
|
8306
8561
|
|
|
8307
|
-
export { InventoryAction as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, DiscountType as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, DiscountReason as H, ItemTypePreset as I, JurisdictionType as J, ActivityType as K, LineItemQuantityChangeType as L, type MaskedOrder as M, OrderActivityTypeEnumActivityType as N, type Order as O, type Price as P, AttributionSource as Q, ChannelType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, AdditionalFeeSource as X, OrderActionType as Y, ChargeType as Z, DeltaPaymentOptionType as _, type PreparePaymentCollectionOptions as a, type TranslatableString as a$, WebhookIdentityType as a0, VersioningMode as a1, PreviewEmailType as a2, State as a3, SiteCreatedContext as a4, Namespace as a5, DeleteStatus as a6, ScheduledAction as a7, DurationUnit as a8, PaymentCollectabilityStatus as a9, type DescriptionLineValueOneOf as aA, type DescriptionLineDescriptionLineValueOneOf as aB, type DescriptionLineName as aC, type PlainTextValue as aD, type Color as aE, type FocalPoint as aF, type PhysicalProperties as aG, type Dimensions as aH, type ItemType as aI, type ItemTypeItemTypeDataOneOf as aJ, type ItemTaxFullDetails as aK, type LineItemTaxInfo as aL, type LineItemTaxBreakdown as aM, type DigitalFile as aN, type SubscriptionInfo as aO, type SubscriptionTitle as aP, type SubscriptionDescription as aQ, type SubscriptionSettings as aR, type FreeTrialPeriod as aS, type BillingAdjustment as aT, type BillingAdjustmentPriceSummary as aU, type PriceDescription as aV, type LocationAndQuantity as aW, type TaxableAddress as aX, type TaxableAddressTaxableAddressDataOneOf as aY, type ExtendedFields as aZ, type ModifierGroup as a_, PredefinedPaymentMethod as aa, RefundableStatus as ab, NonRefundableReason as ac, ManuallyRefundableReason as ad, RestockType as ae, TransactionStatus as af, AuthorizationCaptureStatus as ag, AuthorizationVoidStatus as ah, Reason as ai, ActionType as aj, ChargebackStatus as ak, MembershipPaymentStatus as al, RefundStatus as am, SortOrder as an, OrderApprovalStrategy as ao, Placement as ap, SubdivisionType as aq, SourceType as ar, CustomFieldGroup as as, ValueType as at, DepositType as au, InvoiceStatus as av, type OrderLineItem as aw, type ProductName as ax, type CatalogReference as ay, type DescriptionLine as az, type PreparePaymentCollectionResponse as b, type RefundedPaymentKindOneOf as b$, type ItemModifier as b0, type BuyerInfo as b1, type BuyerInfoIdOneOf as b2, type CurrencyConversionDetails as b3, type PriceSummary as b4, type AddressWithContact as b5, type Address as b6, type StreetAddress as b7, type AddressLocation as b8, type FullAddressContactDetails as b9, type OrderRefunded as bA, type OrderCreatedFromExchange as bB, type NewExchangeOrderCreated as bC, type LineItemExchangeData as bD, type DraftOrderChangesApplied as bE, type OrderChange as bF, type OrderChangeValueOneOf as bG, type LineItemChanges as bH, type LineItemQuantityChange as bI, type LineItemPriceChange as bJ, type LineItemProductNameChange as bK, type LineItemDescriptionLineChange as bL, type LineItemModifiersChange as bM, type ManagedLineItem as bN, type ManagedDiscount as bO, type TranslatedValue as bP, type LineItemAmount as bQ, type ManagedAdditionalFee as bR, type TotalPriceChange as bS, type ShippingInformationChange as bT, type ShippingInformation as bU, type SavedPaymentMethod as bV, type AuthorizedPaymentCreated as bW, type AuthorizedPaymentCaptured as bX, type AuthorizedPaymentVoided as bY, type RefundInitiated as bZ, type RefundedPayment as b_, type VatId as ba, type V1ShippingInformation as bb, type DeliveryLogistics as bc, type DeliveryLogisticsAddressOneOf as bd, type PickupDetails as be, type PickupAddress as bf, type DeliveryTimeSlot as bg, type ShippingPrice as bh, type ShippingRegion as bi, type TaxSummary as bj, type OrderTaxInfo as bk, type OrderTaxBreakdown as bl, type AppliedDiscount as bm, type AppliedDiscountDiscountSourceOneOf as bn, type Coupon as bo, type MerchantDiscount as bp, type MerchantDiscountMerchantDiscountReasonOneOf as bq, type DiscountRule as br, type DiscountRuleName as bs, type LineItemDiscount as bt, type ItemCombination as bu, type ItemCombinationLineItem as bv, type Activity as bw, type ActivityContentOneOf as bx, type CustomActivity as by, type MerchantComment as bz, type PreparePaymentCollectionApplicationErrors as c, type AdditionalFeeDeltaDeltaOneOf as c$, type RegularPaymentRefund as c0, type GiftCardPaymentRefund as c1, type MembershipPaymentRefund as c2, type PaymentRefunded as c3, type PaymentRefundFailed as c4, type RefundedAsStoreCredit as c5, type PaymentPending as c6, type PaymentPendingPaymentDetailsOneOf as c7, type RegularPayment as c8, type RegularPaymentPaymentMethodDetailsOneOf as c9, type OrderSettingsEditableByOneOf as cA, type CustomAllowedActions as cB, type OwnerApps as cC, type FormInfo as cD, type FormIdentifier as cE, type PlatformFeeSummary as cF, type PlatformFee as cG, type OrderApproved as cH, type OrdersExperiments as cI, type OrderRejectedEventOrderRejected as cJ, type OrderItemsRestocked as cK, type V1RestockItem as cL, type OrderImported as cM, type ImportedOrderDeleted as cN, type PaymentStatusUpdated as cO, type FulfillmentStatusUpdated as cP, type OrderCanceledEventOrderCanceled as cQ, type OrderDeltasCommitted as cR, type CommittedDiffs as cS, type CommittedDiffsShippingUpdateInfoOneOf as cT, type ItemChangedDetails as cU, type OrderLineItemChangedDetails as cV, type LineItemDelta as cW, type LineItemDeltaDeltaOneOf as cX, type AppliedDiscountDelta as cY, type AppliedDiscountDeltaDeltaOneOf as cZ, type AdditionalFeeDelta as c_, type CreditCardDetails as ca, type PaymentCanceled as cb, type PaymentCanceledPaymentDetailsOneOf as cc, type PaymentDeclined as cd, type PaymentDeclinedPaymentDetailsOneOf as ce, type ReceiptCreated as cf, type ReceiptCreatedReceiptInfoOneOf as cg, type WixReceipt as ch, type ExternalReceipt as ci, type ReceiptSent as cj, type ReceiptSentReceiptInfoOneOf as ck, type ChargebackCreated as cl, type ChargebackReversed as cm, type CreatedBy as cn, type CreatedByStringOneOf as co, type ChannelInfo as cp, type CustomField as cq, type BalanceSummary as cr, type Balance as cs, type AdditionalFee as ct, type FulfillmentStatusesAggregate as cu, type Tags as cv, type TagList as cw, type Location as cx, type OrderSettings as cy, type OrderSettingsAllowedActionsOneOf as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type ShippingRefund as d$, type DraftOrderCommitSettings as d0, type InventoryUpdateDetails as d1, type ImportOrderRequest as d2, type ImportOrderResponse as d3, type SetOrderNumberCounterRequest as d4, type SetOrderNumberCounterResponse as d5, type BulkDeleteImportedOrdersRequest as d6, type BulkDeleteImportedOrdersResponse as d7, type DomainEvent as d8, type DomainEventBodyOneOf as d9, type SendBuyerConfirmationEmailRequest as dA, type SendBuyerConfirmationEmailResponse as dB, type SendBuyerPaymentsReceivedEmailRequest as dC, type SendBuyerPaymentsReceivedEmailResponse as dD, type SendBuyerPickupConfirmationEmailRequest as dE, type SendBuyerPickupConfirmationEmailResponse as dF, type BulkSendBuyerPickupConfirmationEmailsRequest as dG, type BulkSendBuyerPickupConfirmationEmailsResponse as dH, type SendBuyerShippingConfirmationEmailRequest as dI, type SendBuyerShippingConfirmationEmailResponse as dJ, type BulkSendBuyerShippingConfirmationEmailsRequest as dK, type BulkSendBuyerShippingConfirmationEmailsResponse as dL, type SendMerchantOrderReceivedNotificationRequest as dM, type SendMerchantOrderReceivedNotificationResponse as dN, type SendCancelRefundEmailRequest as dO, type SendCancelRefundEmailResponse as dP, type SendRefundEmailRequest as dQ, type SendRefundEmailResponse as dR, type SendMerchantOrderReceivedPushRequest as dS, type SendMerchantOrderReceivedPushResponse as dT, type PreviewEmailByTypeRequest as dU, type PreviewEmailByTypeResponse as dV, type PreviewRefundEmailRequest as dW, type RefundDetails as dX, type RefundItem as dY, type LineItemRefund as dZ, type AdditionalFeeRefund as d_, type EntityCreatedEvent as da, type RestoreInfo as db, type EntityUpdatedEvent as dc, type EntityDeletedEvent as dd, type ActionEvent as de, type MessageEnvelope as df, type IdentificationData as dg, type IdentificationDataIdOneOf as dh, type AccountInfo as di, type UpdateInternalDocumentsEvent as dj, type UpdateInternalDocumentsEventOperationOneOf as dk, type InternalDocument as dl, type InternalDocumentUpdateOperation as dm, type DeleteByIdsOperation as dn, type DeleteByFilterOperation as dp, type InternalDocumentUpdateByFilterOperation as dq, type InternalUpdateExistingOperation as dr, type VersionedDocumentUpdateOperation as ds, type VersionedDeleteByIdsOperation as dt, type VersionedDocumentId as du, type TriggerReindexRequest as dv, type TriggerReindexResponse as dw, type Empty as dx, type BatchOfTriggerReindexOrderRequest as dy, type TriggerReindexOrderRequest as dz, type PaymentCapture as e, type BulkMarkOrdersAsPaidRequest as e$, type PreviewRefundEmailResponse as e0, type PreviewCancelEmailRequest as e1, type PreviewCancelEmailResponse as e2, type PreviewCancelRefundEmailRequest as e3, type PreviewCancelRefundEmailResponse as e4, type PreviewBuyerPaymentsReceivedEmailRequest as e5, type PreviewBuyerPaymentsReceivedEmailResponse as e6, type PreviewBuyerConfirmationEmailRequest as e7, type PreviewBuyerConfirmationEmailResponse as e8, type PreviewBuyerPickupConfirmationEmailRequest as e9, type OdeditorAssigned as eA, type OdeditorUnassigned as eB, type PicassoAssigned as eC, type PicassoUnassigned as eD, type WixelAssigned as eE, type WixelUnassigned as eF, type StudioTwoAssigned as eG, type StudioTwoUnassigned as eH, type UserDomainMediaEnabled as eI, type UserDomainMediaDisabled 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 PreviewBuyerPickupConfirmationEmailResponse as ea, type PreviewShippingConfirmationEmailRequest as eb, type PreviewShippingConfirmationEmailResponse as ec, type PreviewResendDownloadLinksEmailRequest as ed, type PreviewResendDownloadLinksEmailResponse as ee, type MetaSiteSpecialEvent as ef, type MetaSiteSpecialEventPayloadOneOf as eg, type Asset as eh, type SiteCreated as ei, type SiteTransferred as ej, type SiteDeleted as ek, type DeleteContext as el, type SiteUndeleted as em, type SitePublished as en, type SiteUnpublished as eo, type SiteMarkedAsTemplate as ep, type SiteMarkedAsWixSite as eq, type ServiceProvisioned as er, type ServiceRemoved as es, type SiteRenamed as et, type SiteHardDeleted as eu, type NamespaceChanged as ev, type StudioAssigned as ew, type StudioUnassigned as ex, type SiteUrlChanged as ey, type SitePurgedExternally as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type PlatformPaging 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 Refund as fF, type RefundTransaction as fG, type RefundStatusInfo as fH, type AggregatedRefundSummary as fI, type RefundItemsBreakdown as fJ, type LineItemRefundSummary as fK, type CalculateRefundRequest as fL, type CalculateRefundItemRequest as fM, type CalculateRefundResponse as fN, type CalculateRefundItemResponse as fO, type VoidAuthorizedPaymentsRequest as fP, type CaptureAuthorizedPaymentsRequest as fQ, type ChargeSavedPaymentMethodRequest as fR, type ChargeSavedPaymentMethodResponse as fS, type DiffmatokyPayload as fT, type ErrorInformation as fU, type GetOrderRequest as fV, type GetOrderResponse as fW, type InternalQueryOrdersRequest as fX, type PlatformQuery as fY, type PlatformQueryPagingMethodOneOf as fZ, type Sorting 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 TrackingNumberEdited as g$, type CursorPaging as g0, type InternalQueryOrdersResponse as g1, type PlatformPagingMetadata as g2, type Cursors as g3, type QueryOrderRequest as g4, type QueryOrderResponse as g5, type SearchOrdersRequest as g6, type CursorSearch as g7, type CursorSearchPagingMethodOneOf as g8, type CursorPagingMetadata as g9, type BulkUnArchiveOrdersResponse as gA, type BulkUnArchiveOrdersByFilterRequest as gB, type BulkUnArchiveOrdersByFilterResponse as gC, type UpdateBuyerInfoRequest as gD, type BuyerInfoUpdate as gE, type UpdateBuyerInfoResponse as gF, type UpdateBuyerEmailRequest as gG, type UpdateBuyerEmailResponse as gH, type UpdateOrderShippingAddressRequest as gI, type UpdateOrderShippingAddressResponse as gJ, type UpdateBillingContactDetailsRequest as gK, type UpdateBillingContactDetailsResponse as gL, type UpdateOrderLineItemRequest as gM, type UpdateOrderLineItemResponse as gN, type UpdateOrderLineItemsRequest as gO, type MaskedOrderLineItem as gP, type UpdateOrderLineItemsResponse as gQ, type AddInternalActivityRequest as gR, type InternalActivity as gS, type InternalActivityContentOneOf as gT, type OrderPlaced as gU, type OrderPaid as gV, type OrderFulfilled as gW, type OrderNotFulfilled as gX, type OrderCanceled as gY, type DownloadLinkSent as gZ, type TrackingNumberAdded as g_, type CreateOrderRequest as ga, type OrderCreationSettings as gb, type OrderCreationSettingsEditableByOneOf as gc, type OrderCreateNotifications as gd, type CreateOrderResponse as ge, type UpdateOrderRequest as gf, type UpdateOrderResponse as gg, type BulkUpdateOrdersRequest as gh, type CommitDeltasRequest as gi, type DraftOrderDiffs as gj, type DraftOrderDiffsShippingUpdateInfoOneOf as gk, type DraftOrderDiffsBuyerUpdateInfoOneOf as gl, type DraftOrderDiffsBillingUpdateInfoOneOf as gm, type DraftOrderDiffsRecipientUpdateInfoOneOf as gn, type V1LineItemDelta as go, type V1LineItemDeltaDeltaOneOf as gp, type CommitDeltasResponse as gq, type ArchiveOrderRequest as gr, type ArchiveOrderResponse as gs, type BulkArchiveOrdersRequest as gt, type BulkArchiveOrdersResponse as gu, type BulkArchiveOrdersByFilterRequest as gv, type BulkArchiveOrdersByFilterResponse as gw, type UnArchiveOrderRequest as gx, type UnArchiveOrderResponse as gy, type BulkUnArchiveOrdersRequest as gz, type OrderSearch as h, type TaskAction as h$, type TrackingLinkAdded as h0, type ShippingConfirmationEmailSent as h1, type InvoiceAdded as h2, type InvoiceSent as h3, type FulfillerEmailSent as h4, type ShippingAddressEdited as h5, type EmailEdited as h6, type PickupReadyEmailSent as h7, type OrderPartiallyPaid as h8, type OrderPending as h9, type MarkAsUnfulfilledResponse as hA, type BulkMarkAsUnfulfilledRequest as hB, type BulkMarkAsUnfulfilledResponse as hC, type BulkMarkAsUnfulfilledByFilterRequest as hD, type BulkMarkAsUnfulfilledByFilterResponse as hE, type BulkSetBusinessLocationRequest as hF, type BulkSetBusinessLocationResponse as hG, type BulkSetBusinessLocationResult as hH, type V1MarkOrderAsPaidRequest as hI, type V1MarkOrderAsPaidResponse as hJ, type V1BulkMarkOrdersAsPaidRequest as hK, type V1BulkMarkOrdersAsPaidResponse as hL, type V1CreatePaymentGatewayOrderRequest as hM, type V1CreatePaymentGatewayOrderResponse as hN, type GetShipmentsRequest as hO, type GetShipmentsResponse as hP, type AggregateOrdersRequest as hQ, type AggregateOrdersResponse as hR, type DecrementItemsQuantityRequest as hS, type DecrementData as hT, type DecrementItemsQuantityResponse as hU, type BulkUpdateOrderTagsRequest as hV, type BulkUpdateOrderTagsResult as hW, type SendOrderUpdatedDomainEventRequest as hX, type SendOrderUpdatedDomainEventResponse as hY, type Task as hZ, type TaskKey as h_, type OrderRejected as ha, type AddInternalActivityResponse as hb, type AddActivityRequest as hc, type PublicActivity as hd, type PublicActivityContentOneOf as he, type AddActivityResponse as hf, type AddActivitiesRequest as hg, type UpdateActivityRequest as hh, type UpdateActivityResponse as hi, type DeleteActivityRequest as hj, type DeleteActivityResponse as hk, type UpdateLineItemsDescriptionLinesRequest as hl, type LineItemUpdate as hm, type UpdateLineItemsDescriptionLinesResponse as hn, type MarkOrderAsSeenByHumanRequest as ho, type MarkOrderAsSeenByHumanResponse as hp, type CancelOrderRequest as hq, type UpdateOrderStatusRequest as hr, type UpdateOrderStatusResponse as hs, type MarkAsFulfilledRequest as ht, type MarkAsFulfilledResponse as hu, type BulkMarkAsFulfilledRequest as hv, type BulkMarkAsFulfilledResponse as hw, type BulkMarkAsFulfilledByFilterRequest as hx, type BulkMarkAsFulfilledByFilterResponse as hy, type MarkAsUnfulfilledRequest as hz, type CreateOrderOptions as i, type WeightUnitWithLiterals as i$, type TaskActionActionOneOf as i0, type Complete as i1, type Cancel as i2, type Reschedule as i3, type InvoiceSentEvent as i4, type IdAndVersion as i5, type InvoiceFields as i6, type Customer as i7, type Email as i8, type QuotesAddress as i9, type InvoiceDynamicPriceTotals as iA, type CustomFieldValue as iB, type Value as iC, type Deposit as iD, type SetOrderNumberCounterOptions as iE, type BulkDeleteImportedOrdersOptions as iF, type RecordManuallyCollectedPaymentOptions as iG, type PaymentCollectionMarkOrderAsPaidOptions as iH, type PaymentCollectionCreatePaymentGatewayOrderOptions as iI, type ChargeMembershipsOptions as iJ, type TriggerRefundOptions as iK, type OrderSearchSpec as iL, type UpdateOrderLineItemIdentifiers as iM, type UpdateOrderLineItem as iN, type UpdateActivityIdentifiers as iO, type DeleteActivityIdentifiers as iP, type AggregateOrdersOptions as iQ, type DescriptionLineTypeWithLiterals as iR, type DimensionsUnitWithLiterals as iS, type ItemTypePresetWithLiterals as iT, type PaymentOptionTypeWithLiterals as iU, type JurisdictionTypeWithLiterals as iV, type SubscriptionFrequencyWithLiterals as iW, type AdjustmentTypeWithLiterals as iX, type TaxableAddressTypeWithLiterals as iY, type PaymentStatusWithLiterals as iZ, type FulfillmentStatusWithLiterals as i_, type AddressDescription as ia, type Phone as ib, type Company as ic, type CommonAddress as id, type CommonAddressStreetOneOf as ie, type Subdivision as ig, type StandardDetails as ih, type InvoiceDates as ii, type LineItems as ij, type LineItem as ik, type BigDecimalWrapper as il, type LineItemTax as im, type Source as io, type LineItemMetaData as ip, type Locale as iq, type TotalPrice as ir, type ItemizedFee as is, type Discount as it, type DiscountOneDiscountTypeOneOf as iu, type CalculatedTaxes as iv, type CalculatedTax as iw, type Payments as ix, type InvoicesPayment as iy, type MetaData as iz, type CreateOrderApplicationErrors as j, bulkUpdateOrderTags as j$, type VatTypeWithLiterals as j0, type PickupMethodWithLiterals as j1, type OrderStatusWithLiterals as j2, type DiscountTypeWithLiterals as j3, type DiscountReasonWithLiterals as j4, type LineItemQuantityChangeTypeWithLiterals as j5, type ActivityTypeWithLiterals as j6, type OrderActivityTypeEnumActivityTypeWithLiterals as j7, type AttributionSourceWithLiterals as j8, type ChannelTypeWithLiterals as j9, type MembershipPaymentStatusWithLiterals as jA, type RefundStatusWithLiterals as jB, type SortOrderWithLiterals as jC, type OrderApprovalStrategyWithLiterals as jD, type PlacementWithLiterals as jE, type SubdivisionTypeWithLiterals as jF, type SourceTypeWithLiterals as jG, type CustomFieldGroupWithLiterals as jH, type ValueTypeWithLiterals as jI, type DepositTypeWithLiterals as jJ, type InvoiceStatusWithLiterals as jK, type RecordManuallyCollectedPaymentApplicationErrors as jL, type PaymentCollectionMarkOrderAsPaidApplicationErrors as jM, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as jN, type TriggerRefundApplicationErrors as jO, type UpdateOrderStatusApplicationErrors as jP, type CommonSearchWithEntityContext as jQ, preparePaymentCollection as jR, getPaymentCollectabilityStatus as jS, voidAuthorizedPayments as jT, captureAuthorizedPayments as jU, getOrder as jV, createOrder as jW, updateOrder as jX, bulkUpdateOrders as jY, addActivities as jZ, cancelOrder as j_, type AdditionalFeeSourceWithLiterals as ja, type OrderActionTypeWithLiterals as jb, type ChargeTypeWithLiterals as jc, type DeltaPaymentOptionTypeWithLiterals as jd, type InventoryActionWithLiterals as je, type WebhookIdentityTypeWithLiterals as jf, type VersioningModeWithLiterals as jg, type PreviewEmailTypeWithLiterals as jh, type StateWithLiterals as ji, type SiteCreatedContextWithLiterals as jj, type NamespaceWithLiterals as jk, type DeleteStatusWithLiterals as jl, type ScheduledActionWithLiterals as jm, type DurationUnitWithLiterals as jn, type PaymentCollectabilityStatusWithLiterals as jo, type PredefinedPaymentMethodWithLiterals as jp, type RefundableStatusWithLiterals as jq, type NonRefundableReasonWithLiterals as jr, type ManuallyRefundableReasonWithLiterals as js, type RestockTypeWithLiterals as jt, type TransactionStatusWithLiterals as ju, type AuthorizationCaptureStatusWithLiterals as jv, type AuthorizationVoidStatusWithLiterals as jw, type ReasonWithLiterals as jx, type ActionTypeWithLiterals as jy, type ChargebackStatusWithLiterals as jz, type UpdateOrderApplicationErrors as k, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, DimensionsUnit as s, PaymentOptionType as t, SubscriptionFrequency as u, AdjustmentType as v, PaymentStatus as w, VatType as x, PickupMethod as y, OrderStatus as z };
|
|
8562
|
+
export { OrderActivityTypeEnumActivityType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentOptionType as E, SubscriptionFrequency as F, type GetPaymentCollectabilityStatusResponse as G, AdjustmentType as H, ItemTypePreset as I, JurisdictionType as J, PaymentStatus as K, FulfillmentStatus as L, type MaskedOrder as M, VatType as N, type Order as O, type Price as P, PickupMethod as Q, OrderStatus as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, DiscountType as X, DiscountReason as Y, LineItemQuantityChangeType as Z, ActivityType as _, type PreparePaymentCollectionOptions as a, type BillingAdjustmentPriceSummary as a$, AttributionSource as a0, ChannelType as a1, AdditionalFeeSource as a2, OrderActionType as a3, ChargeType as a4, DeltaPaymentOptionType as a5, InventoryAction as a6, WebhookIdentityType as a7, VersioningMode as a8, PreviewEmailType as a9, ValueType as aA, DepositType as aB, InvoiceStatus as aC, type OrderLineItem as aD, type ProductName as aE, type CatalogReference as aF, type DescriptionLine as aG, type DescriptionLineValueOneOf as aH, type DescriptionLineDescriptionLineValueOneOf as aI, type DescriptionLineName as aJ, type PlainTextValue as aK, type Color as aL, type FocalPoint as aM, type PhysicalProperties as aN, type Dimensions as aO, type ItemType as aP, type ItemTypeItemTypeDataOneOf as aQ, type ItemTaxFullDetails as aR, type LineItemTaxInfo as aS, type LineItemTaxBreakdown as aT, type DigitalFile as aU, type SubscriptionInfo as aV, type SubscriptionTitle as aW, type SubscriptionDescription as aX, type SubscriptionSettings as aY, type FreeTrialPeriod as aZ, type BillingAdjustment as a_, State as aa, SiteCreatedContext as ab, Namespace as ac, DeleteStatus as ad, ScheduledAction as ae, DurationUnit as af, PaymentCollectabilityStatus as ag, PredefinedPaymentMethod as ah, RefundableStatus as ai, NonRefundableReason as aj, ManuallyRefundableReason as ak, RestockType as al, TransactionStatus as am, AuthorizationCaptureStatus as an, AuthorizationVoidStatus as ao, Reason as ap, ActionType as aq, ChargebackStatus as ar, MembershipPaymentStatus as as, RefundStatus as at, SortOrder as au, OrderApprovalStrategy as av, Placement as aw, SubdivisionType as ax, SourceType as ay, CustomFieldGroup as az, type PreparePaymentCollectionResponse as b, type ShippingInformation as b$, type PriceDescription as b0, type LocationAndQuantity as b1, type TaxableAddress as b2, type TaxableAddressTaxableAddressDataOneOf as b3, type ExtendedFields as b4, type ModifierGroup as b5, type TranslatableString as b6, type ItemModifier as b7, type BuyerInfo as b8, type BuyerInfoIdOneOf as b9, type LineItemDiscount as bA, type ItemCombination as bB, type ItemCombinationLineItem as bC, type Activity as bD, type ActivityContentOneOf as bE, type CustomActivity as bF, type MerchantComment as bG, type OrderRefunded as bH, type OrderCreatedFromExchange as bI, type NewExchangeOrderCreated as bJ, type LineItemExchangeData as bK, type DraftOrderChangesApplied as bL, type OrderChange as bM, type OrderChangeValueOneOf as bN, type LineItemChanges as bO, type LineItemQuantityChange as bP, type LineItemPriceChange as bQ, type LineItemProductNameChange as bR, type LineItemDescriptionLineChange as bS, type LineItemModifiersChange as bT, type ManagedLineItem as bU, type ManagedDiscount as bV, type TranslatedValue as bW, type LineItemAmount as bX, type ManagedAdditionalFee as bY, type TotalPriceChange as bZ, type ShippingInformationChange as b_, type CurrencyConversionDetails as ba, type PriceSummary as bb, type AddressWithContact as bc, type Address as bd, type StreetAddress as be, type AddressLocation as bf, type FullAddressContactDetails as bg, type VatId as bh, type V1ShippingInformation as bi, type DeliveryLogistics as bj, type DeliveryLogisticsAddressOneOf as bk, type PickupDetails as bl, type PickupAddress as bm, type DeliveryTimeSlot as bn, type ShippingPrice as bo, type ShippingRegion as bp, type TaxSummary as bq, type OrderTaxInfo as br, type OrderTaxBreakdown as bs, type AppliedDiscount as bt, type AppliedDiscountDiscountSourceOneOf as bu, type Coupon as bv, type MerchantDiscount as bw, type MerchantDiscountMerchantDiscountReasonOneOf as bx, type DiscountRule as by, type DiscountRuleName as bz, type PreparePaymentCollectionApplicationErrors as c, type ItemChangedDetails as c$, type SavedPaymentMethod as c0, type AuthorizedPaymentCreated as c1, type AuthorizedPaymentCaptured as c2, type AuthorizedPaymentVoided as c3, type RefundInitiated as c4, type RefundedPayment as c5, type RefundedPaymentKindOneOf as c6, type RegularPaymentRefund as c7, type GiftCardPaymentRefund as c8, type MembershipPaymentRefund as c9, type AdditionalFee as cA, type FulfillmentStatusesAggregate as cB, type Tags as cC, type TagList as cD, type Location as cE, type OrderSettings as cF, type OrderSettingsAllowedActionsOneOf as cG, type OrderSettingsEditableByOneOf as cH, type CustomAllowedActions as cI, type OwnerApps as cJ, type FormInfo as cK, type FormIdentifier as cL, type PlatformFeeSummary as cM, type PlatformFee as cN, type OrderApproved as cO, type OrdersExperiments as cP, type OrderRejectedEventOrderRejected as cQ, type OrderItemsRestocked as cR, type V1RestockItem as cS, type OrderImported as cT, type ImportedOrderDeleted as cU, type PaymentStatusUpdated as cV, type FulfillmentStatusUpdated as cW, type OrderCanceledEventOrderCanceled as cX, type OrderDeltasCommitted as cY, type CommittedDiffs as cZ, type CommittedDiffsShippingUpdateInfoOneOf as c_, type PaymentRefunded as ca, type PaymentRefundFailed as cb, type RefundedAsStoreCredit as cc, type PaymentPending as cd, type PaymentPendingPaymentDetailsOneOf as ce, type RegularPayment as cf, type RegularPaymentPaymentMethodDetailsOneOf as cg, type CreditCardDetails as ch, type PaymentCanceled as ci, type PaymentCanceledPaymentDetailsOneOf as cj, type PaymentDeclined as ck, type PaymentDeclinedPaymentDetailsOneOf as cl, type ReceiptCreated as cm, type ReceiptCreatedReceiptInfoOneOf as cn, type WixReceipt as co, type ExternalReceipt as cp, type ReceiptSent as cq, type ReceiptSentReceiptInfoOneOf as cr, type ChargebackCreated as cs, type ChargebackReversed as ct, type CreatedBy as cu, type CreatedByStringOneOf as cv, type ChannelInfo as cw, type CustomField as cx, type BalanceSummary as cy, type Balance as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type PreviewEmailByTypeRequest as d$, type OrderLineItemChangedDetails as d0, type LineItemDelta as d1, type LineItemDeltaDeltaOneOf as d2, type AppliedDiscountDelta as d3, type AppliedDiscountDeltaDeltaOneOf as d4, type AdditionalFeeDelta as d5, type AdditionalFeeDeltaDeltaOneOf as d6, type DraftOrderCommitSettings as d7, type InventoryUpdateDetails as d8, type ImportOrderRequest as d9, type VersionedDeleteByIdsOperation as dA, type VersionedDocumentId as dB, type TriggerReindexRequest as dC, type TriggerReindexResponse as dD, type Empty as dE, type BatchOfTriggerReindexOrderRequest as dF, type TriggerReindexOrderRequest as dG, type SendBuyerConfirmationEmailRequest as dH, type SendBuyerConfirmationEmailResponse as dI, type SendBuyerPaymentsReceivedEmailRequest as dJ, type SendBuyerPaymentsReceivedEmailResponse as dK, type SendBuyerPickupConfirmationEmailRequest as dL, type SendBuyerPickupConfirmationEmailResponse as dM, type BulkSendBuyerPickupConfirmationEmailsRequest as dN, type BulkSendBuyerPickupConfirmationEmailsResponse as dO, type SendBuyerShippingConfirmationEmailRequest as dP, type SendBuyerShippingConfirmationEmailResponse as dQ, type BulkSendBuyerShippingConfirmationEmailsRequest as dR, type BulkSendBuyerShippingConfirmationEmailsResponse as dS, type SendMerchantOrderReceivedNotificationRequest as dT, type SendMerchantOrderReceivedNotificationResponse as dU, type SendCancelRefundEmailRequest as dV, type SendCancelRefundEmailResponse as dW, type SendRefundEmailRequest as dX, type SendRefundEmailResponse as dY, type SendMerchantOrderReceivedPushRequest as dZ, type SendMerchantOrderReceivedPushResponse as d_, type ImportOrderResponse as da, type SetOrderNumberCounterRequest as db, type SetOrderNumberCounterResponse as dc, type BulkDeleteImportedOrdersRequest as dd, type BulkDeleteImportedOrdersResponse as de, type DomainEvent as df, type DomainEventBodyOneOf as dg, type EntityCreatedEvent as dh, type RestoreInfo as di, type EntityUpdatedEvent as dj, type EntityDeletedEvent as dk, type ActionEvent as dl, type MessageEnvelope as dm, type IdentificationData as dn, type IdentificationDataIdOneOf as dp, type AccountInfo as dq, type UpdateInternalDocumentsEvent as dr, type UpdateInternalDocumentsEventOperationOneOf as ds, type InternalDocument as dt, type InternalDocumentUpdateOperation as du, type DeleteByIdsOperation as dv, type DeleteByFilterOperation as dw, type InternalDocumentUpdateByFilterOperation as dx, type InternalUpdateExistingOperation as dy, type VersionedDocumentUpdateOperation as dz, type PaymentCapture as e, type GetPaymentCollectabilityStatusRequest as e$, type PreviewEmailByTypeResponse as e0, type PreviewRefundEmailRequest as e1, type RefundDetails as e2, type RefundItem as e3, type LineItemRefund as e4, type AdditionalFeeRefund as e5, type ShippingRefund as e6, type PreviewRefundEmailResponse as e7, type PreviewCancelEmailRequest as e8, type PreviewCancelEmailResponse as e9, type SiteRenamed as eA, type SiteHardDeleted as eB, type NamespaceChanged as eC, type StudioAssigned as eD, type StudioUnassigned as eE, type SiteUrlChanged as eF, type SitePurgedExternally as eG, type OdeditorAssigned as eH, type OdeditorUnassigned as eI, type PicassoAssigned as eJ, type PicassoUnassigned as eK, type WixelAssigned as eL, type WixelUnassigned as eM, type StudioTwoAssigned as eN, type StudioTwoUnassigned as eO, type UserDomainMediaEnabled as eP, type UserDomainMediaDisabled as eQ, type HasCustomEmailConfigurationsRequest as eR, type HasCustomEmailConfigurationsResponse as eS, type AddToAutomationMigrationPopulationRequest as eT, type AddToAutomationMigrationPopulationResponse as eU, type IsInAutomationMigrationPopulationRequest as eV, type IsInAutomationMigrationPopulationResponse as eW, type PreparePaymentCollectionRequest as eX, type RedirectUrls as eY, type DelayedCaptureSettings as eZ, type Duration as e_, type PreviewCancelRefundEmailRequest as ea, type PreviewCancelRefundEmailResponse as eb, type PreviewBuyerPaymentsReceivedEmailRequest as ec, type PreviewBuyerPaymentsReceivedEmailResponse as ed, type PreviewBuyerConfirmationEmailRequest as ee, type PreviewBuyerConfirmationEmailResponse as ef, type PreviewBuyerPickupConfirmationEmailRequest as eg, type PreviewBuyerPickupConfirmationEmailResponse as eh, type PreviewShippingConfirmationEmailRequest as ei, type PreviewShippingConfirmationEmailResponse as ej, type PreviewResendDownloadLinksEmailRequest as ek, type PreviewResendDownloadLinksEmailResponse as el, type MetaSiteSpecialEvent as em, type MetaSiteSpecialEventPayloadOneOf as en, type Asset as eo, type SiteCreated as ep, type SiteTransferred as eq, type SiteDeleted as er, type DeleteContext as es, type SiteUndeleted as et, type SitePublished as eu, type SiteUnpublished as ev, type SiteMarkedAsTemplate as ew, type SiteMarkedAsWixSite as ex, type ServiceProvisioned as ey, type ServiceRemoved as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type ErrorInformation as f$, type RecordManuallyCollectedPaymentRequest as f0, type UserDefinedPaymentMethodName as f1, type UserDefinedPaymentMethodNameKindOneOf as f2, type RecordManuallyCollectedPaymentResponse as f3, type MarkOrderAsPaidRequest as f4, type MarkOrderAsPaidResponse as f5, type BulkMarkOrdersAsPaidRequest as f6, type BulkMarkOrdersAsPaidResponse as f7, type BulkOrderResult as f8, type ItemMetadata as f9, type CreditCardPaymentMethodDetails as fA, type AuthorizationDetails as fB, type AuthorizationCapture as fC, type AuthorizationActionFailureDetails as fD, type AuthorizationVoid as fE, type V1ScheduledAction as fF, type Chargeback as fG, type PaymentMethodName as fH, type GiftCardPaymentDetails as fI, type MembershipPaymentDetails as fJ, type WixReceiptInfo as fK, type ExternalReceiptInfo as fL, type Refund as fM, type RefundTransaction as fN, type RefundStatusInfo as fO, type AggregatedRefundSummary as fP, type RefundItemsBreakdown as fQ, type LineItemRefundSummary as fR, type CalculateRefundRequest as fS, type CalculateRefundItemRequest as fT, type CalculateRefundResponse as fU, type CalculateRefundItemResponse as fV, type VoidAuthorizedPaymentsRequest as fW, type CaptureAuthorizedPaymentsRequest as fX, type ChargeSavedPaymentMethodRequest as fY, type ChargeSavedPaymentMethodResponse as fZ, type DiffmatokyPayload as f_, type ApplicationError as fa, type BulkActionMetadata as fb, type GetRefundabilityStatusRequest as fc, type GetRefundabilityStatusResponse as fd, type Refundability as fe, type RefundabilityAdditionalRefundabilityInfoOneOf as ff, type CreatePaymentGatewayOrderRequest as fg, type ChargedBy as fh, type CreatePaymentGatewayOrderResponse as fi, type ChargeMembershipsRequest as fj, type MembershipChargeItem as fk, type MembershipName as fl, type ServiceProperties as fm, type ChargeMembershipsResponse as fn, type TriggerRefundRequest as fo, type PaymentRefund as fp, type RefundSideEffects as fq, type RestockInfo as fr, type RestockItem as fs, type TriggerRefundResponse as ft, type OrderTransactions as fu, type Payment as fv, type PaymentPaymentDetailsOneOf as fw, type PaymentReceiptInfoOneOf as fx, type RegularPaymentDetails as fy, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fz, type GetOrderApplicationErrors as g, type OrderPlaced as g$, type GetOrderRequest as g0, type GetOrderResponse as g1, type InternalQueryOrdersRequest as g2, type PlatformQuery as g3, type PlatformQueryPagingMethodOneOf as g4, type Sorting as g5, type PlatformPaging as g6, type CursorPaging as g7, type InternalQueryOrdersResponse as g8, type PlatformPagingMetadata as g9, type BulkArchiveOrdersRequest as gA, type BulkArchiveOrdersResponse as gB, type BulkArchiveOrdersByFilterRequest as gC, type BulkArchiveOrdersByFilterResponse as gD, type UnArchiveOrderRequest as gE, type UnArchiveOrderResponse as gF, type BulkUnArchiveOrdersRequest as gG, type BulkUnArchiveOrdersResponse as gH, type BulkUnArchiveOrdersByFilterRequest as gI, type BulkUnArchiveOrdersByFilterResponse as gJ, type UpdateBuyerInfoRequest as gK, type BuyerInfoUpdate as gL, type UpdateBuyerInfoResponse as gM, type UpdateBuyerEmailRequest as gN, type UpdateBuyerEmailResponse as gO, type UpdateOrderShippingAddressRequest as gP, type UpdateOrderShippingAddressResponse as gQ, type UpdateBillingContactDetailsRequest as gR, type UpdateBillingContactDetailsResponse as gS, type UpdateOrderLineItemRequest as gT, type UpdateOrderLineItemResponse as gU, type UpdateOrderLineItemsRequest as gV, type MaskedOrderLineItem as gW, type UpdateOrderLineItemsResponse as gX, type AddInternalActivityRequest as gY, type InternalActivity as gZ, type InternalActivityContentOneOf as g_, type Cursors as ga, type QueryOrderRequest as gb, type QueryOrderResponse as gc, type SearchOrdersRequest as gd, type CursorSearch as ge, type CursorSearchPagingMethodOneOf as gf, type CursorPagingMetadata as gg, type CreateOrderRequest as gh, type OrderCreationSettings as gi, type OrderCreationSettingsEditableByOneOf as gj, type OrderCreateNotifications as gk, type CreateOrderResponse as gl, type UpdateOrderRequest as gm, type UpdateOrderResponse as gn, type BulkUpdateOrdersRequest as go, type CommitDeltasRequest as gp, type DraftOrderDiffs as gq, type DraftOrderDiffsShippingUpdateInfoOneOf as gr, type DraftOrderDiffsBuyerUpdateInfoOneOf as gs, type DraftOrderDiffsBillingUpdateInfoOneOf as gt, type DraftOrderDiffsRecipientUpdateInfoOneOf as gu, type V1LineItemDelta as gv, type V1LineItemDeltaDeltaOneOf as gw, type CommitDeltasResponse as gx, type ArchiveOrderRequest as gy, type ArchiveOrderResponse as gz, type OrderSearch as h, type DecrementItemsQuantityResponse as h$, type OrderPaid as h0, type OrderFulfilled as h1, type OrderNotFulfilled as h2, type OrderCanceled as h3, type DownloadLinkSent as h4, type TrackingNumberAdded as h5, type TrackingNumberEdited as h6, type TrackingLinkAdded as h7, type ShippingConfirmationEmailSent as h8, type InvoiceAdded as h9, type MarkAsFulfilledRequest as hA, type MarkAsFulfilledResponse as hB, type BulkMarkAsFulfilledRequest as hC, type BulkMarkAsFulfilledResponse as hD, type BulkMarkAsFulfilledByFilterRequest as hE, type BulkMarkAsFulfilledByFilterResponse as hF, type MarkAsUnfulfilledRequest as hG, type MarkAsUnfulfilledResponse as hH, type BulkMarkAsUnfulfilledRequest as hI, type BulkMarkAsUnfulfilledResponse as hJ, type BulkMarkAsUnfulfilledByFilterRequest as hK, type BulkMarkAsUnfulfilledByFilterResponse as hL, type BulkSetBusinessLocationRequest as hM, type BulkSetBusinessLocationResponse as hN, type BulkSetBusinessLocationResult as hO, type V1MarkOrderAsPaidRequest as hP, type V1MarkOrderAsPaidResponse as hQ, type V1BulkMarkOrdersAsPaidRequest as hR, type V1BulkMarkOrdersAsPaidResponse as hS, type V1CreatePaymentGatewayOrderRequest as hT, type V1CreatePaymentGatewayOrderResponse as hU, type GetShipmentsRequest as hV, type GetShipmentsResponse as hW, type AggregateOrdersRequest as hX, type AggregateOrdersResponse as hY, type DecrementItemsQuantityRequest as hZ, type DecrementData as h_, type InvoiceSent as ha, type FulfillerEmailSent as hb, type ShippingAddressEdited as hc, type EmailEdited as hd, type PickupReadyEmailSent as he, type OrderPartiallyPaid as hf, type OrderPending as hg, type OrderRejected as hh, type AddInternalActivityResponse as hi, type AddActivityRequest as hj, type PublicActivity as hk, type PublicActivityContentOneOf as hl, type AddActivityResponse as hm, type AddActivitiesRequest as hn, type UpdateActivityRequest as ho, type UpdateActivityResponse as hp, type DeleteActivityRequest as hq, type DeleteActivityResponse as hr, type UpdateLineItemsDescriptionLinesRequest as hs, type LineItemUpdate as ht, type UpdateLineItemsDescriptionLinesResponse as hu, type MarkOrderAsSeenByHumanRequest as hv, type MarkOrderAsSeenByHumanResponse as hw, type CancelOrderRequest as hx, type UpdateOrderStatusRequest as hy, type UpdateOrderStatusResponse as hz, type CreateOrderOptions as i, type DescriptionLineTypeWithLiterals as i$, type BulkUpdateOrderTagsRequest as i0, type BulkUpdateOrderTagsResult as i1, type SendOrderUpdatedDomainEventRequest as i2, type SendOrderUpdatedDomainEventResponse as i3, type Task as i4, type TaskKey as i5, type TaskAction as i6, type TaskActionActionOneOf as i7, type Complete as i8, type Cancel as i9, type Discount as iA, type DiscountOneDiscountTypeOneOf as iB, type CalculatedTaxes as iC, type CalculatedTax as iD, type Payments as iE, type InvoicesPayment as iF, type MetaData as iG, type InvoiceDynamicPriceTotals as iH, type CustomFieldValue as iI, type Value as iJ, type Deposit as iK, type BaseEventMetadata as iL, type EventMetadata as iM, type AccountInfoMetadata as iN, type SetOrderNumberCounterOptions as iO, type BulkDeleteImportedOrdersOptions as iP, type RecordManuallyCollectedPaymentOptions as iQ, type PaymentCollectionMarkOrderAsPaidOptions as iR, type PaymentCollectionCreatePaymentGatewayOrderOptions as iS, type ChargeMembershipsOptions as iT, type TriggerRefundOptions as iU, type OrderSearchSpec as iV, type UpdateOrderLineItemIdentifiers as iW, type UpdateOrderLineItem as iX, type UpdateActivityIdentifiers as iY, type DeleteActivityIdentifiers as iZ, type AggregateOrdersOptions as i_, type Reschedule as ia, type InvoiceSentEvent as ib, type IdAndVersion as ic, type InvoiceFields as id, type Customer as ie, type Email as ig, type QuotesAddress as ih, type AddressDescription as ii, type Phone as ij, type Company as ik, type CommonAddress as il, type CommonAddressStreetOneOf as im, type Subdivision as io, type StandardDetails as ip, type InvoiceDates as iq, type LineItems as ir, type LineItem as is, type BigDecimalWrapper as it, type LineItemTax as iu, type Source as iv, type LineItemMetaData as iw, type Locale as ix, type TotalPrice as iy, type ItemizedFee as iz, type CreateOrderApplicationErrors as j, onOrderApproved as j$, type DimensionsUnitWithLiterals as j0, type ItemTypePresetWithLiterals as j1, type PaymentOptionTypeWithLiterals as j2, type JurisdictionTypeWithLiterals as j3, type SubscriptionFrequencyWithLiterals as j4, type AdjustmentTypeWithLiterals as j5, type TaxableAddressTypeWithLiterals as j6, type PaymentStatusWithLiterals as j7, type FulfillmentStatusWithLiterals as j8, type WeightUnitWithLiterals as j9, type RefundableStatusWithLiterals as jA, type NonRefundableReasonWithLiterals as jB, type ManuallyRefundableReasonWithLiterals as jC, type RestockTypeWithLiterals as jD, type TransactionStatusWithLiterals as jE, type AuthorizationCaptureStatusWithLiterals as jF, type AuthorizationVoidStatusWithLiterals as jG, type ReasonWithLiterals as jH, type ActionTypeWithLiterals as jI, type ChargebackStatusWithLiterals as jJ, type MembershipPaymentStatusWithLiterals as jK, type RefundStatusWithLiterals as jL, type SortOrderWithLiterals as jM, type OrderApprovalStrategyWithLiterals as jN, type PlacementWithLiterals as jO, type SubdivisionTypeWithLiterals as jP, type SourceTypeWithLiterals as jQ, type CustomFieldGroupWithLiterals as jR, type ValueTypeWithLiterals as jS, type DepositTypeWithLiterals as jT, type InvoiceStatusWithLiterals as jU, type RecordManuallyCollectedPaymentApplicationErrors as jV, type PaymentCollectionMarkOrderAsPaidApplicationErrors as jW, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as jX, type TriggerRefundApplicationErrors as jY, type UpdateOrderStatusApplicationErrors as jZ, type CommonSearchWithEntityContext as j_, type VatTypeWithLiterals as ja, type PickupMethodWithLiterals as jb, type OrderStatusWithLiterals as jc, type DiscountTypeWithLiterals as jd, type DiscountReasonWithLiterals as je, type LineItemQuantityChangeTypeWithLiterals as jf, type ActivityTypeWithLiterals as jg, type OrderActivityTypeEnumActivityTypeWithLiterals as jh, type AttributionSourceWithLiterals as ji, type ChannelTypeWithLiterals as jj, type AdditionalFeeSourceWithLiterals as jk, type OrderActionTypeWithLiterals as jl, type ChargeTypeWithLiterals as jm, type DeltaPaymentOptionTypeWithLiterals as jn, type InventoryActionWithLiterals as jo, type WebhookIdentityTypeWithLiterals as jp, type VersioningModeWithLiterals as jq, type PreviewEmailTypeWithLiterals as jr, type StateWithLiterals as js, type SiteCreatedContextWithLiterals as jt, type NamespaceWithLiterals as ju, type DeleteStatusWithLiterals as jv, type ScheduledActionWithLiterals as jw, type DurationUnitWithLiterals as jx, type PaymentCollectabilityStatusWithLiterals as jy, type PredefinedPaymentMethodWithLiterals as jz, type UpdateOrderApplicationErrors as k, onOrderCanceled as k0, onOrderCommitted as k1, onOrderCreated as k2, onOrderFulfilled as k3, onOrderPaymentStatusUpdated as k4, onOrderUpdated as k5, preparePaymentCollection as k6, getPaymentCollectabilityStatus as k7, voidAuthorizedPayments as k8, captureAuthorizedPayments as k9, getOrder as ka, createOrder as kb, updateOrder as kc, bulkUpdateOrders as kd, addActivities as ke, cancelOrder as kf, bulkUpdateOrderTags as kg, 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
|
-
import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } 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 } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { di as AccountInfo, de as ActionEvent, aj as ActionType, jy as ActionTypeWithLiterals, bw as Activity, bx as ActivityContentOneOf, K as ActivityType, j6 as ActivityTypeWithLiterals, hg as AddActivitiesRequest, hc as AddActivityRequest, hf as AddActivityResponse, gR as AddInternalActivityRequest, hb as AddInternalActivityResponse, eM as AddToAutomationMigrationPopulationRequest, eN as AddToAutomationMigrationPopulationResponse, ct as AdditionalFee, c_ as AdditionalFeeDelta, c$ as AdditionalFeeDeltaDeltaOneOf, d_ as AdditionalFeeRefund, X as AdditionalFeeSource, ja as AdditionalFeeSourceWithLiterals, b6 as Address, ia as AddressDescription, b8 as AddressLocation, b5 as AddressWithContact, v as AdjustmentType, iX as AdjustmentTypeWithLiterals, iQ as AggregateOrdersOptions, hQ as AggregateOrdersRequest, hR as AggregateOrdersResponse, fI as AggregatedRefundSummary, f3 as ApplicationError, bm as AppliedDiscount, cY as AppliedDiscountDelta, cZ as AppliedDiscountDeltaDeltaOneOf, bn as AppliedDiscountDiscountSourceOneOf, gr as ArchiveOrderRequest, gs as ArchiveOrderResponse, eh as Asset, Q as AttributionSource, j8 as AttributionSourceWithLiterals, fw as AuthorizationActionFailureDetails, fv as AuthorizationCapture, ag as AuthorizationCaptureStatus, jv as AuthorizationCaptureStatusWithLiterals, fu as AuthorizationDetails, fx as AuthorizationVoid, ah as AuthorizationVoidStatus, jw as AuthorizationVoidStatusWithLiterals, bX as AuthorizedPaymentCaptured, bW as AuthorizedPaymentCreated, bY as AuthorizedPaymentVoided, cs as Balance, cr as BalanceSummary, dy as BatchOfTriggerReindexOrderRequest, il as BigDecimalWrapper, aT as BillingAdjustment, aU as BillingAdjustmentPriceSummary, f4 as BulkActionMetadata, gv as BulkArchiveOrdersByFilterRequest, gw as BulkArchiveOrdersByFilterResponse, gt as BulkArchiveOrdersRequest, gu as BulkArchiveOrdersResponse, iF as BulkDeleteImportedOrdersOptions, d6 as BulkDeleteImportedOrdersRequest, d7 as BulkDeleteImportedOrdersResponse, hx as BulkMarkAsFulfilledByFilterRequest, hy as BulkMarkAsFulfilledByFilterResponse, hv as BulkMarkAsFulfilledRequest, hw as BulkMarkAsFulfilledResponse, hD as BulkMarkAsUnfulfilledByFilterRequest, hE as BulkMarkAsUnfulfilledByFilterResponse, hB as BulkMarkAsUnfulfilledRequest, hC as BulkMarkAsUnfulfilledResponse, e$ as BulkMarkOrdersAsPaidRequest, f0 as BulkMarkOrdersAsPaidResponse, f1 as BulkOrderResult, dG as BulkSendBuyerPickupConfirmationEmailsRequest, dH as BulkSendBuyerPickupConfirmationEmailsResponse, dK as BulkSendBuyerShippingConfirmationEmailsRequest, dL as BulkSendBuyerShippingConfirmationEmailsResponse, hF as BulkSetBusinessLocationRequest, hG as BulkSetBusinessLocationResponse, hH as BulkSetBusinessLocationResult, gB as BulkUnArchiveOrdersByFilterRequest, gC as BulkUnArchiveOrdersByFilterResponse, gz as BulkUnArchiveOrdersRequest, gA as BulkUnArchiveOrdersResponse, hV as BulkUpdateOrderTagsRequest, hW as BulkUpdateOrderTagsResult, gh as BulkUpdateOrdersRequest, b1 as BuyerInfo, b2 as BuyerInfoIdOneOf, gE as BuyerInfoUpdate, fM as CalculateRefundItemRequest, fO as CalculateRefundItemResponse, fL as CalculateRefundRequest, fN as CalculateRefundResponse, iw as CalculatedTax, iv as CalculatedTaxes, i2 as Cancel, hq as CancelOrderRequest, fQ as CaptureAuthorizedPaymentsRequest, ay as CatalogReference, cp as ChannelInfo, R as ChannelType, j9 as ChannelTypeWithLiterals, iJ as ChargeMembershipsOptions, fc as ChargeMembershipsRequest, fg as ChargeMembershipsResponse, fR as ChargeSavedPaymentMethodRequest, fS as ChargeSavedPaymentMethodResponse, Z as ChargeType, jc as ChargeTypeWithLiterals, fz as Chargeback, cl as ChargebackCreated, cm as ChargebackReversed, ak as ChargebackStatus, jz as ChargebackStatusWithLiterals, fa as ChargedBy, aE as Color, gi as CommitDeltasRequest, gq as CommitDeltasResponse, cS as CommittedDiffs, cT as CommittedDiffsShippingUpdateInfoOneOf, id as CommonAddress, ie as CommonAddressStreetOneOf, jQ as CommonSearchWithEntityContext, ic as Company, i1 as Complete, bo as Coupon, ga as CreateOrderRequest, ge as CreateOrderResponse, f9 as CreatePaymentGatewayOrderRequest, fb as CreatePaymentGatewayOrderResponse, cn as CreatedBy, co as CreatedByStringOneOf, ca as CreditCardDetails, ft as CreditCardPaymentMethodDetails, b3 as CurrencyConversionDetails, g0 as CursorPaging, g9 as CursorPagingMetadata, g7 as CursorSearch, g8 as CursorSearchPagingMethodOneOf, g3 as Cursors, by as CustomActivity, cB as CustomAllowedActions, cq as CustomField, as as CustomFieldGroup, jH as CustomFieldGroupWithLiterals, iB as CustomFieldValue, i7 as Customer, hT as DecrementData, hS as DecrementItemsQuantityRequest, hU as DecrementItemsQuantityResponse, eS as DelayedCaptureSettings, iP as DeleteActivityIdentifiers, hj as DeleteActivityRequest, hk as DeleteActivityResponse, dp as DeleteByFilterOperation, dn as DeleteByIdsOperation, el as DeleteContext, a6 as DeleteStatus, jl as DeleteStatusWithLiterals, bc as DeliveryLogistics, bd as DeliveryLogisticsAddressOneOf, bg as DeliveryTimeSlot, _ as DeltaPaymentOptionType, jd as DeltaPaymentOptionTypeWithLiterals, iD as Deposit, au as DepositType, jJ as DepositTypeWithLiterals, az as DescriptionLine, aB as DescriptionLineDescriptionLineValueOneOf, aC as DescriptionLineName, D as DescriptionLineType, iR as DescriptionLineTypeWithLiterals, aA as DescriptionLineValueOneOf, fT as DiffmatokyPayload, aN as DigitalFile, aH as Dimensions, s as DimensionsUnit, iS as DimensionsUnitWithLiterals, it as Discount, iu as DiscountOneDiscountTypeOneOf, H as DiscountReason, j4 as DiscountReasonWithLiterals, br as DiscountRule, bs as DiscountRuleName, E as DiscountType, j3 as DiscountTypeWithLiterals, d8 as DomainEvent, d9 as DomainEventBodyOneOf, gZ as DownloadLinkSent, bE as DraftOrderChangesApplied, d0 as DraftOrderCommitSettings, gj as DraftOrderDiffs, gm as DraftOrderDiffsBillingUpdateInfoOneOf, gl as DraftOrderDiffsBuyerUpdateInfoOneOf, gn as DraftOrderDiffsRecipientUpdateInfoOneOf, gk as DraftOrderDiffsShippingUpdateInfoOneOf, eT as Duration, a8 as DurationUnit, jn as DurationUnitWithLiterals, i8 as Email, h6 as EmailEdited, dx as Empty, da as EntityCreatedEvent, dd as EntityDeletedEvent, dc as EntityUpdatedEvent, fU as ErrorInformation, aZ as ExtendedFields, ci as ExternalReceipt, fE as ExternalReceiptInfo, aF as FocalPoint, cE as FormIdentifier, cD as FormInfo, aS as FreeTrialPeriod, h4 as FulfillerEmailSent, F as FulfillmentStatus, cP as FulfillmentStatusUpdated, i_ as FulfillmentStatusWithLiterals, cu as FulfillmentStatusesAggregate, b9 as FullAddressContactDetails, fV as GetOrderRequest, fW as GetOrderResponse, eU as GetPaymentCollectabilityStatusRequest, f5 as GetRefundabilityStatusRequest, f6 as GetRefundabilityStatusResponse, hO as GetShipmentsRequest, hP as GetShipmentsResponse, fB as GiftCardPaymentDetails, c1 as GiftCardPaymentRefund, eK as HasCustomEmailConfigurationsRequest, eL as HasCustomEmailConfigurationsResponse, i5 as IdAndVersion, dg as IdentificationData, dh as IdentificationDataIdOneOf, d2 as ImportOrderRequest, d3 as ImportOrderResponse, cN as ImportedOrderDeleted, gS as InternalActivity, gT as InternalActivityContentOneOf, dl as InternalDocument, dq as InternalDocumentUpdateByFilterOperation, dm as InternalDocumentUpdateOperation, fX as InternalQueryOrdersRequest, g1 as InternalQueryOrdersResponse, dr as InternalUpdateExistingOperation, $ as InventoryAction, je as InventoryActionWithLiterals, d1 as InventoryUpdateDetails, h2 as InvoiceAdded, ii as InvoiceDates, iA as InvoiceDynamicPriceTotals, i6 as InvoiceFields, h3 as InvoiceSent, i4 as InvoiceSentEvent, av as InvoiceStatus, jK as InvoiceStatusWithLiterals, iy as InvoicesPayment, eO as IsInAutomationMigrationPopulationRequest, eP as IsInAutomationMigrationPopulationResponse, cU as ItemChangedDetails, bu as ItemCombination, bv as ItemCombinationLineItem, f2 as ItemMetadata, b0 as ItemModifier, aK as ItemTaxFullDetails, aI as ItemType, aJ as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, iT as ItemTypePresetWithLiterals, is as ItemizedFee, J as JurisdictionType, iV as JurisdictionTypeWithLiterals, ik as LineItem, bQ as LineItemAmount, bH as LineItemChanges, cW as LineItemDelta, cX as LineItemDeltaDeltaOneOf, bL as LineItemDescriptionLineChange, bt as LineItemDiscount, bD as LineItemExchangeData, ip as LineItemMetaData, bM as LineItemModifiersChange, bJ as LineItemPriceChange, bK as LineItemProductNameChange, bI as LineItemQuantityChange, L as LineItemQuantityChangeType, j5 as LineItemQuantityChangeTypeWithLiterals, dZ as LineItemRefund, fK as LineItemRefundSummary, im as LineItemTax, aM as LineItemTaxBreakdown, aL as LineItemTaxInfo, hm as LineItemUpdate, ij as LineItems, iq as Locale, cx as Location, aW as LocationAndQuantity, bR as ManagedAdditionalFee, bO as ManagedDiscount, bN as ManagedLineItem, ad as ManuallyRefundableReason, js as ManuallyRefundableReasonWithLiterals, ht as MarkAsFulfilledRequest, hu as MarkAsFulfilledResponse, hz as MarkAsUnfulfilledRequest, hA as MarkAsUnfulfilledResponse, eZ as MarkOrderAsPaidRequest, e_ as MarkOrderAsPaidResponse, ho as MarkOrderAsSeenByHumanRequest, hp as MarkOrderAsSeenByHumanResponse, gP as MaskedOrderLineItem, fd as MembershipChargeItem, fe as MembershipName, fC as MembershipPaymentDetails, c2 as MembershipPaymentRefund, al as MembershipPaymentStatus, jA as MembershipPaymentStatusWithLiterals, bz as MerchantComment, bp as MerchantDiscount, bq as MerchantDiscountMerchantDiscountReasonOneOf, df as MessageEnvelope, iz as MetaData, ef as MetaSiteSpecialEvent, eg as MetaSiteSpecialEventPayloadOneOf, a_ as ModifierGroup, a5 as Namespace, ev as NamespaceChanged, jk as NamespaceWithLiterals, bC as NewExchangeOrderCreated, ac as NonRefundableReason, jr as NonRefundableReasonWithLiterals, eA as OdeditorAssigned, eB as OdeditorUnassigned, Y as OrderActionType, jb as OrderActionTypeWithLiterals, N as OrderActivityTypeEnumActivityType, j7 as OrderActivityTypeEnumActivityTypeWithLiterals, ao as OrderApprovalStrategy, jD as OrderApprovalStrategyWithLiterals, cH as OrderApproved, gY as OrderCanceled, cQ as OrderCanceledEventOrderCanceled, bF as OrderChange, bG as OrderChangeValueOneOf, gd as OrderCreateNotifications, bB as OrderCreatedFromExchange, gb as OrderCreationSettings, gc as OrderCreationSettingsEditableByOneOf, cR as OrderDeltasCommitted, gW as OrderFulfilled, cM as OrderImported, cK as OrderItemsRestocked, aw as OrderLineItem, cV as OrderLineItemChangedDetails, gX as OrderNotFulfilled, gV as OrderPaid, h8 as OrderPartiallyPaid, h9 as OrderPending, gU as OrderPlaced, bA as OrderRefunded, ha as OrderRejected, cJ as OrderRejectedEventOrderRejected, iL as OrderSearchSpec, cy as OrderSettings, cz as OrderSettingsAllowedActionsOneOf, cA as OrderSettingsEditableByOneOf, z as OrderStatus, j2 as OrderStatusWithLiterals, bl as OrderTaxBreakdown, bk as OrderTaxInfo, fn as OrderTransactions, cI as OrdersExperiments, cC as OwnerApps, fo as Payment, cb as PaymentCanceled, cc as PaymentCanceledPaymentDetailsOneOf, a9 as PaymentCollectabilityStatus, jo as PaymentCollectabilityStatusWithLiterals, jN as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, iI as PaymentCollectionCreatePaymentGatewayOrderOptions, jM as PaymentCollectionMarkOrderAsPaidApplicationErrors, iH as PaymentCollectionMarkOrderAsPaidOptions, cd as PaymentDeclined, ce as PaymentDeclinedPaymentDetailsOneOf, fA as PaymentMethodName, t as PaymentOptionType, iU as PaymentOptionTypeWithLiterals, fp as PaymentPaymentDetailsOneOf, c6 as PaymentPending, c7 as PaymentPendingPaymentDetailsOneOf, fq as PaymentReceiptInfoOneOf, fi as PaymentRefund, c4 as PaymentRefundFailed, c3 as PaymentRefunded, w as PaymentStatus, cO as PaymentStatusUpdated, iZ as PaymentStatusWithLiterals, ix as Payments, ib as Phone, aG as PhysicalProperties, eC as PicassoAssigned, eD as PicassoUnassigned, bf as PickupAddress, be as PickupDetails, y as PickupMethod, j1 as PickupMethodWithLiterals, h7 as PickupReadyEmailSent, ap as Placement, jE as PlacementWithLiterals, aD as PlainTextValue, cG as PlatformFee, cF as PlatformFeeSummary, f$ as PlatformPaging, g2 as PlatformPagingMetadata, fY as PlatformQuery, fZ as PlatformQueryPagingMethodOneOf, aa as PredefinedPaymentMethod, jp as PredefinedPaymentMethodWithLiterals, eQ as PreparePaymentCollectionRequest, e7 as PreviewBuyerConfirmationEmailRequest, e8 as PreviewBuyerConfirmationEmailResponse, e5 as PreviewBuyerPaymentsReceivedEmailRequest, e6 as PreviewBuyerPaymentsReceivedEmailResponse, e9 as PreviewBuyerPickupConfirmationEmailRequest, ea as PreviewBuyerPickupConfirmationEmailResponse, e1 as PreviewCancelEmailRequest, e2 as PreviewCancelEmailResponse, e3 as PreviewCancelRefundEmailRequest, e4 as PreviewCancelRefundEmailResponse, dU as PreviewEmailByTypeRequest, dV as PreviewEmailByTypeResponse, a2 as PreviewEmailType, jh as PreviewEmailTypeWithLiterals, dW as PreviewRefundEmailRequest, e0 as PreviewRefundEmailResponse, ed as PreviewResendDownloadLinksEmailRequest, ee as PreviewResendDownloadLinksEmailResponse, eb as PreviewShippingConfirmationEmailRequest, ec as PreviewShippingConfirmationEmailResponse, aV as PriceDescription, b4 as PriceSummary, ax as ProductName, hd as PublicActivity, he as PublicActivityContentOneOf, g4 as QueryOrderRequest, g5 as QueryOrderResponse, i9 as QuotesAddress, ai as Reason, jx as ReasonWithLiterals, cf as ReceiptCreated, cg as ReceiptCreatedReceiptInfoOneOf, cj as ReceiptSent, ck as ReceiptSentReceiptInfoOneOf, jL as RecordManuallyCollectedPaymentApplicationErrors, iG as RecordManuallyCollectedPaymentOptions, eV as RecordManuallyCollectedPaymentRequest, eY as RecordManuallyCollectedPaymentResponse, eR as RedirectUrls, fF as Refund, dX as RefundDetails, bZ as RefundInitiated, dY as RefundItem, fJ as RefundItemsBreakdown, fj as RefundSideEffects, am as RefundStatus, fH as RefundStatusInfo, jB as RefundStatusWithLiterals, fG as RefundTransaction, f7 as Refundability, f8 as RefundabilityAdditionalRefundabilityInfoOneOf, ab as RefundableStatus, jq as RefundableStatusWithLiterals, c5 as RefundedAsStoreCredit, b_ as RefundedPayment, b$ as RefundedPaymentKindOneOf, c8 as RegularPayment, fr as RegularPaymentDetails, fs as RegularPaymentDetailsPaymentMethodDetailsOneOf, c9 as RegularPaymentPaymentMethodDetailsOneOf, c0 as RegularPaymentRefund, i3 as Reschedule, fk as RestockInfo, fl as RestockItem, ae as RestockType, jt as RestockTypeWithLiterals, db as RestoreInfo, bV as SavedPaymentMethod, a7 as ScheduledAction, jm as ScheduledActionWithLiterals, g6 as SearchOrdersRequest, dA as SendBuyerConfirmationEmailRequest, dB as SendBuyerConfirmationEmailResponse, dC as SendBuyerPaymentsReceivedEmailRequest, dD as SendBuyerPaymentsReceivedEmailResponse, dE as SendBuyerPickupConfirmationEmailRequest, dF as SendBuyerPickupConfirmationEmailResponse, dI as SendBuyerShippingConfirmationEmailRequest, dJ as SendBuyerShippingConfirmationEmailResponse, dO as SendCancelRefundEmailRequest, dP as SendCancelRefundEmailResponse, dM as SendMerchantOrderReceivedNotificationRequest, dN as SendMerchantOrderReceivedNotificationResponse, dS as SendMerchantOrderReceivedPushRequest, dT as SendMerchantOrderReceivedPushResponse, hX as SendOrderUpdatedDomainEventRequest, hY as SendOrderUpdatedDomainEventResponse, dQ as SendRefundEmailRequest, dR as SendRefundEmailResponse, ff as ServiceProperties, er as ServiceProvisioned, es as ServiceRemoved, iE as SetOrderNumberCounterOptions, d4 as SetOrderNumberCounterRequest, d5 as SetOrderNumberCounterResponse, h5 as ShippingAddressEdited, h1 as ShippingConfirmationEmailSent, bU as ShippingInformation, bT as ShippingInformationChange, bh as ShippingPrice, d$ as ShippingRefund, bi as ShippingRegion, ei as SiteCreated, a4 as SiteCreatedContext, jj as SiteCreatedContextWithLiterals, ek as SiteDeleted, eu as SiteHardDeleted, ep as SiteMarkedAsTemplate, eq as SiteMarkedAsWixSite, en as SitePublished, ez as SitePurgedExternally, et as SiteRenamed, ej as SiteTransferred, em as SiteUndeleted, eo as SiteUnpublished, ey as SiteUrlChanged, an as SortOrder, jC as SortOrderWithLiterals, f_ as Sorting, io as Source, ar as SourceType, jG as SourceTypeWithLiterals, ih as StandardDetails, a3 as State, ji as StateWithLiterals, b7 as StreetAddress, ew as StudioAssigned, eG as StudioTwoAssigned, eH as StudioTwoUnassigned, ex as StudioUnassigned, ig as Subdivision, aq as SubdivisionType, jF as SubdivisionTypeWithLiterals, aQ as SubscriptionDescription, u as SubscriptionFrequency, iW as SubscriptionFrequencyWithLiterals, aO as SubscriptionInfo, aR as SubscriptionSettings, aP as SubscriptionTitle, cw as TagList, cv as Tags, hZ as Task, h$ as TaskAction, i0 as TaskActionActionOneOf, h_ as TaskKey, bj as TaxSummary, aX as TaxableAddress, aY as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, iY as TaxableAddressTypeWithLiterals, ir as TotalPrice, bS as TotalPriceChange, h0 as TrackingLinkAdded, g_ as TrackingNumberAdded, g$ as TrackingNumberEdited, af as TransactionStatus, ju as TransactionStatusWithLiterals, a$ as TranslatableString, bP as TranslatedValue, jO as TriggerRefundApplicationErrors, iK as TriggerRefundOptions, fh as TriggerRefundRequest, fm as TriggerRefundResponse, dz as TriggerReindexOrderRequest, dv as TriggerReindexRequest, dw as TriggerReindexResponse, gx as UnArchiveOrderRequest, gy as UnArchiveOrderResponse, iO as UpdateActivityIdentifiers, hh as UpdateActivityRequest, hi as UpdateActivityResponse, gK as UpdateBillingContactDetailsRequest, gL as UpdateBillingContactDetailsResponse, gG as UpdateBuyerEmailRequest, gH as UpdateBuyerEmailResponse, gD as UpdateBuyerInfoRequest, gF as UpdateBuyerInfoResponse, dj as UpdateInternalDocumentsEvent, dk as UpdateInternalDocumentsEventOperationOneOf, hl as UpdateLineItemsDescriptionLinesRequest, hn as UpdateLineItemsDescriptionLinesResponse, iN as UpdateOrderLineItem, iM as UpdateOrderLineItemIdentifiers, gM as UpdateOrderLineItemRequest, gN as UpdateOrderLineItemResponse, gO as UpdateOrderLineItemsRequest, gQ as UpdateOrderLineItemsResponse, gf as UpdateOrderRequest, gg as UpdateOrderResponse, gI as UpdateOrderShippingAddressRequest, gJ as UpdateOrderShippingAddressResponse, jP as UpdateOrderStatusApplicationErrors, hr as UpdateOrderStatusRequest, hs as UpdateOrderStatusResponse, eW as UserDefinedPaymentMethodName, eX as UserDefinedPaymentMethodNameKindOneOf, eJ as UserDomainMediaDisabled, eI as UserDomainMediaEnabled, hK as V1BulkMarkOrdersAsPaidRequest, hL as V1BulkMarkOrdersAsPaidResponse, hM as V1CreatePaymentGatewayOrderRequest, hN as V1CreatePaymentGatewayOrderResponse, go as V1LineItemDelta, gp as V1LineItemDeltaDeltaOneOf, hI as V1MarkOrderAsPaidRequest, hJ as V1MarkOrderAsPaidResponse, cL as V1RestockItem, fy as V1ScheduledAction, bb as V1ShippingInformation, iC as Value, at as ValueType, jI as ValueTypeWithLiterals, ba as VatId, x as VatType, j0 as VatTypeWithLiterals, dt as VersionedDeleteByIdsOperation, du as VersionedDocumentId, ds as VersionedDocumentUpdateOperation, a1 as VersioningMode, jg as VersioningModeWithLiterals, fP as VoidAuthorizedPaymentsRequest, a0 as WebhookIdentityType, jf as WebhookIdentityTypeWithLiterals, W as WeightUnit, i$ as WeightUnitWithLiterals, ch as WixReceipt, fD as WixReceiptInfo, eE as WixelAssigned, eF as WixelUnassigned } from './ecom-v1-order-orders.universal-BPhC1t-c.js';
|
|
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-CcrfIADf.js';
|
|
3
|
+
export { dq as AccountInfo, iN as AccountInfoMetadata, dl as ActionEvent, aq as ActionType, jI as ActionTypeWithLiterals, bD as Activity, bE as ActivityContentOneOf, _ as ActivityType, jg as ActivityTypeWithLiterals, hn as AddActivitiesRequest, hj as AddActivityRequest, hm as AddActivityResponse, gY as AddInternalActivityRequest, hi as AddInternalActivityResponse, eT as AddToAutomationMigrationPopulationRequest, eU as AddToAutomationMigrationPopulationResponse, cA as AdditionalFee, d5 as AdditionalFeeDelta, d6 as AdditionalFeeDeltaDeltaOneOf, e5 as AdditionalFeeRefund, a2 as AdditionalFeeSource, jk as AdditionalFeeSourceWithLiterals, bd as Address, ii as AddressDescription, bf as AddressLocation, bc as AddressWithContact, H as AdjustmentType, j5 as AdjustmentTypeWithLiterals, i_ as AggregateOrdersOptions, hX as AggregateOrdersRequest, hY as AggregateOrdersResponse, fP as AggregatedRefundSummary, fa as ApplicationError, bt as AppliedDiscount, d3 as AppliedDiscountDelta, d4 as AppliedDiscountDeltaDeltaOneOf, bu as AppliedDiscountDiscountSourceOneOf, gy as ArchiveOrderRequest, gz as ArchiveOrderResponse, eo as Asset, a0 as AttributionSource, ji as AttributionSourceWithLiterals, fD as AuthorizationActionFailureDetails, fC as AuthorizationCapture, an as AuthorizationCaptureStatus, jF as AuthorizationCaptureStatusWithLiterals, fB as AuthorizationDetails, fE as AuthorizationVoid, ao as AuthorizationVoidStatus, jG as AuthorizationVoidStatusWithLiterals, c2 as AuthorizedPaymentCaptured, c1 as AuthorizedPaymentCreated, c3 as AuthorizedPaymentVoided, cz as Balance, cy as BalanceSummary, iL as BaseEventMetadata, dF as BatchOfTriggerReindexOrderRequest, it as BigDecimalWrapper, a_ as BillingAdjustment, a$ as BillingAdjustmentPriceSummary, fb as BulkActionMetadata, gC as BulkArchiveOrdersByFilterRequest, gD as BulkArchiveOrdersByFilterResponse, gA as BulkArchiveOrdersRequest, gB as BulkArchiveOrdersResponse, iP as BulkDeleteImportedOrdersOptions, dd as BulkDeleteImportedOrdersRequest, de as BulkDeleteImportedOrdersResponse, hE as BulkMarkAsFulfilledByFilterRequest, hF as BulkMarkAsFulfilledByFilterResponse, hC as BulkMarkAsFulfilledRequest, hD as BulkMarkAsFulfilledResponse, hK as BulkMarkAsUnfulfilledByFilterRequest, hL as BulkMarkAsUnfulfilledByFilterResponse, hI as BulkMarkAsUnfulfilledRequest, hJ as BulkMarkAsUnfulfilledResponse, f6 as BulkMarkOrdersAsPaidRequest, f7 as BulkMarkOrdersAsPaidResponse, f8 as BulkOrderResult, dN as BulkSendBuyerPickupConfirmationEmailsRequest, dO as BulkSendBuyerPickupConfirmationEmailsResponse, dR as BulkSendBuyerShippingConfirmationEmailsRequest, dS as BulkSendBuyerShippingConfirmationEmailsResponse, hM as BulkSetBusinessLocationRequest, hN as BulkSetBusinessLocationResponse, hO as BulkSetBusinessLocationResult, gI as BulkUnArchiveOrdersByFilterRequest, gJ as BulkUnArchiveOrdersByFilterResponse, gG as BulkUnArchiveOrdersRequest, gH as BulkUnArchiveOrdersResponse, i0 as BulkUpdateOrderTagsRequest, i1 as BulkUpdateOrderTagsResult, go as BulkUpdateOrdersRequest, b8 as BuyerInfo, b9 as BuyerInfoIdOneOf, gL as BuyerInfoUpdate, fT as CalculateRefundItemRequest, fV as CalculateRefundItemResponse, fS as CalculateRefundRequest, fU as CalculateRefundResponse, iD as CalculatedTax, iC as CalculatedTaxes, i9 as Cancel, hx as CancelOrderRequest, fX as CaptureAuthorizedPaymentsRequest, aF as CatalogReference, cw as ChannelInfo, a1 as ChannelType, jj as ChannelTypeWithLiterals, iT as ChargeMembershipsOptions, fj as ChargeMembershipsRequest, fn as ChargeMembershipsResponse, fY as ChargeSavedPaymentMethodRequest, fZ as ChargeSavedPaymentMethodResponse, a4 as ChargeType, jm as ChargeTypeWithLiterals, fG as Chargeback, cs as ChargebackCreated, ct as ChargebackReversed, ar as ChargebackStatus, jJ as ChargebackStatusWithLiterals, fh as ChargedBy, aL as Color, gp as CommitDeltasRequest, gx as CommitDeltasResponse, cZ as CommittedDiffs, c_ as CommittedDiffsShippingUpdateInfoOneOf, il as CommonAddress, im as CommonAddressStreetOneOf, j_ as CommonSearchWithEntityContext, ik as Company, i8 as Complete, bv as Coupon, gh as CreateOrderRequest, gl as CreateOrderResponse, fg as CreatePaymentGatewayOrderRequest, fi as CreatePaymentGatewayOrderResponse, cu as CreatedBy, cv as CreatedByStringOneOf, ch as CreditCardDetails, fA as CreditCardPaymentMethodDetails, ba as CurrencyConversionDetails, g7 as CursorPaging, gg as CursorPagingMetadata, ge as CursorSearch, gf as CursorSearchPagingMethodOneOf, ga as Cursors, bF as CustomActivity, cI as CustomAllowedActions, cx as CustomField, az as CustomFieldGroup, jR as CustomFieldGroupWithLiterals, iI as CustomFieldValue, ie as Customer, h_ as DecrementData, hZ as DecrementItemsQuantityRequest, h$ as DecrementItemsQuantityResponse, eZ as DelayedCaptureSettings, iZ as DeleteActivityIdentifiers, hq as DeleteActivityRequest, hr as DeleteActivityResponse, dw as DeleteByFilterOperation, dv as DeleteByIdsOperation, es as DeleteContext, ad as DeleteStatus, jv as DeleteStatusWithLiterals, bj as DeliveryLogistics, bk as DeliveryLogisticsAddressOneOf, bn as DeliveryTimeSlot, a5 as DeltaPaymentOptionType, jn as DeltaPaymentOptionTypeWithLiterals, iK as Deposit, aB as DepositType, jT as DepositTypeWithLiterals, aG as DescriptionLine, aI as DescriptionLineDescriptionLineValueOneOf, aJ as DescriptionLineName, D as DescriptionLineType, i$ as DescriptionLineTypeWithLiterals, aH as DescriptionLineValueOneOf, f_ as DiffmatokyPayload, aU as DigitalFile, aO as Dimensions, z as DimensionsUnit, j0 as DimensionsUnitWithLiterals, iA as Discount, iB as DiscountOneDiscountTypeOneOf, Y as DiscountReason, je as DiscountReasonWithLiterals, by as DiscountRule, bz as DiscountRuleName, X as DiscountType, jd as DiscountTypeWithLiterals, df as DomainEvent, dg as DomainEventBodyOneOf, h4 as DownloadLinkSent, bL as DraftOrderChangesApplied, d7 as DraftOrderCommitSettings, gq as DraftOrderDiffs, gt as DraftOrderDiffsBillingUpdateInfoOneOf, gs as DraftOrderDiffsBuyerUpdateInfoOneOf, gu as DraftOrderDiffsRecipientUpdateInfoOneOf, gr as DraftOrderDiffsShippingUpdateInfoOneOf, e_ as Duration, af as DurationUnit, jx as DurationUnitWithLiterals, ig as Email, hd as EmailEdited, dE as Empty, dh as EntityCreatedEvent, dk as EntityDeletedEvent, dj as EntityUpdatedEvent, f$ as ErrorInformation, iM as EventMetadata, b4 as ExtendedFields, cp as ExternalReceipt, fL as ExternalReceiptInfo, aM as FocalPoint, cL as FormIdentifier, cK as FormInfo, aZ as FreeTrialPeriod, hb as FulfillerEmailSent, L as FulfillmentStatus, cW as FulfillmentStatusUpdated, j8 as FulfillmentStatusWithLiterals, cB as FulfillmentStatusesAggregate, bg as FullAddressContactDetails, g0 as GetOrderRequest, g1 as GetOrderResponse, e$ as GetPaymentCollectabilityStatusRequest, fc as GetRefundabilityStatusRequest, fd as GetRefundabilityStatusResponse, hV as GetShipmentsRequest, hW as GetShipmentsResponse, fI as GiftCardPaymentDetails, c8 as GiftCardPaymentRefund, eR as HasCustomEmailConfigurationsRequest, eS as HasCustomEmailConfigurationsResponse, ic as IdAndVersion, dn as IdentificationData, dp as IdentificationDataIdOneOf, d9 as ImportOrderRequest, da as ImportOrderResponse, cU as ImportedOrderDeleted, gZ as InternalActivity, g_ as InternalActivityContentOneOf, dt as InternalDocument, dx as InternalDocumentUpdateByFilterOperation, du as InternalDocumentUpdateOperation, g2 as InternalQueryOrdersRequest, g8 as InternalQueryOrdersResponse, dy as InternalUpdateExistingOperation, a6 as InventoryAction, jo as InventoryActionWithLiterals, d8 as InventoryUpdateDetails, h9 as InvoiceAdded, iq as InvoiceDates, iH as InvoiceDynamicPriceTotals, id as InvoiceFields, ha as InvoiceSent, ib as InvoiceSentEvent, aC as InvoiceStatus, jU as InvoiceStatusWithLiterals, iF as InvoicesPayment, eV as IsInAutomationMigrationPopulationRequest, eW as IsInAutomationMigrationPopulationResponse, c$ as ItemChangedDetails, bB as ItemCombination, bC as ItemCombinationLineItem, f9 as ItemMetadata, b7 as ItemModifier, aR as ItemTaxFullDetails, aP as ItemType, aQ as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, j1 as ItemTypePresetWithLiterals, iz as ItemizedFee, J as JurisdictionType, j3 as JurisdictionTypeWithLiterals, is as LineItem, bX as LineItemAmount, bO as LineItemChanges, d1 as LineItemDelta, d2 as LineItemDeltaDeltaOneOf, bS as LineItemDescriptionLineChange, bA as LineItemDiscount, bK as LineItemExchangeData, iw as LineItemMetaData, bT as LineItemModifiersChange, bQ as LineItemPriceChange, bR as LineItemProductNameChange, bP as LineItemQuantityChange, Z as LineItemQuantityChangeType, jf as LineItemQuantityChangeTypeWithLiterals, e4 as LineItemRefund, fR as LineItemRefundSummary, iu as LineItemTax, aT as LineItemTaxBreakdown, aS as LineItemTaxInfo, ht as LineItemUpdate, ir as LineItems, ix as Locale, cE as Location, b1 as LocationAndQuantity, bY as ManagedAdditionalFee, bV as ManagedDiscount, bU as ManagedLineItem, ak as ManuallyRefundableReason, jC as ManuallyRefundableReasonWithLiterals, hA as MarkAsFulfilledRequest, hB as MarkAsFulfilledResponse, hG as MarkAsUnfulfilledRequest, hH as MarkAsUnfulfilledResponse, f4 as MarkOrderAsPaidRequest, f5 as MarkOrderAsPaidResponse, hv as MarkOrderAsSeenByHumanRequest, hw as MarkOrderAsSeenByHumanResponse, gW as MaskedOrderLineItem, fk as MembershipChargeItem, fl as MembershipName, fJ as MembershipPaymentDetails, c9 as MembershipPaymentRefund, as as MembershipPaymentStatus, jK as MembershipPaymentStatusWithLiterals, bG as MerchantComment, bw as MerchantDiscount, bx as MerchantDiscountMerchantDiscountReasonOneOf, dm as MessageEnvelope, iG as MetaData, em as MetaSiteSpecialEvent, en as MetaSiteSpecialEventPayloadOneOf, b5 as ModifierGroup, ac as Namespace, eC as NamespaceChanged, ju as NamespaceWithLiterals, bJ as NewExchangeOrderCreated, aj as NonRefundableReason, jB as NonRefundableReasonWithLiterals, eH as OdeditorAssigned, eI as OdeditorUnassigned, a3 as OrderActionType, jl as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, jh as OrderActivityTypeEnumActivityTypeWithLiterals, av as OrderApprovalStrategy, jN as OrderApprovalStrategyWithLiterals, cO as OrderApproved, h3 as OrderCanceled, cX as OrderCanceledEventOrderCanceled, bM as OrderChange, bN as OrderChangeValueOneOf, gk as OrderCreateNotifications, bI as OrderCreatedFromExchange, gi as OrderCreationSettings, gj as OrderCreationSettingsEditableByOneOf, cY as OrderDeltasCommitted, h1 as OrderFulfilled, cT as OrderImported, cR as OrderItemsRestocked, aD as OrderLineItem, d0 as OrderLineItemChangedDetails, h2 as OrderNotFulfilled, h0 as OrderPaid, hf as OrderPartiallyPaid, hg as OrderPending, g$ as OrderPlaced, bH as OrderRefunded, hh as OrderRejected, cQ as OrderRejectedEventOrderRejected, iV as OrderSearchSpec, cF as OrderSettings, cG as OrderSettingsAllowedActionsOneOf, cH as OrderSettingsEditableByOneOf, R as OrderStatus, jc as OrderStatusWithLiterals, bs as OrderTaxBreakdown, br as OrderTaxInfo, fu as OrderTransactions, cP as OrdersExperiments, cJ as OwnerApps, fv as Payment, ci as PaymentCanceled, cj as PaymentCanceledPaymentDetailsOneOf, ag as PaymentCollectabilityStatus, jy as PaymentCollectabilityStatusWithLiterals, jX as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, iS as PaymentCollectionCreatePaymentGatewayOrderOptions, jW as PaymentCollectionMarkOrderAsPaidApplicationErrors, iR as PaymentCollectionMarkOrderAsPaidOptions, ck as PaymentDeclined, cl as PaymentDeclinedPaymentDetailsOneOf, fH as PaymentMethodName, E as PaymentOptionType, j2 as PaymentOptionTypeWithLiterals, fw as PaymentPaymentDetailsOneOf, cd as PaymentPending, ce as PaymentPendingPaymentDetailsOneOf, fx as PaymentReceiptInfoOneOf, fp as PaymentRefund, cb as PaymentRefundFailed, ca as PaymentRefunded, K as PaymentStatus, cV as PaymentStatusUpdated, j7 as PaymentStatusWithLiterals, iE as Payments, ij as Phone, aN as PhysicalProperties, eJ as PicassoAssigned, eK as PicassoUnassigned, bm as PickupAddress, bl as PickupDetails, Q as PickupMethod, jb as PickupMethodWithLiterals, he as PickupReadyEmailSent, aw as Placement, jO as PlacementWithLiterals, aK as PlainTextValue, cN as PlatformFee, cM as PlatformFeeSummary, g6 as PlatformPaging, g9 as PlatformPagingMetadata, g3 as PlatformQuery, g4 as PlatformQueryPagingMethodOneOf, ah as PredefinedPaymentMethod, jz as PredefinedPaymentMethodWithLiterals, eX as PreparePaymentCollectionRequest, ee as PreviewBuyerConfirmationEmailRequest, ef as PreviewBuyerConfirmationEmailResponse, ec as PreviewBuyerPaymentsReceivedEmailRequest, ed as PreviewBuyerPaymentsReceivedEmailResponse, eg as PreviewBuyerPickupConfirmationEmailRequest, eh as PreviewBuyerPickupConfirmationEmailResponse, e8 as PreviewCancelEmailRequest, e9 as PreviewCancelEmailResponse, ea as PreviewCancelRefundEmailRequest, eb as PreviewCancelRefundEmailResponse, d$ as PreviewEmailByTypeRequest, e0 as PreviewEmailByTypeResponse, a9 as PreviewEmailType, jr as PreviewEmailTypeWithLiterals, e1 as PreviewRefundEmailRequest, e7 as PreviewRefundEmailResponse, ek as PreviewResendDownloadLinksEmailRequest, el as PreviewResendDownloadLinksEmailResponse, ei as PreviewShippingConfirmationEmailRequest, ej as PreviewShippingConfirmationEmailResponse, b0 as PriceDescription, bb as PriceSummary, aE as ProductName, hk as PublicActivity, hl as PublicActivityContentOneOf, gb as QueryOrderRequest, gc as QueryOrderResponse, ih as QuotesAddress, ap as Reason, jH as ReasonWithLiterals, cm as ReceiptCreated, cn as ReceiptCreatedReceiptInfoOneOf, cq as ReceiptSent, cr as ReceiptSentReceiptInfoOneOf, jV as RecordManuallyCollectedPaymentApplicationErrors, iQ as RecordManuallyCollectedPaymentOptions, f0 as RecordManuallyCollectedPaymentRequest, f3 as RecordManuallyCollectedPaymentResponse, eY as RedirectUrls, fM as Refund, e2 as RefundDetails, c4 as RefundInitiated, e3 as RefundItem, fQ as RefundItemsBreakdown, fq as RefundSideEffects, at as RefundStatus, fO as RefundStatusInfo, jL as RefundStatusWithLiterals, fN as RefundTransaction, fe as Refundability, ff as RefundabilityAdditionalRefundabilityInfoOneOf, ai as RefundableStatus, jA as RefundableStatusWithLiterals, cc as RefundedAsStoreCredit, c5 as RefundedPayment, c6 as RefundedPaymentKindOneOf, cf as RegularPayment, fy as RegularPaymentDetails, fz as RegularPaymentDetailsPaymentMethodDetailsOneOf, cg as RegularPaymentPaymentMethodDetailsOneOf, c7 as RegularPaymentRefund, ia as Reschedule, fr as RestockInfo, fs as RestockItem, al as RestockType, jD as RestockTypeWithLiterals, di as RestoreInfo, c0 as SavedPaymentMethod, ae as ScheduledAction, jw as ScheduledActionWithLiterals, gd as SearchOrdersRequest, dH as SendBuyerConfirmationEmailRequest, dI as SendBuyerConfirmationEmailResponse, dJ as SendBuyerPaymentsReceivedEmailRequest, dK as SendBuyerPaymentsReceivedEmailResponse, dL as SendBuyerPickupConfirmationEmailRequest, dM as SendBuyerPickupConfirmationEmailResponse, dP as SendBuyerShippingConfirmationEmailRequest, dQ as SendBuyerShippingConfirmationEmailResponse, dV as SendCancelRefundEmailRequest, dW as SendCancelRefundEmailResponse, dT as SendMerchantOrderReceivedNotificationRequest, dU as SendMerchantOrderReceivedNotificationResponse, dZ as SendMerchantOrderReceivedPushRequest, d_ as SendMerchantOrderReceivedPushResponse, i2 as SendOrderUpdatedDomainEventRequest, i3 as SendOrderUpdatedDomainEventResponse, dX as SendRefundEmailRequest, dY as SendRefundEmailResponse, fm as ServiceProperties, ey as ServiceProvisioned, ez as ServiceRemoved, iO as SetOrderNumberCounterOptions, db as SetOrderNumberCounterRequest, dc as SetOrderNumberCounterResponse, hc as ShippingAddressEdited, h8 as ShippingConfirmationEmailSent, b$ as ShippingInformation, b_ as ShippingInformationChange, bo as ShippingPrice, e6 as ShippingRefund, bp as ShippingRegion, ep as SiteCreated, ab as SiteCreatedContext, jt as SiteCreatedContextWithLiterals, er as SiteDeleted, eB as SiteHardDeleted, ew as SiteMarkedAsTemplate, ex as SiteMarkedAsWixSite, eu as SitePublished, eG as SitePurgedExternally, eA as SiteRenamed, eq as SiteTransferred, et as SiteUndeleted, ev as SiteUnpublished, eF as SiteUrlChanged, au as SortOrder, jM as SortOrderWithLiterals, g5 as Sorting, iv as Source, ay as SourceType, jQ as SourceTypeWithLiterals, ip as StandardDetails, aa as State, js as StateWithLiterals, be as StreetAddress, eD as StudioAssigned, eN as StudioTwoAssigned, eO as StudioTwoUnassigned, eE as StudioUnassigned, io as Subdivision, ax as SubdivisionType, jP as SubdivisionTypeWithLiterals, aX as SubscriptionDescription, F as SubscriptionFrequency, j4 as SubscriptionFrequencyWithLiterals, aV as SubscriptionInfo, aY as SubscriptionSettings, aW as SubscriptionTitle, cD as TagList, cC as Tags, i4 as Task, i6 as TaskAction, i7 as TaskActionActionOneOf, i5 as TaskKey, bq as TaxSummary, b2 as TaxableAddress, b3 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, j6 as TaxableAddressTypeWithLiterals, iy as TotalPrice, bZ as TotalPriceChange, h7 as TrackingLinkAdded, h5 as TrackingNumberAdded, h6 as TrackingNumberEdited, am as TransactionStatus, jE as TransactionStatusWithLiterals, b6 as TranslatableString, bW as TranslatedValue, jY as TriggerRefundApplicationErrors, iU as TriggerRefundOptions, fo as TriggerRefundRequest, ft as TriggerRefundResponse, dG as TriggerReindexOrderRequest, dC as TriggerReindexRequest, dD as TriggerReindexResponse, gE as UnArchiveOrderRequest, gF as UnArchiveOrderResponse, iY as UpdateActivityIdentifiers, ho as UpdateActivityRequest, hp as UpdateActivityResponse, gR as UpdateBillingContactDetailsRequest, gS as UpdateBillingContactDetailsResponse, gN as UpdateBuyerEmailRequest, gO as UpdateBuyerEmailResponse, gK as UpdateBuyerInfoRequest, gM as UpdateBuyerInfoResponse, dr as UpdateInternalDocumentsEvent, ds as UpdateInternalDocumentsEventOperationOneOf, hs as UpdateLineItemsDescriptionLinesRequest, hu as UpdateLineItemsDescriptionLinesResponse, iX as UpdateOrderLineItem, iW as UpdateOrderLineItemIdentifiers, gT as UpdateOrderLineItemRequest, gU as UpdateOrderLineItemResponse, gV as UpdateOrderLineItemsRequest, gX as UpdateOrderLineItemsResponse, gm as UpdateOrderRequest, gn as UpdateOrderResponse, gP as UpdateOrderShippingAddressRequest, gQ as UpdateOrderShippingAddressResponse, jZ as UpdateOrderStatusApplicationErrors, hy as UpdateOrderStatusRequest, hz as UpdateOrderStatusResponse, f1 as UserDefinedPaymentMethodName, f2 as UserDefinedPaymentMethodNameKindOneOf, eQ as UserDomainMediaDisabled, eP as UserDomainMediaEnabled, hR as V1BulkMarkOrdersAsPaidRequest, hS as V1BulkMarkOrdersAsPaidResponse, hT as V1CreatePaymentGatewayOrderRequest, hU as V1CreatePaymentGatewayOrderResponse, gv as V1LineItemDelta, gw as V1LineItemDeltaDeltaOneOf, hP as V1MarkOrderAsPaidRequest, hQ as V1MarkOrderAsPaidResponse, cS as V1RestockItem, fF as V1ScheduledAction, bi as V1ShippingInformation, iJ as Value, aA as ValueType, jS as ValueTypeWithLiterals, bh as VatId, N as VatType, ja as VatTypeWithLiterals, dA as VersionedDeleteByIdsOperation, dB as VersionedDocumentId, dz as VersionedDocumentUpdateOperation, a8 as VersioningMode, jq as VersioningModeWithLiterals, fW as VoidAuthorizedPaymentsRequest, a7 as WebhookIdentityType, jp as WebhookIdentityTypeWithLiterals, W as WeightUnit, j9 as WeightUnitWithLiterals, co as WixReceipt, fK as WixReceiptInfo, eL as WixelAssigned, eM as WixelUnassigned } from './ecom-v1-order-orders.universal-CcrfIADf.js';
|
|
4
4
|
|
|
5
5
|
declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
|
|
6
6
|
interface PreparePaymentCollectionSignature {
|
|
@@ -204,6 +204,13 @@ interface BulkUpdateOrderTagsSignature {
|
|
|
204
204
|
*/
|
|
205
205
|
(orderIds: string[], options?: BulkUpdateOrderTagsOptions): Promise<NonNullablePaths<BulkUpdateOrderTagsResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
|
|
206
206
|
}
|
|
207
|
+
declare const onOrderApproved$1: EventDefinition<OrderApprovedEnvelope, "wix.ecom.v1.order_approved">;
|
|
208
|
+
declare const onOrderCanceled$1: EventDefinition<OrderCanceledEnvelope, "wix.ecom.v1.order_canceled">;
|
|
209
|
+
declare const onOrderCommitted$1: EventDefinition<OrderCommittedEnvelope, "wix.ecom.v1.order_committed">;
|
|
210
|
+
declare const onOrderCreated$1: EventDefinition<OrderCreatedEnvelope, "wix.ecom.v1.order_created">;
|
|
211
|
+
declare const onOrderFulfilled$1: EventDefinition<OrderFulfilledEnvelope, "wix.ecom.v1.order_fulfilled">;
|
|
212
|
+
declare const onOrderPaymentStatusUpdated$1: EventDefinition<OrderPaymentStatusUpdatedEnvelope, "wix.ecom.v1.order_payment_status_updated">;
|
|
213
|
+
declare const onOrderUpdated$1: EventDefinition<OrderUpdatedEnvelope, "wix.ecom.v1.order_updated">;
|
|
207
214
|
|
|
208
215
|
declare const preparePaymentCollection: MaybeContext<BuildRESTFunction<typeof preparePaymentCollection$1> & typeof preparePaymentCollection$1>;
|
|
209
216
|
declare const getPaymentCollectabilityStatus: MaybeContext<BuildRESTFunction<typeof getPaymentCollectabilityStatus$1> & typeof getPaymentCollectabilityStatus$1>;
|
|
@@ -217,5 +224,33 @@ declare const bulkUpdateOrders: MaybeContext<BuildRESTFunction<typeof bulkUpdate
|
|
|
217
224
|
declare const addActivities: MaybeContext<BuildRESTFunction<typeof addActivities$1> & typeof addActivities$1>;
|
|
218
225
|
declare const cancelOrder: MaybeContext<BuildRESTFunction<typeof cancelOrder$1> & typeof cancelOrder$1>;
|
|
219
226
|
declare const bulkUpdateOrderTags: MaybeContext<BuildRESTFunction<typeof bulkUpdateOrderTags$1> & typeof bulkUpdateOrderTags$1>;
|
|
227
|
+
/**
|
|
228
|
+
* Triggered when an order is approved.
|
|
229
|
+
*/
|
|
230
|
+
declare const onOrderApproved: BuildEventDefinition<typeof onOrderApproved$1> & typeof onOrderApproved$1;
|
|
231
|
+
/**
|
|
232
|
+
* Triggered when an order is canceled.
|
|
233
|
+
*/
|
|
234
|
+
declare const onOrderCanceled: BuildEventDefinition<typeof onOrderCanceled$1> & typeof onOrderCanceled$1;
|
|
235
|
+
/**
|
|
236
|
+
* Triggered when draft order changes are committed.
|
|
237
|
+
*/
|
|
238
|
+
declare const onOrderCommitted: BuildEventDefinition<typeof onOrderCommitted$1> & typeof onOrderCommitted$1;
|
|
239
|
+
/**
|
|
240
|
+
* Triggered when an order is created.
|
|
241
|
+
*/
|
|
242
|
+
declare const onOrderCreated: BuildEventDefinition<typeof onOrderCreated$1> & typeof onOrderCreated$1;
|
|
243
|
+
/**
|
|
244
|
+
* Triggered when order fulfillment status is updated.
|
|
245
|
+
*/
|
|
246
|
+
declare const onOrderFulfilled: BuildEventDefinition<typeof onOrderFulfilled$1> & typeof onOrderFulfilled$1;
|
|
247
|
+
/**
|
|
248
|
+
* Triggered when the payment status of an order is updated.
|
|
249
|
+
*/
|
|
250
|
+
declare const onOrderPaymentStatusUpdated: BuildEventDefinition<typeof onOrderPaymentStatusUpdated$1> & typeof onOrderPaymentStatusUpdated$1;
|
|
251
|
+
/**
|
|
252
|
+
* Triggered when an order is updated.
|
|
253
|
+
*/
|
|
254
|
+
declare const onOrderUpdated: BuildEventDefinition<typeof onOrderUpdated$1> & typeof onOrderUpdated$1;
|
|
220
255
|
|
|
221
|
-
export { AddActivitiesOptions, AddActivitiesResponse, BulkUpdateOrderTagsOptions, BulkUpdateOrderTagsResponse, BulkUpdateOrdersOptions, BulkUpdateOrdersResponse, CancelOrderApplicationErrors, CancelOrderOptions, CancelOrderResponse, CaptureAuthorizedPaymentsApplicationErrors, CaptureAuthorizedPaymentsResponse, CreateOrderApplicationErrors, CreateOrderOptions, GetOrderApplicationErrors, GetPaymentCollectabilityStatusResponse, MaskedOrder, Order, OrderSearch, PaymentCapture, PreparePaymentCollectionApplicationErrors, PreparePaymentCollectionOptions, PreparePaymentCollectionResponse, Price, SearchOrdersResponse, UpdateOrder, UpdateOrderApplicationErrors, VoidAuthorizedPaymentsApplicationErrors, VoidAuthorizedPaymentsResponse, addActivities, bulkUpdateOrderTags, bulkUpdateOrders, cancelOrder, captureAuthorizedPayments, createOrder, getOrder, getPaymentCollectabilityStatus, preparePaymentCollection, searchOrders, updateOrder, voidAuthorizedPayments };
|
|
256
|
+
export { AddActivitiesOptions, AddActivitiesResponse, BulkUpdateOrderTagsOptions, BulkUpdateOrderTagsResponse, BulkUpdateOrdersOptions, BulkUpdateOrdersResponse, CancelOrderApplicationErrors, CancelOrderOptions, CancelOrderResponse, CaptureAuthorizedPaymentsApplicationErrors, CaptureAuthorizedPaymentsResponse, CreateOrderApplicationErrors, CreateOrderOptions, GetOrderApplicationErrors, GetPaymentCollectabilityStatusResponse, MaskedOrder, Order, OrderApprovedEnvelope, OrderCanceledEnvelope, OrderCommittedEnvelope, OrderCreatedEnvelope, OrderFulfilledEnvelope, OrderPaymentStatusUpdatedEnvelope, OrderSearch, OrderUpdatedEnvelope, PaymentCapture, PreparePaymentCollectionApplicationErrors, PreparePaymentCollectionOptions, PreparePaymentCollectionResponse, Price, SearchOrdersResponse, UpdateOrder, UpdateOrderApplicationErrors, VoidAuthorizedPaymentsApplicationErrors, VoidAuthorizedPaymentsResponse, addActivities, bulkUpdateOrderTags, bulkUpdateOrders, cancelOrder, captureAuthorizedPayments, createOrder, getOrder, getPaymentCollectabilityStatus, onOrderApproved, onOrderCanceled, onOrderCommitted, onOrderCreated, onOrderFulfilled, onOrderPaymentStatusUpdated, onOrderUpdated, preparePaymentCollection, searchOrders, updateOrder, voidAuthorizedPayments };
|