@wix/ecom 1.0.792 → 1.0.794

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.
@@ -3953,17 +3953,15 @@ interface QueryV2$1 extends QueryV2PagingMethodOneOf$1 {
3953
3953
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
3954
3954
  cursorPaging?: CursorPaging$a;
3955
3955
  /**
3956
- * Filter object in the following format:
3957
- * `"filter" : {
3958
- * "fieldName1": "value1",
3959
- * "fieldName2":{"$operator":"value2"}
3960
- * }`
3961
- * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
3956
+ * Filter object.
3957
+ *
3958
+ * Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
3962
3959
  */
3963
3960
  filter?: Record<string, any> | null;
3964
3961
  /**
3965
- * Sort object in the following format:
3966
- * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
3962
+ * Sort object.
3963
+ *
3964
+ * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
3967
3965
  */
3968
3966
  sort?: Sorting$a[];
3969
3967
  /** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
@@ -4333,6 +4331,9 @@ interface QueryAbandonedCheckoutsResponseNonNullableFields {
4333
4331
  results: AbandonedCheckoutNonNullableFields[];
4334
4332
  abandonedCheckouts: AbandonedCheckoutNonNullableFields[];
4335
4333
  }
4334
+ interface SearchAbandonedCheckoutsResponseNonNullableFields {
4335
+ abandonedCheckouts: AbandonedCheckoutNonNullableFields[];
4336
+ }
4336
4337
  interface HeadersEntryNonNullableFields$1 {
4337
4338
  key: string;
4338
4339
  value: string;
@@ -4468,6 +4469,10 @@ interface AbandonedCheckoutsQueryBuilder {
4468
4469
  /** @documentationMaturity preview */
4469
4470
  find: () => Promise<AbandonedCheckoutsQueryResult>;
4470
4471
  }
4472
+ interface SearchAbandonedCheckoutsOptions {
4473
+ /** WQL query expression. */
4474
+ search?: Search;
4475
+ }
4471
4476
 
4472
4477
  declare function getAbandonedCheckout$1(httpClient: HttpClient): GetAbandonedCheckoutSignature;
