@wix/ecom 1.0.759 → 1.0.760
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.760",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@wix/ecom_discount-rules": "1.0.51",
|
|
36
36
|
"@wix/ecom_discounts": "1.0.2",
|
|
37
37
|
"@wix/ecom_discounts-custom-trigger": "1.0.6",
|
|
38
|
-
"@wix/ecom_draft-orders": "1.0.
|
|
38
|
+
"@wix/ecom_draft-orders": "1.0.19",
|
|
39
39
|
"@wix/ecom_gift-vouchers": "1.0.1",
|
|
40
40
|
"@wix/ecom_gift-vouchers-provider": "1.0.2",
|
|
41
41
|
"@wix/ecom_local-delivery-options": "1.0.7",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"@wix/ecom_order-invoices": "1.0.38",
|
|
44
44
|
"@wix/ecom_order-payment-requests": "1.0.9",
|
|
45
45
|
"@wix/ecom_order-transactions": "1.0.65",
|
|
46
|
-
"@wix/ecom_orders": "1.0.
|
|
46
|
+
"@wix/ecom_orders": "1.0.120",
|
|
47
47
|
"@wix/ecom_orders-settings": "1.0.44",
|
|
48
|
-
"@wix/ecom_payment-settings": "1.0.
|
|
48
|
+
"@wix/ecom_payment-settings": "1.0.43",
|
|
49
49
|
"@wix/ecom_pickup-locations": "1.0.7",
|
|
50
50
|
"@wix/ecom_recommendations": "1.0.39",
|
|
51
51
|
"@wix/ecom_shipping-options": "1.0.6",
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
"fqdn": ""
|
|
78
78
|
}
|
|
79
79
|
},
|
|
80
|
-
"falconPackageHash": "
|
|
80
|
+
"falconPackageHash": "642e32e0509e0c67458b728105e75ae932dd27f371d72b7f8c48241f"
|
|
81
81
|
}
|
|
@@ -18546,6 +18546,12 @@ interface PaymentRefundFailed$1 {
|
|
|
18546
18546
|
/** Details about the failed payment refund. */
|
|
18547
18547
|
payment?: RefundedPayment$1;
|
|
18548
18548
|
}
|
|
18549
|
+
interface RefundedAsStoreCredit$1 {
|
|
18550
|
+
/** Refund amount */
|
|
18551
|
+
amount?: Price$3;
|
|
18552
|
+
/** Reason for refund */
|
|
18553
|
+
reason?: string | null;
|
|
18554
|
+
}
|
|
18549
18555
|
declare enum ActivityType$2 {
|
|
18550
18556
|
ORDER_REFUNDED = "ORDER_REFUNDED",
|
|
18551
18557
|
ORDER_PLACED = "ORDER_PLACED",
|
|
@@ -18577,7 +18583,8 @@ declare enum ActivityType$2 {
|
|
|
18577
18583
|
AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
|
|
18578
18584
|
REFUND_INITIATED = "REFUND_INITIATED",
|
|
18579
18585
|
PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
|
|
18580
|
-
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
|
|
18586
|
+
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
|
|
18587
|
+
REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
|
|
18581
18588
|
}
|
|
18582
18589
|
declare enum AttributionSource$1 {
|
|
18583
18590
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -19443,6 +19450,9 @@ interface PaymentRefundFailedNonNullableFields$1 {
|
|
|
19443
19450
|
refundId: string;
|
|
19444
19451
|
payment?: RefundedPaymentNonNullableFields$1;
|
|
19445
19452
|
}
|
|
19453
|
+
interface RefundedAsStoreCreditNonNullableFields$1 {
|
|
19454
|
+
amount?: PriceNonNullableFields$3;
|
|
19455
|
+
}
|
|
19446
19456
|
interface ActivityNonNullableFields$1 {
|
|
19447
19457
|
customActivity?: CustomActivityNonNullableFields$1;
|
|
19448
19458
|
merchantComment?: MerchantCommentNonNullableFields$1;
|
|
@@ -19457,6 +19467,7 @@ interface ActivityNonNullableFields$1 {
|
|
|
19457
19467
|
refundInitiated?: RefundInitiatedNonNullableFields$1;
|
|
19458
19468
|
paymentRefunded?: PaymentRefundedNonNullableFields$1;
|
|
19459
19469
|
paymentRefundFailed?: PaymentRefundFailedNonNullableFields$1;
|
|
19470
|
+
refundedAsStoreCredit?: RefundedAsStoreCreditNonNullableFields$1;
|
|
19460
19471
|
type: ActivityType$2;
|
|
19461
19472
|
}
|
|
19462
19473
|
interface V1CreatedByNonNullableFields {
|
|
@@ -19897,7 +19908,7 @@ declare const context$c_setAdditionalFees: typeof setAdditionalFees;
|
|
|
19897
19908
|
declare const context$c_setDiscounts: typeof setDiscounts;
|
|
19898
19909
|
declare const context$c_updateLineItems: typeof updateLineItems;
|
|
19899
19910
|
declare namespace context$c {
|
|
19900
|
-
export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type context$c_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type context$c_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type context$c_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type context$c_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type context$c_AdditionalFeeDetails as AdditionalFeeDetails, type context$c_AdditionalFeeOption as AdditionalFeeOption, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$5 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, context$c_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type context$c_BillingChangedDetails as BillingChangedDetails, type context$c_BillingDetails as BillingDetails, type context$c_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type context$c_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type context$c_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type context$c_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$2 as CatalogReference, type context$c_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type context$c_CommitDraftOrderOptions as CommitDraftOrderOptions, type context$c_CommitDraftOrderRequest as CommitDraftOrderRequest, type context$c_CommitDraftOrderResponse as CommitDraftOrderResponse, type context$c_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type context$c_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type context$c_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type context$c_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type context$c_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type context$c_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type context$c_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type context$c_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type context$c_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type context$c_CreateDraftOrderRequest as CreateDraftOrderRequest, type context$c_CreateDraftOrderResponse as CreateDraftOrderResponse, type context$c_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type context$c_CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequest, type context$c_CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponse, type context$c_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type context$c_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type context$c_CustomLineItem as CustomLineItem, type context$c_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type context$c_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type context$c_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type context$c_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type context$c_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type context$c_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type context$c_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type context$c_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$1 as Details, type DetailsKindOneOf$1 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type context$c_DiscountDetails as DiscountDetails, type context$c_DiscountOption as DiscountOption, type context$c_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type context$c_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type context$c_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type context$c_DraftOrdersQueryResult as DraftOrdersQueryResult, context$c_EditingStatus as EditingStatus, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$1 as FieldViolation, context$c_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$c_GetDraftEditabilityStatusRequest as GetDraftEditabilityStatusRequest, type context$c_GetDraftEditabilityStatusResponse as GetDraftEditabilityStatusResponse, type context$c_GetDraftOrderRequest as GetDraftOrderRequest, type context$c_GetDraftOrderResponse as GetDraftOrderResponse, type context$c_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type context$c_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type context$c_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type context$c_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type context$c_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type context$c_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type context$c_ItemDetails as ItemDetails, type context$c_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type context$c_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, context$c_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type context$c_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, PaymentOptionType$2 as PaymentOptionType, type PaymentRefundFailed$1 as PaymentRefundFailed, type PaymentRefunded$1 as PaymentRefunded, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, context$c_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$2 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type context$c_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type context$c_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type context$c_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type context$c_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type context$c_RecipientInfoDetails as RecipientInfoDetails, type context$c_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated$1 as RefundInitiated, type RefundedPayment$1 as RefundedPayment, type RefundedPaymentKindOneOf$1 as RefundedPaymentKindOneOf, type RegularPaymentRefund$1 as RegularPaymentRefund, type RestoreInfo$9 as RestoreInfo, RuleType$1 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type context$c_SecuredMedia as SecuredMedia, type context$c_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type context$c_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type context$c_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type context$c_SetBillingInfoRequest as SetBillingInfoRequest, type context$c_SetBillingInfoResponse as SetBillingInfoResponse, type context$c_SetBuyerInfoRequest as SetBuyerInfoRequest, type context$c_SetBuyerInfoResponse as SetBuyerInfoResponse, type context$c_SetDiscountsRequest as SetDiscountsRequest, type context$c_SetDiscountsResponse as SetDiscountsResponse, type context$c_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type context$c_SetRecipientInfoRequest as SetRecipientInfoRequest, type context$c_SetRecipientInfoResponse as SetRecipientInfoResponse, type context$c_SetShippingInfoRequest as SetShippingInfoRequest, type context$c_SetShippingInfoResponse as SetShippingInfoResponse, type context$c_ShippingChangedDetails as ShippingChangedDetails, type context$c_ShippingDetails as ShippingDetails, type context$c_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$1 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TaxableAddress$1 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$1 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$1 as TaxableAddressType, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type context$c_UpdateLineItemsOptions as UpdateLineItemsOptions, type context$c_UpdateLineItemsRequest as UpdateLineItemsRequest, type context$c_UpdateLineItemsResponse as UpdateLineItemsResponse, type context$c_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type context$c_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type context$c_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type context$c_V1BalanceSummary as V1BalanceSummary, type context$c_V1CreatedBy as V1CreatedBy, type context$c_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type context$c_V1DeliveryLogistics as V1DeliveryLogistics, type context$c_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type context$c_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type context$c_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type context$c_V1ShippingPrice as V1ShippingPrice, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$3 as WeightUnit, context$c_addLineItemsToDraftOrder as addLineItemsToDraftOrder, context$c_commitDraftOrder as commitDraftOrder, context$c_createCustomAdditionalFees as createCustomAdditionalFees, context$c_createCustomDiscounts as createCustomDiscounts, context$c_createDraftOrder as createDraftOrder, context$c_deleteCustomAdditionalFees as deleteCustomAdditionalFees, context$c_deleteCustomDiscounts as deleteCustomDiscounts, context$c_deleteDraftOrder as deleteDraftOrder, context$c_getDraftOrder as getDraftOrder, context$c_getOrderDraftabilityStatus as getOrderDraftabilityStatus, context$c_queryDraftOrders as queryDraftOrders, context$c_setAdditionalFees as setAdditionalFees, context$c_setDiscounts as setDiscounts, context$c_updateLineItems as updateLineItems };
|
|
19911
|
+
export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type context$c_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type context$c_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type context$c_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type context$c_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type context$c_AdditionalFeeDetails as AdditionalFeeDetails, type context$c_AdditionalFeeOption as AdditionalFeeOption, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$5 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, context$c_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type context$c_BillingChangedDetails as BillingChangedDetails, type context$c_BillingDetails as BillingDetails, type context$c_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type context$c_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type context$c_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type context$c_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$2 as CatalogReference, type context$c_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type context$c_CommitDraftOrderOptions as CommitDraftOrderOptions, type context$c_CommitDraftOrderRequest as CommitDraftOrderRequest, type context$c_CommitDraftOrderResponse as CommitDraftOrderResponse, type context$c_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type context$c_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type context$c_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type context$c_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type context$c_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type context$c_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type context$c_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type context$c_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type context$c_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type context$c_CreateDraftOrderRequest as CreateDraftOrderRequest, type context$c_CreateDraftOrderResponse as CreateDraftOrderResponse, type context$c_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type context$c_CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequest, type context$c_CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponse, type context$c_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type context$c_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type context$c_CustomLineItem as CustomLineItem, type context$c_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type context$c_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type context$c_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type context$c_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type context$c_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type context$c_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type context$c_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type context$c_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$1 as Details, type DetailsKindOneOf$1 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type context$c_DiscountDetails as DiscountDetails, type context$c_DiscountOption as DiscountOption, type context$c_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type context$c_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type context$c_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type context$c_DraftOrdersQueryResult as DraftOrdersQueryResult, context$c_EditingStatus as EditingStatus, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$1 as FieldViolation, context$c_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$c_GetDraftEditabilityStatusRequest as GetDraftEditabilityStatusRequest, type context$c_GetDraftEditabilityStatusResponse as GetDraftEditabilityStatusResponse, type context$c_GetDraftOrderRequest as GetDraftOrderRequest, type context$c_GetDraftOrderResponse as GetDraftOrderResponse, type context$c_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type context$c_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type context$c_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type context$c_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type context$c_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type context$c_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type context$c_ItemDetails as ItemDetails, type context$c_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type context$c_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, context$c_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type context$c_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, PaymentOptionType$2 as PaymentOptionType, type PaymentRefundFailed$1 as PaymentRefundFailed, type PaymentRefunded$1 as PaymentRefunded, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, context$c_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$2 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type context$c_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type context$c_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type context$c_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type context$c_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type context$c_RecipientInfoDetails as RecipientInfoDetails, type context$c_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated$1 as RefundInitiated, type RefundedAsStoreCredit$1 as RefundedAsStoreCredit, type RefundedPayment$1 as RefundedPayment, type RefundedPaymentKindOneOf$1 as RefundedPaymentKindOneOf, type RegularPaymentRefund$1 as RegularPaymentRefund, type RestoreInfo$9 as RestoreInfo, RuleType$1 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type context$c_SecuredMedia as SecuredMedia, type context$c_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type context$c_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type context$c_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type context$c_SetBillingInfoRequest as SetBillingInfoRequest, type context$c_SetBillingInfoResponse as SetBillingInfoResponse, type context$c_SetBuyerInfoRequest as SetBuyerInfoRequest, type context$c_SetBuyerInfoResponse as SetBuyerInfoResponse, type context$c_SetDiscountsRequest as SetDiscountsRequest, type context$c_SetDiscountsResponse as SetDiscountsResponse, type context$c_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type context$c_SetRecipientInfoRequest as SetRecipientInfoRequest, type context$c_SetRecipientInfoResponse as SetRecipientInfoResponse, type context$c_SetShippingInfoRequest as SetShippingInfoRequest, type context$c_SetShippingInfoResponse as SetShippingInfoResponse, type context$c_ShippingChangedDetails as ShippingChangedDetails, type context$c_ShippingDetails as ShippingDetails, type context$c_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$1 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TaxableAddress$1 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$1 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$1 as TaxableAddressType, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type context$c_UpdateLineItemsOptions as UpdateLineItemsOptions, type context$c_UpdateLineItemsRequest as UpdateLineItemsRequest, type context$c_UpdateLineItemsResponse as UpdateLineItemsResponse, type context$c_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type context$c_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type context$c_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type context$c_V1BalanceSummary as V1BalanceSummary, type context$c_V1CreatedBy as V1CreatedBy, type context$c_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type context$c_V1DeliveryLogistics as V1DeliveryLogistics, type context$c_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type context$c_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type context$c_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type context$c_V1ShippingPrice as V1ShippingPrice, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$3 as WeightUnit, context$c_addLineItemsToDraftOrder as addLineItemsToDraftOrder, context$c_commitDraftOrder as commitDraftOrder, context$c_createCustomAdditionalFees as createCustomAdditionalFees, context$c_createCustomDiscounts as createCustomDiscounts, context$c_createDraftOrder as createDraftOrder, context$c_deleteCustomAdditionalFees as deleteCustomAdditionalFees, context$c_deleteCustomDiscounts as deleteCustomDiscounts, context$c_deleteDraftOrder as deleteDraftOrder, context$c_getDraftOrder as getDraftOrder, context$c_getOrderDraftabilityStatus as getOrderDraftabilityStatus, context$c_queryDraftOrders as queryDraftOrders, context$c_setAdditionalFees as setAdditionalFees, context$c_setDiscounts as setDiscounts, context$c_updateLineItems as updateLineItems };
|
|
19901
19912
|
}
|
|
19902
19913
|
|
|
19903
19914
|
interface OrderWithFulfillments {
|
|
@@ -22520,6 +22531,12 @@ interface PaymentRefundFailed {
|
|
|
22520
22531
|
/** Details about the failed payment refund. */
|
|
22521
22532
|
payment?: RefundedPayment;
|
|
22522
22533
|
}
|
|
22534
|
+
interface RefundedAsStoreCredit {
|
|
22535
|
+
/** Refund amount */
|
|
22536
|
+
amount?: Price$2;
|
|
22537
|
+
/** Reason for refund */
|
|
22538
|
+
reason?: string | null;
|
|
22539
|
+
}
|
|
22523
22540
|
declare enum ActivityType$1 {
|
|
22524
22541
|
ORDER_REFUNDED = "ORDER_REFUNDED",
|
|
22525
22542
|
ORDER_PLACED = "ORDER_PLACED",
|
|
@@ -22551,7 +22568,8 @@ declare enum ActivityType$1 {
|
|
|
22551
22568
|
AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
|
|
22552
22569
|
REFUND_INITIATED = "REFUND_INITIATED",
|
|
22553
22570
|
PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
|
|
22554
|
-
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
|
|
22571
|
+
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
|
|
22572
|
+
REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
|
|
22555
22573
|
}
|
|
22556
22574
|
declare enum AttributionSource {
|
|
22557
22575
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -26083,6 +26101,9 @@ interface PaymentRefundFailedNonNullableFields {
|
|
|
26083
26101
|
refundId: string;
|
|
26084
26102
|
payment?: RefundedPaymentNonNullableFields;
|
|
26085
26103
|
}
|
|
26104
|
+
interface RefundedAsStoreCreditNonNullableFields {
|
|
26105
|
+
amount?: PriceNonNullableFields$2;
|
|
26106
|
+
}
|
|
26086
26107
|
interface ActivityNonNullableFields {
|
|
26087
26108
|
customActivity?: CustomActivityNonNullableFields;
|
|
26088
26109
|
merchantComment?: MerchantCommentNonNullableFields;
|
|
@@ -26097,6 +26118,7 @@ interface ActivityNonNullableFields {
|
|
|
26097
26118
|
refundInitiated?: RefundInitiatedNonNullableFields;
|
|
26098
26119
|
paymentRefunded?: PaymentRefundedNonNullableFields;
|
|
26099
26120
|
paymentRefundFailed?: PaymentRefundFailedNonNullableFields;
|
|
26121
|
+
refundedAsStoreCredit?: RefundedAsStoreCreditNonNullableFields;
|
|
26100
26122
|
type: ActivityType$1;
|
|
26101
26123
|
}
|
|
26102
26124
|
interface CreatedByNonNullableFields {
|
|
@@ -26990,6 +27012,7 @@ type context$8_RecordManuallyCollectedPaymentRequest = RecordManuallyCollectedPa
|
|
|
26990
27012
|
type context$8_RecordManuallyCollectedPaymentResponse = RecordManuallyCollectedPaymentResponse;
|
|
26991
27013
|
type context$8_RedirectUrls = RedirectUrls;
|
|
26992
27014
|
type context$8_RefundInitiated = RefundInitiated;
|
|
27015
|
+
type context$8_RefundedAsStoreCredit = RefundedAsStoreCredit;
|
|
26993
27016
|
type context$8_RefundedPayment = RefundedPayment;
|
|
26994
27017
|
type context$8_RefundedPaymentKindOneOf = RefundedPaymentKindOneOf;
|
|
26995
27018
|
type context$8_RegularPaymentRefund = RegularPaymentRefund;
|
|
@@ -27118,7 +27141,7 @@ declare const context$8_searchOrders: typeof searchOrders;
|
|
|
27118
27141
|
declare const context$8_updateOrder: typeof updateOrder;
|
|
27119
27142
|
declare const context$8_voidAuthorizedPayments: typeof voidAuthorizedPayments;
|
|
27120
27143
|
declare namespace context$8 {
|
|
27121
|
-
export { type ActionEvent$6 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type context$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type context$8_AddActivitiesRequest as AddActivitiesRequest, type context$8_AddActivitiesResponse as AddActivitiesResponse, type context$8_AddActivityRequest as AddActivityRequest, type context$8_AddActivityResponse as AddActivityResponse, type context$8_AddInternalActivityRequest as AddInternalActivityRequest, type context$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type context$8_AdditionalFeeDelta as AdditionalFeeDelta, type context$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$4 as Address, type context$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type context$8_AddressWithContact as AddressWithContact, type context$8_AggregateOrdersRequest as AggregateOrdersRequest, type context$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type context$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type context$8_AppliedDiscountDelta as AppliedDiscountDelta, type context$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type context$8_ArchiveOrderRequest as ArchiveOrderRequest, type context$8_ArchiveOrderResponse as ArchiveOrderResponse, context$8_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$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$8_Balance as Balance, type context$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type context$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type context$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type context$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type context$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type context$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type context$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type context$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type context$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type context$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type context$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type context$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type context$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type context$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type context$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type context$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type context$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type context$8_BulkOrderResult as BulkOrderResult, type context$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type context$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type context$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type context$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type context$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type context$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type context$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type context$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type context$8_BulkUpdateOrderTagsOptions as BulkUpdateOrderTagsOptions, type context$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type context$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type context$8_BulkUpdateOrderTagsResponseNonNullableFields as BulkUpdateOrderTagsResponseNonNullableFields, type context$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type context$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type context$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type context$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type context$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type context$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$8_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$8_CalculatedTax as CalculatedTax, type context$8_CalculatedTaxes as CalculatedTaxes, type context$8_Cancel as Cancel, type context$8_CancelOrderOptions as CancelOrderOptions, type context$8_CancelOrderRequest as CancelOrderRequest, type context$8_CancelOrderResponse as CancelOrderResponse, type context$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type context$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type context$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type context$8_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type context$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type context$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type context$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type context$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type context$8_ChargedBy as ChargedBy, type context$8_Color as Color, type context$8_CommitDeltasRequest as CommitDeltasRequest, type context$8_CommitDeltasResponse as CommitDeltasResponse, type context$8_CommittedDiffs as CommittedDiffs, type context$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type context$8_CommonAddress as CommonAddress, type context$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type context$8_Company as Company, type context$8_Complete as Complete, type context$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type context$8_CreateOrderRequest as CreateOrderRequest, type context$8_CreateOrderResponse as CreateOrderResponse, type context$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type context$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type context$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type context$8_CreatedBy as CreatedBy, type context$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type context$8_CursorSearch as CursorSearch, type context$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type context$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, context$8_CustomFieldGroup as CustomFieldGroup, type context$8_CustomFieldValue as CustomFieldValue, type context$8_Customer as Customer, type context$8_DecrementData as DecrementData, type context$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type context$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type context$8_DelayedCaptureSettings as DelayedCaptureSettings, type context$8_DeleteActivityRequest as DeleteActivityRequest, type context$8_DeleteActivityResponse as DeleteActivityResponse, type context$8_DeleteByFilterOperation as DeleteByFilterOperation, type context$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type context$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, context$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type context$8_Deposit as Deposit, context$8_DepositType as DepositType, type context$8_DescriptionLine as DescriptionLine, type context$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$8_DescriptionLineName as DescriptionLineName, context$8_DescriptionLineType as DescriptionLineType, type context$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type context$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, context$8_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type context$8_DownloadLinkSent as DownloadLinkSent, type context$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type context$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type context$8_DraftOrderDiffs as DraftOrderDiffs, type context$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type context$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type context$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type context$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type context$8_Duration as Duration, context$8_DurationUnit as DurationUnit, type context$8_Email as Email, type context$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type context$8_ExternalUriMapping as ExternalUriMapping, type context$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type context$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type context$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type context$8_FullAddressContactDetails as FullAddressContactDetails, type context$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type context$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type context$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type context$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type context$8_GetOrderRequest as GetOrderRequest, type context$8_GetOrderResponse as GetOrderResponse, type context$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type context$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type context$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type context$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type context$8_GetShipmentsRequest as GetShipmentsRequest, type context$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type context$8_HtmlApplication as HtmlApplication, type context$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type context$8_InternalActivity as InternalActivity, type context$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type context$8_InternalDocument as InternalDocument, type context$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type context$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type context$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type context$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type context$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, context$8_InventoryAction as InventoryAction, type context$8_InventoryUpdateDetails as InventoryUpdateDetails, type context$8_InvoiceAdded as InvoiceAdded, type context$8_InvoiceDates as InvoiceDates, type context$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type context$8_InvoiceFields as InvoiceFields, type context$8_InvoiceSent as InvoiceSent, type context$8_InvoiceSentEvent as InvoiceSentEvent, context$8_InvoiceStatus as InvoiceStatus, type context$8_InvoicesPayment as InvoicesPayment, type context$8_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$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type context$8_LineItemAmount as LineItemAmount, type context$8_LineItemChanges as LineItemChanges, type context$8_LineItemDelta as LineItemDelta, type context$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type context$8_LineItemExchangeData as LineItemExchangeData, type context$8_LineItemMetaData as LineItemMetaData, type context$8_LineItemPriceChange as LineItemPriceChange, type context$8_LineItemQuantityChange as LineItemQuantityChange, context$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type context$8_LineItemTax as LineItemTax, type context$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$8_LineItemTaxInfo as LineItemTaxInfo, type context$8_LineItemUpdate as LineItemUpdate, type context$8_LineItems as LineItems, type context$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type context$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type context$8_Locale as Locale, type context$8_LocationAndQuantity as LocationAndQuantity, type context$8_ManagedAdditionalFee as ManagedAdditionalFee, type context$8_ManagedDiscount as ManagedDiscount, type context$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type context$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type context$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type context$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type context$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type context$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type context$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type context$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type context$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type context$8_MaskedOrder as MaskedOrder, type context$8_MaskedOrderLineItem as MaskedOrderLineItem, type context$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type context$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type context$8_MetaData as MetaData, type context$8_MetaSite as MetaSite, type context$8_MetaTag as MetaTag, context$8_Namespace as Namespace, type context$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, context$8_OrderApprovalStrategy as OrderApprovalStrategy, type context$8_OrderApproved as OrderApproved, type context$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type context$8_OrderCanceled as OrderCanceled, type context$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type context$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type context$8_OrderChange as OrderChange, type context$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$8_OrderCreateNotifications as OrderCreateNotifications, type context$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type context$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$8_OrderCreationSettings as OrderCreationSettings, type context$8_OrderDeltasCommitted as OrderDeltasCommitted, type context$8_OrderFulfilled as OrderFulfilled, type context$8_OrderItemsRestocked as OrderItemsRestocked, type context$8_OrderLineItem as OrderLineItem, type context$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type context$8_OrderNonNullableFields as OrderNonNullableFields, type context$8_OrderNotFulfilled as OrderNotFulfilled, type context$8_OrderPaid as OrderPaid, type context$8_OrderPartiallyPaid as OrderPartiallyPaid, type context$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type context$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, context$8_OrderStatus as OrderStatus, type context$8_OrderTaxBreakdown as OrderTaxBreakdown, type context$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type context$8_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type context$8_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type context$8_PaymentCapture as PaymentCapture, context$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type context$8_PaymentRefundFailed as PaymentRefundFailed, type context$8_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type context$8_PaymentStatusUpdated as PaymentStatusUpdated, type context$8_Payments as Payments, type context$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type context$8_PickupReadyEmailSent as PickupReadyEmailSent, context$8_Placement as Placement, type context$8_PlainTextValue as PlainTextValue, type context$8_PlatformPaging as PlatformPaging, type context$8_PlatformPagingMetadata as PlatformPagingMetadata, type context$8_PlatformQuery as PlatformQuery, type context$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type context$8_PreparePaymentCollectionOptions as PreparePaymentCollectionOptions, type context$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type context$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type context$8_PreparePaymentCollectionResponseNonNullableFields as PreparePaymentCollectionResponseNonNullableFields, type context$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type context$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type context$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type context$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type context$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type context$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type context$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type context$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type context$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type context$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type context$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type context$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, context$8_PreviewEmailType as PreviewEmailType, type context$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type context$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type context$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type context$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type context$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type context$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type context$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type context$8_ProductName as ProductName, type context$8_PublicActivity as PublicActivity, type context$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type context$8_QueryOrderRequest as QueryOrderRequest, type context$8_QueryOrderResponse as QueryOrderResponse, type context$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type context$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type context$8_QuotesAddress as QuotesAddress, Reason$2 as Reason, type context$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type context$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type context$8_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type context$8_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$8_RefundedPayment as RefundedPayment, type context$8_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$8_RegularPaymentRefund as RegularPaymentRefund, type context$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type context$8_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$2 as ScheduledAction, type context$8_SearchOrdersOptions as SearchOrdersOptions, type context$8_SearchOrdersRequest as SearchOrdersRequest, type context$8_SearchOrdersResponse as SearchOrdersResponse, type context$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type context$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type context$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type context$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type context$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type context$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type context$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type context$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type context$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type context$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type context$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type context$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type context$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type context$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type context$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type context$8_SendRefundEmailRequest as SendRefundEmailRequest, type context$8_SendRefundEmailResponse as SendRefundEmailResponse, type context$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type context$8_ShippingAddressEdited as ShippingAddressEdited, type context$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type context$8_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$2 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, context$8_SourceType as SourceType, type context$8_StandardDetails as StandardDetails, context$8_State as State, type StreetAddress$3 as StreetAddress, type context$8_Subdivision as Subdivision, context$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type context$8_TagList as TagList, type context$8_Tags as Tags, type context$8_Task as Task, type context$8_TaskAction as TaskAction, type context$8_TaskActionActionOneOf as TaskActionActionOneOf, type context$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type context$8_TaxableAddress as TaxableAddress, type context$8_TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOf, context$8_TaxableAddressType as TaxableAddressType, type context$8_TotalPrice as TotalPrice, type context$8_TotalPriceChange as TotalPriceChange, type context$8_TrackingLinkAdded as TrackingLinkAdded, type context$8_TrackingNumberAdded as TrackingNumberAdded, type context$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type context$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type context$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type context$8_TriggerReindexRequest as TriggerReindexRequest, type context$8_TriggerReindexResponse as TriggerReindexResponse, type context$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type context$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type context$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type context$8_UpdateActivityRequest as UpdateActivityRequest, type context$8_UpdateActivityResponse as UpdateActivityResponse, type context$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type context$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type context$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type context$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type context$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type context$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type context$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type context$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type context$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type context$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type context$8_UpdateOrder as UpdateOrder, type context$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type context$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type context$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type context$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type context$8_UpdateOrderRequest as UpdateOrderRequest, type context$8_UpdateOrderResponse as UpdateOrderResponse, type context$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type context$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type context$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type context$8_UpsertRefundRequest as UpsertRefundRequest, type context$8_UpsertRefundResponse as UpsertRefundResponse, type context$8_UserDataResponse as UserDataResponse, type context$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type context$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type context$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type context$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type context$8_V1LineItemDelta as V1LineItemDelta, type context$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type context$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type context$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type context$8_V1RestockItem as V1RestockItem, type context$8_V1ScheduledAction as V1ScheduledAction, type context$8_V1ShippingInformation as V1ShippingInformation, type context$8_Value as Value, context$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type context$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type context$8_VersionedDocumentId as VersionedDocumentId, type context$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, context$8_VersioningMode as VersioningMode, type context$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type context$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type context$8_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type context$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type context$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type context$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type context$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, type context$8__publicOnOrderUpdatedType as _publicOnOrderUpdatedType, context$8_bulkUpdateOrderTags as bulkUpdateOrderTags, context$8_bulkUpdateOrders as bulkUpdateOrders, context$8_cancelOrder as cancelOrder, context$8_captureAuthorizedPayments as captureAuthorizedPayments, context$8_createOrder as createOrder, context$8_getOrder as getOrder, context$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, context$8_onOrderApproved as onOrderApproved, context$8_onOrderCanceled as onOrderCanceled, context$8_onOrderCreated as onOrderCreated, context$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, context$8_onOrderUpdated as onOrderUpdated, context$8_preparePaymentCollection as preparePaymentCollection, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, onOrderUpdated$1 as publicOnOrderUpdated, context$8_searchOrders as searchOrders, context$8_updateOrder as updateOrder, context$8_voidAuthorizedPayments as voidAuthorizedPayments };
|
|
27144
|
+
export { type ActionEvent$6 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type context$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type context$8_AddActivitiesRequest as AddActivitiesRequest, type context$8_AddActivitiesResponse as AddActivitiesResponse, type context$8_AddActivityRequest as AddActivityRequest, type context$8_AddActivityResponse as AddActivityResponse, type context$8_AddInternalActivityRequest as AddInternalActivityRequest, type context$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type context$8_AdditionalFeeDelta as AdditionalFeeDelta, type context$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$4 as Address, type context$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type context$8_AddressWithContact as AddressWithContact, type context$8_AggregateOrdersRequest as AggregateOrdersRequest, type context$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type context$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type context$8_AppliedDiscountDelta as AppliedDiscountDelta, type context$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type context$8_ArchiveOrderRequest as ArchiveOrderRequest, type context$8_ArchiveOrderResponse as ArchiveOrderResponse, context$8_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$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$8_Balance as Balance, type context$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type context$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type context$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type context$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type context$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type context$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type context$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type context$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type context$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type context$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type context$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type context$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type context$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type context$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type context$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type context$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type context$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type context$8_BulkOrderResult as BulkOrderResult, type context$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type context$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type context$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type context$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type context$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type context$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type context$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type context$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type context$8_BulkUpdateOrderTagsOptions as BulkUpdateOrderTagsOptions, type context$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type context$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type context$8_BulkUpdateOrderTagsResponseNonNullableFields as BulkUpdateOrderTagsResponseNonNullableFields, type context$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type context$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type context$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type context$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type context$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type context$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$8_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$8_CalculatedTax as CalculatedTax, type context$8_CalculatedTaxes as CalculatedTaxes, type context$8_Cancel as Cancel, type context$8_CancelOrderOptions as CancelOrderOptions, type context$8_CancelOrderRequest as CancelOrderRequest, type context$8_CancelOrderResponse as CancelOrderResponse, type context$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type context$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type context$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type context$8_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type context$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type context$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type context$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type context$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type context$8_ChargedBy as ChargedBy, type context$8_Color as Color, type context$8_CommitDeltasRequest as CommitDeltasRequest, type context$8_CommitDeltasResponse as CommitDeltasResponse, type context$8_CommittedDiffs as CommittedDiffs, type context$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type context$8_CommonAddress as CommonAddress, type context$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type context$8_Company as Company, type context$8_Complete as Complete, type context$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type context$8_CreateOrderRequest as CreateOrderRequest, type context$8_CreateOrderResponse as CreateOrderResponse, type context$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type context$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type context$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type context$8_CreatedBy as CreatedBy, type context$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type context$8_CursorSearch as CursorSearch, type context$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type context$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, context$8_CustomFieldGroup as CustomFieldGroup, type context$8_CustomFieldValue as CustomFieldValue, type context$8_Customer as Customer, type context$8_DecrementData as DecrementData, type context$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type context$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type context$8_DelayedCaptureSettings as DelayedCaptureSettings, type context$8_DeleteActivityRequest as DeleteActivityRequest, type context$8_DeleteActivityResponse as DeleteActivityResponse, type context$8_DeleteByFilterOperation as DeleteByFilterOperation, type context$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type context$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, context$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type context$8_Deposit as Deposit, context$8_DepositType as DepositType, type context$8_DescriptionLine as DescriptionLine, type context$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$8_DescriptionLineName as DescriptionLineName, context$8_DescriptionLineType as DescriptionLineType, type context$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type context$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, context$8_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type context$8_DownloadLinkSent as DownloadLinkSent, type context$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type context$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type context$8_DraftOrderDiffs as DraftOrderDiffs, type context$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type context$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type context$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type context$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type context$8_Duration as Duration, context$8_DurationUnit as DurationUnit, type context$8_Email as Email, type context$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type context$8_ExternalUriMapping as ExternalUriMapping, type context$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type context$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type context$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type context$8_FullAddressContactDetails as FullAddressContactDetails, type context$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type context$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type context$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type context$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type context$8_GetOrderRequest as GetOrderRequest, type context$8_GetOrderResponse as GetOrderResponse, type context$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type context$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type context$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type context$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type context$8_GetShipmentsRequest as GetShipmentsRequest, type context$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type context$8_HtmlApplication as HtmlApplication, type context$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type context$8_InternalActivity as InternalActivity, type context$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type context$8_InternalDocument as InternalDocument, type context$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type context$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type context$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type context$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type context$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, context$8_InventoryAction as InventoryAction, type context$8_InventoryUpdateDetails as InventoryUpdateDetails, type context$8_InvoiceAdded as InvoiceAdded, type context$8_InvoiceDates as InvoiceDates, type context$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type context$8_InvoiceFields as InvoiceFields, type context$8_InvoiceSent as InvoiceSent, type context$8_InvoiceSentEvent as InvoiceSentEvent, context$8_InvoiceStatus as InvoiceStatus, type context$8_InvoicesPayment as InvoicesPayment, type context$8_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$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type context$8_LineItemAmount as LineItemAmount, type context$8_LineItemChanges as LineItemChanges, type context$8_LineItemDelta as LineItemDelta, type context$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type context$8_LineItemExchangeData as LineItemExchangeData, type context$8_LineItemMetaData as LineItemMetaData, type context$8_LineItemPriceChange as LineItemPriceChange, type context$8_LineItemQuantityChange as LineItemQuantityChange, context$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type context$8_LineItemTax as LineItemTax, type context$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$8_LineItemTaxInfo as LineItemTaxInfo, type context$8_LineItemUpdate as LineItemUpdate, type context$8_LineItems as LineItems, type context$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type context$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type context$8_Locale as Locale, type context$8_LocationAndQuantity as LocationAndQuantity, type context$8_ManagedAdditionalFee as ManagedAdditionalFee, type context$8_ManagedDiscount as ManagedDiscount, type context$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type context$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type context$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type context$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type context$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type context$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type context$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type context$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type context$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type context$8_MaskedOrder as MaskedOrder, type context$8_MaskedOrderLineItem as MaskedOrderLineItem, type context$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type context$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type context$8_MetaData as MetaData, type context$8_MetaSite as MetaSite, type context$8_MetaTag as MetaTag, context$8_Namespace as Namespace, type context$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, context$8_OrderApprovalStrategy as OrderApprovalStrategy, type context$8_OrderApproved as OrderApproved, type context$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type context$8_OrderCanceled as OrderCanceled, type context$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type context$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type context$8_OrderChange as OrderChange, type context$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$8_OrderCreateNotifications as OrderCreateNotifications, type context$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type context$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$8_OrderCreationSettings as OrderCreationSettings, type context$8_OrderDeltasCommitted as OrderDeltasCommitted, type context$8_OrderFulfilled as OrderFulfilled, type context$8_OrderItemsRestocked as OrderItemsRestocked, type context$8_OrderLineItem as OrderLineItem, type context$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type context$8_OrderNonNullableFields as OrderNonNullableFields, type context$8_OrderNotFulfilled as OrderNotFulfilled, type context$8_OrderPaid as OrderPaid, type context$8_OrderPartiallyPaid as OrderPartiallyPaid, type context$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type context$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, context$8_OrderStatus as OrderStatus, type context$8_OrderTaxBreakdown as OrderTaxBreakdown, type context$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type context$8_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type context$8_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type context$8_PaymentCapture as PaymentCapture, context$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type context$8_PaymentRefundFailed as PaymentRefundFailed, type context$8_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type context$8_PaymentStatusUpdated as PaymentStatusUpdated, type context$8_Payments as Payments, type context$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type context$8_PickupReadyEmailSent as PickupReadyEmailSent, context$8_Placement as Placement, type context$8_PlainTextValue as PlainTextValue, type context$8_PlatformPaging as PlatformPaging, type context$8_PlatformPagingMetadata as PlatformPagingMetadata, type context$8_PlatformQuery as PlatformQuery, type context$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type context$8_PreparePaymentCollectionOptions as PreparePaymentCollectionOptions, type context$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type context$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type context$8_PreparePaymentCollectionResponseNonNullableFields as PreparePaymentCollectionResponseNonNullableFields, type context$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type context$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type context$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type context$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type context$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type context$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type context$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type context$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type context$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type context$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type context$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type context$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, context$8_PreviewEmailType as PreviewEmailType, type context$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type context$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type context$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type context$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type context$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type context$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type context$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type context$8_ProductName as ProductName, type context$8_PublicActivity as PublicActivity, type context$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type context$8_QueryOrderRequest as QueryOrderRequest, type context$8_QueryOrderResponse as QueryOrderResponse, type context$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type context$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type context$8_QuotesAddress as QuotesAddress, Reason$2 as Reason, type context$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type context$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type context$8_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type context$8_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$8_RefundedAsStoreCredit as RefundedAsStoreCredit, type context$8_RefundedPayment as RefundedPayment, type context$8_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$8_RegularPaymentRefund as RegularPaymentRefund, type context$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type context$8_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$2 as ScheduledAction, type context$8_SearchOrdersOptions as SearchOrdersOptions, type context$8_SearchOrdersRequest as SearchOrdersRequest, type context$8_SearchOrdersResponse as SearchOrdersResponse, type context$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type context$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type context$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type context$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type context$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type context$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type context$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type context$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type context$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type context$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type context$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type context$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type context$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type context$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type context$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type context$8_SendRefundEmailRequest as SendRefundEmailRequest, type context$8_SendRefundEmailResponse as SendRefundEmailResponse, type context$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type context$8_ShippingAddressEdited as ShippingAddressEdited, type context$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type context$8_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$2 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, context$8_SourceType as SourceType, type context$8_StandardDetails as StandardDetails, context$8_State as State, type StreetAddress$3 as StreetAddress, type context$8_Subdivision as Subdivision, context$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type context$8_TagList as TagList, type context$8_Tags as Tags, type context$8_Task as Task, type context$8_TaskAction as TaskAction, type context$8_TaskActionActionOneOf as TaskActionActionOneOf, type context$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type context$8_TaxableAddress as TaxableAddress, type context$8_TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOf, context$8_TaxableAddressType as TaxableAddressType, type context$8_TotalPrice as TotalPrice, type context$8_TotalPriceChange as TotalPriceChange, type context$8_TrackingLinkAdded as TrackingLinkAdded, type context$8_TrackingNumberAdded as TrackingNumberAdded, type context$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type context$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type context$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type context$8_TriggerReindexRequest as TriggerReindexRequest, type context$8_TriggerReindexResponse as TriggerReindexResponse, type context$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type context$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type context$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type context$8_UpdateActivityRequest as UpdateActivityRequest, type context$8_UpdateActivityResponse as UpdateActivityResponse, type context$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type context$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type context$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type context$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type context$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type context$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type context$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type context$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type context$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type context$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type context$8_UpdateOrder as UpdateOrder, type context$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type context$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type context$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type context$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type context$8_UpdateOrderRequest as UpdateOrderRequest, type context$8_UpdateOrderResponse as UpdateOrderResponse, type context$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type context$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type context$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type context$8_UpsertRefundRequest as UpsertRefundRequest, type context$8_UpsertRefundResponse as UpsertRefundResponse, type context$8_UserDataResponse as UserDataResponse, type context$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type context$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type context$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type context$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type context$8_V1LineItemDelta as V1LineItemDelta, type context$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type context$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type context$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type context$8_V1RestockItem as V1RestockItem, type context$8_V1ScheduledAction as V1ScheduledAction, type context$8_V1ShippingInformation as V1ShippingInformation, type context$8_Value as Value, context$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type context$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type context$8_VersionedDocumentId as VersionedDocumentId, type context$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, context$8_VersioningMode as VersioningMode, type context$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type context$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type context$8_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type context$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type context$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type context$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type context$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, type context$8__publicOnOrderUpdatedType as _publicOnOrderUpdatedType, context$8_bulkUpdateOrderTags as bulkUpdateOrderTags, context$8_bulkUpdateOrders as bulkUpdateOrders, context$8_cancelOrder as cancelOrder, context$8_captureAuthorizedPayments as captureAuthorizedPayments, context$8_createOrder as createOrder, context$8_getOrder as getOrder, context$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, context$8_onOrderApproved as onOrderApproved, context$8_onOrderCanceled as onOrderCanceled, context$8_onOrderCreated as onOrderCreated, context$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, context$8_onOrderUpdated as onOrderUpdated, context$8_preparePaymentCollection as preparePaymentCollection, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, onOrderUpdated$1 as publicOnOrderUpdated, context$8_searchOrders as searchOrders, context$8_updateOrder as updateOrder, context$8_voidAuthorizedPayments as voidAuthorizedPayments };
|
|
27122
27145
|
}
|
|
27123
27146
|
|
|
27124
27147
|
interface OrderPaymentRequest {
|
|
@@ -18546,6 +18546,12 @@ interface PaymentRefundFailed$1 {
|
|
|
18546
18546
|
/** Details about the failed payment refund. */
|
|
18547
18547
|
payment?: RefundedPayment$1;
|
|
18548
18548
|
}
|
|
18549
|
+
interface RefundedAsStoreCredit$1 {
|
|
18550
|
+
/** Refund amount */
|
|
18551
|
+
amount?: Price$3;
|
|
18552
|
+
/** Reason for refund */
|
|
18553
|
+
reason?: string | null;
|
|
18554
|
+
}
|
|
18549
18555
|
declare enum ActivityType$2 {
|
|
18550
18556
|
ORDER_REFUNDED = "ORDER_REFUNDED",
|
|
18551
18557
|
ORDER_PLACED = "ORDER_PLACED",
|
|
@@ -18577,7 +18583,8 @@ declare enum ActivityType$2 {
|
|
|
18577
18583
|
AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
|
|
18578
18584
|
REFUND_INITIATED = "REFUND_INITIATED",
|
|
18579
18585
|
PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
|
|
18580
|
-
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
|
|
18586
|
+
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
|
|
18587
|
+
REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
|
|
18581
18588
|
}
|
|
18582
18589
|
declare enum AttributionSource$1 {
|
|
18583
18590
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -19443,6 +19450,9 @@ interface PaymentRefundFailedNonNullableFields$1 {
|
|
|
19443
19450
|
refundId: string;
|
|
19444
19451
|
payment?: RefundedPaymentNonNullableFields$1;
|
|
19445
19452
|
}
|
|
19453
|
+
interface RefundedAsStoreCreditNonNullableFields$1 {
|
|
19454
|
+
amount?: PriceNonNullableFields$3;
|
|
19455
|
+
}
|
|
19446
19456
|
interface ActivityNonNullableFields$1 {
|
|
19447
19457
|
customActivity?: CustomActivityNonNullableFields$1;
|
|
19448
19458
|
merchantComment?: MerchantCommentNonNullableFields$1;
|
|
@@ -19457,6 +19467,7 @@ interface ActivityNonNullableFields$1 {
|
|
|
19457
19467
|
refundInitiated?: RefundInitiatedNonNullableFields$1;
|
|
19458
19468
|
paymentRefunded?: PaymentRefundedNonNullableFields$1;
|
|
19459
19469
|
paymentRefundFailed?: PaymentRefundFailedNonNullableFields$1;
|
|
19470
|
+
refundedAsStoreCredit?: RefundedAsStoreCreditNonNullableFields$1;
|
|
19460
19471
|
type: ActivityType$2;
|
|
19461
19472
|
}
|
|
19462
19473
|
interface V1CreatedByNonNullableFields {
|
|
@@ -19897,7 +19908,7 @@ declare const index_d$c_setAdditionalFees: typeof setAdditionalFees;
|
|
|
19897
19908
|
declare const index_d$c_setDiscounts: typeof setDiscounts;
|
|
19898
19909
|
declare const index_d$c_updateLineItems: typeof updateLineItems;
|
|
19899
19910
|
declare namespace index_d$c {
|
|
19900
|
-
export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type index_d$c_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type index_d$c_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type index_d$c_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type index_d$c_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type index_d$c_AdditionalFeeDetails as AdditionalFeeDetails, type index_d$c_AdditionalFeeOption as AdditionalFeeOption, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$5 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, index_d$c_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type index_d$c_BillingChangedDetails as BillingChangedDetails, type index_d$c_BillingDetails as BillingDetails, type index_d$c_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type index_d$c_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type index_d$c_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$c_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$2 as CatalogReference, type index_d$c_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type index_d$c_CommitDraftOrderOptions as CommitDraftOrderOptions, type index_d$c_CommitDraftOrderRequest as CommitDraftOrderRequest, type index_d$c_CommitDraftOrderResponse as CommitDraftOrderResponse, type index_d$c_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type index_d$c_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type index_d$c_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type index_d$c_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type index_d$c_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type index_d$c_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type index_d$c_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type index_d$c_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type index_d$c_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type index_d$c_CreateDraftOrderRequest as CreateDraftOrderRequest, type index_d$c_CreateDraftOrderResponse as CreateDraftOrderResponse, type index_d$c_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type index_d$c_CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequest, type index_d$c_CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponse, type index_d$c_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type index_d$c_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type index_d$c_CustomLineItem as CustomLineItem, type index_d$c_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type index_d$c_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type index_d$c_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type index_d$c_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type index_d$c_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type index_d$c_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type index_d$c_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type index_d$c_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$1 as Details, type DetailsKindOneOf$1 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type index_d$c_DiscountDetails as DiscountDetails, type index_d$c_DiscountOption as DiscountOption, type index_d$c_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type index_d$c_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type index_d$c_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type index_d$c_DraftOrdersQueryResult as DraftOrdersQueryResult, index_d$c_EditingStatus as EditingStatus, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$1 as FieldViolation, index_d$c_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$c_GetDraftEditabilityStatusRequest as GetDraftEditabilityStatusRequest, type index_d$c_GetDraftEditabilityStatusResponse as GetDraftEditabilityStatusResponse, type index_d$c_GetDraftOrderRequest as GetDraftOrderRequest, type index_d$c_GetDraftOrderResponse as GetDraftOrderResponse, type index_d$c_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type index_d$c_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type index_d$c_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type index_d$c_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type index_d$c_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type index_d$c_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type index_d$c_ItemDetails as ItemDetails, type index_d$c_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type index_d$c_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, index_d$c_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type index_d$c_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, PaymentOptionType$2 as PaymentOptionType, type PaymentRefundFailed$1 as PaymentRefundFailed, type PaymentRefunded$1 as PaymentRefunded, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, index_d$c_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$2 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type index_d$c_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type index_d$c_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type index_d$c_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type index_d$c_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type index_d$c_RecipientInfoDetails as RecipientInfoDetails, type index_d$c_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated$1 as RefundInitiated, type RefundedPayment$1 as RefundedPayment, type RefundedPaymentKindOneOf$1 as RefundedPaymentKindOneOf, type RegularPaymentRefund$1 as RegularPaymentRefund, type RestoreInfo$9 as RestoreInfo, RuleType$1 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type index_d$c_SecuredMedia as SecuredMedia, type index_d$c_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type index_d$c_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type index_d$c_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type index_d$c_SetBillingInfoRequest as SetBillingInfoRequest, type index_d$c_SetBillingInfoResponse as SetBillingInfoResponse, type index_d$c_SetBuyerInfoRequest as SetBuyerInfoRequest, type index_d$c_SetBuyerInfoResponse as SetBuyerInfoResponse, type index_d$c_SetDiscountsRequest as SetDiscountsRequest, type index_d$c_SetDiscountsResponse as SetDiscountsResponse, type index_d$c_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type index_d$c_SetRecipientInfoRequest as SetRecipientInfoRequest, type index_d$c_SetRecipientInfoResponse as SetRecipientInfoResponse, type index_d$c_SetShippingInfoRequest as SetShippingInfoRequest, type index_d$c_SetShippingInfoResponse as SetShippingInfoResponse, type index_d$c_ShippingChangedDetails as ShippingChangedDetails, type index_d$c_ShippingDetails as ShippingDetails, type index_d$c_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$1 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TaxableAddress$1 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$1 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$1 as TaxableAddressType, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type index_d$c_UpdateLineItemsOptions as UpdateLineItemsOptions, type index_d$c_UpdateLineItemsRequest as UpdateLineItemsRequest, type index_d$c_UpdateLineItemsResponse as UpdateLineItemsResponse, type index_d$c_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type index_d$c_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type index_d$c_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type index_d$c_V1BalanceSummary as V1BalanceSummary, type index_d$c_V1CreatedBy as V1CreatedBy, type index_d$c_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type index_d$c_V1DeliveryLogistics as V1DeliveryLogistics, type index_d$c_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type index_d$c_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type index_d$c_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type index_d$c_V1ShippingPrice as V1ShippingPrice, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$3 as WeightUnit, index_d$c_addLineItemsToDraftOrder as addLineItemsToDraftOrder, index_d$c_commitDraftOrder as commitDraftOrder, index_d$c_createCustomAdditionalFees as createCustomAdditionalFees, index_d$c_createCustomDiscounts as createCustomDiscounts, index_d$c_createDraftOrder as createDraftOrder, index_d$c_deleteCustomAdditionalFees as deleteCustomAdditionalFees, index_d$c_deleteCustomDiscounts as deleteCustomDiscounts, index_d$c_deleteDraftOrder as deleteDraftOrder, index_d$c_getDraftOrder as getDraftOrder, index_d$c_getOrderDraftabilityStatus as getOrderDraftabilityStatus, index_d$c_queryDraftOrders as queryDraftOrders, index_d$c_setAdditionalFees as setAdditionalFees, index_d$c_setDiscounts as setDiscounts, index_d$c_updateLineItems as updateLineItems };
|
|
19911
|
+
export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type index_d$c_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type index_d$c_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type index_d$c_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type index_d$c_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type index_d$c_AdditionalFeeDetails as AdditionalFeeDetails, type index_d$c_AdditionalFeeOption as AdditionalFeeOption, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$5 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, index_d$c_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type index_d$c_BillingChangedDetails as BillingChangedDetails, type index_d$c_BillingDetails as BillingDetails, type index_d$c_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type index_d$c_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type index_d$c_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$c_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$2 as CatalogReference, type index_d$c_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type index_d$c_CommitDraftOrderOptions as CommitDraftOrderOptions, type index_d$c_CommitDraftOrderRequest as CommitDraftOrderRequest, type index_d$c_CommitDraftOrderResponse as CommitDraftOrderResponse, type index_d$c_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type index_d$c_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type index_d$c_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type index_d$c_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type index_d$c_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type index_d$c_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type index_d$c_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type index_d$c_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type index_d$c_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type index_d$c_CreateDraftOrderRequest as CreateDraftOrderRequest, type index_d$c_CreateDraftOrderResponse as CreateDraftOrderResponse, type index_d$c_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type index_d$c_CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequest, type index_d$c_CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponse, type index_d$c_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type index_d$c_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type index_d$c_CustomLineItem as CustomLineItem, type index_d$c_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type index_d$c_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type index_d$c_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type index_d$c_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type index_d$c_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type index_d$c_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type index_d$c_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type index_d$c_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$1 as Details, type DetailsKindOneOf$1 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type index_d$c_DiscountDetails as DiscountDetails, type index_d$c_DiscountOption as DiscountOption, type index_d$c_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type index_d$c_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type index_d$c_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type index_d$c_DraftOrdersQueryResult as DraftOrdersQueryResult, index_d$c_EditingStatus as EditingStatus, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$1 as FieldViolation, index_d$c_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$c_GetDraftEditabilityStatusRequest as GetDraftEditabilityStatusRequest, type index_d$c_GetDraftEditabilityStatusResponse as GetDraftEditabilityStatusResponse, type index_d$c_GetDraftOrderRequest as GetDraftOrderRequest, type index_d$c_GetDraftOrderResponse as GetDraftOrderResponse, type index_d$c_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type index_d$c_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type index_d$c_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type index_d$c_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type index_d$c_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type index_d$c_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type index_d$c_ItemDetails as ItemDetails, type index_d$c_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type index_d$c_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, index_d$c_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type index_d$c_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, PaymentOptionType$2 as PaymentOptionType, type PaymentRefundFailed$1 as PaymentRefundFailed, type PaymentRefunded$1 as PaymentRefunded, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, index_d$c_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$2 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type index_d$c_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type index_d$c_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type index_d$c_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type index_d$c_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type index_d$c_RecipientInfoDetails as RecipientInfoDetails, type index_d$c_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated$1 as RefundInitiated, type RefundedAsStoreCredit$1 as RefundedAsStoreCredit, type RefundedPayment$1 as RefundedPayment, type RefundedPaymentKindOneOf$1 as RefundedPaymentKindOneOf, type RegularPaymentRefund$1 as RegularPaymentRefund, type RestoreInfo$9 as RestoreInfo, RuleType$1 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type index_d$c_SecuredMedia as SecuredMedia, type index_d$c_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type index_d$c_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type index_d$c_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type index_d$c_SetBillingInfoRequest as SetBillingInfoRequest, type index_d$c_SetBillingInfoResponse as SetBillingInfoResponse, type index_d$c_SetBuyerInfoRequest as SetBuyerInfoRequest, type index_d$c_SetBuyerInfoResponse as SetBuyerInfoResponse, type index_d$c_SetDiscountsRequest as SetDiscountsRequest, type index_d$c_SetDiscountsResponse as SetDiscountsResponse, type index_d$c_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type index_d$c_SetRecipientInfoRequest as SetRecipientInfoRequest, type index_d$c_SetRecipientInfoResponse as SetRecipientInfoResponse, type index_d$c_SetShippingInfoRequest as SetShippingInfoRequest, type index_d$c_SetShippingInfoResponse as SetShippingInfoResponse, type index_d$c_ShippingChangedDetails as ShippingChangedDetails, type index_d$c_ShippingDetails as ShippingDetails, type index_d$c_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$1 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TaxableAddress$1 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$1 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$1 as TaxableAddressType, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type index_d$c_UpdateLineItemsOptions as UpdateLineItemsOptions, type index_d$c_UpdateLineItemsRequest as UpdateLineItemsRequest, type index_d$c_UpdateLineItemsResponse as UpdateLineItemsResponse, type index_d$c_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type index_d$c_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type index_d$c_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type index_d$c_V1BalanceSummary as V1BalanceSummary, type index_d$c_V1CreatedBy as V1CreatedBy, type index_d$c_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type index_d$c_V1DeliveryLogistics as V1DeliveryLogistics, type index_d$c_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type index_d$c_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type index_d$c_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type index_d$c_V1ShippingPrice as V1ShippingPrice, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$3 as WeightUnit, index_d$c_addLineItemsToDraftOrder as addLineItemsToDraftOrder, index_d$c_commitDraftOrder as commitDraftOrder, index_d$c_createCustomAdditionalFees as createCustomAdditionalFees, index_d$c_createCustomDiscounts as createCustomDiscounts, index_d$c_createDraftOrder as createDraftOrder, index_d$c_deleteCustomAdditionalFees as deleteCustomAdditionalFees, index_d$c_deleteCustomDiscounts as deleteCustomDiscounts, index_d$c_deleteDraftOrder as deleteDraftOrder, index_d$c_getDraftOrder as getDraftOrder, index_d$c_getOrderDraftabilityStatus as getOrderDraftabilityStatus, index_d$c_queryDraftOrders as queryDraftOrders, index_d$c_setAdditionalFees as setAdditionalFees, index_d$c_setDiscounts as setDiscounts, index_d$c_updateLineItems as updateLineItems };
|
|
19901
19912
|
}
|
|
19902
19913
|
|
|
19903
19914
|
interface OrderWithFulfillments {
|
|
@@ -22520,6 +22531,12 @@ interface PaymentRefundFailed {
|
|
|
22520
22531
|
/** Details about the failed payment refund. */
|
|
22521
22532
|
payment?: RefundedPayment;
|
|
22522
22533
|
}
|
|
22534
|
+
interface RefundedAsStoreCredit {
|
|
22535
|
+
/** Refund amount */
|
|
22536
|
+
amount?: Price$2;
|
|
22537
|
+
/** Reason for refund */
|
|
22538
|
+
reason?: string | null;
|
|
22539
|
+
}
|
|
22523
22540
|
declare enum ActivityType$1 {
|
|
22524
22541
|
ORDER_REFUNDED = "ORDER_REFUNDED",
|
|
22525
22542
|
ORDER_PLACED = "ORDER_PLACED",
|
|
@@ -22551,7 +22568,8 @@ declare enum ActivityType$1 {
|
|
|
22551
22568
|
AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
|
|
22552
22569
|
REFUND_INITIATED = "REFUND_INITIATED",
|
|
22553
22570
|
PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
|
|
22554
|
-
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
|
|
22571
|
+
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
|
|
22572
|
+
REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
|
|
22555
22573
|
}
|
|
22556
22574
|
declare enum AttributionSource {
|
|
22557
22575
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -26083,6 +26101,9 @@ interface PaymentRefundFailedNonNullableFields {
|
|
|
26083
26101
|
refundId: string;
|
|
26084
26102
|
payment?: RefundedPaymentNonNullableFields;
|
|
26085
26103
|
}
|
|
26104
|
+
interface RefundedAsStoreCreditNonNullableFields {
|
|
26105
|
+
amount?: PriceNonNullableFields$2;
|
|
26106
|
+
}
|
|
26086
26107
|
interface ActivityNonNullableFields {
|
|
26087
26108
|
customActivity?: CustomActivityNonNullableFields;
|
|
26088
26109
|
merchantComment?: MerchantCommentNonNullableFields;
|
|
@@ -26097,6 +26118,7 @@ interface ActivityNonNullableFields {
|
|
|
26097
26118
|
refundInitiated?: RefundInitiatedNonNullableFields;
|
|
26098
26119
|
paymentRefunded?: PaymentRefundedNonNullableFields;
|
|
26099
26120
|
paymentRefundFailed?: PaymentRefundFailedNonNullableFields;
|
|
26121
|
+
refundedAsStoreCredit?: RefundedAsStoreCreditNonNullableFields;
|
|
26100
26122
|
type: ActivityType$1;
|
|
26101
26123
|
}
|
|
26102
26124
|
interface CreatedByNonNullableFields {
|
|
@@ -26990,6 +27012,7 @@ type index_d$8_RecordManuallyCollectedPaymentRequest = RecordManuallyCollectedPa
|
|
|
26990
27012
|
type index_d$8_RecordManuallyCollectedPaymentResponse = RecordManuallyCollectedPaymentResponse;
|
|
26991
27013
|
type index_d$8_RedirectUrls = RedirectUrls;
|
|
26992
27014
|
type index_d$8_RefundInitiated = RefundInitiated;
|
|
27015
|
+
type index_d$8_RefundedAsStoreCredit = RefundedAsStoreCredit;
|
|
26993
27016
|
type index_d$8_RefundedPayment = RefundedPayment;
|
|
26994
27017
|
type index_d$8_RefundedPaymentKindOneOf = RefundedPaymentKindOneOf;
|
|
26995
27018
|
type index_d$8_RegularPaymentRefund = RegularPaymentRefund;
|
|
@@ -27118,7 +27141,7 @@ declare const index_d$8_searchOrders: typeof searchOrders;
|
|
|
27118
27141
|
declare const index_d$8_updateOrder: typeof updateOrder;
|
|
27119
27142
|
declare const index_d$8_voidAuthorizedPayments: typeof voidAuthorizedPayments;
|
|
27120
27143
|
declare namespace index_d$8 {
|
|
27121
|
-
export { type ActionEvent$6 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type index_d$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type index_d$8_AddActivitiesRequest as AddActivitiesRequest, type index_d$8_AddActivitiesResponse as AddActivitiesResponse, type index_d$8_AddActivityRequest as AddActivityRequest, type index_d$8_AddActivityResponse as AddActivityResponse, type index_d$8_AddInternalActivityRequest as AddInternalActivityRequest, type index_d$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type index_d$8_AdditionalFeeDelta as AdditionalFeeDelta, type index_d$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$4 as Address, type index_d$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type index_d$8_AddressWithContact as AddressWithContact, type index_d$8_AggregateOrdersRequest as AggregateOrdersRequest, type index_d$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type index_d$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type index_d$8_AppliedDiscountDelta as AppliedDiscountDelta, type index_d$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$8_ArchiveOrderRequest as ArchiveOrderRequest, type index_d$8_ArchiveOrderResponse as ArchiveOrderResponse, index_d$8_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$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$8_Balance as Balance, type index_d$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type index_d$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$8_BulkOrderResult as BulkOrderResult, type index_d$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$8_BulkUpdateOrderTagsOptions as BulkUpdateOrderTagsOptions, type index_d$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type index_d$8_BulkUpdateOrderTagsResponseNonNullableFields as BulkUpdateOrderTagsResponseNonNullableFields, type index_d$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type index_d$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type index_d$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type index_d$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type index_d$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$8_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$8_CalculatedTax as CalculatedTax, type index_d$8_CalculatedTaxes as CalculatedTaxes, type index_d$8_Cancel as Cancel, type index_d$8_CancelOrderOptions as CancelOrderOptions, type index_d$8_CancelOrderRequest as CancelOrderRequest, type index_d$8_CancelOrderResponse as CancelOrderResponse, type index_d$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type index_d$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type index_d$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type index_d$8_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type index_d$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type index_d$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type index_d$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type index_d$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type index_d$8_ChargedBy as ChargedBy, type index_d$8_Color as Color, type index_d$8_CommitDeltasRequest as CommitDeltasRequest, type index_d$8_CommitDeltasResponse as CommitDeltasResponse, type index_d$8_CommittedDiffs as CommittedDiffs, type index_d$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type index_d$8_CommonAddress as CommonAddress, type index_d$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$8_Company as Company, type index_d$8_Complete as Complete, type index_d$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type index_d$8_CreateOrderRequest as CreateOrderRequest, type index_d$8_CreateOrderResponse as CreateOrderResponse, type index_d$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type index_d$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type index_d$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type index_d$8_CreatedBy as CreatedBy, type index_d$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type index_d$8_CursorSearch as CursorSearch, type index_d$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, index_d$8_CustomFieldGroup as CustomFieldGroup, type index_d$8_CustomFieldValue as CustomFieldValue, type index_d$8_Customer as Customer, type index_d$8_DecrementData as DecrementData, type index_d$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type index_d$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type index_d$8_DelayedCaptureSettings as DelayedCaptureSettings, type index_d$8_DeleteActivityRequest as DeleteActivityRequest, type index_d$8_DeleteActivityResponse as DeleteActivityResponse, type index_d$8_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type index_d$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, index_d$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type index_d$8_Deposit as Deposit, index_d$8_DepositType as DepositType, type index_d$8_DescriptionLine as DescriptionLine, type index_d$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$8_DescriptionLineName as DescriptionLineName, index_d$8_DescriptionLineType as DescriptionLineType, type index_d$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type index_d$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, index_d$8_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type index_d$8_DownloadLinkSent as DownloadLinkSent, type index_d$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type index_d$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type index_d$8_DraftOrderDiffs as DraftOrderDiffs, type index_d$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type index_d$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type index_d$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type index_d$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type index_d$8_Duration as Duration, index_d$8_DurationUnit as DurationUnit, type index_d$8_Email as Email, type index_d$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type index_d$8_ExternalUriMapping as ExternalUriMapping, type index_d$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type index_d$8_FullAddressContactDetails as FullAddressContactDetails, type index_d$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$8_GetOrderRequest as GetOrderRequest, type index_d$8_GetOrderResponse as GetOrderResponse, type index_d$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type index_d$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type index_d$8_GetShipmentsRequest as GetShipmentsRequest, type index_d$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type index_d$8_HtmlApplication as HtmlApplication, type index_d$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type index_d$8_InternalActivity as InternalActivity, type index_d$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type index_d$8_InternalDocument as InternalDocument, type index_d$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type index_d$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type index_d$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type index_d$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type index_d$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, index_d$8_InventoryAction as InventoryAction, type index_d$8_InventoryUpdateDetails as InventoryUpdateDetails, type index_d$8_InvoiceAdded as InvoiceAdded, type index_d$8_InvoiceDates as InvoiceDates, type index_d$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type index_d$8_InvoiceFields as InvoiceFields, type index_d$8_InvoiceSent as InvoiceSent, type index_d$8_InvoiceSentEvent as InvoiceSentEvent, index_d$8_InvoiceStatus as InvoiceStatus, type index_d$8_InvoicesPayment as InvoicesPayment, type index_d$8_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$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type index_d$8_LineItemAmount as LineItemAmount, type index_d$8_LineItemChanges as LineItemChanges, type index_d$8_LineItemDelta as LineItemDelta, type index_d$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type index_d$8_LineItemExchangeData as LineItemExchangeData, type index_d$8_LineItemMetaData as LineItemMetaData, type index_d$8_LineItemPriceChange as LineItemPriceChange, type index_d$8_LineItemQuantityChange as LineItemQuantityChange, index_d$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type index_d$8_LineItemTax as LineItemTax, type index_d$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$8_LineItemTaxInfo as LineItemTaxInfo, type index_d$8_LineItemUpdate as LineItemUpdate, type index_d$8_LineItems as LineItems, type index_d$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type index_d$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type index_d$8_Locale as Locale, type index_d$8_LocationAndQuantity as LocationAndQuantity, type index_d$8_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$8_ManagedDiscount as ManagedDiscount, type index_d$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type index_d$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type index_d$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type index_d$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type index_d$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type index_d$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type index_d$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type index_d$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type index_d$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type index_d$8_MaskedOrder as MaskedOrder, type index_d$8_MaskedOrderLineItem as MaskedOrderLineItem, type index_d$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type index_d$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type index_d$8_MetaData as MetaData, type index_d$8_MetaSite as MetaSite, type index_d$8_MetaTag as MetaTag, index_d$8_Namespace as Namespace, type index_d$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, index_d$8_OrderApprovalStrategy as OrderApprovalStrategy, type index_d$8_OrderApproved as OrderApproved, type index_d$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type index_d$8_OrderCanceled as OrderCanceled, type index_d$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type index_d$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type index_d$8_OrderChange as OrderChange, type index_d$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$8_OrderCreateNotifications as OrderCreateNotifications, type index_d$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type index_d$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$8_OrderCreationSettings as OrderCreationSettings, type index_d$8_OrderDeltasCommitted as OrderDeltasCommitted, type index_d$8_OrderFulfilled as OrderFulfilled, type index_d$8_OrderItemsRestocked as OrderItemsRestocked, type index_d$8_OrderLineItem as OrderLineItem, type index_d$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type index_d$8_OrderNonNullableFields as OrderNonNullableFields, type index_d$8_OrderNotFulfilled as OrderNotFulfilled, type index_d$8_OrderPaid as OrderPaid, type index_d$8_OrderPartiallyPaid as OrderPartiallyPaid, type index_d$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type index_d$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, index_d$8_OrderStatus as OrderStatus, type index_d$8_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type index_d$8_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type index_d$8_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type index_d$8_PaymentCapture as PaymentCapture, index_d$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$8_PaymentRefundFailed as PaymentRefundFailed, type index_d$8_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type index_d$8_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$8_Payments as Payments, type index_d$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type index_d$8_PickupReadyEmailSent as PickupReadyEmailSent, index_d$8_Placement as Placement, type index_d$8_PlainTextValue as PlainTextValue, type index_d$8_PlatformPaging as PlatformPaging, type index_d$8_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$8_PlatformQuery as PlatformQuery, type index_d$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d$8_PreparePaymentCollectionOptions as PreparePaymentCollectionOptions, type index_d$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type index_d$8_PreparePaymentCollectionResponseNonNullableFields as PreparePaymentCollectionResponseNonNullableFields, type index_d$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type index_d$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type index_d$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type index_d$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type index_d$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type index_d$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type index_d$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type index_d$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type index_d$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type index_d$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type index_d$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type index_d$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, index_d$8_PreviewEmailType as PreviewEmailType, type index_d$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type index_d$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type index_d$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type index_d$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type index_d$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type index_d$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type index_d$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type index_d$8_ProductName as ProductName, type index_d$8_PublicActivity as PublicActivity, type index_d$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type index_d$8_QueryOrderRequest as QueryOrderRequest, type index_d$8_QueryOrderResponse as QueryOrderResponse, type index_d$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type index_d$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type index_d$8_QuotesAddress as QuotesAddress, Reason$2 as Reason, type index_d$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type index_d$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type index_d$8_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type index_d$8_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$8_RefundedPayment as RefundedPayment, type index_d$8_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$8_RegularPaymentRefund as RegularPaymentRefund, type index_d$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type index_d$8_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$2 as ScheduledAction, type index_d$8_SearchOrdersOptions as SearchOrdersOptions, type index_d$8_SearchOrdersRequest as SearchOrdersRequest, type index_d$8_SearchOrdersResponse as SearchOrdersResponse, type index_d$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type index_d$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type index_d$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type index_d$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type index_d$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type index_d$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type index_d$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type index_d$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type index_d$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type index_d$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type index_d$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type index_d$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type index_d$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type index_d$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type index_d$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type index_d$8_SendRefundEmailRequest as SendRefundEmailRequest, type index_d$8_SendRefundEmailResponse as SendRefundEmailResponse, type index_d$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type index_d$8_ShippingAddressEdited as ShippingAddressEdited, type index_d$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type index_d$8_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$2 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, index_d$8_SourceType as SourceType, type index_d$8_StandardDetails as StandardDetails, index_d$8_State as State, type StreetAddress$3 as StreetAddress, type index_d$8_Subdivision as Subdivision, index_d$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type index_d$8_TagList as TagList, type index_d$8_Tags as Tags, type index_d$8_Task as Task, type index_d$8_TaskAction as TaskAction, type index_d$8_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type index_d$8_TaxableAddress as TaxableAddress, type index_d$8_TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOf, index_d$8_TaxableAddressType as TaxableAddressType, type index_d$8_TotalPrice as TotalPrice, type index_d$8_TotalPriceChange as TotalPriceChange, type index_d$8_TrackingLinkAdded as TrackingLinkAdded, type index_d$8_TrackingNumberAdded as TrackingNumberAdded, type index_d$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type index_d$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type index_d$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type index_d$8_TriggerReindexRequest as TriggerReindexRequest, type index_d$8_TriggerReindexResponse as TriggerReindexResponse, type index_d$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type index_d$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type index_d$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type index_d$8_UpdateActivityRequest as UpdateActivityRequest, type index_d$8_UpdateActivityResponse as UpdateActivityResponse, type index_d$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type index_d$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type index_d$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type index_d$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type index_d$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type index_d$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type index_d$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type index_d$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type index_d$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type index_d$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type index_d$8_UpdateOrder as UpdateOrder, type index_d$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type index_d$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type index_d$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type index_d$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type index_d$8_UpdateOrderRequest as UpdateOrderRequest, type index_d$8_UpdateOrderResponse as UpdateOrderResponse, type index_d$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type index_d$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type index_d$8_UpsertRefundRequest as UpsertRefundRequest, type index_d$8_UpsertRefundResponse as UpsertRefundResponse, type index_d$8_UserDataResponse as UserDataResponse, type index_d$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type index_d$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type index_d$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type index_d$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type index_d$8_V1LineItemDelta as V1LineItemDelta, type index_d$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type index_d$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$8_V1RestockItem as V1RestockItem, type index_d$8_V1ScheduledAction as V1ScheduledAction, type index_d$8_V1ShippingInformation as V1ShippingInformation, type index_d$8_Value as Value, index_d$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type index_d$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type index_d$8_VersionedDocumentId as VersionedDocumentId, type index_d$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, index_d$8_VersioningMode as VersioningMode, type index_d$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type index_d$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type index_d$8_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type index_d$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type index_d$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type index_d$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type index_d$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, type index_d$8__publicOnOrderUpdatedType as _publicOnOrderUpdatedType, index_d$8_bulkUpdateOrderTags as bulkUpdateOrderTags, index_d$8_bulkUpdateOrders as bulkUpdateOrders, index_d$8_cancelOrder as cancelOrder, index_d$8_captureAuthorizedPayments as captureAuthorizedPayments, index_d$8_createOrder as createOrder, index_d$8_getOrder as getOrder, index_d$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, index_d$8_onOrderApproved as onOrderApproved, index_d$8_onOrderCanceled as onOrderCanceled, index_d$8_onOrderCreated as onOrderCreated, index_d$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, index_d$8_onOrderUpdated as onOrderUpdated, index_d$8_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$8_searchOrders as searchOrders, index_d$8_updateOrder as updateOrder, index_d$8_voidAuthorizedPayments as voidAuthorizedPayments };
|
|
27144
|
+
export { type ActionEvent$6 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type index_d$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type index_d$8_AddActivitiesRequest as AddActivitiesRequest, type index_d$8_AddActivitiesResponse as AddActivitiesResponse, type index_d$8_AddActivityRequest as AddActivityRequest, type index_d$8_AddActivityResponse as AddActivityResponse, type index_d$8_AddInternalActivityRequest as AddInternalActivityRequest, type index_d$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type index_d$8_AdditionalFeeDelta as AdditionalFeeDelta, type index_d$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$4 as Address, type index_d$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type index_d$8_AddressWithContact as AddressWithContact, type index_d$8_AggregateOrdersRequest as AggregateOrdersRequest, type index_d$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type index_d$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type index_d$8_AppliedDiscountDelta as AppliedDiscountDelta, type index_d$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$8_ArchiveOrderRequest as ArchiveOrderRequest, type index_d$8_ArchiveOrderResponse as ArchiveOrderResponse, index_d$8_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$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$8_Balance as Balance, type index_d$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type index_d$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$8_BulkOrderResult as BulkOrderResult, type index_d$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$8_BulkUpdateOrderTagsOptions as BulkUpdateOrderTagsOptions, type index_d$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type index_d$8_BulkUpdateOrderTagsResponseNonNullableFields as BulkUpdateOrderTagsResponseNonNullableFields, type index_d$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type index_d$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type index_d$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type index_d$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type index_d$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$8_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$8_CalculatedTax as CalculatedTax, type index_d$8_CalculatedTaxes as CalculatedTaxes, type index_d$8_Cancel as Cancel, type index_d$8_CancelOrderOptions as CancelOrderOptions, type index_d$8_CancelOrderRequest as CancelOrderRequest, type index_d$8_CancelOrderResponse as CancelOrderResponse, type index_d$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type index_d$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type index_d$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type index_d$8_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type index_d$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type index_d$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type index_d$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type index_d$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type index_d$8_ChargedBy as ChargedBy, type index_d$8_Color as Color, type index_d$8_CommitDeltasRequest as CommitDeltasRequest, type index_d$8_CommitDeltasResponse as CommitDeltasResponse, type index_d$8_CommittedDiffs as CommittedDiffs, type index_d$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type index_d$8_CommonAddress as CommonAddress, type index_d$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$8_Company as Company, type index_d$8_Complete as Complete, type index_d$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type index_d$8_CreateOrderRequest as CreateOrderRequest, type index_d$8_CreateOrderResponse as CreateOrderResponse, type index_d$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type index_d$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type index_d$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type index_d$8_CreatedBy as CreatedBy, type index_d$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type index_d$8_CursorSearch as CursorSearch, type index_d$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, index_d$8_CustomFieldGroup as CustomFieldGroup, type index_d$8_CustomFieldValue as CustomFieldValue, type index_d$8_Customer as Customer, type index_d$8_DecrementData as DecrementData, type index_d$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type index_d$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type index_d$8_DelayedCaptureSettings as DelayedCaptureSettings, type index_d$8_DeleteActivityRequest as DeleteActivityRequest, type index_d$8_DeleteActivityResponse as DeleteActivityResponse, type index_d$8_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type index_d$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, index_d$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type index_d$8_Deposit as Deposit, index_d$8_DepositType as DepositType, type index_d$8_DescriptionLine as DescriptionLine, type index_d$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$8_DescriptionLineName as DescriptionLineName, index_d$8_DescriptionLineType as DescriptionLineType, type index_d$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type index_d$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, index_d$8_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type index_d$8_DownloadLinkSent as DownloadLinkSent, type index_d$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type index_d$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type index_d$8_DraftOrderDiffs as DraftOrderDiffs, type index_d$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type index_d$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type index_d$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type index_d$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type index_d$8_Duration as Duration, index_d$8_DurationUnit as DurationUnit, type index_d$8_Email as Email, type index_d$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type index_d$8_ExternalUriMapping as ExternalUriMapping, type index_d$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type index_d$8_FullAddressContactDetails as FullAddressContactDetails, type index_d$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$8_GetOrderRequest as GetOrderRequest, type index_d$8_GetOrderResponse as GetOrderResponse, type index_d$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type index_d$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type index_d$8_GetShipmentsRequest as GetShipmentsRequest, type index_d$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type index_d$8_HtmlApplication as HtmlApplication, type index_d$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type index_d$8_InternalActivity as InternalActivity, type index_d$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type index_d$8_InternalDocument as InternalDocument, type index_d$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type index_d$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type index_d$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type index_d$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type index_d$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, index_d$8_InventoryAction as InventoryAction, type index_d$8_InventoryUpdateDetails as InventoryUpdateDetails, type index_d$8_InvoiceAdded as InvoiceAdded, type index_d$8_InvoiceDates as InvoiceDates, type index_d$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type index_d$8_InvoiceFields as InvoiceFields, type index_d$8_InvoiceSent as InvoiceSent, type index_d$8_InvoiceSentEvent as InvoiceSentEvent, index_d$8_InvoiceStatus as InvoiceStatus, type index_d$8_InvoicesPayment as InvoicesPayment, type index_d$8_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$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type index_d$8_LineItemAmount as LineItemAmount, type index_d$8_LineItemChanges as LineItemChanges, type index_d$8_LineItemDelta as LineItemDelta, type index_d$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type index_d$8_LineItemExchangeData as LineItemExchangeData, type index_d$8_LineItemMetaData as LineItemMetaData, type index_d$8_LineItemPriceChange as LineItemPriceChange, type index_d$8_LineItemQuantityChange as LineItemQuantityChange, index_d$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type index_d$8_LineItemTax as LineItemTax, type index_d$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$8_LineItemTaxInfo as LineItemTaxInfo, type index_d$8_LineItemUpdate as LineItemUpdate, type index_d$8_LineItems as LineItems, type index_d$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type index_d$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type index_d$8_Locale as Locale, type index_d$8_LocationAndQuantity as LocationAndQuantity, type index_d$8_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$8_ManagedDiscount as ManagedDiscount, type index_d$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type index_d$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type index_d$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type index_d$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type index_d$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type index_d$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type index_d$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type index_d$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type index_d$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type index_d$8_MaskedOrder as MaskedOrder, type index_d$8_MaskedOrderLineItem as MaskedOrderLineItem, type index_d$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type index_d$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type index_d$8_MetaData as MetaData, type index_d$8_MetaSite as MetaSite, type index_d$8_MetaTag as MetaTag, index_d$8_Namespace as Namespace, type index_d$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, index_d$8_OrderApprovalStrategy as OrderApprovalStrategy, type index_d$8_OrderApproved as OrderApproved, type index_d$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type index_d$8_OrderCanceled as OrderCanceled, type index_d$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type index_d$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type index_d$8_OrderChange as OrderChange, type index_d$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$8_OrderCreateNotifications as OrderCreateNotifications, type index_d$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type index_d$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$8_OrderCreationSettings as OrderCreationSettings, type index_d$8_OrderDeltasCommitted as OrderDeltasCommitted, type index_d$8_OrderFulfilled as OrderFulfilled, type index_d$8_OrderItemsRestocked as OrderItemsRestocked, type index_d$8_OrderLineItem as OrderLineItem, type index_d$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type index_d$8_OrderNonNullableFields as OrderNonNullableFields, type index_d$8_OrderNotFulfilled as OrderNotFulfilled, type index_d$8_OrderPaid as OrderPaid, type index_d$8_OrderPartiallyPaid as OrderPartiallyPaid, type index_d$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type index_d$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, index_d$8_OrderStatus as OrderStatus, type index_d$8_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type index_d$8_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type index_d$8_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type index_d$8_PaymentCapture as PaymentCapture, index_d$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$8_PaymentRefundFailed as PaymentRefundFailed, type index_d$8_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type index_d$8_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$8_Payments as Payments, type index_d$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type index_d$8_PickupReadyEmailSent as PickupReadyEmailSent, index_d$8_Placement as Placement, type index_d$8_PlainTextValue as PlainTextValue, type index_d$8_PlatformPaging as PlatformPaging, type index_d$8_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$8_PlatformQuery as PlatformQuery, type index_d$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d$8_PreparePaymentCollectionOptions as PreparePaymentCollectionOptions, type index_d$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type index_d$8_PreparePaymentCollectionResponseNonNullableFields as PreparePaymentCollectionResponseNonNullableFields, type index_d$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type index_d$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type index_d$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type index_d$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type index_d$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type index_d$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type index_d$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type index_d$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type index_d$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type index_d$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type index_d$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type index_d$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, index_d$8_PreviewEmailType as PreviewEmailType, type index_d$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type index_d$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type index_d$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type index_d$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type index_d$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type index_d$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type index_d$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type index_d$8_ProductName as ProductName, type index_d$8_PublicActivity as PublicActivity, type index_d$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type index_d$8_QueryOrderRequest as QueryOrderRequest, type index_d$8_QueryOrderResponse as QueryOrderResponse, type index_d$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type index_d$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type index_d$8_QuotesAddress as QuotesAddress, Reason$2 as Reason, type index_d$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type index_d$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type index_d$8_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type index_d$8_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$8_RefundedAsStoreCredit as RefundedAsStoreCredit, type index_d$8_RefundedPayment as RefundedPayment, type index_d$8_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$8_RegularPaymentRefund as RegularPaymentRefund, type index_d$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type index_d$8_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$2 as ScheduledAction, type index_d$8_SearchOrdersOptions as SearchOrdersOptions, type index_d$8_SearchOrdersRequest as SearchOrdersRequest, type index_d$8_SearchOrdersResponse as SearchOrdersResponse, type index_d$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type index_d$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type index_d$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type index_d$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type index_d$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type index_d$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type index_d$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type index_d$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type index_d$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type index_d$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type index_d$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type index_d$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type index_d$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type index_d$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type index_d$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type index_d$8_SendRefundEmailRequest as SendRefundEmailRequest, type index_d$8_SendRefundEmailResponse as SendRefundEmailResponse, type index_d$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type index_d$8_ShippingAddressEdited as ShippingAddressEdited, type index_d$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type index_d$8_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$2 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, index_d$8_SourceType as SourceType, type index_d$8_StandardDetails as StandardDetails, index_d$8_State as State, type StreetAddress$3 as StreetAddress, type index_d$8_Subdivision as Subdivision, index_d$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type index_d$8_TagList as TagList, type index_d$8_Tags as Tags, type index_d$8_Task as Task, type index_d$8_TaskAction as TaskAction, type index_d$8_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type index_d$8_TaxableAddress as TaxableAddress, type index_d$8_TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOf, index_d$8_TaxableAddressType as TaxableAddressType, type index_d$8_TotalPrice as TotalPrice, type index_d$8_TotalPriceChange as TotalPriceChange, type index_d$8_TrackingLinkAdded as TrackingLinkAdded, type index_d$8_TrackingNumberAdded as TrackingNumberAdded, type index_d$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type index_d$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type index_d$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type index_d$8_TriggerReindexRequest as TriggerReindexRequest, type index_d$8_TriggerReindexResponse as TriggerReindexResponse, type index_d$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type index_d$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type index_d$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type index_d$8_UpdateActivityRequest as UpdateActivityRequest, type index_d$8_UpdateActivityResponse as UpdateActivityResponse, type index_d$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type index_d$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type index_d$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type index_d$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type index_d$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type index_d$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type index_d$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type index_d$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type index_d$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type index_d$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type index_d$8_UpdateOrder as UpdateOrder, type index_d$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type index_d$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type index_d$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type index_d$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type index_d$8_UpdateOrderRequest as UpdateOrderRequest, type index_d$8_UpdateOrderResponse as UpdateOrderResponse, type index_d$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type index_d$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type index_d$8_UpsertRefundRequest as UpsertRefundRequest, type index_d$8_UpsertRefundResponse as UpsertRefundResponse, type index_d$8_UserDataResponse as UserDataResponse, type index_d$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type index_d$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type index_d$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type index_d$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type index_d$8_V1LineItemDelta as V1LineItemDelta, type index_d$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type index_d$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$8_V1RestockItem as V1RestockItem, type index_d$8_V1ScheduledAction as V1ScheduledAction, type index_d$8_V1ShippingInformation as V1ShippingInformation, type index_d$8_Value as Value, index_d$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type index_d$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type index_d$8_VersionedDocumentId as VersionedDocumentId, type index_d$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, index_d$8_VersioningMode as VersioningMode, type index_d$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type index_d$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type index_d$8_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type index_d$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type index_d$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type index_d$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type index_d$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, type index_d$8__publicOnOrderUpdatedType as _publicOnOrderUpdatedType, index_d$8_bulkUpdateOrderTags as bulkUpdateOrderTags, index_d$8_bulkUpdateOrders as bulkUpdateOrders, index_d$8_cancelOrder as cancelOrder, index_d$8_captureAuthorizedPayments as captureAuthorizedPayments, index_d$8_createOrder as createOrder, index_d$8_getOrder as getOrder, index_d$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, index_d$8_onOrderApproved as onOrderApproved, index_d$8_onOrderCanceled as onOrderCanceled, index_d$8_onOrderCreated as onOrderCreated, index_d$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, index_d$8_onOrderUpdated as onOrderUpdated, index_d$8_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$8_searchOrders as searchOrders, index_d$8_updateOrder as updateOrder, index_d$8_voidAuthorizedPayments as voidAuthorizedPayments };
|
|
27122
27145
|
}
|
|
27123
27146
|
|
|
27124
27147
|
interface OrderPaymentRequest {
|
|
@@ -19534,7 +19534,8 @@ declare enum ActivityType$3 {
|
|
|
19534
19534
|
AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
|
|
19535
19535
|
REFUND_INITIATED = "REFUND_INITIATED",
|
|
19536
19536
|
PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
|
|
19537
|
-
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
|
|
19537
|
+
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
|
|
19538
|
+
REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
|
|
19538
19539
|
}
|
|
19539
19540
|
declare enum AttributionSource$3 {
|
|
19540
19541
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -20240,6 +20241,9 @@ interface PaymentRefundFailedNonNullableFields$3 {
|
|
|
20240
20241
|
refundId: string;
|
|
20241
20242
|
payment?: RefundedPaymentNonNullableFields$3;
|
|
20242
20243
|
}
|
|
20244
|
+
interface RefundedAsStoreCreditNonNullableFields$3 {
|
|
20245
|
+
amount?: PriceNonNullableFields$7;
|
|
20246
|
+
}
|
|
20243
20247
|
interface ActivityNonNullableFields$3 {
|
|
20244
20248
|
customActivity?: CustomActivityNonNullableFields$3;
|
|
20245
20249
|
merchantComment?: MerchantCommentNonNullableFields$3;
|
|
@@ -20254,6 +20258,7 @@ interface ActivityNonNullableFields$3 {
|
|
|
20254
20258
|
refundInitiated?: RefundInitiatedNonNullableFields$3;
|
|
20255
20259
|
paymentRefunded?: PaymentRefundedNonNullableFields$3;
|
|
20256
20260
|
paymentRefundFailed?: PaymentRefundFailedNonNullableFields$3;
|
|
20261
|
+
refundedAsStoreCredit?: RefundedAsStoreCreditNonNullableFields$3;
|
|
20257
20262
|
type: ActivityType$3;
|
|
20258
20263
|
}
|
|
20259
20264
|
interface V1CreatedByNonNullableFields$1 {
|
|
@@ -22035,7 +22040,8 @@ declare enum ActivityType$2 {
|
|
|
22035
22040
|
AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
|
|
22036
22041
|
REFUND_INITIATED = "REFUND_INITIATED",
|
|
22037
22042
|
PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
|
|
22038
|
-
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
|
|
22043
|
+
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
|
|
22044
|
+
REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
|
|
22039
22045
|
}
|
|
22040
22046
|
declare enum AttributionSource$2 {
|
|
22041
22047
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -22735,6 +22741,9 @@ interface PaymentRefundFailedNonNullableFields$2 {
|
|
|
22735
22741
|
refundId: string;
|
|
22736
22742
|
payment?: RefundedPaymentNonNullableFields$2;
|
|
22737
22743
|
}
|
|
22744
|
+
interface RefundedAsStoreCreditNonNullableFields$2 {
|
|
22745
|
+
amount?: PriceNonNullableFields$6;
|
|
22746
|
+
}
|
|
22738
22747
|
interface ActivityNonNullableFields$2 {
|
|
22739
22748
|
customActivity?: CustomActivityNonNullableFields$2;
|
|
22740
22749
|
merchantComment?: MerchantCommentNonNullableFields$2;
|
|
@@ -22749,6 +22758,7 @@ interface ActivityNonNullableFields$2 {
|
|
|
22749
22758
|
refundInitiated?: RefundInitiatedNonNullableFields$2;
|
|
22750
22759
|
paymentRefunded?: PaymentRefundedNonNullableFields$2;
|
|
22751
22760
|
paymentRefundFailed?: PaymentRefundFailedNonNullableFields$2;
|
|
22761
|
+
refundedAsStoreCredit?: RefundedAsStoreCreditNonNullableFields$2;
|
|
22752
22762
|
type: ActivityType$2;
|
|
22753
22763
|
}
|
|
22754
22764
|
interface V1CreatedByNonNullableFields {
|
|
@@ -25197,7 +25207,8 @@ declare enum ActivityType$1 {
|
|
|
25197
25207
|
AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
|
|
25198
25208
|
REFUND_INITIATED = "REFUND_INITIATED",
|
|
25199
25209
|
PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
|
|
25200
|
-
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
|
|
25210
|
+
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
|
|
25211
|
+
REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
|
|
25201
25212
|
}
|
|
25202
25213
|
declare enum AttributionSource$1 {
|
|
25203
25214
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -26368,6 +26379,9 @@ interface PaymentRefundFailedNonNullableFields$1 {
|
|
|
26368
26379
|
refundId: string;
|
|
26369
26380
|
payment?: RefundedPaymentNonNullableFields$1;
|
|
26370
26381
|
}
|
|
26382
|
+
interface RefundedAsStoreCreditNonNullableFields$1 {
|
|
26383
|
+
amount?: PriceNonNullableFields$5;
|
|
26384
|
+
}
|
|
26371
26385
|
interface ActivityNonNullableFields$1 {
|
|
26372
26386
|
customActivity?: CustomActivityNonNullableFields$1;
|
|
26373
26387
|
merchantComment?: MerchantCommentNonNullableFields$1;
|
|
@@ -26382,6 +26396,7 @@ interface ActivityNonNullableFields$1 {
|
|
|
26382
26396
|
refundInitiated?: RefundInitiatedNonNullableFields$1;
|
|
26383
26397
|
paymentRefunded?: PaymentRefundedNonNullableFields$1;
|
|
26384
26398
|
paymentRefundFailed?: PaymentRefundFailedNonNullableFields$1;
|
|
26399
|
+
refundedAsStoreCredit?: RefundedAsStoreCreditNonNullableFields$1;
|
|
26385
26400
|
type: ActivityType$1;
|
|
26386
26401
|
}
|
|
26387
26402
|
interface CreatedByNonNullableFields$1 {
|
|
@@ -27434,7 +27449,8 @@ declare enum ActivityType {
|
|
|
27434
27449
|
AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
|
|
27435
27450
|
REFUND_INITIATED = "REFUND_INITIATED",
|
|
27436
27451
|
PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
|
|
27437
|
-
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
|
|
27452
|
+
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
|
|
27453
|
+
REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
|
|
27438
27454
|
}
|
|
27439
27455
|
declare enum AttributionSource {
|
|
27440
27456
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -28599,6 +28615,9 @@ interface PaymentRefundFailedNonNullableFields {
|
|
|
28599
28615
|
refundId: string;
|
|
28600
28616
|
payment?: RefundedPaymentNonNullableFields;
|
|
28601
28617
|
}
|
|
28618
|
+
interface RefundedAsStoreCreditNonNullableFields {
|
|
28619
|
+
amount?: PriceNonNullableFields$4;
|
|
28620
|
+
}
|
|
28602
28621
|
interface ActivityNonNullableFields {
|
|
28603
28622
|
customActivity?: CustomActivityNonNullableFields;
|
|
28604
28623
|
merchantComment?: MerchantCommentNonNullableFields;
|
|
@@ -28613,6 +28632,7 @@ interface ActivityNonNullableFields {
|
|
|
28613
28632
|
refundInitiated?: RefundInitiatedNonNullableFields;
|
|
28614
28633
|
paymentRefunded?: PaymentRefundedNonNullableFields;
|
|
28615
28634
|
paymentRefundFailed?: PaymentRefundFailedNonNullableFields;
|
|
28635
|
+
refundedAsStoreCredit?: RefundedAsStoreCreditNonNullableFields;
|
|
28616
28636
|
type: ActivityType;
|
|
28617
28637
|
}
|
|
28618
28638
|
interface CreatedByNonNullableFields {
|
|
@@ -2926,6 +2926,12 @@ interface PaymentRefundFailed {
|
|
|
2926
2926
|
/** Details about the failed payment refund. */
|
|
2927
2927
|
payment?: RefundedPayment;
|
|
2928
2928
|
}
|
|
2929
|
+
interface RefundedAsStoreCredit {
|
|
2930
|
+
/** Refund amount */
|
|
2931
|
+
amount?: Price;
|
|
2932
|
+
/** Reason for refund */
|
|
2933
|
+
reason?: string | null;
|
|
2934
|
+
}
|
|
2929
2935
|
declare enum ActivityType {
|
|
2930
2936
|
ORDER_REFUNDED = "ORDER_REFUNDED",
|
|
2931
2937
|
ORDER_PLACED = "ORDER_PLACED",
|
|
@@ -2957,7 +2963,8 @@ declare enum ActivityType {
|
|
|
2957
2963
|
AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
|
|
2958
2964
|
REFUND_INITIATED = "REFUND_INITIATED",
|
|
2959
2965
|
PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
|
|
2960
|
-
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
|
|
2966
|
+
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
|
|
2967
|
+
REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
|
|
2961
2968
|
}
|
|
2962
2969
|
declare enum AttributionSource {
|
|
2963
2970
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -4606,6 +4613,7 @@ type context$1_PriceDescription = PriceDescription;
|
|
|
4606
4613
|
type context$1_RateType = RateType;
|
|
4607
4614
|
declare const context$1_RateType: typeof RateType;
|
|
4608
4615
|
type context$1_RefundInitiated = RefundInitiated;
|
|
4616
|
+
type context$1_RefundedAsStoreCredit = RefundedAsStoreCredit;
|
|
4609
4617
|
type context$1_RefundedPayment = RefundedPayment;
|
|
4610
4618
|
type context$1_RefundedPaymentKindOneOf = RefundedPaymentKindOneOf;
|
|
4611
4619
|
type context$1_RegularPaymentRefund = RegularPaymentRefund;
|
|
@@ -4663,7 +4671,7 @@ type context$1_V1SubscriptionSettings = V1SubscriptionSettings;
|
|
|
4663
4671
|
type context$1_V1TaxSummary = V1TaxSummary;
|
|
4664
4672
|
type context$1_ValidationError = ValidationError;
|
|
4665
4673
|
declare namespace context$1 {
|
|
4666
|
-
export { type context$1_Activity as Activity, type context$1_ActivityContentOneOf as ActivityContentOneOf, context$1_ActivityType as ActivityType, type context$1_AdditionalFee as AdditionalFee, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type context$1_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type context$1_ApiAddressWithContact as ApiAddressWithContact, type context$1_ApplicationError as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, context$1_AppliedDiscountDiscountType as AppliedDiscountDiscountType, context$1_AttributionSource as AttributionSource, type context$1_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$1_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$1_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$1_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type context$1_Balance as Balance, type context$1_BalanceSummary as BalanceSummary, type context$1_BuyerInfo as BuyerInfo, type context$1_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$1_CalculationErrors as CalculationErrors, type context$1_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type context$1_CarrierError as CarrierError, type context$1_CarrierErrors as CarrierErrors, type context$1_CarrierServiceOption as CarrierServiceOption, type context$1_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$1 as CatalogReference, type context$1_ChannelInfo as ChannelInfo, context$1_ChannelType as ChannelType, context$1_ChargeType as ChargeType, type context$1_Checkout as Checkout, type context$1_Color as Color, type Context$1 as Context, type context$1_ConversionInfo as ConversionInfo, type Coupon$1 as Coupon, type context$1_CreatedBy as CreatedBy, type context$1_CreatedByIdOneOf as CreatedByIdOneOf, type context$1_CustomActivity as CustomActivity, type context$1_CustomContentReference as CustomContentReference, type CustomField$1 as CustomField, type context$1_CustomSettings as CustomSettings, type context$1_DeliveryLogistics as DeliveryLogistics, type context$1_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type context$1_DeliveryTimeSlot as DeliveryTimeSlot, type Description$1 as Description, type context$1_DescriptionLine as DescriptionLine, type context$1_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$1_DescriptionLineName as DescriptionLineName, context$1_DescriptionLineType as DescriptionLineType, type context$1_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type context$1_Details as Details, type context$1_DetailsKindOneOf as DetailsKindOneOf, type context$1_DigitalFile as DigitalFile, context$1_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type context$1_DraftOrderChangesApplied as DraftOrderChangesApplied, type ExtendedFields$1 as ExtendedFields, type ExternalReference$1 as ExternalReference, context$1_FallbackReason as FallbackReason, type context$1_FieldViolation as FieldViolation, context$1_FileType as FileType, context$1_FulfillmentStatus as FulfillmentStatus, type context$1_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$1_GetPaymentSettingsForCheckoutRequest as GetPaymentSettingsForCheckoutRequest, type context$1_GetPaymentSettingsForCheckoutResponse as GetPaymentSettingsForCheckoutResponse, type context$1_GetPaymentSettingsRequest as GetPaymentSettingsRequest, type context$1_GetPaymentSettingsResponse as GetPaymentSettingsResponse, type GiftCard$1 as GiftCard, type context$1_Group as Group, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type context$1_InvalidMembership as InvalidMembership, type context$1_ItemAvailabilityInfo as ItemAvailabilityInfo, context$1_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type LineItem$1 as LineItem, type context$1_LineItemAmount as LineItemAmount, type context$1_LineItemChanges as LineItemChanges, type context$1_LineItemDiscount as LineItemDiscount, type context$1_LineItemExchangeData as LineItemExchangeData, type context$1_LineItemPriceChange as LineItemPriceChange, type context$1_LineItemQuantityChange as LineItemQuantityChange, context$1_LineItemQuantityChangeType as LineItemQuantityChangeType, type context$1_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$1_LineItemTaxInfo as LineItemTaxInfo, type context$1_LocationAndQuantity as LocationAndQuantity, type context$1_ManagedAdditionalFee as ManagedAdditionalFee, type context$1_ManagedDiscount as ManagedDiscount, type context$1_ManagedLineItem as ManagedLineItem, context$1_ManualCalculationReason as ManualCalculationReason, type context$1_Membership as Membership, type context$1_MembershipName as MembershipName, type context$1_MembershipOptions as MembershipOptions, type context$1_MembershipPaymentCredits as MembershipPaymentCredits, type context$1_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$1_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MultiCurrencyPrice$1 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type context$1_NewExchangeOrderCreated as NewExchangeOrderCreated, type context$1_Order as Order, type context$1_OrderChange as OrderChange, type context$1_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$1_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$1_OrderLineItem as OrderLineItem, type context$1_OrderRefunded as OrderRefunded, context$1_OrderStatus as OrderStatus, type context$1_OrderTaxBreakdown as OrderTaxBreakdown, type context$1_OrderTaxInfo as OrderTaxInfo, type Other$1 as Other, type context$1_OtherCharge as OtherCharge, context$1_PaymentOption as PaymentOption, context$1_PaymentOptionType as PaymentOptionType, type context$1_PaymentRefundFailed as PaymentRefundFailed, type context$1_PaymentRefunded as PaymentRefunded, type context$1_PaymentSettings as PaymentSettings, type context$1_PaymentSettingsSPIConfig as PaymentSettingsSPIConfig, context$1_PaymentStatus as PaymentStatus, type PhysicalProperties$1 as PhysicalProperties, type context$1_PickupAddress as PickupAddress, type context$1_PickupDetails as PickupDetails, context$1_PickupDetailsPickupMethod as PickupDetailsPickupMethod, context$1_PickupMethod as PickupMethod, type context$1_PlainTextValue as PlainTextValue, type context$1_Price as Price, type context$1_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, context$1_RateType as RateType, type context$1_RefundInitiated as RefundInitiated, type context$1_RefundedPayment as RefundedPayment, type context$1_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type context$1_RegularPaymentRefund as RegularPaymentRefund, context$1_RuleType as RuleType, type context$1_SavedPaymentMethod as SavedPaymentMethod, type context$1_Scope as Scope, type context$1_SecuredMedia as SecuredMedia, type SelectedCarrierServiceOption$1 as SelectedCarrierServiceOption, type context$1_SelectedCarrierServiceOptionOtherCharge as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$1 as SelectedCarrierServiceOptionPrices, type context$1_SelectedMembership as SelectedMembership, type context$1_SelectedMemberships as SelectedMemberships, type context$1_ServiceProperties as ServiceProperties, Severity$1 as Severity, type ShippingInfo$1 as ShippingInfo, type context$1_ShippingInformation as ShippingInformation, type context$1_ShippingInformationChange as ShippingInformationChange, type context$1_ShippingOption as ShippingOption, type context$1_ShippingPrice as ShippingPrice, type context$1_ShippingRegion as ShippingRegion, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$1 as SubscriptionFrequency, type context$1_SubscriptionInfo as SubscriptionInfo, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type context$1_SystemError as SystemError, type context$1_TagList as TagList, type context$1_Tags as Tags, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type context$1_TaxCalculationDetails as TaxCalculationDetails, type context$1_TaxCalculationDetailsCalculationDetailsOneOf as TaxCalculationDetailsCalculationDetailsOneOf, type context$1_TaxRateBreakdown as TaxRateBreakdown, type context$1_TaxSummary as TaxSummary, type context$1_TaxableAddress as TaxableAddress, type context$1_TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOf, context$1_TaxableAddressType as TaxableAddressType, type Title$1 as Title, type context$1_TotalPriceChange as TotalPriceChange, type context$1_TranslatedValue as TranslatedValue, type context$1_V1AdditionalFee as V1AdditionalFee, type context$1_V1AppliedDiscount as V1AppliedDiscount, type context$1_V1AppliedDiscountDiscountSourceOneOf as V1AppliedDiscountDiscountSourceOneOf, type context$1_V1BuyerInfo as V1BuyerInfo, type context$1_V1BuyerInfoIdOneOf as V1BuyerInfoIdOneOf, type context$1_V1Coupon as V1Coupon, type context$1_V1CreatedBy as V1CreatedBy, type context$1_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type context$1_V1DeliveryLogistics as V1DeliveryLogistics, type context$1_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type context$1_V1DiscountRule as V1DiscountRule, type context$1_V1DiscountRuleName as V1DiscountRuleName, type context$1_V1ItemTaxFullDetails as V1ItemTaxFullDetails, context$1_V1JurisdictionType as V1JurisdictionType, type context$1_V1LineItemDiscount as V1LineItemDiscount, type context$1_V1MerchantDiscount as V1MerchantDiscount, type context$1_V1PickupDetails as V1PickupDetails, type context$1_V1PriceSummary as V1PriceSummary, type context$1_V1ShippingInformation as V1ShippingInformation, type context$1_V1ShippingPrice as V1ShippingPrice, type context$1_V1ShippingRegion as V1ShippingRegion, type context$1_V1SubscriptionSettings as V1SubscriptionSettings, type context$1_V1TaxSummary as V1TaxSummary, type context$1_ValidationError as ValidationError, type VatId$1 as VatId, VatType$1 as VatType, type Violation$1 as Violation, WeightUnit$1 as WeightUnit, type _publicProvideHandlersType$1 as _publicProvideHandlersType, provideHandlers$2 as provideHandlers, provideHandlers$3 as publicProvideHandlers };
|
|
4674
|
+
export { type context$1_Activity as Activity, type context$1_ActivityContentOneOf as ActivityContentOneOf, context$1_ActivityType as ActivityType, type context$1_AdditionalFee as AdditionalFee, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type context$1_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type context$1_ApiAddressWithContact as ApiAddressWithContact, type context$1_ApplicationError as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, context$1_AppliedDiscountDiscountType as AppliedDiscountDiscountType, context$1_AttributionSource as AttributionSource, type context$1_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$1_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$1_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$1_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type context$1_Balance as Balance, type context$1_BalanceSummary as BalanceSummary, type context$1_BuyerInfo as BuyerInfo, type context$1_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$1_CalculationErrors as CalculationErrors, type context$1_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type context$1_CarrierError as CarrierError, type context$1_CarrierErrors as CarrierErrors, type context$1_CarrierServiceOption as CarrierServiceOption, type context$1_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$1 as CatalogReference, type context$1_ChannelInfo as ChannelInfo, context$1_ChannelType as ChannelType, context$1_ChargeType as ChargeType, type context$1_Checkout as Checkout, type context$1_Color as Color, type Context$1 as Context, type context$1_ConversionInfo as ConversionInfo, type Coupon$1 as Coupon, type context$1_CreatedBy as CreatedBy, type context$1_CreatedByIdOneOf as CreatedByIdOneOf, type context$1_CustomActivity as CustomActivity, type context$1_CustomContentReference as CustomContentReference, type CustomField$1 as CustomField, type context$1_CustomSettings as CustomSettings, type context$1_DeliveryLogistics as DeliveryLogistics, type context$1_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type context$1_DeliveryTimeSlot as DeliveryTimeSlot, type Description$1 as Description, type context$1_DescriptionLine as DescriptionLine, type context$1_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$1_DescriptionLineName as DescriptionLineName, context$1_DescriptionLineType as DescriptionLineType, type context$1_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type context$1_Details as Details, type context$1_DetailsKindOneOf as DetailsKindOneOf, type context$1_DigitalFile as DigitalFile, context$1_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type context$1_DraftOrderChangesApplied as DraftOrderChangesApplied, type ExtendedFields$1 as ExtendedFields, type ExternalReference$1 as ExternalReference, context$1_FallbackReason as FallbackReason, type context$1_FieldViolation as FieldViolation, context$1_FileType as FileType, context$1_FulfillmentStatus as FulfillmentStatus, type context$1_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$1_GetPaymentSettingsForCheckoutRequest as GetPaymentSettingsForCheckoutRequest, type context$1_GetPaymentSettingsForCheckoutResponse as GetPaymentSettingsForCheckoutResponse, type context$1_GetPaymentSettingsRequest as GetPaymentSettingsRequest, type context$1_GetPaymentSettingsResponse as GetPaymentSettingsResponse, type GiftCard$1 as GiftCard, type context$1_Group as Group, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type context$1_InvalidMembership as InvalidMembership, type context$1_ItemAvailabilityInfo as ItemAvailabilityInfo, context$1_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type LineItem$1 as LineItem, type context$1_LineItemAmount as LineItemAmount, type context$1_LineItemChanges as LineItemChanges, type context$1_LineItemDiscount as LineItemDiscount, type context$1_LineItemExchangeData as LineItemExchangeData, type context$1_LineItemPriceChange as LineItemPriceChange, type context$1_LineItemQuantityChange as LineItemQuantityChange, context$1_LineItemQuantityChangeType as LineItemQuantityChangeType, type context$1_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$1_LineItemTaxInfo as LineItemTaxInfo, type context$1_LocationAndQuantity as LocationAndQuantity, type context$1_ManagedAdditionalFee as ManagedAdditionalFee, type context$1_ManagedDiscount as ManagedDiscount, type context$1_ManagedLineItem as ManagedLineItem, context$1_ManualCalculationReason as ManualCalculationReason, type context$1_Membership as Membership, type context$1_MembershipName as MembershipName, type context$1_MembershipOptions as MembershipOptions, type context$1_MembershipPaymentCredits as MembershipPaymentCredits, type context$1_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$1_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MultiCurrencyPrice$1 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type context$1_NewExchangeOrderCreated as NewExchangeOrderCreated, type context$1_Order as Order, type context$1_OrderChange as OrderChange, type context$1_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$1_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$1_OrderLineItem as OrderLineItem, type context$1_OrderRefunded as OrderRefunded, context$1_OrderStatus as OrderStatus, type context$1_OrderTaxBreakdown as OrderTaxBreakdown, type context$1_OrderTaxInfo as OrderTaxInfo, type Other$1 as Other, type context$1_OtherCharge as OtherCharge, context$1_PaymentOption as PaymentOption, context$1_PaymentOptionType as PaymentOptionType, type context$1_PaymentRefundFailed as PaymentRefundFailed, type context$1_PaymentRefunded as PaymentRefunded, type context$1_PaymentSettings as PaymentSettings, type context$1_PaymentSettingsSPIConfig as PaymentSettingsSPIConfig, context$1_PaymentStatus as PaymentStatus, type PhysicalProperties$1 as PhysicalProperties, type context$1_PickupAddress as PickupAddress, type context$1_PickupDetails as PickupDetails, context$1_PickupDetailsPickupMethod as PickupDetailsPickupMethod, context$1_PickupMethod as PickupMethod, type context$1_PlainTextValue as PlainTextValue, type context$1_Price as Price, type context$1_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, context$1_RateType as RateType, type context$1_RefundInitiated as RefundInitiated, type context$1_RefundedAsStoreCredit as RefundedAsStoreCredit, type context$1_RefundedPayment as RefundedPayment, type context$1_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type context$1_RegularPaymentRefund as RegularPaymentRefund, context$1_RuleType as RuleType, type context$1_SavedPaymentMethod as SavedPaymentMethod, type context$1_Scope as Scope, type context$1_SecuredMedia as SecuredMedia, type SelectedCarrierServiceOption$1 as SelectedCarrierServiceOption, type context$1_SelectedCarrierServiceOptionOtherCharge as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$1 as SelectedCarrierServiceOptionPrices, type context$1_SelectedMembership as SelectedMembership, type context$1_SelectedMemberships as SelectedMemberships, type context$1_ServiceProperties as ServiceProperties, Severity$1 as Severity, type ShippingInfo$1 as ShippingInfo, type context$1_ShippingInformation as ShippingInformation, type context$1_ShippingInformationChange as ShippingInformationChange, type context$1_ShippingOption as ShippingOption, type context$1_ShippingPrice as ShippingPrice, type context$1_ShippingRegion as ShippingRegion, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$1 as SubscriptionFrequency, type context$1_SubscriptionInfo as SubscriptionInfo, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type context$1_SystemError as SystemError, type context$1_TagList as TagList, type context$1_Tags as Tags, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type context$1_TaxCalculationDetails as TaxCalculationDetails, type context$1_TaxCalculationDetailsCalculationDetailsOneOf as TaxCalculationDetailsCalculationDetailsOneOf, type context$1_TaxRateBreakdown as TaxRateBreakdown, type context$1_TaxSummary as TaxSummary, type context$1_TaxableAddress as TaxableAddress, type context$1_TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOf, context$1_TaxableAddressType as TaxableAddressType, type Title$1 as Title, type context$1_TotalPriceChange as TotalPriceChange, type context$1_TranslatedValue as TranslatedValue, type context$1_V1AdditionalFee as V1AdditionalFee, type context$1_V1AppliedDiscount as V1AppliedDiscount, type context$1_V1AppliedDiscountDiscountSourceOneOf as V1AppliedDiscountDiscountSourceOneOf, type context$1_V1BuyerInfo as V1BuyerInfo, type context$1_V1BuyerInfoIdOneOf as V1BuyerInfoIdOneOf, type context$1_V1Coupon as V1Coupon, type context$1_V1CreatedBy as V1CreatedBy, type context$1_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type context$1_V1DeliveryLogistics as V1DeliveryLogistics, type context$1_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type context$1_V1DiscountRule as V1DiscountRule, type context$1_V1DiscountRuleName as V1DiscountRuleName, type context$1_V1ItemTaxFullDetails as V1ItemTaxFullDetails, context$1_V1JurisdictionType as V1JurisdictionType, type context$1_V1LineItemDiscount as V1LineItemDiscount, type context$1_V1MerchantDiscount as V1MerchantDiscount, type context$1_V1PickupDetails as V1PickupDetails, type context$1_V1PriceSummary as V1PriceSummary, type context$1_V1ShippingInformation as V1ShippingInformation, type context$1_V1ShippingPrice as V1ShippingPrice, type context$1_V1ShippingRegion as V1ShippingRegion, type context$1_V1SubscriptionSettings as V1SubscriptionSettings, type context$1_V1TaxSummary as V1TaxSummary, type context$1_ValidationError as ValidationError, type VatId$1 as VatId, VatType$1 as VatType, type Violation$1 as Violation, WeightUnit$1 as WeightUnit, type _publicProvideHandlersType$1 as _publicProvideHandlersType, provideHandlers$2 as provideHandlers, provideHandlers$3 as publicProvideHandlers };
|
|
4667
4675
|
}
|
|
4668
4676
|
|
|
4669
4677
|
interface GetValidationViolationsRequest {
|
|
@@ -2926,6 +2926,12 @@ interface PaymentRefundFailed {
|
|
|
2926
2926
|
/** Details about the failed payment refund. */
|
|
2927
2927
|
payment?: RefundedPayment;
|
|
2928
2928
|
}
|
|
2929
|
+
interface RefundedAsStoreCredit {
|
|
2930
|
+
/** Refund amount */
|
|
2931
|
+
amount?: Price;
|
|
2932
|
+
/** Reason for refund */
|
|
2933
|
+
reason?: string | null;
|
|
2934
|
+
}
|
|
2929
2935
|
declare enum ActivityType {
|
|
2930
2936
|
ORDER_REFUNDED = "ORDER_REFUNDED",
|
|
2931
2937
|
ORDER_PLACED = "ORDER_PLACED",
|
|
@@ -2957,7 +2963,8 @@ declare enum ActivityType {
|
|
|
2957
2963
|
AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
|
|
2958
2964
|
REFUND_INITIATED = "REFUND_INITIATED",
|
|
2959
2965
|
PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
|
|
2960
|
-
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
|
|
2966
|
+
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
|
|
2967
|
+
REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
|
|
2961
2968
|
}
|
|
2962
2969
|
declare enum AttributionSource {
|
|
2963
2970
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -4606,6 +4613,7 @@ type index_d$1_PriceDescription = PriceDescription;
|
|
|
4606
4613
|
type index_d$1_RateType = RateType;
|
|
4607
4614
|
declare const index_d$1_RateType: typeof RateType;
|
|
4608
4615
|
type index_d$1_RefundInitiated = RefundInitiated;
|
|
4616
|
+
type index_d$1_RefundedAsStoreCredit = RefundedAsStoreCredit;
|
|
4609
4617
|
type index_d$1_RefundedPayment = RefundedPayment;
|
|
4610
4618
|
type index_d$1_RefundedPaymentKindOneOf = RefundedPaymentKindOneOf;
|
|
4611
4619
|
type index_d$1_RegularPaymentRefund = RegularPaymentRefund;
|
|
@@ -4663,7 +4671,7 @@ type index_d$1_V1SubscriptionSettings = V1SubscriptionSettings;
|
|
|
4663
4671
|
type index_d$1_V1TaxSummary = V1TaxSummary;
|
|
4664
4672
|
type index_d$1_ValidationError = ValidationError;
|
|
4665
4673
|
declare namespace index_d$1 {
|
|
4666
|
-
export { type index_d$1_Activity as Activity, type index_d$1_ActivityContentOneOf as ActivityContentOneOf, index_d$1_ActivityType as ActivityType, type index_d$1_AdditionalFee as AdditionalFee, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type index_d$1_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type index_d$1_ApiAddressWithContact as ApiAddressWithContact, type index_d$1_ApplicationError as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, index_d$1_AppliedDiscountDiscountType as AppliedDiscountDiscountType, index_d$1_AttributionSource as AttributionSource, type index_d$1_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$1_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$1_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$1_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type index_d$1_Balance as Balance, type index_d$1_BalanceSummary as BalanceSummary, type index_d$1_BuyerInfo as BuyerInfo, type index_d$1_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$1_CalculationErrors as CalculationErrors, type index_d$1_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type index_d$1_CarrierError as CarrierError, type index_d$1_CarrierErrors as CarrierErrors, type index_d$1_CarrierServiceOption as CarrierServiceOption, type index_d$1_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$1 as CatalogReference, type index_d$1_ChannelInfo as ChannelInfo, index_d$1_ChannelType as ChannelType, index_d$1_ChargeType as ChargeType, type index_d$1_Checkout as Checkout, type index_d$1_Color as Color, type Context$1 as Context, type index_d$1_ConversionInfo as ConversionInfo, type Coupon$1 as Coupon, type index_d$1_CreatedBy as CreatedBy, type index_d$1_CreatedByIdOneOf as CreatedByIdOneOf, type index_d$1_CustomActivity as CustomActivity, type index_d$1_CustomContentReference as CustomContentReference, type CustomField$1 as CustomField, type index_d$1_CustomSettings as CustomSettings, type index_d$1_DeliveryLogistics as DeliveryLogistics, type index_d$1_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type index_d$1_DeliveryTimeSlot as DeliveryTimeSlot, type Description$1 as Description, type index_d$1_DescriptionLine as DescriptionLine, type index_d$1_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$1_DescriptionLineName as DescriptionLineName, index_d$1_DescriptionLineType as DescriptionLineType, type index_d$1_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type index_d$1_Details as Details, type index_d$1_DetailsKindOneOf as DetailsKindOneOf, type index_d$1_DigitalFile as DigitalFile, index_d$1_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type index_d$1_DraftOrderChangesApplied as DraftOrderChangesApplied, type ExtendedFields$1 as ExtendedFields, type ExternalReference$1 as ExternalReference, index_d$1_FallbackReason as FallbackReason, type index_d$1_FieldViolation as FieldViolation, index_d$1_FileType as FileType, index_d$1_FulfillmentStatus as FulfillmentStatus, type index_d$1_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$1_GetPaymentSettingsForCheckoutRequest as GetPaymentSettingsForCheckoutRequest, type index_d$1_GetPaymentSettingsForCheckoutResponse as GetPaymentSettingsForCheckoutResponse, type index_d$1_GetPaymentSettingsRequest as GetPaymentSettingsRequest, type index_d$1_GetPaymentSettingsResponse as GetPaymentSettingsResponse, type GiftCard$1 as GiftCard, type index_d$1_Group as Group, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type index_d$1_InvalidMembership as InvalidMembership, type index_d$1_ItemAvailabilityInfo as ItemAvailabilityInfo, index_d$1_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type LineItem$1 as LineItem, type index_d$1_LineItemAmount as LineItemAmount, type index_d$1_LineItemChanges as LineItemChanges, type index_d$1_LineItemDiscount as LineItemDiscount, type index_d$1_LineItemExchangeData as LineItemExchangeData, type index_d$1_LineItemPriceChange as LineItemPriceChange, type index_d$1_LineItemQuantityChange as LineItemQuantityChange, index_d$1_LineItemQuantityChangeType as LineItemQuantityChangeType, type index_d$1_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$1_LineItemTaxInfo as LineItemTaxInfo, type index_d$1_LocationAndQuantity as LocationAndQuantity, type index_d$1_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$1_ManagedDiscount as ManagedDiscount, type index_d$1_ManagedLineItem as ManagedLineItem, index_d$1_ManualCalculationReason as ManualCalculationReason, type index_d$1_Membership as Membership, type index_d$1_MembershipName as MembershipName, type index_d$1_MembershipOptions as MembershipOptions, type index_d$1_MembershipPaymentCredits as MembershipPaymentCredits, type index_d$1_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$1_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MultiCurrencyPrice$1 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type index_d$1_NewExchangeOrderCreated as NewExchangeOrderCreated, type index_d$1_Order as Order, type index_d$1_OrderChange as OrderChange, type index_d$1_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$1_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$1_OrderLineItem as OrderLineItem, type index_d$1_OrderRefunded as OrderRefunded, index_d$1_OrderStatus as OrderStatus, type index_d$1_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$1_OrderTaxInfo as OrderTaxInfo, type Other$1 as Other, type index_d$1_OtherCharge as OtherCharge, index_d$1_PaymentOption as PaymentOption, index_d$1_PaymentOptionType as PaymentOptionType, type index_d$1_PaymentRefundFailed as PaymentRefundFailed, type index_d$1_PaymentRefunded as PaymentRefunded, type index_d$1_PaymentSettings as PaymentSettings, type index_d$1_PaymentSettingsSPIConfig as PaymentSettingsSPIConfig, index_d$1_PaymentStatus as PaymentStatus, type PhysicalProperties$1 as PhysicalProperties, type index_d$1_PickupAddress as PickupAddress, type index_d$1_PickupDetails as PickupDetails, index_d$1_PickupDetailsPickupMethod as PickupDetailsPickupMethod, index_d$1_PickupMethod as PickupMethod, type index_d$1_PlainTextValue as PlainTextValue, type index_d$1_Price as Price, type index_d$1_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, index_d$1_RateType as RateType, type index_d$1_RefundInitiated as RefundInitiated, type index_d$1_RefundedPayment as RefundedPayment, type index_d$1_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type index_d$1_RegularPaymentRefund as RegularPaymentRefund, index_d$1_RuleType as RuleType, type index_d$1_SavedPaymentMethod as SavedPaymentMethod, type index_d$1_Scope as Scope, type index_d$1_SecuredMedia as SecuredMedia, type SelectedCarrierServiceOption$1 as SelectedCarrierServiceOption, type index_d$1_SelectedCarrierServiceOptionOtherCharge as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$1 as SelectedCarrierServiceOptionPrices, type index_d$1_SelectedMembership as SelectedMembership, type index_d$1_SelectedMemberships as SelectedMemberships, type index_d$1_ServiceProperties as ServiceProperties, Severity$1 as Severity, type ShippingInfo$1 as ShippingInfo, type index_d$1_ShippingInformation as ShippingInformation, type index_d$1_ShippingInformationChange as ShippingInformationChange, type index_d$1_ShippingOption as ShippingOption, type index_d$1_ShippingPrice as ShippingPrice, type index_d$1_ShippingRegion as ShippingRegion, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$1_SubscriptionInfo as SubscriptionInfo, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type index_d$1_SystemError as SystemError, type index_d$1_TagList as TagList, type index_d$1_Tags as Tags, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type index_d$1_TaxCalculationDetails as TaxCalculationDetails, type index_d$1_TaxCalculationDetailsCalculationDetailsOneOf as TaxCalculationDetailsCalculationDetailsOneOf, type index_d$1_TaxRateBreakdown as TaxRateBreakdown, type index_d$1_TaxSummary as TaxSummary, type index_d$1_TaxableAddress as TaxableAddress, type index_d$1_TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOf, index_d$1_TaxableAddressType as TaxableAddressType, type Title$1 as Title, type index_d$1_TotalPriceChange as TotalPriceChange, type index_d$1_TranslatedValue as TranslatedValue, type index_d$1_V1AdditionalFee as V1AdditionalFee, type index_d$1_V1AppliedDiscount as V1AppliedDiscount, type index_d$1_V1AppliedDiscountDiscountSourceOneOf as V1AppliedDiscountDiscountSourceOneOf, type index_d$1_V1BuyerInfo as V1BuyerInfo, type index_d$1_V1BuyerInfoIdOneOf as V1BuyerInfoIdOneOf, type index_d$1_V1Coupon as V1Coupon, type index_d$1_V1CreatedBy as V1CreatedBy, type index_d$1_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type index_d$1_V1DeliveryLogistics as V1DeliveryLogistics, type index_d$1_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type index_d$1_V1DiscountRule as V1DiscountRule, type index_d$1_V1DiscountRuleName as V1DiscountRuleName, type index_d$1_V1ItemTaxFullDetails as V1ItemTaxFullDetails, index_d$1_V1JurisdictionType as V1JurisdictionType, type index_d$1_V1LineItemDiscount as V1LineItemDiscount, type index_d$1_V1MerchantDiscount as V1MerchantDiscount, type index_d$1_V1PickupDetails as V1PickupDetails, type index_d$1_V1PriceSummary as V1PriceSummary, type index_d$1_V1ShippingInformation as V1ShippingInformation, type index_d$1_V1ShippingPrice as V1ShippingPrice, type index_d$1_V1ShippingRegion as V1ShippingRegion, type index_d$1_V1SubscriptionSettings as V1SubscriptionSettings, type index_d$1_V1TaxSummary as V1TaxSummary, type index_d$1_ValidationError as ValidationError, type VatId$1 as VatId, VatType$1 as VatType, type Violation$1 as Violation, WeightUnit$1 as WeightUnit, type _publicProvideHandlersType$1 as _publicProvideHandlersType, provideHandlers$2 as provideHandlers, provideHandlers$3 as publicProvideHandlers };
|
|
4674
|
+
export { type index_d$1_Activity as Activity, type index_d$1_ActivityContentOneOf as ActivityContentOneOf, index_d$1_ActivityType as ActivityType, type index_d$1_AdditionalFee as AdditionalFee, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type index_d$1_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type index_d$1_ApiAddressWithContact as ApiAddressWithContact, type index_d$1_ApplicationError as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, index_d$1_AppliedDiscountDiscountType as AppliedDiscountDiscountType, index_d$1_AttributionSource as AttributionSource, type index_d$1_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$1_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$1_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$1_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type index_d$1_Balance as Balance, type index_d$1_BalanceSummary as BalanceSummary, type index_d$1_BuyerInfo as BuyerInfo, type index_d$1_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$1_CalculationErrors as CalculationErrors, type index_d$1_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type index_d$1_CarrierError as CarrierError, type index_d$1_CarrierErrors as CarrierErrors, type index_d$1_CarrierServiceOption as CarrierServiceOption, type index_d$1_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$1 as CatalogReference, type index_d$1_ChannelInfo as ChannelInfo, index_d$1_ChannelType as ChannelType, index_d$1_ChargeType as ChargeType, type index_d$1_Checkout as Checkout, type index_d$1_Color as Color, type Context$1 as Context, type index_d$1_ConversionInfo as ConversionInfo, type Coupon$1 as Coupon, type index_d$1_CreatedBy as CreatedBy, type index_d$1_CreatedByIdOneOf as CreatedByIdOneOf, type index_d$1_CustomActivity as CustomActivity, type index_d$1_CustomContentReference as CustomContentReference, type CustomField$1 as CustomField, type index_d$1_CustomSettings as CustomSettings, type index_d$1_DeliveryLogistics as DeliveryLogistics, type index_d$1_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type index_d$1_DeliveryTimeSlot as DeliveryTimeSlot, type Description$1 as Description, type index_d$1_DescriptionLine as DescriptionLine, type index_d$1_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$1_DescriptionLineName as DescriptionLineName, index_d$1_DescriptionLineType as DescriptionLineType, type index_d$1_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type index_d$1_Details as Details, type index_d$1_DetailsKindOneOf as DetailsKindOneOf, type index_d$1_DigitalFile as DigitalFile, index_d$1_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type index_d$1_DraftOrderChangesApplied as DraftOrderChangesApplied, type ExtendedFields$1 as ExtendedFields, type ExternalReference$1 as ExternalReference, index_d$1_FallbackReason as FallbackReason, type index_d$1_FieldViolation as FieldViolation, index_d$1_FileType as FileType, index_d$1_FulfillmentStatus as FulfillmentStatus, type index_d$1_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$1_GetPaymentSettingsForCheckoutRequest as GetPaymentSettingsForCheckoutRequest, type index_d$1_GetPaymentSettingsForCheckoutResponse as GetPaymentSettingsForCheckoutResponse, type index_d$1_GetPaymentSettingsRequest as GetPaymentSettingsRequest, type index_d$1_GetPaymentSettingsResponse as GetPaymentSettingsResponse, type GiftCard$1 as GiftCard, type index_d$1_Group as Group, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type index_d$1_InvalidMembership as InvalidMembership, type index_d$1_ItemAvailabilityInfo as ItemAvailabilityInfo, index_d$1_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type LineItem$1 as LineItem, type index_d$1_LineItemAmount as LineItemAmount, type index_d$1_LineItemChanges as LineItemChanges, type index_d$1_LineItemDiscount as LineItemDiscount, type index_d$1_LineItemExchangeData as LineItemExchangeData, type index_d$1_LineItemPriceChange as LineItemPriceChange, type index_d$1_LineItemQuantityChange as LineItemQuantityChange, index_d$1_LineItemQuantityChangeType as LineItemQuantityChangeType, type index_d$1_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$1_LineItemTaxInfo as LineItemTaxInfo, type index_d$1_LocationAndQuantity as LocationAndQuantity, type index_d$1_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$1_ManagedDiscount as ManagedDiscount, type index_d$1_ManagedLineItem as ManagedLineItem, index_d$1_ManualCalculationReason as ManualCalculationReason, type index_d$1_Membership as Membership, type index_d$1_MembershipName as MembershipName, type index_d$1_MembershipOptions as MembershipOptions, type index_d$1_MembershipPaymentCredits as MembershipPaymentCredits, type index_d$1_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$1_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MultiCurrencyPrice$1 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type index_d$1_NewExchangeOrderCreated as NewExchangeOrderCreated, type index_d$1_Order as Order, type index_d$1_OrderChange as OrderChange, type index_d$1_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$1_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$1_OrderLineItem as OrderLineItem, type index_d$1_OrderRefunded as OrderRefunded, index_d$1_OrderStatus as OrderStatus, type index_d$1_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$1_OrderTaxInfo as OrderTaxInfo, type Other$1 as Other, type index_d$1_OtherCharge as OtherCharge, index_d$1_PaymentOption as PaymentOption, index_d$1_PaymentOptionType as PaymentOptionType, type index_d$1_PaymentRefundFailed as PaymentRefundFailed, type index_d$1_PaymentRefunded as PaymentRefunded, type index_d$1_PaymentSettings as PaymentSettings, type index_d$1_PaymentSettingsSPIConfig as PaymentSettingsSPIConfig, index_d$1_PaymentStatus as PaymentStatus, type PhysicalProperties$1 as PhysicalProperties, type index_d$1_PickupAddress as PickupAddress, type index_d$1_PickupDetails as PickupDetails, index_d$1_PickupDetailsPickupMethod as PickupDetailsPickupMethod, index_d$1_PickupMethod as PickupMethod, type index_d$1_PlainTextValue as PlainTextValue, type index_d$1_Price as Price, type index_d$1_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, index_d$1_RateType as RateType, type index_d$1_RefundInitiated as RefundInitiated, type index_d$1_RefundedAsStoreCredit as RefundedAsStoreCredit, type index_d$1_RefundedPayment as RefundedPayment, type index_d$1_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type index_d$1_RegularPaymentRefund as RegularPaymentRefund, index_d$1_RuleType as RuleType, type index_d$1_SavedPaymentMethod as SavedPaymentMethod, type index_d$1_Scope as Scope, type index_d$1_SecuredMedia as SecuredMedia, type SelectedCarrierServiceOption$1 as SelectedCarrierServiceOption, type index_d$1_SelectedCarrierServiceOptionOtherCharge as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$1 as SelectedCarrierServiceOptionPrices, type index_d$1_SelectedMembership as SelectedMembership, type index_d$1_SelectedMemberships as SelectedMemberships, type index_d$1_ServiceProperties as ServiceProperties, Severity$1 as Severity, type ShippingInfo$1 as ShippingInfo, type index_d$1_ShippingInformation as ShippingInformation, type index_d$1_ShippingInformationChange as ShippingInformationChange, type index_d$1_ShippingOption as ShippingOption, type index_d$1_ShippingPrice as ShippingPrice, type index_d$1_ShippingRegion as ShippingRegion, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$1_SubscriptionInfo as SubscriptionInfo, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type index_d$1_SystemError as SystemError, type index_d$1_TagList as TagList, type index_d$1_Tags as Tags, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type index_d$1_TaxCalculationDetails as TaxCalculationDetails, type index_d$1_TaxCalculationDetailsCalculationDetailsOneOf as TaxCalculationDetailsCalculationDetailsOneOf, type index_d$1_TaxRateBreakdown as TaxRateBreakdown, type index_d$1_TaxSummary as TaxSummary, type index_d$1_TaxableAddress as TaxableAddress, type index_d$1_TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOf, index_d$1_TaxableAddressType as TaxableAddressType, type Title$1 as Title, type index_d$1_TotalPriceChange as TotalPriceChange, type index_d$1_TranslatedValue as TranslatedValue, type index_d$1_V1AdditionalFee as V1AdditionalFee, type index_d$1_V1AppliedDiscount as V1AppliedDiscount, type index_d$1_V1AppliedDiscountDiscountSourceOneOf as V1AppliedDiscountDiscountSourceOneOf, type index_d$1_V1BuyerInfo as V1BuyerInfo, type index_d$1_V1BuyerInfoIdOneOf as V1BuyerInfoIdOneOf, type index_d$1_V1Coupon as V1Coupon, type index_d$1_V1CreatedBy as V1CreatedBy, type index_d$1_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type index_d$1_V1DeliveryLogistics as V1DeliveryLogistics, type index_d$1_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type index_d$1_V1DiscountRule as V1DiscountRule, type index_d$1_V1DiscountRuleName as V1DiscountRuleName, type index_d$1_V1ItemTaxFullDetails as V1ItemTaxFullDetails, index_d$1_V1JurisdictionType as V1JurisdictionType, type index_d$1_V1LineItemDiscount as V1LineItemDiscount, type index_d$1_V1MerchantDiscount as V1MerchantDiscount, type index_d$1_V1PickupDetails as V1PickupDetails, type index_d$1_V1PriceSummary as V1PriceSummary, type index_d$1_V1ShippingInformation as V1ShippingInformation, type index_d$1_V1ShippingPrice as V1ShippingPrice, type index_d$1_V1ShippingRegion as V1ShippingRegion, type index_d$1_V1SubscriptionSettings as V1SubscriptionSettings, type index_d$1_V1TaxSummary as V1TaxSummary, type index_d$1_ValidationError as ValidationError, type VatId$1 as VatId, VatType$1 as VatType, type Violation$1 as Violation, WeightUnit$1 as WeightUnit, type _publicProvideHandlersType$1 as _publicProvideHandlersType, provideHandlers$2 as provideHandlers, provideHandlers$3 as publicProvideHandlers };
|
|
4667
4675
|
}
|
|
4668
4676
|
|
|
4669
4677
|
interface GetValidationViolationsRequest {
|