@wix/ecom 1.0.819 → 1.0.821
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.821",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@wix/ecom_discount-rules": "1.0.61",
|
|
40
40
|
"@wix/ecom_discounts": "1.0.13",
|
|
41
41
|
"@wix/ecom_discounts-custom-trigger": "1.0.16",
|
|
42
|
-
"@wix/ecom_draft-orders": "1.0.
|
|
42
|
+
"@wix/ecom_draft-orders": "1.0.40",
|
|
43
43
|
"@wix/ecom_gift-vouchers": "1.0.12",
|
|
44
44
|
"@wix/ecom_gift-vouchers-provider": "1.0.12",
|
|
45
45
|
"@wix/ecom_local-delivery-options": "1.0.18",
|
|
@@ -48,16 +48,16 @@
|
|
|
48
48
|
"@wix/ecom_order-invoices": "1.0.48",
|
|
49
49
|
"@wix/ecom_order-payment-requests": "1.0.19",
|
|
50
50
|
"@wix/ecom_order-transactions": "1.0.76",
|
|
51
|
-
"@wix/ecom_orders": "1.0.
|
|
51
|
+
"@wix/ecom_orders": "1.0.143",
|
|
52
52
|
"@wix/ecom_orders-settings": "1.0.54",
|
|
53
|
-
"@wix/ecom_payment-settings": "1.0.
|
|
53
|
+
"@wix/ecom_payment-settings": "1.0.68",
|
|
54
54
|
"@wix/ecom_pickup-locations": "1.0.18",
|
|
55
55
|
"@wix/ecom_recommendations": "1.0.51",
|
|
56
56
|
"@wix/ecom_recommendations-provider": "1.0.9",
|
|
57
57
|
"@wix/ecom_shipping-options": "1.0.16",
|
|
58
58
|
"@wix/ecom_shipping-rates": "1.0.52",
|
|
59
59
|
"@wix/ecom_shippo-configurations": "1.0.23",
|
|
60
|
-
"@wix/ecom_subscription-contracts": "1.0.
|
|
60
|
+
"@wix/ecom_subscription-contracts": "1.0.7",
|
|
61
61
|
"@wix/ecom_tip-settings": "1.0.2",
|
|
62
62
|
"@wix/ecom_tippable-staff": "1.0.2",
|
|
63
63
|
"@wix/ecom_tips": "1.0.3",
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"fqdn": ""
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
|
-
"falconPackageHash": "
|
|
90
|
+
"falconPackageHash": "618dd1cb3b18a27e7e48cc2aeb0c28129424d283b1459d3727e3d103"
|
|
91
91
|
}
|
|
@@ -2909,6 +2909,13 @@ interface OrderTaxInfo$2 {
|
|
|
2909
2909
|
totalTax?: Price$5;
|
|
2910
2910
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
2911
2911
|
taxBreakdown?: OrderTaxBreakdown$2[];
|
|
2912
|
+
/**
|
|
2913
|
+
* Whether the draft order is exempt from tax calculations.
|
|
2914
|
+
*
|
|
2915
|
+
* Default: `true`
|
|
2916
|
+
* @readonly
|
|
2917
|
+
*/
|
|
2918
|
+
taxExempt?: boolean | null;
|
|
2912
2919
|
}
|
|
2913
2920
|
/**
|
|
2914
2921
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -19782,6 +19789,13 @@ interface OrderTaxInfo$1 {
|
|
|
19782
19789
|
totalTax?: Price$4;
|
|
19783
19790
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
19784
19791
|
taxBreakdown?: OrderTaxBreakdown$1[];
|
|
19792
|
+
/**
|
|
19793
|
+
* Whether the draft order is exempt from tax calculations.
|
|
19794
|
+
*
|
|
19795
|
+
* Default: `true`
|
|
19796
|
+
* @readonly
|
|
19797
|
+
*/
|
|
19798
|
+
taxExempt?: boolean | null;
|
|
19785
19799
|
}
|
|
19786
19800
|
/**
|
|
19787
19801
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -24725,6 +24739,13 @@ interface OrderTaxInfo {
|
|
|
24725
24739
|
totalTax?: Price$3;
|
|
24726
24740
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
24727
24741
|
taxBreakdown?: OrderTaxBreakdown[];
|
|
24742
|
+
/**
|
|
24743
|
+
* Whether the draft order is exempt from tax calculations.
|
|
24744
|
+
*
|
|
24745
|
+
* Default: `true`
|
|
24746
|
+
* @readonly
|
|
24747
|
+
*/
|
|
24748
|
+
taxExempt?: boolean | null;
|
|
24728
24749
|
}
|
|
24729
24750
|
/**
|
|
24730
24751
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -25401,6 +25422,10 @@ interface SnapshotMessage$1 {
|
|
|
25401
25422
|
_id?: string;
|
|
25402
25423
|
opType?: number;
|
|
25403
25424
|
}
|
|
25425
|
+
interface OrderRejectedEventOrderRejected {
|
|
25426
|
+
/** The order that was rejected */
|
|
25427
|
+
order?: Order$1;
|
|
25428
|
+
}
|
|
25404
25429
|
interface GetMetasiteDataRequest {
|
|
25405
25430
|
/** meta site Id for data to retrieve */
|
|
25406
25431
|
metasiteId?: string;
|
|
@@ -26097,6 +26122,76 @@ interface UpsertRefundResponse {
|
|
|
26097
26122
|
/** Updated order transactions. */
|
|
26098
26123
|
orderTransactions?: OrderTransactions$2;
|
|
26099
26124
|
}
|
|
26125
|
+
interface DomainEvent$9 extends DomainEventBodyOneOf$9 {
|
|
26126
|
+
createdEvent?: EntityCreatedEvent$9;
|
|
26127
|
+
updatedEvent?: EntityUpdatedEvent$9;
|
|
26128
|
+
deletedEvent?: EntityDeletedEvent$9;
|
|
26129
|
+
actionEvent?: ActionEvent$9;
|
|
26130
|
+
/**
|
|
26131
|
+
* Unique event ID.
|
|
26132
|
+
* Allows clients to ignore duplicate webhooks.
|
|
26133
|
+
*/
|
|
26134
|
+
_id?: string;
|
|
26135
|
+
/**
|
|
26136
|
+
* Assumes actions are also always typed to an entity_type
|
|
26137
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
26138
|
+
*/
|
|
26139
|
+
entityFqdn?: string;
|
|
26140
|
+
/**
|
|
26141
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
26142
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
26143
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
26144
|
+
*/
|
|
26145
|
+
slug?: string;
|
|
26146
|
+
/** ID of the entity associated with the event. */
|
|
26147
|
+
entityId?: string;
|
|
26148
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
26149
|
+
eventTime?: Date | null;
|
|
26150
|
+
/**
|
|
26151
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
26152
|
+
* (for example, GDPR).
|
|
26153
|
+
*/
|
|
26154
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
26155
|
+
/** If present, indicates the action that triggered the event. */
|
|
26156
|
+
originatedFrom?: string | null;
|
|
26157
|
+
/**
|
|
26158
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
26159
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
26160
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
26161
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
26162
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
26163
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
26164
|
+
*/
|
|
26165
|
+
entityEventSequence?: string | null;
|
|
26166
|
+
}
|
|
26167
|
+
/** @oneof */
|
|
26168
|
+
interface DomainEventBodyOneOf$9 {
|
|
26169
|
+
createdEvent?: EntityCreatedEvent$9;
|
|
26170
|
+
updatedEvent?: EntityUpdatedEvent$9;
|
|
26171
|
+
deletedEvent?: EntityDeletedEvent$9;
|
|
26172
|
+
actionEvent?: ActionEvent$9;
|
|
26173
|
+
}
|
|
26174
|
+
interface EntityCreatedEvent$9 {
|
|
26175
|
+
entity?: string;
|
|
26176
|
+
}
|
|
26177
|
+
interface RestoreInfo$9 {
|
|
26178
|
+
deletedDate?: Date | null;
|
|
26179
|
+
}
|
|
26180
|
+
interface EntityUpdatedEvent$9 {
|
|
26181
|
+
/**
|
|
26182
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
26183
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
26184
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
26185
|
+
*/
|
|
26186
|
+
currentEntity?: string;
|
|
26187
|
+
}
|
|
26188
|
+
interface EntityDeletedEvent$9 {
|
|
26189
|
+
/** Entity that was deleted */
|
|
26190
|
+
deletedEntity?: string | null;
|
|
26191
|
+
}
|
|
26192
|
+
interface ActionEvent$9 {
|
|
26193
|
+
body?: string;
|
|
26194
|
+
}
|
|
26100
26195
|
interface MessageEnvelope$8 {
|
|
26101
26196
|
/** App instance ID. */
|
|
26102
26197
|
instanceId?: string | null;
|
|
@@ -26246,76 +26341,6 @@ interface TriggerReindexRequest {
|
|
|
26246
26341
|
}
|
|
26247
26342
|
interface TriggerReindexResponse {
|
|
26248
26343
|
}
|
|
26249
|
-
interface DomainEvent$9 extends DomainEventBodyOneOf$9 {
|
|
26250
|
-
createdEvent?: EntityCreatedEvent$9;
|
|
26251
|
-
updatedEvent?: EntityUpdatedEvent$9;
|
|
26252
|
-
deletedEvent?: EntityDeletedEvent$9;
|
|
26253
|
-
actionEvent?: ActionEvent$9;
|
|
26254
|
-
/**
|
|
26255
|
-
* Unique event ID.
|
|
26256
|
-
* Allows clients to ignore duplicate webhooks.
|
|
26257
|
-
*/
|
|
26258
|
-
_id?: string;
|
|
26259
|
-
/**
|
|
26260
|
-
* Assumes actions are also always typed to an entity_type
|
|
26261
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
26262
|
-
*/
|
|
26263
|
-
entityFqdn?: string;
|
|
26264
|
-
/**
|
|
26265
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
26266
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
26267
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
26268
|
-
*/
|
|
26269
|
-
slug?: string;
|
|
26270
|
-
/** ID of the entity associated with the event. */
|
|
26271
|
-
entityId?: string;
|
|
26272
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
26273
|
-
eventTime?: Date | null;
|
|
26274
|
-
/**
|
|
26275
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
26276
|
-
* (for example, GDPR).
|
|
26277
|
-
*/
|
|
26278
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
26279
|
-
/** If present, indicates the action that triggered the event. */
|
|
26280
|
-
originatedFrom?: string | null;
|
|
26281
|
-
/**
|
|
26282
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
26283
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
26284
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
26285
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
26286
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
26287
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
26288
|
-
*/
|
|
26289
|
-
entityEventSequence?: string | null;
|
|
26290
|
-
}
|
|
26291
|
-
/** @oneof */
|
|
26292
|
-
interface DomainEventBodyOneOf$9 {
|
|
26293
|
-
createdEvent?: EntityCreatedEvent$9;
|
|
26294
|
-
updatedEvent?: EntityUpdatedEvent$9;
|
|
26295
|
-
deletedEvent?: EntityDeletedEvent$9;
|
|
26296
|
-
actionEvent?: ActionEvent$9;
|
|
26297
|
-
}
|
|
26298
|
-
interface EntityCreatedEvent$9 {
|
|
26299
|
-
entity?: string;
|
|
26300
|
-
}
|
|
26301
|
-
interface RestoreInfo$9 {
|
|
26302
|
-
deletedDate?: Date | null;
|
|
26303
|
-
}
|
|
26304
|
-
interface EntityUpdatedEvent$9 {
|
|
26305
|
-
/**
|
|
26306
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
26307
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
26308
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
26309
|
-
*/
|
|
26310
|
-
currentEntity?: string;
|
|
26311
|
-
}
|
|
26312
|
-
interface EntityDeletedEvent$9 {
|
|
26313
|
-
/** Entity that was deleted */
|
|
26314
|
-
deletedEntity?: string | null;
|
|
26315
|
-
}
|
|
26316
|
-
interface ActionEvent$9 {
|
|
26317
|
-
body?: string;
|
|
26318
|
-
}
|
|
26319
26344
|
interface Empty$5 {
|
|
26320
26345
|
}
|
|
26321
26346
|
interface BatchOfTriggerReindexOrderRequest {
|
|
@@ -29637,6 +29662,7 @@ type context$c_OrderPaymentStatusUpdatedEnvelope = OrderPaymentStatusUpdatedEnve
|
|
|
29637
29662
|
type context$c_OrderPending = OrderPending;
|
|
29638
29663
|
type context$c_OrderPlaced = OrderPlaced;
|
|
29639
29664
|
type context$c_OrderRejected = OrderRejected;
|
|
29665
|
+
type context$c_OrderRejectedEventOrderRejected = OrderRejectedEventOrderRejected;
|
|
29640
29666
|
type context$c_OrderStatus = OrderStatus;
|
|
29641
29667
|
declare const context$c_OrderStatus: typeof OrderStatus;
|
|
29642
29668
|
type context$c_OrderTaxBreakdown = OrderTaxBreakdown;
|
|
@@ -29826,7 +29852,7 @@ declare const context$c_searchOrders: typeof searchOrders;
|
|
|
29826
29852
|
declare const context$c_updateOrder: typeof updateOrder;
|
|
29827
29853
|
declare const context$c_voidAuthorizedPayments: typeof voidAuthorizedPayments;
|
|
29828
29854
|
declare namespace context$c {
|
|
29829
|
-
export { type ActionEvent$9 as ActionEvent, ActionType$2 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$2 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$2 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$2 as AuthorizationActionFailureDetails, type AuthorizationCapture$2 as AuthorizationCapture, AuthorizationCaptureStatus$2 as AuthorizationCaptureStatus, type AuthorizationDetails$2 as AuthorizationDetails, type AuthorizationVoid$2 as AuthorizationVoid, AuthorizationVoidStatus$2 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$4 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$2 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$4 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$2 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$2 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$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, type context$c_MembershipPaymentRefund as MembershipPaymentRefund, MembershipPaymentStatus$2 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, context$c_OrderStatus as OrderStatus, type context$c_OrderTaxBreakdown as OrderTaxBreakdown, type context$c_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type context$c_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type context$c_OrdersExperiments as OrdersExperiments, type Payment$2 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$2 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$2 as Reason, type context$c_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type context$c_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type context$c_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type context$c_RefundInitiated as RefundInitiated, type RefundItem$2 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$2 as RefundStatus, type RefundTransaction$2 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$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 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$2 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$2 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$2 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 };
|
|
29855
|
+
export { type ActionEvent$9 as ActionEvent, ActionType$2 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$2 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$2 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$2 as AuthorizationActionFailureDetails, type AuthorizationCapture$2 as AuthorizationCapture, AuthorizationCaptureStatus$2 as AuthorizationCaptureStatus, type AuthorizationDetails$2 as AuthorizationDetails, type AuthorizationVoid$2 as AuthorizationVoid, AuthorizationVoidStatus$2 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$4 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$2 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$4 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$2 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$2 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$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, type context$c_MembershipPaymentRefund as MembershipPaymentRefund, MembershipPaymentStatus$2 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$2 as OrderTransactions, type context$c_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type context$c_OrdersExperiments as OrdersExperiments, type Payment$2 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$2 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$2 as Reason, type context$c_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type context$c_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type context$c_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type context$c_RefundInitiated as RefundInitiated, type RefundItem$2 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$2 as RefundStatus, type RefundTransaction$2 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$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 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$2 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$2 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$2 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 };
|
|
29830
29856
|
}
|
|
29831
29857
|
|
|
29832
29858
|
interface OrderPaymentRequest {
|
|
@@ -2909,6 +2909,13 @@ interface OrderTaxInfo$2 {
|
|
|
2909
2909
|
totalTax?: Price$5;
|
|
2910
2910
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
2911
2911
|
taxBreakdown?: OrderTaxBreakdown$2[];
|
|
2912
|
+
/**
|
|
2913
|
+
* Whether the draft order is exempt from tax calculations.
|
|
2914
|
+
*
|
|
2915
|
+
* Default: `true`
|
|
2916
|
+
* @readonly
|
|
2917
|
+
*/
|
|
2918
|
+
taxExempt?: boolean | null;
|
|
2912
2919
|
}
|
|
2913
2920
|
/**
|
|
2914
2921
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -19782,6 +19789,13 @@ interface OrderTaxInfo$1 {
|
|
|
19782
19789
|
totalTax?: Price$4;
|
|
19783
19790
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
19784
19791
|
taxBreakdown?: OrderTaxBreakdown$1[];
|
|
19792
|
+
/**
|
|
19793
|
+
* Whether the draft order is exempt from tax calculations.
|
|
19794
|
+
*
|
|
19795
|
+
* Default: `true`
|
|
19796
|
+
* @readonly
|
|
19797
|
+
*/
|
|
19798
|
+
taxExempt?: boolean | null;
|
|
19785
19799
|
}
|
|
19786
19800
|
/**
|
|
19787
19801
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -24725,6 +24739,13 @@ interface OrderTaxInfo {
|
|
|
24725
24739
|
totalTax?: Price$3;
|
|
24726
24740
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
24727
24741
|
taxBreakdown?: OrderTaxBreakdown[];
|
|
24742
|
+
/**
|
|
24743
|
+
* Whether the draft order is exempt from tax calculations.
|
|
24744
|
+
*
|
|
24745
|
+
* Default: `true`
|
|
24746
|
+
* @readonly
|
|
24747
|
+
*/
|
|
24748
|
+
taxExempt?: boolean | null;
|
|
24728
24749
|
}
|
|
24729
24750
|
/**
|
|
24730
24751
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -25401,6 +25422,10 @@ interface SnapshotMessage$1 {
|
|
|
25401
25422
|
_id?: string;
|
|
25402
25423
|
opType?: number;
|
|
25403
25424
|
}
|
|
25425
|
+
interface OrderRejectedEventOrderRejected {
|
|
25426
|
+
/** The order that was rejected */
|
|
25427
|
+
order?: Order$1;
|
|
25428
|
+
}
|
|
25404
25429
|
interface GetMetasiteDataRequest {
|
|
25405
25430
|
/** meta site Id for data to retrieve */
|
|
25406
25431
|
metasiteId?: string;
|
|
@@ -26097,6 +26122,76 @@ interface UpsertRefundResponse {
|
|
|
26097
26122
|
/** Updated order transactions. */
|
|
26098
26123
|
orderTransactions?: OrderTransactions$2;
|
|
26099
26124
|
}
|
|
26125
|
+
interface DomainEvent$9 extends DomainEventBodyOneOf$9 {
|
|
26126
|
+
createdEvent?: EntityCreatedEvent$9;
|
|
26127
|
+
updatedEvent?: EntityUpdatedEvent$9;
|
|
26128
|
+
deletedEvent?: EntityDeletedEvent$9;
|
|
26129
|
+
actionEvent?: ActionEvent$9;
|
|
26130
|
+
/**
|
|
26131
|
+
* Unique event ID.
|
|
26132
|
+
* Allows clients to ignore duplicate webhooks.
|
|
26133
|
+
*/
|
|
26134
|
+
_id?: string;
|
|
26135
|
+
/**
|
|
26136
|
+
* Assumes actions are also always typed to an entity_type
|
|
26137
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
26138
|
+
*/
|
|
26139
|
+
entityFqdn?: string;
|
|
26140
|
+
/**
|
|
26141
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
26142
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
26143
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
26144
|
+
*/
|
|
26145
|
+
slug?: string;
|
|
26146
|
+
/** ID of the entity associated with the event. */
|
|
26147
|
+
entityId?: string;
|
|
26148
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
26149
|
+
eventTime?: Date | null;
|
|
26150
|
+
/**
|
|
26151
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
26152
|
+
* (for example, GDPR).
|
|
26153
|
+
*/
|
|
26154
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
26155
|
+
/** If present, indicates the action that triggered the event. */
|
|
26156
|
+
originatedFrom?: string | null;
|
|
26157
|
+
/**
|
|
26158
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
26159
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
26160
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
26161
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
26162
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
26163
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
26164
|
+
*/
|
|
26165
|
+
entityEventSequence?: string | null;
|
|
26166
|
+
}
|
|
26167
|
+
/** @oneof */
|
|
26168
|
+
interface DomainEventBodyOneOf$9 {
|
|
26169
|
+
createdEvent?: EntityCreatedEvent$9;
|
|
26170
|
+
updatedEvent?: EntityUpdatedEvent$9;
|
|
26171
|
+
deletedEvent?: EntityDeletedEvent$9;
|
|
26172
|
+
actionEvent?: ActionEvent$9;
|
|
26173
|
+
}
|
|
26174
|
+
interface EntityCreatedEvent$9 {
|
|
26175
|
+
entity?: string;
|
|
26176
|
+
}
|
|
26177
|
+
interface RestoreInfo$9 {
|
|
26178
|
+
deletedDate?: Date | null;
|
|
26179
|
+
}
|
|
26180
|
+
interface EntityUpdatedEvent$9 {
|
|
26181
|
+
/**
|
|
26182
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
26183
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
26184
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
26185
|
+
*/
|
|
26186
|
+
currentEntity?: string;
|
|
26187
|
+
}
|
|
26188
|
+
interface EntityDeletedEvent$9 {
|
|
26189
|
+
/** Entity that was deleted */
|
|
26190
|
+
deletedEntity?: string | null;
|
|
26191
|
+
}
|
|
26192
|
+
interface ActionEvent$9 {
|
|
26193
|
+
body?: string;
|
|
26194
|
+
}
|
|
26100
26195
|
interface MessageEnvelope$8 {
|
|
26101
26196
|
/** App instance ID. */
|
|
26102
26197
|
instanceId?: string | null;
|
|
@@ -26246,76 +26341,6 @@ interface TriggerReindexRequest {
|
|
|
26246
26341
|
}
|
|
26247
26342
|
interface TriggerReindexResponse {
|
|
26248
26343
|
}
|
|
26249
|
-
interface DomainEvent$9 extends DomainEventBodyOneOf$9 {
|
|
26250
|
-
createdEvent?: EntityCreatedEvent$9;
|
|
26251
|
-
updatedEvent?: EntityUpdatedEvent$9;
|
|
26252
|
-
deletedEvent?: EntityDeletedEvent$9;
|
|
26253
|
-
actionEvent?: ActionEvent$9;
|
|
26254
|
-
/**
|
|
26255
|
-
* Unique event ID.
|
|
26256
|
-
* Allows clients to ignore duplicate webhooks.
|
|
26257
|
-
*/
|
|
26258
|
-
_id?: string;
|
|
26259
|
-
/**
|
|
26260
|
-
* Assumes actions are also always typed to an entity_type
|
|
26261
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
26262
|
-
*/
|
|
26263
|
-
entityFqdn?: string;
|
|
26264
|
-
/**
|
|
26265
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
26266
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
26267
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
26268
|
-
*/
|
|
26269
|
-
slug?: string;
|
|
26270
|
-
/** ID of the entity associated with the event. */
|
|
26271
|
-
entityId?: string;
|
|
26272
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
26273
|
-
eventTime?: Date | null;
|
|
26274
|
-
/**
|
|
26275
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
26276
|
-
* (for example, GDPR).
|
|
26277
|
-
*/
|
|
26278
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
26279
|
-
/** If present, indicates the action that triggered the event. */
|
|
26280
|
-
originatedFrom?: string | null;
|
|
26281
|
-
/**
|
|
26282
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
26283
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
26284
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
26285
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
26286
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
26287
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
26288
|
-
*/
|
|
26289
|
-
entityEventSequence?: string | null;
|
|
26290
|
-
}
|
|
26291
|
-
/** @oneof */
|
|
26292
|
-
interface DomainEventBodyOneOf$9 {
|
|
26293
|
-
createdEvent?: EntityCreatedEvent$9;
|
|
26294
|
-
updatedEvent?: EntityUpdatedEvent$9;
|
|
26295
|
-
deletedEvent?: EntityDeletedEvent$9;
|
|
26296
|
-
actionEvent?: ActionEvent$9;
|
|
26297
|
-
}
|
|
26298
|
-
interface EntityCreatedEvent$9 {
|
|
26299
|
-
entity?: string;
|
|
26300
|
-
}
|
|
26301
|
-
interface RestoreInfo$9 {
|
|
26302
|
-
deletedDate?: Date | null;
|
|
26303
|
-
}
|
|
26304
|
-
interface EntityUpdatedEvent$9 {
|
|
26305
|
-
/**
|
|
26306
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
26307
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
26308
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
26309
|
-
*/
|
|
26310
|
-
currentEntity?: string;
|
|
26311
|
-
}
|
|
26312
|
-
interface EntityDeletedEvent$9 {
|
|
26313
|
-
/** Entity that was deleted */
|
|
26314
|
-
deletedEntity?: string | null;
|
|
26315
|
-
}
|
|
26316
|
-
interface ActionEvent$9 {
|
|
26317
|
-
body?: string;
|
|
26318
|
-
}
|
|
26319
26344
|
interface Empty$5 {
|
|
26320
26345
|
}
|
|
26321
26346
|
interface BatchOfTriggerReindexOrderRequest {
|
|
@@ -29637,6 +29662,7 @@ type index_d$c_OrderPaymentStatusUpdatedEnvelope = OrderPaymentStatusUpdatedEnve
|
|
|
29637
29662
|
type index_d$c_OrderPending = OrderPending;
|
|
29638
29663
|
type index_d$c_OrderPlaced = OrderPlaced;
|
|
29639
29664
|
type index_d$c_OrderRejected = OrderRejected;
|
|
29665
|
+
type index_d$c_OrderRejectedEventOrderRejected = OrderRejectedEventOrderRejected;
|
|
29640
29666
|
type index_d$c_OrderStatus = OrderStatus;
|
|
29641
29667
|
declare const index_d$c_OrderStatus: typeof OrderStatus;
|
|
29642
29668
|
type index_d$c_OrderTaxBreakdown = OrderTaxBreakdown;
|
|
@@ -29826,7 +29852,7 @@ declare const index_d$c_searchOrders: typeof searchOrders;
|
|
|
29826
29852
|
declare const index_d$c_updateOrder: typeof updateOrder;
|
|
29827
29853
|
declare const index_d$c_voidAuthorizedPayments: typeof voidAuthorizedPayments;
|
|
29828
29854
|
declare namespace index_d$c {
|
|
29829
|
-
export { type ActionEvent$9 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type index_d$c_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type index_d$c_AddActivitiesRequest as AddActivitiesRequest, type index_d$c_AddActivitiesResponse as AddActivitiesResponse, type index_d$c_AddActivityRequest as AddActivityRequest, type index_d$c_AddActivityResponse as AddActivityResponse, type index_d$c_AddInternalActivityRequest as AddInternalActivityRequest, type index_d$c_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type index_d$c_AdditionalFeeDelta as AdditionalFeeDelta, type index_d$c_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$5 as Address, type index_d$c_AddressDescription as AddressDescription, type AddressLocation$3 as AddressLocation, type index_d$c_AddressWithContact as AddressWithContact, type index_d$c_AggregateOrdersRequest as AggregateOrdersRequest, type index_d$c_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type index_d$c_App as App, type ApplicationError$4 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type index_d$c_AppliedDiscountDelta as AppliedDiscountDelta, type index_d$c_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$c_ArchiveOrderRequest as ArchiveOrderRequest, type index_d$c_ArchiveOrderResponse as ArchiveOrderResponse, index_d$c_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$2 as AuthorizationActionFailureDetails, type AuthorizationCapture$2 as AuthorizationCapture, AuthorizationCaptureStatus$2 as AuthorizationCaptureStatus, type AuthorizationDetails$2 as AuthorizationDetails, type AuthorizationVoid$2 as AuthorizationVoid, AuthorizationVoidStatus$2 as AuthorizationVoidStatus, type index_d$c_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$c_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$c_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$c_Balance as Balance, type index_d$c_BalanceSummary as BalanceSummary, type BaseEventMetadata$4 as BaseEventMetadata, type index_d$c_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$c_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$c_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$c_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$c_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$c_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$c_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$c_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$c_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$c_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$c_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$c_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$c_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$c_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$c_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$c_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$c_BulkOrderResult as BulkOrderResult, type index_d$c_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$c_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$c_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$c_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$c_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$c_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$c_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$c_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$c_BulkUpdateOrderTagsOptions as BulkUpdateOrderTagsOptions, type index_d$c_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$c_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type index_d$c_BulkUpdateOrderTagsResponseNonNullableFields as BulkUpdateOrderTagsResponseNonNullableFields, type index_d$c_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type index_d$c_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type index_d$c_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$c_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type index_d$c_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type index_d$c_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$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 index_d$c_CalculatedTax as CalculatedTax, type index_d$c_CalculatedTaxes as CalculatedTaxes, type index_d$c_Cancel as Cancel, type index_d$c_CancelOrderOptions as CancelOrderOptions, type index_d$c_CancelOrderRequest as CancelOrderRequest, type index_d$c_CancelOrderResponse as CancelOrderResponse, type index_d$c_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type index_d$c_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type index_d$c_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type index_d$c_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$3 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type index_d$c_ChargeMembershipsRequest as ChargeMembershipsRequest, type index_d$c_ChargeMembershipsResponse as ChargeMembershipsResponse, type index_d$c_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type index_d$c_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type index_d$c_ChargedBy as ChargedBy, type index_d$c_Color as Color, type index_d$c_CommitDeltasRequest as CommitDeltasRequest, type index_d$c_CommitDeltasResponse as CommitDeltasResponse, type index_d$c_CommittedDiffs as CommittedDiffs, type index_d$c_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type index_d$c_CommonAddress as CommonAddress, type index_d$c_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$c_Company as Company, type index_d$c_Complete as Complete, type index_d$c_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type index_d$c_CreateOrderRequest as CreateOrderRequest, type index_d$c_CreateOrderResponse as CreateOrderResponse, type index_d$c_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type index_d$c_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type index_d$c_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type index_d$c_CreatedBy as CreatedBy, type index_d$c_CreatedByStringOneOf as CreatedByStringOneOf, type index_d$c_CreditCardDetails as CreditCardDetails, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$7 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type index_d$c_CursorSearch as CursorSearch, type index_d$c_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$7 as Cursors, type index_d$c_CustomActivity as CustomActivity, type CustomField$1 as CustomField, index_d$c_CustomFieldGroup as CustomFieldGroup, type index_d$c_CustomFieldValue as CustomFieldValue, type index_d$c_Customer as Customer, type index_d$c_DecrementData as DecrementData, type index_d$c_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type index_d$c_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type index_d$c_DelayedCaptureSettings as DelayedCaptureSettings, type index_d$c_DeleteActivityRequest as DeleteActivityRequest, type index_d$c_DeleteActivityResponse as DeleteActivityResponse, type index_d$c_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$c_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$2 as DeliveryLogistics, type index_d$c_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$2 as DeliveryTimeSlot, index_d$c_DeltaPaymentOptionType as DeltaPaymentOptionType, type index_d$c_Deposit as Deposit, index_d$c_DepositType as DepositType, type index_d$c_DescriptionLine as DescriptionLine, type index_d$c_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$c_DescriptionLineName as DescriptionLineName, index_d$c_DescriptionLineType as DescriptionLineType, type index_d$c_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type index_d$c_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, index_d$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 index_d$c_DownloadLinkSent as DownloadLinkSent, type index_d$c_DraftOrderChangesApplied as DraftOrderChangesApplied, type index_d$c_DraftOrderCommitSettings as DraftOrderCommitSettings, type index_d$c_DraftOrderDiffs as DraftOrderDiffs, type index_d$c_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type index_d$c_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type index_d$c_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type index_d$c_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type index_d$c_Duration as Duration, index_d$c_DurationUnit as DurationUnit, type index_d$c_Email as Email, type index_d$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$4 as EventMetadata, type ExtendedFields$4 as ExtendedFields, type index_d$c_ExternalUriMapping as ExternalUriMapping, type index_d$c_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$c_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$c_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$c_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$c_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$c_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$c_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$c_GetOrderRequest as GetOrderRequest, type index_d$c_GetOrderResponse as GetOrderResponse, type index_d$c_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$c_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$c_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type index_d$c_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type index_d$c_GetShipmentsRequest as GetShipmentsRequest, type index_d$c_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type index_d$c_GiftCardPaymentRefund as GiftCardPaymentRefund, type index_d$c_HtmlApplication as HtmlApplication, type index_d$c_IdAndVersion as IdAndVersion, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type index_d$c_InternalActivity as InternalActivity, type index_d$c_InternalActivityContentOneOf as InternalActivityContentOneOf, type index_d$c_InternalDocument as InternalDocument, type index_d$c_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type index_d$c_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type index_d$c_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type index_d$c_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type index_d$c_InternalUpdateExistingOperation as InternalUpdateExistingOperation, index_d$c_InventoryAction as InventoryAction, type index_d$c_InventoryUpdateDetails as InventoryUpdateDetails, type index_d$c_InvoiceAdded as InvoiceAdded, type index_d$c_InvoiceDates as InvoiceDates, type index_d$c_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type index_d$c_InvoiceFields as InvoiceFields, type index_d$c_InvoiceSent as InvoiceSent, type index_d$c_InvoiceSentEvent as InvoiceSentEvent, index_d$c_InvoiceStatus as InvoiceStatus, type index_d$c_InvoicesPayment as InvoicesPayment, type index_d$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 index_d$c_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type index_d$c_LineItemAmount as LineItemAmount, type index_d$c_LineItemChanges as LineItemChanges, type index_d$c_LineItemDelta as LineItemDelta, type index_d$c_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type index_d$c_LineItemExchangeData as LineItemExchangeData, type index_d$c_LineItemMetaData as LineItemMetaData, type index_d$c_LineItemPriceChange as LineItemPriceChange, type index_d$c_LineItemQuantityChange as LineItemQuantityChange, index_d$c_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type index_d$c_LineItemTax as LineItemTax, type index_d$c_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$c_LineItemTaxInfo as LineItemTaxInfo, type index_d$c_LineItemUpdate as LineItemUpdate, type index_d$c_LineItems as LineItems, type index_d$c_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type index_d$c_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type index_d$c_Locale as Locale, type index_d$c_LocationAndQuantity as LocationAndQuantity, type index_d$c_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$c_ManagedDiscount as ManagedDiscount, type index_d$c_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type index_d$c_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type index_d$c_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type index_d$c_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type index_d$c_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type index_d$c_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type index_d$c_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type index_d$c_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type index_d$c_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type index_d$c_MaskedOrder as MaskedOrder, type index_d$c_MaskedOrderLineItem as MaskedOrderLineItem, type index_d$c_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, type index_d$c_MembershipPaymentRefund as MembershipPaymentRefund, MembershipPaymentStatus$2 as MembershipPaymentStatus, type index_d$c_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$c_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$8 as MessageEnvelope, type index_d$c_MetaData as MetaData, type index_d$c_MetaSite as MetaSite, type index_d$c_MetaTag as MetaTag, index_d$c_Namespace as Namespace, type index_d$c_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, index_d$c_OrderApprovalStrategy as OrderApprovalStrategy, type index_d$c_OrderApproved as OrderApproved, type index_d$c_OrderApprovedEnvelope as OrderApprovedEnvelope, type index_d$c_OrderCanceled as OrderCanceled, type index_d$c_OrderCanceledEnvelope as OrderCanceledEnvelope, type index_d$c_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type index_d$c_OrderChange as OrderChange, type index_d$c_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$c_OrderCreateNotifications as OrderCreateNotifications, type index_d$c_OrderCreatedEnvelope as OrderCreatedEnvelope, type index_d$c_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$c_OrderCreationSettings as OrderCreationSettings, type index_d$c_OrderDeltasCommitted as OrderDeltasCommitted, type index_d$c_OrderFulfilled as OrderFulfilled, type index_d$c_OrderItemsRestocked as OrderItemsRestocked, type index_d$c_OrderLineItem as OrderLineItem, type index_d$c_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type index_d$c_OrderNonNullableFields as OrderNonNullableFields, type index_d$c_OrderNotFulfilled as OrderNotFulfilled, type index_d$c_OrderPaid as OrderPaid, type index_d$c_OrderPartiallyPaid as OrderPartiallyPaid, type index_d$c_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type index_d$c_OrderPending as OrderPending, type index_d$c_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, type index_d$c_OrderRejected as OrderRejected, index_d$c_OrderStatus as OrderStatus, type index_d$c_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$c_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type index_d$c_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type index_d$c_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type index_d$c_PaymentCanceled as PaymentCanceled, type index_d$c_PaymentCanceledPaymentDetailsOneOf as PaymentCanceledPaymentDetailsOneOf, type index_d$c_PaymentCapture as PaymentCapture, index_d$c_PaymentCollectabilityStatus as PaymentCollectabilityStatus, type index_d$c_PaymentDeclined as PaymentDeclined, type index_d$c_PaymentDeclinedPaymentDetailsOneOf as PaymentDeclinedPaymentDetailsOneOf, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type index_d$c_PaymentPending as PaymentPending, type index_d$c_PaymentPendingPaymentDetailsOneOf as PaymentPendingPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$c_PaymentRefundFailed as PaymentRefundFailed, type index_d$c_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type index_d$c_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$c_Payments as Payments, type index_d$c_Phone as Phone, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$3 as PickupDetails, PickupMethod$2 as PickupMethod, type index_d$c_PickupReadyEmailSent as PickupReadyEmailSent, index_d$c_Placement as Placement, type index_d$c_PlainTextValue as PlainTextValue, type index_d$c_PlatformPaging as PlatformPaging, type index_d$c_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$c_PlatformQuery as PlatformQuery, type index_d$c_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d$c_PreparePaymentCollectionOptions as PreparePaymentCollectionOptions, type index_d$c_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$c_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type index_d$c_PreparePaymentCollectionResponseNonNullableFields as PreparePaymentCollectionResponseNonNullableFields, type index_d$c_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type index_d$c_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type index_d$c_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type index_d$c_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type index_d$c_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type index_d$c_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type index_d$c_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type index_d$c_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type index_d$c_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type index_d$c_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type index_d$c_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type index_d$c_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, index_d$c_PreviewEmailType as PreviewEmailType, type index_d$c_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type index_d$c_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type index_d$c_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type index_d$c_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type index_d$c_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type index_d$c_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$3 as Price, type index_d$c_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type index_d$c_ProductName as ProductName, type index_d$c_PublicActivity as PublicActivity, type index_d$c_PublicActivityContentOneOf as PublicActivityContentOneOf, type index_d$c_QueryOrderRequest as QueryOrderRequest, type index_d$c_QueryOrderResponse as QueryOrderResponse, type index_d$c_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type index_d$c_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type index_d$c_QuotesAddress as QuotesAddress, Reason$2 as Reason, type index_d$c_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type index_d$c_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type index_d$c_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type index_d$c_RefundInitiated as RefundInitiated, type RefundItem$2 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$2 as RefundStatus, type RefundTransaction$2 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type index_d$c_RefundedAsStoreCredit as RefundedAsStoreCredit, type index_d$c_RefundedPayment as RefundedPayment, type index_d$c_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type index_d$c_RegularPayment as RegularPayment, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$c_RegularPaymentPaymentMethodDetailsOneOf as RegularPaymentPaymentMethodDetailsOneOf, type index_d$c_RegularPaymentRefund as RegularPaymentRefund, type index_d$c_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$9 as RestoreInfo, type index_d$c_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$2 as ScheduledAction, type index_d$c_SearchOrdersOptions as SearchOrdersOptions, type index_d$c_SearchOrdersRequest as SearchOrdersRequest, type index_d$c_SearchOrdersResponse as SearchOrdersResponse, type index_d$c_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type index_d$c_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type index_d$c_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type index_d$c_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type index_d$c_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type index_d$c_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type index_d$c_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type index_d$c_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type index_d$c_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type index_d$c_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type index_d$c_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type index_d$c_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type index_d$c_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type index_d$c_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type index_d$c_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type index_d$c_SendRefundEmailRequest as SendRefundEmailRequest, type index_d$c_SendRefundEmailResponse as SendRefundEmailResponse, type index_d$c_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type index_d$c_ShippingAddressEdited as ShippingAddressEdited, type index_d$c_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type index_d$c_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$2 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, index_d$c_SourceType as SourceType, type index_d$c_StandardDetails as StandardDetails, index_d$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 index_d$c_TagList as TagList, type index_d$c_Tags as Tags, type index_d$c_Task as Task, type index_d$c_TaskAction as TaskAction, type index_d$c_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$c_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type TaxableAddress$1 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$1 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$1 as TaxableAddressType, type index_d$c_TotalPrice as TotalPrice, type index_d$c_TotalPriceChange as TotalPriceChange, type index_d$c_TrackingLinkAdded as TrackingLinkAdded, type index_d$c_TrackingNumberAdded as TrackingNumberAdded, type index_d$c_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type index_d$c_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type index_d$c_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type index_d$c_TriggerReindexRequest as TriggerReindexRequest, type index_d$c_TriggerReindexResponse as TriggerReindexResponse, type index_d$c_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type index_d$c_UnArchiveOrderRequest as UnArchiveOrderRequest, type index_d$c_UnArchiveOrderResponse as UnArchiveOrderResponse, type index_d$c_UpdateActivityRequest as UpdateActivityRequest, type index_d$c_UpdateActivityResponse as UpdateActivityResponse, type index_d$c_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type index_d$c_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type index_d$c_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type index_d$c_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type index_d$c_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type index_d$c_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type index_d$c_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type index_d$c_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type index_d$c_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type index_d$c_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type index_d$c_UpdateOrder as UpdateOrder, type index_d$c_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type index_d$c_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type index_d$c_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type index_d$c_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type index_d$c_UpdateOrderRequest as UpdateOrderRequest, type index_d$c_UpdateOrderResponse as UpdateOrderResponse, type index_d$c_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$c_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type index_d$c_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type index_d$c_UpsertRefundRequest as UpsertRefundRequest, type index_d$c_UpsertRefundResponse as UpsertRefundResponse, type index_d$c_UserDataResponse as UserDataResponse, type index_d$c_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type index_d$c_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type index_d$c_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type index_d$c_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type index_d$c_V1LineItemDelta as V1LineItemDelta, type index_d$c_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type index_d$c_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$c_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$c_V1RestockItem as V1RestockItem, type index_d$c_V1ScheduledAction as V1ScheduledAction, type index_d$c_V1ShippingInformation as V1ShippingInformation, type index_d$c_Value as Value, index_d$c_ValueType as ValueType, type VatId$2 as VatId, VatType$2 as VatType, type index_d$c_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type index_d$c_VersionedDocumentId as VersionedDocumentId, type index_d$c_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, index_d$c_VersioningMode as VersioningMode, type index_d$c_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type index_d$c_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type index_d$c_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$8 as WebhookIdentityType, WeightUnit$3 as WeightUnit, type index_d$c__publicOnOrderApprovedType as _publicOnOrderApprovedType, type index_d$c__publicOnOrderCanceledType as _publicOnOrderCanceledType, type index_d$c__publicOnOrderCreatedType as _publicOnOrderCreatedType, type index_d$c__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, type index_d$c__publicOnOrderUpdatedType as _publicOnOrderUpdatedType, index_d$c_bulkUpdateOrderTags as bulkUpdateOrderTags, index_d$c_bulkUpdateOrders as bulkUpdateOrders, index_d$c_cancelOrder as cancelOrder, index_d$c_captureAuthorizedPayments as captureAuthorizedPayments, index_d$c_createOrder as createOrder, index_d$c_getOrder as getOrder, index_d$c_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, index_d$c_onOrderApproved as onOrderApproved, index_d$c_onOrderCanceled as onOrderCanceled, index_d$c_onOrderCreated as onOrderCreated, index_d$c_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, index_d$c_onOrderUpdated as onOrderUpdated, index_d$c_preparePaymentCollection as preparePaymentCollection, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, onOrderUpdated$1 as publicOnOrderUpdated, index_d$c_searchOrders as searchOrders, index_d$c_updateOrder as updateOrder, index_d$c_voidAuthorizedPayments as voidAuthorizedPayments };
|
|
29855
|
+
export { type ActionEvent$9 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type index_d$c_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type index_d$c_AddActivitiesRequest as AddActivitiesRequest, type index_d$c_AddActivitiesResponse as AddActivitiesResponse, type index_d$c_AddActivityRequest as AddActivityRequest, type index_d$c_AddActivityResponse as AddActivityResponse, type index_d$c_AddInternalActivityRequest as AddInternalActivityRequest, type index_d$c_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type index_d$c_AdditionalFeeDelta as AdditionalFeeDelta, type index_d$c_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$5 as Address, type index_d$c_AddressDescription as AddressDescription, type AddressLocation$3 as AddressLocation, type index_d$c_AddressWithContact as AddressWithContact, type index_d$c_AggregateOrdersRequest as AggregateOrdersRequest, type index_d$c_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type index_d$c_App as App, type ApplicationError$4 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type index_d$c_AppliedDiscountDelta as AppliedDiscountDelta, type index_d$c_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$c_ArchiveOrderRequest as ArchiveOrderRequest, type index_d$c_ArchiveOrderResponse as ArchiveOrderResponse, index_d$c_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$2 as AuthorizationActionFailureDetails, type AuthorizationCapture$2 as AuthorizationCapture, AuthorizationCaptureStatus$2 as AuthorizationCaptureStatus, type AuthorizationDetails$2 as AuthorizationDetails, type AuthorizationVoid$2 as AuthorizationVoid, AuthorizationVoidStatus$2 as AuthorizationVoidStatus, type index_d$c_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$c_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$c_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$c_Balance as Balance, type index_d$c_BalanceSummary as BalanceSummary, type BaseEventMetadata$4 as BaseEventMetadata, type index_d$c_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$c_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$c_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$c_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$c_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$c_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$c_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$c_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$c_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$c_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$c_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$c_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$c_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$c_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$c_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$c_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$c_BulkOrderResult as BulkOrderResult, type index_d$c_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$c_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$c_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$c_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$c_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$c_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$c_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$c_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$c_BulkUpdateOrderTagsOptions as BulkUpdateOrderTagsOptions, type index_d$c_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$c_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type index_d$c_BulkUpdateOrderTagsResponseNonNullableFields as BulkUpdateOrderTagsResponseNonNullableFields, type index_d$c_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type index_d$c_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type index_d$c_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$c_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type index_d$c_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type index_d$c_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$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 index_d$c_CalculatedTax as CalculatedTax, type index_d$c_CalculatedTaxes as CalculatedTaxes, type index_d$c_Cancel as Cancel, type index_d$c_CancelOrderOptions as CancelOrderOptions, type index_d$c_CancelOrderRequest as CancelOrderRequest, type index_d$c_CancelOrderResponse as CancelOrderResponse, type index_d$c_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type index_d$c_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type index_d$c_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type index_d$c_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$3 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type index_d$c_ChargeMembershipsRequest as ChargeMembershipsRequest, type index_d$c_ChargeMembershipsResponse as ChargeMembershipsResponse, type index_d$c_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type index_d$c_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type index_d$c_ChargedBy as ChargedBy, type index_d$c_Color as Color, type index_d$c_CommitDeltasRequest as CommitDeltasRequest, type index_d$c_CommitDeltasResponse as CommitDeltasResponse, type index_d$c_CommittedDiffs as CommittedDiffs, type index_d$c_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type index_d$c_CommonAddress as CommonAddress, type index_d$c_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$c_Company as Company, type index_d$c_Complete as Complete, type index_d$c_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type index_d$c_CreateOrderRequest as CreateOrderRequest, type index_d$c_CreateOrderResponse as CreateOrderResponse, type index_d$c_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type index_d$c_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type index_d$c_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type index_d$c_CreatedBy as CreatedBy, type index_d$c_CreatedByStringOneOf as CreatedByStringOneOf, type index_d$c_CreditCardDetails as CreditCardDetails, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$7 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type index_d$c_CursorSearch as CursorSearch, type index_d$c_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$7 as Cursors, type index_d$c_CustomActivity as CustomActivity, type CustomField$1 as CustomField, index_d$c_CustomFieldGroup as CustomFieldGroup, type index_d$c_CustomFieldValue as CustomFieldValue, type index_d$c_Customer as Customer, type index_d$c_DecrementData as DecrementData, type index_d$c_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type index_d$c_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type index_d$c_DelayedCaptureSettings as DelayedCaptureSettings, type index_d$c_DeleteActivityRequest as DeleteActivityRequest, type index_d$c_DeleteActivityResponse as DeleteActivityResponse, type index_d$c_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$c_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$2 as DeliveryLogistics, type index_d$c_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$2 as DeliveryTimeSlot, index_d$c_DeltaPaymentOptionType as DeltaPaymentOptionType, type index_d$c_Deposit as Deposit, index_d$c_DepositType as DepositType, type index_d$c_DescriptionLine as DescriptionLine, type index_d$c_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$c_DescriptionLineName as DescriptionLineName, index_d$c_DescriptionLineType as DescriptionLineType, type index_d$c_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type index_d$c_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, index_d$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 index_d$c_DownloadLinkSent as DownloadLinkSent, type index_d$c_DraftOrderChangesApplied as DraftOrderChangesApplied, type index_d$c_DraftOrderCommitSettings as DraftOrderCommitSettings, type index_d$c_DraftOrderDiffs as DraftOrderDiffs, type index_d$c_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type index_d$c_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type index_d$c_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type index_d$c_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type index_d$c_Duration as Duration, index_d$c_DurationUnit as DurationUnit, type index_d$c_Email as Email, type index_d$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$4 as EventMetadata, type ExtendedFields$4 as ExtendedFields, type index_d$c_ExternalUriMapping as ExternalUriMapping, type index_d$c_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$c_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$c_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$c_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$c_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$c_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$c_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$c_GetOrderRequest as GetOrderRequest, type index_d$c_GetOrderResponse as GetOrderResponse, type index_d$c_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$c_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$c_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type index_d$c_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type index_d$c_GetShipmentsRequest as GetShipmentsRequest, type index_d$c_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type index_d$c_GiftCardPaymentRefund as GiftCardPaymentRefund, type index_d$c_HtmlApplication as HtmlApplication, type index_d$c_IdAndVersion as IdAndVersion, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type index_d$c_InternalActivity as InternalActivity, type index_d$c_InternalActivityContentOneOf as InternalActivityContentOneOf, type index_d$c_InternalDocument as InternalDocument, type index_d$c_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type index_d$c_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type index_d$c_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type index_d$c_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type index_d$c_InternalUpdateExistingOperation as InternalUpdateExistingOperation, index_d$c_InventoryAction as InventoryAction, type index_d$c_InventoryUpdateDetails as InventoryUpdateDetails, type index_d$c_InvoiceAdded as InvoiceAdded, type index_d$c_InvoiceDates as InvoiceDates, type index_d$c_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type index_d$c_InvoiceFields as InvoiceFields, type index_d$c_InvoiceSent as InvoiceSent, type index_d$c_InvoiceSentEvent as InvoiceSentEvent, index_d$c_InvoiceStatus as InvoiceStatus, type index_d$c_InvoicesPayment as InvoicesPayment, type index_d$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 index_d$c_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type index_d$c_LineItemAmount as LineItemAmount, type index_d$c_LineItemChanges as LineItemChanges, type index_d$c_LineItemDelta as LineItemDelta, type index_d$c_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type index_d$c_LineItemExchangeData as LineItemExchangeData, type index_d$c_LineItemMetaData as LineItemMetaData, type index_d$c_LineItemPriceChange as LineItemPriceChange, type index_d$c_LineItemQuantityChange as LineItemQuantityChange, index_d$c_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type index_d$c_LineItemTax as LineItemTax, type index_d$c_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$c_LineItemTaxInfo as LineItemTaxInfo, type index_d$c_LineItemUpdate as LineItemUpdate, type index_d$c_LineItems as LineItems, type index_d$c_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type index_d$c_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type index_d$c_Locale as Locale, type index_d$c_LocationAndQuantity as LocationAndQuantity, type index_d$c_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$c_ManagedDiscount as ManagedDiscount, type index_d$c_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type index_d$c_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type index_d$c_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type index_d$c_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type index_d$c_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type index_d$c_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type index_d$c_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type index_d$c_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type index_d$c_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type index_d$c_MaskedOrder as MaskedOrder, type index_d$c_MaskedOrderLineItem as MaskedOrderLineItem, type index_d$c_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, type index_d$c_MembershipPaymentRefund as MembershipPaymentRefund, MembershipPaymentStatus$2 as MembershipPaymentStatus, type index_d$c_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$c_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$8 as MessageEnvelope, type index_d$c_MetaData as MetaData, type index_d$c_MetaSite as MetaSite, type index_d$c_MetaTag as MetaTag, index_d$c_Namespace as Namespace, type index_d$c_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, index_d$c_OrderApprovalStrategy as OrderApprovalStrategy, type index_d$c_OrderApproved as OrderApproved, type index_d$c_OrderApprovedEnvelope as OrderApprovedEnvelope, type index_d$c_OrderCanceled as OrderCanceled, type index_d$c_OrderCanceledEnvelope as OrderCanceledEnvelope, type index_d$c_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type index_d$c_OrderChange as OrderChange, type index_d$c_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$c_OrderCreateNotifications as OrderCreateNotifications, type index_d$c_OrderCreatedEnvelope as OrderCreatedEnvelope, type index_d$c_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$c_OrderCreationSettings as OrderCreationSettings, type index_d$c_OrderDeltasCommitted as OrderDeltasCommitted, type index_d$c_OrderFulfilled as OrderFulfilled, type index_d$c_OrderItemsRestocked as OrderItemsRestocked, type index_d$c_OrderLineItem as OrderLineItem, type index_d$c_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type index_d$c_OrderNonNullableFields as OrderNonNullableFields, type index_d$c_OrderNotFulfilled as OrderNotFulfilled, type index_d$c_OrderPaid as OrderPaid, type index_d$c_OrderPartiallyPaid as OrderPartiallyPaid, type index_d$c_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type index_d$c_OrderPending as OrderPending, type index_d$c_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, type index_d$c_OrderRejected as OrderRejected, type index_d$c_OrderRejectedEventOrderRejected as OrderRejectedEventOrderRejected, index_d$c_OrderStatus as OrderStatus, type index_d$c_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$c_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type index_d$c_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type index_d$c_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type index_d$c_PaymentCanceled as PaymentCanceled, type index_d$c_PaymentCanceledPaymentDetailsOneOf as PaymentCanceledPaymentDetailsOneOf, type index_d$c_PaymentCapture as PaymentCapture, index_d$c_PaymentCollectabilityStatus as PaymentCollectabilityStatus, type index_d$c_PaymentDeclined as PaymentDeclined, type index_d$c_PaymentDeclinedPaymentDetailsOneOf as PaymentDeclinedPaymentDetailsOneOf, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type index_d$c_PaymentPending as PaymentPending, type index_d$c_PaymentPendingPaymentDetailsOneOf as PaymentPendingPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$c_PaymentRefundFailed as PaymentRefundFailed, type index_d$c_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type index_d$c_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$c_Payments as Payments, type index_d$c_Phone as Phone, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$3 as PickupDetails, PickupMethod$2 as PickupMethod, type index_d$c_PickupReadyEmailSent as PickupReadyEmailSent, index_d$c_Placement as Placement, type index_d$c_PlainTextValue as PlainTextValue, type index_d$c_PlatformPaging as PlatformPaging, type index_d$c_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$c_PlatformQuery as PlatformQuery, type index_d$c_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d$c_PreparePaymentCollectionOptions as PreparePaymentCollectionOptions, type index_d$c_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$c_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type index_d$c_PreparePaymentCollectionResponseNonNullableFields as PreparePaymentCollectionResponseNonNullableFields, type index_d$c_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type index_d$c_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type index_d$c_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type index_d$c_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type index_d$c_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type index_d$c_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type index_d$c_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type index_d$c_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type index_d$c_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type index_d$c_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type index_d$c_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type index_d$c_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, index_d$c_PreviewEmailType as PreviewEmailType, type index_d$c_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type index_d$c_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type index_d$c_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type index_d$c_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type index_d$c_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type index_d$c_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$3 as Price, type index_d$c_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type index_d$c_ProductName as ProductName, type index_d$c_PublicActivity as PublicActivity, type index_d$c_PublicActivityContentOneOf as PublicActivityContentOneOf, type index_d$c_QueryOrderRequest as QueryOrderRequest, type index_d$c_QueryOrderResponse as QueryOrderResponse, type index_d$c_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type index_d$c_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type index_d$c_QuotesAddress as QuotesAddress, Reason$2 as Reason, type index_d$c_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type index_d$c_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type index_d$c_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type index_d$c_RefundInitiated as RefundInitiated, type RefundItem$2 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$2 as RefundStatus, type RefundTransaction$2 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type index_d$c_RefundedAsStoreCredit as RefundedAsStoreCredit, type index_d$c_RefundedPayment as RefundedPayment, type index_d$c_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type index_d$c_RegularPayment as RegularPayment, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$c_RegularPaymentPaymentMethodDetailsOneOf as RegularPaymentPaymentMethodDetailsOneOf, type index_d$c_RegularPaymentRefund as RegularPaymentRefund, type index_d$c_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$9 as RestoreInfo, type index_d$c_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$2 as ScheduledAction, type index_d$c_SearchOrdersOptions as SearchOrdersOptions, type index_d$c_SearchOrdersRequest as SearchOrdersRequest, type index_d$c_SearchOrdersResponse as SearchOrdersResponse, type index_d$c_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type index_d$c_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type index_d$c_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type index_d$c_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type index_d$c_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type index_d$c_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type index_d$c_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type index_d$c_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type index_d$c_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type index_d$c_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type index_d$c_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type index_d$c_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type index_d$c_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type index_d$c_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type index_d$c_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type index_d$c_SendRefundEmailRequest as SendRefundEmailRequest, type index_d$c_SendRefundEmailResponse as SendRefundEmailResponse, type index_d$c_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type index_d$c_ShippingAddressEdited as ShippingAddressEdited, type index_d$c_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type index_d$c_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$2 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, index_d$c_SourceType as SourceType, type index_d$c_StandardDetails as StandardDetails, index_d$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 index_d$c_TagList as TagList, type index_d$c_Tags as Tags, type index_d$c_Task as Task, type index_d$c_TaskAction as TaskAction, type index_d$c_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$c_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type TaxableAddress$1 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$1 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$1 as TaxableAddressType, type index_d$c_TotalPrice as TotalPrice, type index_d$c_TotalPriceChange as TotalPriceChange, type index_d$c_TrackingLinkAdded as TrackingLinkAdded, type index_d$c_TrackingNumberAdded as TrackingNumberAdded, type index_d$c_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type index_d$c_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type index_d$c_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type index_d$c_TriggerReindexRequest as TriggerReindexRequest, type index_d$c_TriggerReindexResponse as TriggerReindexResponse, type index_d$c_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type index_d$c_UnArchiveOrderRequest as UnArchiveOrderRequest, type index_d$c_UnArchiveOrderResponse as UnArchiveOrderResponse, type index_d$c_UpdateActivityRequest as UpdateActivityRequest, type index_d$c_UpdateActivityResponse as UpdateActivityResponse, type index_d$c_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type index_d$c_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type index_d$c_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type index_d$c_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type index_d$c_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type index_d$c_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type index_d$c_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type index_d$c_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type index_d$c_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type index_d$c_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type index_d$c_UpdateOrder as UpdateOrder, type index_d$c_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type index_d$c_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type index_d$c_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type index_d$c_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type index_d$c_UpdateOrderRequest as UpdateOrderRequest, type index_d$c_UpdateOrderResponse as UpdateOrderResponse, type index_d$c_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$c_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type index_d$c_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type index_d$c_UpsertRefundRequest as UpsertRefundRequest, type index_d$c_UpsertRefundResponse as UpsertRefundResponse, type index_d$c_UserDataResponse as UserDataResponse, type index_d$c_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type index_d$c_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type index_d$c_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type index_d$c_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type index_d$c_V1LineItemDelta as V1LineItemDelta, type index_d$c_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type index_d$c_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$c_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$c_V1RestockItem as V1RestockItem, type index_d$c_V1ScheduledAction as V1ScheduledAction, type index_d$c_V1ShippingInformation as V1ShippingInformation, type index_d$c_Value as Value, index_d$c_ValueType as ValueType, type VatId$2 as VatId, VatType$2 as VatType, type index_d$c_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type index_d$c_VersionedDocumentId as VersionedDocumentId, type index_d$c_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, index_d$c_VersioningMode as VersioningMode, type index_d$c_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type index_d$c_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type index_d$c_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$8 as WebhookIdentityType, WeightUnit$3 as WeightUnit, type index_d$c__publicOnOrderApprovedType as _publicOnOrderApprovedType, type index_d$c__publicOnOrderCanceledType as _publicOnOrderCanceledType, type index_d$c__publicOnOrderCreatedType as _publicOnOrderCreatedType, type index_d$c__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, type index_d$c__publicOnOrderUpdatedType as _publicOnOrderUpdatedType, index_d$c_bulkUpdateOrderTags as bulkUpdateOrderTags, index_d$c_bulkUpdateOrders as bulkUpdateOrders, index_d$c_cancelOrder as cancelOrder, index_d$c_captureAuthorizedPayments as captureAuthorizedPayments, index_d$c_createOrder as createOrder, index_d$c_getOrder as getOrder, index_d$c_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, index_d$c_onOrderApproved as onOrderApproved, index_d$c_onOrderCanceled as onOrderCanceled, index_d$c_onOrderCreated as onOrderCreated, index_d$c_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, index_d$c_onOrderUpdated as onOrderUpdated, index_d$c_preparePaymentCollection as preparePaymentCollection, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, onOrderUpdated$1 as publicOnOrderUpdated, index_d$c_searchOrders as searchOrders, index_d$c_updateOrder as updateOrder, index_d$c_voidAuthorizedPayments as voidAuthorizedPayments };
|
|
29830
29856
|
}
|
|
29831
29857
|
|
|
29832
29858
|
interface OrderPaymentRequest {
|
|
@@ -21754,6 +21754,13 @@ interface OrderTaxInfo$3 {
|
|
|
21754
21754
|
totalTax?: Price$9;
|
|
21755
21755
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
21756
21756
|
taxBreakdown?: OrderTaxBreakdown$3[];
|
|
21757
|
+
/**
|
|
21758
|
+
* Whether the draft order is exempt from tax calculations.
|
|
21759
|
+
*
|
|
21760
|
+
* Default: `true`
|
|
21761
|
+
* @readonly
|
|
21762
|
+
*/
|
|
21763
|
+
taxExempt?: boolean | null;
|
|
21757
21764
|
}
|
|
21758
21765
|
/**
|
|
21759
21766
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -24334,6 +24341,13 @@ interface OrderTaxInfo$2 {
|
|
|
24334
24341
|
totalTax?: Price$8;
|
|
24335
24342
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
24336
24343
|
taxBreakdown?: OrderTaxBreakdown$2[];
|
|
24344
|
+
/**
|
|
24345
|
+
* Whether the draft order is exempt from tax calculations.
|
|
24346
|
+
*
|
|
24347
|
+
* Default: `true`
|
|
24348
|
+
* @readonly
|
|
24349
|
+
*/
|
|
24350
|
+
taxExempt?: boolean | null;
|
|
24337
24351
|
}
|
|
24338
24352
|
/**
|
|
24339
24353
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -28393,6 +28407,13 @@ interface OrderTaxInfo$1 {
|
|
|
28393
28407
|
totalTax?: Price$7;
|
|
28394
28408
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
28395
28409
|
taxBreakdown?: OrderTaxBreakdown$1[];
|
|
28410
|
+
/**
|
|
28411
|
+
* Whether the draft order is exempt from tax calculations.
|
|
28412
|
+
*
|
|
28413
|
+
* Default: `true`
|
|
28414
|
+
* @readonly
|
|
28415
|
+
*/
|
|
28416
|
+
taxExempt?: boolean | null;
|
|
28396
28417
|
}
|
|
28397
28418
|
/**
|
|
28398
28419
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -30658,6 +30679,13 @@ interface OrderTaxInfo {
|
|
|
30658
30679
|
totalTax?: Price$6;
|
|
30659
30680
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
30660
30681
|
taxBreakdown?: OrderTaxBreakdown[];
|
|
30682
|
+
/**
|
|
30683
|
+
* Whether the draft order is exempt from tax calculations.
|
|
30684
|
+
*
|
|
30685
|
+
* Default: `true`
|
|
30686
|
+
* @readonly
|
|
30687
|
+
*/
|
|
30688
|
+
taxExempt?: boolean | null;
|
|
30661
30689
|
}
|
|
30662
30690
|
/**
|
|
30663
30691
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -3467,6 +3467,13 @@ interface OrderTaxInfo {
|
|
|
3467
3467
|
totalTax?: Price;
|
|
3468
3468
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
3469
3469
|
taxBreakdown?: OrderTaxBreakdown[];
|
|
3470
|
+
/**
|
|
3471
|
+
* Whether the draft order is exempt from tax calculations.
|
|
3472
|
+
*
|
|
3473
|
+
* Default: `true`
|
|
3474
|
+
* @readonly
|
|
3475
|
+
*/
|
|
3476
|
+
taxExempt?: boolean | null;
|
|
3470
3477
|
}
|
|
3471
3478
|
/**
|
|
3472
3479
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|
|
@@ -3467,6 +3467,13 @@ interface OrderTaxInfo {
|
|
|
3467
3467
|
totalTax?: Price;
|
|
3468
3468
|
/** The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. */
|
|
3469
3469
|
taxBreakdown?: OrderTaxBreakdown[];
|
|
3470
|
+
/**
|
|
3471
|
+
* Whether the draft order is exempt from tax calculations.
|
|
3472
|
+
*
|
|
3473
|
+
* Default: `true`
|
|
3474
|
+
* @readonly
|
|
3475
|
+
*/
|
|
3476
|
+
taxExempt?: boolean | null;
|
|
3470
3477
|
}
|
|
3471
3478
|
/**
|
|
3472
3479
|
* The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate.
|