@wix/ecom 1.0.780 → 1.0.782

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.
@@ -5388,15 +5388,15 @@ interface Membership$4 {
5388
5388
  additionalData?: Record<string, any> | null;
5389
5389
  }
5390
5390
  interface MembershipName$7 {
5391
- /** The name of this membership */
5391
+ /** Membership name. */
5392
5392
  original?: string;
5393
5393
  /** Membership name translated into buyer's language. Defaults to `original` when not defined. */
5394
5394
  translated?: string | null;
5395
5395
  }
5396
5396
  interface MembershipPaymentCredits$4 {
5397
- /** How much credit this membership has in total */
5397
+ /** Membership's total amount of credits. */
5398
5398
  total?: number;
5399
- /** How much credit remained for this membership */
5399
+ /** Membership's remaining amount of credits. */
5400
5400
  remaining?: number;
5401
5401
  }
5402
5402
  interface InvalidMembership$4 {
@@ -8092,15 +8092,15 @@ interface Membership$3 {
8092
8092
  additionalData?: Record<string, any> | null;
8093
8093
  }
8094
8094
  interface MembershipName$6 {
8095
- /** The name of this membership */
8095
+ /** Membership name. */
8096
8096
  original?: string;
8097
8097
  /** Membership name translated into buyer's language. Defaults to `original` when not defined. */
8098
8098
  translated?: string | null;
8099
8099
  }
8100
8100
  interface MembershipPaymentCredits$3 {
8101
- /** How much credit this membership has in total */
8101
+ /** Membership's total amount of credits. */
8102
8102
  total?: number;
8103
- /** How much credit remained for this membership */
8103
+ /** Membership's remaining amount of credits. */
8104
8104
  remaining?: number;
8105
8105
  }
8106
8106
  interface InvalidMembership$3 {
@@ -10603,15 +10603,15 @@ interface Membership$2 {
10603
10603
  additionalData?: Record<string, any> | null;
10604
10604
  }
10605
10605
  interface MembershipName$5 {
10606
- /** The name of this membership */
10606
+ /** Membership name. */
10607
10607
  original?: string;
10608
- /** Optional - Translated name of this membership. Defaults to `original` when not provided. */
10608
+ /** Translated membership name. Defaults to `original` when not provided. */
10609
10609
  translated?: string | null;
10610
10610
  }
10611
10611
  interface MembershipPaymentCredits$2 {
10612
- /** How much credit this membership has in total */
10612
+ /** Membership's total amount of credits. */
10613
10613
  total?: number;
10614
- /** How much credit remained for this membership */
10614
+ /** Membership's remaining amount of credits. */
10615
10615
  remaining?: number;
10616
10616
  }
10617
10617
  interface InvalidMembership$2 {
@@ -14914,15 +14914,15 @@ interface Membership$1 {
14914
14914
  additionalData?: Record<string, any> | null;
14915
14915
  }
14916
14916
  interface MembershipName$4 {
14917
- /** The name of this membership */
14917
+ /** Membership name. */
14918
14918
  original?: string;
14919
- /** Optional - Translated name of this membership. Defaults to `original` when not provided. */
14919
+ /** Translated membership name. Defaults to `original` when not provided. */
14920
14920
  translated?: string | null;
14921
14921
  }
14922
14922
  interface MembershipPaymentCredits$1 {
14923
- /** How much credit this membership has in total */
14923
+ /** Membership's total amount of credits. */
14924
14924
  total?: number;
14925
- /** How much credit remained for this membership */
14925
+ /** Membership's remaining amount of credits. */
14926
14926
  remaining?: number;
14927
14927
  }
14928
14928
  interface InvalidMembership$1 {
@@ -19259,6 +19259,56 @@ interface RefundedAsStoreCredit$1 {
19259
19259
  /** Reason for refund */
19260
19260
  reason?: string | null;
19261
19261
  }
19262
+ interface PaymentPending$1 extends PaymentPendingPaymentDetailsOneOf$1 {
19263
+ /** Regular payment. */
19264
+ regular?: RegularPayment$1;
19265
+ /** Payment ID of payment associated with this activity */
19266
+ paymentId?: string;
19267
+ }
19268
+ /** @oneof */
19269
+ interface PaymentPendingPaymentDetailsOneOf$1 {
19270
+ /** Regular payment. */
19271
+ regular?: RegularPayment$1;
19272
+ }
19273
+ interface RegularPayment$1 extends RegularPaymentPaymentMethodDetailsOneOf$1 {
19274
+ /** Whether regular card used */
19275
+ creditCardDetails?: CreditCardDetails$1;
19276
+ /** Payment amount */
19277
+ amount?: Price$3;
19278
+ }
19279
+ /** @oneof */
19280
+ interface RegularPaymentPaymentMethodDetailsOneOf$1 {
19281
+ /** Whether regular card used */
19282
+ creditCardDetails?: CreditCardDetails$1;
19283
+ }
19284
+ interface CreditCardDetails$1 {
19285
+ /** The last 4 digits of the card number. */
19286
+ lastFourDigits?: string | null;
19287
+ /** Card issuer's brand. */
19288
+ brand?: string | null;
19289
+ }
19290
+ interface PaymentCanceled$1 extends PaymentCanceledPaymentDetailsOneOf$1 {
19291
+ /** Regular payment. */
19292
+ regular?: RegularPayment$1;
19293
+ /** Payment ID of payment associated with this activity */
19294
+ paymentId?: string;
19295
+ }
19296
+ /** @oneof */
19297
+ interface PaymentCanceledPaymentDetailsOneOf$1 {
19298
+ /** Regular payment. */
19299
+ regular?: RegularPayment$1;
19300
+ }
19301
+ interface PaymentDeclined$1 extends PaymentDeclinedPaymentDetailsOneOf$1 {
19302
+ /** Regular payment. */
19303
+ regular?: RegularPayment$1;
19304
+ /** Payment ID of payment associated with this activity */
19305
+ paymentId?: string;
19306
+ }
19307
+ /** @oneof */
19308
+ interface PaymentDeclinedPaymentDetailsOneOf$1 {
19309
+ /** Regular payment. */
19310
+ regular?: RegularPayment$1;
19311
+ }
19262
19312
  declare enum ActivityType$2 {
19263
19313
  ORDER_REFUNDED = "ORDER_REFUNDED",
19264
19314
  ORDER_PLACED = "ORDER_PLACED",
@@ -19291,7 +19341,10 @@ declare enum ActivityType$2 {
19291
19341
  REFUND_INITIATED = "REFUND_INITIATED",
19292
19342
  PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
19293
19343
  PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
19294
- REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
19344
+ REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT",
19345
+ PAYMENT_PENDING = "PAYMENT_PENDING",
19346
+ PAYMENT_CANCELED = "PAYMENT_CANCELED",
19347
+ PAYMENT_DECLINED = "PAYMENT_DECLINED"
19295
19348
  }
19296
19349
  declare enum AttributionSource$1 {
19297
19350
  UNSPECIFIED = "UNSPECIFIED",
@@ -20175,6 +20228,21 @@ interface PaymentRefundFailedNonNullableFields$1 {
20175
20228
  interface RefundedAsStoreCreditNonNullableFields$1 {
20176
20229
  amount?: PriceNonNullableFields$3;
20177
20230
  }
20231
+ interface RegularPaymentNonNullableFields$1 {
20232
+ amount?: PriceNonNullableFields$3;
20233
+ }
20234
+ interface PaymentPendingNonNullableFields$1 {
20235
+ regular?: RegularPaymentNonNullableFields$1;
20236
+ paymentId: string;
20237
+ }
20238
+ interface PaymentCanceledNonNullableFields$1 {
20239
+ regular?: RegularPaymentNonNullableFields$1;
20240
+ paymentId: string;
20241
+ }
20242
+ interface PaymentDeclinedNonNullableFields$1 {
20243
+ regular?: RegularPaymentNonNullableFields$1;
20244
+ paymentId: string;
20245
+ }
20178
20246
  interface ActivityNonNullableFields$1 {
20179
20247
  customActivity?: CustomActivityNonNullableFields$1;
20180
20248
  merchantComment?: MerchantCommentNonNullableFields$1;
@@ -20190,6 +20258,9 @@ interface ActivityNonNullableFields$1 {
20190
20258
  paymentRefunded?: PaymentRefundedNonNullableFields$1;
20191
20259
  paymentRefundFailed?: PaymentRefundFailedNonNullableFields$1;
20192
20260
  refundedAsStoreCredit?: RefundedAsStoreCreditNonNullableFields$1;
20261
+ paymentPending?: PaymentPendingNonNullableFields$1;
20262
+ paymentCanceled?: PaymentCanceledNonNullableFields$1;
20263
+ paymentDeclined?: PaymentDeclinedNonNullableFields$1;
20193
20264
  type: ActivityType$2;
20194
20265
  }
20195
20266
  interface V1CreatedByNonNullableFields {
@@ -20696,7 +20767,7 @@ declare const index_d$c_setRecipientInfo: typeof setRecipientInfo;
20696
20767
  declare const index_d$c_setShippingInfo: typeof setShippingInfo;
20697
20768
  declare const index_d$c_updateLineItems: typeof updateLineItems;
20698
20769
  declare namespace index_d$c {
20699
- export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type index_d$c_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type index_d$c_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type index_d$c_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type index_d$c_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type index_d$c_AdditionalFeeDetails as AdditionalFeeDetails, type index_d$c_AdditionalFeeOption as AdditionalFeeOption, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$5 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, index_d$c_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type index_d$c_BillingChangedDetails as BillingChangedDetails, type index_d$c_BillingDetails as BillingDetails, type index_d$c_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type index_d$c_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type index_d$c_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$c_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$2 as CatalogReference, type index_d$c_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type index_d$c_CommitDraftOrderOptions as CommitDraftOrderOptions, type index_d$c_CommitDraftOrderRequest as CommitDraftOrderRequest, type index_d$c_CommitDraftOrderResponse as CommitDraftOrderResponse, type index_d$c_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type index_d$c_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type index_d$c_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type index_d$c_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type index_d$c_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type index_d$c_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type index_d$c_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type index_d$c_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type index_d$c_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type index_d$c_CreateDraftOrderRequest as CreateDraftOrderRequest, type index_d$c_CreateDraftOrderResponse as CreateDraftOrderResponse, type index_d$c_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type index_d$c_CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequest, type index_d$c_CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponse, type index_d$c_CreateEmptyDraftOrderResponseNonNullableFields as CreateEmptyDraftOrderResponseNonNullableFields, type index_d$c_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type index_d$c_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type index_d$c_CreateOrderFromDraftResponseNonNullableFields as CreateOrderFromDraftResponseNonNullableFields, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type index_d$c_CustomLineItem as CustomLineItem, type index_d$c_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type index_d$c_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type index_d$c_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type index_d$c_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type index_d$c_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type index_d$c_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type index_d$c_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type index_d$c_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$1 as Details, type DetailsKindOneOf$1 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type index_d$c_DiscountDetails as DiscountDetails, type index_d$c_DiscountOption as DiscountOption, type index_d$c_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type index_d$c_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type index_d$c_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type index_d$c_DraftOrdersQueryResult as DraftOrdersQueryResult, index_d$c_EditingStatus as EditingStatus, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$1 as FieldViolation, index_d$c_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$c_GetDraftEditabilityStatusRequest as GetDraftEditabilityStatusRequest, type index_d$c_GetDraftEditabilityStatusResponse as GetDraftEditabilityStatusResponse, type index_d$c_GetDraftOrderRequest as GetDraftOrderRequest, type index_d$c_GetDraftOrderResponse as GetDraftOrderResponse, type index_d$c_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type index_d$c_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type index_d$c_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type index_d$c_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type index_d$c_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type index_d$c_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type index_d$c_ItemDetails as ItemDetails, type index_d$c_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type index_d$c_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, index_d$c_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type index_d$c_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, PaymentOptionType$2 as PaymentOptionType, type PaymentRefundFailed$1 as PaymentRefundFailed, type PaymentRefunded$1 as PaymentRefunded, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, index_d$c_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$2 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type index_d$c_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type index_d$c_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type index_d$c_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type index_d$c_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type index_d$c_RecipientInfoDetails as RecipientInfoDetails, type index_d$c_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated$1 as RefundInitiated, type RefundedAsStoreCredit$1 as RefundedAsStoreCredit, type RefundedPayment$1 as RefundedPayment, type RefundedPaymentKindOneOf$1 as RefundedPaymentKindOneOf, type RegularPaymentRefund$1 as RegularPaymentRefund, type RestoreInfo$9 as RestoreInfo, RuleType$1 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type index_d$c_SecuredMedia as SecuredMedia, type index_d$c_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type index_d$c_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type index_d$c_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type index_d$c_SetBillingInfoRequest as SetBillingInfoRequest, type index_d$c_SetBillingInfoResponse as SetBillingInfoResponse, type index_d$c_SetBillingInfoResponseNonNullableFields as SetBillingInfoResponseNonNullableFields, type index_d$c_SetBuyerInfoRequest as SetBuyerInfoRequest, type index_d$c_SetBuyerInfoResponse as SetBuyerInfoResponse, type index_d$c_SetBuyerInfoResponseNonNullableFields as SetBuyerInfoResponseNonNullableFields, type index_d$c_SetDiscountsRequest as SetDiscountsRequest, type index_d$c_SetDiscountsResponse as SetDiscountsResponse, type index_d$c_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type index_d$c_SetRecipientInfoRequest as SetRecipientInfoRequest, type index_d$c_SetRecipientInfoResponse as SetRecipientInfoResponse, type index_d$c_SetRecipientInfoResponseNonNullableFields as SetRecipientInfoResponseNonNullableFields, type index_d$c_SetShippingInfoRequest as SetShippingInfoRequest, type index_d$c_SetShippingInfoResponse as SetShippingInfoResponse, type index_d$c_SetShippingInfoResponseNonNullableFields as SetShippingInfoResponseNonNullableFields, type index_d$c_ShippingChangedDetails as ShippingChangedDetails, type index_d$c_ShippingDetails as ShippingDetails, type index_d$c_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$1 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TaxableAddress$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$c_UpdateLineItemsOptions as UpdateLineItemsOptions, type index_d$c_UpdateLineItemsRequest as UpdateLineItemsRequest, type index_d$c_UpdateLineItemsResponse as UpdateLineItemsResponse, type index_d$c_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type index_d$c_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type index_d$c_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type index_d$c_V1BalanceSummary as V1BalanceSummary, type index_d$c_V1CreatedBy as V1CreatedBy, type index_d$c_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type index_d$c_V1DeliveryLogistics as V1DeliveryLogistics, type index_d$c_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type index_d$c_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type index_d$c_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type index_d$c_V1ShippingPrice as V1ShippingPrice, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$3 as WeightUnit, index_d$c_addLineItemsToDraftOrder as addLineItemsToDraftOrder, index_d$c_commitDraftOrder as commitDraftOrder, index_d$c_createCustomAdditionalFees as createCustomAdditionalFees, index_d$c_createCustomDiscounts as createCustomDiscounts, index_d$c_createDraftOrder as createDraftOrder, index_d$c_createEmptyDraftOrder as createEmptyDraftOrder, index_d$c_createOrderFromDraft as createOrderFromDraft, index_d$c_deleteCustomAdditionalFees as deleteCustomAdditionalFees, index_d$c_deleteCustomDiscounts as deleteCustomDiscounts, index_d$c_deleteDraftOrder as deleteDraftOrder, index_d$c_getDraftOrder as getDraftOrder, index_d$c_getOrderDraftabilityStatus as getOrderDraftabilityStatus, index_d$c_queryDraftOrders as queryDraftOrders, index_d$c_setAdditionalFees as setAdditionalFees, index_d$c_setBillingInfo as setBillingInfo, index_d$c_setBuyerInfo as setBuyerInfo, index_d$c_setDiscounts as setDiscounts, index_d$c_setRecipientInfo as setRecipientInfo, index_d$c_setShippingInfo as setShippingInfo, index_d$c_updateLineItems as updateLineItems };
20770
+ export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type index_d$c_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type index_d$c_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type index_d$c_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type index_d$c_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type index_d$c_AdditionalFeeDetails as AdditionalFeeDetails, type index_d$c_AdditionalFeeOption as AdditionalFeeOption, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$5 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, index_d$c_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type index_d$c_BillingChangedDetails as BillingChangedDetails, type index_d$c_BillingDetails as BillingDetails, type index_d$c_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type index_d$c_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type index_d$c_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$c_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$2 as CatalogReference, type index_d$c_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type index_d$c_CommitDraftOrderOptions as CommitDraftOrderOptions, type index_d$c_CommitDraftOrderRequest as CommitDraftOrderRequest, type index_d$c_CommitDraftOrderResponse as CommitDraftOrderResponse, type index_d$c_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type index_d$c_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type index_d$c_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type index_d$c_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type index_d$c_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type index_d$c_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type index_d$c_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type index_d$c_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type index_d$c_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type index_d$c_CreateDraftOrderRequest as CreateDraftOrderRequest, type index_d$c_CreateDraftOrderResponse as CreateDraftOrderResponse, type index_d$c_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type index_d$c_CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequest, type index_d$c_CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponse, type index_d$c_CreateEmptyDraftOrderResponseNonNullableFields as CreateEmptyDraftOrderResponseNonNullableFields, type index_d$c_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type index_d$c_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type index_d$c_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$c_CustomLineItem as CustomLineItem, type index_d$c_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type index_d$c_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type index_d$c_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type index_d$c_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type index_d$c_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type index_d$c_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type index_d$c_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type index_d$c_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$1 as Details, type DetailsKindOneOf$1 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type index_d$c_DiscountDetails as DiscountDetails, type index_d$c_DiscountOption as DiscountOption, type index_d$c_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type index_d$c_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type index_d$c_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type index_d$c_DraftOrdersQueryResult as DraftOrdersQueryResult, index_d$c_EditingStatus as EditingStatus, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$1 as FieldViolation, index_d$c_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$c_GetDraftEditabilityStatusRequest as GetDraftEditabilityStatusRequest, type index_d$c_GetDraftEditabilityStatusResponse as GetDraftEditabilityStatusResponse, type index_d$c_GetDraftOrderRequest as GetDraftOrderRequest, type index_d$c_GetDraftOrderResponse as GetDraftOrderResponse, type index_d$c_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type index_d$c_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type index_d$c_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type index_d$c_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type index_d$c_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type index_d$c_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type index_d$c_ItemDetails as ItemDetails, type index_d$c_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type index_d$c_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, index_d$c_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type index_d$c_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, 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$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, index_d$c_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$2 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type index_d$c_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type index_d$c_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type index_d$c_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type index_d$c_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type index_d$c_RecipientInfoDetails as RecipientInfoDetails, type index_d$c_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated$1 as RefundInitiated, type RefundedAsStoreCredit$1 as RefundedAsStoreCredit, type RefundedPayment$1 as RefundedPayment, type RefundedPaymentKindOneOf$1 as RefundedPaymentKindOneOf, type RegularPayment$1 as RegularPayment, type RegularPaymentPaymentMethodDetailsOneOf$1 as RegularPaymentPaymentMethodDetailsOneOf, type RegularPaymentRefund$1 as RegularPaymentRefund, type RestoreInfo$9 as RestoreInfo, RuleType$1 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type index_d$c_SecuredMedia as SecuredMedia, type index_d$c_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type index_d$c_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type index_d$c_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type index_d$c_SetBillingInfoRequest as SetBillingInfoRequest, type index_d$c_SetBillingInfoResponse as SetBillingInfoResponse, type index_d$c_SetBillingInfoResponseNonNullableFields as SetBillingInfoResponseNonNullableFields, type index_d$c_SetBuyerInfoRequest as SetBuyerInfoRequest, type index_d$c_SetBuyerInfoResponse as SetBuyerInfoResponse, type index_d$c_SetBuyerInfoResponseNonNullableFields as SetBuyerInfoResponseNonNullableFields, type index_d$c_SetDiscountsRequest as SetDiscountsRequest, type index_d$c_SetDiscountsResponse as SetDiscountsResponse, type index_d$c_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type index_d$c_SetRecipientInfoRequest as SetRecipientInfoRequest, type index_d$c_SetRecipientInfoResponse as SetRecipientInfoResponse, type index_d$c_SetRecipientInfoResponseNonNullableFields as SetRecipientInfoResponseNonNullableFields, type index_d$c_SetShippingInfoRequest as SetShippingInfoRequest, type index_d$c_SetShippingInfoResponse as SetShippingInfoResponse, type index_d$c_SetShippingInfoResponseNonNullableFields as SetShippingInfoResponseNonNullableFields, type index_d$c_ShippingChangedDetails as ShippingChangedDetails, type index_d$c_ShippingDetails as ShippingDetails, type index_d$c_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$1 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TaxableAddress$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$c_UpdateLineItemsOptions as UpdateLineItemsOptions, type index_d$c_UpdateLineItemsRequest as UpdateLineItemsRequest, type index_d$c_UpdateLineItemsResponse as UpdateLineItemsResponse, type index_d$c_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type index_d$c_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type index_d$c_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type index_d$c_V1BalanceSummary as V1BalanceSummary, type index_d$c_V1CreatedBy as V1CreatedBy, type index_d$c_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type index_d$c_V1DeliveryLogistics as V1DeliveryLogistics, type index_d$c_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type index_d$c_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type index_d$c_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type index_d$c_V1ShippingPrice as V1ShippingPrice, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$3 as WeightUnit, index_d$c_addLineItemsToDraftOrder as addLineItemsToDraftOrder, index_d$c_commitDraftOrder as commitDraftOrder, index_d$c_createCustomAdditionalFees as createCustomAdditionalFees, index_d$c_createCustomDiscounts as createCustomDiscounts, index_d$c_createDraftOrder as createDraftOrder, index_d$c_createEmptyDraftOrder as createEmptyDraftOrder, index_d$c_createOrderFromDraft as createOrderFromDraft, index_d$c_deleteCustomAdditionalFees as deleteCustomAdditionalFees, index_d$c_deleteCustomDiscounts as deleteCustomDiscounts, index_d$c_deleteDraftOrder as deleteDraftOrder, index_d$c_getDraftOrder as getDraftOrder, index_d$c_getOrderDraftabilityStatus as getOrderDraftabilityStatus, index_d$c_queryDraftOrders as queryDraftOrders, index_d$c_setAdditionalFees as setAdditionalFees, index_d$c_setBillingInfo as setBillingInfo, index_d$c_setBuyerInfo as setBuyerInfo, index_d$c_setDiscounts as setDiscounts, index_d$c_setRecipientInfo as setRecipientInfo, index_d$c_setShippingInfo as setShippingInfo, index_d$c_updateLineItems as updateLineItems };
20700
20771
  }
20701
20772
 
20702
20773
  interface OrderWithFulfillments {
@@ -23368,6 +23439,56 @@ interface RefundedAsStoreCredit {
23368
23439
  /** Reason for refund */
23369
23440
  reason?: string | null;
23370
23441
  }
23442
+ interface PaymentPending extends PaymentPendingPaymentDetailsOneOf {
23443
+ /** Regular payment. */
23444
+ regular?: RegularPayment;
23445
+ /** Payment ID of payment associated with this activity */
23446
+ paymentId?: string;
23447
+ }
23448
+ /** @oneof */
23449
+ interface PaymentPendingPaymentDetailsOneOf {
23450
+ /** Regular payment. */
23451
+ regular?: RegularPayment;
23452
+ }
23453
+ interface RegularPayment extends RegularPaymentPaymentMethodDetailsOneOf {
23454
+ /** Whether regular card used */
23455
+ creditCardDetails?: CreditCardDetails;
23456
+ /** Payment amount */
23457
+ amount?: Price$2;
23458
+ }
23459
+ /** @oneof */
23460
+ interface RegularPaymentPaymentMethodDetailsOneOf {
23461
+ /** Whether regular card used */
23462
+ creditCardDetails?: CreditCardDetails;
23463
+ }
23464
+ interface CreditCardDetails {
23465
+ /** The last 4 digits of the card number. */
23466
+ lastFourDigits?: string | null;
23467
+ /** Card issuer's brand. */
23468
+ brand?: string | null;
23469
+ }
23470
+ interface PaymentCanceled extends PaymentCanceledPaymentDetailsOneOf {
23471
+ /** Regular payment. */
23472
+ regular?: RegularPayment;
23473
+ /** Payment ID of payment associated with this activity */
23474
+ paymentId?: string;
23475
+ }
23476
+ /** @oneof */
23477
+ interface PaymentCanceledPaymentDetailsOneOf {
23478
+ /** Regular payment. */
23479
+ regular?: RegularPayment;
23480
+ }
23481
+ interface PaymentDeclined extends PaymentDeclinedPaymentDetailsOneOf {
23482
+ /** Regular payment. */
23483
+ regular?: RegularPayment;
23484
+ /** Payment ID of payment associated with this activity */
23485
+ paymentId?: string;
23486
+ }
23487
+ /** @oneof */
23488
+ interface PaymentDeclinedPaymentDetailsOneOf {
23489
+ /** Regular payment. */
23490
+ regular?: RegularPayment;
23491
+ }
23371
23492
  declare enum ActivityType$1 {
23372
23493
  ORDER_REFUNDED = "ORDER_REFUNDED",
23373
23494
  ORDER_PLACED = "ORDER_PLACED",
@@ -23400,7 +23521,10 @@ declare enum ActivityType$1 {
23400
23521
  REFUND_INITIATED = "REFUND_INITIATED",
23401
23522
  PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
23402
23523
  PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
23403
- REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
23524
+ REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT",
23525
+ PAYMENT_PENDING = "PAYMENT_PENDING",
23526
+ PAYMENT_CANCELED = "PAYMENT_CANCELED",
23527
+ PAYMENT_DECLINED = "PAYMENT_DECLINED"
23404
23528
  }
23405
23529
  declare enum AttributionSource {
23406
23530
  UNSPECIFIED = "UNSPECIFIED",
@@ -24201,9 +24325,9 @@ declare enum MembershipPaymentStatus$2 {
24201
24325
  CHARGE_FAILED = "CHARGE_FAILED"
24202
24326
  }
24203
24327
  interface MembershipName$3 {
24204
- /** The name of this membership */
24328
+ /** Membership name. */
24205
24329
  original?: string;
24206
- /** Optional - Translated name of this membership. Defaults to `original` when not provided. */
24330
+ /** Translated membership name. Defaults to `original` when not provided. */
24207
24331
  translated?: string | null;
24208
24332
  }
24209
24333
  interface Refund$2 {
@@ -26935,6 +27059,21 @@ interface PaymentRefundFailedNonNullableFields {
26935
27059
  interface RefundedAsStoreCreditNonNullableFields {
26936
27060
  amount?: PriceNonNullableFields$2;
26937
27061
  }
27062
+ interface RegularPaymentNonNullableFields {
27063
+ amount?: PriceNonNullableFields$2;
27064
+ }
27065
+ interface PaymentPendingNonNullableFields {
27066
+ regular?: RegularPaymentNonNullableFields;
27067
+ paymentId: string;
27068
+ }
27069
+ interface PaymentCanceledNonNullableFields {
27070
+ regular?: RegularPaymentNonNullableFields;
27071
+ paymentId: string;
27072
+ }
27073
+ interface PaymentDeclinedNonNullableFields {
27074
+ regular?: RegularPaymentNonNullableFields;
27075
+ paymentId: string;
27076
+ }
26938
27077
  interface ActivityNonNullableFields {
26939
27078
  customActivity?: CustomActivityNonNullableFields;
26940
27079
  merchantComment?: MerchantCommentNonNullableFields;
@@ -26950,6 +27089,9 @@ interface ActivityNonNullableFields {
26950
27089
  paymentRefunded?: PaymentRefundedNonNullableFields;
26951
27090
  paymentRefundFailed?: PaymentRefundFailedNonNullableFields;
26952
27091
  refundedAsStoreCredit?: RefundedAsStoreCreditNonNullableFields;
27092
+ paymentPending?: PaymentPendingNonNullableFields;
27093
+ paymentCanceled?: PaymentCanceledNonNullableFields;
27094
+ paymentDeclined?: PaymentDeclinedNonNullableFields;
26953
27095
  type: ActivityType$1;
26954
27096
  }
26955
27097
  interface CreatedByNonNullableFields {
@@ -27653,6 +27795,7 @@ type index_d$8_CreatePaymentGatewayOrderRequest = CreatePaymentGatewayOrderReque
27653
27795
  type index_d$8_CreatePaymentGatewayOrderResponse = CreatePaymentGatewayOrderResponse;
27654
27796
  type index_d$8_CreatedBy = CreatedBy;
27655
27797
  type index_d$8_CreatedByStringOneOf = CreatedByStringOneOf;
27798
+ type index_d$8_CreditCardDetails = CreditCardDetails;
27656
27799
  type index_d$8_CursorSearch = CursorSearch;
27657
27800
  type index_d$8_CursorSearchPagingMethodOneOf = CursorSearchPagingMethodOneOf;
27658
27801
  type index_d$8_CustomActivity = CustomActivity;
@@ -27808,9 +27951,15 @@ type index_d$8_OrderTaxBreakdown = OrderTaxBreakdown;
27808
27951
  type index_d$8_OrderTaxInfo = OrderTaxInfo;
27809
27952
  type index_d$8_OrderUpdatedEnvelope = OrderUpdatedEnvelope;
27810
27953
  type index_d$8_OrdersExperiments = OrdersExperiments;
27954
+ type index_d$8_PaymentCanceled = PaymentCanceled;
27955
+ type index_d$8_PaymentCanceledPaymentDetailsOneOf = PaymentCanceledPaymentDetailsOneOf;
27811
27956
  type index_d$8_PaymentCapture = PaymentCapture;
27812
27957
  type index_d$8_PaymentCollectabilityStatus = PaymentCollectabilityStatus;
27813
27958
  declare const index_d$8_PaymentCollectabilityStatus: typeof PaymentCollectabilityStatus;
27959
+ type index_d$8_PaymentDeclined = PaymentDeclined;
27960
+ type index_d$8_PaymentDeclinedPaymentDetailsOneOf = PaymentDeclinedPaymentDetailsOneOf;
27961
+ type index_d$8_PaymentPending = PaymentPending;
27962
+ type index_d$8_PaymentPendingPaymentDetailsOneOf = PaymentPendingPaymentDetailsOneOf;
27814
27963
  type index_d$8_PaymentRefundFailed = PaymentRefundFailed;
27815
27964
  type index_d$8_PaymentRefunded = PaymentRefunded;
27816
27965
  type index_d$8_PaymentStatusUpdated = PaymentStatusUpdated;
@@ -27864,6 +28013,8 @@ type index_d$8_RefundInitiated = RefundInitiated;
27864
28013
  type index_d$8_RefundedAsStoreCredit = RefundedAsStoreCredit;
27865
28014
  type index_d$8_RefundedPayment = RefundedPayment;
27866
28015
  type index_d$8_RefundedPaymentKindOneOf = RefundedPaymentKindOneOf;
28016
+ type index_d$8_RegularPayment = RegularPayment;
28017
+ type index_d$8_RegularPaymentPaymentMethodDetailsOneOf = RegularPaymentPaymentMethodDetailsOneOf;
27867
28018
  type index_d$8_RegularPaymentRefund = RegularPaymentRefund;
27868
28019
  type index_d$8_Reschedule = Reschedule;
27869
28020
  type index_d$8_SavedPaymentMethod = SavedPaymentMethod;
@@ -27986,7 +28137,7 @@ declare const index_d$8_searchOrders: typeof searchOrders;
27986
28137
  declare const index_d$8_updateOrder: typeof updateOrder;
27987
28138
  declare const index_d$8_voidAuthorizedPayments: typeof voidAuthorizedPayments;
27988
28139
  declare namespace index_d$8 {
27989
- export { type ActionEvent$6 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type index_d$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type index_d$8_AddActivitiesRequest as AddActivitiesRequest, type index_d$8_AddActivitiesResponse as AddActivitiesResponse, type index_d$8_AddActivityRequest as AddActivityRequest, type index_d$8_AddActivityResponse as AddActivityResponse, type index_d$8_AddInternalActivityRequest as AddInternalActivityRequest, type index_d$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type index_d$8_AdditionalFeeDelta as AdditionalFeeDelta, type index_d$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$4 as Address, type index_d$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type index_d$8_AddressWithContact as AddressWithContact, type index_d$8_AggregateOrdersRequest as AggregateOrdersRequest, type index_d$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type index_d$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type index_d$8_AppliedDiscountDelta as AppliedDiscountDelta, type index_d$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$8_ArchiveOrderRequest as ArchiveOrderRequest, type index_d$8_ArchiveOrderResponse as ArchiveOrderResponse, index_d$8_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$2 as AuthorizationActionFailureDetails, type AuthorizationCapture$2 as AuthorizationCapture, AuthorizationCaptureStatus$2 as AuthorizationCaptureStatus, type AuthorizationDetails$2 as AuthorizationDetails, type AuthorizationVoid$2 as AuthorizationVoid, AuthorizationVoidStatus$2 as AuthorizationVoidStatus, type index_d$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$8_Balance as Balance, type index_d$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$4 as BaseEventMetadata, type index_d$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$8_BulkOrderResult as BulkOrderResult, type index_d$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$8_BulkUpdateOrderTagsOptions as BulkUpdateOrderTagsOptions, type index_d$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type index_d$8_BulkUpdateOrderTagsResponseNonNullableFields as BulkUpdateOrderTagsResponseNonNullableFields, type index_d$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type index_d$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type index_d$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type index_d$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type index_d$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$8_BuyerInfoUpdate as BuyerInfoUpdate, type CalculateRefundItemRequest$1 as CalculateRefundItemRequest, type CalculateRefundItemResponse$1 as CalculateRefundItemResponse, type CalculateRefundRequest$1 as CalculateRefundRequest, type CalculateRefundResponse$1 as CalculateRefundResponse, type index_d$8_CalculatedTax as CalculatedTax, type index_d$8_CalculatedTaxes as CalculatedTaxes, type index_d$8_Cancel as Cancel, type index_d$8_CancelOrderOptions as CancelOrderOptions, type index_d$8_CancelOrderRequest as CancelOrderRequest, type index_d$8_CancelOrderResponse as CancelOrderResponse, type index_d$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type index_d$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type index_d$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type index_d$8_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type index_d$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type index_d$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type index_d$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type index_d$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type index_d$8_ChargedBy as ChargedBy, type index_d$8_Color as Color, type index_d$8_CommitDeltasRequest as CommitDeltasRequest, type index_d$8_CommitDeltasResponse as CommitDeltasResponse, type index_d$8_CommittedDiffs as CommittedDiffs, type index_d$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type index_d$8_CommonAddress as CommonAddress, type index_d$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$8_Company as Company, type index_d$8_Complete as Complete, type index_d$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type index_d$8_CreateOrderRequest as CreateOrderRequest, type index_d$8_CreateOrderResponse as CreateOrderResponse, type index_d$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type index_d$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type index_d$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type index_d$8_CreatedBy as CreatedBy, type index_d$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type index_d$8_CursorSearch as CursorSearch, type index_d$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, index_d$8_CustomFieldGroup as CustomFieldGroup, type index_d$8_CustomFieldValue as CustomFieldValue, type index_d$8_Customer as Customer, type index_d$8_DecrementData as DecrementData, type index_d$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type index_d$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type index_d$8_DelayedCaptureSettings as DelayedCaptureSettings, type index_d$8_DeleteActivityRequest as DeleteActivityRequest, type index_d$8_DeleteActivityResponse as DeleteActivityResponse, type index_d$8_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type index_d$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, index_d$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type index_d$8_Deposit as Deposit, index_d$8_DepositType as DepositType, type index_d$8_DescriptionLine as DescriptionLine, type index_d$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$8_DescriptionLineName as DescriptionLineName, index_d$8_DescriptionLineType as DescriptionLineType, type index_d$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type index_d$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, index_d$8_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type index_d$8_DownloadLinkSent as DownloadLinkSent, type index_d$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type index_d$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type index_d$8_DraftOrderDiffs as DraftOrderDiffs, type index_d$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type index_d$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type index_d$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type index_d$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type index_d$8_Duration as Duration, index_d$8_DurationUnit as DurationUnit, type index_d$8_Email as Email, type index_d$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$4 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type index_d$8_ExternalUriMapping as ExternalUriMapping, type index_d$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type index_d$8_FullAddressContactDetails as FullAddressContactDetails, type index_d$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$8_GetOrderRequest as GetOrderRequest, type index_d$8_GetOrderResponse as GetOrderResponse, type index_d$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type index_d$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type index_d$8_GetShipmentsRequest as GetShipmentsRequest, type index_d$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type index_d$8_HtmlApplication as HtmlApplication, type index_d$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type index_d$8_InternalActivity as InternalActivity, type index_d$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type index_d$8_InternalDocument as InternalDocument, type index_d$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type index_d$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type index_d$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type index_d$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type index_d$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, index_d$8_InventoryAction as InventoryAction, type index_d$8_InventoryUpdateDetails as InventoryUpdateDetails, type index_d$8_InvoiceAdded as InvoiceAdded, type index_d$8_InvoiceDates as InvoiceDates, type index_d$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type index_d$8_InvoiceFields as InvoiceFields, type index_d$8_InvoiceSent as InvoiceSent, type index_d$8_InvoiceSentEvent as InvoiceSentEvent, index_d$8_InvoiceStatus as InvoiceStatus, type index_d$8_InvoicesPayment as InvoicesPayment, type index_d$8_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, type index_d$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type index_d$8_LineItemAmount as LineItemAmount, type index_d$8_LineItemChanges as LineItemChanges, type index_d$8_LineItemDelta as LineItemDelta, type index_d$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type index_d$8_LineItemExchangeData as LineItemExchangeData, type index_d$8_LineItemMetaData as LineItemMetaData, type index_d$8_LineItemPriceChange as LineItemPriceChange, type index_d$8_LineItemQuantityChange as LineItemQuantityChange, index_d$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type index_d$8_LineItemTax as LineItemTax, type index_d$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$8_LineItemTaxInfo as LineItemTaxInfo, type index_d$8_LineItemUpdate as LineItemUpdate, type index_d$8_LineItems as LineItems, type index_d$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type index_d$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type index_d$8_Locale as Locale, type index_d$8_LocationAndQuantity as LocationAndQuantity, type index_d$8_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$8_ManagedDiscount as ManagedDiscount, type index_d$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type index_d$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type index_d$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type index_d$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type index_d$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type index_d$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type index_d$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type index_d$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type index_d$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type index_d$8_MaskedOrder as MaskedOrder, type index_d$8_MaskedOrderLineItem as MaskedOrderLineItem, type index_d$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type index_d$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type index_d$8_MetaData as MetaData, type index_d$8_MetaSite as MetaSite, type index_d$8_MetaTag as MetaTag, index_d$8_Namespace as Namespace, type index_d$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, index_d$8_OrderApprovalStrategy as OrderApprovalStrategy, type index_d$8_OrderApproved as OrderApproved, type index_d$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type index_d$8_OrderCanceled as OrderCanceled, type index_d$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type index_d$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type index_d$8_OrderChange as OrderChange, type index_d$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$8_OrderCreateNotifications as OrderCreateNotifications, type index_d$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type index_d$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$8_OrderCreationSettings as OrderCreationSettings, type index_d$8_OrderDeltasCommitted as OrderDeltasCommitted, type index_d$8_OrderFulfilled as OrderFulfilled, type index_d$8_OrderItemsRestocked as OrderItemsRestocked, type index_d$8_OrderLineItem as OrderLineItem, type index_d$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type index_d$8_OrderNonNullableFields as OrderNonNullableFields, type index_d$8_OrderNotFulfilled as OrderNotFulfilled, type index_d$8_OrderPaid as OrderPaid, type index_d$8_OrderPartiallyPaid as OrderPartiallyPaid, type index_d$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type index_d$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, index_d$8_OrderStatus as OrderStatus, type index_d$8_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type index_d$8_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type index_d$8_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type index_d$8_PaymentCapture as PaymentCapture, index_d$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$8_PaymentRefundFailed as PaymentRefundFailed, type index_d$8_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type index_d$8_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$8_Payments as Payments, type index_d$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type index_d$8_PickupReadyEmailSent as PickupReadyEmailSent, index_d$8_Placement as Placement, type index_d$8_PlainTextValue as PlainTextValue, type index_d$8_PlatformPaging as PlatformPaging, type index_d$8_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$8_PlatformQuery as PlatformQuery, type index_d$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d$8_PreparePaymentCollectionOptions as PreparePaymentCollectionOptions, type index_d$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type index_d$8_PreparePaymentCollectionResponseNonNullableFields as PreparePaymentCollectionResponseNonNullableFields, type index_d$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type index_d$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type index_d$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type index_d$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type index_d$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type index_d$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type index_d$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type index_d$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type index_d$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type index_d$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type index_d$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type index_d$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, index_d$8_PreviewEmailType as PreviewEmailType, type index_d$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type index_d$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type index_d$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type index_d$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type index_d$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type index_d$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type index_d$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type index_d$8_ProductName as ProductName, type index_d$8_PublicActivity as PublicActivity, type index_d$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type index_d$8_QueryOrderRequest as QueryOrderRequest, type index_d$8_QueryOrderResponse as QueryOrderResponse, type index_d$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type index_d$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type index_d$8_QuotesAddress as QuotesAddress, Reason$2 as Reason, type index_d$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type index_d$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type index_d$8_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type index_d$8_RefundInitiated as RefundInitiated, type RefundItem$2 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$2 as RefundStatus, type RefundTransaction$2 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type index_d$8_RefundedAsStoreCredit as RefundedAsStoreCredit, type index_d$8_RefundedPayment as RefundedPayment, type index_d$8_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$8_RegularPaymentRefund as RegularPaymentRefund, type index_d$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type index_d$8_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$2 as ScheduledAction, type index_d$8_SearchOrdersOptions as SearchOrdersOptions, type index_d$8_SearchOrdersRequest as SearchOrdersRequest, type index_d$8_SearchOrdersResponse as SearchOrdersResponse, type index_d$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type index_d$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type index_d$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type index_d$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type index_d$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type index_d$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type index_d$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type index_d$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type index_d$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type index_d$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type index_d$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type index_d$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type index_d$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type index_d$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type index_d$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type index_d$8_SendRefundEmailRequest as SendRefundEmailRequest, type index_d$8_SendRefundEmailResponse as SendRefundEmailResponse, type index_d$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type index_d$8_ShippingAddressEdited as ShippingAddressEdited, type index_d$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type index_d$8_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$2 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, index_d$8_SourceType as SourceType, type index_d$8_StandardDetails as StandardDetails, index_d$8_State as State, type StreetAddress$3 as StreetAddress, type index_d$8_Subdivision as Subdivision, index_d$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type index_d$8_TagList as TagList, type index_d$8_Tags as Tags, type index_d$8_Task as Task, type index_d$8_TaskAction as TaskAction, type index_d$8_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type TaxableAddress$1 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$1 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$1 as TaxableAddressType, type index_d$8_TotalPrice as TotalPrice, type index_d$8_TotalPriceChange as TotalPriceChange, type index_d$8_TrackingLinkAdded as TrackingLinkAdded, type index_d$8_TrackingNumberAdded as TrackingNumberAdded, type index_d$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type index_d$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type index_d$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type index_d$8_TriggerReindexRequest as TriggerReindexRequest, type index_d$8_TriggerReindexResponse as TriggerReindexResponse, type index_d$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type index_d$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type index_d$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type index_d$8_UpdateActivityRequest as UpdateActivityRequest, type index_d$8_UpdateActivityResponse as UpdateActivityResponse, type index_d$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type index_d$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type index_d$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type index_d$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type index_d$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type index_d$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type index_d$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type index_d$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type index_d$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type index_d$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type index_d$8_UpdateOrder as UpdateOrder, type index_d$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type index_d$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type index_d$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type index_d$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type index_d$8_UpdateOrderRequest as UpdateOrderRequest, type index_d$8_UpdateOrderResponse as UpdateOrderResponse, type index_d$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type index_d$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type index_d$8_UpsertRefundRequest as UpsertRefundRequest, type index_d$8_UpsertRefundResponse as UpsertRefundResponse, type index_d$8_UserDataResponse as UserDataResponse, type index_d$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type index_d$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type index_d$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type index_d$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type index_d$8_V1LineItemDelta as V1LineItemDelta, type index_d$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type index_d$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$8_V1RestockItem as V1RestockItem, type index_d$8_V1ScheduledAction as V1ScheduledAction, type index_d$8_V1ShippingInformation as V1ShippingInformation, type index_d$8_Value as Value, index_d$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type index_d$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type index_d$8_VersionedDocumentId as VersionedDocumentId, type index_d$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, index_d$8_VersioningMode as VersioningMode, type index_d$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type index_d$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type index_d$8_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type index_d$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type index_d$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type index_d$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type index_d$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, type index_d$8__publicOnOrderUpdatedType as _publicOnOrderUpdatedType, index_d$8_bulkUpdateOrderTags as bulkUpdateOrderTags, index_d$8_bulkUpdateOrders as bulkUpdateOrders, index_d$8_cancelOrder as cancelOrder, index_d$8_captureAuthorizedPayments as captureAuthorizedPayments, index_d$8_createOrder as createOrder, index_d$8_getOrder as getOrder, index_d$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, index_d$8_onOrderApproved as onOrderApproved, index_d$8_onOrderCanceled as onOrderCanceled, index_d$8_onOrderCreated as onOrderCreated, index_d$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, index_d$8_onOrderUpdated as onOrderUpdated, index_d$8_preparePaymentCollection as preparePaymentCollection, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, onOrderUpdated$1 as publicOnOrderUpdated, index_d$8_searchOrders as searchOrders, index_d$8_updateOrder as updateOrder, index_d$8_voidAuthorizedPayments as voidAuthorizedPayments };
28140
+ export { type ActionEvent$6 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type index_d$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type index_d$8_AddActivitiesRequest as AddActivitiesRequest, type index_d$8_AddActivitiesResponse as AddActivitiesResponse, type index_d$8_AddActivityRequest as AddActivityRequest, type index_d$8_AddActivityResponse as AddActivityResponse, type index_d$8_AddInternalActivityRequest as AddInternalActivityRequest, type index_d$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type index_d$8_AdditionalFeeDelta as AdditionalFeeDelta, type index_d$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$4 as Address, type index_d$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type index_d$8_AddressWithContact as AddressWithContact, type index_d$8_AggregateOrdersRequest as AggregateOrdersRequest, type index_d$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type index_d$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type index_d$8_AppliedDiscountDelta as AppliedDiscountDelta, type index_d$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$8_ArchiveOrderRequest as ArchiveOrderRequest, type index_d$8_ArchiveOrderResponse as ArchiveOrderResponse, index_d$8_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$2 as AuthorizationActionFailureDetails, type AuthorizationCapture$2 as AuthorizationCapture, AuthorizationCaptureStatus$2 as AuthorizationCaptureStatus, type AuthorizationDetails$2 as AuthorizationDetails, type AuthorizationVoid$2 as AuthorizationVoid, AuthorizationVoidStatus$2 as AuthorizationVoidStatus, type index_d$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$8_Balance as Balance, type index_d$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$4 as BaseEventMetadata, type index_d$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$8_BulkOrderResult as BulkOrderResult, type index_d$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$8_BulkUpdateOrderTagsOptions as BulkUpdateOrderTagsOptions, type index_d$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type index_d$8_BulkUpdateOrderTagsResponseNonNullableFields as BulkUpdateOrderTagsResponseNonNullableFields, type index_d$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type index_d$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type index_d$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type index_d$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type index_d$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$8_BuyerInfoUpdate as BuyerInfoUpdate, type CalculateRefundItemRequest$1 as CalculateRefundItemRequest, type CalculateRefundItemResponse$1 as CalculateRefundItemResponse, type CalculateRefundRequest$1 as CalculateRefundRequest, type CalculateRefundResponse$1 as CalculateRefundResponse, type index_d$8_CalculatedTax as CalculatedTax, type index_d$8_CalculatedTaxes as CalculatedTaxes, type index_d$8_Cancel as Cancel, type index_d$8_CancelOrderOptions as CancelOrderOptions, type index_d$8_CancelOrderRequest as CancelOrderRequest, type index_d$8_CancelOrderResponse as CancelOrderResponse, type index_d$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type index_d$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type index_d$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type index_d$8_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type index_d$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type index_d$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type index_d$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type index_d$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type index_d$8_ChargedBy as ChargedBy, type index_d$8_Color as Color, type index_d$8_CommitDeltasRequest as CommitDeltasRequest, type index_d$8_CommitDeltasResponse as CommitDeltasResponse, type index_d$8_CommittedDiffs as CommittedDiffs, type index_d$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type index_d$8_CommonAddress as CommonAddress, type index_d$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$8_Company as Company, type index_d$8_Complete as Complete, type index_d$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type index_d$8_CreateOrderRequest as CreateOrderRequest, type index_d$8_CreateOrderResponse as CreateOrderResponse, type index_d$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type index_d$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type index_d$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type index_d$8_CreatedBy as CreatedBy, type index_d$8_CreatedByStringOneOf as CreatedByStringOneOf, type index_d$8_CreditCardDetails as CreditCardDetails, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type index_d$8_CursorSearch as CursorSearch, type index_d$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, index_d$8_CustomFieldGroup as CustomFieldGroup, type index_d$8_CustomFieldValue as CustomFieldValue, type index_d$8_Customer as Customer, type index_d$8_DecrementData as DecrementData, type index_d$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type index_d$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type index_d$8_DelayedCaptureSettings as DelayedCaptureSettings, type index_d$8_DeleteActivityRequest as DeleteActivityRequest, type index_d$8_DeleteActivityResponse as DeleteActivityResponse, type index_d$8_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type index_d$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, index_d$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type index_d$8_Deposit as Deposit, index_d$8_DepositType as DepositType, type index_d$8_DescriptionLine as DescriptionLine, type index_d$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$8_DescriptionLineName as DescriptionLineName, index_d$8_DescriptionLineType as DescriptionLineType, type index_d$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type index_d$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, index_d$8_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type index_d$8_DownloadLinkSent as DownloadLinkSent, type index_d$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type index_d$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type index_d$8_DraftOrderDiffs as DraftOrderDiffs, type index_d$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type index_d$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type index_d$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type index_d$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type index_d$8_Duration as Duration, index_d$8_DurationUnit as DurationUnit, type index_d$8_Email as Email, type index_d$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$4 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type index_d$8_ExternalUriMapping as ExternalUriMapping, type index_d$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type index_d$8_FullAddressContactDetails as FullAddressContactDetails, type index_d$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$8_GetOrderRequest as GetOrderRequest, type index_d$8_GetOrderResponse as GetOrderResponse, type index_d$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type index_d$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type index_d$8_GetShipmentsRequest as GetShipmentsRequest, type index_d$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type index_d$8_HtmlApplication as HtmlApplication, type index_d$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type index_d$8_InternalActivity as InternalActivity, type index_d$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type index_d$8_InternalDocument as InternalDocument, type index_d$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type index_d$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type index_d$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type index_d$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type index_d$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, index_d$8_InventoryAction as InventoryAction, type index_d$8_InventoryUpdateDetails as InventoryUpdateDetails, type index_d$8_InvoiceAdded as InvoiceAdded, type index_d$8_InvoiceDates as InvoiceDates, type index_d$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type index_d$8_InvoiceFields as InvoiceFields, type index_d$8_InvoiceSent as InvoiceSent, type index_d$8_InvoiceSentEvent as InvoiceSentEvent, index_d$8_InvoiceStatus as InvoiceStatus, type index_d$8_InvoicesPayment as InvoicesPayment, type index_d$8_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, type index_d$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type index_d$8_LineItemAmount as LineItemAmount, type index_d$8_LineItemChanges as LineItemChanges, type index_d$8_LineItemDelta as LineItemDelta, type index_d$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type index_d$8_LineItemExchangeData as LineItemExchangeData, type index_d$8_LineItemMetaData as LineItemMetaData, type index_d$8_LineItemPriceChange as LineItemPriceChange, type index_d$8_LineItemQuantityChange as LineItemQuantityChange, index_d$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type index_d$8_LineItemTax as LineItemTax, type index_d$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$8_LineItemTaxInfo as LineItemTaxInfo, type index_d$8_LineItemUpdate as LineItemUpdate, type index_d$8_LineItems as LineItems, type index_d$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type index_d$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type index_d$8_Locale as Locale, type index_d$8_LocationAndQuantity as LocationAndQuantity, type index_d$8_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$8_ManagedDiscount as ManagedDiscount, type index_d$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type index_d$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type index_d$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type index_d$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type index_d$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type index_d$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type index_d$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type index_d$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type index_d$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type index_d$8_MaskedOrder as MaskedOrder, type index_d$8_MaskedOrderLineItem as MaskedOrderLineItem, type index_d$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type index_d$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type index_d$8_MetaData as MetaData, type index_d$8_MetaSite as MetaSite, type index_d$8_MetaTag as MetaTag, index_d$8_Namespace as Namespace, type index_d$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, index_d$8_OrderApprovalStrategy as OrderApprovalStrategy, type index_d$8_OrderApproved as OrderApproved, type index_d$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type index_d$8_OrderCanceled as OrderCanceled, type index_d$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type index_d$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type index_d$8_OrderChange as OrderChange, type index_d$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$8_OrderCreateNotifications as OrderCreateNotifications, type index_d$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type index_d$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$8_OrderCreationSettings as OrderCreationSettings, type index_d$8_OrderDeltasCommitted as OrderDeltasCommitted, type index_d$8_OrderFulfilled as OrderFulfilled, type index_d$8_OrderItemsRestocked as OrderItemsRestocked, type index_d$8_OrderLineItem as OrderLineItem, type index_d$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type index_d$8_OrderNonNullableFields as OrderNonNullableFields, type index_d$8_OrderNotFulfilled as OrderNotFulfilled, type index_d$8_OrderPaid as OrderPaid, type index_d$8_OrderPartiallyPaid as OrderPartiallyPaid, type index_d$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type index_d$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, index_d$8_OrderStatus as OrderStatus, type index_d$8_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type index_d$8_OrderUpdatedEnvelope as OrderUpdatedEnvelope, type index_d$8_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type index_d$8_PaymentCanceled as PaymentCanceled, type index_d$8_PaymentCanceledPaymentDetailsOneOf as PaymentCanceledPaymentDetailsOneOf, type index_d$8_PaymentCapture as PaymentCapture, index_d$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, type index_d$8_PaymentDeclined as PaymentDeclined, type index_d$8_PaymentDeclinedPaymentDetailsOneOf as PaymentDeclinedPaymentDetailsOneOf, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type index_d$8_PaymentPending as PaymentPending, type index_d$8_PaymentPendingPaymentDetailsOneOf as PaymentPendingPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$8_PaymentRefundFailed as PaymentRefundFailed, type index_d$8_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type index_d$8_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$8_Payments as Payments, type index_d$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type index_d$8_PickupReadyEmailSent as PickupReadyEmailSent, index_d$8_Placement as Placement, type index_d$8_PlainTextValue as PlainTextValue, type index_d$8_PlatformPaging as PlatformPaging, type index_d$8_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$8_PlatformQuery as PlatformQuery, type index_d$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d$8_PreparePaymentCollectionOptions as PreparePaymentCollectionOptions, type index_d$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type index_d$8_PreparePaymentCollectionResponseNonNullableFields as PreparePaymentCollectionResponseNonNullableFields, type index_d$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type index_d$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type index_d$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type index_d$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type index_d$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type index_d$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type index_d$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type index_d$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type index_d$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type index_d$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type index_d$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type index_d$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, index_d$8_PreviewEmailType as PreviewEmailType, type index_d$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type index_d$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type index_d$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type index_d$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type index_d$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type index_d$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type index_d$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type index_d$8_ProductName as ProductName, type index_d$8_PublicActivity as PublicActivity, type index_d$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type index_d$8_QueryOrderRequest as QueryOrderRequest, type index_d$8_QueryOrderResponse as QueryOrderResponse, type index_d$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type index_d$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type index_d$8_QuotesAddress as QuotesAddress, Reason$2 as Reason, type index_d$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type index_d$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type index_d$8_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type index_d$8_RefundInitiated as RefundInitiated, type RefundItem$2 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$2 as RefundStatus, type RefundTransaction$2 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type index_d$8_RefundedAsStoreCredit as RefundedAsStoreCredit, type index_d$8_RefundedPayment as RefundedPayment, type index_d$8_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type index_d$8_RegularPayment as RegularPayment, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$8_RegularPaymentPaymentMethodDetailsOneOf as RegularPaymentPaymentMethodDetailsOneOf, type index_d$8_RegularPaymentRefund as RegularPaymentRefund, type index_d$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type index_d$8_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$2 as ScheduledAction, type index_d$8_SearchOrdersOptions as SearchOrdersOptions, type index_d$8_SearchOrdersRequest as SearchOrdersRequest, type index_d$8_SearchOrdersResponse as SearchOrdersResponse, type index_d$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type index_d$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type index_d$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type index_d$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type index_d$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type index_d$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type index_d$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type index_d$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type index_d$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type index_d$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type index_d$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type index_d$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type index_d$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type index_d$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type index_d$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type index_d$8_SendRefundEmailRequest as SendRefundEmailRequest, type index_d$8_SendRefundEmailResponse as SendRefundEmailResponse, type index_d$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type index_d$8_ShippingAddressEdited as ShippingAddressEdited, type index_d$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type index_d$8_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$2 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, index_d$8_SourceType as SourceType, type index_d$8_StandardDetails as StandardDetails, index_d$8_State as State, type StreetAddress$3 as StreetAddress, type index_d$8_Subdivision as Subdivision, index_d$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type index_d$8_TagList as TagList, type index_d$8_Tags as Tags, type index_d$8_Task as Task, type index_d$8_TaskAction as TaskAction, type index_d$8_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type TaxableAddress$1 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$1 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$1 as TaxableAddressType, type index_d$8_TotalPrice as TotalPrice, type index_d$8_TotalPriceChange as TotalPriceChange, type index_d$8_TrackingLinkAdded as TrackingLinkAdded, type index_d$8_TrackingNumberAdded as TrackingNumberAdded, type index_d$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type index_d$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type index_d$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type index_d$8_TriggerReindexRequest as TriggerReindexRequest, type index_d$8_TriggerReindexResponse as TriggerReindexResponse, type index_d$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type index_d$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type index_d$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type index_d$8_UpdateActivityRequest as UpdateActivityRequest, type index_d$8_UpdateActivityResponse as UpdateActivityResponse, type index_d$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type index_d$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type index_d$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type index_d$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type index_d$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type index_d$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type index_d$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type index_d$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type index_d$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type index_d$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type index_d$8_UpdateOrder as UpdateOrder, type index_d$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type index_d$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type index_d$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type index_d$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type index_d$8_UpdateOrderRequest as UpdateOrderRequest, type index_d$8_UpdateOrderResponse as UpdateOrderResponse, type index_d$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type index_d$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type index_d$8_UpsertRefundRequest as UpsertRefundRequest, type index_d$8_UpsertRefundResponse as UpsertRefundResponse, type index_d$8_UserDataResponse as UserDataResponse, type index_d$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type index_d$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type index_d$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type index_d$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type index_d$8_V1LineItemDelta as V1LineItemDelta, type index_d$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type index_d$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$8_V1RestockItem as V1RestockItem, type index_d$8_V1ScheduledAction as V1ScheduledAction, type index_d$8_V1ShippingInformation as V1ShippingInformation, type index_d$8_Value as Value, index_d$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type index_d$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type index_d$8_VersionedDocumentId as VersionedDocumentId, type index_d$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, index_d$8_VersioningMode as VersioningMode, type index_d$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type index_d$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type index_d$8_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type index_d$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type index_d$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type index_d$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type index_d$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, type index_d$8__publicOnOrderUpdatedType as _publicOnOrderUpdatedType, index_d$8_bulkUpdateOrderTags as bulkUpdateOrderTags, index_d$8_bulkUpdateOrders as bulkUpdateOrders, index_d$8_cancelOrder as cancelOrder, index_d$8_captureAuthorizedPayments as captureAuthorizedPayments, index_d$8_createOrder as createOrder, index_d$8_getOrder as getOrder, index_d$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, index_d$8_onOrderApproved as onOrderApproved, index_d$8_onOrderCanceled as onOrderCanceled, index_d$8_onOrderCreated as onOrderCreated, index_d$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, index_d$8_onOrderUpdated as onOrderUpdated, index_d$8_preparePaymentCollection as preparePaymentCollection, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, onOrderUpdated$1 as publicOnOrderUpdated, index_d$8_searchOrders as searchOrders, index_d$8_updateOrder as updateOrder, index_d$8_voidAuthorizedPayments as voidAuthorizedPayments };
27990
28141
  }
27991
28142
 
27992
28143
  interface OrderPaymentRequest {
@@ -29135,9 +29286,9 @@ declare enum MembershipPaymentStatus {
29135
29286
  CHARGE_FAILED = "CHARGE_FAILED"
29136
29287
  }
29137
29288
  interface MembershipName$1 {
29138
- /** The name of this membership */
29289
+ /** Membership name. */
29139
29290
  original?: string;
29140
- /** Optional - Translated name of this membership. Defaults to `original` when not provided. */
29291
+ /** Translated membership name. Defaults to `original` when not provided. */
29141
29292
  translated?: string | null;
29142
29293
  }
29143
29294
  interface Refund {
@@ -34423,15 +34574,15 @@ interface Membership {
34423
34574
  additionalData?: Record<string, any> | null;
34424
34575
  }
34425
34576
  interface MembershipName {
34426
- /** The name of this membership */
34577
+ /** Membership name. */
34427
34578
  original?: string;
34428
- /** Optional - Translated name of this membership. Defaults to `original` when not provided. */
34579
+ /** Translated membership name. Defaults to `original` when not provided. */
34429
34580
  translated?: string | null;
34430
34581
  }
34431
34582
  interface MembershipPaymentCredits {
34432
- /** How much credit this membership has in total */
34583
+ /** Membership's total amount of credits. */
34433
34584
  total?: number;
34434
- /** How much credit remained for this membership */
34585
+ /** Membership's remaining amount of credits. */
34435
34586
  remaining?: number;
34436
34587
  }
34437
34588
  interface InvalidMembership {