@wix/ecom 1.0.684 → 1.0.686

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.
@@ -20823,7 +20823,7 @@ interface AuthorizationDetails$1 {
20823
20823
  interface AuthorizationCapture$1 {
20824
20824
  }
20825
20825
  declare enum AuthorizationCaptureStatus$1 {
20826
- /** Whethe capture operation still in progress */
20826
+ /** Whether capture operation still in progress */
20827
20827
  PENDING = "PENDING",
20828
20828
  /** The capture operation was succeeded */
20829
20829
  SUCCEEDED = "SUCCEEDED",
@@ -20842,6 +20842,28 @@ declare enum AuthorizationVoidStatus$1 {
20842
20842
  /** The void operation was failed */
20843
20843
  FAILED = "FAILED"
20844
20844
  }
20845
+ /**
20846
+ * Reason the authorization was voided.
20847
+ *
20848
+ * + `MANUAL`: Authorization was voided by user.
20849
+ * + `SCHEDULED`: Authorization passed execution date.
20850
+ */
20851
+ declare enum Reason$1 {
20852
+ UNKNOWN_REASON = "UNKNOWN_REASON",
20853
+ MANUAL = "MANUAL",
20854
+ SCHEDULED = "SCHEDULED"
20855
+ }
20856
+ interface ScheduledAction$1 {
20857
+ /** type of the action */
20858
+ actionType?: ActionType$1;
20859
+ /** the date and time of the action */
20860
+ executionDate?: Date;
20861
+ }
20862
+ declare enum ActionType$1 {
20863
+ UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
20864
+ VOID = "VOID",
20865
+ CAPTURE = "CAPTURE"
20866
+ }
20845
20867
  interface GiftCardPaymentDetails$1 {
20846
20868
  /** Gift card payment ID. */
20847
20869
  giftCardPaymentId?: string;
@@ -21316,7 +21338,7 @@ interface PreparePaymentCollectionResponse {
21316
21338
  }
21317
21339
  interface GetPaymentCollectabilityStatusRequest {
21318
21340
  /** Ecom order ID. */
21319
- ecomOrderId: string;
21341
+ ecomOrderId?: string;
21320
21342
  }
21321
21343
  interface GetPaymentCollectabilityStatusResponse {
21322
21344
  /** Payment collectability status */
@@ -23302,15 +23324,6 @@ interface TriggerSideEffectsFromLegacyData {
23302
23324
  orderId?: string;
23303
23325
  ordersExperiments?: OrdersExperiments;
23304
23326
  }
23305
- interface PriceNonNullableFields$1 {
23306
- amount: string;
23307
- formattedAmount: string;
23308
- }
23309
- interface GetPaymentCollectabilityStatusResponseNonNullableFields {
23310
- status: PaymentCollectabilityStatus;
23311
- amount?: PriceNonNullableFields$1;
23312
- authorizationSupported: boolean;
23313
- }
23314
23327
  interface ProductNameNonNullableFields {
23315
23328
  original: string;
23316
23329
  }
@@ -23318,6 +23331,10 @@ interface CatalogReferenceNonNullableFields {
23318
23331
  catalogItemId: string;
23319
23332
  appId: string;
23320
23333
  }
23334
+ interface PriceNonNullableFields$1 {
23335
+ amount: string;
23336
+ formattedAmount: string;
23337
+ }
23321
23338
  interface PlainTextValueNonNullableFields {
23322
23339
  original: string;
23323
23340
  }
@@ -23946,7 +23963,6 @@ declare function createRESTModule$6<T extends RESTFunctionDescriptor>(descriptor
23946
23963
 
23947
23964
  declare function createEventModule$5<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
23948
23965
 
23949
- declare const getPaymentCollectabilityStatus: ReturnType<typeof createRESTModule$6<typeof publicGetPaymentCollectabilityStatus>>;
23950
23966
  declare const getOrder: ReturnType<typeof createRESTModule$6<typeof publicGetOrder>>;
23951
23967
  declare const searchOrders: ReturnType<typeof createRESTModule$6<typeof publicSearchOrders>>;
23952
23968
  declare const createOrder: ReturnType<typeof createRESTModule$6<typeof publicCreateOrder>>;
@@ -24128,7 +24144,6 @@ type index_d$6_GetOrderResponse = GetOrderResponse;
24128
24144
  type index_d$6_GetOrderResponseNonNullableFields = GetOrderResponseNonNullableFields;
24129
24145
  type index_d$6_GetPaymentCollectabilityStatusRequest = GetPaymentCollectabilityStatusRequest;
24130
24146
  type index_d$6_GetPaymentCollectabilityStatusResponse = GetPaymentCollectabilityStatusResponse;
24131
- type index_d$6_GetPaymentCollectabilityStatusResponseNonNullableFields = GetPaymentCollectabilityStatusResponseNonNullableFields;
24132
24147
  type index_d$6_GetRefundOptionsRequest = GetRefundOptionsRequest;
24133
24148
  type index_d$6_GetRefundOptionsResponse = GetRefundOptionsResponse;
24134
24149
  type index_d$6_GetShipmentsRequest = GetShipmentsRequest;
@@ -24425,7 +24440,6 @@ declare const index_d$6_bulkUpdateOrders: typeof bulkUpdateOrders;
24425
24440
  declare const index_d$6_cancelOrder: typeof cancelOrder;
24426
24441
  declare const index_d$6_createOrder: typeof createOrder;
24427
24442
  declare const index_d$6_getOrder: typeof getOrder;
24428
- declare const index_d$6_getPaymentCollectabilityStatus: typeof getPaymentCollectabilityStatus;
24429
24443
  declare const index_d$6_onOrderApproved: typeof onOrderApproved;
24430
24444
  declare const index_d$6_onOrderCanceled: typeof onOrderCanceled;
24431
24445
  declare const index_d$6_onOrderCreated: typeof onOrderCreated;
@@ -24434,7 +24448,7 @@ declare const index_d$6_onOrderUpdated: typeof onOrderUpdated;
24434
24448
  declare const index_d$6_searchOrders: typeof searchOrders;
24435
24449
  declare const index_d$6_updateOrder: typeof updateOrder;
24436
24450
  declare namespace index_d$6 {
24437
- export { type ActionEvent$5 as ActionEvent, type Activity$1 as Activity, type index_d$6_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type index_d$6_AddActivitiesRequest as AddActivitiesRequest, type index_d$6_AddActivitiesResponse as AddActivitiesResponse, type index_d$6_AddActivityRequest as AddActivityRequest, type index_d$6_AddActivityResponse as AddActivityResponse, type index_d$6_AddInternalActivityRequest as AddInternalActivityRequest, type index_d$6_AddInternalActivityResponse as AddInternalActivityResponse, type index_d$6_AdditionalFee as AdditionalFee, type index_d$6_AdditionalFeeDelta as AdditionalFeeDelta, type index_d$6_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$1 as AdditionalFeeRefund, type index_d$6_AdditionalFeeRefundOption as AdditionalFeeRefundOption, type Address$3 as Address, type index_d$6_AddressDescription as AddressDescription, type AddressLocation$1 as AddressLocation, type index_d$6_AddressWithContact as AddressWithContact, type index_d$6_AggregateOrdersRequest as AggregateOrdersRequest, type index_d$6_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$1 as AggregatedRefundSummary, type index_d$6_App as App, type ApplicationError$2 as ApplicationError, type index_d$6_AppliedDiscount as AppliedDiscount, type index_d$6_AppliedDiscountDelta as AppliedDiscountDelta, type index_d$6_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type index_d$6_AppliedDiscountDiscountSourceOneOf as AppliedDiscountDiscountSourceOneOf, type index_d$6_ArchiveOrderRequest as ArchiveOrderRequest, type index_d$6_ArchiveOrderResponse as ArchiveOrderResponse, index_d$6_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$1 as AuthorizationActionFailureDetails, type AuthorizationCapture$1 as AuthorizationCapture, AuthorizationCaptureStatus$1 as AuthorizationCaptureStatus, type AuthorizationDetails$1 as AuthorizationDetails, type AuthorizationVoid$1 as AuthorizationVoid, AuthorizationVoidStatus$1 as AuthorizationVoidStatus, type index_d$6_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$6_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$6_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$6_Balance as Balance, type index_d$6_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type index_d$6_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$6_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$6_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$6_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$6_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$6_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$6_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$6_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$6_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$6_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$6_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$6_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$6_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$6_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$6_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$6_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$6_BulkOrderResult as BulkOrderResult, type index_d$6_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$6_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$6_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$6_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$6_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$6_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$6_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$6_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$6_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$6_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type index_d$6_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type index_d$6_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type index_d$6_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$6_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type index_d$6_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type index_d$6_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$6_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$6_CalculateRefundV1Request as CalculateRefundV1Request, type index_d$6_CalculateRefundV1Response as CalculateRefundV1Response, type index_d$6_CalculateRefundV2Request as CalculateRefundV2Request, type index_d$6_CalculateRefundV2Response as CalculateRefundV2Response, type index_d$6_CalculateRefundV2ResponseStatusOneOf as CalculateRefundV2ResponseStatusOneOf, type index_d$6_CalculatedAdditionalFeeRefund as CalculatedAdditionalFeeRefund, type index_d$6_CalculatedLineItemRefund as CalculatedLineItemRefund, type index_d$6_CalculatedRefundDetails as CalculatedRefundDetails, type index_d$6_CalculatedRefundNotAvailableStatus as CalculatedRefundNotAvailableStatus, type index_d$6_CalculatedRefundSummary as CalculatedRefundSummary, type index_d$6_CalculatedShippingRefund as CalculatedShippingRefund, type index_d$6_CalculatedTax as CalculatedTax, type index_d$6_CalculatedTaxes as CalculatedTaxes, type index_d$6_CalculationError as CalculationError, type index_d$6_CalculationErrorItemOneOf as CalculationErrorItemOneOf, type index_d$6_Cancel as Cancel, type index_d$6_CancelOrderOptions as CancelOrderOptions, type index_d$6_CancelOrderRequest as CancelOrderRequest, type index_d$6_CancelOrderResponse as CancelOrderResponse, type index_d$6_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type index_d$6_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type index_d$6_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type index_d$6_CatalogReference as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type index_d$6_ChargeMembershipsRequest as ChargeMembershipsRequest, type index_d$6_ChargeMembershipsResponse as ChargeMembershipsResponse, type index_d$6_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type index_d$6_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type index_d$6_ChargedBy as ChargedBy, type index_d$6_Color as Color, type index_d$6_CommitDeltasRequest as CommitDeltasRequest, type index_d$6_CommitDeltasResponse as CommitDeltasResponse, type index_d$6_CommittedDiffs as CommittedDiffs, type index_d$6_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type index_d$6_CommonAddress as CommonAddress, type index_d$6_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$6_Company as Company, type index_d$6_Complete as Complete, type index_d$6_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type index_d$6_Coupon as Coupon, type index_d$6_CreateOrderRequest as CreateOrderRequest, type index_d$6_CreateOrderResponse as CreateOrderResponse, type index_d$6_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type index_d$6_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type index_d$6_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type index_d$6_CreatedBy as CreatedBy, type index_d$6_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$1 as CreditCardPaymentMethodDetails, type CursorPaging$4 as CursorPaging, type CursorPagingMetadata$4 as CursorPagingMetadata, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 as CursorSearchPagingMethodOneOf, type Cursors$4 as Cursors, type index_d$6_CustomActivity as CustomActivity, type CustomField$1 as CustomField, index_d$6_CustomFieldGroup as CustomFieldGroup, type index_d$6_CustomFieldValue as CustomFieldValue, type index_d$6_Customer as Customer, type index_d$6_DecrementData as DecrementData, type index_d$6_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type index_d$6_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type index_d$6_DeleteActivityRequest as DeleteActivityRequest, type index_d$6_DeleteActivityResponse as DeleteActivityResponse, type index_d$6_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$6_DeleteByIdsOperation as DeleteByIdsOperation, type index_d$6_DeliveryLogistics as DeliveryLogistics, type index_d$6_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type index_d$6_DeliveryTimeSlot as DeliveryTimeSlot, index_d$6_DeltaPaymentOptionType as DeltaPaymentOptionType, type index_d$6_Deposit as Deposit, index_d$6_DepositType as DepositType, type index_d$6_DescriptionLine as DescriptionLine, type index_d$6_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$6_DescriptionLineName as DescriptionLineName, index_d$6_DescriptionLineType as DescriptionLineType, type index_d$6_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type index_d$6_Details as Details, type index_d$6_DetailsKindOneOf as DetailsKindOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type index_d$6_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, index_d$6_DiscountReason as DiscountReason, type index_d$6_DiscountRule as DiscountRule, type index_d$6_DiscountRuleName as DiscountRuleName, index_d$6_DiscountType as DiscountType, type DomainEvent$5 as DomainEvent, type DomainEventBodyOneOf$5 as DomainEventBodyOneOf, type index_d$6_DownloadLinkSent as DownloadLinkSent, type index_d$6_DraftOrderChangesApplied as DraftOrderChangesApplied, type index_d$6_DraftOrderCommitSettings as DraftOrderCommitSettings, type index_d$6_DraftOrderDiffs as DraftOrderDiffs, type index_d$6_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type index_d$6_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type index_d$6_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type index_d$6_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type index_d$6_Email as Email, type index_d$6_EmailEdited as EmailEdited, type Empty$3 as Empty, type EntityCreatedEvent$5 as EntityCreatedEvent, type EntityDeletedEvent$5 as EntityDeletedEvent, type EntityUpdatedEvent$5 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$2 as ExtendedFields, type index_d$6_ExternalUriMapping as ExternalUriMapping, type index_d$6_FieldViolation as FieldViolation, type index_d$6_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$6_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$6_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type index_d$6_FullAddressContactDetails as FullAddressContactDetails, type index_d$6_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$6_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$6_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$6_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$6_GetOrderRequest as GetOrderRequest, type index_d$6_GetOrderResponse as GetOrderResponse, type index_d$6_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$6_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$6_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type index_d$6_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type index_d$6_GetRefundOptionsRequest as GetRefundOptionsRequest, type index_d$6_GetRefundOptionsResponse as GetRefundOptionsResponse, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type index_d$6_GetShipmentsRequest as GetShipmentsRequest, type index_d$6_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$1 as GiftCardPaymentDetails, type index_d$6_HtmlApplication as HtmlApplication, type index_d$6_IdAndVersion as IdAndVersion, type IdentificationData$5 as IdentificationData, type IdentificationDataIdOneOf$5 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type index_d$6_InternalActivity as InternalActivity, type index_d$6_InternalActivityContentOneOf as InternalActivityContentOneOf, type index_d$6_InternalDocument as InternalDocument, type index_d$6_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type index_d$6_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type index_d$6_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type index_d$6_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type index_d$6_InternalUpdateExistingOperation as InternalUpdateExistingOperation, index_d$6_InventoryAction as InventoryAction, type index_d$6_InventoryUpdateDetails as InventoryUpdateDetails, type index_d$6_InvoiceAdded as InvoiceAdded, type index_d$6_InvoiceDates as InvoiceDates, type index_d$6_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type index_d$6_InvoiceFields as InvoiceFields, type index_d$6_InvoiceSent as InvoiceSent, type index_d$6_InvoiceSentEvent as InvoiceSentEvent, index_d$6_InvoiceStatus as InvoiceStatus, type index_d$6_InvoicesPayment as InvoicesPayment, type index_d$6_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type index_d$6_ItemTaxFullDetails as ItemTaxFullDetails, type index_d$6_ItemType as ItemType, index_d$6_ItemTypeItemType as ItemTypeItemType, type index_d$6_ItemTypeItemTypeDataOneOf as ItemTypeItemTypeDataOneOf, type index_d$6_ItemizedFee as ItemizedFee, index_d$6_JurisdictionType as JurisdictionType, type LineItem$1 as LineItem, type index_d$6_LineItemAmount as LineItemAmount, type index_d$6_LineItemChanges as LineItemChanges, type index_d$6_LineItemDelta as LineItemDelta, type index_d$6_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type index_d$6_LineItemDiscount as LineItemDiscount, type index_d$6_LineItemExchangeData as LineItemExchangeData, type index_d$6_LineItemMetaData as LineItemMetaData, type index_d$6_LineItemPriceChange as LineItemPriceChange, type index_d$6_LineItemQuantityChange as LineItemQuantityChange, index_d$6_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$1 as LineItemRefund, type index_d$6_LineItemRefundOption as LineItemRefundOption, type index_d$6_LineItemTax as LineItemTax, type index_d$6_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$6_LineItemTaxInfo as LineItemTaxInfo, type index_d$6_LineItemUpdate as LineItemUpdate, type index_d$6_LineItems as LineItems, type index_d$6_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type index_d$6_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type index_d$6_Locale as Locale, type index_d$6_LocationAndQuantity as LocationAndQuantity, type index_d$6_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$6_ManagedDiscount as ManagedDiscount, type index_d$6_ManagedLineItem as ManagedLineItem, type index_d$6_ManuallyRefundablePaymentStatus as ManuallyRefundablePaymentStatus, ManuallyRefundableReason$1 as ManuallyRefundableReason, type index_d$6_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type index_d$6_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type index_d$6_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type index_d$6_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type index_d$6_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type index_d$6_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type index_d$6_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type index_d$6_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type index_d$6_MaskedOrder as MaskedOrder, type index_d$6_MaskedOrderLineItem as MaskedOrderLineItem, type index_d$6_MembershipChargeItem as MembershipChargeItem, type MembershipName$1 as MembershipName, type MembershipPaymentDetails$1 as MembershipPaymentDetails, MembershipPaymentStatus$1 as MembershipPaymentStatus, type index_d$6_MembershipPaymentSummary as MembershipPaymentSummary, type index_d$6_MerchantComment as MerchantComment, type index_d$6_MerchantDiscount as MerchantDiscount, type index_d$6_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$5 as MessageEnvelope, type index_d$6_MetaData as MetaData, type index_d$6_MetaSite as MetaSite, type index_d$6_MetaTag as MetaTag, type index_d$6_MonetaryPaymentSummary as MonetaryPaymentSummary, index_d$6_Namespace as Namespace, type index_d$6_NewExchangeOrderCreated as NewExchangeOrderCreated, type index_d$6_NonRefundablePaymentStatus as NonRefundablePaymentStatus, NonRefundableReason$1 as NonRefundableReason, type index_d$6_NotificationSideEffects as NotificationSideEffects, type Order$1 as Order, index_d$6_OrderApprovalStrategy as OrderApprovalStrategy, type index_d$6_OrderApproved as OrderApproved, type index_d$6_OrderApprovedEnvelope as OrderApprovedEnvelope, type index_d$6_OrderCanceled as OrderCanceled, type index_d$6_OrderCanceledEnvelope as OrderCanceledEnvelope, type index_d$6_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type index_d$6_OrderChange as OrderChange, type index_d$6_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$6_OrderCreateNotifications as OrderCreateNotifications, type index_d$6_OrderCreatedEnvelope as OrderCreatedEnvelope, type index_d$6_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$6_OrderCreationSettings as OrderCreationSettings, type index_d$6_OrderDeltasCommitted as OrderDeltasCommitted, type index_d$6_OrderFulfilled as OrderFulfilled, type index_d$6_OrderItemsRestocked as OrderItemsRestocked, type index_d$6_OrderLineItem as OrderLineItem, type index_d$6_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type index_d$6_OrderNonNullableFields as OrderNonNullableFields, type index_d$6_OrderNotFulfilled as OrderNotFulfilled, type index_d$6_OrderPaid as OrderPaid, type index_d$6_OrderPartiallyPaid as OrderPartiallyPaid, type index_d$6_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type index_d$6_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, index_d$6_OrderStatus as OrderStatus, type index_d$6_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$6_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$1 as OrderTransactions, type index_d$6_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type index_d$6_OrdersExperiments as OrdersExperiments, type index_d$6_OrdersV1RestockItem as OrdersV1RestockItem, type Payment$1 as Payment, type index_d$6_PaymentCapture as PaymentCapture, index_d$6_PaymentCollectabilityStatus as PaymentCollectabilityStatus, type index_d$6_PaymentInfo as PaymentInfo, type index_d$6_PaymentInfoPaymentMethodDetailsOneOf as PaymentInfoPaymentMethodDetailsOneOf, type index_d$6_PaymentInfoSummaryOneOf as PaymentInfoSummaryOneOf, index_d$6_PaymentOptionType as PaymentOptionType, type PaymentPaymentDetailsOneOf$1 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$6_PaymentRefundOption as PaymentRefundOption, type index_d$6_PaymentRefundOptionStatusOneOf as PaymentRefundOptionStatusOneOf, PaymentStatus$1 as PaymentStatus, type index_d$6_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$6_Payments as Payments, type index_d$6_PaymentsSummary as PaymentsSummary, type index_d$6_Phone as Phone, type index_d$6_PhysicalProperties as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$1 as PickupDetails, index_d$6_PickupMethod as PickupMethod, type index_d$6_PickupReadyEmailSent as PickupReadyEmailSent, index_d$6_Placement as Placement, type index_d$6_PlainTextValue as PlainTextValue, type index_d$6_PlatformPaging as PlatformPaging, type index_d$6_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$6_PlatformQuery as PlatformQuery, type index_d$6_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d$6_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$6_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type index_d$6_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type index_d$6_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type index_d$6_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type index_d$6_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type index_d$6_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type index_d$6_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type index_d$6_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type index_d$6_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type index_d$6_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type index_d$6_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type index_d$6_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type index_d$6_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, index_d$6_PreviewEmailType as PreviewEmailType, type index_d$6_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type index_d$6_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type index_d$6_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type index_d$6_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type index_d$6_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type index_d$6_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$1 as Price, type index_d$6_PriceDescription as PriceDescription, type index_d$6_PriceSummary as PriceSummary, type index_d$6_ProductName as ProductName, type index_d$6_PublicActivity as PublicActivity, type index_d$6_PublicActivityContentOneOf as PublicActivityContentOneOf, type index_d$6_QueryOrderRequest as QueryOrderRequest, type index_d$6_QueryOrderResponse as QueryOrderResponse, type index_d$6_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type index_d$6_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type index_d$6_QuotesAddress as QuotesAddress, type index_d$6_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type index_d$6_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type index_d$6_RedirectUrls as RedirectUrls, type Refund$1 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$1 as RefundDetails, type RefundItem$1 as RefundItem, type index_d$6_RefundRequest as RefundRequest, type index_d$6_RefundResponse as RefundResponse, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$1 as RefundStatus, type RefundTransaction$1 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, index_d$6_RefundabilityManuallyRefundableReason as RefundabilityManuallyRefundableReason, index_d$6_RefundabilityNonRefundableReason as RefundabilityNonRefundableReason, RefundableStatus$1 as RefundableStatus, type RegularPaymentDetails$1 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$6_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, type index_d$6_RestockSideEffects as RestockSideEffects, RestockType$1 as RestockType, type RestoreInfo$5 as RestoreInfo, index_d$6_RuleType as RuleType, type index_d$6_SavedPaymentMethod as SavedPaymentMethod, type index_d$6_SearchOrdersOptions as SearchOrdersOptions, type index_d$6_SearchOrdersRequest as SearchOrdersRequest, type index_d$6_SearchOrdersResponse as SearchOrdersResponse, type index_d$6_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type index_d$6_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type index_d$6_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type index_d$6_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type index_d$6_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type index_d$6_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type index_d$6_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type index_d$6_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type index_d$6_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type index_d$6_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type index_d$6_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type index_d$6_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type index_d$6_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type index_d$6_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type index_d$6_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type index_d$6_SeoData as SeoData, type index_d$6_ServiceProperties as ServiceProperties, type index_d$6_ShippingAddressEdited as ShippingAddressEdited, type index_d$6_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type index_d$6_ShippingInformation as ShippingInformation, type index_d$6_ShippingPrice as ShippingPrice, type ShippingRefund$1 as ShippingRefund, type index_d$6_ShippingRefundOption as ShippingRefundOption, type index_d$6_ShippingRegion as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$4 as SortOrder, type Sorting$4 as Sorting, type index_d$6_Source as Source, index_d$6_SourceType as SourceType, type index_d$6_StandardDetails as StandardDetails, index_d$6_State as State, type StreetAddress$2 as StreetAddress, type index_d$6_Subdivision as Subdivision, index_d$6_SubdivisionType as SubdivisionType, SubscriptionFrequency$1 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type index_d$6_SystemError as SystemError, type index_d$6_TagList as TagList, type index_d$6_Tags as Tags, type index_d$6_Task as Task, type index_d$6_TaskAction as TaskAction, type index_d$6_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$6_TaskKey as TaskKey, type index_d$6_TaxSummary as TaxSummary, type index_d$6_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type index_d$6_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type index_d$6_TotalPrice as TotalPrice, type index_d$6_TotalPriceChange as TotalPriceChange, type index_d$6_TrackingLinkAdded as TrackingLinkAdded, type index_d$6_TrackingNumberAdded as TrackingNumberAdded, type index_d$6_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$1 as TransactionStatus, type index_d$6_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type index_d$6_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type index_d$6_TriggerReindexRequest as TriggerReindexRequest, type index_d$6_TriggerReindexResponse as TriggerReindexResponse, type index_d$6_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type index_d$6_UnArchiveOrderRequest as UnArchiveOrderRequest, type index_d$6_UnArchiveOrderResponse as UnArchiveOrderResponse, type index_d$6_UpdateActivityRequest as UpdateActivityRequest, type index_d$6_UpdateActivityResponse as UpdateActivityResponse, type index_d$6_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type index_d$6_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type index_d$6_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type index_d$6_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type index_d$6_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type index_d$6_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type index_d$6_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type index_d$6_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type index_d$6_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type index_d$6_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type index_d$6_UpdateOrder as UpdateOrder, type index_d$6_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type index_d$6_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type index_d$6_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type index_d$6_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type index_d$6_UpdateOrderRequest as UpdateOrderRequest, type index_d$6_UpdateOrderResponse as UpdateOrderResponse, type index_d$6_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$6_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type index_d$6_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type index_d$6_UserDataResponse as UserDataResponse, type index_d$6_V1AdditionalFeeRefund as V1AdditionalFeeRefund, type index_d$6_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type index_d$6_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type index_d$6_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type index_d$6_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type index_d$6_V1LineItemDelta as V1LineItemDelta, type index_d$6_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type index_d$6_V1LineItemRefund as V1LineItemRefund, type index_d$6_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$6_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$6_V1PaymentRefund as V1PaymentRefund, type index_d$6_V1RefundDetails as V1RefundDetails, type index_d$6_V1RefundSideEffects as V1RefundSideEffects, type index_d$6_V1RestockItem as V1RestockItem, type index_d$6_V1ShippingRefund as V1ShippingRefund, type index_d$6_ValidationError as ValidationError, type index_d$6_Value as Value, index_d$6_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type index_d$6_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type index_d$6_VersionedDocumentId as VersionedDocumentId, type index_d$6_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, index_d$6_VersioningMode as VersioningMode, type index_d$6_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type index_d$6_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, WebhookIdentityType$5 as WebhookIdentityType, WeightUnit$1 as WeightUnit, index_d$6_bulkUpdateOrders as bulkUpdateOrders, index_d$6_cancelOrder as cancelOrder, index_d$6_createOrder as createOrder, index_d$6_getOrder as getOrder, index_d$6_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, index_d$6_onOrderApproved as onOrderApproved, index_d$6_onOrderCanceled as onOrderCanceled, index_d$6_onOrderCreated as onOrderCreated, index_d$6_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, index_d$6_onOrderUpdated as onOrderUpdated, index_d$6_searchOrders as searchOrders, index_d$6_updateOrder as updateOrder };
24451
+ export { type ActionEvent$5 as ActionEvent, ActionType$1 as ActionType, type Activity$1 as Activity, type index_d$6_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type index_d$6_AddActivitiesRequest as AddActivitiesRequest, type index_d$6_AddActivitiesResponse as AddActivitiesResponse, type index_d$6_AddActivityRequest as AddActivityRequest, type index_d$6_AddActivityResponse as AddActivityResponse, type index_d$6_AddInternalActivityRequest as AddInternalActivityRequest, type index_d$6_AddInternalActivityResponse as AddInternalActivityResponse, type index_d$6_AdditionalFee as AdditionalFee, type index_d$6_AdditionalFeeDelta as AdditionalFeeDelta, type index_d$6_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$1 as AdditionalFeeRefund, type index_d$6_AdditionalFeeRefundOption as AdditionalFeeRefundOption, type Address$3 as Address, type index_d$6_AddressDescription as AddressDescription, type AddressLocation$1 as AddressLocation, type index_d$6_AddressWithContact as AddressWithContact, type index_d$6_AggregateOrdersRequest as AggregateOrdersRequest, type index_d$6_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$1 as AggregatedRefundSummary, type index_d$6_App as App, type ApplicationError$2 as ApplicationError, type index_d$6_AppliedDiscount as AppliedDiscount, type index_d$6_AppliedDiscountDelta as AppliedDiscountDelta, type index_d$6_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type index_d$6_AppliedDiscountDiscountSourceOneOf as AppliedDiscountDiscountSourceOneOf, type index_d$6_ArchiveOrderRequest as ArchiveOrderRequest, type index_d$6_ArchiveOrderResponse as ArchiveOrderResponse, index_d$6_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$1 as AuthorizationActionFailureDetails, type AuthorizationCapture$1 as AuthorizationCapture, AuthorizationCaptureStatus$1 as AuthorizationCaptureStatus, type AuthorizationDetails$1 as AuthorizationDetails, type AuthorizationVoid$1 as AuthorizationVoid, AuthorizationVoidStatus$1 as AuthorizationVoidStatus, type index_d$6_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$6_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$6_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$6_Balance as Balance, type index_d$6_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type index_d$6_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$6_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$6_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$6_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$6_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$6_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$6_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$6_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$6_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$6_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$6_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$6_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$6_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$6_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$6_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$6_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$6_BulkOrderResult as BulkOrderResult, type index_d$6_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$6_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$6_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$6_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$6_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$6_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$6_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$6_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$6_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$6_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type index_d$6_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type index_d$6_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type index_d$6_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$6_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type index_d$6_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type index_d$6_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$6_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$6_CalculateRefundV1Request as CalculateRefundV1Request, type index_d$6_CalculateRefundV1Response as CalculateRefundV1Response, type index_d$6_CalculateRefundV2Request as CalculateRefundV2Request, type index_d$6_CalculateRefundV2Response as CalculateRefundV2Response, type index_d$6_CalculateRefundV2ResponseStatusOneOf as CalculateRefundV2ResponseStatusOneOf, type index_d$6_CalculatedAdditionalFeeRefund as CalculatedAdditionalFeeRefund, type index_d$6_CalculatedLineItemRefund as CalculatedLineItemRefund, type index_d$6_CalculatedRefundDetails as CalculatedRefundDetails, type index_d$6_CalculatedRefundNotAvailableStatus as CalculatedRefundNotAvailableStatus, type index_d$6_CalculatedRefundSummary as CalculatedRefundSummary, type index_d$6_CalculatedShippingRefund as CalculatedShippingRefund, type index_d$6_CalculatedTax as CalculatedTax, type index_d$6_CalculatedTaxes as CalculatedTaxes, type index_d$6_CalculationError as CalculationError, type index_d$6_CalculationErrorItemOneOf as CalculationErrorItemOneOf, type index_d$6_Cancel as Cancel, type index_d$6_CancelOrderOptions as CancelOrderOptions, type index_d$6_CancelOrderRequest as CancelOrderRequest, type index_d$6_CancelOrderResponse as CancelOrderResponse, type index_d$6_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type index_d$6_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type index_d$6_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type index_d$6_CatalogReference as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type index_d$6_ChargeMembershipsRequest as ChargeMembershipsRequest, type index_d$6_ChargeMembershipsResponse as ChargeMembershipsResponse, type index_d$6_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type index_d$6_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type index_d$6_ChargedBy as ChargedBy, type index_d$6_Color as Color, type index_d$6_CommitDeltasRequest as CommitDeltasRequest, type index_d$6_CommitDeltasResponse as CommitDeltasResponse, type index_d$6_CommittedDiffs as CommittedDiffs, type index_d$6_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type index_d$6_CommonAddress as CommonAddress, type index_d$6_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$6_Company as Company, type index_d$6_Complete as Complete, type index_d$6_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type index_d$6_Coupon as Coupon, type index_d$6_CreateOrderRequest as CreateOrderRequest, type index_d$6_CreateOrderResponse as CreateOrderResponse, type index_d$6_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type index_d$6_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type index_d$6_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type index_d$6_CreatedBy as CreatedBy, type index_d$6_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$1 as CreditCardPaymentMethodDetails, type CursorPaging$4 as CursorPaging, type CursorPagingMetadata$4 as CursorPagingMetadata, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 as CursorSearchPagingMethodOneOf, type Cursors$4 as Cursors, type index_d$6_CustomActivity as CustomActivity, type CustomField$1 as CustomField, index_d$6_CustomFieldGroup as CustomFieldGroup, type index_d$6_CustomFieldValue as CustomFieldValue, type index_d$6_Customer as Customer, type index_d$6_DecrementData as DecrementData, type index_d$6_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type index_d$6_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type index_d$6_DeleteActivityRequest as DeleteActivityRequest, type index_d$6_DeleteActivityResponse as DeleteActivityResponse, type index_d$6_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$6_DeleteByIdsOperation as DeleteByIdsOperation, type index_d$6_DeliveryLogistics as DeliveryLogistics, type index_d$6_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type index_d$6_DeliveryTimeSlot as DeliveryTimeSlot, index_d$6_DeltaPaymentOptionType as DeltaPaymentOptionType, type index_d$6_Deposit as Deposit, index_d$6_DepositType as DepositType, type index_d$6_DescriptionLine as DescriptionLine, type index_d$6_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$6_DescriptionLineName as DescriptionLineName, index_d$6_DescriptionLineType as DescriptionLineType, type index_d$6_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type index_d$6_Details as Details, type index_d$6_DetailsKindOneOf as DetailsKindOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type index_d$6_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, index_d$6_DiscountReason as DiscountReason, type index_d$6_DiscountRule as DiscountRule, type index_d$6_DiscountRuleName as DiscountRuleName, index_d$6_DiscountType as DiscountType, type DomainEvent$5 as DomainEvent, type DomainEventBodyOneOf$5 as DomainEventBodyOneOf, type index_d$6_DownloadLinkSent as DownloadLinkSent, type index_d$6_DraftOrderChangesApplied as DraftOrderChangesApplied, type index_d$6_DraftOrderCommitSettings as DraftOrderCommitSettings, type index_d$6_DraftOrderDiffs as DraftOrderDiffs, type index_d$6_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type index_d$6_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type index_d$6_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type index_d$6_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type index_d$6_Email as Email, type index_d$6_EmailEdited as EmailEdited, type Empty$3 as Empty, type EntityCreatedEvent$5 as EntityCreatedEvent, type EntityDeletedEvent$5 as EntityDeletedEvent, type EntityUpdatedEvent$5 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$2 as ExtendedFields, type index_d$6_ExternalUriMapping as ExternalUriMapping, type index_d$6_FieldViolation as FieldViolation, type index_d$6_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$6_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$6_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type index_d$6_FullAddressContactDetails as FullAddressContactDetails, type index_d$6_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$6_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$6_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$6_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$6_GetOrderRequest as GetOrderRequest, type index_d$6_GetOrderResponse as GetOrderResponse, type index_d$6_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$6_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$6_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type index_d$6_GetRefundOptionsRequest as GetRefundOptionsRequest, type index_d$6_GetRefundOptionsResponse as GetRefundOptionsResponse, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type index_d$6_GetShipmentsRequest as GetShipmentsRequest, type index_d$6_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$1 as GiftCardPaymentDetails, type index_d$6_HtmlApplication as HtmlApplication, type index_d$6_IdAndVersion as IdAndVersion, type IdentificationData$5 as IdentificationData, type IdentificationDataIdOneOf$5 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type index_d$6_InternalActivity as InternalActivity, type index_d$6_InternalActivityContentOneOf as InternalActivityContentOneOf, type index_d$6_InternalDocument as InternalDocument, type index_d$6_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type index_d$6_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type index_d$6_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type index_d$6_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type index_d$6_InternalUpdateExistingOperation as InternalUpdateExistingOperation, index_d$6_InventoryAction as InventoryAction, type index_d$6_InventoryUpdateDetails as InventoryUpdateDetails, type index_d$6_InvoiceAdded as InvoiceAdded, type index_d$6_InvoiceDates as InvoiceDates, type index_d$6_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type index_d$6_InvoiceFields as InvoiceFields, type index_d$6_InvoiceSent as InvoiceSent, type index_d$6_InvoiceSentEvent as InvoiceSentEvent, index_d$6_InvoiceStatus as InvoiceStatus, type index_d$6_InvoicesPayment as InvoicesPayment, type index_d$6_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type index_d$6_ItemTaxFullDetails as ItemTaxFullDetails, type index_d$6_ItemType as ItemType, index_d$6_ItemTypeItemType as ItemTypeItemType, type index_d$6_ItemTypeItemTypeDataOneOf as ItemTypeItemTypeDataOneOf, type index_d$6_ItemizedFee as ItemizedFee, index_d$6_JurisdictionType as JurisdictionType, type LineItem$1 as LineItem, type index_d$6_LineItemAmount as LineItemAmount, type index_d$6_LineItemChanges as LineItemChanges, type index_d$6_LineItemDelta as LineItemDelta, type index_d$6_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type index_d$6_LineItemDiscount as LineItemDiscount, type index_d$6_LineItemExchangeData as LineItemExchangeData, type index_d$6_LineItemMetaData as LineItemMetaData, type index_d$6_LineItemPriceChange as LineItemPriceChange, type index_d$6_LineItemQuantityChange as LineItemQuantityChange, index_d$6_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$1 as LineItemRefund, type index_d$6_LineItemRefundOption as LineItemRefundOption, type index_d$6_LineItemTax as LineItemTax, type index_d$6_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$6_LineItemTaxInfo as LineItemTaxInfo, type index_d$6_LineItemUpdate as LineItemUpdate, type index_d$6_LineItems as LineItems, type index_d$6_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type index_d$6_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type index_d$6_Locale as Locale, type index_d$6_LocationAndQuantity as LocationAndQuantity, type index_d$6_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$6_ManagedDiscount as ManagedDiscount, type index_d$6_ManagedLineItem as ManagedLineItem, type index_d$6_ManuallyRefundablePaymentStatus as ManuallyRefundablePaymentStatus, ManuallyRefundableReason$1 as ManuallyRefundableReason, type index_d$6_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type index_d$6_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type index_d$6_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type index_d$6_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type index_d$6_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type index_d$6_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type index_d$6_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type index_d$6_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type index_d$6_MaskedOrder as MaskedOrder, type index_d$6_MaskedOrderLineItem as MaskedOrderLineItem, type index_d$6_MembershipChargeItem as MembershipChargeItem, type MembershipName$1 as MembershipName, type MembershipPaymentDetails$1 as MembershipPaymentDetails, MembershipPaymentStatus$1 as MembershipPaymentStatus, type index_d$6_MembershipPaymentSummary as MembershipPaymentSummary, type index_d$6_MerchantComment as MerchantComment, type index_d$6_MerchantDiscount as MerchantDiscount, type index_d$6_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$5 as MessageEnvelope, type index_d$6_MetaData as MetaData, type index_d$6_MetaSite as MetaSite, type index_d$6_MetaTag as MetaTag, type index_d$6_MonetaryPaymentSummary as MonetaryPaymentSummary, index_d$6_Namespace as Namespace, type index_d$6_NewExchangeOrderCreated as NewExchangeOrderCreated, type index_d$6_NonRefundablePaymentStatus as NonRefundablePaymentStatus, NonRefundableReason$1 as NonRefundableReason, type index_d$6_NotificationSideEffects as NotificationSideEffects, type Order$1 as Order, index_d$6_OrderApprovalStrategy as OrderApprovalStrategy, type index_d$6_OrderApproved as OrderApproved, type index_d$6_OrderApprovedEnvelope as OrderApprovedEnvelope, type index_d$6_OrderCanceled as OrderCanceled, type index_d$6_OrderCanceledEnvelope as OrderCanceledEnvelope, type index_d$6_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type index_d$6_OrderChange as OrderChange, type index_d$6_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$6_OrderCreateNotifications as OrderCreateNotifications, type index_d$6_OrderCreatedEnvelope as OrderCreatedEnvelope, type index_d$6_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$6_OrderCreationSettings as OrderCreationSettings, type index_d$6_OrderDeltasCommitted as OrderDeltasCommitted, type index_d$6_OrderFulfilled as OrderFulfilled, type index_d$6_OrderItemsRestocked as OrderItemsRestocked, type index_d$6_OrderLineItem as OrderLineItem, type index_d$6_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type index_d$6_OrderNonNullableFields as OrderNonNullableFields, type index_d$6_OrderNotFulfilled as OrderNotFulfilled, type index_d$6_OrderPaid as OrderPaid, type index_d$6_OrderPartiallyPaid as OrderPartiallyPaid, type index_d$6_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type index_d$6_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, index_d$6_OrderStatus as OrderStatus, type index_d$6_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$6_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$1 as OrderTransactions, type index_d$6_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type index_d$6_OrdersExperiments as OrdersExperiments, type index_d$6_OrdersV1RestockItem as OrdersV1RestockItem, type Payment$1 as Payment, type index_d$6_PaymentCapture as PaymentCapture, index_d$6_PaymentCollectabilityStatus as PaymentCollectabilityStatus, type index_d$6_PaymentInfo as PaymentInfo, type index_d$6_PaymentInfoPaymentMethodDetailsOneOf as PaymentInfoPaymentMethodDetailsOneOf, type index_d$6_PaymentInfoSummaryOneOf as PaymentInfoSummaryOneOf, index_d$6_PaymentOptionType as PaymentOptionType, type PaymentPaymentDetailsOneOf$1 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$6_PaymentRefundOption as PaymentRefundOption, type index_d$6_PaymentRefundOptionStatusOneOf as PaymentRefundOptionStatusOneOf, PaymentStatus$1 as PaymentStatus, type index_d$6_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$6_Payments as Payments, type index_d$6_PaymentsSummary as PaymentsSummary, type index_d$6_Phone as Phone, type index_d$6_PhysicalProperties as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$1 as PickupDetails, index_d$6_PickupMethod as PickupMethod, type index_d$6_PickupReadyEmailSent as PickupReadyEmailSent, index_d$6_Placement as Placement, type index_d$6_PlainTextValue as PlainTextValue, type index_d$6_PlatformPaging as PlatformPaging, type index_d$6_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$6_PlatformQuery as PlatformQuery, type index_d$6_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d$6_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$6_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type index_d$6_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type index_d$6_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type index_d$6_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type index_d$6_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type index_d$6_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type index_d$6_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type index_d$6_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type index_d$6_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type index_d$6_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type index_d$6_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type index_d$6_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type index_d$6_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, index_d$6_PreviewEmailType as PreviewEmailType, type index_d$6_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type index_d$6_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type index_d$6_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type index_d$6_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type index_d$6_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type index_d$6_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$1 as Price, type index_d$6_PriceDescription as PriceDescription, type index_d$6_PriceSummary as PriceSummary, type index_d$6_ProductName as ProductName, type index_d$6_PublicActivity as PublicActivity, type index_d$6_PublicActivityContentOneOf as PublicActivityContentOneOf, type index_d$6_QueryOrderRequest as QueryOrderRequest, type index_d$6_QueryOrderResponse as QueryOrderResponse, type index_d$6_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type index_d$6_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type index_d$6_QuotesAddress as QuotesAddress, Reason$1 as Reason, type index_d$6_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type index_d$6_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type index_d$6_RedirectUrls as RedirectUrls, type Refund$1 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$1 as RefundDetails, type RefundItem$1 as RefundItem, type index_d$6_RefundRequest as RefundRequest, type index_d$6_RefundResponse as RefundResponse, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$1 as RefundStatus, type RefundTransaction$1 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, index_d$6_RefundabilityManuallyRefundableReason as RefundabilityManuallyRefundableReason, index_d$6_RefundabilityNonRefundableReason as RefundabilityNonRefundableReason, RefundableStatus$1 as RefundableStatus, type RegularPaymentDetails$1 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$6_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, type index_d$6_RestockSideEffects as RestockSideEffects, RestockType$1 as RestockType, type RestoreInfo$5 as RestoreInfo, index_d$6_RuleType as RuleType, type index_d$6_SavedPaymentMethod as SavedPaymentMethod, type ScheduledAction$1 as ScheduledAction, type index_d$6_SearchOrdersOptions as SearchOrdersOptions, type index_d$6_SearchOrdersRequest as SearchOrdersRequest, type index_d$6_SearchOrdersResponse as SearchOrdersResponse, type index_d$6_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type index_d$6_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type index_d$6_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type index_d$6_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type index_d$6_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type index_d$6_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type index_d$6_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type index_d$6_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type index_d$6_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type index_d$6_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type index_d$6_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type index_d$6_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type index_d$6_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type index_d$6_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type index_d$6_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type index_d$6_SeoData as SeoData, type index_d$6_ServiceProperties as ServiceProperties, type index_d$6_ShippingAddressEdited as ShippingAddressEdited, type index_d$6_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type index_d$6_ShippingInformation as ShippingInformation, type index_d$6_ShippingPrice as ShippingPrice, type ShippingRefund$1 as ShippingRefund, type index_d$6_ShippingRefundOption as ShippingRefundOption, type index_d$6_ShippingRegion as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$4 as SortOrder, type Sorting$4 as Sorting, type index_d$6_Source as Source, index_d$6_SourceType as SourceType, type index_d$6_StandardDetails as StandardDetails, index_d$6_State as State, type StreetAddress$2 as StreetAddress, type index_d$6_Subdivision as Subdivision, index_d$6_SubdivisionType as SubdivisionType, SubscriptionFrequency$1 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type index_d$6_SystemError as SystemError, type index_d$6_TagList as TagList, type index_d$6_Tags as Tags, type index_d$6_Task as Task, type index_d$6_TaskAction as TaskAction, type index_d$6_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$6_TaskKey as TaskKey, type index_d$6_TaxSummary as TaxSummary, type index_d$6_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type index_d$6_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type index_d$6_TotalPrice as TotalPrice, type index_d$6_TotalPriceChange as TotalPriceChange, type index_d$6_TrackingLinkAdded as TrackingLinkAdded, type index_d$6_TrackingNumberAdded as TrackingNumberAdded, type index_d$6_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$1 as TransactionStatus, type index_d$6_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type index_d$6_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type index_d$6_TriggerReindexRequest as TriggerReindexRequest, type index_d$6_TriggerReindexResponse as TriggerReindexResponse, type index_d$6_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type index_d$6_UnArchiveOrderRequest as UnArchiveOrderRequest, type index_d$6_UnArchiveOrderResponse as UnArchiveOrderResponse, type index_d$6_UpdateActivityRequest as UpdateActivityRequest, type index_d$6_UpdateActivityResponse as UpdateActivityResponse, type index_d$6_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type index_d$6_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type index_d$6_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type index_d$6_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type index_d$6_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type index_d$6_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type index_d$6_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type index_d$6_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type index_d$6_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type index_d$6_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type index_d$6_UpdateOrder as UpdateOrder, type index_d$6_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type index_d$6_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type index_d$6_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type index_d$6_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type index_d$6_UpdateOrderRequest as UpdateOrderRequest, type index_d$6_UpdateOrderResponse as UpdateOrderResponse, type index_d$6_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$6_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type index_d$6_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type index_d$6_UserDataResponse as UserDataResponse, type index_d$6_V1AdditionalFeeRefund as V1AdditionalFeeRefund, type index_d$6_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type index_d$6_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type index_d$6_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type index_d$6_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type index_d$6_V1LineItemDelta as V1LineItemDelta, type index_d$6_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type index_d$6_V1LineItemRefund as V1LineItemRefund, type index_d$6_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$6_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$6_V1PaymentRefund as V1PaymentRefund, type index_d$6_V1RefundDetails as V1RefundDetails, type index_d$6_V1RefundSideEffects as V1RefundSideEffects, type index_d$6_V1RestockItem as V1RestockItem, type index_d$6_V1ShippingRefund as V1ShippingRefund, type index_d$6_ValidationError as ValidationError, type index_d$6_Value as Value, index_d$6_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type index_d$6_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type index_d$6_VersionedDocumentId as VersionedDocumentId, type index_d$6_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, index_d$6_VersioningMode as VersioningMode, type index_d$6_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type index_d$6_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, WebhookIdentityType$5 as WebhookIdentityType, WeightUnit$1 as WeightUnit, index_d$6_bulkUpdateOrders as bulkUpdateOrders, index_d$6_cancelOrder as cancelOrder, index_d$6_createOrder as createOrder, index_d$6_getOrder as getOrder, index_d$6_onOrderApproved as onOrderApproved, index_d$6_onOrderCanceled as onOrderCanceled, index_d$6_onOrderCreated as onOrderCreated, index_d$6_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, index_d$6_onOrderUpdated as onOrderUpdated, index_d$6_searchOrders as searchOrders, index_d$6_updateOrder as updateOrder };
24438
24452
  }
24439
24453
 
24440
24454
  interface OrderTransactions {
@@ -24522,7 +24536,7 @@ interface AuthorizationDetails {
24522
24536
  interface AuthorizationCapture {
24523
24537
  }
24524
24538
  declare enum AuthorizationCaptureStatus {
24525
- /** Whethe capture operation still in progress */
24539
+ /** Whether capture operation still in progress */
24526
24540
  PENDING = "PENDING",
24527
24541
  /** The capture operation was succeeded */
24528
24542
  SUCCEEDED = "SUCCEEDED",
@@ -24550,6 +24564,28 @@ declare enum AuthorizationVoidStatus {
24550
24564
  /** The void operation was failed */
24551
24565
  FAILED = "FAILED"
24552
24566
  }
24567
+ /**
24568
+ * Reason the authorization was voided.
24569
+ *
24570
+ * + `MANUAL`: Authorization was voided by user.
24571
+ * + `SCHEDULED`: Authorization passed execution date.
24572
+ */
24573
+ declare enum Reason {
24574
+ UNKNOWN_REASON = "UNKNOWN_REASON",
24575
+ MANUAL = "MANUAL",
24576
+ SCHEDULED = "SCHEDULED"
24577
+ }
24578
+ interface ScheduledAction {
24579
+ /** type of the action */
24580
+ actionType?: ActionType;
24581
+ /** the date and time of the action */
24582
+ executionDate?: Date;
24583
+ }
24584
+ declare enum ActionType {
24585
+ UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
24586
+ VOID = "VOID",
24587
+ CAPTURE = "CAPTURE"
24588
+ }
24553
24589
  interface GiftCardPaymentDetails {
24554
24590
  /** Gift card payment ID. */
24555
24591
  giftCardPaymentId?: string;
@@ -25997,11 +26033,16 @@ interface AuthorizationCaptureNonNullableFields {
25997
26033
  interface AuthorizationVoidNonNullableFields {
25998
26034
  status: AuthorizationVoidStatus;
25999
26035
  failureDetails?: AuthorizationActionFailureDetailsNonNullableFields;
26036
+ reason: Reason;
26037
+ }
26038
+ interface ScheduledActionNonNullableFields {
26039
+ actionType: ActionType;
26000
26040
  }
26001
26041
  interface AuthorizationDetailsNonNullableFields {
26002
26042
  delayedCapture: boolean;
26003
26043
  captures: AuthorizationCaptureNonNullableFields[];
26004
26044
  void?: AuthorizationVoidNonNullableFields;
26045
+ scheduledAction?: ScheduledActionNonNullableFields;
26005
26046
  }
26006
26047
  interface RegularPaymentDetailsNonNullableFields {
26007
26048
  offlinePayment: boolean;
@@ -26192,6 +26233,8 @@ declare const updatePaymentStatus: ReturnType<typeof createRESTModule$5<typeof p
26192
26233
  declare const bulkUpdatePaymentStatuses: ReturnType<typeof createRESTModule$5<typeof publicBulkUpdatePaymentStatuses>>;
26193
26234
  declare const onOrderTransactionsUpdated: ReturnType<typeof createEventModule$4<typeof publicOnOrderTransactionsUpdated>>;
26194
26235
 
26236
+ type index_d$5_ActionType = ActionType;
26237
+ declare const index_d$5_ActionType: typeof ActionType;
26195
26238
  type index_d$5_Activity = Activity;
26196
26239
  type index_d$5_ActivityType = ActivityType;
26197
26240
  declare const index_d$5_ActivityType: typeof ActivityType;
@@ -26305,6 +26348,8 @@ type index_d$5_PaymentsUpdated = PaymentsUpdated;
26305
26348
  type index_d$5_PickupAddress = PickupAddress;
26306
26349
  type index_d$5_PickupDetails = PickupDetails;
26307
26350
  type index_d$5_Price = Price;
26351
+ type index_d$5_Reason = Reason;
26352
+ declare const index_d$5_Reason: typeof Reason;
26308
26353
  type index_d$5_Refund = Refund;
26309
26354
  type index_d$5_RefundCreated = RefundCreated;
26310
26355
  type index_d$5_RefundDetails = RefundDetails;
@@ -26323,6 +26368,7 @@ type index_d$5_RestockInfo = RestockInfo;
26323
26368
  type index_d$5_RestockItem = RestockItem;
26324
26369
  type index_d$5_RestockType = RestockType;
26325
26370
  declare const index_d$5_RestockType: typeof RestockType;
26371
+ type index_d$5_ScheduledAction = ScheduledAction;
26326
26372
  type index_d$5_SearchOrderTransactionsRequest = SearchOrderTransactionsRequest;
26327
26373
  type index_d$5_SearchOrderTransactionsResponse = SearchOrderTransactionsResponse;
26328
26374
  type index_d$5_ShipmentDetails = ShipmentDetails;
@@ -26364,7 +26410,7 @@ declare const index_d$5_listTransactionsForSingleOrder: typeof listTransactionsF
26364
26410
  declare const index_d$5_onOrderTransactionsUpdated: typeof onOrderTransactionsUpdated;
26365
26411
  declare const index_d$5_updatePaymentStatus: typeof updatePaymentStatus;
26366
26412
  declare namespace index_d$5 {
26367
- export { type ActionEvent$4 as ActionEvent, type index_d$5_Activity as Activity, index_d$5_ActivityType as ActivityType, type index_d$5_AddInvoiceToOrderRequest as AddInvoiceToOrderRequest, type index_d$5_AddInvoiceToOrderResponse as AddInvoiceToOrderResponse, type index_d$5_AddPaymentsRequest as AddPaymentsRequest, type index_d$5_AddPaymentsResponse as AddPaymentsResponse, type index_d$5_AddPaymentsResponseNonNullableFields as AddPaymentsResponseNonNullableFields, type index_d$5_AddRefundRequest as AddRefundRequest, type index_d$5_AddRefundResponse as AddRefundResponse, type index_d$5_AdditionalFeeRefund as AdditionalFeeRefund, type Address$2 as Address, type index_d$5_AddressAddressLine1OptionsOneOf as AddressAddressLine1OptionsOneOf, type index_d$5_AggregatedRefundSummary as AggregatedRefundSummary, type ApplicationError$1 as ApplicationError, type index_d$5_AppliedCoupon as AppliedCoupon, type index_d$5_AuthorizationActionFailureDetails as AuthorizationActionFailureDetails, type index_d$5_AuthorizationCapture as AuthorizationCapture, index_d$5_AuthorizationCaptureStatus as AuthorizationCaptureStatus, type index_d$5_AuthorizationDetails as AuthorizationDetails, type index_d$5_AuthorizationVoid as AuthorizationVoid, index_d$5_AuthorizationVoidStatus as AuthorizationVoidStatus, type BaseEventMetadata$4 as BaseEventMetadata, type index_d$5_BillingInfo as BillingInfo, type index_d$5_BulkActionMetadata as BulkActionMetadata, type index_d$5_BulkGenerateInvoicesRequest as BulkGenerateInvoicesRequest, type index_d$5_BulkGenerateInvoicesResponse as BulkGenerateInvoicesResponse, type index_d$5_BulkInvoiceResult as BulkInvoiceResult, type index_d$5_BulkPaymentResult as BulkPaymentResult, type index_d$5_BulkUpdatePaymentStatusesOptions as BulkUpdatePaymentStatusesOptions, type index_d$5_BulkUpdatePaymentStatusesRequest as BulkUpdatePaymentStatusesRequest, type index_d$5_BulkUpdatePaymentStatusesResponse as BulkUpdatePaymentStatusesResponse, type index_d$5_BulkUpdatePaymentStatusesResponseNonNullableFields as BulkUpdatePaymentStatusesResponseNonNullableFields, type index_d$5_BuyerDetails as BuyerDetails, type index_d$5_BuyerInfo as BuyerInfo, type index_d$5_CalculateRefundItemRequest as CalculateRefundItemRequest, type index_d$5_CalculateRefundItemResponse as CalculateRefundItemResponse, type index_d$5_CalculateRefundRequest as CalculateRefundRequest, type index_d$5_CalculateRefundResponse as CalculateRefundResponse, type index_d$5_ChannelInfo as ChannelInfo, index_d$5_ChannelType as ChannelType, type index_d$5_CreditCardPaymentMethodDetails as CreditCardPaymentMethodDetails, type CursorPaging$3 as CursorPaging, type CursorPagingMetadata$3 as CursorPagingMetadata, type index_d$5_CursorSearch as CursorSearch, type index_d$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$3 as Cursors, type index_d$5_CustomField as CustomField, type index_d$5_CustomTextFieldSelection as CustomTextFieldSelection, type DiffmatokyPayload$1 as DiffmatokyPayload, type index_d$5_DigitalFile as DigitalFile, type index_d$5_Discount as Discount, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type index_d$5_EnteredBy as EnteredBy, index_d$5_EnteredByIdentityType as EnteredByIdentityType, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type ErrorInformation$1 as ErrorInformation, type EventMetadata$4 as EventMetadata, type index_d$5_Fulfillment as Fulfillment, type index_d$5_FulfillmentLineItem as FulfillmentLineItem, index_d$5_FulfillmentStatus as FulfillmentStatus, type index_d$5_FulfillmentTrackingInfo as FulfillmentTrackingInfo, type index_d$5_FullName as FullName, type index_d$5_GenerateInvoiceRequest as GenerateInvoiceRequest, type index_d$5_GenerateInvoiceResponse as GenerateInvoiceResponse, type index_d$5_GetRefundabilityStatusRequest as GetRefundabilityStatusRequest, type index_d$5_GetRefundabilityStatusResponse as GetRefundabilityStatusResponse, type index_d$5_GiftCard as GiftCard, type index_d$5_GiftCardPaymentDetails as GiftCardPaymentDetails, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, index_d$5_IdentityType as IdentityType, type index_d$5_IndexingMessage as IndexingMessage, type index_d$5_InvoiceForOrder as InvoiceForOrder, type index_d$5_InvoiceInfo as InvoiceInfo, index_d$5_InvoiceSource as InvoiceSource, type index_d$5_InvoicesForOrder as InvoicesForOrder, type index_d$5_ItemMetadata as ItemMetadata, type index_d$5_LineItem as LineItem, type index_d$5_LineItemPriceData as LineItemPriceData, type index_d$5_LineItemRefund as LineItemRefund, index_d$5_LineItemType as LineItemType, type index_d$5_ListInvoicesForMultipleOrdersRequest as ListInvoicesForMultipleOrdersRequest, type index_d$5_ListInvoicesForMultipleOrdersResponse as ListInvoicesForMultipleOrdersResponse, type index_d$5_ListInvoicesForSingleOrderRequest as ListInvoicesForSingleOrderRequest, type index_d$5_ListInvoicesForSingleOrderResponse as ListInvoicesForSingleOrderResponse, type index_d$5_ListTransactionsForMultipleOrdersRequest as ListTransactionsForMultipleOrdersRequest, type index_d$5_ListTransactionsForMultipleOrdersResponse as ListTransactionsForMultipleOrdersResponse, type index_d$5_ListTransactionsForMultipleOrdersResponseNonNullableFields as ListTransactionsForMultipleOrdersResponseNonNullableFields, type index_d$5_ListTransactionsForSingleOrderRequest as ListTransactionsForSingleOrderRequest, type index_d$5_ListTransactionsForSingleOrderResponse as ListTransactionsForSingleOrderResponse, type index_d$5_ListTransactionsForSingleOrderResponseNonNullableFields as ListTransactionsForSingleOrderResponseNonNullableFields, index_d$5_ManuallyRefundableReason as ManuallyRefundableReason, type index_d$5_MediaItem as MediaItem, index_d$5_MediaItemType as MediaItemType, type index_d$5_MembershipName as MembershipName, type index_d$5_MembershipPaymentDetails as MembershipPaymentDetails, index_d$5_MembershipPaymentStatus as MembershipPaymentStatus, type MessageEnvelope$4 as MessageEnvelope, index_d$5_NonRefundableReason as NonRefundableReason, type index_d$5_OptionSelection as OptionSelection, type index_d$5_Order as Order, type index_d$5_OrderRefunded as OrderRefunded, type index_d$5_OrderTransactions as OrderTransactions, type index_d$5_OrderTransactionsUpdatedEnvelope as OrderTransactionsUpdatedEnvelope, type index_d$5_Payment as Payment, type index_d$5_PaymentAndOrderId as PaymentAndOrderId, type index_d$5_PaymentPaymentDetailsOneOf as PaymentPaymentDetailsOneOf, type index_d$5_PaymentRefund as PaymentRefund, index_d$5_PaymentStatus as PaymentStatus, type index_d$5_PaymentsUpdated as PaymentsUpdated, type index_d$5_PickupAddress as PickupAddress, type index_d$5_PickupDetails as PickupDetails, type index_d$5_Price as Price, type index_d$5_Refund as Refund, type index_d$5_RefundCreated as RefundCreated, type index_d$5_RefundDetails as RefundDetails, type index_d$5_RefundItem as RefundItem, type index_d$5_RefundSideEffects as RefundSideEffects, index_d$5_RefundStatus as RefundStatus, type index_d$5_RefundTransaction as RefundTransaction, type index_d$5_Refundability as Refundability, type index_d$5_RefundabilityAdditionalRefundabilityInfoOneOf as RefundabilityAdditionalRefundabilityInfoOneOf, index_d$5_RefundableStatus as RefundableStatus, type index_d$5_RegularPaymentDetails as RegularPaymentDetails, type index_d$5_RegularPaymentDetailsPaymentMethodDetailsOneOf as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$5_RestockInfo as RestockInfo, type index_d$5_RestockItem as RestockItem, index_d$5_RestockType as RestockType, type RestoreInfo$4 as RestoreInfo, type index_d$5_SearchOrderTransactionsRequest as SearchOrderTransactionsRequest, type index_d$5_SearchOrderTransactionsResponse as SearchOrderTransactionsResponse, type index_d$5_ShipmentDetails as ShipmentDetails, type index_d$5_ShippingInfo as ShippingInfo, type index_d$5_ShippingInfoDetailsOneOf as ShippingInfoDetailsOneOf, type index_d$5_ShippingPriceData as ShippingPriceData, type index_d$5_ShippingRefund as ShippingRefund, type index_d$5_SnapshotMessage as SnapshotMessage, SortOrder$3 as SortOrder, type Sorting$3 as Sorting, type index_d$5_Street as Street, index_d$5_SubscriptionFrequency as SubscriptionFrequency, type index_d$5_SubscriptionInfo as SubscriptionInfo, type index_d$5_SubscriptionOptionInfo as SubscriptionOptionInfo, type index_d$5_SubscriptionSettings as SubscriptionSettings, type index_d$5_Totals as Totals, type index_d$5_TrackingInfo as TrackingInfo, index_d$5_TransactionStatus as TransactionStatus, type index_d$5_TriggerRefundRequest as TriggerRefundRequest, type index_d$5_TriggerRefundResponse as TriggerRefundResponse, type index_d$5_UpdatePaymentStatusIdentifiers as UpdatePaymentStatusIdentifiers, type index_d$5_UpdatePaymentStatusOptions as UpdatePaymentStatusOptions, type index_d$5_UpdatePaymentStatusRequest as UpdatePaymentStatusRequest, type index_d$5_UpdatePaymentStatusResponse as UpdatePaymentStatusResponse, type index_d$5_UpdatePaymentStatusResponseNonNullableFields as UpdatePaymentStatusResponseNonNullableFields, type index_d$5_UpdateRefundTransactionRequest as UpdateRefundTransactionRequest, type index_d$5_UpdateRefundTransactionResponse as UpdateRefundTransactionResponse, type index_d$5_V2InvoiceInfo as V2InvoiceInfo, type index_d$5_V2Refund as V2Refund, type index_d$5_VatId as VatId, index_d$5_VatType as VatType, WebhookIdentityType$4 as WebhookIdentityType, index_d$5_WeightUnit as WeightUnit, index_d$5_addPayments as addPayments, index_d$5_bulkUpdatePaymentStatuses as bulkUpdatePaymentStatuses, index_d$5_listTransactionsForMultipleOrders as listTransactionsForMultipleOrders, index_d$5_listTransactionsForSingleOrder as listTransactionsForSingleOrder, index_d$5_onOrderTransactionsUpdated as onOrderTransactionsUpdated, index_d$5_updatePaymentStatus as updatePaymentStatus };
26413
+ export { type ActionEvent$4 as ActionEvent, index_d$5_ActionType as ActionType, type index_d$5_Activity as Activity, index_d$5_ActivityType as ActivityType, type index_d$5_AddInvoiceToOrderRequest as AddInvoiceToOrderRequest, type index_d$5_AddInvoiceToOrderResponse as AddInvoiceToOrderResponse, type index_d$5_AddPaymentsRequest as AddPaymentsRequest, type index_d$5_AddPaymentsResponse as AddPaymentsResponse, type index_d$5_AddPaymentsResponseNonNullableFields as AddPaymentsResponseNonNullableFields, type index_d$5_AddRefundRequest as AddRefundRequest, type index_d$5_AddRefundResponse as AddRefundResponse, type index_d$5_AdditionalFeeRefund as AdditionalFeeRefund, type Address$2 as Address, type index_d$5_AddressAddressLine1OptionsOneOf as AddressAddressLine1OptionsOneOf, type index_d$5_AggregatedRefundSummary as AggregatedRefundSummary, type ApplicationError$1 as ApplicationError, type index_d$5_AppliedCoupon as AppliedCoupon, type index_d$5_AuthorizationActionFailureDetails as AuthorizationActionFailureDetails, type index_d$5_AuthorizationCapture as AuthorizationCapture, index_d$5_AuthorizationCaptureStatus as AuthorizationCaptureStatus, type index_d$5_AuthorizationDetails as AuthorizationDetails, type index_d$5_AuthorizationVoid as AuthorizationVoid, index_d$5_AuthorizationVoidStatus as AuthorizationVoidStatus, type BaseEventMetadata$4 as BaseEventMetadata, type index_d$5_BillingInfo as BillingInfo, type index_d$5_BulkActionMetadata as BulkActionMetadata, type index_d$5_BulkGenerateInvoicesRequest as BulkGenerateInvoicesRequest, type index_d$5_BulkGenerateInvoicesResponse as BulkGenerateInvoicesResponse, type index_d$5_BulkInvoiceResult as BulkInvoiceResult, type index_d$5_BulkPaymentResult as BulkPaymentResult, type index_d$5_BulkUpdatePaymentStatusesOptions as BulkUpdatePaymentStatusesOptions, type index_d$5_BulkUpdatePaymentStatusesRequest as BulkUpdatePaymentStatusesRequest, type index_d$5_BulkUpdatePaymentStatusesResponse as BulkUpdatePaymentStatusesResponse, type index_d$5_BulkUpdatePaymentStatusesResponseNonNullableFields as BulkUpdatePaymentStatusesResponseNonNullableFields, type index_d$5_BuyerDetails as BuyerDetails, type index_d$5_BuyerInfo as BuyerInfo, type index_d$5_CalculateRefundItemRequest as CalculateRefundItemRequest, type index_d$5_CalculateRefundItemResponse as CalculateRefundItemResponse, type index_d$5_CalculateRefundRequest as CalculateRefundRequest, type index_d$5_CalculateRefundResponse as CalculateRefundResponse, type index_d$5_ChannelInfo as ChannelInfo, index_d$5_ChannelType as ChannelType, type index_d$5_CreditCardPaymentMethodDetails as CreditCardPaymentMethodDetails, type CursorPaging$3 as CursorPaging, type CursorPagingMetadata$3 as CursorPagingMetadata, type index_d$5_CursorSearch as CursorSearch, type index_d$5_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$3 as Cursors, type index_d$5_CustomField as CustomField, type index_d$5_CustomTextFieldSelection as CustomTextFieldSelection, type DiffmatokyPayload$1 as DiffmatokyPayload, type index_d$5_DigitalFile as DigitalFile, type index_d$5_Discount as Discount, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type index_d$5_EnteredBy as EnteredBy, index_d$5_EnteredByIdentityType as EnteredByIdentityType, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type ErrorInformation$1 as ErrorInformation, type EventMetadata$4 as EventMetadata, type index_d$5_Fulfillment as Fulfillment, type index_d$5_FulfillmentLineItem as FulfillmentLineItem, index_d$5_FulfillmentStatus as FulfillmentStatus, type index_d$5_FulfillmentTrackingInfo as FulfillmentTrackingInfo, type index_d$5_FullName as FullName, type index_d$5_GenerateInvoiceRequest as GenerateInvoiceRequest, type index_d$5_GenerateInvoiceResponse as GenerateInvoiceResponse, type index_d$5_GetRefundabilityStatusRequest as GetRefundabilityStatusRequest, type index_d$5_GetRefundabilityStatusResponse as GetRefundabilityStatusResponse, type index_d$5_GiftCard as GiftCard, type index_d$5_GiftCardPaymentDetails as GiftCardPaymentDetails, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, index_d$5_IdentityType as IdentityType, type index_d$5_IndexingMessage as IndexingMessage, type index_d$5_InvoiceForOrder as InvoiceForOrder, type index_d$5_InvoiceInfo as InvoiceInfo, index_d$5_InvoiceSource as InvoiceSource, type index_d$5_InvoicesForOrder as InvoicesForOrder, type index_d$5_ItemMetadata as ItemMetadata, type index_d$5_LineItem as LineItem, type index_d$5_LineItemPriceData as LineItemPriceData, type index_d$5_LineItemRefund as LineItemRefund, index_d$5_LineItemType as LineItemType, type index_d$5_ListInvoicesForMultipleOrdersRequest as ListInvoicesForMultipleOrdersRequest, type index_d$5_ListInvoicesForMultipleOrdersResponse as ListInvoicesForMultipleOrdersResponse, type index_d$5_ListInvoicesForSingleOrderRequest as ListInvoicesForSingleOrderRequest, type index_d$5_ListInvoicesForSingleOrderResponse as ListInvoicesForSingleOrderResponse, type index_d$5_ListTransactionsForMultipleOrdersRequest as ListTransactionsForMultipleOrdersRequest, type index_d$5_ListTransactionsForMultipleOrdersResponse as ListTransactionsForMultipleOrdersResponse, type index_d$5_ListTransactionsForMultipleOrdersResponseNonNullableFields as ListTransactionsForMultipleOrdersResponseNonNullableFields, type index_d$5_ListTransactionsForSingleOrderRequest as ListTransactionsForSingleOrderRequest, type index_d$5_ListTransactionsForSingleOrderResponse as ListTransactionsForSingleOrderResponse, type index_d$5_ListTransactionsForSingleOrderResponseNonNullableFields as ListTransactionsForSingleOrderResponseNonNullableFields, index_d$5_ManuallyRefundableReason as ManuallyRefundableReason, type index_d$5_MediaItem as MediaItem, index_d$5_MediaItemType as MediaItemType, type index_d$5_MembershipName as MembershipName, type index_d$5_MembershipPaymentDetails as MembershipPaymentDetails, index_d$5_MembershipPaymentStatus as MembershipPaymentStatus, type MessageEnvelope$4 as MessageEnvelope, index_d$5_NonRefundableReason as NonRefundableReason, type index_d$5_OptionSelection as OptionSelection, type index_d$5_Order as Order, type index_d$5_OrderRefunded as OrderRefunded, type index_d$5_OrderTransactions as OrderTransactions, type index_d$5_OrderTransactionsUpdatedEnvelope as OrderTransactionsUpdatedEnvelope, type index_d$5_Payment as Payment, type index_d$5_PaymentAndOrderId as PaymentAndOrderId, type index_d$5_PaymentPaymentDetailsOneOf as PaymentPaymentDetailsOneOf, type index_d$5_PaymentRefund as PaymentRefund, index_d$5_PaymentStatus as PaymentStatus, type index_d$5_PaymentsUpdated as PaymentsUpdated, type index_d$5_PickupAddress as PickupAddress, type index_d$5_PickupDetails as PickupDetails, type index_d$5_Price as Price, index_d$5_Reason as Reason, type index_d$5_Refund as Refund, type index_d$5_RefundCreated as RefundCreated, type index_d$5_RefundDetails as RefundDetails, type index_d$5_RefundItem as RefundItem, type index_d$5_RefundSideEffects as RefundSideEffects, index_d$5_RefundStatus as RefundStatus, type index_d$5_RefundTransaction as RefundTransaction, type index_d$5_Refundability as Refundability, type index_d$5_RefundabilityAdditionalRefundabilityInfoOneOf as RefundabilityAdditionalRefundabilityInfoOneOf, index_d$5_RefundableStatus as RefundableStatus, type index_d$5_RegularPaymentDetails as RegularPaymentDetails, type index_d$5_RegularPaymentDetailsPaymentMethodDetailsOneOf as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$5_RestockInfo as RestockInfo, type index_d$5_RestockItem as RestockItem, index_d$5_RestockType as RestockType, type RestoreInfo$4 as RestoreInfo, type index_d$5_ScheduledAction as ScheduledAction, type index_d$5_SearchOrderTransactionsRequest as SearchOrderTransactionsRequest, type index_d$5_SearchOrderTransactionsResponse as SearchOrderTransactionsResponse, type index_d$5_ShipmentDetails as ShipmentDetails, type index_d$5_ShippingInfo as ShippingInfo, type index_d$5_ShippingInfoDetailsOneOf as ShippingInfoDetailsOneOf, type index_d$5_ShippingPriceData as ShippingPriceData, type index_d$5_ShippingRefund as ShippingRefund, type index_d$5_SnapshotMessage as SnapshotMessage, SortOrder$3 as SortOrder, type Sorting$3 as Sorting, type index_d$5_Street as Street, index_d$5_SubscriptionFrequency as SubscriptionFrequency, type index_d$5_SubscriptionInfo as SubscriptionInfo, type index_d$5_SubscriptionOptionInfo as SubscriptionOptionInfo, type index_d$5_SubscriptionSettings as SubscriptionSettings, type index_d$5_Totals as Totals, type index_d$5_TrackingInfo as TrackingInfo, index_d$5_TransactionStatus as TransactionStatus, type index_d$5_TriggerRefundRequest as TriggerRefundRequest, type index_d$5_TriggerRefundResponse as TriggerRefundResponse, type index_d$5_UpdatePaymentStatusIdentifiers as UpdatePaymentStatusIdentifiers, type index_d$5_UpdatePaymentStatusOptions as UpdatePaymentStatusOptions, type index_d$5_UpdatePaymentStatusRequest as UpdatePaymentStatusRequest, type index_d$5_UpdatePaymentStatusResponse as UpdatePaymentStatusResponse, type index_d$5_UpdatePaymentStatusResponseNonNullableFields as UpdatePaymentStatusResponseNonNullableFields, type index_d$5_UpdateRefundTransactionRequest as UpdateRefundTransactionRequest, type index_d$5_UpdateRefundTransactionResponse as UpdateRefundTransactionResponse, type index_d$5_V2InvoiceInfo as V2InvoiceInfo, type index_d$5_V2Refund as V2Refund, type index_d$5_VatId as VatId, index_d$5_VatType as VatType, WebhookIdentityType$4 as WebhookIdentityType, index_d$5_WeightUnit as WeightUnit, index_d$5_addPayments as addPayments, index_d$5_bulkUpdatePaymentStatuses as bulkUpdatePaymentStatuses, index_d$5_listTransactionsForMultipleOrders as listTransactionsForMultipleOrders, index_d$5_listTransactionsForSingleOrder as listTransactionsForSingleOrder, index_d$5_onOrderTransactionsUpdated as onOrderTransactionsUpdated, index_d$5_updatePaymentStatus as updatePaymentStatus };
26368
26414
  }
26369
26415
 
26370
26416
  interface OrdersSettings {
@@ -23333,23 +23333,6 @@ interface Cursors$7 {
23333
23333
  /** Cursor pointing to the previous page in the list of results. */
23334
23334
  prev?: string | null;
23335
23335
  }
23336
- interface GetPaymentCollectabilityStatusRequest$1 {
23337
- /** Ecom order ID. */
23338
- ecomOrderId: string;
23339
- }
23340
- interface GetPaymentCollectabilityStatusResponse$1 {
23341
- /** Payment collectability status */
23342
- status?: PaymentCollectabilityStatus$1;
23343
- /** Collectable order amount */
23344
- amount?: Price$3;
23345
- }
23346
- declare enum PaymentCollectabilityStatus$1 {
23347
- UNKNOWN = "UNKNOWN",
23348
- COLLECTABLE = "COLLECTABLE",
23349
- NONCOLLECTABLE_ORDER_IS_CANCELLED = "NONCOLLECTABLE_ORDER_IS_CANCELLED",
23350
- NONCOLLECTABLE_ORDER_IS_PAID = "NONCOLLECTABLE_ORDER_IS_PAID",
23351
- NONCOLLECTABLE_MISSING_PAYMENT_METHOD = "NONCOLLECTABLE_MISSING_PAYMENT_METHOD"
23352
- }
23353
23336
  interface BulkOrderResult$1 {
23354
23337
  /** Item metadata. */
23355
23338
  itemMetadata?: ItemMetadata$3;
@@ -23502,15 +23485,6 @@ interface CancelOrderResponse$1 {
23502
23485
  /** Canceled order. */
23503
23486
  order?: Order$1;
23504
23487
  }
23505
- interface PriceNonNullableFields$3 {
23506
- amount: string;
23507
- formattedAmount: string;
23508
- }
23509
- interface GetPaymentCollectabilityStatusResponseNonNullableFields$1 {
23510
- status: PaymentCollectabilityStatus$1;
23511
- amount?: PriceNonNullableFields$3;
23512
- authorizationSupported: boolean;
23513
- }
23514
23488
  interface ProductNameNonNullableFields$1 {
23515
23489
  original: string;
23516
23490
  }
@@ -23518,6 +23492,10 @@ interface CatalogReferenceNonNullableFields$1 {
23518
23492
  catalogItemId: string;
23519
23493
  appId: string;
23520
23494
  }
23495
+ interface PriceNonNullableFields$3 {
23496
+ amount: string;
23497
+ formattedAmount: string;
23498
+ }
23521
23499
  interface PlainTextValueNonNullableFields$1 {
23522
23500
  original: string;
23523
23501
  }
@@ -25019,23 +24997,6 @@ interface Cursors$6 {
25019
24997
  /** Cursor pointing to the previous page in the list of results. */
25020
24998
  prev?: string | null;
25021
24999
  }
25022
- interface GetPaymentCollectabilityStatusRequest {
25023
- /** Ecom order ID. */
25024
- ecomOrderId: string;
25025
- }
25026
- interface GetPaymentCollectabilityStatusResponse {
25027
- /** Payment collectability status */
25028
- status?: PaymentCollectabilityStatus;
25029
- /** Collectable order amount */
25030
- amount?: Price$2;
25031
- }
25032
- declare enum PaymentCollectabilityStatus {
25033
- UNKNOWN = "UNKNOWN",
25034
- COLLECTABLE = "COLLECTABLE",
25035
- NONCOLLECTABLE_ORDER_IS_CANCELLED = "NONCOLLECTABLE_ORDER_IS_CANCELLED",
25036
- NONCOLLECTABLE_ORDER_IS_PAID = "NONCOLLECTABLE_ORDER_IS_PAID",
25037
- NONCOLLECTABLE_MISSING_PAYMENT_METHOD = "NONCOLLECTABLE_MISSING_PAYMENT_METHOD"
25038
- }
25039
25000
  interface BulkOrderResult {
25040
25001
  /** Item metadata. */
25041
25002
  itemMetadata?: ItemMetadata$2;
@@ -25188,15 +25149,6 @@ interface CancelOrderResponse {
25188
25149
  /** Canceled order. */
25189
25150
  order?: Order;
25190
25151
  }
25191
- interface PriceNonNullableFields$2 {
25192
- amount: string;
25193
- formattedAmount: string;
25194
- }
25195
- interface GetPaymentCollectabilityStatusResponseNonNullableFields {
25196
- status: PaymentCollectabilityStatus;
25197
- amount?: PriceNonNullableFields$2;
25198
- authorizationSupported: boolean;
25199
- }
25200
25152
  interface ProductNameNonNullableFields {
25201
25153
  original: string;
25202
25154
  }
@@ -25204,6 +25156,10 @@ interface CatalogReferenceNonNullableFields {
25204
25156
  catalogItemId: string;
25205
25157
  appId: string;
25206
25158
  }
25159
+ interface PriceNonNullableFields$2 {
25160
+ amount: string;
25161
+ formattedAmount: string;
25162
+ }
25207
25163
  interface PlainTextValueNonNullableFields {
25208
25164
  original: string;
25209
25165
  }
@@ -25613,9 +25569,6 @@ type __PublicMethodMetaInfo$6<K = string, M = unknown, T = unknown, S = unknown,
25613
25569
  __responseType: Q;
25614
25570
  __originalResponseType: R;
25615
25571
  };
25616
- declare function getPaymentCollectabilityStatus(): __PublicMethodMetaInfo$6<'GET', {
25617
- ecomOrderId: string;
25618
- }, GetPaymentCollectabilityStatusRequest, GetPaymentCollectabilityStatusRequest$1, GetPaymentCollectabilityStatusResponse & GetPaymentCollectabilityStatusResponseNonNullableFields, GetPaymentCollectabilityStatusResponse$1 & GetPaymentCollectabilityStatusResponseNonNullableFields$1>;
25619
25572
  declare function getOrder(): __PublicMethodMetaInfo$6<'GET', {
25620
25573
  id: string;
25621
25574
  }, GetOrderRequest, GetOrderRequest$1, GetOrderResponse & GetOrderResponseNonNullableFields, GetOrderResponse$1 & GetOrderResponseNonNullableFields$1>;
@@ -25633,11 +25586,10 @@ declare const meta$6_bulkUpdateOrders: typeof bulkUpdateOrders;
25633
25586
  declare const meta$6_cancelOrder: typeof cancelOrder;
25634
25587
  declare const meta$6_createOrder: typeof createOrder;
25635
25588
  declare const meta$6_getOrder: typeof getOrder;
25636
- declare const meta$6_getPaymentCollectabilityStatus: typeof getPaymentCollectabilityStatus;
25637
25589
  declare const meta$6_searchOrders: typeof searchOrders;
25638
25590
  declare const meta$6_updateOrder: typeof updateOrder;
25639
25591
  declare namespace meta$6 {
25640
- export { type __PublicMethodMetaInfo$6 as __PublicMethodMetaInfo, meta$6_bulkUpdateOrders as bulkUpdateOrders, meta$6_cancelOrder as cancelOrder, meta$6_createOrder as createOrder, meta$6_getOrder as getOrder, meta$6_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, meta$6_searchOrders as searchOrders, meta$6_updateOrder as updateOrder };
25592
+ export { type __PublicMethodMetaInfo$6 as __PublicMethodMetaInfo, meta$6_bulkUpdateOrders as bulkUpdateOrders, meta$6_cancelOrder as cancelOrder, meta$6_createOrder as createOrder, meta$6_getOrder as getOrder, meta$6_searchOrders as searchOrders, meta$6_updateOrder as updateOrder };
25641
25593
  }
25642
25594
 
25643
25595
  interface OrderTransactions$1 {
@@ -25719,7 +25671,7 @@ declare enum TransactionStatus$1 {
25719
25671
  VOIDED = "VOIDED"
25720
25672
  }
25721
25673
  declare enum AuthorizationCaptureStatus$1 {
25722
- /** Whethe capture operation still in progress */
25674
+ /** Whether capture operation still in progress */
25723
25675
  PENDING = "PENDING",
25724
25676
  /** The capture operation was succeeded */
25725
25677
  SUCCEEDED = "SUCCEEDED",
@@ -25743,6 +25695,22 @@ declare enum AuthorizationVoidStatus$1 {
25743
25695
  /** The void operation was failed */
25744
25696
  FAILED = "FAILED"
25745
25697
  }
25698
+ /**
25699
+ * Reason the authorization was voided.
25700
+ *
25701
+ * + `MANUAL`: Authorization was voided by user.
25702
+ * + `SCHEDULED`: Authorization passed execution date.
25703
+ */
25704
+ declare enum Reason$1 {
25705
+ UNKNOWN_REASON = "UNKNOWN_REASON",
25706
+ MANUAL = "MANUAL",
25707
+ SCHEDULED = "SCHEDULED"
25708
+ }
25709
+ declare enum ActionType$1 {
25710
+ UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
25711
+ VOID = "VOID",
25712
+ CAPTURE = "CAPTURE"
25713
+ }
25746
25714
  interface GiftCardPaymentDetails$1 {
25747
25715
  /** Gift card payment ID. */
25748
25716
  giftCardPaymentId?: string;
@@ -25920,11 +25888,16 @@ interface AuthorizationCaptureNonNullableFields$1 {
25920
25888
  interface AuthorizationVoidNonNullableFields$1 {
25921
25889
  status: AuthorizationVoidStatus$1;
25922
25890
  failureDetails?: AuthorizationActionFailureDetailsNonNullableFields$1;
25891
+ reason: Reason$1;
25892
+ }
25893
+ interface ScheduledActionNonNullableFields$1 {
25894
+ actionType: ActionType$1;
25923
25895
  }
25924
25896
  interface AuthorizationDetailsNonNullableFields$1 {
25925
25897
  delayedCapture: boolean;
25926
25898
  captures: AuthorizationCaptureNonNullableFields$1[];
25927
25899
  void?: AuthorizationVoidNonNullableFields$1;
25900
+ scheduledAction?: ScheduledActionNonNullableFields$1;
25928
25901
  }
25929
25902
  interface RegularPaymentDetailsNonNullableFields$1 {
25930
25903
  offlinePayment: boolean;
@@ -26117,7 +26090,7 @@ declare enum TransactionStatus {
26117
26090
  VOIDED = "VOIDED"
26118
26091
  }
26119
26092
  declare enum AuthorizationCaptureStatus {
26120
- /** Whethe capture operation still in progress */
26093
+ /** Whether capture operation still in progress */
26121
26094
  PENDING = "PENDING",
26122
26095
  /** The capture operation was succeeded */
26123
26096
  SUCCEEDED = "SUCCEEDED",
@@ -26141,6 +26114,22 @@ declare enum AuthorizationVoidStatus {
26141
26114
  /** The void operation was failed */
26142
26115
  FAILED = "FAILED"
26143
26116
  }
26117
+ /**
26118
+ * Reason the authorization was voided.
26119
+ *
26120
+ * + `MANUAL`: Authorization was voided by user.
26121
+ * + `SCHEDULED`: Authorization passed execution date.
26122
+ */
26123
+ declare enum Reason {
26124
+ UNKNOWN_REASON = "UNKNOWN_REASON",
26125
+ MANUAL = "MANUAL",
26126
+ SCHEDULED = "SCHEDULED"
26127
+ }
26128
+ declare enum ActionType {
26129
+ UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
26130
+ VOID = "VOID",
26131
+ CAPTURE = "CAPTURE"
26132
+ }
26144
26133
  interface GiftCardPaymentDetails {
26145
26134
  /** Gift card payment ID. */
26146
26135
  giftCardPaymentId?: string;
@@ -26318,11 +26307,16 @@ interface AuthorizationCaptureNonNullableFields {
26318
26307
  interface AuthorizationVoidNonNullableFields {
26319
26308
  status: AuthorizationVoidStatus;
26320
26309
  failureDetails?: AuthorizationActionFailureDetailsNonNullableFields;
26310
+ reason: Reason;
26311
+ }
26312
+ interface ScheduledActionNonNullableFields {
26313
+ actionType: ActionType;
26321
26314
  }
26322
26315
  interface AuthorizationDetailsNonNullableFields {
26323
26316
  delayedCapture: boolean;
26324
26317
  captures: AuthorizationCaptureNonNullableFields[];
26325
26318
  void?: AuthorizationVoidNonNullableFields;
26319
+ scheduledAction?: ScheduledActionNonNullableFields;
26326
26320
  }
26327
26321
  interface RegularPaymentDetailsNonNullableFields {
26328
26322
  offlinePayment: boolean;