@wix/ecom 1.0.827 → 1.0.829
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ecom",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.829",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@wix/ecom_abandoned-checkouts": "1.0.55",
|
|
26
26
|
"@wix/ecom_additional-fees": "1.0.35",
|
|
27
|
-
"@wix/ecom_back-in-stock-notifications": "1.0.
|
|
27
|
+
"@wix/ecom_back-in-stock-notifications": "1.0.61",
|
|
28
28
|
"@wix/ecom_back-in-stock-settings": "1.0.44",
|
|
29
29
|
"@wix/ecom_cart": "1.0.100",
|
|
30
30
|
"@wix/ecom_checkout": "1.0.109",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@wix/ecom_subscription-contracts": "1.0.9",
|
|
61
61
|
"@wix/ecom_tip-settings": "1.0.2",
|
|
62
62
|
"@wix/ecom_tippable-staff": "1.0.2",
|
|
63
|
-
"@wix/ecom_tips": "1.0.
|
|
63
|
+
"@wix/ecom_tips": "1.0.4",
|
|
64
64
|
"@wix/ecom_totals-calculator": "1.0.21",
|
|
65
65
|
"@wix/ecom_validations": "1.0.44"
|
|
66
66
|
},
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"fqdn": ""
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
|
-
"falconPackageHash": "
|
|
90
|
+
"falconPackageHash": "2c4cc2db46d45cf770a54910226e92c93892f73915d153c536bbdc25"
|
|
91
91
|
}
|
|
@@ -5086,13 +5086,13 @@ interface BackInStockNotificationRequestCreatedEnvelope {
|
|
|
5086
5086
|
entity: BackInStockNotificationRequest;
|
|
5087
5087
|
metadata: EventMetadata$b;
|
|
5088
5088
|
}
|
|
5089
|
-
interface BackInStockNotificationRequestDeletedEnvelope {
|
|
5090
|
-
metadata: EventMetadata$b;
|
|
5091
|
-
}
|
|
5092
5089
|
interface BackInStockNotificationRequestUpdatedEnvelope {
|
|
5093
5090
|
entity: BackInStockNotificationRequest;
|
|
5094
5091
|
metadata: EventMetadata$b;
|
|
5095
5092
|
}
|
|
5093
|
+
interface BackInStockNotificationRequestDeletedEnvelope {
|
|
5094
|
+
metadata: EventMetadata$b;
|
|
5095
|
+
}
|
|
5096
5096
|
interface QueryCursorResult$a {
|
|
5097
5097
|
cursors: Cursors$c;
|
|
5098
5098
|
hasNext: () => boolean;
|
|
@@ -5288,8 +5288,8 @@ interface ReportItemsBackInStockSignature {
|
|
|
5288
5288
|
(itemDetails: BackInStockItemDetails, options?: ReportItemsBackInStockOptions | undefined): Promise<void>;
|
|
5289
5289
|
}
|
|
5290
5290
|
declare const onBackInStockNotificationRequestCreated$1: EventDefinition<BackInStockNotificationRequestCreatedEnvelope, "wix.ecom.v1.back_in_stock_notification_request_created">;
|
|
5291
|
-
declare const onBackInStockNotificationRequestDeleted$1: EventDefinition<BackInStockNotificationRequestDeletedEnvelope, "wix.ecom.v1.back_in_stock_notification_request_deleted">;
|
|
5292
5291
|
declare const onBackInStockNotificationRequestUpdated$1: EventDefinition<BackInStockNotificationRequestUpdatedEnvelope, "wix.ecom.v1.back_in_stock_notification_request_updated">;
|
|
5292
|
+
declare const onBackInStockNotificationRequestDeleted$1: EventDefinition<BackInStockNotificationRequestDeletedEnvelope, "wix.ecom.v1.back_in_stock_notification_request_deleted">;
|
|
5293
5293
|
|
|
5294
5294
|
declare function createEventModule$b<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
5295
5295
|
|
|
@@ -5302,23 +5302,17 @@ declare const getBackInStockNotificationRequestsCountByCatalogReferences: MaybeC
|
|
|
5302
5302
|
declare const reportItemsBackInStock: MaybeContext<BuildRESTFunction<typeof reportItemsBackInStock$1> & typeof reportItemsBackInStock$1>;
|
|
5303
5303
|
|
|
5304
5304
|
type _publicOnBackInStockNotificationRequestCreatedType = typeof onBackInStockNotificationRequestCreated$1;
|
|
5305
|
-
/**
|
|
5306
|
-
* Triggered when a back in stock notification request is created.
|
|
5307
|
-
*/
|
|
5305
|
+
/** */
|
|
5308
5306
|
declare const onBackInStockNotificationRequestCreated: ReturnType<typeof createEventModule$b<_publicOnBackInStockNotificationRequestCreatedType>>;
|
|
5309
5307
|
|
|
5310
|
-
type _publicOnBackInStockNotificationRequestDeletedType = typeof onBackInStockNotificationRequestDeleted$1;
|
|
5311
|
-
/**
|
|
5312
|
-
* Triggered when a back in stock notification request is deleted.
|
|
5313
|
-
*/
|
|
5314
|
-
declare const onBackInStockNotificationRequestDeleted: ReturnType<typeof createEventModule$b<_publicOnBackInStockNotificationRequestDeletedType>>;
|
|
5315
|
-
|
|
5316
5308
|
type _publicOnBackInStockNotificationRequestUpdatedType = typeof onBackInStockNotificationRequestUpdated$1;
|
|
5317
|
-
/**
|
|
5318
|
-
* Triggered when a back in stock notification request is updated.
|
|
5319
|
-
*/
|
|
5309
|
+
/** */
|
|
5320
5310
|
declare const onBackInStockNotificationRequestUpdated: ReturnType<typeof createEventModule$b<_publicOnBackInStockNotificationRequestUpdatedType>>;
|
|
5321
5311
|
|
|
5312
|
+
type _publicOnBackInStockNotificationRequestDeletedType = typeof onBackInStockNotificationRequestDeleted$1;
|
|
5313
|
+
/** */
|
|
5314
|
+
declare const onBackInStockNotificationRequestDeleted: ReturnType<typeof createEventModule$b<_publicOnBackInStockNotificationRequestDeletedType>>;
|
|
5315
|
+
|
|
5322
5316
|
type context$o_BackInStockItemDetails = BackInStockItemDetails;
|
|
5323
5317
|
type context$o_BackInStockNotificationRequest = BackInStockNotificationRequest;
|
|
5324
5318
|
type context$o_BackInStockNotificationRequestCreatedEnvelope = BackInStockNotificationRequestCreatedEnvelope;
|
|
@@ -28279,7 +28273,7 @@ interface LineItem$2 {
|
|
|
28279
28273
|
quantity?: BigDecimalWrapper;
|
|
28280
28274
|
taxes?: LineItemTax[];
|
|
28281
28275
|
/** The source of the line item */
|
|
28282
|
-
source?: Source$
|
|
28276
|
+
source?: Source$2;
|
|
28283
28277
|
/** The line-item level metadata. */
|
|
28284
28278
|
metadata?: LineItemMetaData;
|
|
28285
28279
|
}
|
|
@@ -28291,7 +28285,7 @@ interface LineItemTax {
|
|
|
28291
28285
|
rate?: BigDecimalWrapper;
|
|
28292
28286
|
code?: string | null;
|
|
28293
28287
|
}
|
|
28294
|
-
interface Source$
|
|
28288
|
+
interface Source$2 {
|
|
28295
28289
|
/**
|
|
28296
28290
|
* Source app or service ID.
|
|
28297
28291
|
* @readonly
|
|
@@ -29991,7 +29985,7 @@ declare const context$c_searchOrders: typeof searchOrders;
|
|
|
29991
29985
|
declare const context$c_updateOrder: typeof updateOrder;
|
|
29992
29986
|
declare const context$c_voidAuthorizedPayments: typeof voidAuthorizedPayments;
|
|
29993
29987
|
declare namespace context$c {
|
|
29994
|
-
export { type ActionEvent$9 as ActionEvent, ActionType$1 as ActionType, type Activity$1 as Activity, type context$c_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type context$c_AddActivitiesRequest as AddActivitiesRequest, type context$c_AddActivitiesResponse as AddActivitiesResponse, type context$c_AddActivityRequest as AddActivityRequest, type context$c_AddActivityResponse as AddActivityResponse, type context$c_AddInternalActivityRequest as AddInternalActivityRequest, type context$c_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type context$c_AdditionalFeeDelta as AdditionalFeeDelta, type context$c_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$1 as AdditionalFeeRefund, type Address$5 as Address, type context$c_AddressDescription as AddressDescription, type AddressLocation$3 as AddressLocation, type context$c_AddressWithContact as AddressWithContact, type context$c_AggregateOrdersRequest as AggregateOrdersRequest, type context$c_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$1 as AggregatedRefundSummary, type context$c_App as App, type ApplicationError$4 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type context$c_AppliedDiscountDelta as AppliedDiscountDelta, type context$c_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type context$c_ArchiveOrderRequest as ArchiveOrderRequest, type context$c_ArchiveOrderResponse as ArchiveOrderResponse, context$c_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$1 as AuthorizationActionFailureDetails, type AuthorizationCapture$1 as AuthorizationCapture, AuthorizationCaptureStatus$1 as AuthorizationCaptureStatus, type AuthorizationDetails$1 as AuthorizationDetails, type AuthorizationVoid$1 as AuthorizationVoid, AuthorizationVoidStatus$1 as AuthorizationVoidStatus, type context$c_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$c_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$c_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$c_Balance as Balance, type context$c_BalanceSummary as BalanceSummary, type BaseEventMetadata$3 as BaseEventMetadata, type context$c_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type context$c_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type context$c_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type context$c_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type context$c_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type context$c_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type context$c_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type context$c_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type context$c_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type context$c_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type context$c_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type context$c_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type context$c_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type context$c_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type context$c_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type context$c_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type context$c_BulkOrderResult as BulkOrderResult, type context$c_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type context$c_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type context$c_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type context$c_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type context$c_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type context$c_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type context$c_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type context$c_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type context$c_BulkUpdateOrderTagsOptions as BulkUpdateOrderTagsOptions, type context$c_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type context$c_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type context$c_BulkUpdateOrderTagsResponseNonNullableFields as BulkUpdateOrderTagsResponseNonNullableFields, type context$c_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type context$c_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type context$c_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type context$c_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type context$c_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type context$c_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$c_BuyerInfoUpdate as BuyerInfoUpdate, type CalculateRefundItemRequest$1 as CalculateRefundItemRequest, type CalculateRefundItemResponse$1 as CalculateRefundItemResponse, type CalculateRefundRequest$1 as CalculateRefundRequest, type CalculateRefundResponse$1 as CalculateRefundResponse, type context$c_CalculatedTax as CalculatedTax, type context$c_CalculatedTaxes as CalculatedTaxes, type context$c_Cancel as Cancel, type context$c_CancelOrderOptions as CancelOrderOptions, type context$c_CancelOrderRequest as CancelOrderRequest, type context$c_CancelOrderResponse as CancelOrderResponse, type context$c_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type context$c_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type context$c_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type context$c_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$3 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type context$c_ChargeMembershipsRequest as ChargeMembershipsRequest, type context$c_ChargeMembershipsResponse as ChargeMembershipsResponse, type context$c_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type context$c_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type context$c_ChargedBy as ChargedBy, type context$c_Color as Color, type context$c_CommitDeltasRequest as CommitDeltasRequest, type context$c_CommitDeltasResponse as CommitDeltasResponse, type context$c_CommittedDiffs as CommittedDiffs, type context$c_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type context$c_CommonAddress as CommonAddress, type context$c_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type context$c_Company as Company, type context$c_Complete as Complete, type context$c_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type context$c_CreateOrderRequest as CreateOrderRequest, type context$c_CreateOrderResponse as CreateOrderResponse, type context$c_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type context$c_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type context$c_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type context$c_CreatedBy as CreatedBy, type context$c_CreatedByStringOneOf as CreatedByStringOneOf, type context$c_CreditCardDetails as CreditCardDetails, type CreditCardPaymentMethodDetails$1 as CreditCardPaymentMethodDetails, type CursorPaging$7 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type context$c_CursorSearch as CursorSearch, type context$c_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$7 as Cursors, type context$c_CustomActivity as CustomActivity, type CustomField$1 as CustomField, context$c_CustomFieldGroup as CustomFieldGroup, type context$c_CustomFieldValue as CustomFieldValue, type context$c_Customer as Customer, type context$c_DecrementData as DecrementData, type context$c_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type context$c_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type context$c_DelayedCaptureSettings as DelayedCaptureSettings, type context$c_DeleteActivityRequest as DeleteActivityRequest, type context$c_DeleteActivityResponse as DeleteActivityResponse, type context$c_DeleteByFilterOperation as DeleteByFilterOperation, type context$c_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$2 as DeliveryLogistics, type context$c_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$2 as DeliveryTimeSlot, context$c_DeltaPaymentOptionType as DeltaPaymentOptionType, type context$c_Deposit as Deposit, context$c_DepositType as DepositType, type context$c_DescriptionLine as DescriptionLine, type context$c_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$c_DescriptionLineName as DescriptionLineName, context$c_DescriptionLineType as DescriptionLineType, type context$c_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type context$c_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, context$c_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type context$c_DownloadLinkSent as DownloadLinkSent, type context$c_DraftOrderChangesApplied as DraftOrderChangesApplied, type context$c_DraftOrderCommitSettings as DraftOrderCommitSettings, type context$c_DraftOrderDiffs as DraftOrderDiffs, type context$c_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type context$c_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type context$c_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type context$c_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type context$c_Duration as Duration, context$c_DurationUnit as DurationUnit, type context$c_Email as Email, type context$c_EmailEdited as EmailEdited, type Empty$5 as Empty, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$3 as EventMetadata, type ExtendedFields$4 as ExtendedFields, type context$c_ExternalUriMapping as ExternalUriMapping, type context$c_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type context$c_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type context$c_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$c_GetMetasiteDataRequest as GetMetasiteDataRequest, type context$c_GetMetasiteDataResponse as GetMetasiteDataResponse, type context$c_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type context$c_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type context$c_GetOrderRequest as GetOrderRequest, type context$c_GetOrderResponse as GetOrderResponse, type context$c_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type context$c_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type context$c_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type context$c_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type context$c_GetShipmentsRequest as GetShipmentsRequest, type context$c_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$1 as GiftCardPaymentDetails, type context$c_GiftCardPaymentRefund as GiftCardPaymentRefund, type context$c_HtmlApplication as HtmlApplication, type context$c_IdAndVersion as IdAndVersion, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type context$c_InternalActivity as InternalActivity, type context$c_InternalActivityContentOneOf as InternalActivityContentOneOf, type context$c_InternalDocument as InternalDocument, type context$c_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type context$c_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type context$c_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type context$c_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type context$c_InternalUpdateExistingOperation as InternalUpdateExistingOperation, context$c_InventoryAction as InventoryAction, type context$c_InventoryUpdateDetails as InventoryUpdateDetails, type context$c_InvoiceAdded as InvoiceAdded, type context$c_InvoiceDates as InvoiceDates, type context$c_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type context$c_InvoiceFields as InvoiceFields, type context$c_InvoiceSent as InvoiceSent, type context$c_InvoiceSentEvent as InvoiceSentEvent, context$c_InvoiceStatus as InvoiceStatus, type context$c_InvoicesPayment as InvoicesPayment, type context$c_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, type context$c_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type context$c_LineItemAmount as LineItemAmount, type context$c_LineItemChanges as LineItemChanges, type context$c_LineItemDelta as LineItemDelta, type context$c_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type context$c_LineItemExchangeData as LineItemExchangeData, type context$c_LineItemMetaData as LineItemMetaData, type context$c_LineItemPriceChange as LineItemPriceChange, type context$c_LineItemQuantityChange as LineItemQuantityChange, context$c_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$1 as LineItemRefund, type context$c_LineItemTax as LineItemTax, type context$c_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$c_LineItemTaxInfo as LineItemTaxInfo, type context$c_LineItemUpdate as LineItemUpdate, type context$c_LineItems as LineItems, type context$c_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type context$c_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type context$c_Locale as Locale, type context$c_LocationAndQuantity as LocationAndQuantity, type context$c_ManagedAdditionalFee as ManagedAdditionalFee, type context$c_ManagedDiscount as ManagedDiscount, type context$c_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type context$c_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type context$c_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type context$c_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type context$c_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type context$c_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type context$c_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type context$c_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type context$c_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type context$c_MaskedOrder as MaskedOrder, type context$c_MaskedOrderLineItem as MaskedOrderLineItem, type context$c_MembershipChargeItem as MembershipChargeItem, type MembershipName$2 as MembershipName, type MembershipPaymentDetails$1 as MembershipPaymentDetails, type context$c_MembershipPaymentRefund as MembershipPaymentRefund, MembershipPaymentStatus$1 as MembershipPaymentStatus, type context$c_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$c_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$8 as MessageEnvelope, type context$c_MetaData as MetaData, type context$c_MetaSite as MetaSite, type context$c_MetaTag as MetaTag, context$c_Namespace as Namespace, type context$c_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, context$c_OrderApprovalStrategy as OrderApprovalStrategy, type context$c_OrderApproved as OrderApproved, type context$c_OrderApprovedEnvelope as OrderApprovedEnvelope, type context$c_OrderCanceled as OrderCanceled, type context$c_OrderCanceledEnvelope as OrderCanceledEnvelope, type context$c_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type context$c_OrderChange as OrderChange, type context$c_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$c_OrderCreateNotifications as OrderCreateNotifications, type context$c_OrderCreatedEnvelope as OrderCreatedEnvelope, type context$c_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$c_OrderCreationSettings as OrderCreationSettings, type context$c_OrderDeltasCommitted as OrderDeltasCommitted, type context$c_OrderFulfilled as OrderFulfilled, type context$c_OrderItemsRestocked as OrderItemsRestocked, type context$c_OrderLineItem as OrderLineItem, type context$c_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type context$c_OrderNonNullableFields as OrderNonNullableFields, type context$c_OrderNotFulfilled as OrderNotFulfilled, type context$c_OrderPaid as OrderPaid, type context$c_OrderPartiallyPaid as OrderPartiallyPaid, type context$c_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type context$c_OrderPending as OrderPending, type context$c_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, type context$c_OrderRejected as OrderRejected, type context$c_OrderRejectedEventOrderRejected as OrderRejectedEventOrderRejected, context$c_OrderStatus as OrderStatus, type context$c_OrderTaxBreakdown as OrderTaxBreakdown, type context$c_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$1 as OrderTransactions, type context$c_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type context$c_OrdersExperiments as OrdersExperiments, type Payment$1 as Payment, type context$c_PaymentCanceled as PaymentCanceled, type context$c_PaymentCanceledPaymentDetailsOneOf as PaymentCanceledPaymentDetailsOneOf, type context$c_PaymentCapture as PaymentCapture, context$c_PaymentCollectabilityStatus as PaymentCollectabilityStatus, type context$c_PaymentDeclined as PaymentDeclined, type context$c_PaymentDeclinedPaymentDetailsOneOf as PaymentDeclinedPaymentDetailsOneOf, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$1 as PaymentPaymentDetailsOneOf, type context$c_PaymentPending as PaymentPending, type context$c_PaymentPendingPaymentDetailsOneOf as PaymentPendingPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type context$c_PaymentRefundFailed as PaymentRefundFailed, type context$c_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type context$c_PaymentStatusUpdated as PaymentStatusUpdated, type context$c_Payments as Payments, type context$c_Phone as Phone, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$3 as PickupDetails, PickupMethod$2 as PickupMethod, type context$c_PickupReadyEmailSent as PickupReadyEmailSent, context$c_Placement as Placement, type context$c_PlainTextValue as PlainTextValue, type context$c_PlatformPaging as PlatformPaging, type context$c_PlatformPagingMetadata as PlatformPagingMetadata, type context$c_PlatformQuery as PlatformQuery, type context$c_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type context$c_PreparePaymentCollectionOptions as PreparePaymentCollectionOptions, type context$c_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type context$c_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type context$c_PreparePaymentCollectionResponseNonNullableFields as PreparePaymentCollectionResponseNonNullableFields, type context$c_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type context$c_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type context$c_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type context$c_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type context$c_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type context$c_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type context$c_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type context$c_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type context$c_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type context$c_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type context$c_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type context$c_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, context$c_PreviewEmailType as PreviewEmailType, type context$c_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type context$c_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type context$c_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type context$c_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type context$c_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type context$c_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$3 as Price, type context$c_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type context$c_ProductName as ProductName, type context$c_PublicActivity as PublicActivity, type context$c_PublicActivityContentOneOf as PublicActivityContentOneOf, type context$c_QueryOrderRequest as QueryOrderRequest, type context$c_QueryOrderResponse as QueryOrderResponse, type context$c_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type context$c_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type context$c_QuotesAddress as QuotesAddress, Reason$1 as Reason, type context$c_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type context$c_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type context$c_RedirectUrls as RedirectUrls, type Refund$1 as Refund, type context$c_RefundCreated as RefundCreated, type RefundDetails$1 as RefundDetails, type context$c_RefundInitiated as RefundInitiated, type RefundItem$1 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$1 as RefundStatus, type RefundTransaction$1 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type context$c_RefundedAsStoreCredit as RefundedAsStoreCredit, type context$c_RefundedPayment as RefundedPayment, type context$c_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type context$c_RegularPayment as RegularPayment, type RegularPaymentDetails$1 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$c_RegularPaymentPaymentMethodDetailsOneOf as RegularPaymentPaymentMethodDetailsOneOf, type context$c_RegularPaymentRefund as RegularPaymentRefund, type context$c_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$9 as RestoreInfo, type context$c_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$1 as ScheduledAction, type context$c_SearchOrdersOptions as SearchOrdersOptions, type context$c_SearchOrdersRequest as SearchOrdersRequest, type context$c_SearchOrdersResponse as SearchOrdersResponse, type context$c_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type context$c_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type context$c_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type context$c_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type context$c_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type context$c_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type context$c_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type context$c_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type context$c_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type context$c_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type context$c_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type context$c_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type context$c_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type context$c_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type context$c_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type context$c_SendRefundEmailRequest as SendRefundEmailRequest, type context$c_SendRefundEmailResponse as SendRefundEmailResponse, type context$c_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type context$c_ShippingAddressEdited as ShippingAddressEdited, type context$c_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type context$c_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$1 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, type Source$1 as Source, context$c_SourceType as SourceType, type context$c_StandardDetails as StandardDetails, context$c_State as State, type StreetAddress$4 as StreetAddress, type Subdivision$1 as Subdivision, SubdivisionType$1 as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type context$c_TagList as TagList, type context$c_Tags as Tags, type context$c_Task as Task, type context$c_TaskAction as TaskAction, type context$c_TaskActionActionOneOf as TaskActionActionOneOf, type context$c_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type TaxableAddress$1 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$1 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$1 as TaxableAddressType, type context$c_TotalPrice as TotalPrice, type context$c_TotalPriceChange as TotalPriceChange, type context$c_TrackingLinkAdded as TrackingLinkAdded, type context$c_TrackingNumberAdded as TrackingNumberAdded, type context$c_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$1 as TransactionStatus, type context$c_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type context$c_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type context$c_TriggerReindexRequest as TriggerReindexRequest, type context$c_TriggerReindexResponse as TriggerReindexResponse, type context$c_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type context$c_UnArchiveOrderRequest as UnArchiveOrderRequest, type context$c_UnArchiveOrderResponse as UnArchiveOrderResponse, type context$c_UpdateActivityRequest as UpdateActivityRequest, type context$c_UpdateActivityResponse as UpdateActivityResponse, type context$c_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type context$c_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type context$c_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type context$c_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type context$c_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type context$c_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type context$c_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type context$c_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type context$c_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type context$c_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type context$c_UpdateOrder as UpdateOrder, type context$c_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type context$c_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type context$c_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type context$c_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type context$c_UpdateOrderRequest as UpdateOrderRequest, type context$c_UpdateOrderResponse as UpdateOrderResponse, type context$c_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type context$c_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type context$c_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type context$c_UpsertRefundRequest as UpsertRefundRequest, type context$c_UpsertRefundResponse as UpsertRefundResponse, type context$c_UserDataResponse as UserDataResponse, type context$c_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type context$c_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type context$c_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type context$c_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type context$c_V1LineItemDelta as V1LineItemDelta, type context$c_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type context$c_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type context$c_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type context$c_V1RestockItem as V1RestockItem, type context$c_V1ScheduledAction as V1ScheduledAction, type context$c_V1ShippingInformation as V1ShippingInformation, type context$c_Value as Value, context$c_ValueType as ValueType, type VatId$2 as VatId, VatType$2 as VatType, type context$c_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type context$c_VersionedDocumentId as VersionedDocumentId, type context$c_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, context$c_VersioningMode as VersioningMode, type context$c_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type context$c_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type context$c_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$8 as WebhookIdentityType, WeightUnit$3 as WeightUnit, type context$c__publicOnOrderApprovedType as _publicOnOrderApprovedType, type context$c__publicOnOrderCanceledType as _publicOnOrderCanceledType, type context$c__publicOnOrderCreatedType as _publicOnOrderCreatedType, type context$c__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, type context$c__publicOnOrderUpdatedType as _publicOnOrderUpdatedType, context$c_bulkUpdateOrderTags as bulkUpdateOrderTags, context$c_bulkUpdateOrders as bulkUpdateOrders, context$c_cancelOrder as cancelOrder, context$c_captureAuthorizedPayments as captureAuthorizedPayments, context$c_createOrder as createOrder, context$c_getOrder as getOrder, context$c_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, context$c_onOrderApproved as onOrderApproved, context$c_onOrderCanceled as onOrderCanceled, context$c_onOrderCreated as onOrderCreated, context$c_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, context$c_onOrderUpdated as onOrderUpdated, context$c_preparePaymentCollection as preparePaymentCollection, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, onOrderUpdated$1 as publicOnOrderUpdated, context$c_searchOrders as searchOrders, context$c_updateOrder as updateOrder, context$c_voidAuthorizedPayments as voidAuthorizedPayments };
|
|
29988
|
+
export { type ActionEvent$9 as ActionEvent, ActionType$1 as ActionType, type Activity$1 as Activity, type context$c_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type context$c_AddActivitiesRequest as AddActivitiesRequest, type context$c_AddActivitiesResponse as AddActivitiesResponse, type context$c_AddActivityRequest as AddActivityRequest, type context$c_AddActivityResponse as AddActivityResponse, type context$c_AddInternalActivityRequest as AddInternalActivityRequest, type context$c_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type context$c_AdditionalFeeDelta as AdditionalFeeDelta, type context$c_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$1 as AdditionalFeeRefund, type Address$5 as Address, type context$c_AddressDescription as AddressDescription, type AddressLocation$3 as AddressLocation, type context$c_AddressWithContact as AddressWithContact, type context$c_AggregateOrdersRequest as AggregateOrdersRequest, type context$c_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$1 as AggregatedRefundSummary, type context$c_App as App, type ApplicationError$4 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type context$c_AppliedDiscountDelta as AppliedDiscountDelta, type context$c_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type context$c_ArchiveOrderRequest as ArchiveOrderRequest, type context$c_ArchiveOrderResponse as ArchiveOrderResponse, context$c_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$1 as AuthorizationActionFailureDetails, type AuthorizationCapture$1 as AuthorizationCapture, AuthorizationCaptureStatus$1 as AuthorizationCaptureStatus, type AuthorizationDetails$1 as AuthorizationDetails, type AuthorizationVoid$1 as AuthorizationVoid, AuthorizationVoidStatus$1 as AuthorizationVoidStatus, type context$c_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$c_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$c_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$c_Balance as Balance, type context$c_BalanceSummary as BalanceSummary, type BaseEventMetadata$3 as BaseEventMetadata, type context$c_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type context$c_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type context$c_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type context$c_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type context$c_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type context$c_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type context$c_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type context$c_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type context$c_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type context$c_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type context$c_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type context$c_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type context$c_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type context$c_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type context$c_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type context$c_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type context$c_BulkOrderResult as BulkOrderResult, type context$c_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type context$c_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type context$c_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type context$c_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type context$c_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type context$c_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type context$c_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type context$c_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type context$c_BulkUpdateOrderTagsOptions as BulkUpdateOrderTagsOptions, type context$c_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type context$c_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type context$c_BulkUpdateOrderTagsResponseNonNullableFields as BulkUpdateOrderTagsResponseNonNullableFields, type context$c_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type context$c_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type context$c_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type context$c_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type context$c_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type context$c_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$c_BuyerInfoUpdate as BuyerInfoUpdate, type CalculateRefundItemRequest$1 as CalculateRefundItemRequest, type CalculateRefundItemResponse$1 as CalculateRefundItemResponse, type CalculateRefundRequest$1 as CalculateRefundRequest, type CalculateRefundResponse$1 as CalculateRefundResponse, type context$c_CalculatedTax as CalculatedTax, type context$c_CalculatedTaxes as CalculatedTaxes, type context$c_Cancel as Cancel, type context$c_CancelOrderOptions as CancelOrderOptions, type context$c_CancelOrderRequest as CancelOrderRequest, type context$c_CancelOrderResponse as CancelOrderResponse, type context$c_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type context$c_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type context$c_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type context$c_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$3 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type context$c_ChargeMembershipsRequest as ChargeMembershipsRequest, type context$c_ChargeMembershipsResponse as ChargeMembershipsResponse, type context$c_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type context$c_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type context$c_ChargedBy as ChargedBy, type context$c_Color as Color, type context$c_CommitDeltasRequest as CommitDeltasRequest, type context$c_CommitDeltasResponse as CommitDeltasResponse, type context$c_CommittedDiffs as CommittedDiffs, type context$c_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type context$c_CommonAddress as CommonAddress, type context$c_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type context$c_Company as Company, type context$c_Complete as Complete, type context$c_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type context$c_CreateOrderRequest as CreateOrderRequest, type context$c_CreateOrderResponse as CreateOrderResponse, type context$c_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type context$c_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type context$c_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type context$c_CreatedBy as CreatedBy, type context$c_CreatedByStringOneOf as CreatedByStringOneOf, type context$c_CreditCardDetails as CreditCardDetails, type CreditCardPaymentMethodDetails$1 as CreditCardPaymentMethodDetails, type CursorPaging$7 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type context$c_CursorSearch as CursorSearch, type context$c_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$7 as Cursors, type context$c_CustomActivity as CustomActivity, type CustomField$1 as CustomField, context$c_CustomFieldGroup as CustomFieldGroup, type context$c_CustomFieldValue as CustomFieldValue, type context$c_Customer as Customer, type context$c_DecrementData as DecrementData, type context$c_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type context$c_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type context$c_DelayedCaptureSettings as DelayedCaptureSettings, type context$c_DeleteActivityRequest as DeleteActivityRequest, type context$c_DeleteActivityResponse as DeleteActivityResponse, type context$c_DeleteByFilterOperation as DeleteByFilterOperation, type context$c_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$2 as DeliveryLogistics, type context$c_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$2 as DeliveryTimeSlot, context$c_DeltaPaymentOptionType as DeltaPaymentOptionType, type context$c_Deposit as Deposit, context$c_DepositType as DepositType, type context$c_DescriptionLine as DescriptionLine, type context$c_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$c_DescriptionLineName as DescriptionLineName, context$c_DescriptionLineType as DescriptionLineType, type context$c_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type context$c_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, context$c_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type context$c_DownloadLinkSent as DownloadLinkSent, type context$c_DraftOrderChangesApplied as DraftOrderChangesApplied, type context$c_DraftOrderCommitSettings as DraftOrderCommitSettings, type context$c_DraftOrderDiffs as DraftOrderDiffs, type context$c_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type context$c_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type context$c_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type context$c_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type context$c_Duration as Duration, context$c_DurationUnit as DurationUnit, type context$c_Email as Email, type context$c_EmailEdited as EmailEdited, type Empty$5 as Empty, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$3 as EventMetadata, type ExtendedFields$4 as ExtendedFields, type context$c_ExternalUriMapping as ExternalUriMapping, type context$c_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type context$c_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type context$c_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$c_GetMetasiteDataRequest as GetMetasiteDataRequest, type context$c_GetMetasiteDataResponse as GetMetasiteDataResponse, type context$c_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type context$c_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type context$c_GetOrderRequest as GetOrderRequest, type context$c_GetOrderResponse as GetOrderResponse, type context$c_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type context$c_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type context$c_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type context$c_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type context$c_GetShipmentsRequest as GetShipmentsRequest, type context$c_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$1 as GiftCardPaymentDetails, type context$c_GiftCardPaymentRefund as GiftCardPaymentRefund, type context$c_HtmlApplication as HtmlApplication, type context$c_IdAndVersion as IdAndVersion, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type context$c_InternalActivity as InternalActivity, type context$c_InternalActivityContentOneOf as InternalActivityContentOneOf, type context$c_InternalDocument as InternalDocument, type context$c_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type context$c_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type context$c_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type context$c_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type context$c_InternalUpdateExistingOperation as InternalUpdateExistingOperation, context$c_InventoryAction as InventoryAction, type context$c_InventoryUpdateDetails as InventoryUpdateDetails, type context$c_InvoiceAdded as InvoiceAdded, type context$c_InvoiceDates as InvoiceDates, type context$c_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type context$c_InvoiceFields as InvoiceFields, type context$c_InvoiceSent as InvoiceSent, type context$c_InvoiceSentEvent as InvoiceSentEvent, context$c_InvoiceStatus as InvoiceStatus, type context$c_InvoicesPayment as InvoicesPayment, type context$c_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, type context$c_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type context$c_LineItemAmount as LineItemAmount, type context$c_LineItemChanges as LineItemChanges, type context$c_LineItemDelta as LineItemDelta, type context$c_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type context$c_LineItemExchangeData as LineItemExchangeData, type context$c_LineItemMetaData as LineItemMetaData, type context$c_LineItemPriceChange as LineItemPriceChange, type context$c_LineItemQuantityChange as LineItemQuantityChange, context$c_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$1 as LineItemRefund, type context$c_LineItemTax as LineItemTax, type context$c_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$c_LineItemTaxInfo as LineItemTaxInfo, type context$c_LineItemUpdate as LineItemUpdate, type context$c_LineItems as LineItems, type context$c_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type context$c_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type context$c_Locale as Locale, type context$c_LocationAndQuantity as LocationAndQuantity, type context$c_ManagedAdditionalFee as ManagedAdditionalFee, type context$c_ManagedDiscount as ManagedDiscount, type context$c_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type context$c_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type context$c_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type context$c_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type context$c_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type context$c_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type context$c_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type context$c_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type context$c_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type context$c_MaskedOrder as MaskedOrder, type context$c_MaskedOrderLineItem as MaskedOrderLineItem, type context$c_MembershipChargeItem as MembershipChargeItem, type MembershipName$2 as MembershipName, type MembershipPaymentDetails$1 as MembershipPaymentDetails, type context$c_MembershipPaymentRefund as MembershipPaymentRefund, MembershipPaymentStatus$1 as MembershipPaymentStatus, type context$c_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$c_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$8 as MessageEnvelope, type context$c_MetaData as MetaData, type context$c_MetaSite as MetaSite, type context$c_MetaTag as MetaTag, context$c_Namespace as Namespace, type context$c_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, context$c_OrderApprovalStrategy as OrderApprovalStrategy, type context$c_OrderApproved as OrderApproved, type context$c_OrderApprovedEnvelope as OrderApprovedEnvelope, type context$c_OrderCanceled as OrderCanceled, type context$c_OrderCanceledEnvelope as OrderCanceledEnvelope, type context$c_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type context$c_OrderChange as OrderChange, type context$c_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$c_OrderCreateNotifications as OrderCreateNotifications, type context$c_OrderCreatedEnvelope as OrderCreatedEnvelope, type context$c_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$c_OrderCreationSettings as OrderCreationSettings, type context$c_OrderDeltasCommitted as OrderDeltasCommitted, type context$c_OrderFulfilled as OrderFulfilled, type context$c_OrderItemsRestocked as OrderItemsRestocked, type context$c_OrderLineItem as OrderLineItem, type context$c_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type context$c_OrderNonNullableFields as OrderNonNullableFields, type context$c_OrderNotFulfilled as OrderNotFulfilled, type context$c_OrderPaid as OrderPaid, type context$c_OrderPartiallyPaid as OrderPartiallyPaid, type context$c_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type context$c_OrderPending as OrderPending, type context$c_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, type context$c_OrderRejected as OrderRejected, type context$c_OrderRejectedEventOrderRejected as OrderRejectedEventOrderRejected, context$c_OrderStatus as OrderStatus, type context$c_OrderTaxBreakdown as OrderTaxBreakdown, type context$c_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$1 as OrderTransactions, type context$c_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type context$c_OrdersExperiments as OrdersExperiments, type Payment$1 as Payment, type context$c_PaymentCanceled as PaymentCanceled, type context$c_PaymentCanceledPaymentDetailsOneOf as PaymentCanceledPaymentDetailsOneOf, type context$c_PaymentCapture as PaymentCapture, context$c_PaymentCollectabilityStatus as PaymentCollectabilityStatus, type context$c_PaymentDeclined as PaymentDeclined, type context$c_PaymentDeclinedPaymentDetailsOneOf as PaymentDeclinedPaymentDetailsOneOf, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$1 as PaymentPaymentDetailsOneOf, type context$c_PaymentPending as PaymentPending, type context$c_PaymentPendingPaymentDetailsOneOf as PaymentPendingPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type context$c_PaymentRefundFailed as PaymentRefundFailed, type context$c_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type context$c_PaymentStatusUpdated as PaymentStatusUpdated, type context$c_Payments as Payments, type context$c_Phone as Phone, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$3 as PickupDetails, PickupMethod$2 as PickupMethod, type context$c_PickupReadyEmailSent as PickupReadyEmailSent, context$c_Placement as Placement, type context$c_PlainTextValue as PlainTextValue, type context$c_PlatformPaging as PlatformPaging, type context$c_PlatformPagingMetadata as PlatformPagingMetadata, type context$c_PlatformQuery as PlatformQuery, type context$c_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type context$c_PreparePaymentCollectionOptions as PreparePaymentCollectionOptions, type context$c_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type context$c_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type context$c_PreparePaymentCollectionResponseNonNullableFields as PreparePaymentCollectionResponseNonNullableFields, type context$c_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type context$c_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type context$c_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type context$c_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type context$c_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type context$c_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type context$c_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type context$c_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type context$c_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type context$c_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type context$c_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type context$c_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, context$c_PreviewEmailType as PreviewEmailType, type context$c_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type context$c_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type context$c_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type context$c_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type context$c_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type context$c_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$3 as Price, type context$c_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type context$c_ProductName as ProductName, type context$c_PublicActivity as PublicActivity, type context$c_PublicActivityContentOneOf as PublicActivityContentOneOf, type context$c_QueryOrderRequest as QueryOrderRequest, type context$c_QueryOrderResponse as QueryOrderResponse, type context$c_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type context$c_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type context$c_QuotesAddress as QuotesAddress, Reason$1 as Reason, type context$c_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type context$c_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type context$c_RedirectUrls as RedirectUrls, type Refund$1 as Refund, type context$c_RefundCreated as RefundCreated, type RefundDetails$1 as RefundDetails, type context$c_RefundInitiated as RefundInitiated, type RefundItem$1 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$1 as RefundStatus, type RefundTransaction$1 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type context$c_RefundedAsStoreCredit as RefundedAsStoreCredit, type context$c_RefundedPayment as RefundedPayment, type context$c_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type context$c_RegularPayment as RegularPayment, type RegularPaymentDetails$1 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$c_RegularPaymentPaymentMethodDetailsOneOf as RegularPaymentPaymentMethodDetailsOneOf, type context$c_RegularPaymentRefund as RegularPaymentRefund, type context$c_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$9 as RestoreInfo, type context$c_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$1 as ScheduledAction, type context$c_SearchOrdersOptions as SearchOrdersOptions, type context$c_SearchOrdersRequest as SearchOrdersRequest, type context$c_SearchOrdersResponse as SearchOrdersResponse, type context$c_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type context$c_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type context$c_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type context$c_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type context$c_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type context$c_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type context$c_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type context$c_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type context$c_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type context$c_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type context$c_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type context$c_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type context$c_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type context$c_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type context$c_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type context$c_SendRefundEmailRequest as SendRefundEmailRequest, type context$c_SendRefundEmailResponse as SendRefundEmailResponse, type context$c_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type context$c_ShippingAddressEdited as ShippingAddressEdited, type context$c_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type context$c_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$1 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$7 as SortOrder, type Sorting$7 as Sorting, type Source$2 as Source, context$c_SourceType as SourceType, type context$c_StandardDetails as StandardDetails, context$c_State as State, type StreetAddress$4 as StreetAddress, type Subdivision$1 as Subdivision, SubdivisionType$1 as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type context$c_TagList as TagList, type context$c_Tags as Tags, type context$c_Task as Task, type context$c_TaskAction as TaskAction, type context$c_TaskActionActionOneOf as TaskActionActionOneOf, type context$c_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type TaxableAddress$1 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$1 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$1 as TaxableAddressType, type context$c_TotalPrice as TotalPrice, type context$c_TotalPriceChange as TotalPriceChange, type context$c_TrackingLinkAdded as TrackingLinkAdded, type context$c_TrackingNumberAdded as TrackingNumberAdded, type context$c_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$1 as TransactionStatus, type context$c_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type context$c_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type context$c_TriggerReindexRequest as TriggerReindexRequest, type context$c_TriggerReindexResponse as TriggerReindexResponse, type context$c_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type context$c_UnArchiveOrderRequest as UnArchiveOrderRequest, type context$c_UnArchiveOrderResponse as UnArchiveOrderResponse, type context$c_UpdateActivityRequest as UpdateActivityRequest, type context$c_UpdateActivityResponse as UpdateActivityResponse, type context$c_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type context$c_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type context$c_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type context$c_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type context$c_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type context$c_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type context$c_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type context$c_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type context$c_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type context$c_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type context$c_UpdateOrder as UpdateOrder, type context$c_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type context$c_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type context$c_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type context$c_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type context$c_UpdateOrderRequest as UpdateOrderRequest, type context$c_UpdateOrderResponse as UpdateOrderResponse, type context$c_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type context$c_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type context$c_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type context$c_UpsertRefundRequest as UpsertRefundRequest, type context$c_UpsertRefundResponse as UpsertRefundResponse, type context$c_UserDataResponse as UserDataResponse, type context$c_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type context$c_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type context$c_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type context$c_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type context$c_V1LineItemDelta as V1LineItemDelta, type context$c_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type context$c_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type context$c_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type context$c_V1RestockItem as V1RestockItem, type context$c_V1ScheduledAction as V1ScheduledAction, type context$c_V1ShippingInformation as V1ShippingInformation, type context$c_Value as Value, context$c_ValueType as ValueType, type VatId$2 as VatId, VatType$2 as VatType, type context$c_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type context$c_VersionedDocumentId as VersionedDocumentId, type context$c_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, context$c_VersioningMode as VersioningMode, type context$c_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type context$c_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type context$c_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$8 as WebhookIdentityType, WeightUnit$3 as WeightUnit, type context$c__publicOnOrderApprovedType as _publicOnOrderApprovedType, type context$c__publicOnOrderCanceledType as _publicOnOrderCanceledType, type context$c__publicOnOrderCreatedType as _publicOnOrderCreatedType, type context$c__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, type context$c__publicOnOrderUpdatedType as _publicOnOrderUpdatedType, context$c_bulkUpdateOrderTags as bulkUpdateOrderTags, context$c_bulkUpdateOrders as bulkUpdateOrders, context$c_cancelOrder as cancelOrder, context$c_captureAuthorizedPayments as captureAuthorizedPayments, context$c_createOrder as createOrder, context$c_getOrder as getOrder, context$c_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, context$c_onOrderApproved as onOrderApproved, context$c_onOrderCanceled as onOrderCanceled, context$c_onOrderCreated as onOrderCreated, context$c_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, context$c_onOrderUpdated as onOrderUpdated, context$c_preparePaymentCollection as preparePaymentCollection, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, onOrderUpdated$1 as publicOnOrderUpdated, context$c_searchOrders as searchOrders, context$c_updateOrder as updateOrder, context$c_voidAuthorizedPayments as voidAuthorizedPayments };
|
|
29995
29989
|
}
|
|
29996
29990
|
|
|
29997
29991
|
interface OrderPaymentRequest {
|
|
@@ -30001,7 +29995,7 @@ interface OrderPaymentRequest {
|
|
|
30001
29995
|
*/
|
|
30002
29996
|
_id?: string | null;
|
|
30003
29997
|
/** Additional parameters to identify the source of the order payment request. */
|
|
30004
|
-
source?: Source;
|
|
29998
|
+
source?: Source$1;
|
|
30005
29999
|
/**
|
|
30006
30000
|
* status.
|
|
30007
30001
|
* @readonly
|
|
@@ -30050,7 +30044,7 @@ interface OrderPaymentRequest {
|
|
|
30050
30044
|
*/
|
|
30051
30045
|
_updatedDate?: Date | null;
|
|
30052
30046
|
}
|
|
30053
|
-
interface Source {
|
|
30047
|
+
interface Source$1 {
|
|
30054
30048
|
/** App Def ID that created the order payment request. */
|
|
30055
30049
|
appId?: string | null;
|
|
30056
30050
|
/** Reference to an ID from an external system, indicating the original source of the order payment request. */
|
|
@@ -30375,7 +30369,7 @@ interface UpdateOrderPaymentRequest {
|
|
|
30375
30369
|
*/
|
|
30376
30370
|
_id?: string | null;
|
|
30377
30371
|
/** Additional parameters to identify the source of the order payment request. */
|
|
30378
|
-
source?: Source;
|
|
30372
|
+
source?: Source$1;
|
|
30379
30373
|
/**
|
|
30380
30374
|
* status.
|
|
30381
30375
|
* @readonly
|
|
@@ -30606,7 +30600,6 @@ type context$b_OrderPaymentRequestsQueryResult = OrderPaymentRequestsQueryResult
|
|
|
30606
30600
|
type context$b_QueryOrderPaymentRequestsRequest = QueryOrderPaymentRequestsRequest;
|
|
30607
30601
|
type context$b_QueryOrderPaymentRequestsResponse = QueryOrderPaymentRequestsResponse;
|
|
30608
30602
|
type context$b_QueryOrderPaymentRequestsResponseNonNullableFields = QueryOrderPaymentRequestsResponseNonNullableFields;
|
|
30609
|
-
type context$b_Source = Source;
|
|
30610
30603
|
type context$b_Status = Status;
|
|
30611
30604
|
declare const context$b_Status: typeof Status;
|
|
30612
30605
|
type context$b_UpdateOrderPaymentRequest = UpdateOrderPaymentRequest;
|
|
@@ -30620,7 +30613,7 @@ declare const context$b_getOrderPaymentRequestUrl: typeof getOrderPaymentRequest
|
|
|
30620
30613
|
declare const context$b_queryOrderPaymentRequests: typeof queryOrderPaymentRequests;
|
|
30621
30614
|
declare const context$b_updateOrderPaymentRequest: typeof updateOrderPaymentRequest;
|
|
30622
30615
|
declare namespace context$b {
|
|
30623
|
-
export { type ActionEvent$8 as ActionEvent, type context$b_CreateOrderPaymentRequestOptions as CreateOrderPaymentRequestOptions, type context$b_CreateOrderPaymentRequestRequest as CreateOrderPaymentRequestRequest, type context$b_CreateOrderPaymentRequestResponse as CreateOrderPaymentRequestResponse, type context$b_CreateOrderPaymentRequestResponseNonNullableFields as CreateOrderPaymentRequestResponseNonNullableFields, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type context$b_DeleteOrderPaymentRequestRequest as DeleteOrderPaymentRequestRequest, type context$b_DeleteOrderPaymentRequestResponse as DeleteOrderPaymentRequestResponse, type DomainEvent$8 as DomainEvent, type DomainEventBodyOneOf$8 as DomainEventBodyOneOf, type Empty$4 as Empty, type EntityCreatedEvent$8 as EntityCreatedEvent, type EntityDeletedEvent$8 as EntityDeletedEvent, type EntityUpdatedEvent$8 as EntityUpdatedEvent, type ExtendedFields$3 as ExtendedFields, type context$b_GetOrderPaymentRequestRequest as GetOrderPaymentRequestRequest, type context$b_GetOrderPaymentRequestResponse as GetOrderPaymentRequestResponse, type context$b_GetOrderPaymentRequestResponseNonNullableFields as GetOrderPaymentRequestResponseNonNullableFields, type context$b_GetOrderPaymentRequestURLRequest as GetOrderPaymentRequestURLRequest, type context$b_GetOrderPaymentRequestURLResponse as GetOrderPaymentRequestURLResponse, type context$b_GetOrderPaymentRequestURLResponseNonNullableFields as GetOrderPaymentRequestURLResponseNonNullableFields, type IdentificationData$8 as IdentificationData, type IdentificationDataIdOneOf$8 as IdentificationDataIdOneOf, type MessageEnvelope$7 as MessageEnvelope, type context$b_OrderPaymentRequest as OrderPaymentRequest, type context$b_OrderPaymentRequestExpired as OrderPaymentRequestExpired, type context$b_OrderPaymentRequestNonNullableFields as OrderPaymentRequestNonNullableFields, type context$b_OrderPaymentRequestPaid as OrderPaymentRequestPaid, type context$b_OrderPaymentRequestsQueryBuilder as OrderPaymentRequestsQueryBuilder, type context$b_OrderPaymentRequestsQueryResult as OrderPaymentRequestsQueryResult, type Price$2 as Price, type context$b_QueryOrderPaymentRequestsRequest as QueryOrderPaymentRequestsRequest, type context$b_QueryOrderPaymentRequestsResponse as QueryOrderPaymentRequestsResponse, type context$b_QueryOrderPaymentRequestsResponseNonNullableFields as QueryOrderPaymentRequestsResponseNonNullableFields, type RestoreInfo$8 as RestoreInfo, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, type
|
|
30616
|
+
export { type ActionEvent$8 as ActionEvent, type context$b_CreateOrderPaymentRequestOptions as CreateOrderPaymentRequestOptions, type context$b_CreateOrderPaymentRequestRequest as CreateOrderPaymentRequestRequest, type context$b_CreateOrderPaymentRequestResponse as CreateOrderPaymentRequestResponse, type context$b_CreateOrderPaymentRequestResponseNonNullableFields as CreateOrderPaymentRequestResponseNonNullableFields, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type context$b_DeleteOrderPaymentRequestRequest as DeleteOrderPaymentRequestRequest, type context$b_DeleteOrderPaymentRequestResponse as DeleteOrderPaymentRequestResponse, type DomainEvent$8 as DomainEvent, type DomainEventBodyOneOf$8 as DomainEventBodyOneOf, type Empty$4 as Empty, type EntityCreatedEvent$8 as EntityCreatedEvent, type EntityDeletedEvent$8 as EntityDeletedEvent, type EntityUpdatedEvent$8 as EntityUpdatedEvent, type ExtendedFields$3 as ExtendedFields, type context$b_GetOrderPaymentRequestRequest as GetOrderPaymentRequestRequest, type context$b_GetOrderPaymentRequestResponse as GetOrderPaymentRequestResponse, type context$b_GetOrderPaymentRequestResponseNonNullableFields as GetOrderPaymentRequestResponseNonNullableFields, type context$b_GetOrderPaymentRequestURLRequest as GetOrderPaymentRequestURLRequest, type context$b_GetOrderPaymentRequestURLResponse as GetOrderPaymentRequestURLResponse, type context$b_GetOrderPaymentRequestURLResponseNonNullableFields as GetOrderPaymentRequestURLResponseNonNullableFields, type IdentificationData$8 as IdentificationData, type IdentificationDataIdOneOf$8 as IdentificationDataIdOneOf, type MessageEnvelope$7 as MessageEnvelope, type context$b_OrderPaymentRequest as OrderPaymentRequest, type context$b_OrderPaymentRequestExpired as OrderPaymentRequestExpired, type context$b_OrderPaymentRequestNonNullableFields as OrderPaymentRequestNonNullableFields, type context$b_OrderPaymentRequestPaid as OrderPaymentRequestPaid, type context$b_OrderPaymentRequestsQueryBuilder as OrderPaymentRequestsQueryBuilder, type context$b_OrderPaymentRequestsQueryResult as OrderPaymentRequestsQueryResult, type Price$2 as Price, type context$b_QueryOrderPaymentRequestsRequest as QueryOrderPaymentRequestsRequest, type context$b_QueryOrderPaymentRequestsResponse as QueryOrderPaymentRequestsResponse, type context$b_QueryOrderPaymentRequestsResponseNonNullableFields as QueryOrderPaymentRequestsResponseNonNullableFields, type RestoreInfo$8 as RestoreInfo, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, type Source$1 as Source, context$b_Status as Status, type UpdateExtendedFieldsOptions$2 as UpdateExtendedFieldsOptions, type UpdateExtendedFieldsRequest$2 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$2 as UpdateExtendedFieldsResponse, type UpdateExtendedFieldsResponseNonNullableFields$2 as UpdateExtendedFieldsResponseNonNullableFields, type context$b_UpdateOrderPaymentRequest as UpdateOrderPaymentRequest, type context$b_UpdateOrderPaymentRequestRequest as UpdateOrderPaymentRequestRequest, type context$b_UpdateOrderPaymentRequestResponse as UpdateOrderPaymentRequestResponse, type context$b_UpdateOrderPaymentRequestResponseNonNullableFields as UpdateOrderPaymentRequestResponseNonNullableFields, WebhookIdentityType$7 as WebhookIdentityType, context$b_createOrderPaymentRequest as createOrderPaymentRequest, context$b_deleteOrderPaymentRequest as deleteOrderPaymentRequest, context$b_getOrderPaymentRequest as getOrderPaymentRequest, context$b_getOrderPaymentRequestUrl as getOrderPaymentRequestUrl, context$b_queryOrderPaymentRequests as queryOrderPaymentRequests, updateExtendedFields$4 as updateExtendedFields, context$b_updateOrderPaymentRequest as updateOrderPaymentRequest };
|
|
30624
30617
|
}
|
|
30625
30618
|
|
|
30626
30619
|
interface OrderTransactions {
|
|
@@ -38007,9 +38000,9 @@ interface Tip {
|
|
|
38007
38000
|
*/
|
|
38008
38001
|
_id?: string | null;
|
|
38009
38002
|
/**
|
|
38010
|
-
* Subtotal of all line items from the [eCommerce order](https://dev.wix.com/docs/
|
|
38003
|
+
* Subtotal of all line items from the [eCommerce order](https://dev.wix.com/docs/sdk/backend-modules/ecom/orders/setup)
|
|
38011
38004
|
* that's related to the tip. In the response of
|
|
38012
|
-
* [
|
|
38005
|
+
* [previewTip()](https://dev.wix.com/docs/sdk/backend-modules/ecom/tips/preview-tip),
|
|
38013
38006
|
* there is no related eCommerce order. Then, value of this field corresponds to
|
|
38014
38007
|
* the sum of all line item prices passed in the request.
|
|
38015
38008
|
* @readonly
|
|
@@ -38060,19 +38053,18 @@ interface TipDistribution {
|
|
|
38060
38053
|
amount?: string | null;
|
|
38061
38054
|
/**
|
|
38062
38055
|
* Details about the related line items from the
|
|
38063
|
-
* [eCommerce order](https://dev.wix.com/docs/
|
|
38056
|
+
* [eCommerce order](https://dev.wix.com/docs/sdk/backend-modules/ecom/orders/setup).
|
|
38064
38057
|
*
|
|
38065
|
-
* Max: 10 `lineItemInfo` objects
|
|
38066
38058
|
*/
|
|
38067
38059
|
lineItemInfo?: LineItemInfo[];
|
|
38068
38060
|
/**
|
|
38069
38061
|
* Details of how the customer is charged for the tip. Available only if the
|
|
38070
|
-
* [transcation](https://dev.wix.com/docs/
|
|
38062
|
+
* [transcation](https://dev.wix.com/docs/sdk/backend-modules/ecom/order-transactions/setup)
|
|
38071
38063
|
* has been created.
|
|
38072
38064
|
*/
|
|
38073
38065
|
transaction?: Transaction;
|
|
38074
38066
|
/**
|
|
38075
|
-
* ID of the [eCommerce order](https://dev.wix.com/docs/
|
|
38067
|
+
* ID of the [eCommerce order](https://dev.wix.com/docs/sdk/backend-modules/ecom/orders/setup)
|
|
38076
38068
|
* associated with the tip distribution. Identical for all distributions that
|
|
38077
38069
|
* belong to the same tip.
|
|
38078
38070
|
* @readonly
|
|
@@ -38098,7 +38090,7 @@ interface CommonIdentificationData extends CommonIdentificationDataIdOneOf {
|
|
|
38098
38090
|
/** ID of an app. */
|
|
38099
38091
|
appId?: string;
|
|
38100
38092
|
/**
|
|
38101
|
-
* ID of the [contact](https://dev.wix.com/docs/
|
|
38093
|
+
* ID of the [contact](https://dev.wix.com/docs/sdk/backend-modules/crm/contacts/introduction)
|
|
38102
38094
|
* in the site's [CRM by Ascend](https://www.wix.com/ascend/crm) system.
|
|
38103
38095
|
*/
|
|
38104
38096
|
contactId?: string | null;
|
|
@@ -38133,8 +38125,8 @@ interface Staff {
|
|
|
38133
38125
|
_id?: string | null;
|
|
38134
38126
|
/**
|
|
38135
38127
|
* Staff name. Matches `staffMember.name` if the staff is a
|
|
38136
|
-
*
|
|
38137
|
-
* or the [contact](https://dev.wix.com/docs/
|
|
38128
|
+
* Bookings staff member,
|
|
38129
|
+
* or the [contact](https://dev.wix.com/docs/sdk/backend-modules/crm/contacts/introduction)'s
|
|
38138
38130
|
* `info.name` if not.
|
|
38139
38131
|
*
|
|
38140
38132
|
* Max: 500 characters
|
|
@@ -38142,7 +38134,7 @@ interface Staff {
|
|
|
38142
38134
|
*/
|
|
38143
38135
|
name?: string | null;
|
|
38144
38136
|
/**
|
|
38145
|
-
* ID of the
|
|
38137
|
+
* ID of the Bookings staff member.
|
|
38146
38138
|
* Available only if the staff is a staff member and not a
|
|
38147
38139
|
* [site collaborator](https://support.wix.com/en/article/inviting-people-to-contribute-to-your-site).
|
|
38148
38140
|
*/
|
|
@@ -38176,8 +38168,8 @@ interface LineItemInfo {
|
|
|
38176
38168
|
price?: string | null;
|
|
38177
38169
|
/**
|
|
38178
38170
|
* Name of the line item, which is identical to:
|
|
38179
|
-
* + `product.name` for [Stores](https://dev.wix.com/docs/
|
|
38180
|
-
* + `service.name` for [Bookings](https://dev.wix.com/docs/
|
|
38171
|
+
* + `product.name` for [Stores](https://dev.wix.com/docs/sdk/backend-modules/stores/products/introduction).
|
|
38172
|
+
* + `service.name` for [Bookings](https://dev.wix.com/docs/sdk/backend-modules/bookings/introduction).
|
|
38181
38173
|
*
|
|
38182
38174
|
* Min: 1 character
|
|
38183
38175
|
* Max: 200 characters
|
|
@@ -38219,6 +38211,16 @@ interface Transaction {
|
|
|
38219
38211
|
*/
|
|
38220
38212
|
date?: Date | null;
|
|
38221
38213
|
}
|
|
38214
|
+
declare enum Source {
|
|
38215
|
+
/** There is no information about who created the tip distributions. */
|
|
38216
|
+
UNKNOWN_SOURCE = "UNKNOWN_SOURCE",
|
|
38217
|
+
/** The customer added the tip distributions via an external payment terminal. */
|
|
38218
|
+
POS = "POS",
|
|
38219
|
+
/** The customer added the tip distributions during an online [ecommerce checkout](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/introduction). */
|
|
38220
|
+
WEB = "WEB",
|
|
38221
|
+
/** The business added the tip distributions on behalf of the customer in the site's dashboard. */
|
|
38222
|
+
DASHBOARD = "DASHBOARD"
|
|
38223
|
+
}
|
|
38222
38224
|
interface PreviewTipRequest {
|
|
38223
38225
|
/**
|
|
38224
38226
|
* Information about the line items to preview the tip for.
|
|
@@ -38676,6 +38678,7 @@ interface StaffNonNullableFields {
|
|
|
38676
38678
|
}
|
|
38677
38679
|
interface TipDistributionNonNullableFields {
|
|
38678
38680
|
staff?: StaffNonNullableFields;
|
|
38681
|
+
source: Source;
|
|
38679
38682
|
}
|
|
38680
38683
|
interface TipNonNullableFields {
|
|
38681
38684
|
distributions: TipDistributionNonNullableFields[];
|
|
@@ -38819,10 +38822,8 @@ interface PreviewTipSignature {
|
|
|
38819
38822
|
* Previews a tip for a list of line items.
|
|
38820
38823
|
*
|
|
38821
38824
|
*
|
|
38822
|
-
* If you provide the
|
|
38823
|
-
*
|
|
38824
|
-
* distributions for each associated
|
|
38825
|
-
* [Bookings staff member](https://dev.wix.com/docs/rest/business-solutions/bookings/staff-members-and-resources/about-staff-members-and-resources).
|
|
38825
|
+
* If you provide the Wix Bookings app ID `13d21c63-b5ec-5912-8397-c3a5ddb27a97` as `lineItemInfo.catalogReference.appId`, the response includes tip
|
|
38826
|
+
* distributions for each associated Bookings staff member.
|
|
38826
38827
|
*
|
|
38827
38828
|
* If you don't provide a `tipSettingsId`, the `staffDistributionMethod` is
|
|
38828
38829
|
* based on the site's default tip settings.
|
|
@@ -38830,6 +38831,7 @@ interface PreviewTipSignature {
|
|
|
38830
38831
|
*
|
|
38831
38832
|
* Min: 1 line item
|
|
38832
38833
|
* Max: 50 line items
|
|
38834
|
+
* @param - Options to use when previewing a tip.
|
|
38833
38835
|
*/
|
|
38834
38836
|
(lineItemInfo: LineItemInfo[], options?: PreviewTipOptions | undefined): Promise<PreviewTipResponse & PreviewTipResponseNonNullableFields>;
|
|
38835
38837
|
}
|
|
@@ -38837,7 +38839,7 @@ declare function getTipByOrderId$1(httpClient: HttpClient): GetTipByOrderIdSigna
|
|
|
38837
38839
|
interface GetTipByOrderIdSignature {
|
|
38838
38840
|
/**
|
|
38839
38841
|
* Retrieves the tip that's associated with an
|
|
38840
|
-
* [eCommerce order](https://dev.wix.com/docs/
|
|
38842
|
+
* [eCommerce order](https://dev.wix.com/docs/sdk/backend-modules/ecom/orders/setup).
|
|
38841
38843
|
* @param - ID of the order to retrieve the tip for.
|
|
38842
38844
|
*/
|
|
38843
38845
|
(orderId: string | null): Promise<GetTipByOrderIdResponse & GetTipByOrderIdResponseNonNullableFields>;
|
|
@@ -38846,7 +38848,7 @@ declare function getTipByDraftOrderId$1(httpClient: HttpClient): GetTipByDraftOr
|
|
|
38846
38848
|
interface GetTipByDraftOrderIdSignature {
|
|
38847
38849
|
/**
|
|
38848
38850
|
* Retrieves the tip that's associated with an
|
|
38849
|
-
*
|
|
38851
|
+
* eCommerce draft order.
|
|
38850
38852
|
* @param - ID of the draft order to retrieve the tip for.
|
|
38851
38853
|
*/
|
|
38852
38854
|
(draftOrderId: string | null): Promise<GetTipByDraftOrderIdResponse & GetTipByDraftOrderIdResponseNonNullableFields>;
|
|
@@ -38854,10 +38856,8 @@ interface GetTipByDraftOrderIdSignature {
|
|
|
38854
38856
|
declare function getTipChoice$1(httpClient: HttpClient): GetTipChoiceSignature;
|
|
38855
38857
|
interface GetTipChoiceSignature {
|
|
38856
38858
|
/**
|
|
38857
|
-
* Retrieves the tip choice that's currently selected by the customer for a specific [eCommerce checkout](https://dev.wix.com/docs/
|
|
38859
|
+
* Retrieves the tip choice that's currently selected by the customer for a specific [eCommerce checkout](https://dev.wix.com/docs/sdk/backend-modules/ecom/checkout/setup).
|
|
38858
38860
|
* If the customer hasn't yet selected a tip choice, the response is empty.
|
|
38859
|
-
*
|
|
38860
|
-
* Please refer to the [sample flow](https://dev.wix.com/docs/rest/business-solutions/e-commerce/tips/tips/sample-flows#add-or-update-a-tip-in-a-custom-checkout-flow) for more information.
|
|
38861
38861
|
* @param - ID of the [eCommerce purchase flow](https://dev.wix.com/docs/rest/business-solutions/e-commerce/wix-e-commerce-platform-handbook/overview/architecture-data-flow)
|
|
38862
38862
|
* to retrieve the tip choice for.
|
|
38863
38863
|
*/
|
|
@@ -38866,15 +38866,14 @@ interface GetTipChoiceSignature {
|
|
|
38866
38866
|
declare function updateTipChoice$1(httpClient: HttpClient): UpdateTipChoiceSignature;
|
|
38867
38867
|
interface UpdateTipChoiceSignature {
|
|
38868
38868
|
/**
|
|
38869
|
-
* Updates the tip choice that's currently selected by the customer for a specific [eCommerce checkout](https://dev.wix.com/docs/
|
|
38870
|
-
*
|
|
38871
|
-
* Please refer to the [sample flow](https://dev.wix.com/docs/rest/business-solutions/e-commerce/tips/tips/sample-flows#add-or-update-a-tip-in-a-custom-checkout-flow) for more information.
|
|
38869
|
+
* Updates the tip choice that's currently selected by the customer for a specific [eCommerce checkout](https://dev.wix.com/docs/sdk/backend-modules/ecom/checkout/setup).
|
|
38872
38870
|
* @param - Tip choice to select for the purchase flow. The call fails if you provide a
|
|
38873
38871
|
* value for `tipChoice.tipType` that doesn't match the relevant tip settings
|
|
38874
38872
|
* configuration. For example:
|
|
38875
38873
|
* + `AMOUNT` when `tipSettings.tipType` isn't `AMOUNT`.
|
|
38876
38874
|
* + `PERCENTAGE` when `tipSettings.tipType` isn't `PERCENTAGE`.
|
|
38877
38875
|
* + `CUSTOM` when `tipSettings.allowCustomTip` is `false`.
|
|
38876
|
+
* @param - Options to use when updating a tip choice.
|
|
38878
38877
|
*/
|
|
38879
38878
|
(tipChoice: TipChoice, options: UpdateTipChoiceOptions): Promise<UpdateTipChoiceResponse & UpdateTipChoiceResponseNonNullableFields>;
|
|
38880
38879
|
}
|
|
@@ -38897,6 +38896,7 @@ interface SetTipOnOrderSignature {
|
|
|
38897
38896
|
* + The total tip amount is zero or negative.
|
|
38898
38897
|
* + The sum of all tip distribution amounts and `undistributedAmount` doesn't match the total tip amount.
|
|
38899
38898
|
* + You omit `tip.distributions` with an existing `transaction`.
|
|
38899
|
+
* @param - Options to use when setting a tip on an order.
|
|
38900
38900
|
*/
|
|
38901
38901
|
(options?: SetTipOnOrderOptions | undefined): Promise<SetTipOnOrderResponse & SetTipOnOrderResponseNonNullableFields>;
|
|
38902
38902
|
}
|
|
@@ -38912,6 +38912,7 @@ interface RemoveTipFromOrderSignature {
|
|
|
38912
38912
|
*
|
|
38913
38913
|
* The call fails if the customer has already been charged for at least one of
|
|
38914
38914
|
* the associated tip distributions.
|
|
38915
|
+
* @param - Options to use when removing a tip from an order.
|
|
38915
38916
|
*/
|
|
38916
38917
|
(options?: RemoveTipFromOrderOptions | undefined): Promise<RemoveTipFromOrderResponse & RemoveTipFromOrderResponseNonNullableFields>;
|
|
38917
38918
|
}
|
|
@@ -38930,27 +38931,32 @@ interface AddTipDistributionsToOrderSignature {
|
|
|
38930
38931
|
* The call fails if:
|
|
38931
38932
|
* + The order's `paymentStatus` is either `FULLY_REFUNDED` or `PARTIALLY_REFUNDED`.
|
|
38932
38933
|
* + Any of the tip distribution amounts is zero or negative.
|
|
38934
|
+
* @param - Options to use when adding tip distributions to an order.
|
|
38933
38935
|
*/
|
|
38934
38936
|
(options?: AddTipDistributionsToOrderOptions | undefined): Promise<AddTipDistributionsToOrderResponse & AddTipDistributionsToOrderResponseNonNullableFields>;
|
|
38935
38937
|
}
|
|
38936
38938
|
declare function queryTipDistributions$1(httpClient: HttpClient): QueryTipDistributionsSignature;
|
|
38937
38939
|
interface QueryTipDistributionsSignature {
|
|
38938
38940
|
/**
|
|
38939
|
-
*
|
|
38941
|
+
* Creates a query to retrieve a list of tip distributions.
|
|
38940
38942
|
*
|
|
38941
|
-
*
|
|
38942
|
-
* - `cursorPaging.limit` is `50`
|
|
38943
|
+
* The `queryTipDistributions()` function builds a query to retrieve a list of tip distributions and returns a `TipDistributionsQueryBuilder` object.
|
|
38943
38944
|
*
|
|
38944
|
-
*
|
|
38945
|
-
*
|
|
38945
|
+
* The returned object contains the query definition, which is typically used to run the query using the [find()](https://dev.wix.com/docs/sdk/backend-modules/ecom/tips/tip-distributions-query-builder/find) function.
|
|
38946
|
+
*
|
|
38947
|
+
* You can refine the query by chaining `TipDistributionsQueryBuilder` functions onto the query. `TipDistributionsQueryBuilder` functions enable you to sort, filter, and control the results that `queryTipDistributions()` returns.
|
|
38948
|
+
*
|
|
38949
|
+
* `queryTipDistributions()` runs with the following `TipDistributionsQueryBuilder` default that you can override:
|
|
38950
|
+
*
|
|
38951
|
+
* + `limit` is `50`
|
|
38952
|
+
*
|
|
38953
|
+
* The functions that are chained to `queryTipDistributions()` are applied in the order they are called. For example, if you apply `ascending("transaction.transactionDate")` and then `ascending("staff.id")`, the results are sorted first by the `"transaction.transactionDate"`, and then, if there are multiple results with the same `"transaction.transactionDate"`, the items are sorted by `"staff.id"`.
|
|
38946
38954
|
*
|
|
38947
38955
|
* When setting a date filter remember to use
|
|
38948
38956
|
* [UTC time](https://en.wikipedia.org/wiki/Coordinated_Universal_Time).
|
|
38949
38957
|
*
|
|
38950
|
-
*
|
|
38951
|
-
*
|
|
38952
|
-
* [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/sorting-and-paging),
|
|
38953
|
-
* and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection).
|
|
38958
|
+
* The following `TipDistributionsQueryBuilder` functions are supported for the `queryTipDistributions()` function. For a full description of the tip distributions object, see the object returned for the [items](https://dev.wix.com/docs/sdk/backend-modules/ecom/tips/tip-distributions-query-result/items) property in `TipDistributionsQueryResult`.
|
|
38959
|
+
*
|
|
38954
38960
|
*/
|
|
38955
38961
|
(): TipDistributionsQueryBuilder;
|
|
38956
38962
|
}
|
|
@@ -39051,6 +39057,8 @@ type context_SetTipOnOrderResponseNonNullableFields = SetTipOnOrderResponseNonNu
|
|
|
39051
39057
|
type context_SortOrder = SortOrder;
|
|
39052
39058
|
declare const context_SortOrder: typeof SortOrder;
|
|
39053
39059
|
type context_Sorting = Sorting;
|
|
39060
|
+
type context_Source = Source;
|
|
39061
|
+
declare const context_Source: typeof Source;
|
|
39054
39062
|
type context_Staff = Staff;
|
|
39055
39063
|
type context_SumTipDistributionAmountsRequest = SumTipDistributionAmountsRequest;
|
|
39056
39064
|
type context_SumTipDistributionAmountsResponse = SumTipDistributionAmountsResponse;
|
|
@@ -39080,7 +39088,7 @@ declare const context_setTipOnOrder: typeof setTipOnOrder;
|
|
|
39080
39088
|
declare const context_sumTipDistributionAmounts: typeof sumTipDistributionAmounts;
|
|
39081
39089
|
declare const context_updateTipChoice: typeof updateTipChoice;
|
|
39082
39090
|
declare namespace context {
|
|
39083
|
-
export { type context_ActionEvent as ActionEvent, type context_AddTipDistributionsToOrderOptions as AddTipDistributionsToOrderOptions, type context_AddTipDistributionsToOrderRequest as AddTipDistributionsToOrderRequest, type context_AddTipDistributionsToOrderRequestIdentifierOneOf as AddTipDistributionsToOrderRequestIdentifierOneOf, type context_AddTipDistributionsToOrderResponse as AddTipDistributionsToOrderResponse, type context_AddTipDistributionsToOrderResponseNonNullableFields as AddTipDistributionsToOrderResponseNonNullableFields, type context_ApplyTipDistributionsRequest as ApplyTipDistributionsRequest, type context_ApplyTipDistributionsResponse as ApplyTipDistributionsResponse, type context_CatalogReference as CatalogReference, type context_CommonIdentificationData as CommonIdentificationData, type context_CommonIdentificationDataIdOneOf as CommonIdentificationDataIdOneOf, type context_CreateTipDistributionsRequest as CreateTipDistributionsRequest, type context_CreateTipDistributionsResponse as CreateTipDistributionsResponse, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_Cursors as Cursors, type context_DeleteTipDistributionsRequest as DeleteTipDistributionsRequest, type context_DeleteTipDistributionsRequestDeleteByOneOf as DeleteTipDistributionsRequestDeleteByOneOf, type context_DeleteTipDistributionsResponse as DeleteTipDistributionsResponse, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_GetTipByDraftOrderIdRequest as GetTipByDraftOrderIdRequest, type context_GetTipByDraftOrderIdResponse as GetTipByDraftOrderIdResponse, type context_GetTipByDraftOrderIdResponseNonNullableFields as GetTipByDraftOrderIdResponseNonNullableFields, type context_GetTipByOrderIdRequest as GetTipByOrderIdRequest, type context_GetTipByOrderIdResponse as GetTipByOrderIdResponse, type context_GetTipByOrderIdResponseNonNullableFields as GetTipByOrderIdResponseNonNullableFields, type context_GetTipChoiceRequest as GetTipChoiceRequest, type context_GetTipChoiceResponse as GetTipChoiceResponse, type context_GetTipChoiceResponseNonNullableFields as GetTipChoiceResponseNonNullableFields, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_LineItemInfo as LineItemInfo, type context_MessageEnvelope as MessageEnvelope, type context_OrderInfo as OrderInfo, type context_OrderInfoIdentifierOneOf as OrderInfoIdentifierOneOf, type context_PreviewTipOptions as PreviewTipOptions, type context_PreviewTipRequest as PreviewTipRequest, type context_PreviewTipResponse as PreviewTipResponse, type context_PreviewTipResponseNonNullableFields as PreviewTipResponseNonNullableFields, type context_Price as Price, type context_PublishTipDistributionsCreatedEventRequest as PublishTipDistributionsCreatedEventRequest, type context_PublishTipDistributionsCreatedEventResponse as PublishTipDistributionsCreatedEventResponse, context_QueryBy as QueryBy, type context_QueryTipDistributionsRequest as QueryTipDistributionsRequest, type context_QueryTipDistributionsResponse as QueryTipDistributionsResponse, type context_QueryTipDistributionsResponseNonNullableFields as QueryTipDistributionsResponseNonNullableFields, type context_RemoveTipFromOrderOptions as RemoveTipFromOrderOptions, type context_RemoveTipFromOrderRequest as RemoveTipFromOrderRequest, type context_RemoveTipFromOrderRequestIdentifierOneOf as RemoveTipFromOrderRequestIdentifierOneOf, type context_RemoveTipFromOrderResponse as RemoveTipFromOrderResponse, type context_RemoveTipFromOrderResponseNonNullableFields as RemoveTipFromOrderResponseNonNullableFields, type context_RestoreInfo as RestoreInfo, type context_SetTipOnOrderOptions as SetTipOnOrderOptions, type context_SetTipOnOrderRequest as SetTipOnOrderRequest, type context_SetTipOnOrderRequestIdentifierOneOf as SetTipOnOrderRequestIdentifierOneOf, type context_SetTipOnOrderResponse as SetTipOnOrderResponse, type context_SetTipOnOrderResponseNonNullableFields as SetTipOnOrderResponseNonNullableFields, context_SortOrder as SortOrder, type context_Sorting as Sorting, type context_Staff as Staff, type context_SumTipDistributionAmountsRequest as SumTipDistributionAmountsRequest, type context_SumTipDistributionAmountsResponse as SumTipDistributionAmountsResponse, type context_Tip as Tip, type context_TipChoice as TipChoice, type context_TipDistribution as TipDistribution, type context_TipDistributionsCreated as TipDistributionsCreated, type context_TipDistributionsQueryBuilder as TipDistributionsQueryBuilder, type context_TipDistributionsQueryResult as TipDistributionsQueryResult, context_TipType as TipType, type context_Transaction as Transaction, type context_UpdateTipChoiceOptions as UpdateTipChoiceOptions, type context_UpdateTipChoiceRequest as UpdateTipChoiceRequest, type context_UpdateTipChoiceResponse as UpdateTipChoiceResponse, type context_UpdateTipChoiceResponseNonNullableFields as UpdateTipChoiceResponseNonNullableFields, context_WebhookIdentityType as WebhookIdentityType, context_addTipDistributionsToOrder as addTipDistributionsToOrder, context_getTipByDraftOrderId as getTipByDraftOrderId, context_getTipByOrderId as getTipByOrderId, context_getTipChoice as getTipChoice, context_previewTip as previewTip, context_queryTipDistributions as queryTipDistributions, context_removeTipFromOrder as removeTipFromOrder, context_setTipOnOrder as setTipOnOrder, context_sumTipDistributionAmounts as sumTipDistributionAmounts, context_updateTipChoice as updateTipChoice };
|
|
39091
|
+
export { type context_ActionEvent as ActionEvent, type context_AddTipDistributionsToOrderOptions as AddTipDistributionsToOrderOptions, type context_AddTipDistributionsToOrderRequest as AddTipDistributionsToOrderRequest, type context_AddTipDistributionsToOrderRequestIdentifierOneOf as AddTipDistributionsToOrderRequestIdentifierOneOf, type context_AddTipDistributionsToOrderResponse as AddTipDistributionsToOrderResponse, type context_AddTipDistributionsToOrderResponseNonNullableFields as AddTipDistributionsToOrderResponseNonNullableFields, type context_ApplyTipDistributionsRequest as ApplyTipDistributionsRequest, type context_ApplyTipDistributionsResponse as ApplyTipDistributionsResponse, type context_CatalogReference as CatalogReference, type context_CommonIdentificationData as CommonIdentificationData, type context_CommonIdentificationDataIdOneOf as CommonIdentificationDataIdOneOf, type context_CreateTipDistributionsRequest as CreateTipDistributionsRequest, type context_CreateTipDistributionsResponse as CreateTipDistributionsResponse, type context_CursorPaging as CursorPaging, type context_CursorPagingMetadata as CursorPagingMetadata, type context_CursorQuery as CursorQuery, type context_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type context_Cursors as Cursors, type context_DeleteTipDistributionsRequest as DeleteTipDistributionsRequest, type context_DeleteTipDistributionsRequestDeleteByOneOf as DeleteTipDistributionsRequestDeleteByOneOf, type context_DeleteTipDistributionsResponse as DeleteTipDistributionsResponse, type context_DomainEvent as DomainEvent, type context_DomainEventBodyOneOf as DomainEventBodyOneOf, type context_EntityCreatedEvent as EntityCreatedEvent, type context_EntityDeletedEvent as EntityDeletedEvent, type context_EntityUpdatedEvent as EntityUpdatedEvent, type context_GetTipByDraftOrderIdRequest as GetTipByDraftOrderIdRequest, type context_GetTipByDraftOrderIdResponse as GetTipByDraftOrderIdResponse, type context_GetTipByDraftOrderIdResponseNonNullableFields as GetTipByDraftOrderIdResponseNonNullableFields, type context_GetTipByOrderIdRequest as GetTipByOrderIdRequest, type context_GetTipByOrderIdResponse as GetTipByOrderIdResponse, type context_GetTipByOrderIdResponseNonNullableFields as GetTipByOrderIdResponseNonNullableFields, type context_GetTipChoiceRequest as GetTipChoiceRequest, type context_GetTipChoiceResponse as GetTipChoiceResponse, type context_GetTipChoiceResponseNonNullableFields as GetTipChoiceResponseNonNullableFields, type context_IdentificationData as IdentificationData, type context_IdentificationDataIdOneOf as IdentificationDataIdOneOf, context_IdentityType as IdentityType, type context_LineItemInfo as LineItemInfo, type context_MessageEnvelope as MessageEnvelope, type context_OrderInfo as OrderInfo, type context_OrderInfoIdentifierOneOf as OrderInfoIdentifierOneOf, type context_PreviewTipOptions as PreviewTipOptions, type context_PreviewTipRequest as PreviewTipRequest, type context_PreviewTipResponse as PreviewTipResponse, type context_PreviewTipResponseNonNullableFields as PreviewTipResponseNonNullableFields, type context_Price as Price, type context_PublishTipDistributionsCreatedEventRequest as PublishTipDistributionsCreatedEventRequest, type context_PublishTipDistributionsCreatedEventResponse as PublishTipDistributionsCreatedEventResponse, context_QueryBy as QueryBy, type context_QueryTipDistributionsRequest as QueryTipDistributionsRequest, type context_QueryTipDistributionsResponse as QueryTipDistributionsResponse, type context_QueryTipDistributionsResponseNonNullableFields as QueryTipDistributionsResponseNonNullableFields, type context_RemoveTipFromOrderOptions as RemoveTipFromOrderOptions, type context_RemoveTipFromOrderRequest as RemoveTipFromOrderRequest, type context_RemoveTipFromOrderRequestIdentifierOneOf as RemoveTipFromOrderRequestIdentifierOneOf, type context_RemoveTipFromOrderResponse as RemoveTipFromOrderResponse, type context_RemoveTipFromOrderResponseNonNullableFields as RemoveTipFromOrderResponseNonNullableFields, type context_RestoreInfo as RestoreInfo, type context_SetTipOnOrderOptions as SetTipOnOrderOptions, type context_SetTipOnOrderRequest as SetTipOnOrderRequest, type context_SetTipOnOrderRequestIdentifierOneOf as SetTipOnOrderRequestIdentifierOneOf, type context_SetTipOnOrderResponse as SetTipOnOrderResponse, type context_SetTipOnOrderResponseNonNullableFields as SetTipOnOrderResponseNonNullableFields, context_SortOrder as SortOrder, type context_Sorting as Sorting, context_Source as Source, type context_Staff as Staff, type context_SumTipDistributionAmountsRequest as SumTipDistributionAmountsRequest, type context_SumTipDistributionAmountsResponse as SumTipDistributionAmountsResponse, type context_Tip as Tip, type context_TipChoice as TipChoice, type context_TipDistribution as TipDistribution, type context_TipDistributionsCreated as TipDistributionsCreated, type context_TipDistributionsQueryBuilder as TipDistributionsQueryBuilder, type context_TipDistributionsQueryResult as TipDistributionsQueryResult, context_TipType as TipType, type context_Transaction as Transaction, type context_UpdateTipChoiceOptions as UpdateTipChoiceOptions, type context_UpdateTipChoiceRequest as UpdateTipChoiceRequest, type context_UpdateTipChoiceResponse as UpdateTipChoiceResponse, type context_UpdateTipChoiceResponseNonNullableFields as UpdateTipChoiceResponseNonNullableFields, context_WebhookIdentityType as WebhookIdentityType, context_addTipDistributionsToOrder as addTipDistributionsToOrder, context_getTipByDraftOrderId as getTipByDraftOrderId, context_getTipByOrderId as getTipByOrderId, context_getTipChoice as getTipChoice, context_previewTip as previewTip, context_queryTipDistributions as queryTipDistributions, context_removeTipFromOrder as removeTipFromOrder, context_setTipOnOrder as setTipOnOrder, context_sumTipDistributionAmounts as sumTipDistributionAmounts, context_updateTipChoice as updateTipChoice };
|
|
39084
39092
|
}
|
|
39085
39093
|
|
|
39086
39094
|
export { context$p as abandonedCheckouts, context$o as backInStockNotifications, context$n as backInStockSettings, context$m as cart, context$k as checkout, context$v as checkoutContent, context$j as checkoutSettings, context$i as checkoutTemplates, context$4 as currencies, context$l as currentCart, context$h as deliveryProfile, context$3 as deliverySolutions, context$t as discountRules, context$u as discountsCustomTrigger, context$g as draftOrders, context$e as giftVouchers, context$d as localDeliveryOptions, context$f as orderFulfillments, context$s as orderInvoices, context$b as orderPaymentRequests, context$a as orderTransactions, context$c as orders, context$9 as ordersSettings, context$8 as pickupLocations, context$r as recommendations, context$7 as shippingOptions, context$6 as shippoConfigurations, context$q as subscriptionContracts, context$2 as tipSettings, context$1 as tippableStaff, context as tips, context$5 as totalsCalculator };
|