4473
4478
  interface GetAbandonedCheckoutSignature {
@@ -4499,6 +4504,13 @@ interface QueryAbandonedCheckoutsSignature {
4499
4504
  */
4500
4505
  (): AbandonedCheckoutsQueryBuilder;
4501
4506
  }
4507
+ declare function searchAbandonedCheckouts$1(httpClient: HttpClient): SearchAbandonedCheckoutsSignature;
4508
+ interface SearchAbandonedCheckoutsSignature {
4509
+ /**
4510
+ * Retrieves a list of abandoned checkouts, given the provided paging, filtering, searchDetails and sorting. Up to 100 abandoned checkouts can be returned per request.
4511
+ */
4512
+ (options?: SearchAbandonedCheckoutsOptions | undefined): Promise<SearchAbandonedCheckoutsResponse & SearchAbandonedCheckoutsResponseNonNullableFields>;
4513
+ }
4502
4514
  declare function redirectToCheckout$1(httpClient: HttpClient): RedirectToCheckoutSignature;
4503
4515
  interface RedirectToCheckoutSignature {
4504
4516
  /**
@@ -4515,6 +4527,7 @@ declare function createEventModule$e<T extends EventDefinition<any, string>>(eve
4515
4527
  declare const getAbandonedCheckout: MaybeContext<BuildRESTFunction<typeof getAbandonedCheckout$1> & typeof getAbandonedCheckout$1>;
4516
4528
  declare const deleteAbandonedCheckout: MaybeContext<BuildRESTFunction<typeof deleteAbandonedCheckout$1> & typeof deleteAbandonedCheckout$1>;
4517
4529
  declare const queryAbandonedCheckouts: MaybeContext<BuildRESTFunction<typeof queryAbandonedCheckouts$1> & typeof queryAbandonedCheckouts$1>;
4530
+ declare const searchAbandonedCheckouts: MaybeContext<BuildRESTFunction<typeof searchAbandonedCheckouts$1> & typeof searchAbandonedCheckouts$1>;
4518
4531
  declare const redirectToCheckout: MaybeContext<BuildRESTFunction<typeof redirectToCheckout$1> & typeof redirectToCheckout$1>;
4519
4532
 
4520
4533
  type _publicOnAbandonedCheckoutRecoveredType = typeof onAbandonedCheckoutRecovered$1;
@@ -4555,8 +4568,10 @@ type index_d$m_QueryAbandonedCheckoutsResponse = QueryAbandonedCheckoutsResponse
4555
4568
  type index_d$m_QueryAbandonedCheckoutsResponseNonNullableFields = QueryAbandonedCheckoutsResponseNonNullableFields;
4556
4569
  type index_d$m_RedirectToCheckoutRequest = RedirectToCheckoutRequest;
4557
4570
  type index_d$m_Search = Search;
4571
+ type index_d$m_SearchAbandonedCheckoutsOptions = SearchAbandonedCheckoutsOptions;
4558
4572
  type index_d$m_SearchAbandonedCheckoutsRequest = SearchAbandonedCheckoutsRequest;
4559
4573
  type index_d$m_SearchAbandonedCheckoutsResponse = SearchAbandonedCheckoutsResponse;
4574
+ type index_d$m_SearchAbandonedCheckoutsResponseNonNullableFields = SearchAbandonedCheckoutsResponseNonNullableFields;
4560
4575
  type index_d$m_SearchDetails = SearchDetails;
4561
4576
  type index_d$m_SearchPagingMethodOneOf = SearchPagingMethodOneOf;
4562
4577
  type index_d$m_V1BuyerInfoIdOneOf = V1BuyerInfoIdOneOf;
@@ -4566,8 +4581,9 @@ declare const index_d$m_getAbandonedCheckout: typeof getAbandonedCheckout;
4566
4581
  declare const index_d$m_onAbandonedCheckoutRecovered: typeof onAbandonedCheckoutRecovered;
4567
4582
  declare const index_d$m_queryAbandonedCheckouts: typeof queryAbandonedCheckouts;
4568
4583
  declare const index_d$m_redirectToCheckout: typeof redirectToCheckout;
4584
+ declare const index_d$m_searchAbandonedCheckouts: typeof searchAbandonedCheckouts;
4569
4585
  declare namespace index_d$m {
4570
- export { type index_d$m_AbandonedCheckout as AbandonedCheckout, type index_d$m_AbandonedCheckoutNonNullableFields as AbandonedCheckoutNonNullableFields, type index_d$m_AbandonedCheckoutRecovered as AbandonedCheckoutRecovered, type index_d$m_AbandonedCheckoutRecoveredEnvelope as AbandonedCheckoutRecoveredEnvelope, type index_d$m_AbandonedCheckoutsQueryBuilder as AbandonedCheckoutsQueryBuilder, type index_d$m_AbandonedCheckoutsQueryResult as AbandonedCheckoutsQueryResult, type ActionEvent$i as ActionEvent, type Activity$3 as Activity, ActivityType$3 as ActivityType, type index_d$m_AddAbandonedCheckoutActivityRequest as AddAbandonedCheckoutActivityRequest, type index_d$m_AddAbandonedCheckoutActivityResponse as AddAbandonedCheckoutActivityResponse, type BaseEventMetadata$e as BaseEventMetadata, type BuyerInfo$8 as BuyerInfo, type Cancel$1 as Cancel, type index_d$m_CartAbandonedEvent as CartAbandonedEvent, type index_d$m_CartRecoveredEvent as CartRecoveredEvent, type index_d$m_CommonCursorPaging as CommonCursorPaging, type index_d$m_CommonCursors as CommonCursors, type index_d$m_CommonPaging as CommonPaging, type index_d$m_CommonPagingMetadataV2 as CommonPagingMetadataV2, index_d$m_CommonSortOrder as CommonSortOrder, type index_d$m_CommonSorting as CommonSorting, type Complete$1 as Complete, type CursorPaging$a as CursorPaging, type Cursors$a as Cursors, type index_d$m_DeleteAbandonedCheckoutRequest as DeleteAbandonedCheckoutRequest, type index_d$m_DeleteAbandonedCheckoutResponse as DeleteAbandonedCheckoutResponse, type DomainEvent$i as DomainEvent, type DomainEventBodyOneOf$i as DomainEventBodyOneOf, type Empty$d as Empty, type EntityCreatedEvent$i as EntityCreatedEvent, type EntityDeletedEvent$i as EntityDeletedEvent, type EntityUpdatedEvent$i as EntityUpdatedEvent, type EventMetadata$e as EventMetadata, type FullAddressContactDetails$7 as FullAddressContactDetails, type index_d$m_GetAbandonedCheckoutRequest as GetAbandonedCheckoutRequest, type index_d$m_GetAbandonedCheckoutResponse as GetAbandonedCheckoutResponse, type index_d$m_GetAbandonedCheckoutResponseNonNullableFields as GetAbandonedCheckoutResponseNonNullableFields, type HeadersEntry$1 as HeadersEntry, type IdentificationData$h as IdentificationData, type IdentificationDataIdOneOf$h as IdentificationDataIdOneOf, index_d$m_Identity as Identity, type MessageEnvelope$h as MessageEnvelope, index_d$m_Mode as Mode, type MultiCurrencyPrice$5 as MultiCurrencyPrice, type Paging$1 as Paging, type index_d$m_PagingMetadataV2 as PagingMetadataV2, type index_d$m_QueryAbandonedCheckoutsRequest as QueryAbandonedCheckoutsRequest, type index_d$m_QueryAbandonedCheckoutsResponse as QueryAbandonedCheckoutsResponse, type index_d$m_QueryAbandonedCheckoutsResponseNonNullableFields as QueryAbandonedCheckoutsResponseNonNullableFields, type QueryV2$1 as QueryV2, type QueryV2PagingMethodOneOf$1 as QueryV2PagingMethodOneOf, type RawHttpResponse$1 as RawHttpResponse, type RawHttpResponseNonNullableFields$1 as RawHttpResponseNonNullableFields, type index_d$m_RedirectToCheckoutRequest as RedirectToCheckoutRequest, type Reschedule$1 as Reschedule, type RestoreInfo$i as RestoreInfo, type index_d$m_Search as Search, type index_d$m_SearchAbandonedCheckoutsRequest as SearchAbandonedCheckoutsRequest, type index_d$m_SearchAbandonedCheckoutsResponse as SearchAbandonedCheckoutsResponse, type index_d$m_SearchDetails as SearchDetails, type index_d$m_SearchPagingMethodOneOf as SearchPagingMethodOneOf, SortOrder$a as SortOrder, type Sorting$a as Sorting, Status$4 as Status, type Task$1 as Task, type TaskAction$1 as TaskAction, type TaskActionActionOneOf$1 as TaskActionActionOneOf, type TaskKey$1 as TaskKey, type Totals$2 as Totals, type V1BuyerInfo$1 as V1BuyerInfo, type index_d$m_V1BuyerInfoIdOneOf as V1BuyerInfoIdOneOf, type VatId$8 as VatId, VatType$8 as VatType, WebhookIdentityType$h as WebhookIdentityType, type index_d$m__publicOnAbandonedCheckoutRecoveredType as _publicOnAbandonedCheckoutRecoveredType, index_d$m_deleteAbandonedCheckout as deleteAbandonedCheckout, index_d$m_getAbandonedCheckout as getAbandonedCheckout, index_d$m_onAbandonedCheckoutRecovered as onAbandonedCheckoutRecovered, onAbandonedCheckoutRecovered$1 as publicOnAbandonedCheckoutRecovered, index_d$m_queryAbandonedCheckouts as queryAbandonedCheckouts, index_d$m_redirectToCheckout as redirectToCheckout };
4586
+ export { type index_d$m_AbandonedCheckout as AbandonedCheckout, type index_d$m_AbandonedCheckoutNonNullableFields as AbandonedCheckoutNonNullableFields, type index_d$m_AbandonedCheckoutRecovered as AbandonedCheckoutRecovered, type index_d$m_AbandonedCheckoutRecoveredEnvelope as AbandonedCheckoutRecoveredEnvelope, type index_d$m_AbandonedCheckoutsQueryBuilder as AbandonedCheckoutsQueryBuilder, type index_d$m_AbandonedCheckoutsQueryResult as AbandonedCheckoutsQueryResult, type ActionEvent$i as ActionEvent, type Activity$3 as Activity, ActivityType$3 as ActivityType, type index_d$m_AddAbandonedCheckoutActivityRequest as AddAbandonedCheckoutActivityRequest, type index_d$m_AddAbandonedCheckoutActivityResponse as AddAbandonedCheckoutActivityResponse, type BaseEventMetadata$e as BaseEventMetadata, type BuyerInfo$8 as BuyerInfo, type Cancel$1 as Cancel, type index_d$m_CartAbandonedEvent as CartAbandonedEvent, type index_d$m_CartRecoveredEvent as CartRecoveredEvent, type index_d$m_CommonCursorPaging as CommonCursorPaging, type index_d$m_CommonCursors as CommonCursors, type index_d$m_CommonPaging as CommonPaging, type index_d$m_CommonPagingMetadataV2 as CommonPagingMetadataV2, index_d$m_CommonSortOrder as CommonSortOrder, type index_d$m_CommonSorting as CommonSorting, type Complete$1 as Complete, type CursorPaging$a as CursorPaging, type Cursors$a as Cursors, type index_d$m_DeleteAbandonedCheckoutRequest as DeleteAbandonedCheckoutRequest, type index_d$m_DeleteAbandonedCheckoutResponse as DeleteAbandonedCheckoutResponse, type DomainEvent$i as DomainEvent, type DomainEventBodyOneOf$i as DomainEventBodyOneOf, type Empty$d as Empty, type EntityCreatedEvent$i as EntityCreatedEvent, type EntityDeletedEvent$i as EntityDeletedEvent, type EntityUpdatedEvent$i as EntityUpdatedEvent, type EventMetadata$e as EventMetadata, type FullAddressContactDetails$7 as FullAddressContactDetails, type index_d$m_GetAbandonedCheckoutRequest as GetAbandonedCheckoutRequest, type index_d$m_GetAbandonedCheckoutResponse as GetAbandonedCheckoutResponse, type index_d$m_GetAbandonedCheckoutResponseNonNullableFields as GetAbandonedCheckoutResponseNonNullableFields, type HeadersEntry$1 as HeadersEntry, type IdentificationData$h as IdentificationData, type IdentificationDataIdOneOf$h as IdentificationDataIdOneOf, index_d$m_Identity as Identity, type MessageEnvelope$h as MessageEnvelope, index_d$m_Mode as Mode, type MultiCurrencyPrice$5 as MultiCurrencyPrice, type Paging$1 as Paging, type index_d$m_PagingMetadataV2 as PagingMetadataV2, type index_d$m_QueryAbandonedCheckoutsRequest as QueryAbandonedCheckoutsRequest, type index_d$m_QueryAbandonedCheckoutsResponse as QueryAbandonedCheckoutsResponse, type index_d$m_QueryAbandonedCheckoutsResponseNonNullableFields as QueryAbandonedCheckoutsResponseNonNullableFields, type QueryV2$1 as QueryV2, type QueryV2PagingMethodOneOf$1 as QueryV2PagingMethodOneOf, type RawHttpResponse$1 as RawHttpResponse, type RawHttpResponseNonNullableFields$1 as RawHttpResponseNonNullableFields, type index_d$m_RedirectToCheckoutRequest as RedirectToCheckoutRequest, type Reschedule$1 as Reschedule, type RestoreInfo$i as RestoreInfo, type index_d$m_Search as Search, type index_d$m_SearchAbandonedCheckoutsOptions as SearchAbandonedCheckoutsOptions, type index_d$m_SearchAbandonedCheckoutsRequest as SearchAbandonedCheckoutsRequest, type index_d$m_SearchAbandonedCheckoutsResponse as SearchAbandonedCheckoutsResponse, type index_d$m_SearchAbandonedCheckoutsResponseNonNullableFields as SearchAbandonedCheckoutsResponseNonNullableFields, type index_d$m_SearchDetails as SearchDetails, type index_d$m_SearchPagingMethodOneOf as SearchPagingMethodOneOf, SortOrder$a as SortOrder, type Sorting$a as Sorting, Status$4 as Status, type Task$1 as Task, type TaskAction$1 as TaskAction, type TaskActionActionOneOf$1 as TaskActionActionOneOf, type TaskKey$1 as TaskKey, type Totals$2 as Totals, type V1BuyerInfo$1 as V1BuyerInfo, type index_d$m_V1BuyerInfoIdOneOf as V1BuyerInfoIdOneOf, type VatId$8 as VatId, VatType$8 as VatType, WebhookIdentityType$h as WebhookIdentityType, type index_d$m__publicOnAbandonedCheckoutRecoveredType as _publicOnAbandonedCheckoutRecoveredType, index_d$m_deleteAbandonedCheckout as deleteAbandonedCheckout, index_d$m_getAbandonedCheckout as getAbandonedCheckout, index_d$m_onAbandonedCheckoutRecovered as onAbandonedCheckoutRecovered, onAbandonedCheckoutRecovered$1 as publicOnAbandonedCheckoutRecovered, index_d$m_queryAbandonedCheckouts as queryAbandonedCheckouts, index_d$m_redirectToCheckout as redirectToCheckout, index_d$m_searchAbandonedCheckouts as searchAbandonedCheckouts };
4571
4587
  }
4572
4588
 
4573
4589
  /**
@@ -20606,6 +20622,10 @@ interface RefundInitiated$1 {
20606
20622
  interface RefundedPayment$1 extends RefundedPaymentKindOneOf$1 {
20607
20623
  /** Regular payment refund. */
20608
20624
  regular?: RegularPaymentRefund$1;
20625
+ /** Gift card payment refund. */
20626
+ giftCard?: GiftCardPaymentRefund$1;
20627
+ /** Membership payment refund. */
20628
+ membership?: MembershipPaymentRefund$1;
20609
20629
  /** Payment ID. */
20610
20630
  paymentId?: string;
20611
20631
  /** Whether refund was made externally and manually on the payment provider's side. */
@@ -20615,6 +20635,10 @@ interface RefundedPayment$1 extends RefundedPaymentKindOneOf$1 {
20615
20635
  interface RefundedPaymentKindOneOf$1 {
20616
20636
  /** Regular payment refund. */
20617
20637
  regular?: RegularPaymentRefund$1;
20638
+ /** Gift card payment refund. */
20639
+ giftCard?: GiftCardPaymentRefund$1;
20640
+ /** Membership payment refund. */
20641
+ membership?: MembershipPaymentRefund$1;
20618
20642
  }
20619
20643
  interface RegularPaymentRefund$1 {
20620
20644
  /** Refund amount */
@@ -20624,6 +20648,16 @@ interface RegularPaymentRefund$1 {
20624
20648
  /** Card issuer's brand. */
20625
20649
  brand?: string | null;
20626
20650
  }
20651
+ interface GiftCardPaymentRefund$1 {
20652
+ /** Gift card payment ID */
20653
+ giftCardPaymentId?: string | null;
20654
+ /** Refund amount */
20655
+ amount?: Price$3;
20656
+ }
20657
+ interface MembershipPaymentRefund$1 {
20658
+ /** Membership ID */
20659
+ membershipId?: string | null;
20660
+ }
20627
20661
  interface PaymentRefunded$1 {
20628
20662
  /** Refund ID. */
20629
20663
  refundId?: string;
@@ -21586,8 +21620,12 @@ interface AuthorizedPaymentVoidedNonNullableFields$1 {
21586
21620
  interface RegularPaymentRefundNonNullableFields$1 {
21587
21621
  amount?: PriceNonNullableFields$3;
21588
21622
  }
21623
+ interface GiftCardPaymentRefundNonNullableFields$1 {
21624
+ amount?: PriceNonNullableFields$3;
21625
+ }
21589
21626
  interface RefundedPaymentNonNullableFields$1 {
21590
21627
  regular?: RegularPaymentRefundNonNullableFields$1;
21628
+ giftCard?: GiftCardPaymentRefundNonNullableFields$1;
21591
21629
  paymentId: string;
21592
21630
  externalRefund: boolean;
21593
21631
  }
@@ -21660,6 +21698,7 @@ interface V1BalanceSummaryNonNullableFields {
21660
21698
  refunded?: PriceNonNullableFields$3;
21661
21699
  authorized?: PriceNonNullableFields$3;
21662
21700
  pendingRefund?: PriceNonNullableFields$3;
21701
+ pending?: PriceNonNullableFields$3;
21663
21702
  }
21664
21703
  interface TagListNonNullableFields$1 {
21665
21704
  tagIds: string[];
@@ -22148,7 +22187,7 @@ declare const index_d$d_setRecipientInfo: typeof setRecipientInfo;
22148
22187
  declare const index_d$d_setShippingInfo: typeof setShippingInfo;
22149
22188
  declare const index_d$d_updateLineItems: typeof updateLineItems;
22150
22189
  declare namespace index_d$d {
22151
- export { type ActionEvent$a as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type index_d$d_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type index_d$d_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type index_d$d_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type index_d$d_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type index_d$d_AdditionalFeeDetails as AdditionalFeeDetails, type index_d$d_AdditionalFeeOption as AdditionalFeeOption, type Address$6 as Address, type AddressLocation$5 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$6 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, index_d$d_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type index_d$d_BillingChangedDetails as BillingChangedDetails, type index_d$d_BillingDetails as BillingDetails, type index_d$d_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type index_d$d_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type index_d$d_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$d_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$2 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$3 as CatalogReference, type index_d$d_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type index_d$d_CommitDraftOrderOptions as CommitDraftOrderOptions, type index_d$d_CommitDraftOrderRequest as CommitDraftOrderRequest, type index_d$d_CommitDraftOrderResponse as CommitDraftOrderResponse, type index_d$d_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type index_d$d_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type index_d$d_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type index_d$d_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type index_d$d_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type index_d$d_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type index_d$d_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type index_d$d_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type index_d$d_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type index_d$d_CreateDraftOrderRequest as CreateDraftOrderRequest, type index_d$d_CreateDraftOrderResponse as CreateDraftOrderResponse, type index_d$d_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type index_d$d_CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequest, type index_d$d_CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponse, type index_d$d_CreateEmptyDraftOrderResponseNonNullableFields as CreateEmptyDraftOrderResponseNonNullableFields, type index_d$d_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type index_d$d_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type index_d$d_CreateOrderFromDraftResponseNonNullableFields as CreateOrderFromDraftResponseNonNullableFields, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CreditCardDetails$1 as CreditCardDetails, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type index_d$d_CustomLineItem as CustomLineItem, type index_d$d_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type index_d$d_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type index_d$d_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type index_d$d_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type index_d$d_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type index_d$d_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type index_d$d_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type index_d$d_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$3 as DeliveryLogistics, type DeliveryTimeSlot$3 as DeliveryTimeSlot, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$2 as Details, type DetailsKindOneOf$2 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type index_d$d_DiscountDetails as DiscountDetails, type index_d$d_DiscountOption as DiscountOption, type index_d$d_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$a as DomainEvent, type DomainEventBodyOneOf$a as DomainEventBodyOneOf, type index_d$d_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type index_d$d_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type index_d$d_DraftOrdersQueryResult as DraftOrdersQueryResult, index_d$d_EditingStatus as EditingStatus, type EntityCreatedEvent$a as EntityCreatedEvent, type EntityDeletedEvent$a as EntityDeletedEvent, type EntityUpdatedEvent$a as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$2 as FieldViolation, index_d$d_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$2 as FullAddressContactDetails, type index_d$d_GetDraftEditabilityStatusRequest as GetDraftEditabilityStatusRequest, type index_d$d_GetDraftEditabilityStatusResponse as GetDraftEditabilityStatusResponse, type index_d$d_GetDraftOrderRequest as GetDraftOrderRequest, type index_d$d_GetDraftOrderResponse as GetDraftOrderResponse, type index_d$d_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type index_d$d_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type index_d$d_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type index_d$d_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type index_d$d_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type index_d$d_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type index_d$d_ItemDetails as ItemDetails, type index_d$d_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type index_d$d_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, index_d$d_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type index_d$d_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, type PaymentCanceled$1 as PaymentCanceled, type PaymentCanceledPaymentDetailsOneOf$1 as PaymentCanceledPaymentDetailsOneOf, type PaymentDeclined$1 as PaymentDeclined, type PaymentDeclinedPaymentDetailsOneOf$1 as PaymentDeclinedPaymentDetailsOneOf, PaymentOptionType$2 as PaymentOptionType, type PaymentPending$1 as PaymentPending, type PaymentPendingPaymentDetailsOneOf$1 as PaymentPendingPaymentDetailsOneOf, type PaymentRefundFailed$1 as PaymentRefundFailed, type PaymentRefunded$1 as PaymentRefunded, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$3 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$4 as PickupDetails, index_d$d_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$3 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type index_d$d_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type index_d$d_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type index_d$d_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type index_d$d_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type index_d$d_RecipientInfoDetails as RecipientInfoDetails, type index_d$d_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated$1 as RefundInitiated, type RefundedAsStoreCredit$1 as RefundedAsStoreCredit, type RefundedPayment$1 as RefundedPayment, type RefundedPaymentKindOneOf$1 as RefundedPaymentKindOneOf, type RegularPayment$1 as RegularPayment, type RegularPaymentPaymentMethodDetailsOneOf$1 as RegularPaymentPaymentMethodDetailsOneOf, type RegularPaymentRefund$1 as RegularPaymentRefund, type RestoreInfo$a as RestoreInfo, RuleType$2 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type index_d$d_SecuredMedia as SecuredMedia, type index_d$d_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type index_d$d_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type index_d$d_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type index_d$d_SetBillingInfoRequest as SetBillingInfoRequest, type index_d$d_SetBillingInfoResponse as SetBillingInfoResponse, type index_d$d_SetBillingInfoResponseNonNullableFields as SetBillingInfoResponseNonNullableFields, type index_d$d_SetBuyerInfoRequest as SetBuyerInfoRequest, type index_d$d_SetBuyerInfoResponse as SetBuyerInfoResponse, type index_d$d_SetBuyerInfoResponseNonNullableFields as SetBuyerInfoResponseNonNullableFields, type index_d$d_SetDiscountsRequest as SetDiscountsRequest, type index_d$d_SetDiscountsResponse as SetDiscountsResponse, type index_d$d_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type index_d$d_SetRecipientInfoRequest as SetRecipientInfoRequest, type index_d$d_SetRecipientInfoResponse as SetRecipientInfoResponse, type index_d$d_SetRecipientInfoResponseNonNullableFields as SetRecipientInfoResponseNonNullableFields, type index_d$d_SetShippingInfoRequest as SetShippingInfoRequest, type index_d$d_SetShippingInfoResponse as SetShippingInfoResponse, type index_d$d_SetShippingInfoResponseNonNullableFields as SetShippingInfoResponseNonNullableFields, type index_d$d_SetTaxExemptionRequest as SetTaxExemptionRequest, type index_d$d_SetTaxExemptionResponse as SetTaxExemptionResponse, type index_d$d_ShippingChangedDetails as ShippingChangedDetails, type index_d$d_ShippingDetails as ShippingDetails, type index_d$d_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$5 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$2 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TaxableAddress$2 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$2 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$2 as TaxableAddressType, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type index_d$d_UpdateLineItemsOptions as UpdateLineItemsOptions, type index_d$d_UpdateLineItemsRequest as UpdateLineItemsRequest, type index_d$d_UpdateLineItemsResponse as UpdateLineItemsResponse, type index_d$d_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type index_d$d_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type index_d$d_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type index_d$d_V1BalanceSummary as V1BalanceSummary, type index_d$d_V1CreatedBy as V1CreatedBy, type index_d$d_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type index_d$d_V1DeliveryLogistics as V1DeliveryLogistics, type index_d$d_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type index_d$d_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type index_d$d_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type index_d$d_V1ShippingPrice as V1ShippingPrice, type ValidationError$2 as ValidationError, type VatId$3 as VatId, VatType$3 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$4 as WeightUnit, index_d$d_addLineItemsToDraftOrder as addLineItemsToDraftOrder, index_d$d_commitDraftOrder as commitDraftOrder, index_d$d_createCustomAdditionalFees as createCustomAdditionalFees, index_d$d_createCustomDiscounts as createCustomDiscounts, index_d$d_createDraftOrder as createDraftOrder, index_d$d_createEmptyDraftOrder as createEmptyDraftOrder, index_d$d_createOrderFromDraft as createOrderFromDraft, index_d$d_deleteCustomAdditionalFees as deleteCustomAdditionalFees, index_d$d_deleteCustomDiscounts as deleteCustomDiscounts, index_d$d_deleteDraftOrder as deleteDraftOrder, index_d$d_getDraftOrder as getDraftOrder, index_d$d_getOrderDraftabilityStatus as getOrderDraftabilityStatus, index_d$d_queryDraftOrders as queryDraftOrders, index_d$d_setAdditionalFees as setAdditionalFees, index_d$d_setBillingInfo as setBillingInfo, index_d$d_setBuyerInfo as setBuyerInfo, index_d$d_setDiscounts as setDiscounts, index_d$d_setRecipientInfo as setRecipientInfo, index_d$d_setShippingInfo as setShippingInfo, index_d$d_updateLineItems as updateLineItems };
22190
+ export { type ActionEvent$a as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type index_d$d_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type index_d$d_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type index_d$d_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type index_d$d_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type index_d$d_AdditionalFeeDetails as AdditionalFeeDetails, type index_d$d_AdditionalFeeOption as AdditionalFeeOption, type Address$6 as Address, type AddressLocation$5 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$6 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, index_d$d_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type index_d$d_BillingChangedDetails as BillingChangedDetails, type index_d$d_BillingDetails as BillingDetails, type index_d$d_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type index_d$d_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type index_d$d_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$d_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$2 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$3 as CatalogReference, type index_d$d_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type index_d$d_CommitDraftOrderOptions as CommitDraftOrderOptions, type index_d$d_CommitDraftOrderRequest as CommitDraftOrderRequest, type index_d$d_CommitDraftOrderResponse as CommitDraftOrderResponse, type index_d$d_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type index_d$d_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type index_d$d_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type index_d$d_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type index_d$d_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type index_d$d_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type index_d$d_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type index_d$d_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type index_d$d_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type index_d$d_CreateDraftOrderRequest as CreateDraftOrderRequest, type index_d$d_CreateDraftOrderResponse as CreateDraftOrderResponse, type index_d$d_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type index_d$d_CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequest, type index_d$d_CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponse, type index_d$d_CreateEmptyDraftOrderResponseNonNullableFields as CreateEmptyDraftOrderResponseNonNullableFields, type index_d$d_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type index_d$d_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type index_d$d_CreateOrderFromDraftResponseNonNullableFields as CreateOrderFromDraftResponseNonNullableFields, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CreditCardDetails$1 as CreditCardDetails, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type index_d$d_CustomLineItem as CustomLineItem, type index_d$d_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type index_d$d_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type index_d$d_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type index_d$d_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type index_d$d_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type index_d$d_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type index_d$d_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type index_d$d_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$3 as DeliveryLogistics, type DeliveryTimeSlot$3 as DeliveryTimeSlot, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$2 as Details, type DetailsKindOneOf$2 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type index_d$d_DiscountDetails as DiscountDetails, type index_d$d_DiscountOption as DiscountOption, type index_d$d_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$a as DomainEvent, type DomainEventBodyOneOf$a as DomainEventBodyOneOf, type index_d$d_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type index_d$d_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type index_d$d_DraftOrdersQueryResult as DraftOrdersQueryResult, index_d$d_EditingStatus as EditingStatus, type EntityCreatedEvent$a as EntityCreatedEvent, type EntityDeletedEvent$a as EntityDeletedEvent, type EntityUpdatedEvent$a as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$2 as FieldViolation, index_d$d_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$2 as FullAddressContactDetails, type index_d$d_GetDraftEditabilityStatusRequest as GetDraftEditabilityStatusRequest, type index_d$d_GetDraftEditabilityStatusResponse as GetDraftEditabilityStatusResponse, type index_d$d_GetDraftOrderRequest as GetDraftOrderRequest, type index_d$d_GetDraftOrderResponse as GetDraftOrderResponse, type index_d$d_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type index_d$d_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type index_d$d_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type index_d$d_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type GiftCardPaymentRefund$1 as GiftCardPaymentRefund, type index_d$d_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type index_d$d_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type index_d$d_ItemDetails as ItemDetails, type index_d$d_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type index_d$d_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MembershipPaymentRefund$1 as MembershipPaymentRefund, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, index_d$d_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type index_d$d_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, type PaymentCanceled$1 as PaymentCanceled, type PaymentCanceledPaymentDetailsOneOf$1 as PaymentCanceledPaymentDetailsOneOf, type PaymentDeclined$1 as PaymentDeclined, type PaymentDeclinedPaymentDetailsOneOf$1 as PaymentDeclinedPaymentDetailsOneOf, PaymentOptionType$2 as PaymentOptionType, type PaymentPending$1 as PaymentPending, type PaymentPendingPaymentDetailsOneOf$1 as PaymentPendingPaymentDetailsOneOf, type PaymentRefundFailed$1 as PaymentRefundFailed, type PaymentRefunded$1 as PaymentRefunded, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$3 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$4 as PickupDetails, index_d$d_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$3 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type index_d$d_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type index_d$d_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type index_d$d_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type index_d$d_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type index_d$d_RecipientInfoDetails as RecipientInfoDetails, type index_d$d_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated$1 as RefundInitiated, type RefundedAsStoreCredit$1 as RefundedAsStoreCredit, type RefundedPayment$1 as RefundedPayment, type RefundedPaymentKindOneOf$1 as RefundedPaymentKindOneOf, type RegularPayment$1 as RegularPayment, type RegularPaymentPaymentMethodDetailsOneOf$1 as RegularPaymentPaymentMethodDetailsOneOf, type RegularPaymentRefund$1 as RegularPaymentRefund, type RestoreInfo$a as RestoreInfo, RuleType$2 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type index_d$d_SecuredMedia as SecuredMedia, type index_d$d_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type index_d$d_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type index_d$d_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type index_d$d_SetBillingInfoRequest as SetBillingInfoRequest, type index_d$d_SetBillingInfoResponse as SetBillingInfoResponse, type index_d$d_SetBillingInfoResponseNonNullableFields as SetBillingInfoResponseNonNullableFields, type index_d$d_SetBuyerInfoRequest as SetBuyerInfoRequest, type index_d$d_SetBuyerInfoResponse as SetBuyerInfoResponse, type index_d$d_SetBuyerInfoResponseNonNullableFields as SetBuyerInfoResponseNonNullableFields, type index_d$d_SetDiscountsRequest as SetDiscountsRequest, type index_d$d_SetDiscountsResponse as SetDiscountsResponse, type index_d$d_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type index_d$d_SetRecipientInfoRequest as SetRecipientInfoRequest, type index_d$d_SetRecipientInfoResponse as SetRecipientInfoResponse, type index_d$d_SetRecipientInfoResponseNonNullableFields as SetRecipientInfoResponseNonNullableFields, type index_d$d_SetShippingInfoRequest as SetShippingInfoRequest, type index_d$d_SetShippingInfoResponse as SetShippingInfoResponse, type index_d$d_SetShippingInfoResponseNonNullableFields as SetShippingInfoResponseNonNullableFields, type index_d$d_SetTaxExemptionRequest as SetTaxExemptionRequest, type index_d$d_SetTaxExemptionResponse as SetTaxExemptionResponse, type index_d$d_ShippingChangedDetails as ShippingChangedDetails, type index_d$d_ShippingDetails as ShippingDetails, type index_d$d_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$5 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$2 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TaxableAddress$2 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$2 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$2 as TaxableAddressType, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type index_d$d_UpdateLineItemsOptions as UpdateLineItemsOptions, type index_d$d_UpdateLineItemsRequest as UpdateLineItemsRequest, type index_d$d_UpdateLineItemsResponse as UpdateLineItemsResponse, type index_d$d_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type index_d$d_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type index_d$d_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type index_d$d_V1BalanceSummary as V1BalanceSummary, type index_d$d_V1CreatedBy as V1CreatedBy, type index_d$d_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type index_d$d_V1DeliveryLogistics as V1DeliveryLogistics, type index_d$d_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type index_d$d_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type index_d$d_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type index_d$d_V1ShippingPrice as V1ShippingPrice, type ValidationError$2 as ValidationError, type VatId$3 as VatId, VatType$3 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$4 as WeightUnit, index_d$d_addLineItemsToDraftOrder as addLineItemsToDraftOrder, index_d$d_commitDraftOrder as commitDraftOrder, index_d$d_createCustomAdditionalFees as createCustomAdditionalFees, index_d$d_createCustomDiscounts as createCustomDiscounts, index_d$d_createDraftOrder as createDraftOrder, index_d$d_createEmptyDraftOrder as createEmptyDraftOrder, index_d$d_createOrderFromDraft as createOrderFromDraft, index_d$d_deleteCustomAdditionalFees as deleteCustomAdditionalFees, index_d$d_deleteCustomDiscounts as deleteCustomDiscounts, index_d$d_deleteDraftOrder as deleteDraftOrder, index_d$d_getDraftOrder as getDraftOrder, index_d$d_getOrderDraftabilityStatus as getOrderDraftabilityStatus, index_d$d_queryDraftOrders as queryDraftOrders, index_d$d_setAdditionalFees as setAdditionalFees, index_d$d_setBillingInfo as setBillingInfo, index_d$d_setBuyerInfo as setBuyerInfo, index_d$d_setDiscounts as setDiscounts, index_d$d_setRecipientInfo as setRecipientInfo, index_d$d_setShippingInfo as setShippingInfo, index_d$d_updateLineItems as updateLineItems };
22152
22191
  }
22153
22192
 
22154
22193
  interface OrderWithFulfillments {
@@ -24740,6 +24779,10 @@ interface RefundInitiated {
24740
24779
  interface RefundedPayment extends RefundedPaymentKindOneOf {
24741
24780
  /** Regular payment refund. */
24742
24781
  regular?: RegularPaymentRefund;
24782
+ /** Gift card payment refund. */
24783
+ giftCard?: GiftCardPaymentRefund;
24784
+ /** Membership payment refund. */
24785
+ membership?: MembershipPaymentRefund;
24743
24786
  /** Payment ID. */
24744
24787
  paymentId?: string;
24745
24788
  /** Whether refund was made externally and manually on the payment provider's side. */
@@ -24749,6 +24792,10 @@ interface RefundedPayment extends RefundedPaymentKindOneOf {
24749
24792
  interface RefundedPaymentKindOneOf {
24750
24793
  /** Regular payment refund. */
24751
24794
  regular?: RegularPaymentRefund;
24795
+ /** Gift card payment refund. */
24796
+ giftCard?: GiftCardPaymentRefund;
24797
+ /** Membership payment refund. */
24798
+ membership?: MembershipPaymentRefund;
24752
24799
  }
24753
24800
  interface RegularPaymentRefund {
24754
24801
  /** Refund amount */
@@ -24758,6 +24805,16 @@ interface RegularPaymentRefund {
24758
24805
  /** Card issuer's brand. */
24759
24806
  brand?: string | null;
24760
24807
  }
24808
+ interface GiftCardPaymentRefund {
24809
+ /** Gift card payment ID */
24810
+ giftCardPaymentId?: string | null;
24811
+ /** Refund amount */
24812
+ amount?: Price$2;
24813
+ }
24814
+ interface MembershipPaymentRefund {
24815
+ /** Membership ID */
24816
+ membershipId?: string | null;
24817
+ }
24761
24818
  interface PaymentRefunded {
24762
24819
  /** Refund ID. */
24763
24820
  refundId?: string;
@@ -27227,6 +27284,12 @@ interface PickupReadyEmailSent {
27227
27284
  /** Order marked as partially paid when an online transaction was confirmed with partial minimal required amount of total sum */
27228
27285
  interface OrderPartiallyPaid {
27229
27286
  }
27287
+ /** Order reject */
27288
+ interface OrderPending {
27289
+ }
27290
+ /** Order reject */
27291
+ interface OrderRejected {
27292
+ }
27230
27293
  interface AddInternalActivityResponse {
27231
27294
  /** Updated order. */
27232
27295
  order?: Order$1;
@@ -28369,8 +28432,12 @@ interface AuthorizedPaymentVoidedNonNullableFields {
28369
28432
  interface RegularPaymentRefundNonNullableFields {
28370
28433
  amount?: PriceNonNullableFields$2;
28371
28434
  }
28435
+ interface GiftCardPaymentRefundNonNullableFields {
28436
+ amount?: PriceNonNullableFields$2;
28437
+ }
28372
28438
  interface RefundedPaymentNonNullableFields {
28373
28439
  regular?: RegularPaymentRefundNonNullableFields;
28440
+ giftCard?: GiftCardPaymentRefundNonNullableFields;
28374
28441
  paymentId: string;
28375
28442
  externalRefund: boolean;
28376
28443
  }
@@ -28447,6 +28514,7 @@ interface BalanceSummaryNonNullableFields {
28447
28514
  refunded?: PriceNonNullableFields$2;
28448
28515
  authorized?: PriceNonNullableFields$2;
28449
28516
  pendingRefund?: PriceNonNullableFields$2;
28517
+ pending?: PriceNonNullableFields$2;
28450
28518
  }
28451
28519
  interface AdditionalFeeNonNullableFields {
28452
28520
  name: string;
@@ -29168,6 +29236,7 @@ type index_d$9_GetPaymentCollectabilityStatusResponse = GetPaymentCollectability
29168
29236
  type index_d$9_GetPaymentCollectabilityStatusResponseNonNullableFields = GetPaymentCollectabilityStatusResponseNonNullableFields;
29169
29237
  type index_d$9_GetShipmentsRequest = GetShipmentsRequest;
29170
29238
  type index_d$9_GetShipmentsResponse = GetShipmentsResponse;
29239
+ type index_d$9_GiftCardPaymentRefund = GiftCardPaymentRefund;
29171
29240
  type index_d$9_HtmlApplication = HtmlApplication;
29172
29241
  type index_d$9_IdAndVersion = IdAndVersion;
29173
29242
  type index_d$9_InternalActivity = InternalActivity;
@@ -29225,6 +29294,7 @@ type index_d$9_MarkOrderAsSeenByHumanResponse = MarkOrderAsSeenByHumanResponse;
29225
29294
  type index_d$9_MaskedOrder = MaskedOrder;
29226
29295
  type index_d$9_MaskedOrderLineItem = MaskedOrderLineItem;
29227
29296
  type index_d$9_MembershipChargeItem = MembershipChargeItem;
29297
+ type index_d$9_MembershipPaymentRefund = MembershipPaymentRefund;
29228
29298
  type index_d$9_MerchantComment = MerchantComment;
29229
29299
  type index_d$9_MerchantDiscountMerchantDiscountReasonOneOf = MerchantDiscountMerchantDiscountReasonOneOf;
29230
29300
  type index_d$9_MetaData = MetaData;
@@ -29256,7 +29326,9 @@ type index_d$9_OrderNotFulfilled = OrderNotFulfilled;
29256
29326
  type index_d$9_OrderPaid = OrderPaid;
29257
29327
  type index_d$9_OrderPartiallyPaid = OrderPartiallyPaid;
29258
29328
  type index_d$9_OrderPaymentStatusUpdatedEnvelope = OrderPaymentStatusUpdatedEnvelope;
29329
+ type index_d$9_OrderPending = OrderPending;
29259
29330
  type index_d$9_OrderPlaced = OrderPlaced;
29331
+ type index_d$9_OrderRejected = OrderRejected;
29260
29332
  type index_d$9_OrderStatus = OrderStatus;
29261
29333
  declare const index_d$9_OrderStatus: typeof OrderStatus;
29262
29334
  type index_d$9_OrderTaxBreakdown = OrderTaxBreakdown;
@@ -29446,7 +29518,7 @@ declare const index_d$9_searchOrders: typeof searchOrders;
29446
29518
  declare const index_d$9_updateOrder: typeof updateOrder;
29447
29519
  declare const index_d$9_voidAuthorizedPayments: typeof voidAuthorizedPayments;
29448
29520
  declare namespace index_d$9 {
29449
- export { type ActionEvent$7 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type index_d$9_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type index_d$9_AddActivitiesRequest as AddActivitiesRequest, type index_d$9_AddActivitiesResponse as AddActivitiesResponse, type index_d$9_AddActivityRequest as AddActivityRequest, type index_d$9_AddActivityResponse as AddActivityResponse, type index_d$9_AddInternalActivityRequest as AddInternalActivityRequest, type index_d$9_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type index_d$9_AdditionalFeeDelta as AdditionalFeeDelta, type index_d$9_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$5 as Address, type index_d$9_AddressDescription as AddressDescription, type AddressLocation$3 as AddressLocation, type index_d$9_AddressWithContact as AddressWithContact, type index_d$9_AggregateOrdersRequest as AggregateOrdersRequest, type index_d$9_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type index_d$9_App as App, type ApplicationError$4 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type index_d$9_AppliedDiscountDelta as AppliedDiscountDelta, type index_d$9_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$9_ArchiveOrderRequest as ArchiveOrderRequest, type index_d$9_ArchiveOrderResponse as ArchiveOrderResponse, index_d$9_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$2 as AuthorizationActionFailureDetails, type AuthorizationCapture$2 as AuthorizationCapture, AuthorizationCaptureStatus$2 as AuthorizationCaptureStatus, type AuthorizationDetails$2 as AuthorizationDetails, type AuthorizationVoid$2 as AuthorizationVoid, AuthorizationVoidStatus$2 as AuthorizationVoidStatus, type index_d$9_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$9_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$9_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$9_Balance as Balance, type index_d$9_BalanceSummary as BalanceSummary, type BaseEventMetadata$4 as BaseEventMetadata, type index_d$9_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$9_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$9_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$9_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$9_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$9_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$9_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$9_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$9_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$9_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$9_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$9_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$9_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$9_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$9_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$9_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$9_BulkOrderResult as BulkOrderResult, type index_d$9_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$9_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$9_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$9_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$9_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$9_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$9_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$9_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$9_BulkUpdateOrderTagsOptions as BulkUpdateOrderTagsOptions, type index_d$9_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$9_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type index_d$9_BulkUpdateOrderTagsResponseNonNullableFields as BulkUpdateOrderTagsResponseNonNullableFields, type index_d$9_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type index_d$9_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type index_d$9_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$9_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type index_d$9_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type index_d$9_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$9_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$9_CalculatedTax as CalculatedTax, type index_d$9_CalculatedTaxes as CalculatedTaxes, type index_d$9_Cancel as Cancel, type index_d$9_CancelOrderOptions as CancelOrderOptions, type index_d$9_CancelOrderRequest as CancelOrderRequest, type index_d$9_CancelOrderResponse as CancelOrderResponse, type index_d$9_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type index_d$9_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type index_d$9_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type index_d$9_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$2 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type index_d$9_ChargeMembershipsRequest as ChargeMembershipsRequest, type index_d$9_ChargeMembershipsResponse as ChargeMembershipsResponse, type index_d$9_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type index_d$9_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type index_d$9_ChargedBy as ChargedBy, type index_d$9_Color as Color, type index_d$9_CommitDeltasRequest as CommitDeltasRequest, type index_d$9_CommitDeltasResponse as CommitDeltasResponse, type index_d$9_CommittedDiffs as CommittedDiffs, type index_d$9_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type index_d$9_CommonAddress as CommonAddress, type index_d$9_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$9_Company as Company, type index_d$9_Complete as Complete, type index_d$9_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type index_d$9_CreateOrderRequest as CreateOrderRequest, type index_d$9_CreateOrderResponse as CreateOrderResponse, type index_d$9_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type index_d$9_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type index_d$9_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type index_d$9_CreatedBy as CreatedBy, type index_d$9_CreatedByStringOneOf as CreatedByStringOneOf, type index_d$9_CreditCardDetails as CreditCardDetails, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type index_d$9_CursorSearch as CursorSearch, type index_d$9_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$9_CustomActivity as CustomActivity, type CustomField$1 as CustomField, index_d$9_CustomFieldGroup as CustomFieldGroup, type index_d$9_CustomFieldValue as CustomFieldValue, type index_d$9_Customer as Customer, type index_d$9_DecrementData as DecrementData, type index_d$9_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type index_d$9_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type index_d$9_DelayedCaptureSettings as DelayedCaptureSettings, type index_d$9_DeleteActivityRequest as DeleteActivityRequest, type index_d$9_DeleteActivityResponse as DeleteActivityResponse, type index_d$9_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$9_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$2 as DeliveryLogistics, type index_d$9_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$2 as DeliveryTimeSlot, index_d$9_DeltaPaymentOptionType as DeltaPaymentOptionType, type index_d$9_Deposit as Deposit, index_d$9_DepositType as DepositType, type index_d$9_DescriptionLine as DescriptionLine, type index_d$9_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$9_DescriptionLineName as DescriptionLineName, index_d$9_DescriptionLineType as DescriptionLineType, type index_d$9_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type index_d$9_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, index_d$9_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type index_d$9_DownloadLinkSent as DownloadLinkSent, type index_d$9_DraftOrderChangesApplied as DraftOrderChangesApplied, type index_d$9_DraftOrderCommitSettings as DraftOrderCommitSettings, type index_d$9_DraftOrderDiffs as DraftOrderDiffs, type index_d$9_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type index_d$9_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type index_d$9_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type index_d$9_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type index_d$9_Duration as Duration, index_d$9_DurationUnit as DurationUnit, type index_d$9_Email as Email, type index_d$9_EmailEdited as EmailEdited, type Empty$5 as Empty, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$4 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type index_d$9_ExternalUriMapping as ExternalUriMapping, type index_d$9_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$9_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$9_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$9_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$9_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$9_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$9_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$9_GetOrderRequest as GetOrderRequest, type index_d$9_GetOrderResponse as GetOrderResponse, type index_d$9_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$9_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$9_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type index_d$9_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type index_d$9_GetShipmentsRequest as GetShipmentsRequest, type index_d$9_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type index_d$9_HtmlApplication as HtmlApplication, type index_d$9_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type index_d$9_InternalActivity as InternalActivity, type index_d$9_InternalActivityContentOneOf as InternalActivityContentOneOf, type index_d$9_InternalDocument as InternalDocument, type index_d$9_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type index_d$9_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type index_d$9_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type index_d$9_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type index_d$9_InternalUpdateExistingOperation as InternalUpdateExistingOperation, index_d$9_InventoryAction as InventoryAction, type index_d$9_InventoryUpdateDetails as InventoryUpdateDetails, type index_d$9_InvoiceAdded as InvoiceAdded, type index_d$9_InvoiceDates as InvoiceDates, type index_d$9_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type index_d$9_InvoiceFields as InvoiceFields, type index_d$9_InvoiceSent as InvoiceSent, type index_d$9_InvoiceSentEvent as InvoiceSentEvent, index_d$9_InvoiceStatus as InvoiceStatus, type index_d$9_InvoicesPayment as InvoicesPayment, type index_d$9_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, type index_d$9_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type index_d$9_LineItemAmount as LineItemAmount, type index_d$9_LineItemChanges as LineItemChanges, type index_d$9_LineItemDelta as LineItemDelta, type index_d$9_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type index_d$9_LineItemExchangeData as LineItemExchangeData, type index_d$9_LineItemMetaData as LineItemMetaData, type index_d$9_LineItemPriceChange as LineItemPriceChange, type index_d$9_LineItemQuantityChange as LineItemQuantityChange, index_d$9_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type index_d$9_LineItemTax as LineItemTax, type index_d$9_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$9_LineItemTaxInfo as LineItemTaxInfo, type index_d$9_LineItemUpdate as LineItemUpdate, type index_d$9_LineItems as LineItems, type index_d$9_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type index_d$9_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type index_d$9_Locale as Locale, type index_d$9_LocationAndQuantity as LocationAndQuantity, type index_d$9_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$9_ManagedDiscount as ManagedDiscount, type index_d$9_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type index_d$9_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type index_d$9_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type index_d$9_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type index_d$9_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type index_d$9_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type index_d$9_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type index_d$9_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type index_d$9_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type index_d$9_MaskedOrder as MaskedOrder, type index_d$9_MaskedOrderLineItem as MaskedOrderLineItem, type index_d$9_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type index_d$9_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$9_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type index_d$9_MetaData as MetaData, type index_d$9_MetaSite as MetaSite, type index_d$9_MetaTag as MetaTag, index_d$9_Namespace as Namespace, type index_d$9_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, index_d$9_OrderApprovalStrategy as OrderApprovalStrategy, type index_d$9_OrderApproved as OrderApproved, type index_d$9_OrderApprovedEnvelope as OrderApprovedEnvelope, type index_d$9_OrderCanceled as OrderCanceled, type index_d$9_OrderCanceledEnvelope as OrderCanceledEnvelope, type index_d$9_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type index_d$9_OrderChange as OrderChange, type index_d$9_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$9_OrderCreateNotifications as OrderCreateNotifications, type index_d$9_OrderCreatedEnvelope as OrderCreatedEnvelope, type index_d$9_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$9_OrderCreationSettings as OrderCreationSettings, type index_d$9_OrderDeltasCommitted as OrderDeltasCommitted, type index_d$9_OrderFulfilled as OrderFulfilled, type index_d$9_OrderItemsRestocked as OrderItemsRestocked, type index_d$9_OrderLineItem as OrderLineItem, type index_d$9_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type index_d$9_OrderNonNullableFields as OrderNonNullableFields, type index_d$9_OrderNotFulfilled as OrderNotFulfilled, type index_d$9_OrderPaid as OrderPaid, type index_d$9_OrderPartiallyPaid as OrderPartiallyPaid, type index_d$9_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type index_d$9_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, index_d$9_OrderStatus as OrderStatus, type index_d$9_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$9_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type index_d$9_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type index_d$9_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type index_d$9_PaymentCanceled as PaymentCanceled, type index_d$9_PaymentCanceledPaymentDetailsOneOf as PaymentCanceledPaymentDetailsOneOf, type index_d$9_PaymentCapture as PaymentCapture, index_d$9_PaymentCollectabilityStatus as PaymentCollectabilityStatus, type index_d$9_PaymentDeclined as PaymentDeclined, type index_d$9_PaymentDeclinedPaymentDetailsOneOf as PaymentDeclinedPaymentDetailsOneOf, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type index_d$9_PaymentPending as PaymentPending, type index_d$9_PaymentPendingPaymentDetailsOneOf as PaymentPendingPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$9_PaymentRefundFailed as PaymentRefundFailed, type index_d$9_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type index_d$9_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$9_Payments as Payments, type index_d$9_Phone as Phone, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$3 as PickupDetails, PickupMethod$2 as PickupMethod, type index_d$9_PickupReadyEmailSent as PickupReadyEmailSent, index_d$9_Placement as Placement, type index_d$9_PlainTextValue as PlainTextValue, type index_d$9_PlatformPaging as PlatformPaging, type index_d$9_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$9_PlatformQuery as PlatformQuery, type index_d$9_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d$9_PreparePaymentCollectionOptions as PreparePaymentCollectionOptions, type index_d$9_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$9_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type index_d$9_PreparePaymentCollectionResponseNonNullableFields as PreparePaymentCollectionResponseNonNullableFields, type index_d$9_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type index_d$9_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type index_d$9_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type index_d$9_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type index_d$9_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type index_d$9_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type index_d$9_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type index_d$9_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type index_d$9_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type index_d$9_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type index_d$9_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type index_d$9_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, index_d$9_PreviewEmailType as PreviewEmailType, type index_d$9_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type index_d$9_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type index_d$9_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type index_d$9_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type index_d$9_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type index_d$9_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type index_d$9_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type index_d$9_ProductName as ProductName, type index_d$9_PublicActivity as PublicActivity, type index_d$9_PublicActivityContentOneOf as PublicActivityContentOneOf, type index_d$9_QueryOrderRequest as QueryOrderRequest, type index_d$9_QueryOrderResponse as QueryOrderResponse, type index_d$9_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type index_d$9_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type index_d$9_QuotesAddress as QuotesAddress, Reason$2 as Reason, type index_d$9_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type index_d$9_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type index_d$9_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type index_d$9_RefundInitiated as RefundInitiated, type RefundItem$2 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$2 as RefundStatus, type RefundTransaction$2 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type index_d$9_RefundedAsStoreCredit as RefundedAsStoreCredit, type index_d$9_RefundedPayment as RefundedPayment, type index_d$9_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type index_d$9_RegularPayment as RegularPayment, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$9_RegularPaymentPaymentMethodDetailsOneOf as RegularPaymentPaymentMethodDetailsOneOf, type index_d$9_RegularPaymentRefund as RegularPaymentRefund, type index_d$9_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$7 as RestoreInfo, type index_d$9_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$2 as ScheduledAction, type index_d$9_SearchOrdersOptions as SearchOrdersOptions, type index_d$9_SearchOrdersRequest as SearchOrdersRequest, type index_d$9_SearchOrdersResponse as SearchOrdersResponse, type index_d$9_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type index_d$9_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type index_d$9_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type index_d$9_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type index_d$9_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type index_d$9_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type index_d$9_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type index_d$9_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type index_d$9_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type index_d$9_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type index_d$9_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type index_d$9_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type index_d$9_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type index_d$9_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type index_d$9_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type index_d$9_SendRefundEmailRequest as SendRefundEmailRequest, type index_d$9_SendRefundEmailResponse as SendRefundEmailResponse, type index_d$9_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type index_d$9_ShippingAddressEdited as ShippingAddressEdited, type index_d$9_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type index_d$9_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$2 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, index_d$9_SourceType as SourceType, type index_d$9_StandardDetails as StandardDetails, index_d$9_State as State, type StreetAddress$4 as StreetAddress, type Subdivision$1 as Subdivision, SubdivisionType$1 as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type index_d$9_TagList as TagList, type index_d$9_Tags as Tags, type index_d$9_Task as Task, type index_d$9_TaskAction as TaskAction, type index_d$9_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$9_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type TaxableAddress$1 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$1 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$1 as TaxableAddressType, type index_d$9_TotalPrice as TotalPrice, type index_d$9_TotalPriceChange as TotalPriceChange, type index_d$9_TrackingLinkAdded as TrackingLinkAdded, type index_d$9_TrackingNumberAdded as TrackingNumberAdded, type index_d$9_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type index_d$9_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type index_d$9_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type index_d$9_TriggerReindexRequest as TriggerReindexRequest, type index_d$9_TriggerReindexResponse as TriggerReindexResponse, type index_d$9_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type index_d$9_UnArchiveOrderRequest as UnArchiveOrderRequest, type index_d$9_UnArchiveOrderResponse as UnArchiveOrderResponse, type index_d$9_UpdateActivityRequest as UpdateActivityRequest, type index_d$9_UpdateActivityResponse as UpdateActivityResponse, type index_d$9_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type index_d$9_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type index_d$9_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type index_d$9_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type index_d$9_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type index_d$9_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type index_d$9_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type index_d$9_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type index_d$9_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type index_d$9_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type index_d$9_UpdateOrder as UpdateOrder, type index_d$9_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type index_d$9_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type index_d$9_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type index_d$9_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type index_d$9_UpdateOrderRequest as UpdateOrderRequest, type index_d$9_UpdateOrderResponse as UpdateOrderResponse, type index_d$9_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$9_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type index_d$9_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type index_d$9_UpsertRefundRequest as UpsertRefundRequest, type index_d$9_UpsertRefundResponse as UpsertRefundResponse, type index_d$9_UserDataResponse as UserDataResponse, type index_d$9_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type index_d$9_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type index_d$9_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type index_d$9_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type index_d$9_V1LineItemDelta as V1LineItemDelta, type index_d$9_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type index_d$9_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$9_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$9_V1RestockItem as V1RestockItem, type index_d$9_V1ScheduledAction as V1ScheduledAction, type index_d$9_V1ShippingInformation as V1ShippingInformation, type index_d$9_Value as Value, index_d$9_ValueType as ValueType, type VatId$2 as VatId, VatType$2 as VatType, type index_d$9_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type index_d$9_VersionedDocumentId as VersionedDocumentId, type index_d$9_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, index_d$9_VersioningMode as VersioningMode, type index_d$9_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type index_d$9_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type index_d$9_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$3 as WeightUnit, type index_d$9__publicOnOrderApprovedType as _publicOnOrderApprovedType, type index_d$9__publicOnOrderCanceledType as _publicOnOrderCanceledType, type index_d$9__publicOnOrderCreatedType as _publicOnOrderCreatedType, type index_d$9__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, type index_d$9__publicOnOrderUpdatedType as _publicOnOrderUpdatedType, index_d$9_bulkUpdateOrderTags as bulkUpdateOrderTags, index_d$9_bulkUpdateOrders as bulkUpdateOrders, index_d$9_cancelOrder as cancelOrder, index_d$9_captureAuthorizedPayments as captureAuthorizedPayments, index_d$9_createOrder as createOrder, index_d$9_getOrder as getOrder, index_d$9_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, index_d$9_onOrderApproved as onOrderApproved, index_d$9_onOrderCanceled as onOrderCanceled, index_d$9_onOrderCreated as onOrderCreated, index_d$9_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, index_d$9_onOrderUpdated as onOrderUpdated, index_d$9_preparePaymentCollection as preparePaymentCollection, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, onOrderUpdated$1 as publicOnOrderUpdated, index_d$9_searchOrders as searchOrders, index_d$9_updateOrder as updateOrder, index_d$9_voidAuthorizedPayments as voidAuthorizedPayments };
29521
+ export { type ActionEvent$7 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type index_d$9_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type index_d$9_AddActivitiesRequest as AddActivitiesRequest, type index_d$9_AddActivitiesResponse as AddActivitiesResponse, type index_d$9_AddActivityRequest as AddActivityRequest, type index_d$9_AddActivityResponse as AddActivityResponse, type index_d$9_AddInternalActivityRequest as AddInternalActivityRequest, type index_d$9_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type index_d$9_AdditionalFeeDelta as AdditionalFeeDelta, type index_d$9_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$5 as Address, type index_d$9_AddressDescription as AddressDescription, type AddressLocation$3 as AddressLocation, type index_d$9_AddressWithContact as AddressWithContact, type index_d$9_AggregateOrdersRequest as AggregateOrdersRequest, type index_d$9_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type index_d$9_App as App, type ApplicationError$4 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type index_d$9_AppliedDiscountDelta as AppliedDiscountDelta, type index_d$9_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$9_ArchiveOrderRequest as ArchiveOrderRequest, type index_d$9_ArchiveOrderResponse as ArchiveOrderResponse, index_d$9_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$2 as AuthorizationActionFailureDetails, type AuthorizationCapture$2 as AuthorizationCapture, AuthorizationCaptureStatus$2 as AuthorizationCaptureStatus, type AuthorizationDetails$2 as AuthorizationDetails, type AuthorizationVoid$2 as AuthorizationVoid, AuthorizationVoidStatus$2 as AuthorizationVoidStatus, type index_d$9_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$9_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$9_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$9_Balance as Balance, type index_d$9_BalanceSummary as BalanceSummary, type BaseEventMetadata$4 as BaseEventMetadata, type index_d$9_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$9_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$9_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$9_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$9_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$9_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$9_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$9_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$9_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$9_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$9_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$9_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$9_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$9_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$9_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$9_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$9_BulkOrderResult as BulkOrderResult, type index_d$9_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$9_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$9_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$9_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$9_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$9_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$9_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$9_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$9_BulkUpdateOrderTagsOptions as BulkUpdateOrderTagsOptions, type index_d$9_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$9_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type index_d$9_BulkUpdateOrderTagsResponseNonNullableFields as BulkUpdateOrderTagsResponseNonNullableFields, type index_d$9_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type index_d$9_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type index_d$9_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$9_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type index_d$9_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type index_d$9_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$9_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$9_CalculatedTax as CalculatedTax, type index_d$9_CalculatedTaxes as CalculatedTaxes, type index_d$9_Cancel as Cancel, type index_d$9_CancelOrderOptions as CancelOrderOptions, type index_d$9_CancelOrderRequest as CancelOrderRequest, type index_d$9_CancelOrderResponse as CancelOrderResponse, type index_d$9_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type index_d$9_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type index_d$9_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type index_d$9_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$2 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type index_d$9_ChargeMembershipsRequest as ChargeMembershipsRequest, type index_d$9_ChargeMembershipsResponse as ChargeMembershipsResponse, type index_d$9_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type index_d$9_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type index_d$9_ChargedBy as ChargedBy, type index_d$9_Color as Color, type index_d$9_CommitDeltasRequest as CommitDeltasRequest, type index_d$9_CommitDeltasResponse as CommitDeltasResponse, type index_d$9_CommittedDiffs as CommittedDiffs, type index_d$9_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type index_d$9_CommonAddress as CommonAddress, type index_d$9_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$9_Company as Company, type index_d$9_Complete as Complete, type index_d$9_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type index_d$9_CreateOrderRequest as CreateOrderRequest, type index_d$9_CreateOrderResponse as CreateOrderResponse, type index_d$9_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type index_d$9_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type index_d$9_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type index_d$9_CreatedBy as CreatedBy, type index_d$9_CreatedByStringOneOf as CreatedByStringOneOf, type index_d$9_CreditCardDetails as CreditCardDetails, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type index_d$9_CursorSearch as CursorSearch, type index_d$9_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$9_CustomActivity as CustomActivity, type CustomField$1 as CustomField, index_d$9_CustomFieldGroup as CustomFieldGroup, type index_d$9_CustomFieldValue as CustomFieldValue, type index_d$9_Customer as Customer, type index_d$9_DecrementData as DecrementData, type index_d$9_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type index_d$9_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type index_d$9_DelayedCaptureSettings as DelayedCaptureSettings, type index_d$9_DeleteActivityRequest as DeleteActivityRequest, type index_d$9_DeleteActivityResponse as DeleteActivityResponse, type index_d$9_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$9_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$2 as DeliveryLogistics, type index_d$9_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$2 as DeliveryTimeSlot, index_d$9_DeltaPaymentOptionType as DeltaPaymentOptionType, type index_d$9_Deposit as Deposit, index_d$9_DepositType as DepositType, type index_d$9_DescriptionLine as DescriptionLine, type index_d$9_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$9_DescriptionLineName as DescriptionLineName, index_d$9_DescriptionLineType as DescriptionLineType, type index_d$9_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type index_d$9_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, index_d$9_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type index_d$9_DownloadLinkSent as DownloadLinkSent, type index_d$9_DraftOrderChangesApplied as DraftOrderChangesApplied, type index_d$9_DraftOrderCommitSettings as DraftOrderCommitSettings, type index_d$9_DraftOrderDiffs as DraftOrderDiffs, type index_d$9_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type index_d$9_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type index_d$9_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type index_d$9_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type index_d$9_Duration as Duration, index_d$9_DurationUnit as DurationUnit, type index_d$9_Email as Email, type index_d$9_EmailEdited as EmailEdited, type Empty$5 as Empty, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$4 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type index_d$9_ExternalUriMapping as ExternalUriMapping, type index_d$9_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$9_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$9_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$9_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$9_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$9_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$9_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$9_GetOrderRequest as GetOrderRequest, type index_d$9_GetOrderResponse as GetOrderResponse, type index_d$9_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$9_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$9_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type index_d$9_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type index_d$9_GetShipmentsRequest as GetShipmentsRequest, type index_d$9_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type index_d$9_GiftCardPaymentRefund as GiftCardPaymentRefund, type index_d$9_HtmlApplication as HtmlApplication, type index_d$9_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type index_d$9_InternalActivity as InternalActivity, type index_d$9_InternalActivityContentOneOf as InternalActivityContentOneOf, type index_d$9_InternalDocument as InternalDocument, type index_d$9_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type index_d$9_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type index_d$9_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type index_d$9_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type index_d$9_InternalUpdateExistingOperation as InternalUpdateExistingOperation, index_d$9_InventoryAction as InventoryAction, type index_d$9_InventoryUpdateDetails as InventoryUpdateDetails, type index_d$9_InvoiceAdded as InvoiceAdded, type index_d$9_InvoiceDates as InvoiceDates, type index_d$9_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type index_d$9_InvoiceFields as InvoiceFields, type index_d$9_InvoiceSent as InvoiceSent, type index_d$9_InvoiceSentEvent as InvoiceSentEvent, index_d$9_InvoiceStatus as InvoiceStatus, type index_d$9_InvoicesPayment as InvoicesPayment, type index_d$9_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, type index_d$9_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type index_d$9_LineItemAmount as LineItemAmount, type index_d$9_LineItemChanges as LineItemChanges, type index_d$9_LineItemDelta as LineItemDelta, type index_d$9_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type index_d$9_LineItemExchangeData as LineItemExchangeData, type index_d$9_LineItemMetaData as LineItemMetaData, type index_d$9_LineItemPriceChange as LineItemPriceChange, type index_d$9_LineItemQuantityChange as LineItemQuantityChange, index_d$9_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type index_d$9_LineItemTax as LineItemTax, type index_d$9_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$9_LineItemTaxInfo as LineItemTaxInfo, type index_d$9_LineItemUpdate as LineItemUpdate, type index_d$9_LineItems as LineItems, type index_d$9_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type index_d$9_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type index_d$9_Locale as Locale, type index_d$9_LocationAndQuantity as LocationAndQuantity, type index_d$9_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$9_ManagedDiscount as ManagedDiscount, type index_d$9_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type index_d$9_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type index_d$9_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type index_d$9_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type index_d$9_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type index_d$9_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type index_d$9_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type index_d$9_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type index_d$9_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type index_d$9_MaskedOrder as MaskedOrder, type index_d$9_MaskedOrderLineItem as MaskedOrderLineItem, type index_d$9_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, type index_d$9_MembershipPaymentRefund as MembershipPaymentRefund, MembershipPaymentStatus$2 as MembershipPaymentStatus, type index_d$9_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$9_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type index_d$9_MetaData as MetaData, type index_d$9_MetaSite as MetaSite, type index_d$9_MetaTag as MetaTag, index_d$9_Namespace as Namespace, type index_d$9_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, index_d$9_OrderApprovalStrategy as OrderApprovalStrategy, type index_d$9_OrderApproved as OrderApproved, type index_d$9_OrderApprovedEnvelope as OrderApprovedEnvelope, type index_d$9_OrderCanceled as OrderCanceled, type index_d$9_OrderCanceledEnvelope as OrderCanceledEnvelope, type index_d$9_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type index_d$9_OrderChange as OrderChange, type index_d$9_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$9_OrderCreateNotifications as OrderCreateNotifications, type index_d$9_OrderCreatedEnvelope as OrderCreatedEnvelope, type index_d$9_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$9_OrderCreationSettings as OrderCreationSettings, type index_d$9_OrderDeltasCommitted as OrderDeltasCommitted, type index_d$9_OrderFulfilled as OrderFulfilled, type index_d$9_OrderItemsRestocked as OrderItemsRestocked, type index_d$9_OrderLineItem as OrderLineItem, type index_d$9_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type index_d$9_OrderNonNullableFields as OrderNonNullableFields, type index_d$9_OrderNotFulfilled as OrderNotFulfilled, type index_d$9_OrderPaid as OrderPaid, type index_d$9_OrderPartiallyPaid as OrderPartiallyPaid, type index_d$9_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type index_d$9_OrderPending as OrderPending, type index_d$9_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, type index_d$9_OrderRejected as OrderRejected, index_d$9_OrderStatus as OrderStatus, type index_d$9_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$9_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type index_d$9_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type index_d$9_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type index_d$9_PaymentCanceled as PaymentCanceled, type index_d$9_PaymentCanceledPaymentDetailsOneOf as PaymentCanceledPaymentDetailsOneOf, type index_d$9_PaymentCapture as PaymentCapture, index_d$9_PaymentCollectabilityStatus as PaymentCollectabilityStatus, type index_d$9_PaymentDeclined as PaymentDeclined, type index_d$9_PaymentDeclinedPaymentDetailsOneOf as PaymentDeclinedPaymentDetailsOneOf, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type index_d$9_PaymentPending as PaymentPending, type index_d$9_PaymentPendingPaymentDetailsOneOf as PaymentPendingPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$9_PaymentRefundFailed as PaymentRefundFailed, type index_d$9_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type index_d$9_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$9_Payments as Payments, type index_d$9_Phone as Phone, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$3 as PickupDetails, PickupMethod$2 as PickupMethod, type index_d$9_PickupReadyEmailSent as PickupReadyEmailSent, index_d$9_Placement as Placement, type index_d$9_PlainTextValue as PlainTextValue, type index_d$9_PlatformPaging as PlatformPaging, type index_d$9_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$9_PlatformQuery as PlatformQuery, type index_d$9_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d$9_PreparePaymentCollectionOptions as PreparePaymentCollectionOptions, type index_d$9_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$9_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type index_d$9_PreparePaymentCollectionResponseNonNullableFields as PreparePaymentCollectionResponseNonNullableFields, type index_d$9_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type index_d$9_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type index_d$9_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type index_d$9_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type index_d$9_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type index_d$9_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type index_d$9_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type index_d$9_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type index_d$9_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type index_d$9_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type index_d$9_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type index_d$9_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, index_d$9_PreviewEmailType as PreviewEmailType, type index_d$9_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type index_d$9_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type index_d$9_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type index_d$9_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type index_d$9_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type index_d$9_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type index_d$9_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type index_d$9_ProductName as ProductName, type index_d$9_PublicActivity as PublicActivity, type index_d$9_PublicActivityContentOneOf as PublicActivityContentOneOf, type index_d$9_QueryOrderRequest as QueryOrderRequest, type index_d$9_QueryOrderResponse as QueryOrderResponse, type index_d$9_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type index_d$9_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type index_d$9_QuotesAddress as QuotesAddress, Reason$2 as Reason, type index_d$9_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type index_d$9_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type index_d$9_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type index_d$9_RefundInitiated as RefundInitiated, type RefundItem$2 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$2 as RefundStatus, type RefundTransaction$2 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type index_d$9_RefundedAsStoreCredit as RefundedAsStoreCredit, type index_d$9_RefundedPayment as RefundedPayment, type index_d$9_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type index_d$9_RegularPayment as RegularPayment, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$9_RegularPaymentPaymentMethodDetailsOneOf as RegularPaymentPaymentMethodDetailsOneOf, type index_d$9_RegularPaymentRefund as RegularPaymentRefund, type index_d$9_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$7 as RestoreInfo, type index_d$9_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$2 as ScheduledAction, type index_d$9_SearchOrdersOptions as SearchOrdersOptions, type index_d$9_SearchOrdersRequest as SearchOrdersRequest, type index_d$9_SearchOrdersResponse as SearchOrdersResponse, type index_d$9_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type index_d$9_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type index_d$9_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type index_d$9_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type index_d$9_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type index_d$9_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type index_d$9_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type index_d$9_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type index_d$9_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type index_d$9_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type index_d$9_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type index_d$9_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type index_d$9_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type index_d$9_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type index_d$9_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type index_d$9_SendRefundEmailRequest as SendRefundEmailRequest, type index_d$9_SendRefundEmailResponse as SendRefundEmailResponse, type index_d$9_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type index_d$9_ShippingAddressEdited as ShippingAddressEdited, type index_d$9_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type index_d$9_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$2 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, index_d$9_SourceType as SourceType, type index_d$9_StandardDetails as StandardDetails, index_d$9_State as State, type StreetAddress$4 as StreetAddress, type Subdivision$1 as Subdivision, SubdivisionType$1 as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type index_d$9_TagList as TagList, type index_d$9_Tags as Tags, type index_d$9_Task as Task, type index_d$9_TaskAction as TaskAction, type index_d$9_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$9_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type TaxableAddress$1 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$1 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$1 as TaxableAddressType, type index_d$9_TotalPrice as TotalPrice, type index_d$9_TotalPriceChange as TotalPriceChange, type index_d$9_TrackingLinkAdded as TrackingLinkAdded, type index_d$9_TrackingNumberAdded as TrackingNumberAdded, type index_d$9_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type index_d$9_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type index_d$9_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type index_d$9_TriggerReindexRequest as TriggerReindexRequest, type index_d$9_TriggerReindexResponse as TriggerReindexResponse, type index_d$9_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type index_d$9_UnArchiveOrderRequest as UnArchiveOrderRequest, type index_d$9_UnArchiveOrderResponse as UnArchiveOrderResponse, type index_d$9_UpdateActivityRequest as UpdateActivityRequest, type index_d$9_UpdateActivityResponse as UpdateActivityResponse, type index_d$9_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type index_d$9_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type index_d$9_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type index_d$9_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type index_d$9_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type index_d$9_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type index_d$9_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type index_d$9_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type index_d$9_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type index_d$9_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type index_d$9_UpdateOrder as UpdateOrder, type index_d$9_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type index_d$9_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type index_d$9_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type index_d$9_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type index_d$9_UpdateOrderRequest as UpdateOrderRequest, type index_d$9_UpdateOrderResponse as UpdateOrderResponse, type index_d$9_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$9_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type index_d$9_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type index_d$9_UpsertRefundRequest as UpsertRefundRequest, type index_d$9_UpsertRefundResponse as UpsertRefundResponse, type index_d$9_UserDataResponse as UserDataResponse, type index_d$9_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type index_d$9_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type index_d$9_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type index_d$9_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type index_d$9_V1LineItemDelta as V1LineItemDelta, type index_d$9_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type index_d$9_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$9_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$9_V1RestockItem as V1RestockItem, type index_d$9_V1ScheduledAction as V1ScheduledAction, type index_d$9_V1ShippingInformation as V1ShippingInformation, type index_d$9_Value as Value, index_d$9_ValueType as ValueType, type VatId$2 as VatId, VatType$2 as VatType, type index_d$9_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type index_d$9_VersionedDocumentId as VersionedDocumentId, type index_d$9_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, index_d$9_VersioningMode as VersioningMode, type index_d$9_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type index_d$9_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type index_d$9_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$3 as WeightUnit, type index_d$9__publicOnOrderApprovedType as _publicOnOrderApprovedType, type index_d$9__publicOnOrderCanceledType as _publicOnOrderCanceledType, type index_d$9__publicOnOrderCreatedType as _publicOnOrderCreatedType, type index_d$9__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, type index_d$9__publicOnOrderUpdatedType as _publicOnOrderUpdatedType, index_d$9_bulkUpdateOrderTags as bulkUpdateOrderTags, index_d$9_bulkUpdateOrders as bulkUpdateOrders, index_d$9_cancelOrder as cancelOrder, index_d$9_captureAuthorizedPayments as captureAuthorizedPayments, index_d$9_createOrder as createOrder, index_d$9_getOrder as getOrder, index_d$9_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, index_d$9_onOrderApproved as onOrderApproved, index_d$9_onOrderCanceled as onOrderCanceled, index_d$9_onOrderCreated as onOrderCreated, index_d$9_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, index_d$9_onOrderUpdated as onOrderUpdated, index_d$9_preparePaymentCollection as preparePaymentCollection, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, onOrderUpdated$1 as publicOnOrderUpdated, index_d$9_searchOrders as searchOrders, index_d$9_updateOrder as updateOrder, index_d$9_voidAuthorizedPayments as voidAuthorizedPayments };
29450
29522
  }
29451
29523
 
29452
29524
  interface OrderPaymentRequest {