@wix/ecom 1.0.693 → 1.0.700

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.
@@ -3361,6 +3361,18 @@ interface LineItem$6 {
3361
3361
  * @readonly
3362
3362
  */
3363
3363
  taxGroupId?: string | null;
3364
+ /**
3365
+ * Item payment policy that requires customer consent to complete purchase. The payment policy will be displayed on the checkout page.
3366
+ * @readonly
3367
+ */
3368
+ consentRequiredPaymentPolicy?: string | null;
3369
+ /**
3370
+ * Whether to save the payment method on the order.
3371
+ *
3372
+ * Default: `false`
3373
+ * @readonly
3374
+ */
3375
+ savePaymentMethod?: boolean;
3364
3376
  }
3365
3377
  /** Used for grouping line items. Sent when an item is added to a cart, checkout, or order. */
3366
3378
  interface CatalogReference$6 {
@@ -4376,36 +4388,36 @@ interface LineItemDiscount$6 {
4376
4388
  }
4377
4389
  interface CalculationErrors$5 extends CalculationErrorsShippingCalculationErrorOneOf$5 {
4378
4390
  /** General shipping calculation error. */
4379
- generalShippingCalculationError?: Details$6;
4391
+ generalShippingCalculationError?: Details$5;
4380
4392
  /** Carrier errors. */
4381
4393
  carrierErrors?: CarrierErrors$5;
4382
4394
  /** Tax calculation error. */
4383
- taxCalculationError?: Details$6;
4395
+ taxCalculationError?: Details$5;
4384
4396
  /** Coupon calculation error. */
4385
- couponCalculationError?: Details$6;
4397
+ couponCalculationError?: Details$5;
4386
4398
  /** Gift card calculation error. */
4387
- giftCardCalculationError?: Details$6;
4399
+ giftCardCalculationError?: Details$5;
4388
4400
  /** Order validation errors. */
4389
4401
  orderValidationErrors?: ApplicationError$a[];
4390
4402
  /**
4391
4403
  * Membership payment methods calculation errors
4392
4404
  * For example, will indicate that a line item that must be paid with membership payment doesn't have one or selected memberships are invalid
4393
4405
  */
4394
- membershipError?: Details$6;
4406
+ membershipError?: Details$5;
4395
4407
  /** Discount Rule calculation error. */
4396
- discountsCalculationError?: Details$6;
4408
+ discountsCalculationError?: Details$5;
4397
4409
  }
4398
4410
  /** @oneof */
4399
4411
  interface CalculationErrorsShippingCalculationErrorOneOf$5 {
4400
4412
  /** General shipping calculation error. */
4401
- generalShippingCalculationError?: Details$6;
4413
+ generalShippingCalculationError?: Details$5;
4402
4414
  /** Carrier errors. */
4403
4415
  carrierErrors?: CarrierErrors$5;
4404
4416
  }
4405
- interface Details$6 extends DetailsKindOneOf$6 {
4417
+ interface Details$5 extends DetailsKindOneOf$5 {
4406
4418
  applicationError?: ApplicationError$a;
4407
- validationError?: ValidationError$6;
4408
- systemError?: SystemError$6;
4419
+ validationError?: ValidationError$5;
4420
+ systemError?: SystemError$5;
4409
4421
  /**
4410
4422
  * Deprecated in APIs. Used to enable migration from rendering arbitrary tracing to rest response.
4411
4423
  * @deprecated
@@ -4413,10 +4425,10 @@ interface Details$6 extends DetailsKindOneOf$6 {
4413
4425
  tracing?: Record<string, string>;
4414
4426
  }
4415
4427
  /** @oneof */
4416
- interface DetailsKindOneOf$6 {
4428
+ interface DetailsKindOneOf$5 {
4417
4429
  applicationError?: ApplicationError$a;
4418
- validationError?: ValidationError$6;
4419
- systemError?: SystemError$6;
4430
+ validationError?: ValidationError$5;
4431
+ systemError?: SystemError$5;
4420
4432
  }
4421
4433
  /**
4422
4434
  * example result:
@@ -4450,10 +4462,10 @@ interface DetailsKindOneOf$6 {
4450
4462
  * ]
4451
4463
  * }
4452
4464
  */
4453
- interface ValidationError$6 {
4454
- fieldViolations?: FieldViolation$6[];
4465
+ interface ValidationError$5 {
4466
+ fieldViolations?: FieldViolation$5[];
4455
4467
  }
4456
- declare enum RuleType$6 {
4468
+ declare enum RuleType$5 {
4457
4469
  VALIDATION = "VALIDATION",
4458
4470
  OTHER = "OTHER",
4459
4471
  MAX = "MAX",
@@ -4473,15 +4485,15 @@ declare enum RuleType$6 {
4473
4485
  FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
4474
4486
  ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
4475
4487
  }
4476
- interface FieldViolation$6 {
4488
+ interface FieldViolation$5 {
4477
4489
  field?: string;
4478
4490
  description?: string;
4479
- violatedRule?: RuleType$6;
4491
+ violatedRule?: RuleType$5;
4480
4492
  /** applicable when violated_rule=OTHER */
4481
4493
  ruleName?: string | null;
4482
4494
  data?: Record<string, any> | null;
4483
4495
  }
4484
- interface SystemError$6 {
4496
+ interface SystemError$5 {
4485
4497
  /** Error code. */
4486
4498
  errorCode?: string | null;
4487
4499
  }
@@ -4493,7 +4505,7 @@ interface CarrierError$5 {
4493
4505
  /** Carrier ID. */
4494
4506
  carrierId?: string;
4495
4507
  /** Error details. */
4496
- error?: Details$6;
4508
+ error?: Details$5;
4497
4509
  }
4498
4510
  interface MembershipOptions$4 {
4499
4511
  /** List of payment options that can be used. */
@@ -5227,7 +5239,7 @@ interface AppliedDiscountNonNullableFields$5 {
5227
5239
  interface FieldViolationNonNullableFields$4 {
5228
5240
  field: string;
5229
5241
  description: string;
5230
- violatedRule: RuleType$6;
5242
+ violatedRule: RuleType$5;
5231
5243
  }
5232
5244
  interface ValidationErrorNonNullableFields$4 {
5233
5245
  fieldViolations: FieldViolationNonNullableFields$4[];
@@ -5543,7 +5555,7 @@ declare const index_d$h_estimateTotals: typeof estimateTotals;
5543
5555
  declare const index_d$h_getCart: typeof getCart;
5544
5556
  declare const index_d$h_updateCart: typeof updateCart;
5545
5557
  declare namespace index_d$h {
5546
- export { type ActionEvent$f as ActionEvent, type index_d$h_AddToCartOptions as AddToCartOptions, type AddToCartRequest$1 as AddToCartRequest, type AddToCartResponse$1 as AddToCartResponse, type AddToCartResponseNonNullableFields$1 as AddToCartResponseNonNullableFields, type AddToCurrentCartAndEstimateTotalsRequest$1 as AddToCurrentCartAndEstimateTotalsRequest, type AddToCurrentCartRequest$1 as AddToCurrentCartRequest, type AdditionalFee$6 as AdditionalFee, type Address$9 as Address, type AddressLocation$8 as AddressLocation, type AddressWithContact$5 as AddressWithContact, type AggregatedTaxBreakdown$4 as AggregatedTaxBreakdown, type ApplicationError$a as ApplicationError, type AppliedDiscount$6 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$6 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$4 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$d as BaseEventMetadata, type BuyerInfo$7 as BuyerInfo, type BuyerInfoIdOneOf$5 as BuyerInfoIdOneOf, type CalculatedLineItem$2 as CalculatedLineItem, type CalculationErrors$5 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$5 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$5 as CarrierError, type CarrierErrors$5 as CarrierErrors, type CarrierServiceOption$4 as CarrierServiceOption, type Cart$1 as Cart, type CartCreatedEnvelope$1 as CartCreatedEnvelope, type CartDeletedEnvelope$1 as CartDeletedEnvelope, type CartDiscount$1 as CartDiscount, type CartDiscountDiscountSourceOneOf$1 as CartDiscountDiscountSourceOneOf, type CartNonNullableFields$1 as CartNonNullableFields, type CartUpdatedEnvelope$1 as CartUpdatedEnvelope, type CatalogOverrideFields$3 as CatalogOverrideFields, type CatalogReference$6 as CatalogReference, ChannelType$6 as ChannelType, ChargeType$5 as ChargeType, type Color$5 as Color, type Coupon$6 as Coupon, type index_d$h_CreateCartOptions as CreateCartOptions, type CreateCartRequest$1 as CreateCartRequest, type CreateCartResponse$1 as CreateCartResponse, type CreateCartResponseNonNullableFields$1 as CreateCartResponseNonNullableFields, type CreateCheckoutFromCurrentCartRequest$1 as CreateCheckoutFromCurrentCartRequest, type CreateCheckoutOptions$1 as CreateCheckoutOptions, type CreateCheckoutRequest$2 as CreateCheckoutRequest, type CreateCheckoutResponse$2 as CreateCheckoutResponse, type CreateCheckoutResponseNonNullableFields$2 as CreateCheckoutResponseNonNullableFields, type CustomLineItem$4 as CustomLineItem, type DeleteCartRequest$1 as DeleteCartRequest, type DeleteCartResponse$1 as DeleteCartResponse, type DeleteCurrentCartRequest$1 as DeleteCurrentCartRequest, type DeliveryLogistics$6 as DeliveryLogistics, type DeliveryTimeSlot$6 as DeliveryTimeSlot, type Description$3 as Description, type DescriptionLine$5 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$5 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$5 as DescriptionLineName, DescriptionLineType$5 as DescriptionLineType, type DescriptionLineValueOneOf$5 as DescriptionLineValueOneOf, type Details$6 as Details, type DetailsKindOneOf$6 as DetailsKindOneOf, type DiscountRule$6 as DiscountRule, type DiscountRuleName$6 as DiscountRuleName, DiscountType$6 as DiscountType, type DomainEvent$f as DomainEvent, type DomainEventBodyOneOf$f as DomainEventBodyOneOf, type Empty$a as Empty, type EntityCreatedEvent$f as EntityCreatedEvent, type EntityDeletedEvent$f as EntityDeletedEvent, type EntityUpdatedEvent$f as EntityUpdatedEvent, type EstimateCurrentCartTotalsRequest$1 as EstimateCurrentCartTotalsRequest, type index_d$h_EstimateTotalsOptions as EstimateTotalsOptions, type EstimateTotalsRequest$1 as EstimateTotalsRequest, type EstimateTotalsResponse$1 as EstimateTotalsResponse, type EstimateTotalsResponseNonNullableFields$1 as EstimateTotalsResponseNonNullableFields, type EventMetadata$d as EventMetadata, type ExtendedFields$9 as ExtendedFields, FallbackReason$4 as FallbackReason, type FieldViolation$6 as FieldViolation, FileType$4 as FileType, type FullAddressContactDetails$5 as FullAddressContactDetails, type GetCartByCheckoutIdRequest$1 as GetCartByCheckoutIdRequest, type GetCartByCheckoutIdResponse$1 as GetCartByCheckoutIdResponse, type GetCartRequest$1 as GetCartRequest, type GetCartResponse$1 as GetCartResponse, type GetCartResponseNonNullableFields$1 as GetCartResponseNonNullableFields, type GetCurrentCartRequest$1 as GetCurrentCartRequest, type GetCurrentCartResponse$1 as GetCurrentCartResponse, type GetCurrentCartResponseNonNullableFields$1 as GetCurrentCartResponseNonNullableFields, type GiftCard$5 as GiftCard, type Group$4 as Group, type HostSelectedMembership$1 as HostSelectedMembership, type IdentificationData$f as IdentificationData, type IdentificationDataIdOneOf$f as IdentificationDataIdOneOf, type InvalidMembership$4 as InvalidMembership, type ItemAvailabilityInfo$3 as ItemAvailabilityInfo, ItemAvailabilityStatus$3 as ItemAvailabilityStatus, type ItemTaxFullDetails$6 as ItemTaxFullDetails, type ItemType$6 as ItemType, ItemTypeItemType$6 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$6 as ItemTypeItemTypeDataOneOf, JurisdictionType$6 as JurisdictionType, type LineItem$6 as LineItem, type LineItemDiscount$6 as LineItemDiscount, type LineItemPricesData$2 as LineItemPricesData, type LineItemQuantityUpdate$2 as LineItemQuantityUpdate, ManualCalculationReason$4 as ManualCalculationReason, type Membership$4 as Membership, type MembershipName$6 as MembershipName, type MembershipOptions$4 as MembershipOptions, type MembershipPaymentCredits$4 as MembershipPaymentCredits, type MerchantDiscount$6 as MerchantDiscount, type MerchantDiscountInput$3 as MerchantDiscountInput, type MessageEnvelope$f as MessageEnvelope, type MultiCurrencyPrice$4 as MultiCurrencyPrice, NameInLineItem$3 as NameInLineItem, NameInOther$3 as NameInOther, type Other$3 as Other, type OtherCharge$4 as OtherCharge, PaymentOptionType$6 as PaymentOptionType, type PhysicalProperties$6 as PhysicalProperties, type PickupDetails$7 as PickupDetails, PickupMethod$6 as PickupMethod, type PlainTextValue$5 as PlainTextValue, type PriceDescription$5 as PriceDescription, type PriceSummary$6 as PriceSummary, type ProductName$5 as ProductName, RateType$4 as RateType, type RemoveCouponFromCurrentCartRequest$1 as RemoveCouponFromCurrentCartRequest, type RemoveCouponRequest$2 as RemoveCouponRequest, type RemoveCouponResponse$2 as RemoveCouponResponse, type RemoveCouponResponseNonNullableFields$2 as RemoveCouponResponseNonNullableFields, type RemoveLineItemsFromCurrentCartRequest$1 as RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsRequest$2 as RemoveLineItemsRequest, type RemoveLineItemsResponse$2 as RemoveLineItemsResponse, type RemoveLineItemsResponseNonNullableFields$2 as RemoveLineItemsResponseNonNullableFields, type RestoreInfo$f as RestoreInfo, RuleType$6 as RuleType, type Scope$4 as Scope, type SecuredMedia$4 as SecuredMedia, type SelectedCarrierServiceOption$4 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$4 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$4 as SelectedCarrierServiceOptionPrices, type SelectedMembership$4 as SelectedMembership, type SelectedMemberships$4 as SelectedMemberships, type SelectedShippingOption$2 as SelectedShippingOption, type ServiceProperties$5 as ServiceProperties, Severity$3 as Severity, type ShippingInformation$4 as ShippingInformation, type ShippingOption$6 as ShippingOption, type ShippingPrice$6 as ShippingPrice, type ShippingRegion$6 as ShippingRegion, type StreetAddress$8 as StreetAddress, SubscriptionFrequency$7 as SubscriptionFrequency, type SubscriptionOptionInfo$4 as SubscriptionOptionInfo, type SubscriptionSettings$7 as SubscriptionSettings, type SystemError$6 as SystemError, type Target$3 as Target, type TargetLineItem$3 as TargetLineItem, type TargetTargetTypeOneOf$3 as TargetTargetTypeOneOf, type TaxBreakdown$4 as TaxBreakdown, type TaxCalculationDetails$4 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$4 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$4 as TaxRateBreakdown, type TaxSummary$6 as TaxSummary, type Title$3 as Title, type index_d$h_UpdateCartOptions as UpdateCartOptions, type UpdateCartRequest$1 as UpdateCartRequest, type UpdateCartResponse$1 as UpdateCartResponse, type UpdateCartResponseNonNullableFields$1 as UpdateCartResponseNonNullableFields, type UpdateCurrentCartLineItemQuantityRequest$1 as UpdateCurrentCartLineItemQuantityRequest, type UpdateLineItemsQuantityRequest$2 as UpdateLineItemsQuantityRequest, type UpdateLineItemsQuantityResponse$2 as UpdateLineItemsQuantityResponse, type UpdateLineItemsQuantityResponseNonNullableFields$2 as UpdateLineItemsQuantityResponseNonNullableFields, type V1Coupon$1 as V1Coupon, type V1MerchantDiscount$1 as V1MerchantDiscount, type ValidationError$6 as ValidationError, type VatId$6 as VatId, VatType$6 as VatType, type Violation$3 as Violation, WebhookIdentityType$f as WebhookIdentityType, WeightUnit$7 as WeightUnit, index_d$h_addToCart as addToCart, index_d$h_createCart as createCart, createCheckout$1 as createCheckout, index_d$h_deleteCart as deleteCart, index_d$h_estimateTotals as estimateTotals, index_d$h_getCart as getCart, onCartCreated$1 as onCartCreated, onCartDeleted$1 as onCartDeleted, onCartUpdated$1 as onCartUpdated, removeCoupon$1 as removeCoupon, removeLineItems$1 as removeLineItems, index_d$h_updateCart as updateCart, updateLineItemsQuantity$1 as updateLineItemsQuantity };
5558
+ export { type ActionEvent$f as ActionEvent, type index_d$h_AddToCartOptions as AddToCartOptions, type AddToCartRequest$1 as AddToCartRequest, type AddToCartResponse$1 as AddToCartResponse, type AddToCartResponseNonNullableFields$1 as AddToCartResponseNonNullableFields, type AddToCurrentCartAndEstimateTotalsRequest$1 as AddToCurrentCartAndEstimateTotalsRequest, type AddToCurrentCartRequest$1 as AddToCurrentCartRequest, type AdditionalFee$6 as AdditionalFee, type Address$9 as Address, type AddressLocation$8 as AddressLocation, type AddressWithContact$5 as AddressWithContact, type AggregatedTaxBreakdown$4 as AggregatedTaxBreakdown, type ApplicationError$a as ApplicationError, type AppliedDiscount$6 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$6 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$4 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$d as BaseEventMetadata, type BuyerInfo$7 as BuyerInfo, type BuyerInfoIdOneOf$5 as BuyerInfoIdOneOf, type CalculatedLineItem$2 as CalculatedLineItem, type CalculationErrors$5 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$5 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$5 as CarrierError, type CarrierErrors$5 as CarrierErrors, type CarrierServiceOption$4 as CarrierServiceOption, type Cart$1 as Cart, type CartCreatedEnvelope$1 as CartCreatedEnvelope, type CartDeletedEnvelope$1 as CartDeletedEnvelope, type CartDiscount$1 as CartDiscount, type CartDiscountDiscountSourceOneOf$1 as CartDiscountDiscountSourceOneOf, type CartNonNullableFields$1 as CartNonNullableFields, type CartUpdatedEnvelope$1 as CartUpdatedEnvelope, type CatalogOverrideFields$3 as CatalogOverrideFields, type CatalogReference$6 as CatalogReference, ChannelType$6 as ChannelType, ChargeType$5 as ChargeType, type Color$5 as Color, type Coupon$6 as Coupon, type index_d$h_CreateCartOptions as CreateCartOptions, type CreateCartRequest$1 as CreateCartRequest, type CreateCartResponse$1 as CreateCartResponse, type CreateCartResponseNonNullableFields$1 as CreateCartResponseNonNullableFields, type CreateCheckoutFromCurrentCartRequest$1 as CreateCheckoutFromCurrentCartRequest, type CreateCheckoutOptions$1 as CreateCheckoutOptions, type CreateCheckoutRequest$2 as CreateCheckoutRequest, type CreateCheckoutResponse$2 as CreateCheckoutResponse, type CreateCheckoutResponseNonNullableFields$2 as CreateCheckoutResponseNonNullableFields, type CustomLineItem$4 as CustomLineItem, type DeleteCartRequest$1 as DeleteCartRequest, type DeleteCartResponse$1 as DeleteCartResponse, type DeleteCurrentCartRequest$1 as DeleteCurrentCartRequest, type DeliveryLogistics$6 as DeliveryLogistics, type DeliveryTimeSlot$6 as DeliveryTimeSlot, type Description$3 as Description, type DescriptionLine$5 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$5 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$5 as DescriptionLineName, DescriptionLineType$5 as DescriptionLineType, type DescriptionLineValueOneOf$5 as DescriptionLineValueOneOf, type Details$5 as Details, type DetailsKindOneOf$5 as DetailsKindOneOf, type DiscountRule$6 as DiscountRule, type DiscountRuleName$6 as DiscountRuleName, DiscountType$6 as DiscountType, type DomainEvent$f as DomainEvent, type DomainEventBodyOneOf$f as DomainEventBodyOneOf, type Empty$a as Empty, type EntityCreatedEvent$f as EntityCreatedEvent, type EntityDeletedEvent$f as EntityDeletedEvent, type EntityUpdatedEvent$f as EntityUpdatedEvent, type EstimateCurrentCartTotalsRequest$1 as EstimateCurrentCartTotalsRequest, type index_d$h_EstimateTotalsOptions as EstimateTotalsOptions, type EstimateTotalsRequest$1 as EstimateTotalsRequest, type EstimateTotalsResponse$1 as EstimateTotalsResponse, type EstimateTotalsResponseNonNullableFields$1 as EstimateTotalsResponseNonNullableFields, type EventMetadata$d as EventMetadata, type ExtendedFields$9 as ExtendedFields, FallbackReason$4 as FallbackReason, type FieldViolation$5 as FieldViolation, FileType$4 as FileType, type FullAddressContactDetails$5 as FullAddressContactDetails, type GetCartByCheckoutIdRequest$1 as GetCartByCheckoutIdRequest, type GetCartByCheckoutIdResponse$1 as GetCartByCheckoutIdResponse, type GetCartRequest$1 as GetCartRequest, type GetCartResponse$1 as GetCartResponse, type GetCartResponseNonNullableFields$1 as GetCartResponseNonNullableFields, type GetCurrentCartRequest$1 as GetCurrentCartRequest, type GetCurrentCartResponse$1 as GetCurrentCartResponse, type GetCurrentCartResponseNonNullableFields$1 as GetCurrentCartResponseNonNullableFields, type GiftCard$5 as GiftCard, type Group$4 as Group, type HostSelectedMembership$1 as HostSelectedMembership, type IdentificationData$f as IdentificationData, type IdentificationDataIdOneOf$f as IdentificationDataIdOneOf, type InvalidMembership$4 as InvalidMembership, type ItemAvailabilityInfo$3 as ItemAvailabilityInfo, ItemAvailabilityStatus$3 as ItemAvailabilityStatus, type ItemTaxFullDetails$6 as ItemTaxFullDetails, type ItemType$6 as ItemType, ItemTypeItemType$6 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$6 as ItemTypeItemTypeDataOneOf, JurisdictionType$6 as JurisdictionType, type LineItem$6 as LineItem, type LineItemDiscount$6 as LineItemDiscount, type LineItemPricesData$2 as LineItemPricesData, type LineItemQuantityUpdate$2 as LineItemQuantityUpdate, ManualCalculationReason$4 as ManualCalculationReason, type Membership$4 as Membership, type MembershipName$6 as MembershipName, type MembershipOptions$4 as MembershipOptions, type MembershipPaymentCredits$4 as MembershipPaymentCredits, type MerchantDiscount$6 as MerchantDiscount, type MerchantDiscountInput$3 as MerchantDiscountInput, type MessageEnvelope$f as MessageEnvelope, type MultiCurrencyPrice$4 as MultiCurrencyPrice, NameInLineItem$3 as NameInLineItem, NameInOther$3 as NameInOther, type Other$3 as Other, type OtherCharge$4 as OtherCharge, PaymentOptionType$6 as PaymentOptionType, type PhysicalProperties$6 as PhysicalProperties, type PickupDetails$7 as PickupDetails, PickupMethod$6 as PickupMethod, type PlainTextValue$5 as PlainTextValue, type PriceDescription$5 as PriceDescription, type PriceSummary$6 as PriceSummary, type ProductName$5 as ProductName, RateType$4 as RateType, type RemoveCouponFromCurrentCartRequest$1 as RemoveCouponFromCurrentCartRequest, type RemoveCouponRequest$2 as RemoveCouponRequest, type RemoveCouponResponse$2 as RemoveCouponResponse, type RemoveCouponResponseNonNullableFields$2 as RemoveCouponResponseNonNullableFields, type RemoveLineItemsFromCurrentCartRequest$1 as RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsRequest$2 as RemoveLineItemsRequest, type RemoveLineItemsResponse$2 as RemoveLineItemsResponse, type RemoveLineItemsResponseNonNullableFields$2 as RemoveLineItemsResponseNonNullableFields, type RestoreInfo$f as RestoreInfo, RuleType$5 as RuleType, type Scope$4 as Scope, type SecuredMedia$4 as SecuredMedia, type SelectedCarrierServiceOption$4 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$4 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$4 as SelectedCarrierServiceOptionPrices, type SelectedMembership$4 as SelectedMembership, type SelectedMemberships$4 as SelectedMemberships, type SelectedShippingOption$2 as SelectedShippingOption, type ServiceProperties$5 as ServiceProperties, Severity$3 as Severity, type ShippingInformation$4 as ShippingInformation, type ShippingOption$6 as ShippingOption, type ShippingPrice$6 as ShippingPrice, type ShippingRegion$6 as ShippingRegion, type StreetAddress$8 as StreetAddress, SubscriptionFrequency$7 as SubscriptionFrequency, type SubscriptionOptionInfo$4 as SubscriptionOptionInfo, type SubscriptionSettings$7 as SubscriptionSettings, type SystemError$5 as SystemError, type Target$3 as Target, type TargetLineItem$3 as TargetLineItem, type TargetTargetTypeOneOf$3 as TargetTargetTypeOneOf, type TaxBreakdown$4 as TaxBreakdown, type TaxCalculationDetails$4 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$4 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$4 as TaxRateBreakdown, type TaxSummary$6 as TaxSummary, type Title$3 as Title, type index_d$h_UpdateCartOptions as UpdateCartOptions, type UpdateCartRequest$1 as UpdateCartRequest, type UpdateCartResponse$1 as UpdateCartResponse, type UpdateCartResponseNonNullableFields$1 as UpdateCartResponseNonNullableFields, type UpdateCurrentCartLineItemQuantityRequest$1 as UpdateCurrentCartLineItemQuantityRequest, type UpdateLineItemsQuantityRequest$2 as UpdateLineItemsQuantityRequest, type UpdateLineItemsQuantityResponse$2 as UpdateLineItemsQuantityResponse, type UpdateLineItemsQuantityResponseNonNullableFields$2 as UpdateLineItemsQuantityResponseNonNullableFields, type V1Coupon$1 as V1Coupon, type V1MerchantDiscount$1 as V1MerchantDiscount, type ValidationError$5 as ValidationError, type VatId$6 as VatId, VatType$6 as VatType, type Violation$3 as Violation, WebhookIdentityType$f as WebhookIdentityType, WeightUnit$7 as WeightUnit, index_d$h_addToCart as addToCart, index_d$h_createCart as createCart, createCheckout$1 as createCheckout, index_d$h_deleteCart as deleteCart, index_d$h_estimateTotals as estimateTotals, index_d$h_getCart as getCart, onCartCreated$1 as onCartCreated, onCartDeleted$1 as onCartDeleted, onCartUpdated$1 as onCartUpdated, removeCoupon$1 as removeCoupon, removeLineItems$1 as removeLineItems, index_d$h_updateCart as updateCart, updateLineItemsQuantity$1 as updateLineItemsQuantity };
5547
5559
  }
5548
5560
 
5549
5561
  interface Cart {
@@ -5727,6 +5739,18 @@ interface LineItem$5 {
5727
5739
  * @readonly
5728
5740
  */
5729
5741
  taxGroupId?: string | null;
5742
+ /**
5743
+ * Item payment policy that requires customer consent to complete purchase. The payment policy will be displayed on the checkout page.
5744
+ * @readonly
5745
+ */
5746
+ consentRequiredPaymentPolicy?: string | null;
5747
+ /**
5748
+ * Whether to save the payment method on the order.
5749
+ *
5750
+ * Default: `false`
5751
+ * @readonly
5752
+ */
5753
+ savePaymentMethod?: boolean;
5730
5754
  }
5731
5755
  /** Used for grouping line items. Sent when an item is added to a cart, checkout, or order. */
5732
5756
  interface CatalogReference$5 {
@@ -6742,36 +6766,36 @@ interface LineItemDiscount$5 {
6742
6766
  }
6743
6767
  interface CalculationErrors$4 extends CalculationErrorsShippingCalculationErrorOneOf$4 {
6744
6768
  /** General shipping calculation error. */
6745
- generalShippingCalculationError?: Details$5;
6769
+ generalShippingCalculationError?: Details$4;
6746
6770
  /** Carrier errors. */
6747
6771
  carrierErrors?: CarrierErrors$4;
6748
6772
  /** Tax calculation error. */
6749
- taxCalculationError?: Details$5;
6773
+ taxCalculationError?: Details$4;
6750
6774
  /** Coupon calculation error. */
6751
- couponCalculationError?: Details$5;
6775
+ couponCalculationError?: Details$4;
6752
6776
  /** Gift card calculation error. */
6753
- giftCardCalculationError?: Details$5;
6777
+ giftCardCalculationError?: Details$4;
6754
6778
  /** Order validation errors. */
6755
6779
  orderValidationErrors?: ApplicationError$9[];
6756
6780
  /**
6757
6781
  * Membership payment methods calculation errors
6758
6782
  * For example, will indicate that a line item that must be paid with membership payment doesn't have one or selected memberships are invalid
6759
6783
  */
6760
- membershipError?: Details$5;
6784
+ membershipError?: Details$4;
6761
6785
  /** Discount Rule calculation error. */
6762
- discountsCalculationError?: Details$5;
6786
+ discountsCalculationError?: Details$4;
6763
6787
  }
6764
6788
  /** @oneof */
6765
6789
  interface CalculationErrorsShippingCalculationErrorOneOf$4 {
6766
6790
  /** General shipping calculation error. */
6767
- generalShippingCalculationError?: Details$5;
6791
+ generalShippingCalculationError?: Details$4;
6768
6792
  /** Carrier errors. */
6769
6793
  carrierErrors?: CarrierErrors$4;
6770
6794
  }
6771
- interface Details$5 extends DetailsKindOneOf$5 {
6795
+ interface Details$4 extends DetailsKindOneOf$4 {
6772
6796
  applicationError?: ApplicationError$9;
6773
- validationError?: ValidationError$5;
6774
- systemError?: SystemError$5;
6797
+ validationError?: ValidationError$4;
6798
+ systemError?: SystemError$4;
6775
6799
  /**
6776
6800
  * Deprecated in APIs. Used to enable migration from rendering arbitrary tracing to rest response.
6777
6801
  * @deprecated
@@ -6779,10 +6803,10 @@ interface Details$5 extends DetailsKindOneOf$5 {
6779
6803
  tracing?: Record<string, string>;
6780
6804
  }
6781
6805
  /** @oneof */
6782
- interface DetailsKindOneOf$5 {
6806
+ interface DetailsKindOneOf$4 {
6783
6807
  applicationError?: ApplicationError$9;
6784
- validationError?: ValidationError$5;
6785
- systemError?: SystemError$5;
6808
+ validationError?: ValidationError$4;
6809
+ systemError?: SystemError$4;
6786
6810
  }
6787
6811
  /**
6788
6812
  * example result:
@@ -6816,10 +6840,10 @@ interface DetailsKindOneOf$5 {
6816
6840
  * ]
6817
6841
  * }
6818
6842
  */
6819
- interface ValidationError$5 {
6820
- fieldViolations?: FieldViolation$5[];
6843
+ interface ValidationError$4 {
6844
+ fieldViolations?: FieldViolation$4[];
6821
6845
  }
6822
- declare enum RuleType$5 {
6846
+ declare enum RuleType$4 {
6823
6847
  VALIDATION = "VALIDATION",
6824
6848
  OTHER = "OTHER",
6825
6849
  MAX = "MAX",
@@ -6839,15 +6863,15 @@ declare enum RuleType$5 {
6839
6863
  FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
6840
6864
  ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
6841
6865
  }
6842
- interface FieldViolation$5 {
6866
+ interface FieldViolation$4 {
6843
6867
  field?: string;
6844
6868
  description?: string;
6845
- violatedRule?: RuleType$5;
6869
+ violatedRule?: RuleType$4;
6846
6870
  /** applicable when violated_rule=OTHER */
6847
6871
  ruleName?: string | null;
6848
6872
  data?: Record<string, any> | null;
6849
6873
  }
6850
- interface SystemError$5 {
6874
+ interface SystemError$4 {
6851
6875
  /** Error code. */
6852
6876
  errorCode?: string | null;
6853
6877
  }
@@ -6859,7 +6883,7 @@ interface CarrierError$4 {
6859
6883
  /** Carrier ID. */
6860
6884
  carrierId?: string;
6861
6885
  /** Error details. */
6862
- error?: Details$5;
6886
+ error?: Details$4;
6863
6887
  }
6864
6888
  interface MembershipOptions$3 {
6865
6889
  /** List of payment options that can be used. */
@@ -7593,7 +7617,7 @@ interface AppliedDiscountNonNullableFields$4 {
7593
7617
  interface FieldViolationNonNullableFields$3 {
7594
7618
  field: string;
7595
7619
  description: string;
7596
- violatedRule: RuleType$5;
7620
+ violatedRule: RuleType$4;
7597
7621
  }
7598
7622
  interface ValidationErrorNonNullableFields$3 {
7599
7623
  fieldViolations: FieldViolationNonNullableFields$3[];
@@ -7863,7 +7887,7 @@ declare const index_d$g_removeLineItemsFromCurrentCart: typeof removeLineItemsFr
7863
7887
  declare const index_d$g_updateCurrentCart: typeof updateCurrentCart;
7864
7888
  declare const index_d$g_updateCurrentCartLineItemQuantity: typeof updateCurrentCartLineItemQuantity;
7865
7889
  declare namespace index_d$g {
7866
- export { type ActionEvent$e as ActionEvent, type index_d$g_AddToCartRequest as AddToCartRequest, type index_d$g_AddToCartResponse as AddToCartResponse, type index_d$g_AddToCartResponseNonNullableFields as AddToCartResponseNonNullableFields, type index_d$g_AddToCurrentCartAndEstimateTotalsRequest as AddToCurrentCartAndEstimateTotalsRequest, type index_d$g_AddToCurrentCartOptions as AddToCurrentCartOptions, type index_d$g_AddToCurrentCartRequest as AddToCurrentCartRequest, type AdditionalFee$5 as AdditionalFee, type Address$8 as Address, type AddressLocation$7 as AddressLocation, type AddressWithContact$4 as AddressWithContact, type AggregatedTaxBreakdown$3 as AggregatedTaxBreakdown, type ApplicationError$9 as ApplicationError, type AppliedDiscount$5 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$5 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$3 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$c as BaseEventMetadata, type BuyerInfo$6 as BuyerInfo, type BuyerInfoIdOneOf$4 as BuyerInfoIdOneOf, type CalculatedLineItem$1 as CalculatedLineItem, type CalculationErrors$4 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$4 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$4 as CarrierError, type CarrierErrors$4 as CarrierErrors, type CarrierServiceOption$3 as CarrierServiceOption, type index_d$g_Cart as Cart, type index_d$g_CartCreatedEnvelope as CartCreatedEnvelope, type index_d$g_CartDeletedEnvelope as CartDeletedEnvelope, type index_d$g_CartDiscount as CartDiscount, type index_d$g_CartDiscountDiscountSourceOneOf as CartDiscountDiscountSourceOneOf, type index_d$g_CartNonNullableFields as CartNonNullableFields, type index_d$g_CartUpdatedEnvelope as CartUpdatedEnvelope, type CatalogOverrideFields$2 as CatalogOverrideFields, type CatalogReference$5 as CatalogReference, ChannelType$5 as ChannelType, ChargeType$4 as ChargeType, type Color$4 as Color, type Coupon$5 as Coupon, type index_d$g_CreateCartRequest as CreateCartRequest, type index_d$g_CreateCartResponse as CreateCartResponse, type index_d$g_CreateCartResponseNonNullableFields as CreateCartResponseNonNullableFields, type index_d$g_CreateCheckoutFromCurrentCartOptions as CreateCheckoutFromCurrentCartOptions, type index_d$g_CreateCheckoutFromCurrentCartRequest as CreateCheckoutFromCurrentCartRequest, type CreateCheckoutRequest$1 as CreateCheckoutRequest, type CreateCheckoutResponse$1 as CreateCheckoutResponse, type CreateCheckoutResponseNonNullableFields$1 as CreateCheckoutResponseNonNullableFields, type CustomLineItem$3 as CustomLineItem, type index_d$g_DeleteCartRequest as DeleteCartRequest, type index_d$g_DeleteCartResponse as DeleteCartResponse, type index_d$g_DeleteCurrentCartRequest as DeleteCurrentCartRequest, type DeliveryLogistics$5 as DeliveryLogistics, type DeliveryTimeSlot$5 as DeliveryTimeSlot, type Description$2 as Description, type DescriptionLine$4 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$4 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$4 as DescriptionLineName, DescriptionLineType$4 as DescriptionLineType, type DescriptionLineValueOneOf$4 as DescriptionLineValueOneOf, type Details$5 as Details, type DetailsKindOneOf$5 as DetailsKindOneOf, type DiscountRule$5 as DiscountRule, type DiscountRuleName$5 as DiscountRuleName, DiscountType$5 as DiscountType, type DomainEvent$e as DomainEvent, type DomainEventBodyOneOf$e as DomainEventBodyOneOf, type Empty$9 as Empty, type EntityCreatedEvent$e as EntityCreatedEvent, type EntityDeletedEvent$e as EntityDeletedEvent, type EntityUpdatedEvent$e as EntityUpdatedEvent, type index_d$g_EstimateCurrentCartTotalsOptions as EstimateCurrentCartTotalsOptions, type index_d$g_EstimateCurrentCartTotalsRequest as EstimateCurrentCartTotalsRequest, type index_d$g_EstimateTotalsRequest as EstimateTotalsRequest, type index_d$g_EstimateTotalsResponse as EstimateTotalsResponse, type index_d$g_EstimateTotalsResponseNonNullableFields as EstimateTotalsResponseNonNullableFields, type EventMetadata$c as EventMetadata, type ExtendedFields$8 as ExtendedFields, FallbackReason$3 as FallbackReason, type FieldViolation$5 as FieldViolation, FileType$3 as FileType, type FullAddressContactDetails$4 as FullAddressContactDetails, type index_d$g_GetCartByCheckoutIdRequest as GetCartByCheckoutIdRequest, type index_d$g_GetCartByCheckoutIdResponse as GetCartByCheckoutIdResponse, type index_d$g_GetCartRequest as GetCartRequest, type index_d$g_GetCartResponse as GetCartResponse, type index_d$g_GetCartResponseNonNullableFields as GetCartResponseNonNullableFields, type index_d$g_GetCurrentCartRequest as GetCurrentCartRequest, type index_d$g_GetCurrentCartResponse as GetCurrentCartResponse, type index_d$g_GetCurrentCartResponseNonNullableFields as GetCurrentCartResponseNonNullableFields, type GiftCard$4 as GiftCard, type Group$3 as Group, type index_d$g_HostSelectedMembership as HostSelectedMembership, type IdentificationData$e as IdentificationData, type IdentificationDataIdOneOf$e as IdentificationDataIdOneOf, type InvalidMembership$3 as InvalidMembership, type ItemAvailabilityInfo$2 as ItemAvailabilityInfo, ItemAvailabilityStatus$2 as ItemAvailabilityStatus, type ItemTaxFullDetails$5 as ItemTaxFullDetails, type ItemType$5 as ItemType, ItemTypeItemType$5 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$5 as ItemTypeItemTypeDataOneOf, JurisdictionType$5 as JurisdictionType, type LineItem$5 as LineItem, type LineItemDiscount$5 as LineItemDiscount, type LineItemPricesData$1 as LineItemPricesData, type LineItemQuantityUpdate$1 as LineItemQuantityUpdate, ManualCalculationReason$3 as ManualCalculationReason, type Membership$3 as Membership, type MembershipName$5 as MembershipName, type MembershipOptions$3 as MembershipOptions, type MembershipPaymentCredits$3 as MembershipPaymentCredits, type MerchantDiscount$5 as MerchantDiscount, type MerchantDiscountInput$2 as MerchantDiscountInput, type MessageEnvelope$e as MessageEnvelope, type MultiCurrencyPrice$3 as MultiCurrencyPrice, NameInLineItem$2 as NameInLineItem, NameInOther$2 as NameInOther, type Other$2 as Other, type OtherCharge$3 as OtherCharge, PaymentOptionType$5 as PaymentOptionType, type PhysicalProperties$5 as PhysicalProperties, type PickupDetails$6 as PickupDetails, PickupMethod$5 as PickupMethod, type PlainTextValue$4 as PlainTextValue, type PriceDescription$4 as PriceDescription, type PriceSummary$5 as PriceSummary, type ProductName$4 as ProductName, RateType$3 as RateType, type index_d$g_RemoveCouponFromCurrentCartRequest as RemoveCouponFromCurrentCartRequest, type RemoveCouponRequest$1 as RemoveCouponRequest, type RemoveCouponResponse$1 as RemoveCouponResponse, type RemoveCouponResponseNonNullableFields$1 as RemoveCouponResponseNonNullableFields, type index_d$g_RemoveLineItemsFromCurrentCartRequest as RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsRequest$1 as RemoveLineItemsRequest, type RemoveLineItemsResponse$1 as RemoveLineItemsResponse, type RemoveLineItemsResponseNonNullableFields$1 as RemoveLineItemsResponseNonNullableFields, type RestoreInfo$e as RestoreInfo, RuleType$5 as RuleType, type Scope$3 as Scope, type SecuredMedia$3 as SecuredMedia, type SelectedCarrierServiceOption$3 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$3 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$3 as SelectedCarrierServiceOptionPrices, type SelectedMembership$3 as SelectedMembership, type SelectedMemberships$3 as SelectedMemberships, type SelectedShippingOption$1 as SelectedShippingOption, type ServiceProperties$4 as ServiceProperties, Severity$2 as Severity, type ShippingInformation$3 as ShippingInformation, type ShippingOption$5 as ShippingOption, type ShippingPrice$5 as ShippingPrice, type ShippingRegion$5 as ShippingRegion, type StreetAddress$7 as StreetAddress, SubscriptionFrequency$6 as SubscriptionFrequency, type SubscriptionOptionInfo$3 as SubscriptionOptionInfo, type SubscriptionSettings$6 as SubscriptionSettings, type SystemError$5 as SystemError, type Target$2 as Target, type TargetLineItem$2 as TargetLineItem, type TargetTargetTypeOneOf$2 as TargetTargetTypeOneOf, type TaxBreakdown$3 as TaxBreakdown, type TaxCalculationDetails$3 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$3 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$3 as TaxRateBreakdown, type TaxSummary$5 as TaxSummary, type Title$2 as Title, type index_d$g_UpdateCartRequest as UpdateCartRequest, type index_d$g_UpdateCartResponse as UpdateCartResponse, type index_d$g_UpdateCartResponseNonNullableFields as UpdateCartResponseNonNullableFields, type index_d$g_UpdateCurrentCartLineItemQuantityRequest as UpdateCurrentCartLineItemQuantityRequest, type index_d$g_UpdateCurrentCartOptions as UpdateCurrentCartOptions, type UpdateLineItemsQuantityRequest$1 as UpdateLineItemsQuantityRequest, type UpdateLineItemsQuantityResponse$1 as UpdateLineItemsQuantityResponse, type UpdateLineItemsQuantityResponseNonNullableFields$1 as UpdateLineItemsQuantityResponseNonNullableFields, type index_d$g_V1Coupon as V1Coupon, type index_d$g_V1MerchantDiscount as V1MerchantDiscount, type ValidationError$5 as ValidationError, type VatId$5 as VatId, VatType$5 as VatType, type Violation$2 as Violation, WebhookIdentityType$e as WebhookIdentityType, WeightUnit$6 as WeightUnit, index_d$g_addToCurrentCart as addToCurrentCart, index_d$g_createCheckoutFromCurrentCart as createCheckoutFromCurrentCart, index_d$g_deleteCurrentCart as deleteCurrentCart, index_d$g_estimateCurrentCartTotals as estimateCurrentCartTotals, index_d$g_getCurrentCart as getCurrentCart, index_d$g_onCartCreated as onCartCreated, index_d$g_onCartDeleted as onCartDeleted, index_d$g_onCartUpdated as onCartUpdated, index_d$g_removeCouponFromCurrentCart as removeCouponFromCurrentCart, index_d$g_removeLineItemsFromCurrentCart as removeLineItemsFromCurrentCart, index_d$g_updateCurrentCart as updateCurrentCart, index_d$g_updateCurrentCartLineItemQuantity as updateCurrentCartLineItemQuantity };
7890
+ export { type ActionEvent$e as ActionEvent, type index_d$g_AddToCartRequest as AddToCartRequest, type index_d$g_AddToCartResponse as AddToCartResponse, type index_d$g_AddToCartResponseNonNullableFields as AddToCartResponseNonNullableFields, type index_d$g_AddToCurrentCartAndEstimateTotalsRequest as AddToCurrentCartAndEstimateTotalsRequest, type index_d$g_AddToCurrentCartOptions as AddToCurrentCartOptions, type index_d$g_AddToCurrentCartRequest as AddToCurrentCartRequest, type AdditionalFee$5 as AdditionalFee, type Address$8 as Address, type AddressLocation$7 as AddressLocation, type AddressWithContact$4 as AddressWithContact, type AggregatedTaxBreakdown$3 as AggregatedTaxBreakdown, type ApplicationError$9 as ApplicationError, type AppliedDiscount$5 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$5 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$3 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$c as BaseEventMetadata, type BuyerInfo$6 as BuyerInfo, type BuyerInfoIdOneOf$4 as BuyerInfoIdOneOf, type CalculatedLineItem$1 as CalculatedLineItem, type CalculationErrors$4 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$4 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$4 as CarrierError, type CarrierErrors$4 as CarrierErrors, type CarrierServiceOption$3 as CarrierServiceOption, type index_d$g_Cart as Cart, type index_d$g_CartCreatedEnvelope as CartCreatedEnvelope, type index_d$g_CartDeletedEnvelope as CartDeletedEnvelope, type index_d$g_CartDiscount as CartDiscount, type index_d$g_CartDiscountDiscountSourceOneOf as CartDiscountDiscountSourceOneOf, type index_d$g_CartNonNullableFields as CartNonNullableFields, type index_d$g_CartUpdatedEnvelope as CartUpdatedEnvelope, type CatalogOverrideFields$2 as CatalogOverrideFields, type CatalogReference$5 as CatalogReference, ChannelType$5 as ChannelType, ChargeType$4 as ChargeType, type Color$4 as Color, type Coupon$5 as Coupon, type index_d$g_CreateCartRequest as CreateCartRequest, type index_d$g_CreateCartResponse as CreateCartResponse, type index_d$g_CreateCartResponseNonNullableFields as CreateCartResponseNonNullableFields, type index_d$g_CreateCheckoutFromCurrentCartOptions as CreateCheckoutFromCurrentCartOptions, type index_d$g_CreateCheckoutFromCurrentCartRequest as CreateCheckoutFromCurrentCartRequest, type CreateCheckoutRequest$1 as CreateCheckoutRequest, type CreateCheckoutResponse$1 as CreateCheckoutResponse, type CreateCheckoutResponseNonNullableFields$1 as CreateCheckoutResponseNonNullableFields, type CustomLineItem$3 as CustomLineItem, type index_d$g_DeleteCartRequest as DeleteCartRequest, type index_d$g_DeleteCartResponse as DeleteCartResponse, type index_d$g_DeleteCurrentCartRequest as DeleteCurrentCartRequest, type DeliveryLogistics$5 as DeliveryLogistics, type DeliveryTimeSlot$5 as DeliveryTimeSlot, type Description$2 as Description, type DescriptionLine$4 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$4 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$4 as DescriptionLineName, DescriptionLineType$4 as DescriptionLineType, type DescriptionLineValueOneOf$4 as DescriptionLineValueOneOf, type Details$4 as Details, type DetailsKindOneOf$4 as DetailsKindOneOf, type DiscountRule$5 as DiscountRule, type DiscountRuleName$5 as DiscountRuleName, DiscountType$5 as DiscountType, type DomainEvent$e as DomainEvent, type DomainEventBodyOneOf$e as DomainEventBodyOneOf, type Empty$9 as Empty, type EntityCreatedEvent$e as EntityCreatedEvent, type EntityDeletedEvent$e as EntityDeletedEvent, type EntityUpdatedEvent$e as EntityUpdatedEvent, type index_d$g_EstimateCurrentCartTotalsOptions as EstimateCurrentCartTotalsOptions, type index_d$g_EstimateCurrentCartTotalsRequest as EstimateCurrentCartTotalsRequest, type index_d$g_EstimateTotalsRequest as EstimateTotalsRequest, type index_d$g_EstimateTotalsResponse as EstimateTotalsResponse, type index_d$g_EstimateTotalsResponseNonNullableFields as EstimateTotalsResponseNonNullableFields, type EventMetadata$c as EventMetadata, type ExtendedFields$8 as ExtendedFields, FallbackReason$3 as FallbackReason, type FieldViolation$4 as FieldViolation, FileType$3 as FileType, type FullAddressContactDetails$4 as FullAddressContactDetails, type index_d$g_GetCartByCheckoutIdRequest as GetCartByCheckoutIdRequest, type index_d$g_GetCartByCheckoutIdResponse as GetCartByCheckoutIdResponse, type index_d$g_GetCartRequest as GetCartRequest, type index_d$g_GetCartResponse as GetCartResponse, type index_d$g_GetCartResponseNonNullableFields as GetCartResponseNonNullableFields, type index_d$g_GetCurrentCartRequest as GetCurrentCartRequest, type index_d$g_GetCurrentCartResponse as GetCurrentCartResponse, type index_d$g_GetCurrentCartResponseNonNullableFields as GetCurrentCartResponseNonNullableFields, type GiftCard$4 as GiftCard, type Group$3 as Group, type index_d$g_HostSelectedMembership as HostSelectedMembership, type IdentificationData$e as IdentificationData, type IdentificationDataIdOneOf$e as IdentificationDataIdOneOf, type InvalidMembership$3 as InvalidMembership, type ItemAvailabilityInfo$2 as ItemAvailabilityInfo, ItemAvailabilityStatus$2 as ItemAvailabilityStatus, type ItemTaxFullDetails$5 as ItemTaxFullDetails, type ItemType$5 as ItemType, ItemTypeItemType$5 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$5 as ItemTypeItemTypeDataOneOf, JurisdictionType$5 as JurisdictionType, type LineItem$5 as LineItem, type LineItemDiscount$5 as LineItemDiscount, type LineItemPricesData$1 as LineItemPricesData, type LineItemQuantityUpdate$1 as LineItemQuantityUpdate, ManualCalculationReason$3 as ManualCalculationReason, type Membership$3 as Membership, type MembershipName$5 as MembershipName, type MembershipOptions$3 as MembershipOptions, type MembershipPaymentCredits$3 as MembershipPaymentCredits, type MerchantDiscount$5 as MerchantDiscount, type MerchantDiscountInput$2 as MerchantDiscountInput, type MessageEnvelope$e as MessageEnvelope, type MultiCurrencyPrice$3 as MultiCurrencyPrice, NameInLineItem$2 as NameInLineItem, NameInOther$2 as NameInOther, type Other$2 as Other, type OtherCharge$3 as OtherCharge, PaymentOptionType$5 as PaymentOptionType, type PhysicalProperties$5 as PhysicalProperties, type PickupDetails$6 as PickupDetails, PickupMethod$5 as PickupMethod, type PlainTextValue$4 as PlainTextValue, type PriceDescription$4 as PriceDescription, type PriceSummary$5 as PriceSummary, type ProductName$4 as ProductName, RateType$3 as RateType, type index_d$g_RemoveCouponFromCurrentCartRequest as RemoveCouponFromCurrentCartRequest, type RemoveCouponRequest$1 as RemoveCouponRequest, type RemoveCouponResponse$1 as RemoveCouponResponse, type RemoveCouponResponseNonNullableFields$1 as RemoveCouponResponseNonNullableFields, type index_d$g_RemoveLineItemsFromCurrentCartRequest as RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsRequest$1 as RemoveLineItemsRequest, type RemoveLineItemsResponse$1 as RemoveLineItemsResponse, type RemoveLineItemsResponseNonNullableFields$1 as RemoveLineItemsResponseNonNullableFields, type RestoreInfo$e as RestoreInfo, RuleType$4 as RuleType, type Scope$3 as Scope, type SecuredMedia$3 as SecuredMedia, type SelectedCarrierServiceOption$3 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$3 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$3 as SelectedCarrierServiceOptionPrices, type SelectedMembership$3 as SelectedMembership, type SelectedMemberships$3 as SelectedMemberships, type SelectedShippingOption$1 as SelectedShippingOption, type ServiceProperties$4 as ServiceProperties, Severity$2 as Severity, type ShippingInformation$3 as ShippingInformation, type ShippingOption$5 as ShippingOption, type ShippingPrice$5 as ShippingPrice, type ShippingRegion$5 as ShippingRegion, type StreetAddress$7 as StreetAddress, SubscriptionFrequency$6 as SubscriptionFrequency, type SubscriptionOptionInfo$3 as SubscriptionOptionInfo, type SubscriptionSettings$6 as SubscriptionSettings, type SystemError$4 as SystemError, type Target$2 as Target, type TargetLineItem$2 as TargetLineItem, type TargetTargetTypeOneOf$2 as TargetTargetTypeOneOf, type TaxBreakdown$3 as TaxBreakdown, type TaxCalculationDetails$3 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$3 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$3 as TaxRateBreakdown, type TaxSummary$5 as TaxSummary, type Title$2 as Title, type index_d$g_UpdateCartRequest as UpdateCartRequest, type index_d$g_UpdateCartResponse as UpdateCartResponse, type index_d$g_UpdateCartResponseNonNullableFields as UpdateCartResponseNonNullableFields, type index_d$g_UpdateCurrentCartLineItemQuantityRequest as UpdateCurrentCartLineItemQuantityRequest, type index_d$g_UpdateCurrentCartOptions as UpdateCurrentCartOptions, type UpdateLineItemsQuantityRequest$1 as UpdateLineItemsQuantityRequest, type UpdateLineItemsQuantityResponse$1 as UpdateLineItemsQuantityResponse, type UpdateLineItemsQuantityResponseNonNullableFields$1 as UpdateLineItemsQuantityResponseNonNullableFields, type index_d$g_V1Coupon as V1Coupon, type index_d$g_V1MerchantDiscount as V1MerchantDiscount, type ValidationError$4 as ValidationError, type VatId$5 as VatId, VatType$5 as VatType, type Violation$2 as Violation, WebhookIdentityType$e as WebhookIdentityType, WeightUnit$6 as WeightUnit, index_d$g_addToCurrentCart as addToCurrentCart, index_d$g_createCheckoutFromCurrentCart as createCheckoutFromCurrentCart, index_d$g_deleteCurrentCart as deleteCurrentCart, index_d$g_estimateCurrentCartTotals as estimateCurrentCartTotals, index_d$g_getCurrentCart as getCurrentCart, index_d$g_onCartCreated as onCartCreated, index_d$g_onCartDeleted as onCartDeleted, index_d$g_onCartUpdated as onCartUpdated, index_d$g_removeCouponFromCurrentCart as removeCouponFromCurrentCart, index_d$g_removeLineItemsFromCurrentCart as removeLineItemsFromCurrentCart, index_d$g_updateCurrentCart as updateCurrentCart, index_d$g_updateCurrentCartLineItemQuantity as updateCurrentCartLineItemQuantity };
7867
7891
  }
7868
7892
 
7869
7893
  interface Checkout$1 {
@@ -8153,6 +8177,18 @@ interface LineItem$4 {
8153
8177
  * @readonly
8154
8178
  */
8155
8179
  depositAmount?: MultiCurrencyPrice$2;
8180
+ /**
8181
+ * Item payment policy that requires customer consent to complete purchase. The payment policy will be displayed on the checkout page.
8182
+ * @readonly
8183
+ */
8184
+ consentRequiredPaymentPolicy?: string | null;
8185
+ /**
8186
+ * Whether to save the payment method on the order.
8187
+ *
8188
+ * Default: `false`
8189
+ * @readonly
8190
+ */
8191
+ savePaymentMethod?: boolean;
8156
8192
  }
8157
8193
  /** Used for grouping line items. Sent when an item is added to a cart, checkout, or order. */
8158
8194
  interface CatalogReference$4 {
@@ -8745,36 +8781,36 @@ interface PriceSummary$4 {
8745
8781
  }
8746
8782
  interface CalculationErrors$3 extends CalculationErrorsShippingCalculationErrorOneOf$3 {
8747
8783
  /** General shipping calculation error. */
8748
- generalShippingCalculationError?: Details$4;
8784
+ generalShippingCalculationError?: Details$3;
8749
8785
  /** Carrier errors. */
8750
8786
  carrierErrors?: CarrierErrors$3;
8751
8787
  /** Tax calculation error. */
8752
- taxCalculationError?: Details$4;
8788
+ taxCalculationError?: Details$3;
8753
8789
  /** Coupon calculation error. */
8754
- couponCalculationError?: Details$4;
8790
+ couponCalculationError?: Details$3;
8755
8791
  /** Gift card calculation error. */
8756
- giftCardCalculationError?: Details$4;
8792
+ giftCardCalculationError?: Details$3;
8757
8793
  /** Order validation errors. */
8758
8794
  orderValidationErrors?: ApplicationError$8[];
8759
8795
  /**
8760
8796
  * Membership payment methods calculation errors
8761
8797
  * For example, will indicate that a line item that must be paid with membership payment doesn't have one or selected memberships are invalid
8762
8798
  */
8763
- membershipError?: Details$4;
8799
+ membershipError?: Details$3;
8764
8800
  /** Discount Rule calculation error. */
8765
- discountsCalculationError?: Details$4;
8801
+ discountsCalculationError?: Details$3;
8766
8802
  }
8767
8803
  /** @oneof */
8768
8804
  interface CalculationErrorsShippingCalculationErrorOneOf$3 {
8769
8805
  /** General shipping calculation error. */
8770
- generalShippingCalculationError?: Details$4;
8806
+ generalShippingCalculationError?: Details$3;
8771
8807
  /** Carrier errors. */
8772
8808
  carrierErrors?: CarrierErrors$3;
8773
8809
  }
8774
- interface Details$4 extends DetailsKindOneOf$4 {
8810
+ interface Details$3 extends DetailsKindOneOf$3 {
8775
8811
  applicationError?: ApplicationError$8;
8776
- validationError?: ValidationError$4;
8777
- systemError?: SystemError$4;
8812
+ validationError?: ValidationError$3;
8813
+ systemError?: SystemError$3;
8778
8814
  /**
8779
8815
  * deprecated in API's - to enable migration from rendering arbitrary tracing to rest response
8780
8816
  * @deprecated
@@ -8782,10 +8818,10 @@ interface Details$4 extends DetailsKindOneOf$4 {
8782
8818
  tracing?: Record<string, string>;
8783
8819
  }
8784
8820
  /** @oneof */
8785
- interface DetailsKindOneOf$4 {
8821
+ interface DetailsKindOneOf$3 {
8786
8822
  applicationError?: ApplicationError$8;
8787
- validationError?: ValidationError$4;
8788
- systemError?: SystemError$4;
8823
+ validationError?: ValidationError$3;
8824
+ systemError?: SystemError$3;
8789
8825
  }
8790
8826
  interface ApplicationError$8 {
8791
8827
  /** Error code. */
@@ -8827,10 +8863,10 @@ interface ApplicationError$8 {
8827
8863
  * ]
8828
8864
  * }
8829
8865
  */
8830
- interface ValidationError$4 {
8831
- fieldViolations?: FieldViolation$4[];
8866
+ interface ValidationError$3 {
8867
+ fieldViolations?: FieldViolation$3[];
8832
8868
  }
8833
- declare enum RuleType$4 {
8869
+ declare enum RuleType$3 {
8834
8870
  VALIDATION = "VALIDATION",
8835
8871
  OTHER = "OTHER",
8836
8872
  MAX = "MAX",
@@ -8850,15 +8886,15 @@ declare enum RuleType$4 {
8850
8886
  FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
8851
8887
  ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
8852
8888
  }
8853
- interface FieldViolation$4 {
8889
+ interface FieldViolation$3 {
8854
8890
  field?: string;
8855
8891
  description?: string;
8856
- violatedRule?: RuleType$4;
8892
+ violatedRule?: RuleType$3;
8857
8893
  /** applicable when violated_rule=OTHER */
8858
8894
  ruleName?: string | null;
8859
8895
  data?: Record<string, any> | null;
8860
8896
  }
8861
- interface SystemError$4 {
8897
+ interface SystemError$3 {
8862
8898
  /** Error code. */
8863
8899
  errorCode?: string | null;
8864
8900
  }
@@ -8870,7 +8906,7 @@ interface CarrierError$3 {
8870
8906
  /** Carrier ID. */
8871
8907
  carrierId?: string;
8872
8908
  /** Error details. */
8873
- error?: Details$4;
8909
+ error?: Details$3;
8874
8910
  }
8875
8911
  interface GiftCard$3 {
8876
8912
  /**
@@ -9413,12 +9449,12 @@ interface CreateCheckoutResponse {
9413
9449
  checkout?: Checkout$1;
9414
9450
  }
9415
9451
  interface ShippingCalculationErrorData extends ShippingCalculationErrorDataShippingCalculationErrorOneOf {
9416
- generalShippingCalculationError?: Details$4;
9452
+ generalShippingCalculationError?: Details$3;
9417
9453
  carrierErrors?: CarrierErrors$3;
9418
9454
  }
9419
9455
  /** @oneof */
9420
9456
  interface ShippingCalculationErrorDataShippingCalculationErrorOneOf {
9421
- generalShippingCalculationError?: Details$4;
9457
+ generalShippingCalculationError?: Details$3;
9422
9458
  carrierErrors?: CarrierErrors$3;
9423
9459
  }
9424
9460
  interface GetCheckoutRequest {
@@ -10350,7 +10386,7 @@ interface ApplicationErrorNonNullableFields$7 {
10350
10386
  interface FieldViolationNonNullableFields$2 {
10351
10387
  field: string;
10352
10388
  description: string;
10353
- violatedRule: RuleType$4;
10389
+ violatedRule: RuleType$3;
10354
10390
  }
10355
10391
  interface ValidationErrorNonNullableFields$2 {
10356
10392
  fieldViolations: FieldViolationNonNullableFields$2[];
@@ -10972,7 +11008,7 @@ declare const index_d$f_removeOverrideCheckoutUrl: typeof removeOverrideCheckout
10972
11008
  declare const index_d$f_updateCheckout: typeof updateCheckout;
10973
11009
  declare const index_d$f_updateLineItemsQuantity: typeof updateLineItemsQuantity;
10974
11010
  declare namespace index_d$f {
10975
- export { type ActionEvent$d as ActionEvent, type index_d$f_AddToCheckoutOptions as AddToCheckoutOptions, type index_d$f_AddToCheckoutRequest as AddToCheckoutRequest, type index_d$f_AddToCheckoutResponse as AddToCheckoutResponse, type index_d$f_AddToCheckoutResponseNonNullableFields as AddToCheckoutResponseNonNullableFields, type AdditionalFee$4 as AdditionalFee, type Address$7 as Address, type AddressAddressLine1OptionsOneOf$1 as AddressAddressLine1OptionsOneOf, type AddressLocation$6 as AddressLocation, type AddressWithContact$3 as AddressWithContact, type AggregatedTaxBreakdown$2 as AggregatedTaxBreakdown, type index_d$f_ApiAddress as ApiAddress, type ApplicationError$8 as ApplicationError, type AppliedCoupon$1 as AppliedCoupon, type AppliedDiscount$4 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$4 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$2 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$b as BaseEventMetadata, type BillingInfo$1 as BillingInfo, type BuyerInfo$5 as BuyerInfo, type BuyerInfoIdOneOf$3 as BuyerInfoIdOneOf, type CalculationErrors$3 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$3 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$3 as CarrierError, type CarrierErrors$3 as CarrierErrors, type CarrierServiceOption$2 as CarrierServiceOption, type CatalogOverrideFields$1 as CatalogOverrideFields, type CatalogReference$4 as CatalogReference, type ChannelInfo$3 as ChannelInfo, index_d$f_ChannelInfoChannelType as ChannelInfoChannelType, ChannelType$4 as ChannelType, type index_d$f_ChargeDetails as ChargeDetails, ChargeType$3 as ChargeType, type Checkout$1 as Checkout, type index_d$f_CheckoutCompletedEnvelope as CheckoutCompletedEnvelope, type index_d$f_CheckoutCreatedEnvelope as CheckoutCreatedEnvelope, type index_d$f_CheckoutMarkedAsCompleted as CheckoutMarkedAsCompleted, type index_d$f_CheckoutNonNullableFields as CheckoutNonNullableFields, type index_d$f_CheckoutUpdatedEnvelope as CheckoutUpdatedEnvelope, type Color$3 as Color, type index_d$f_CommonVatId as CommonVatId, index_d$f_CommonVatType as CommonVatType, type ConversionInfo$1 as ConversionInfo, type Coupon$4 as Coupon, type index_d$f_CreateCheckoutOptions as CreateCheckoutOptions, type index_d$f_CreateCheckoutRequest as CreateCheckoutRequest, type index_d$f_CreateCheckoutResponse as CreateCheckoutResponse, type index_d$f_CreateCheckoutResponseNonNullableFields as CreateCheckoutResponseNonNullableFields, type index_d$f_CreateOrderAndChargeRequest as CreateOrderAndChargeRequest, type index_d$f_CreateOrderAndChargeResponse as CreateOrderAndChargeResponse, type index_d$f_CreateOrderAndChargeResponseIdOneOf as CreateOrderAndChargeResponseIdOneOf, type CreateOrderRequest$1 as CreateOrderRequest, type CreateOrderResponse$1 as CreateOrderResponse, type index_d$f_CreateOrderResponseIdOneOf as CreateOrderResponseIdOneOf, type CreateOrderResponseNonNullableFields$1 as CreateOrderResponseNonNullableFields, type CreatedBy$3 as CreatedBy, type CreatedByIdOneOf$1 as CreatedByIdOneOf, type CustomContentReference$1 as CustomContentReference, type CustomField$4 as CustomField, type CustomLineItem$2 as CustomLineItem, type CustomSettings$1 as CustomSettings, type CustomTextFieldSelection$1 as CustomTextFieldSelection, type DeliveryLogistics$4 as DeliveryLogistics, type DeliveryTimeSlot$4 as DeliveryTimeSlot, type Description$1 as Description, type DescriptionLine$3 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$3 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$3 as DescriptionLineName, DescriptionLineType$3 as DescriptionLineType, type DescriptionLineValueOneOf$3 as DescriptionLineValueOneOf, type Details$4 as Details, type DetailsKindOneOf$4 as DetailsKindOneOf, type Discount$2 as Discount, index_d$f_DiscountDiscountType as DiscountDiscountType, type DiscountRule$4 as DiscountRule, type DiscountRuleName$4 as DiscountRuleName, DiscountType$4 as DiscountType, type DomainEvent$d as DomainEvent, type DomainEventBodyOneOf$d as DomainEventBodyOneOf, type index_d$f_DoublePaymentErrorData as DoublePaymentErrorData, type index_d$f_DoublePaymentErrorDataIdOneOf as DoublePaymentErrorDataIdOneOf, type Empty$8 as Empty, type EntityCreatedEvent$d as EntityCreatedEvent, type EntityDeletedEvent$d as EntityDeletedEvent, type EntityUpdatedEvent$d as EntityUpdatedEvent, type EventMetadata$b as EventMetadata, type ExtendedFields$7 as ExtendedFields, type ExternalReference$1 as ExternalReference, FallbackReason$2 as FallbackReason, type FieldViolation$4 as FieldViolation, FileType$2 as FileType, type FullAddressContactDetails$3 as FullAddressContactDetails, type FullName$1 as FullName, type index_d$f_GetCheckoutByCartIdRequest as GetCheckoutByCartIdRequest, type index_d$f_GetCheckoutByCartIdResponse as GetCheckoutByCartIdResponse, type index_d$f_GetCheckoutByCartIdResponseNonNullableFields as GetCheckoutByCartIdResponseNonNullableFields, type index_d$f_GetCheckoutRequest as GetCheckoutRequest, type index_d$f_GetCheckoutResponse as GetCheckoutResponse, type index_d$f_GetCheckoutResponseNonNullableFields as GetCheckoutResponseNonNullableFields, type index_d$f_GetCheckoutURLRequest as GetCheckoutURLRequest, type index_d$f_GetCheckoutURLResponse as GetCheckoutURLResponse, type index_d$f_GetCheckoutURLResponseNonNullableFields as GetCheckoutURLResponseNonNullableFields, type index_d$f_GetCheckoutWithAllExtendedFieldsRequest as GetCheckoutWithAllExtendedFieldsRequest, type index_d$f_GetCheckoutWithAllExtendedFieldsResponse as GetCheckoutWithAllExtendedFieldsResponse, type index_d$f_GetWixCheckoutURLRequest as GetWixCheckoutURLRequest, type index_d$f_GetWixCheckoutURLResponse as GetWixCheckoutURLResponse, type GiftCard$3 as GiftCard, type Group$2 as Group, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type InvalidMembership$2 as InvalidMembership, type ItemAvailabilityInfo$1 as ItemAvailabilityInfo, ItemAvailabilityStatus$1 as ItemAvailabilityStatus, type ItemTaxFullDetails$4 as ItemTaxFullDetails, type ItemType$4 as ItemType, ItemTypeItemType$4 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$4 as ItemTypeItemTypeDataOneOf, JurisdictionType$4 as JurisdictionType, type LineItem$4 as LineItem, type LineItemDiscount$4 as LineItemDiscount, type index_d$f_LineItemQuantityUpdate as LineItemQuantityUpdate, LineItemType$1 as LineItemType, ManualCalculationReason$2 as ManualCalculationReason, type index_d$f_MarkCheckoutAsCompletedRequest as MarkCheckoutAsCompletedRequest, type index_d$f_MarkCheckoutAsCompletedResponse as MarkCheckoutAsCompletedResponse, type MediaItem$1 as MediaItem, MediaItemType$1 as MediaItemType, type Membership$2 as Membership, type MembershipName$4 as MembershipName, type MembershipOptions$2 as MembershipOptions, type MembershipPaymentCredits$2 as MembershipPaymentCredits, type MerchantDiscount$4 as MerchantDiscount, type MerchantDiscountInput$1 as MerchantDiscountInput, type MessageEnvelope$d as MessageEnvelope, type MultiCurrencyPrice$2 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type OptionSelection$1 as OptionSelection, type Other$1 as Other, type OtherCharge$2 as OtherCharge, type index_d$f_PaymentErrorResponseData as PaymentErrorResponseData, PaymentOptionType$4 as PaymentOptionType, type PhysicalProperties$4 as PhysicalProperties, type PickupAddress$3 as PickupAddress, type PickupDetails$5 as PickupDetails, PickupMethod$4 as PickupMethod, type PlainTextValue$3 as PlainTextValue, type PriceDescription$3 as PriceDescription, type PriceSummary$4 as PriceSummary, type index_d$f_ProductDetails as ProductDetails, type ProductName$3 as ProductName, RateType$2 as RateType, type index_d$f_RedeemErrorData as RedeemErrorData, type index_d$f_RemoveCouponRequest as RemoveCouponRequest, type index_d$f_RemoveCouponResponse as RemoveCouponResponse, type index_d$f_RemoveCouponResponseNonNullableFields as RemoveCouponResponseNonNullableFields, type index_d$f_RemoveGiftCardRequest as RemoveGiftCardRequest, type index_d$f_RemoveGiftCardResponse as RemoveGiftCardResponse, type index_d$f_RemoveGiftCardResponseNonNullableFields as RemoveGiftCardResponseNonNullableFields, type index_d$f_RemoveLineItemsRequest as RemoveLineItemsRequest, type index_d$f_RemoveLineItemsResponse as RemoveLineItemsResponse, type index_d$f_RemoveLineItemsResponseNonNullableFields as RemoveLineItemsResponseNonNullableFields, type index_d$f_RemoveOverrideCheckoutUrlRequest as RemoveOverrideCheckoutUrlRequest, type index_d$f_RemoveOverrideCheckoutUrlResponse as RemoveOverrideCheckoutUrlResponse, type index_d$f_RemoveOverrideCheckoutUrlResponseNonNullableFields as RemoveOverrideCheckoutUrlResponseNonNullableFields, type RestoreInfo$d as RestoreInfo, RuleType$4 as RuleType, type Scope$2 as Scope, type SecuredMedia$2 as SecuredMedia, type SelectedCarrierServiceOption$2 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$2 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$2 as SelectedCarrierServiceOptionPrices, type SelectedMembership$2 as SelectedMembership, type SelectedMemberships$2 as SelectedMemberships, type ServiceProperties$3 as ServiceProperties, Severity$1 as Severity, type ShipmentDetails$1 as ShipmentDetails, type index_d$f_ShippingCalculationErrorData as ShippingCalculationErrorData, type index_d$f_ShippingCalculationErrorDataShippingCalculationErrorOneOf as ShippingCalculationErrorDataShippingCalculationErrorOneOf, type ShippingInfo$2 as ShippingInfo, type ShippingOption$4 as ShippingOption, type ShippingPrice$4 as ShippingPrice, type ShippingRegion$4 as ShippingRegion, type index_d$f_StoreSettings as StoreSettings, type Street$1 as Street, type StreetAddress$6 as StreetAddress, type index_d$f_Subscription as Subscription, type index_d$f_SubscriptionCreated as SubscriptionCreated, SubscriptionFrequency$5 as SubscriptionFrequency, type SubscriptionOptionInfo$2 as SubscriptionOptionInfo, type SubscriptionSettings$5 as SubscriptionSettings, type SystemError$4 as SystemError, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$2 as TaxBreakdown, type TaxCalculationDetails$2 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$2 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$2 as TaxRateBreakdown, type TaxSummary$4 as TaxSummary, type Title$1 as Title, type Totals$1 as Totals, type index_d$f_UpdateCheckout as UpdateCheckout, type index_d$f_UpdateCheckoutOptions as UpdateCheckoutOptions, type index_d$f_UpdateCheckoutRequest as UpdateCheckoutRequest, type index_d$f_UpdateCheckoutResponse as UpdateCheckoutResponse, type index_d$f_UpdateCheckoutResponseNonNullableFields as UpdateCheckoutResponseNonNullableFields, type index_d$f_UpdateLineItemsQuantityRequest as UpdateLineItemsQuantityRequest, type index_d$f_UpdateLineItemsQuantityResponse as UpdateLineItemsQuantityResponse, type index_d$f_UpdateLineItemsQuantityResponseNonNullableFields as UpdateLineItemsQuantityResponseNonNullableFields, type index_d$f_UpdatedCheckoutMessage as UpdatedCheckoutMessage, type index_d$f_V1BuyerInfo as V1BuyerInfo, type index_d$f_V1CustomField as V1CustomField, type V1LineItem$1 as V1LineItem, type V1PickupDetails$1 as V1PickupDetails, type index_d$f_V1ShippingInfo as V1ShippingInfo, type index_d$f_V1ShippingInfoDetailsOneOf as V1ShippingInfoDetailsOneOf, type index_d$f_V1SubscriptionOptionInfo as V1SubscriptionOptionInfo, type index_d$f_V1SubscriptionSettings as V1SubscriptionSettings, type ValidationError$4 as ValidationError, type VatId$4 as VatId, VatType$4 as VatType, type Violation$1 as Violation, type index_d$f_ViolationsList as ViolationsList, WebhookIdentityType$d as WebhookIdentityType, WeightUnit$5 as WeightUnit, index_d$f_addToCheckout as addToCheckout, index_d$f_createCheckout as createCheckout, createOrder$1 as createOrder, index_d$f_getCheckout as getCheckout, index_d$f_getCheckoutByCartId as getCheckoutByCartId, index_d$f_getCheckoutUrl as getCheckoutUrl, index_d$f_markCheckoutAsCompleted as markCheckoutAsCompleted, index_d$f_onCheckoutCompleted as onCheckoutCompleted, index_d$f_onCheckoutCreated as onCheckoutCreated, index_d$f_onCheckoutUpdated as onCheckoutUpdated, index_d$f_removeCoupon as removeCoupon, index_d$f_removeGiftCard as removeGiftCard, index_d$f_removeLineItems as removeLineItems, index_d$f_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, index_d$f_updateCheckout as updateCheckout, index_d$f_updateLineItemsQuantity as updateLineItemsQuantity };
11011
+ export { type ActionEvent$d as ActionEvent, type index_d$f_AddToCheckoutOptions as AddToCheckoutOptions, type index_d$f_AddToCheckoutRequest as AddToCheckoutRequest, type index_d$f_AddToCheckoutResponse as AddToCheckoutResponse, type index_d$f_AddToCheckoutResponseNonNullableFields as AddToCheckoutResponseNonNullableFields, type AdditionalFee$4 as AdditionalFee, type Address$7 as Address, type AddressAddressLine1OptionsOneOf$1 as AddressAddressLine1OptionsOneOf, type AddressLocation$6 as AddressLocation, type AddressWithContact$3 as AddressWithContact, type AggregatedTaxBreakdown$2 as AggregatedTaxBreakdown, type index_d$f_ApiAddress as ApiAddress, type ApplicationError$8 as ApplicationError, type AppliedCoupon$1 as AppliedCoupon, type AppliedDiscount$4 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$4 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$2 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$b as BaseEventMetadata, type BillingInfo$1 as BillingInfo, type BuyerInfo$5 as BuyerInfo, type BuyerInfoIdOneOf$3 as BuyerInfoIdOneOf, type CalculationErrors$3 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$3 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$3 as CarrierError, type CarrierErrors$3 as CarrierErrors, type CarrierServiceOption$2 as CarrierServiceOption, type CatalogOverrideFields$1 as CatalogOverrideFields, type CatalogReference$4 as CatalogReference, type ChannelInfo$3 as ChannelInfo, index_d$f_ChannelInfoChannelType as ChannelInfoChannelType, ChannelType$4 as ChannelType, type index_d$f_ChargeDetails as ChargeDetails, ChargeType$3 as ChargeType, type Checkout$1 as Checkout, type index_d$f_CheckoutCompletedEnvelope as CheckoutCompletedEnvelope, type index_d$f_CheckoutCreatedEnvelope as CheckoutCreatedEnvelope, type index_d$f_CheckoutMarkedAsCompleted as CheckoutMarkedAsCompleted, type index_d$f_CheckoutNonNullableFields as CheckoutNonNullableFields, type index_d$f_CheckoutUpdatedEnvelope as CheckoutUpdatedEnvelope, type Color$3 as Color, type index_d$f_CommonVatId as CommonVatId, index_d$f_CommonVatType as CommonVatType, type ConversionInfo$1 as ConversionInfo, type Coupon$4 as Coupon, type index_d$f_CreateCheckoutOptions as CreateCheckoutOptions, type index_d$f_CreateCheckoutRequest as CreateCheckoutRequest, type index_d$f_CreateCheckoutResponse as CreateCheckoutResponse, type index_d$f_CreateCheckoutResponseNonNullableFields as CreateCheckoutResponseNonNullableFields, type index_d$f_CreateOrderAndChargeRequest as CreateOrderAndChargeRequest, type index_d$f_CreateOrderAndChargeResponse as CreateOrderAndChargeResponse, type index_d$f_CreateOrderAndChargeResponseIdOneOf as CreateOrderAndChargeResponseIdOneOf, type CreateOrderRequest$1 as CreateOrderRequest, type CreateOrderResponse$1 as CreateOrderResponse, type index_d$f_CreateOrderResponseIdOneOf as CreateOrderResponseIdOneOf, type CreateOrderResponseNonNullableFields$1 as CreateOrderResponseNonNullableFields, type CreatedBy$3 as CreatedBy, type CreatedByIdOneOf$1 as CreatedByIdOneOf, type CustomContentReference$1 as CustomContentReference, type CustomField$4 as CustomField, type CustomLineItem$2 as CustomLineItem, type CustomSettings$1 as CustomSettings, type CustomTextFieldSelection$1 as CustomTextFieldSelection, type DeliveryLogistics$4 as DeliveryLogistics, type DeliveryTimeSlot$4 as DeliveryTimeSlot, type Description$1 as Description, type DescriptionLine$3 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$3 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$3 as DescriptionLineName, DescriptionLineType$3 as DescriptionLineType, type DescriptionLineValueOneOf$3 as DescriptionLineValueOneOf, type Details$3 as Details, type DetailsKindOneOf$3 as DetailsKindOneOf, type Discount$2 as Discount, index_d$f_DiscountDiscountType as DiscountDiscountType, type DiscountRule$4 as DiscountRule, type DiscountRuleName$4 as DiscountRuleName, DiscountType$4 as DiscountType, type DomainEvent$d as DomainEvent, type DomainEventBodyOneOf$d as DomainEventBodyOneOf, type index_d$f_DoublePaymentErrorData as DoublePaymentErrorData, type index_d$f_DoublePaymentErrorDataIdOneOf as DoublePaymentErrorDataIdOneOf, type Empty$8 as Empty, type EntityCreatedEvent$d as EntityCreatedEvent, type EntityDeletedEvent$d as EntityDeletedEvent, type EntityUpdatedEvent$d as EntityUpdatedEvent, type EventMetadata$b as EventMetadata, type ExtendedFields$7 as ExtendedFields, type ExternalReference$1 as ExternalReference, FallbackReason$2 as FallbackReason, type FieldViolation$3 as FieldViolation, FileType$2 as FileType, type FullAddressContactDetails$3 as FullAddressContactDetails, type FullName$1 as FullName, type index_d$f_GetCheckoutByCartIdRequest as GetCheckoutByCartIdRequest, type index_d$f_GetCheckoutByCartIdResponse as GetCheckoutByCartIdResponse, type index_d$f_GetCheckoutByCartIdResponseNonNullableFields as GetCheckoutByCartIdResponseNonNullableFields, type index_d$f_GetCheckoutRequest as GetCheckoutRequest, type index_d$f_GetCheckoutResponse as GetCheckoutResponse, type index_d$f_GetCheckoutResponseNonNullableFields as GetCheckoutResponseNonNullableFields, type index_d$f_GetCheckoutURLRequest as GetCheckoutURLRequest, type index_d$f_GetCheckoutURLResponse as GetCheckoutURLResponse, type index_d$f_GetCheckoutURLResponseNonNullableFields as GetCheckoutURLResponseNonNullableFields, type index_d$f_GetCheckoutWithAllExtendedFieldsRequest as GetCheckoutWithAllExtendedFieldsRequest, type index_d$f_GetCheckoutWithAllExtendedFieldsResponse as GetCheckoutWithAllExtendedFieldsResponse, type index_d$f_GetWixCheckoutURLRequest as GetWixCheckoutURLRequest, type index_d$f_GetWixCheckoutURLResponse as GetWixCheckoutURLResponse, type GiftCard$3 as GiftCard, type Group$2 as Group, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type InvalidMembership$2 as InvalidMembership, type ItemAvailabilityInfo$1 as ItemAvailabilityInfo, ItemAvailabilityStatus$1 as ItemAvailabilityStatus, type ItemTaxFullDetails$4 as ItemTaxFullDetails, type ItemType$4 as ItemType, ItemTypeItemType$4 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$4 as ItemTypeItemTypeDataOneOf, JurisdictionType$4 as JurisdictionType, type LineItem$4 as LineItem, type LineItemDiscount$4 as LineItemDiscount, type index_d$f_LineItemQuantityUpdate as LineItemQuantityUpdate, LineItemType$1 as LineItemType, ManualCalculationReason$2 as ManualCalculationReason, type index_d$f_MarkCheckoutAsCompletedRequest as MarkCheckoutAsCompletedRequest, type index_d$f_MarkCheckoutAsCompletedResponse as MarkCheckoutAsCompletedResponse, type MediaItem$1 as MediaItem, MediaItemType$1 as MediaItemType, type Membership$2 as Membership, type MembershipName$4 as MembershipName, type MembershipOptions$2 as MembershipOptions, type MembershipPaymentCredits$2 as MembershipPaymentCredits, type MerchantDiscount$4 as MerchantDiscount, type MerchantDiscountInput$1 as MerchantDiscountInput, type MessageEnvelope$d as MessageEnvelope, type MultiCurrencyPrice$2 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type OptionSelection$1 as OptionSelection, type Other$1 as Other, type OtherCharge$2 as OtherCharge, type index_d$f_PaymentErrorResponseData as PaymentErrorResponseData, PaymentOptionType$4 as PaymentOptionType, type PhysicalProperties$4 as PhysicalProperties, type PickupAddress$3 as PickupAddress, type PickupDetails$5 as PickupDetails, PickupMethod$4 as PickupMethod, type PlainTextValue$3 as PlainTextValue, type PriceDescription$3 as PriceDescription, type PriceSummary$4 as PriceSummary, type index_d$f_ProductDetails as ProductDetails, type ProductName$3 as ProductName, RateType$2 as RateType, type index_d$f_RedeemErrorData as RedeemErrorData, type index_d$f_RemoveCouponRequest as RemoveCouponRequest, type index_d$f_RemoveCouponResponse as RemoveCouponResponse, type index_d$f_RemoveCouponResponseNonNullableFields as RemoveCouponResponseNonNullableFields, type index_d$f_RemoveGiftCardRequest as RemoveGiftCardRequest, type index_d$f_RemoveGiftCardResponse as RemoveGiftCardResponse, type index_d$f_RemoveGiftCardResponseNonNullableFields as RemoveGiftCardResponseNonNullableFields, type index_d$f_RemoveLineItemsRequest as RemoveLineItemsRequest, type index_d$f_RemoveLineItemsResponse as RemoveLineItemsResponse, type index_d$f_RemoveLineItemsResponseNonNullableFields as RemoveLineItemsResponseNonNullableFields, type index_d$f_RemoveOverrideCheckoutUrlRequest as RemoveOverrideCheckoutUrlRequest, type index_d$f_RemoveOverrideCheckoutUrlResponse as RemoveOverrideCheckoutUrlResponse, type index_d$f_RemoveOverrideCheckoutUrlResponseNonNullableFields as RemoveOverrideCheckoutUrlResponseNonNullableFields, type RestoreInfo$d as RestoreInfo, RuleType$3 as RuleType, type Scope$2 as Scope, type SecuredMedia$2 as SecuredMedia, type SelectedCarrierServiceOption$2 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$2 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$2 as SelectedCarrierServiceOptionPrices, type SelectedMembership$2 as SelectedMembership, type SelectedMemberships$2 as SelectedMemberships, type ServiceProperties$3 as ServiceProperties, Severity$1 as Severity, type ShipmentDetails$1 as ShipmentDetails, type index_d$f_ShippingCalculationErrorData as ShippingCalculationErrorData, type index_d$f_ShippingCalculationErrorDataShippingCalculationErrorOneOf as ShippingCalculationErrorDataShippingCalculationErrorOneOf, type ShippingInfo$2 as ShippingInfo, type ShippingOption$4 as ShippingOption, type ShippingPrice$4 as ShippingPrice, type ShippingRegion$4 as ShippingRegion, type index_d$f_StoreSettings as StoreSettings, type Street$1 as Street, type StreetAddress$6 as StreetAddress, type index_d$f_Subscription as Subscription, type index_d$f_SubscriptionCreated as SubscriptionCreated, SubscriptionFrequency$5 as SubscriptionFrequency, type SubscriptionOptionInfo$2 as SubscriptionOptionInfo, type SubscriptionSettings$5 as SubscriptionSettings, type SystemError$3 as SystemError, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$2 as TaxBreakdown, type TaxCalculationDetails$2 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$2 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$2 as TaxRateBreakdown, type TaxSummary$4 as TaxSummary, type Title$1 as Title, type Totals$1 as Totals, type index_d$f_UpdateCheckout as UpdateCheckout, type index_d$f_UpdateCheckoutOptions as UpdateCheckoutOptions, type index_d$f_UpdateCheckoutRequest as UpdateCheckoutRequest, type index_d$f_UpdateCheckoutResponse as UpdateCheckoutResponse, type index_d$f_UpdateCheckoutResponseNonNullableFields as UpdateCheckoutResponseNonNullableFields, type index_d$f_UpdateLineItemsQuantityRequest as UpdateLineItemsQuantityRequest, type index_d$f_UpdateLineItemsQuantityResponse as UpdateLineItemsQuantityResponse, type index_d$f_UpdateLineItemsQuantityResponseNonNullableFields as UpdateLineItemsQuantityResponseNonNullableFields, type index_d$f_UpdatedCheckoutMessage as UpdatedCheckoutMessage, type index_d$f_V1BuyerInfo as V1BuyerInfo, type index_d$f_V1CustomField as V1CustomField, type V1LineItem$1 as V1LineItem, type V1PickupDetails$1 as V1PickupDetails, type index_d$f_V1ShippingInfo as V1ShippingInfo, type index_d$f_V1ShippingInfoDetailsOneOf as V1ShippingInfoDetailsOneOf, type index_d$f_V1SubscriptionOptionInfo as V1SubscriptionOptionInfo, type index_d$f_V1SubscriptionSettings as V1SubscriptionSettings, type ValidationError$3 as ValidationError, type VatId$4 as VatId, VatType$4 as VatType, type Violation$1 as Violation, type index_d$f_ViolationsList as ViolationsList, WebhookIdentityType$d as WebhookIdentityType, WeightUnit$5 as WeightUnit, index_d$f_addToCheckout as addToCheckout, index_d$f_createCheckout as createCheckout, createOrder$1 as createOrder, index_d$f_getCheckout as getCheckout, index_d$f_getCheckoutByCartId as getCheckoutByCartId, index_d$f_getCheckoutUrl as getCheckoutUrl, index_d$f_markCheckoutAsCompleted as markCheckoutAsCompleted, index_d$f_onCheckoutCompleted as onCheckoutCompleted, index_d$f_onCheckoutCreated as onCheckoutCreated, index_d$f_onCheckoutUpdated as onCheckoutUpdated, index_d$f_removeCoupon as removeCoupon, index_d$f_removeGiftCard as removeGiftCard, index_d$f_removeLineItems as removeLineItems, index_d$f_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, index_d$f_updateCheckout as updateCheckout, index_d$f_updateLineItemsQuantity as updateLineItemsQuantity };
10976
11012
  }
10977
11013
 
10978
11014
  interface CheckoutSettings {
@@ -12233,6 +12269,18 @@ interface LineItem$3 {
12233
12269
  * @readonly
12234
12270
  */
12235
12271
  depositAmount?: MultiCurrencyPrice$1;
12272
+ /**
12273
+ * Item payment policy that requires customer consent to complete purchase. The payment policy will be displayed on the checkout page.
12274
+ * @readonly
12275
+ */
12276
+ consentRequiredPaymentPolicy?: string | null;
12277
+ /**
12278
+ * Whether to save the payment method on the order.
12279
+ *
12280
+ * Default: `false`
12281
+ * @readonly
12282
+ */
12283
+ savePaymentMethod?: boolean;
12236
12284
  }
12237
12285
  interface MultiCurrencyPrice$1 {
12238
12286
  /** Amount. */
@@ -12599,36 +12647,36 @@ interface PriceSummary$3 {
12599
12647
  }
12600
12648
  interface CalculationErrors$2 extends CalculationErrorsShippingCalculationErrorOneOf$2 {
12601
12649
  /** General shipping calculation error. */
12602
- generalShippingCalculationError?: Details$3;
12650
+ generalShippingCalculationError?: Details$2;
12603
12651
  /** Carrier errors. */
12604
12652
  carrierErrors?: CarrierErrors$2;
12605
12653
  /** Tax calculation error. */
12606
- taxCalculationError?: Details$3;
12654
+ taxCalculationError?: Details$2;
12607
12655
  /** Coupon calculation error. */
12608
- couponCalculationError?: Details$3;
12656
+ couponCalculationError?: Details$2;
12609
12657
  /** Gift card calculation error. */
12610
- giftCardCalculationError?: Details$3;
12658
+ giftCardCalculationError?: Details$2;
12611
12659
  /** Order validation errors. */
12612
12660
  orderValidationErrors?: ApplicationError$7[];
12613
12661
  /**
12614
12662
  * Membership payment methods calculation errors
12615
12663
  * For example, will indicate that a line item that must be paid with membership payment doesn't have one or selected memberships are invalid
12616
12664
  */
12617
- membershipError?: Details$3;
12665
+ membershipError?: Details$2;
12618
12666
  /** Discount Rule calculation error. */
12619
- discountsCalculationError?: Details$3;
12667
+ discountsCalculationError?: Details$2;
12620
12668
  }
12621
12669
  /** @oneof */
12622
12670
  interface CalculationErrorsShippingCalculationErrorOneOf$2 {
12623
12671
  /** General shipping calculation error. */
12624
- generalShippingCalculationError?: Details$3;
12672
+ generalShippingCalculationError?: Details$2;
12625
12673
  /** Carrier errors. */
12626
12674
  carrierErrors?: CarrierErrors$2;
12627
12675
  }
12628
- interface Details$3 extends DetailsKindOneOf$3 {
12676
+ interface Details$2 extends DetailsKindOneOf$2 {
12629
12677
  applicationError?: ApplicationError$7;
12630
- validationError?: ValidationError$3;
12631
- systemError?: SystemError$3;
12678
+ validationError?: ValidationError$2;
12679
+ systemError?: SystemError$2;
12632
12680
  /**
12633
12681
  * deprecated in API's - to enable migration from rendering arbitrary tracing to rest response
12634
12682
  * @deprecated
@@ -12636,10 +12684,10 @@ interface Details$3 extends DetailsKindOneOf$3 {
12636
12684
  tracing?: Record<string, string>;
12637
12685
  }
12638
12686
  /** @oneof */
12639
- interface DetailsKindOneOf$3 {
12687
+ interface DetailsKindOneOf$2 {
12640
12688
  applicationError?: ApplicationError$7;
12641
- validationError?: ValidationError$3;
12642
- systemError?: SystemError$3;
12689
+ validationError?: ValidationError$2;
12690
+ systemError?: SystemError$2;
12643
12691
  }
12644
12692
  interface ApplicationError$7 {
12645
12693
  /** Error code. */
@@ -12681,10 +12729,10 @@ interface ApplicationError$7 {
12681
12729
  * ]
12682
12730
  * }
12683
12731
  */
12684
- interface ValidationError$3 {
12685
- fieldViolations?: FieldViolation$3[];
12732
+ interface ValidationError$2 {
12733
+ fieldViolations?: FieldViolation$2[];
12686
12734
  }
12687
- declare enum RuleType$3 {
12735
+ declare enum RuleType$2 {
12688
12736
  VALIDATION = "VALIDATION",
12689
12737
  OTHER = "OTHER",
12690
12738
  MAX = "MAX",
@@ -12704,15 +12752,15 @@ declare enum RuleType$3 {
12704
12752
  FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
12705
12753
  ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
12706
12754
  }
12707
- interface FieldViolation$3 {
12755
+ interface FieldViolation$2 {
12708
12756
  field?: string;
12709
12757
  description?: string;
12710
- violatedRule?: RuleType$3;
12758
+ violatedRule?: RuleType$2;
12711
12759
  /** applicable when violated_rule=OTHER */
12712
12760
  ruleName?: string | null;
12713
12761
  data?: Record<string, any> | null;
12714
12762
  }
12715
- interface SystemError$3 {
12763
+ interface SystemError$2 {
12716
12764
  /** Error code. */
12717
12765
  errorCode?: string | null;
12718
12766
  }
@@ -12724,7 +12772,7 @@ interface CarrierError$2 {
12724
12772
  /** Carrier ID. */
12725
12773
  carrierId?: string;
12726
12774
  /** Error details. */
12727
- error?: Details$3;
12775
+ error?: Details$2;
12728
12776
  }
12729
12777
  interface GiftCard$2 {
12730
12778
  /**
@@ -13620,7 +13668,7 @@ declare const index_d$d_onCheckoutTemplateUsed: typeof onCheckoutTemplateUsed;
13620
13668
  declare const index_d$d_queryCheckoutTemplates: typeof queryCheckoutTemplates;
13621
13669
  declare const index_d$d_updateCheckoutTemplate: typeof updateCheckoutTemplate;
13622
13670
  declare namespace index_d$d {
13623
- export { type ActionEvent$b as ActionEvent, type AdditionalFee$3 as AdditionalFee, type Address$6 as Address, type AddressLocation$5 as AddressLocation, type AddressWithContact$2 as AddressWithContact, type AggregatedTaxBreakdown$1 as AggregatedTaxBreakdown, type ApplicationError$7 as ApplicationError, type AppliedDiscount$3 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$3 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$1 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$9 as BaseEventMetadata, type BuyerInfo$4 as BuyerInfo, type BuyerInfoIdOneOf$2 as BuyerInfoIdOneOf, type CalculationErrors$2 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$2 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$2 as CarrierError, type CarrierErrors$2 as CarrierErrors, type CarrierServiceOption$1 as CarrierServiceOption, type index_d$d_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$3 as CatalogReference, ChannelType$3 as ChannelType, ChargeType$2 as ChargeType, type index_d$d_Checkout as Checkout, type index_d$d_CheckoutCustomization as CheckoutCustomization, type index_d$d_CheckoutTemplate as CheckoutTemplate, type index_d$d_CheckoutTemplateCreatedEnvelope as CheckoutTemplateCreatedEnvelope, type index_d$d_CheckoutTemplateDeletedEnvelope as CheckoutTemplateDeletedEnvelope, type index_d$d_CheckoutTemplateNonNullableFields as CheckoutTemplateNonNullableFields, type index_d$d_CheckoutTemplateUpdatedEnvelope as CheckoutTemplateUpdatedEnvelope, type index_d$d_CheckoutTemplateUsed as CheckoutTemplateUsed, type index_d$d_CheckoutTemplateUsedEnvelope as CheckoutTemplateUsedEnvelope, type index_d$d_CheckoutTemplatesQueryBuilder as CheckoutTemplatesQueryBuilder, type index_d$d_CheckoutTemplatesQueryResult as CheckoutTemplatesQueryResult, type Color$2 as Color, type index_d$d_ConversionInfo as ConversionInfo, type Coupon$3 as Coupon, type index_d$d_CreateAndRedirectToCheckoutRequest as CreateAndRedirectToCheckoutRequest, type index_d$d_CreateCheckoutFromTemplateRequest as CreateCheckoutFromTemplateRequest, type index_d$d_CreateCheckoutFromTemplateResponse as CreateCheckoutFromTemplateResponse, type index_d$d_CreateCheckoutFromTemplateResponseNonNullableFields as CreateCheckoutFromTemplateResponseNonNullableFields, type index_d$d_CreateCheckoutTemplateRequest as CreateCheckoutTemplateRequest, type index_d$d_CreateCheckoutTemplateResponse as CreateCheckoutTemplateResponse, type index_d$d_CreateCheckoutTemplateResponseNonNullableFields as CreateCheckoutTemplateResponseNonNullableFields, type CreatedBy$2 as CreatedBy, type index_d$d_CreatedByIdOneOf as CreatedByIdOneOf, type CursorPaging$8 as CursorPaging, type CursorPagingMetadata$8 as CursorPagingMetadata, type CursorQuery$5 as CursorQuery, type CursorQueryPagingMethodOneOf$5 as CursorQueryPagingMethodOneOf, type Cursors$8 as Cursors, type index_d$d_CustomContentReference as CustomContentReference, type CustomField$3 as CustomField, type CustomLineItem$1 as CustomLineItem, type index_d$d_CustomSettings as CustomSettings, type index_d$d_DeleteCheckoutTemplateRequest as DeleteCheckoutTemplateRequest, type index_d$d_DeleteCheckoutTemplateResponse as DeleteCheckoutTemplateResponse, type DeliveryLogistics$3 as DeliveryLogistics, type DeliveryTimeSlot$3 as DeliveryTimeSlot, type index_d$d_Description as Description, type DescriptionLine$2 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$2 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$2 as DescriptionLineName, DescriptionLineType$2 as DescriptionLineType, type DescriptionLineValueOneOf$2 as DescriptionLineValueOneOf, type Details$3 as Details, type DetailsKindOneOf$3 as DetailsKindOneOf, type DiscountRule$3 as DiscountRule, type DiscountRuleName$3 as DiscountRuleName, DiscountType$3 as DiscountType, type DomainEvent$b as DomainEvent, type DomainEventBodyOneOf$b as DomainEventBodyOneOf, type EntityCreatedEvent$b as EntityCreatedEvent, type EntityDeletedEvent$b as EntityDeletedEvent, type EntityUpdatedEvent$b as EntityUpdatedEvent, type EventMetadata$9 as EventMetadata, type ExtendedFields$6 as ExtendedFields, type index_d$d_ExternalReference as ExternalReference, FallbackReason$1 as FallbackReason, type FieldViolation$3 as FieldViolation, FileType$1 as FileType, type FullAddressContactDetails$2 as FullAddressContactDetails, type index_d$d_GetCheckoutTemplateRequest as GetCheckoutTemplateRequest, type index_d$d_GetCheckoutTemplateResponse as GetCheckoutTemplateResponse, type index_d$d_GetCheckoutTemplateResponseNonNullableFields as GetCheckoutTemplateResponseNonNullableFields, type GiftCard$2 as GiftCard, type Group$1 as Group, type index_d$d_HeadersEntry as HeadersEntry, type IdentificationData$b as IdentificationData, type IdentificationDataIdOneOf$b as IdentificationDataIdOneOf, type InvalidMembership$1 as InvalidMembership, type index_d$d_ItemAvailabilityInfo as ItemAvailabilityInfo, index_d$d_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$3 as ItemTaxFullDetails, type ItemType$3 as ItemType, ItemTypeItemType$3 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$3 as ItemTypeItemTypeDataOneOf, JurisdictionType$3 as JurisdictionType, type LineItem$3 as LineItem, type LineItemDiscount$3 as LineItemDiscount, ManualCalculationReason$1 as ManualCalculationReason, type Membership$1 as Membership, type MembershipName$3 as MembershipName, type MembershipOptions$1 as MembershipOptions, type MembershipPaymentCredits$1 as MembershipPaymentCredits, type MerchantDiscount$3 as MerchantDiscount, type MessageEnvelope$b as MessageEnvelope, type MultiCurrencyPrice$1 as MultiCurrencyPrice, index_d$d_NameInLineItem as NameInLineItem, index_d$d_NameInOther as NameInOther, type index_d$d_Other as Other, type OtherCharge$1 as OtherCharge, PaymentOptionType$3 as PaymentOptionType, type PhysicalProperties$3 as PhysicalProperties, type PickupDetails$4 as PickupDetails, PickupMethod$3 as PickupMethod, type PlainTextValue$2 as PlainTextValue, type PriceDescription$2 as PriceDescription, type PriceSummary$3 as PriceSummary, type ProductName$2 as ProductName, type index_d$d_QueryCheckoutTemplatesRequest as QueryCheckoutTemplatesRequest, type index_d$d_QueryCheckoutTemplatesResponse as QueryCheckoutTemplatesResponse, type index_d$d_QueryCheckoutTemplatesResponseNonNullableFields as QueryCheckoutTemplatesResponseNonNullableFields, RateType$1 as RateType, type index_d$d_RawHttpResponse as RawHttpResponse, type index_d$d_RawHttpResponseNonNullableFields as RawHttpResponseNonNullableFields, type RestoreInfo$b as RestoreInfo, RuleType$3 as RuleType, type Scope$1 as Scope, type SecuredMedia$1 as SecuredMedia, type SelectedCarrierServiceOption$1 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$1 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$1 as SelectedCarrierServiceOptionPrices, type SelectedMembership$1 as SelectedMembership, type SelectedMemberships$1 as SelectedMemberships, type ServiceProperties$2 as ServiceProperties, index_d$d_Severity as Severity, type ShippingInfo$1 as ShippingInfo, type ShippingOption$3 as ShippingOption, type ShippingPrice$3 as ShippingPrice, type ShippingRegion$3 as ShippingRegion, SortOrder$8 as SortOrder, type Sorting$8 as Sorting, Status$1 as Status, type StreetAddress$5 as StreetAddress, SubscriptionFrequency$4 as SubscriptionFrequency, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$4 as SubscriptionSettings, type SystemError$3 as SystemError, type index_d$d_Target as Target, type index_d$d_TargetLineItem as TargetLineItem, type index_d$d_TargetTargetTypeOneOf as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type TaxCalculationDetails$1 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$1 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$1 as TaxRateBreakdown, type TaxSummary$3 as TaxSummary, type index_d$d_Title as Title, type index_d$d_UpdateCheckoutTemplate as UpdateCheckoutTemplate, type index_d$d_UpdateCheckoutTemplateRequest as UpdateCheckoutTemplateRequest, type index_d$d_UpdateCheckoutTemplateResponse as UpdateCheckoutTemplateResponse, type index_d$d_UpdateCheckoutTemplateResponseNonNullableFields as UpdateCheckoutTemplateResponseNonNullableFields, type index_d$d_V1LineItem as V1LineItem, type ValidationError$3 as ValidationError, type VatId$3 as VatId, VatType$3 as VatType, type index_d$d_Violation as Violation, type index_d$d_WebClientCustomization as WebClientCustomization, WebhookIdentityType$b as WebhookIdentityType, WeightUnit$4 as WeightUnit, index_d$d_createAndRedirectToCheckout as createAndRedirectToCheckout, index_d$d_createCheckoutFromTemplate as createCheckoutFromTemplate, index_d$d_createCheckoutTemplate as createCheckoutTemplate, index_d$d_deleteCheckoutTemplate as deleteCheckoutTemplate, index_d$d_getCheckoutTemplate as getCheckoutTemplate, index_d$d_onCheckoutTemplateCreated as onCheckoutTemplateCreated, index_d$d_onCheckoutTemplateDeleted as onCheckoutTemplateDeleted, index_d$d_onCheckoutTemplateUpdated as onCheckoutTemplateUpdated, index_d$d_onCheckoutTemplateUsed as onCheckoutTemplateUsed, index_d$d_queryCheckoutTemplates as queryCheckoutTemplates, index_d$d_updateCheckoutTemplate as updateCheckoutTemplate };
13671
+ export { type ActionEvent$b as ActionEvent, type AdditionalFee$3 as AdditionalFee, type Address$6 as Address, type AddressLocation$5 as AddressLocation, type AddressWithContact$2 as AddressWithContact, type AggregatedTaxBreakdown$1 as AggregatedTaxBreakdown, type ApplicationError$7 as ApplicationError, type AppliedDiscount$3 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$3 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$1 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$9 as BaseEventMetadata, type BuyerInfo$4 as BuyerInfo, type BuyerInfoIdOneOf$2 as BuyerInfoIdOneOf, type CalculationErrors$2 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$2 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$2 as CarrierError, type CarrierErrors$2 as CarrierErrors, type CarrierServiceOption$1 as CarrierServiceOption, type index_d$d_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$3 as CatalogReference, ChannelType$3 as ChannelType, ChargeType$2 as ChargeType, type index_d$d_Checkout as Checkout, type index_d$d_CheckoutCustomization as CheckoutCustomization, type index_d$d_CheckoutTemplate as CheckoutTemplate, type index_d$d_CheckoutTemplateCreatedEnvelope as CheckoutTemplateCreatedEnvelope, type index_d$d_CheckoutTemplateDeletedEnvelope as CheckoutTemplateDeletedEnvelope, type index_d$d_CheckoutTemplateNonNullableFields as CheckoutTemplateNonNullableFields, type index_d$d_CheckoutTemplateUpdatedEnvelope as CheckoutTemplateUpdatedEnvelope, type index_d$d_CheckoutTemplateUsed as CheckoutTemplateUsed, type index_d$d_CheckoutTemplateUsedEnvelope as CheckoutTemplateUsedEnvelope, type index_d$d_CheckoutTemplatesQueryBuilder as CheckoutTemplatesQueryBuilder, type index_d$d_CheckoutTemplatesQueryResult as CheckoutTemplatesQueryResult, type Color$2 as Color, type index_d$d_ConversionInfo as ConversionInfo, type Coupon$3 as Coupon, type index_d$d_CreateAndRedirectToCheckoutRequest as CreateAndRedirectToCheckoutRequest, type index_d$d_CreateCheckoutFromTemplateRequest as CreateCheckoutFromTemplateRequest, type index_d$d_CreateCheckoutFromTemplateResponse as CreateCheckoutFromTemplateResponse, type index_d$d_CreateCheckoutFromTemplateResponseNonNullableFields as CreateCheckoutFromTemplateResponseNonNullableFields, type index_d$d_CreateCheckoutTemplateRequest as CreateCheckoutTemplateRequest, type index_d$d_CreateCheckoutTemplateResponse as CreateCheckoutTemplateResponse, type index_d$d_CreateCheckoutTemplateResponseNonNullableFields as CreateCheckoutTemplateResponseNonNullableFields, type CreatedBy$2 as CreatedBy, type index_d$d_CreatedByIdOneOf as CreatedByIdOneOf, type CursorPaging$8 as CursorPaging, type CursorPagingMetadata$8 as CursorPagingMetadata, type CursorQuery$5 as CursorQuery, type CursorQueryPagingMethodOneOf$5 as CursorQueryPagingMethodOneOf, type Cursors$8 as Cursors, type index_d$d_CustomContentReference as CustomContentReference, type CustomField$3 as CustomField, type CustomLineItem$1 as CustomLineItem, type index_d$d_CustomSettings as CustomSettings, type index_d$d_DeleteCheckoutTemplateRequest as DeleteCheckoutTemplateRequest, type index_d$d_DeleteCheckoutTemplateResponse as DeleteCheckoutTemplateResponse, type DeliveryLogistics$3 as DeliveryLogistics, type DeliveryTimeSlot$3 as DeliveryTimeSlot, type index_d$d_Description as Description, type DescriptionLine$2 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$2 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$2 as DescriptionLineName, DescriptionLineType$2 as DescriptionLineType, type DescriptionLineValueOneOf$2 as DescriptionLineValueOneOf, type Details$2 as Details, type DetailsKindOneOf$2 as DetailsKindOneOf, type DiscountRule$3 as DiscountRule, type DiscountRuleName$3 as DiscountRuleName, DiscountType$3 as DiscountType, type DomainEvent$b as DomainEvent, type DomainEventBodyOneOf$b as DomainEventBodyOneOf, type EntityCreatedEvent$b as EntityCreatedEvent, type EntityDeletedEvent$b as EntityDeletedEvent, type EntityUpdatedEvent$b as EntityUpdatedEvent, type EventMetadata$9 as EventMetadata, type ExtendedFields$6 as ExtendedFields, type index_d$d_ExternalReference as ExternalReference, FallbackReason$1 as FallbackReason, type FieldViolation$2 as FieldViolation, FileType$1 as FileType, type FullAddressContactDetails$2 as FullAddressContactDetails, type index_d$d_GetCheckoutTemplateRequest as GetCheckoutTemplateRequest, type index_d$d_GetCheckoutTemplateResponse as GetCheckoutTemplateResponse, type index_d$d_GetCheckoutTemplateResponseNonNullableFields as GetCheckoutTemplateResponseNonNullableFields, type GiftCard$2 as GiftCard, type Group$1 as Group, type index_d$d_HeadersEntry as HeadersEntry, type IdentificationData$b as IdentificationData, type IdentificationDataIdOneOf$b as IdentificationDataIdOneOf, type InvalidMembership$1 as InvalidMembership, type index_d$d_ItemAvailabilityInfo as ItemAvailabilityInfo, index_d$d_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$3 as ItemTaxFullDetails, type ItemType$3 as ItemType, ItemTypeItemType$3 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$3 as ItemTypeItemTypeDataOneOf, JurisdictionType$3 as JurisdictionType, type LineItem$3 as LineItem, type LineItemDiscount$3 as LineItemDiscount, ManualCalculationReason$1 as ManualCalculationReason, type Membership$1 as Membership, type MembershipName$3 as MembershipName, type MembershipOptions$1 as MembershipOptions, type MembershipPaymentCredits$1 as MembershipPaymentCredits, type MerchantDiscount$3 as MerchantDiscount, type MessageEnvelope$b as MessageEnvelope, type MultiCurrencyPrice$1 as MultiCurrencyPrice, index_d$d_NameInLineItem as NameInLineItem, index_d$d_NameInOther as NameInOther, type index_d$d_Other as Other, type OtherCharge$1 as OtherCharge, PaymentOptionType$3 as PaymentOptionType, type PhysicalProperties$3 as PhysicalProperties, type PickupDetails$4 as PickupDetails, PickupMethod$3 as PickupMethod, type PlainTextValue$2 as PlainTextValue, type PriceDescription$2 as PriceDescription, type PriceSummary$3 as PriceSummary, type ProductName$2 as ProductName, type index_d$d_QueryCheckoutTemplatesRequest as QueryCheckoutTemplatesRequest, type index_d$d_QueryCheckoutTemplatesResponse as QueryCheckoutTemplatesResponse, type index_d$d_QueryCheckoutTemplatesResponseNonNullableFields as QueryCheckoutTemplatesResponseNonNullableFields, RateType$1 as RateType, type index_d$d_RawHttpResponse as RawHttpResponse, type index_d$d_RawHttpResponseNonNullableFields as RawHttpResponseNonNullableFields, type RestoreInfo$b as RestoreInfo, RuleType$2 as RuleType, type Scope$1 as Scope, type SecuredMedia$1 as SecuredMedia, type SelectedCarrierServiceOption$1 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$1 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$1 as SelectedCarrierServiceOptionPrices, type SelectedMembership$1 as SelectedMembership, type SelectedMemberships$1 as SelectedMemberships, type ServiceProperties$2 as ServiceProperties, index_d$d_Severity as Severity, type ShippingInfo$1 as ShippingInfo, type ShippingOption$3 as ShippingOption, type ShippingPrice$3 as ShippingPrice, type ShippingRegion$3 as ShippingRegion, SortOrder$8 as SortOrder, type Sorting$8 as Sorting, Status$1 as Status, type StreetAddress$5 as StreetAddress, SubscriptionFrequency$4 as SubscriptionFrequency, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$4 as SubscriptionSettings, type SystemError$2 as SystemError, type index_d$d_Target as Target, type index_d$d_TargetLineItem as TargetLineItem, type index_d$d_TargetTargetTypeOneOf as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type TaxCalculationDetails$1 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$1 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$1 as TaxRateBreakdown, type TaxSummary$3 as TaxSummary, type index_d$d_Title as Title, type index_d$d_UpdateCheckoutTemplate as UpdateCheckoutTemplate, type index_d$d_UpdateCheckoutTemplateRequest as UpdateCheckoutTemplateRequest, type index_d$d_UpdateCheckoutTemplateResponse as UpdateCheckoutTemplateResponse, type index_d$d_UpdateCheckoutTemplateResponseNonNullableFields as UpdateCheckoutTemplateResponseNonNullableFields, type index_d$d_V1LineItem as V1LineItem, type ValidationError$2 as ValidationError, type VatId$3 as VatId, VatType$3 as VatType, type index_d$d_Violation as Violation, type index_d$d_WebClientCustomization as WebClientCustomization, WebhookIdentityType$b as WebhookIdentityType, WeightUnit$4 as WeightUnit, index_d$d_createAndRedirectToCheckout as createAndRedirectToCheckout, index_d$d_createCheckoutFromTemplate as createCheckoutFromTemplate, index_d$d_createCheckoutTemplate as createCheckoutTemplate, index_d$d_deleteCheckoutTemplate as deleteCheckoutTemplate, index_d$d_getCheckoutTemplate as getCheckoutTemplate, index_d$d_onCheckoutTemplateCreated as onCheckoutTemplateCreated, index_d$d_onCheckoutTemplateDeleted as onCheckoutTemplateDeleted, index_d$d_onCheckoutTemplateUpdated as onCheckoutTemplateUpdated, index_d$d_onCheckoutTemplateUsed as onCheckoutTemplateUsed, index_d$d_queryCheckoutTemplates as queryCheckoutTemplates, index_d$d_updateCheckoutTemplate as updateCheckoutTemplate };
13624
13672
  }
13625
13673
 
13626
13674
  /**
@@ -15455,7 +15503,7 @@ interface ShippingDetails extends ShippingDetailsChangeTypeOneOf {
15455
15503
  /** Whether shipping info was removed as part of the draft. */
15456
15504
  removed?: boolean;
15457
15505
  /** Selected Shipping details. */
15458
- shippingInfo?: ShippingInformation$2;
15506
+ shippingInfo?: V1ShippingInformation$1;
15459
15507
  }
15460
15508
  /** @oneof */
15461
15509
  interface ShippingDetailsChangeTypeOneOf {
@@ -15466,7 +15514,7 @@ interface ShippingDetailsChangeTypeOneOf {
15466
15514
  /** Whether shipping info was removed as part of the draft. */
15467
15515
  removed?: boolean;
15468
15516
  }
15469
- interface ShippingInformation$2 {
15517
+ interface V1ShippingInformation$1 {
15470
15518
  /** App Def Id of external provider which was a source of shipping info */
15471
15519
  carrierId?: string | null;
15472
15520
  /** Unique code (or ID) of selected shipping option. For example, `"usps_std_overnight"``. */
@@ -15637,7 +15685,7 @@ interface ShippingRegion$2 {
15637
15685
  }
15638
15686
  interface ShippingChangedDetails {
15639
15687
  /** Shipping info before the change. */
15640
- shippingInfoBeforeChange?: ShippingInformation$2;
15688
+ shippingInfoBeforeChange?: V1ShippingInformation$1;
15641
15689
  }
15642
15690
  /** Buyer Info */
15643
15691
  interface BuyerInfo$3 extends BuyerInfoIdOneOf$1 {
@@ -16074,25 +16122,25 @@ interface ShippingPrice$2 {
16074
16122
  }
16075
16123
  interface CalculationErrors$1 extends CalculationErrorsShippingCalculationErrorOneOf$1 {
16076
16124
  /** General shipping calculation error. */
16077
- generalShippingCalculationError?: Details$2;
16125
+ generalShippingCalculationError?: Details$1;
16078
16126
  /** Carrier errors. */
16079
16127
  carrierErrors?: CarrierErrors$1;
16080
16128
  /** Tax calculation error. */
16081
- taxCalculationError?: Details$2;
16129
+ taxCalculationError?: Details$1;
16082
16130
  /** Order validation errors. */
16083
16131
  orderValidationErrors?: ApplicationError$5[];
16084
16132
  }
16085
16133
  /** @oneof */
16086
16134
  interface CalculationErrorsShippingCalculationErrorOneOf$1 {
16087
16135
  /** General shipping calculation error. */
16088
- generalShippingCalculationError?: Details$2;
16136
+ generalShippingCalculationError?: Details$1;
16089
16137
  /** Carrier errors. */
16090
16138
  carrierErrors?: CarrierErrors$1;
16091
16139
  }
16092
- interface Details$2 extends DetailsKindOneOf$2 {
16140
+ interface Details$1 extends DetailsKindOneOf$1 {
16093
16141
  applicationError?: ApplicationError$5;
16094
- validationError?: ValidationError$2;
16095
- systemError?: SystemError$2;
16142
+ validationError?: ValidationError$1;
16143
+ systemError?: SystemError$1;
16096
16144
  /**
16097
16145
  * deprecated in API's - to enable migration from rendering arbitrary tracing to rest response
16098
16146
  * @deprecated
@@ -16100,10 +16148,10 @@ interface Details$2 extends DetailsKindOneOf$2 {
16100
16148
  tracing?: Record<string, string>;
16101
16149
  }
16102
16150
  /** @oneof */
16103
- interface DetailsKindOneOf$2 {
16151
+ interface DetailsKindOneOf$1 {
16104
16152
  applicationError?: ApplicationError$5;
16105
- validationError?: ValidationError$2;
16106
- systemError?: SystemError$2;
16153
+ validationError?: ValidationError$1;
16154
+ systemError?: SystemError$1;
16107
16155
  }
16108
16156
  interface ApplicationError$5 {
16109
16157
  /** Error code. */
@@ -16145,10 +16193,10 @@ interface ApplicationError$5 {
16145
16193
  * ]
16146
16194
  * }
16147
16195
  */
16148
- interface ValidationError$2 {
16149
- fieldViolations?: FieldViolation$2[];
16196
+ interface ValidationError$1 {
16197
+ fieldViolations?: FieldViolation$1[];
16150
16198
  }
16151
- declare enum RuleType$2 {
16199
+ declare enum RuleType$1 {
16152
16200
  VALIDATION = "VALIDATION",
16153
16201
  OTHER = "OTHER",
16154
16202
  MAX = "MAX",
@@ -16168,15 +16216,15 @@ declare enum RuleType$2 {
16168
16216
  FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
16169
16217
  ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
16170
16218
  }
16171
- interface FieldViolation$2 {
16219
+ interface FieldViolation$1 {
16172
16220
  field?: string;
16173
16221
  description?: string;
16174
- violatedRule?: RuleType$2;
16222
+ violatedRule?: RuleType$1;
16175
16223
  /** applicable when violated_rule=OTHER */
16176
16224
  ruleName?: string | null;
16177
16225
  data?: Record<string, any> | null;
16178
16226
  }
16179
- interface SystemError$2 {
16227
+ interface SystemError$1 {
16180
16228
  /** Error code. */
16181
16229
  errorCode?: string | null;
16182
16230
  }
@@ -16188,7 +16236,7 @@ interface CarrierError$1 {
16188
16236
  /** Carrier ID. */
16189
16237
  carrierId?: string;
16190
16238
  /** Error details. */
16191
- error?: Details$2;
16239
+ error?: Details$1;
16192
16240
  }
16193
16241
  interface AddLineItemsToDraftOrderRequest {
16194
16242
  /** The draft order id */
@@ -16550,7 +16598,7 @@ interface Order$2 {
16550
16598
  /** Billing address and contact details. */
16551
16599
  billingInfo?: AddressWithContact$1;
16552
16600
  /** Shipping info and selected shipping option details. */
16553
- shippingInfo?: ShippingInformation$2;
16601
+ shippingInfo?: V1ShippingInformation$1;
16554
16602
  /** [Buyer note](https://support.wix.com/en/article/wix-stores-viewing-buyer-notes) left by the customer. */
16555
16603
  buyerNote?: string | null;
16556
16604
  /**
@@ -16740,6 +16788,7 @@ interface OrderChange$1 extends OrderChangeValueOneOf$1 {
16740
16788
  additionalFeeAdded?: ManagedAdditionalFee$1;
16741
16789
  additionalFeeRemoved?: ManagedAdditionalFee$1;
16742
16790
  totalPriceChanged?: TotalPriceChange$1;
16791
+ shippingInformationChanged?: ShippingInformationChange$1;
16743
16792
  }
16744
16793
  /** @oneof */
16745
16794
  interface OrderChangeValueOneOf$1 {
@@ -16751,6 +16800,7 @@ interface OrderChangeValueOneOf$1 {
16751
16800
  additionalFeeAdded?: ManagedAdditionalFee$1;
16752
16801
  additionalFeeRemoved?: ManagedAdditionalFee$1;
16753
16802
  totalPriceChanged?: TotalPriceChange$1;
16803
+ shippingInformationChanged?: ShippingInformationChange$1;
16754
16804
  }
16755
16805
  interface LineItemChanges$1 {
16756
16806
  /** Line item ID. */
@@ -16830,6 +16880,18 @@ interface TotalPriceChange$1 {
16830
16880
  /** Order’s total price after discounts and tax. After update */
16831
16881
  newTotal?: Price$3;
16832
16882
  }
16883
+ interface ShippingInformationChange$1 {
16884
+ /** Order’s Shipping Information. Before update */
16885
+ originalShippingInfo?: ShippingInformation$2;
16886
+ /** Order’s Shipping Information. After update */
16887
+ newShippingInfo?: ShippingInformation$2;
16888
+ }
16889
+ interface ShippingInformation$2 {
16890
+ /** Order’s shipping price. */
16891
+ total?: Price$3;
16892
+ /** Order’s shipping title. */
16893
+ shippingTitle?: string;
16894
+ }
16833
16895
  /** Payment method is saved for order */
16834
16896
  interface SavedPaymentMethod$1 {
16835
16897
  /** Payment method name */
@@ -17036,26 +17098,32 @@ interface QueryDraftOrdersRequest {
17036
17098
  query?: CursorQuery$3;
17037
17099
  }
17038
17100
  interface CursorQuery$3 extends CursorQueryPagingMethodOneOf$3 {
17039
- /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
17101
+ /**
17102
+ * Cursor paging options.
17103
+ *
17104
+ * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
17105
+ */
17040
17106
  cursorPaging?: CursorPaging$6;
17041
17107
  /**
17042
- * Filter object in the following format:
17043
- * `"filter" : {
17044
- * "fieldName1": "value1",
17045
- * "fieldName2":{"$operator":"value2"}
17046
- * }`
17047
- * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
17108
+ * Filter object.
17109
+ *
17110
+ * Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
17048
17111
  */
17049
17112
  filter?: Record<string, any> | null;
17050
17113
  /**
17051
- * Sort object in the following format:
17052
- * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
17114
+ * Sort object.
17115
+ *
17116
+ * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
17053
17117
  */
17054
17118
  sort?: Sorting$6[];
17055
17119
  }
17056
17120
  /** @oneof */
17057
17121
  interface CursorQueryPagingMethodOneOf$3 {
17058
- /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
17122
+ /**
17123
+ * Cursor paging options.
17124
+ *
17125
+ * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).
17126
+ */
17059
17127
  cursorPaging?: CursorPaging$6;
17060
17128
  }
17061
17129
  interface Sorting$6 {
@@ -17368,19 +17436,19 @@ interface V1ShippingPriceNonNullableFields {
17368
17436
  taxDetails?: ItemTaxFullDetailsNonNullableFields$2;
17369
17437
  discount?: PriceNonNullableFields$3;
17370
17438
  }
17371
- interface ShippingInformationNonNullableFields$2 {
17439
+ interface V1ShippingInformationNonNullableFields$1 {
17372
17440
  title: string;
17373
17441
  logistics?: V1DeliveryLogisticsNonNullableFields;
17374
17442
  cost?: V1ShippingPriceNonNullableFields;
17375
17443
  }
17376
17444
  interface ShippingChangedDetailsNonNullableFields {
17377
- shippingInfoBeforeChange?: ShippingInformationNonNullableFields$2;
17445
+ shippingInfoBeforeChange?: V1ShippingInformationNonNullableFields$1;
17378
17446
  }
17379
17447
  interface ShippingDetailsNonNullableFields {
17380
17448
  added: boolean;
17381
17449
  changedDetails?: ShippingChangedDetailsNonNullableFields;
17382
17450
  removed: boolean;
17383
- shippingInfo?: ShippingInformationNonNullableFields$2;
17451
+ shippingInfo?: V1ShippingInformationNonNullableFields$1;
17384
17452
  }
17385
17453
  interface BuyerInfoNonNullableFields$1 {
17386
17454
  visitorId: string;
@@ -17555,7 +17623,7 @@ interface ApplicationErrorNonNullableFields$5 {
17555
17623
  interface FieldViolationNonNullableFields$1 {
17556
17624
  field: string;
17557
17625
  description: string;
17558
- violatedRule: RuleType$2;
17626
+ violatedRule: RuleType$1;
17559
17627
  }
17560
17628
  interface ValidationErrorNonNullableFields$1 {
17561
17629
  fieldViolations: FieldViolationNonNullableFields$1[];
@@ -17685,6 +17753,14 @@ interface TotalPriceChangeNonNullableFields$1 {
17685
17753
  originalTotal?: PriceNonNullableFields$3;
17686
17754
  newTotal?: PriceNonNullableFields$3;
17687
17755
  }
17756
+ interface ShippingInformationNonNullableFields$2 {
17757
+ total?: PriceNonNullableFields$3;
17758
+ shippingTitle: string;
17759
+ }
17760
+ interface ShippingInformationChangeNonNullableFields$1 {
17761
+ originalShippingInfo?: ShippingInformationNonNullableFields$2;
17762
+ newShippingInfo?: ShippingInformationNonNullableFields$2;
17763
+ }
17688
17764
  interface OrderChangeNonNullableFields$1 {
17689
17765
  lineItemChanged?: LineItemChangesNonNullableFields$1;
17690
17766
  lineItemAdded?: ManagedLineItemNonNullableFields$1;
@@ -17694,6 +17770,7 @@ interface OrderChangeNonNullableFields$1 {
17694
17770
  additionalFeeAdded?: ManagedAdditionalFeeNonNullableFields$1;
17695
17771
  additionalFeeRemoved?: ManagedAdditionalFeeNonNullableFields$1;
17696
17772
  totalPriceChanged?: TotalPriceChangeNonNullableFields$1;
17773
+ shippingInformationChanged?: ShippingInformationChangeNonNullableFields$1;
17697
17774
  }
17698
17775
  interface DraftOrderChangesAppliedNonNullableFields$1 {
17699
17776
  draftOrderId: string;
@@ -17762,7 +17839,7 @@ interface OrderNonNullableFields$1 {
17762
17839
  taxIncludedInPrices: boolean;
17763
17840
  priceSummary?: PriceSummaryNonNullableFields$2;
17764
17841
  billingInfo?: AddressWithContactNonNullableFields$1;
17765
- shippingInfo?: ShippingInformationNonNullableFields$2;
17842
+ shippingInfo?: V1ShippingInformationNonNullableFields$1;
17766
17843
  status: OrderStatus$1;
17767
17844
  taxSummary?: TaxSummaryNonNullableFields$2;
17768
17845
  taxInfo?: OrderTaxInfoNonNullableFields$1;
@@ -18025,7 +18102,7 @@ declare const index_d$b_setAdditionalFees: typeof setAdditionalFees;
18025
18102
  declare const index_d$b_setDiscounts: typeof setDiscounts;
18026
18103
  declare const index_d$b_updateLineItems: typeof updateLineItems;
18027
18104
  declare namespace index_d$b {
18028
- export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type index_d$b_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type index_d$b_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type index_d$b_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type index_d$b_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type index_d$b_AdditionalFeeDetails as AdditionalFeeDetails, type index_d$b_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$b_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$b_BillingChangedDetails as BillingChangedDetails, type index_d$b_BillingDetails as BillingDetails, type index_d$b_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type index_d$b_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type index_d$b_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$b_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$b_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type index_d$b_CommitDraftOrderOptions as CommitDraftOrderOptions, type index_d$b_CommitDraftOrderRequest as CommitDraftOrderRequest, type index_d$b_CommitDraftOrderResponse as CommitDraftOrderResponse, type index_d$b_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type index_d$b_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type index_d$b_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type index_d$b_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type index_d$b_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type index_d$b_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type index_d$b_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type index_d$b_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type index_d$b_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type index_d$b_CreateDraftOrderRequest as CreateDraftOrderRequest, type index_d$b_CreateDraftOrderResponse as CreateDraftOrderResponse, type index_d$b_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type index_d$b_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type index_d$b_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$3 as CursorQuery, type CursorQueryPagingMethodOneOf$3 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type index_d$b_CustomLineItem as CustomLineItem, type index_d$b_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type index_d$b_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type index_d$b_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type index_d$b_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type index_d$b_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type index_d$b_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type index_d$b_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type index_d$b_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$2 as Details, type DetailsKindOneOf$2 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type index_d$b_DiscountDetails as DiscountDetails, type index_d$b_DiscountOption as DiscountOption, type index_d$b_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$b_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type index_d$b_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type index_d$b_DraftOrdersQueryResult as DraftOrdersQueryResult, index_d$b_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$2 as FieldViolation, index_d$b_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$b_GetDraftOrderRequest as GetDraftOrderRequest, type index_d$b_GetDraftOrderResponse as GetDraftOrderResponse, type index_d$b_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type index_d$b_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type index_d$b_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type index_d$b_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type index_d$b_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type index_d$b_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type index_d$b_ItemDetails as ItemDetails, type index_d$b_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$b_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$b_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$b_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, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, index_d$b_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$b_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type index_d$b_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type index_d$b_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type index_d$b_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type index_d$b_RecipientInfoDetails as RecipientInfoDetails, type index_d$b_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RestoreInfo$9 as RestoreInfo, RuleType$2 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type index_d$b_SecuredMedia as SecuredMedia, type index_d$b_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type index_d$b_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type index_d$b_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type index_d$b_SetBillingInfoRequest as SetBillingInfoRequest, type index_d$b_SetBillingInfoResponse as SetBillingInfoResponse, type index_d$b_SetBuyerInfoRequest as SetBuyerInfoRequest, type index_d$b_SetBuyerInfoResponse as SetBuyerInfoResponse, type index_d$b_SetDiscountsRequest as SetDiscountsRequest, type index_d$b_SetDiscountsResponse as SetDiscountsResponse, type index_d$b_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type index_d$b_SetRecipientInfoRequest as SetRecipientInfoRequest, type index_d$b_SetRecipientInfoResponse as SetRecipientInfoResponse, type index_d$b_SetShippingInfoRequest as SetShippingInfoRequest, type index_d$b_SetShippingInfoResponse as SetShippingInfoResponse, type index_d$b_ShippingChangedDetails as ShippingChangedDetails, type index_d$b_ShippingDetails as ShippingDetails, type index_d$b_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, 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$2 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type index_d$b_UpdateLineItemsOptions as UpdateLineItemsOptions, type index_d$b_UpdateLineItemsRequest as UpdateLineItemsRequest, type index_d$b_UpdateLineItemsResponse as UpdateLineItemsResponse, type index_d$b_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type index_d$b_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type index_d$b_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type index_d$b_V1BalanceSummary as V1BalanceSummary, type index_d$b_V1CreatedBy as V1CreatedBy, type index_d$b_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type index_d$b_V1DeliveryLogistics as V1DeliveryLogistics, type index_d$b_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type index_d$b_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type index_d$b_V1PickupDetails as V1PickupDetails, type index_d$b_V1ShippingPrice as V1ShippingPrice, type ValidationError$2 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$3 as WeightUnit, index_d$b_addLineItemsToDraftOrder as addLineItemsToDraftOrder, index_d$b_commitDraftOrder as commitDraftOrder, index_d$b_createCustomAdditionalFees as createCustomAdditionalFees, index_d$b_createCustomDiscounts as createCustomDiscounts, index_d$b_createDraftOrder as createDraftOrder, index_d$b_deleteCustomAdditionalFees as deleteCustomAdditionalFees, index_d$b_deleteCustomDiscounts as deleteCustomDiscounts, index_d$b_deleteDraftOrder as deleteDraftOrder, index_d$b_getDraftOrder as getDraftOrder, index_d$b_getOrderDraftabilityStatus as getOrderDraftabilityStatus, index_d$b_queryDraftOrders as queryDraftOrders, index_d$b_setAdditionalFees as setAdditionalFees, index_d$b_setDiscounts as setDiscounts, index_d$b_updateLineItems as updateLineItems };
18105
+ export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type index_d$b_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type index_d$b_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type index_d$b_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type index_d$b_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type index_d$b_AdditionalFeeDetails as AdditionalFeeDetails, type index_d$b_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$b_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$b_BillingChangedDetails as BillingChangedDetails, type index_d$b_BillingDetails as BillingDetails, type index_d$b_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type index_d$b_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type index_d$b_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$b_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$b_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type index_d$b_CommitDraftOrderOptions as CommitDraftOrderOptions, type index_d$b_CommitDraftOrderRequest as CommitDraftOrderRequest, type index_d$b_CommitDraftOrderResponse as CommitDraftOrderResponse, type index_d$b_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type index_d$b_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type index_d$b_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type index_d$b_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type index_d$b_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type index_d$b_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type index_d$b_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type index_d$b_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type index_d$b_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type index_d$b_CreateDraftOrderRequest as CreateDraftOrderRequest, type index_d$b_CreateDraftOrderResponse as CreateDraftOrderResponse, type index_d$b_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type index_d$b_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type index_d$b_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$3 as CursorQuery, type CursorQueryPagingMethodOneOf$3 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type index_d$b_CustomLineItem as CustomLineItem, type index_d$b_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type index_d$b_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type index_d$b_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type index_d$b_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type index_d$b_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type index_d$b_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type index_d$b_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type index_d$b_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$b_DiscountDetails as DiscountDetails, type index_d$b_DiscountOption as DiscountOption, type index_d$b_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$b_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type index_d$b_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type index_d$b_DraftOrdersQueryResult as DraftOrdersQueryResult, index_d$b_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$b_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$b_GetDraftOrderRequest as GetDraftOrderRequest, type index_d$b_GetDraftOrderResponse as GetDraftOrderResponse, type index_d$b_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type index_d$b_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type index_d$b_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type index_d$b_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type index_d$b_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type index_d$b_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type index_d$b_ItemDetails as ItemDetails, type index_d$b_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$b_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$b_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$b_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, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, index_d$b_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$b_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type index_d$b_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type index_d$b_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type index_d$b_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type index_d$b_RecipientInfoDetails as RecipientInfoDetails, type index_d$b_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RestoreInfo$9 as RestoreInfo, RuleType$1 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type index_d$b_SecuredMedia as SecuredMedia, type index_d$b_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type index_d$b_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type index_d$b_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type index_d$b_SetBillingInfoRequest as SetBillingInfoRequest, type index_d$b_SetBillingInfoResponse as SetBillingInfoResponse, type index_d$b_SetBuyerInfoRequest as SetBuyerInfoRequest, type index_d$b_SetBuyerInfoResponse as SetBuyerInfoResponse, type index_d$b_SetDiscountsRequest as SetDiscountsRequest, type index_d$b_SetDiscountsResponse as SetDiscountsResponse, type index_d$b_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type index_d$b_SetRecipientInfoRequest as SetRecipientInfoRequest, type index_d$b_SetRecipientInfoResponse as SetRecipientInfoResponse, type index_d$b_SetShippingInfoRequest as SetShippingInfoRequest, type index_d$b_SetShippingInfoResponse as SetShippingInfoResponse, type index_d$b_ShippingChangedDetails as ShippingChangedDetails, type index_d$b_ShippingDetails as ShippingDetails, type index_d$b_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 TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type index_d$b_UpdateLineItemsOptions as UpdateLineItemsOptions, type index_d$b_UpdateLineItemsRequest as UpdateLineItemsRequest, type index_d$b_UpdateLineItemsResponse as UpdateLineItemsResponse, type index_d$b_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type index_d$b_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type index_d$b_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type index_d$b_V1BalanceSummary as V1BalanceSummary, type index_d$b_V1CreatedBy as V1CreatedBy, type index_d$b_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type index_d$b_V1DeliveryLogistics as V1DeliveryLogistics, type index_d$b_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type index_d$b_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type index_d$b_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type index_d$b_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$b_addLineItemsToDraftOrder as addLineItemsToDraftOrder, index_d$b_commitDraftOrder as commitDraftOrder, index_d$b_createCustomAdditionalFees as createCustomAdditionalFees, index_d$b_createCustomDiscounts as createCustomDiscounts, index_d$b_createDraftOrder as createDraftOrder, index_d$b_deleteCustomAdditionalFees as deleteCustomAdditionalFees, index_d$b_deleteCustomDiscounts as deleteCustomDiscounts, index_d$b_deleteDraftOrder as deleteDraftOrder, index_d$b_getDraftOrder as getDraftOrder, index_d$b_getOrderDraftabilityStatus as getOrderDraftabilityStatus, index_d$b_queryDraftOrders as queryDraftOrders, index_d$b_setAdditionalFees as setAdditionalFees, index_d$b_setDiscounts as setDiscounts, index_d$b_updateLineItems as updateLineItems };
18029
18106
  }
18030
18107
 
18031
18108
  interface OrderWithFulfillments {
@@ -19263,7 +19340,7 @@ interface Order$1 {
19263
19340
  /** Billing address and contact details. */
19264
19341
  billingInfo?: AddressWithContact;
19265
19342
  /** Shipping info and selected shipping option details. */
19266
- shippingInfo?: ShippingInformation$1;
19343
+ shippingInfo?: V1ShippingInformation;
19267
19344
  /** [Buyer note](https://support.wix.com/en/article/wix-stores-viewing-buyer-notes) left by the customer. */
19268
19345
  buyerNote?: string | null;
19269
19346
  /**
@@ -19826,7 +19903,7 @@ declare enum VatType$1 {
19826
19903
  /** CNPJ - for corporations */
19827
19904
  CNPJ = "CNPJ"
19828
19905
  }
19829
- interface ShippingInformation$1 {
19906
+ interface V1ShippingInformation {
19830
19907
  /** App Def Id of external provider which was a source of shipping info */
19831
19908
  carrierId?: string | null;
19832
19909
  /** Unique code (or ID) of selected shipping option. For example, `"usps_std_overnight"``. */
@@ -20146,6 +20223,7 @@ interface OrderChange extends OrderChangeValueOneOf {
20146
20223
  additionalFeeAdded?: ManagedAdditionalFee;
20147
20224
  additionalFeeRemoved?: ManagedAdditionalFee;
20148
20225
  totalPriceChanged?: TotalPriceChange;
20226
+ shippingInformationChanged?: ShippingInformationChange;
20149
20227
  }
20150
20228
  /** @oneof */
20151
20229
  interface OrderChangeValueOneOf {
@@ -20157,6 +20235,7 @@ interface OrderChangeValueOneOf {
20157
20235
  additionalFeeAdded?: ManagedAdditionalFee;
20158
20236
  additionalFeeRemoved?: ManagedAdditionalFee;
20159
20237
  totalPriceChanged?: TotalPriceChange;
20238
+ shippingInformationChanged?: ShippingInformationChange;
20160
20239
  }
20161
20240
  interface LineItemChanges {
20162
20241
  /** Line item ID. */
@@ -20236,6 +20315,18 @@ interface TotalPriceChange {
20236
20315
  /** Order’s total price after discounts and tax. After update */
20237
20316
  newTotal?: Price$2;
20238
20317
  }
20318
+ interface ShippingInformationChange {
20319
+ /** Order’s Shipping Information. Before update */
20320
+ originalShippingInfo?: ShippingInformation$1;
20321
+ /** Order’s Shipping Information. After update */
20322
+ newShippingInfo?: ShippingInformation$1;
20323
+ }
20324
+ interface ShippingInformation$1 {
20325
+ /** Order’s shipping price. */
20326
+ total?: Price$2;
20327
+ /** Order’s shipping title. */
20328
+ shippingTitle?: string;
20329
+ }
20239
20330
  /** Payment method is saved for order */
20240
20331
  interface SavedPaymentMethod {
20241
20332
  /** Payment method name */
@@ -20675,7 +20766,7 @@ interface Refund$1 {
20675
20766
  /** List of transactions. */
20676
20767
  transactions?: RefundTransaction$1[];
20677
20768
  /** Refund business details. */
20678
- details?: V1RefundDetails;
20769
+ details?: RefundDetails$1;
20679
20770
  /** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
20680
20771
  _createdDate?: Date;
20681
20772
  }
@@ -20702,7 +20793,7 @@ declare enum RefundStatus$1 {
20702
20793
  FAILED = "FAILED"
20703
20794
  }
20704
20795
  /** Business model of a refund request */
20705
- interface V1RefundDetails {
20796
+ interface RefundDetails$1 {
20706
20797
  /** Order line item IDs and quantities that were refunded. */
20707
20798
  items?: RefundItem$1[];
20708
20799
  /** Whether the shipping fee was also refunded. */
@@ -20716,11 +20807,11 @@ interface RefundItem$1 {
20716
20807
  /** Line item quantity refunded. */
20717
20808
  quantity?: number;
20718
20809
  }
20719
- interface V1LineItemRefund {
20810
+ interface LineItemRefund$1 {
20720
20811
  }
20721
- interface V1AdditionalFeeRefund {
20812
+ interface AdditionalFeeRefund$1 {
20722
20813
  }
20723
- interface V1ShippingRefund {
20814
+ interface ShippingRefund$1 {
20724
20815
  }
20725
20816
  interface AggregatedRefundSummary$1 {
20726
20817
  }
@@ -21411,7 +21502,7 @@ interface PreviewRefundEmailRequest {
21411
21502
  /** Refund amount */
21412
21503
  refundAmount?: Price$2;
21413
21504
  /** Refund business details */
21414
- details?: V1RefundDetails;
21505
+ details?: RefundDetails$1;
21415
21506
  /** Personal note added to the email (optional) */
21416
21507
  customMessage?: string | null;
21417
21508
  }
@@ -21591,9 +21682,9 @@ interface GetRefundabilityStatusResponse$1 {
21591
21682
  }
21592
21683
  interface Refundability$1 extends RefundabilityAdditionalRefundabilityInfoOneOf$1 {
21593
21684
  /** Reason why payment is not refundable. */
21594
- nonRefundableReason?: RefundabilityNonRefundableReason;
21685
+ nonRefundableReason?: NonRefundableReason$1;
21595
21686
  /** Reason why payment is only refundable manually. */
21596
- manuallyRefundableReason?: RefundabilityManuallyRefundableReason;
21687
+ manuallyRefundableReason?: ManuallyRefundableReason$1;
21597
21688
  /** Payment ID. */
21598
21689
  paymentId?: string;
21599
21690
  /** Payment refundability status. */
@@ -21604,16 +21695,16 @@ interface Refundability$1 extends RefundabilityAdditionalRefundabilityInfoOneOf$
21604
21695
  /** @oneof */
21605
21696
  interface RefundabilityAdditionalRefundabilityInfoOneOf$1 {
21606
21697
  /** Reason why payment is not refundable. */
21607
- nonRefundableReason?: RefundabilityNonRefundableReason;
21698
+ nonRefundableReason?: NonRefundableReason$1;
21608
21699
  /** Reason why payment is only refundable manually. */
21609
- manuallyRefundableReason?: RefundabilityManuallyRefundableReason;
21700
+ manuallyRefundableReason?: ManuallyRefundableReason$1;
21610
21701
  }
21611
21702
  declare enum RefundableStatus$1 {
21612
21703
  NOT_REFUNDABLE = "NOT_REFUNDABLE",
21613
21704
  MANUAL = "MANUAL",
21614
21705
  REFUNDABLE = "REFUNDABLE"
21615
21706
  }
21616
- declare enum RefundabilityNonRefundableReason {
21707
+ declare enum NonRefundableReason$1 {
21617
21708
  NONE = "NONE",
21618
21709
  ALREADY_REFUNDED = "ALREADY_REFUNDED",
21619
21710
  PROVIDER_IS_DOWN = "PROVIDER_IS_DOWN",
@@ -21626,7 +21717,7 @@ declare enum RefundabilityNonRefundableReason {
21626
21717
  FORBIDDEN = "FORBIDDEN",
21627
21718
  TRANSACTION_NOT_FOUND = "TRANSACTION_NOT_FOUND"
21628
21719
  }
21629
- declare enum RefundabilityManuallyRefundableReason {
21720
+ declare enum ManuallyRefundableReason$1 {
21630
21721
  EXPIRED = "EXPIRED",
21631
21722
  NOT_SUPPORTED = "NOT_SUPPORTED",
21632
21723
  OFFLINE = "OFFLINE"
@@ -21695,13 +21786,13 @@ interface TriggerRefundRequest$1 {
21695
21786
  /** The order this refund related to */
21696
21787
  ecomOrderId?: string;
21697
21788
  /** Refund operations information */
21698
- payments?: V1PaymentRefund[];
21789
+ payments?: PaymentRefund$1[];
21699
21790
  /** Business model of a refund */
21700
- details?: V1RefundDetails;
21791
+ details?: RefundDetails$1;
21701
21792
  /** Side effect details related to refund */
21702
- sideEffects?: V1RefundSideEffects;
21793
+ sideEffects?: RefundSideEffects$1;
21703
21794
  }
21704
- interface V1PaymentRefund {
21795
+ interface PaymentRefund$1 {
21705
21796
  /** Specific payment within the order to refund */
21706
21797
  paymentId?: string;
21707
21798
  /** Refund amount. Not relevant for membership and gift card refunds. */
@@ -21713,7 +21804,7 @@ interface V1PaymentRefund {
21713
21804
  */
21714
21805
  externalRefund?: boolean;
21715
21806
  }
21716
- interface V1RefundSideEffects {
21807
+ interface RefundSideEffects$1 {
21717
21808
  /** Inventory restock details as part of this refund. */
21718
21809
  restockInfo?: RestockInfo$1;
21719
21810
  /** Whether to send a refund confirmation email to the customer. */
@@ -21725,14 +21816,14 @@ interface RestockInfo$1 {
21725
21816
  /** Restock type. */
21726
21817
  type?: RestockType$1;
21727
21818
  /** Restocked line items and quantities. Only relevant for `{"type": "SOME_ITEMS"}`. */
21728
- items?: V1RestockItem[];
21819
+ items?: RestockItem$1[];
21729
21820
  }
21730
21821
  declare enum RestockType$1 {
21731
21822
  NO_ITEMS = "NO_ITEMS",
21732
21823
  ALL_ITEMS = "ALL_ITEMS",
21733
21824
  SOME_ITEMS = "SOME_ITEMS"
21734
21825
  }
21735
- interface V1RestockItem {
21826
+ interface RestockItem$1 {
21736
21827
  /** ID of the line item being restocked. */
21737
21828
  lineItemId?: string;
21738
21829
  /** Line item quantity being restocked. */
@@ -21797,30 +21888,6 @@ interface CalculateRefundItemResponse$1 {
21797
21888
  /** Refundable amount for requested quantity of items (price of requested quantity of items without tax and discount) */
21798
21889
  price?: Price$2;
21799
21890
  }
21800
- interface CalculateRefundV1Request {
21801
- /** Order ID */
21802
- ecomOrderId?: string;
21803
- /** Refunded line items and quantity */
21804
- refundItems?: CalculateRefundItemRequest$1[];
21805
- /** Should include shipping in refund calculation */
21806
- refundShipping?: boolean;
21807
- }
21808
- interface CalculateRefundV1Response {
21809
- /** Total refundable amount */
21810
- total?: Price$2;
21811
- /** Tax cost of the order */
21812
- tax?: Price$2;
21813
- /** Discount given for this order */
21814
- discount?: Price$2;
21815
- /** Total cost of the order (without tax) */
21816
- subtotal?: Price$2;
21817
- /** Total shipping cost for order */
21818
- shipping?: Price$2;
21819
- /** Previous refund given on that order */
21820
- previouslyRefundedAmount?: Price$2;
21821
- /** The refundable items of that order */
21822
- items?: CalculateRefundItemResponse$1[];
21823
- }
21824
21891
  interface VoidAuthorizedPaymentsRequest {
21825
21892
  /** Wix eCommerce order ID */
21826
21893
  ecomOrderId?: string;
@@ -21850,185 +21917,6 @@ interface CaptureAuthorizedPaymentsResponse {
21850
21917
  /** All order's transactions after the capture was triggered */
21851
21918
  orderTransactions?: OrderTransactions$1;
21852
21919
  }
21853
- interface GetRefundOptionsRequest {
21854
- }
21855
- interface GetRefundOptionsResponse {
21856
- }
21857
- interface PaymentRefundOption extends PaymentRefundOptionStatusOneOf {
21858
- }
21859
- /** @oneof */
21860
- interface PaymentRefundOptionStatusOneOf {
21861
- }
21862
- interface PaymentInfo extends PaymentInfoSummaryOneOf, PaymentInfoPaymentMethodDetailsOneOf {
21863
- }
21864
- /** @oneof */
21865
- interface PaymentInfoSummaryOneOf {
21866
- }
21867
- /** @oneof */
21868
- interface PaymentInfoPaymentMethodDetailsOneOf {
21869
- }
21870
- interface MonetaryPaymentSummary {
21871
- }
21872
- interface MembershipPaymentSummary {
21873
- }
21874
- interface ManuallyRefundablePaymentStatus {
21875
- }
21876
- declare enum ManuallyRefundableReason$1 {
21877
- UNKNOWN_REASON = "UNKNOWN_REASON",
21878
- EXPIRED = "EXPIRED",
21879
- NOT_SUPPORTED = "NOT_SUPPORTED",
21880
- OFFLINE = "OFFLINE"
21881
- }
21882
- interface NonRefundablePaymentStatus {
21883
- }
21884
- declare enum NonRefundableReason$1 {
21885
- UNKNOWN_REASON = "UNKNOWN_REASON",
21886
- ALREADY_REFUNDED = "ALREADY_REFUNDED",
21887
- PROVIDER_IS_DOWN = "PROVIDER_IS_DOWN",
21888
- NOT_PAID = "NOT_PAID",
21889
- ZERO_PRICE = "ZERO_PRICE",
21890
- DISABLED_BY_PROVIDER = "DISABLED_BY_PROVIDER",
21891
- PENDING_REFUND = "PENDING_REFUND",
21892
- FORBIDDEN = "FORBIDDEN",
21893
- TRANSACTION_NOT_FOUND = "TRANSACTION_NOT_FOUND"
21894
- }
21895
- interface PaymentsSummary {
21896
- }
21897
- interface LineItemRefundOption {
21898
- }
21899
- interface ShippingRefundOption {
21900
- }
21901
- interface AdditionalFeeRefundOption {
21902
- }
21903
- interface CalculateRefundV2Request {
21904
- }
21905
- interface RefundDetails$1 {
21906
- }
21907
- interface LineItemRefund$1 {
21908
- }
21909
- interface AdditionalFeeRefund$1 {
21910
- }
21911
- interface ShippingRefund$1 {
21912
- }
21913
- interface CalculateRefundV2Response extends CalculateRefundV2ResponseStatusOneOf {
21914
- }
21915
- /** @oneof */
21916
- interface CalculateRefundV2ResponseStatusOneOf {
21917
- }
21918
- interface CalculatedRefundSummary {
21919
- }
21920
- interface CalculatedRefundDetails {
21921
- }
21922
- interface CalculatedLineItemRefund {
21923
- }
21924
- interface CalculatedAdditionalFeeRefund {
21925
- }
21926
- interface CalculatedShippingRefund {
21927
- }
21928
- interface CalculatedRefundNotAvailableStatus {
21929
- }
21930
- interface CalculationError extends CalculationErrorItemOneOf {
21931
- }
21932
- /** @oneof */
21933
- interface CalculationErrorItemOneOf {
21934
- }
21935
- interface Details$1 extends DetailsKindOneOf$1 {
21936
- applicationError?: ApplicationError$3;
21937
- validationError?: ValidationError$1;
21938
- systemError?: SystemError$1;
21939
- /**
21940
- * deprecated in API's - to enable migration from rendering arbitrary tracing to rest response
21941
- * @deprecated
21942
- */
21943
- tracing?: Record<string, string>;
21944
- }
21945
- /** @oneof */
21946
- interface DetailsKindOneOf$1 {
21947
- applicationError?: ApplicationError$3;
21948
- validationError?: ValidationError$1;
21949
- systemError?: SystemError$1;
21950
- }
21951
- /**
21952
- * example result:
21953
- * {
21954
- * "fieldViolations": [
21955
- * {
21956
- * "field": "fieldA",
21957
- * "description": "invalid music note. supported notes: [do,re,mi,fa,sol,la,ti]",
21958
- * "violatedRule": "OTHER",
21959
- * "ruleName": "INVALID_NOTE",
21960
- * "data": {
21961
- * "value": "FI"
21962
- * }
21963
- * },
21964
- * {
21965
- * "field": "fieldB",
21966
- * "description": "field value out of range. supported range: [0-20]",
21967
- * "violatedRule": "MAX",
21968
- * "data": {
21969
- * "threshold": 20
21970
- * }
21971
- * },
21972
- * {
21973
- * "field": "fieldC",
21974
- * "description": "invalid phone number. provide a valid phone number of size: [7-12], supported characters: [0-9, +, -, (, )]",
21975
- * "violatedRule": "FORMAT",
21976
- * "data": {
21977
- * "type": "PHONE"
21978
- * }
21979
- * }
21980
- * ]
21981
- * }
21982
- */
21983
- interface ValidationError$1 {
21984
- fieldViolations?: FieldViolation$1[];
21985
- }
21986
- declare enum RuleType$1 {
21987
- VALIDATION = "VALIDATION",
21988
- OTHER = "OTHER",
21989
- MAX = "MAX",
21990
- MIN = "MIN",
21991
- MAX_LENGTH = "MAX_LENGTH",
21992
- MIN_LENGTH = "MIN_LENGTH",
21993
- MAX_SIZE = "MAX_SIZE",
21994
- MIN_SIZE = "MIN_SIZE",
21995
- FORMAT = "FORMAT",
21996
- DECIMAL_LTE = "DECIMAL_LTE",
21997
- DECIMAL_GTE = "DECIMAL_GTE",
21998
- DECIMAL_LT = "DECIMAL_LT",
21999
- DECIMAL_GT = "DECIMAL_GT",
22000
- DECIMAL_MAX_SCALE = "DECIMAL_MAX_SCALE",
22001
- INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
22002
- REQUIRED_FIELD = "REQUIRED_FIELD",
22003
- FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
22004
- ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
22005
- }
22006
- interface FieldViolation$1 {
22007
- field?: string;
22008
- description?: string;
22009
- violatedRule?: RuleType$1;
22010
- /** applicable when violated_rule=OTHER */
22011
- ruleName?: string | null;
22012
- data?: Record<string, any> | null;
22013
- }
22014
- interface SystemError$1 {
22015
- /** Error code. */
22016
- errorCode?: string | null;
22017
- }
22018
- interface RefundRequest {
22019
- }
22020
- interface PaymentRefund$1 {
22021
- }
22022
- interface RefundSideEffects$1 {
22023
- }
22024
- interface RestockItem$1 {
22025
- }
22026
- interface RestockSideEffects {
22027
- }
22028
- interface NotificationSideEffects {
22029
- }
22030
- interface RefundResponse {
22031
- }
22032
21920
  interface ChargeSavedPaymentMethodRequest {
22033
21921
  /** Ecom Order ID. */
22034
21922
  ecomOrderId?: string;
@@ -22211,7 +22099,7 @@ interface CommitDeltasRequest {
22211
22099
  }
22212
22100
  interface DraftOrderDiffs extends DraftOrderDiffsShippingUpdateInfoOneOf, DraftOrderDiffsBuyerUpdateInfoOneOf, DraftOrderDiffsBillingUpdateInfoOneOf, DraftOrderDiffsRecipientUpdateInfoOneOf {
22213
22101
  /** Shipping info and selected shipping option details. */
22214
- changedShippingInfo?: ShippingInformation$1;
22102
+ changedShippingInfo?: V1ShippingInformation;
22215
22103
  /** Remove existing shipping info. */
22216
22104
  shippingInfoRemoved?: boolean;
22217
22105
  /** Added/updated/removed order line items. */
@@ -22243,7 +22131,7 @@ interface DraftOrderDiffs extends DraftOrderDiffsShippingUpdateInfoOneOf, DraftO
22243
22131
  /** @oneof */
22244
22132
  interface DraftOrderDiffsShippingUpdateInfoOneOf {
22245
22133
  /** Shipping info and selected shipping option details. */
22246
- changedShippingInfo?: ShippingInformation$1;
22134
+ changedShippingInfo?: V1ShippingInformation;
22247
22135
  /** Remove existing shipping info. */
22248
22136
  shippingInfoRemoved?: boolean;
22249
22137
  }
@@ -22427,7 +22315,7 @@ interface OrderDeltasCommitted {
22427
22315
  }
22428
22316
  interface CommittedDiffs extends CommittedDiffsShippingUpdateInfoOneOf {
22429
22317
  /** Shipping info and selected shipping option details. */
22430
- changedShippingInfo?: ShippingInformation$1;
22318
+ changedShippingInfo?: V1ShippingInformation;
22431
22319
  /** Remove existing shipping info. */
22432
22320
  shippingInfoRemoved?: boolean;
22433
22321
  /** Added/updated/removed order line items. */
@@ -22443,7 +22331,7 @@ interface CommittedDiffs extends CommittedDiffsShippingUpdateInfoOneOf {
22443
22331
  /** @oneof */
22444
22332
  interface CommittedDiffsShippingUpdateInfoOneOf {
22445
22333
  /** Shipping info and selected shipping option details. */
22446
- changedShippingInfo?: ShippingInformation$1;
22334
+ changedShippingInfo?: V1ShippingInformation;
22447
22335
  /** Remove existing shipping info. */
22448
22336
  shippingInfoRemoved?: boolean;
22449
22337
  }
@@ -23030,9 +22918,9 @@ interface OrderItemsRestocked {
23030
22918
  /** The order which items were restocked */
23031
22919
  order?: Order$1;
23032
22920
  /** Restocked items and quantities */
23033
- restockItems?: OrdersV1RestockItem[];
22921
+ restockItems?: V1RestockItem[];
23034
22922
  }
23035
- interface OrdersV1RestockItem {
22923
+ interface V1RestockItem {
23036
22924
  /** ID of the line item being restocked. */
23037
22925
  lineItemId?: string;
23038
22926
  /** Line item quantity being restocked. */
@@ -23622,7 +23510,7 @@ interface ShippingPriceNonNullableFields$1 {
23622
23510
  taxDetails?: ItemTaxFullDetailsNonNullableFields$1;
23623
23511
  discount?: PriceNonNullableFields$2;
23624
23512
  }
23625
- interface ShippingInformationNonNullableFields$1 {
23513
+ interface V1ShippingInformationNonNullableFields {
23626
23514
  title: string;
23627
23515
  logistics?: DeliveryLogisticsNonNullableFields$1;
23628
23516
  cost?: ShippingPriceNonNullableFields$1;
@@ -23741,6 +23629,14 @@ interface TotalPriceChangeNonNullableFields {
23741
23629
  originalTotal?: PriceNonNullableFields$2;
23742
23630
  newTotal?: PriceNonNullableFields$2;
23743
23631
  }
23632
+ interface ShippingInformationNonNullableFields$1 {
23633
+ total?: PriceNonNullableFields$2;
23634
+ shippingTitle: string;
23635
+ }
23636
+ interface ShippingInformationChangeNonNullableFields {
23637
+ originalShippingInfo?: ShippingInformationNonNullableFields$1;
23638
+ newShippingInfo?: ShippingInformationNonNullableFields$1;
23639
+ }
23744
23640
  interface OrderChangeNonNullableFields {
23745
23641
  lineItemChanged?: LineItemChangesNonNullableFields;
23746
23642
  lineItemAdded?: ManagedLineItemNonNullableFields;
@@ -23750,6 +23646,7 @@ interface OrderChangeNonNullableFields {
23750
23646
  additionalFeeAdded?: ManagedAdditionalFeeNonNullableFields;
23751
23647
  additionalFeeRemoved?: ManagedAdditionalFeeNonNullableFields;
23752
23648
  totalPriceChanged?: TotalPriceChangeNonNullableFields;
23649
+ shippingInformationChanged?: ShippingInformationChangeNonNullableFields;
23753
23650
  }
23754
23651
  interface DraftOrderChangesAppliedNonNullableFields {
23755
23652
  draftOrderId: string;
@@ -23830,7 +23727,7 @@ interface OrderNonNullableFields {
23830
23727
  taxIncludedInPrices: boolean;
23831
23728
  priceSummary?: PriceSummaryNonNullableFields$1;
23832
23729
  billingInfo?: AddressWithContactNonNullableFields;
23833
- shippingInfo?: ShippingInformationNonNullableFields$1;
23730
+ shippingInfo?: V1ShippingInformationNonNullableFields;
23834
23731
  status: OrderStatus;
23835
23732
  taxSummary?: TaxSummaryNonNullableFields$1;
23836
23733
  taxInfo?: OrderTaxInfoNonNullableFields;
@@ -24018,7 +23915,7 @@ interface UpdateOrder {
24018
23915
  /** Billing address and contact details. */
24019
23916
  billingInfo?: AddressWithContact;
24020
23917
  /** Shipping info and selected shipping option details. */
24021
- shippingInfo?: ShippingInformation$1;
23918
+ shippingInfo?: V1ShippingInformation;
24022
23919
  /** [Buyer note](https://support.wix.com/en/article/wix-stores-viewing-buyer-notes) left by the customer. */
24023
23920
  buyerNote?: string | null;
24024
23921
  /**
@@ -24130,7 +24027,6 @@ type index_d$8_AddInternalActivityRequest = AddInternalActivityRequest;
24130
24027
  type index_d$8_AddInternalActivityResponse = AddInternalActivityResponse;
24131
24028
  type index_d$8_AdditionalFeeDelta = AdditionalFeeDelta;
24132
24029
  type index_d$8_AdditionalFeeDeltaDeltaOneOf = AdditionalFeeDeltaDeltaOneOf;
24133
- type index_d$8_AdditionalFeeRefundOption = AdditionalFeeRefundOption;
24134
24030
  type index_d$8_AddressDescription = AddressDescription;
24135
24031
  type index_d$8_AddressWithContact = AddressWithContact;
24136
24032
  type index_d$8_AggregateOrdersRequest = AggregateOrdersRequest;
@@ -24181,21 +24077,8 @@ type index_d$8_BulkUpdateOrdersResponse = BulkUpdateOrdersResponse;
24181
24077
  type index_d$8_BulkUpdateOrdersResponseNonNullableFields = BulkUpdateOrdersResponseNonNullableFields;
24182
24078
  type index_d$8_BuyerInfoIdOneOf = BuyerInfoIdOneOf;
24183
24079
  type index_d$8_BuyerInfoUpdate = BuyerInfoUpdate;
24184
- type index_d$8_CalculateRefundV1Request = CalculateRefundV1Request;
24185
- type index_d$8_CalculateRefundV1Response = CalculateRefundV1Response;
24186
- type index_d$8_CalculateRefundV2Request = CalculateRefundV2Request;
24187
- type index_d$8_CalculateRefundV2Response = CalculateRefundV2Response;
24188
- type index_d$8_CalculateRefundV2ResponseStatusOneOf = CalculateRefundV2ResponseStatusOneOf;
24189
- type index_d$8_CalculatedAdditionalFeeRefund = CalculatedAdditionalFeeRefund;
24190
- type index_d$8_CalculatedLineItemRefund = CalculatedLineItemRefund;
24191
- type index_d$8_CalculatedRefundDetails = CalculatedRefundDetails;
24192
- type index_d$8_CalculatedRefundNotAvailableStatus = CalculatedRefundNotAvailableStatus;
24193
- type index_d$8_CalculatedRefundSummary = CalculatedRefundSummary;
24194
- type index_d$8_CalculatedShippingRefund = CalculatedShippingRefund;
24195
24080
  type index_d$8_CalculatedTax = CalculatedTax;
24196
24081
  type index_d$8_CalculatedTaxes = CalculatedTaxes;
24197
- type index_d$8_CalculationError = CalculationError;
24198
- type index_d$8_CalculationErrorItemOneOf = CalculationErrorItemOneOf;
24199
24082
  type index_d$8_Cancel = Cancel;
24200
24083
  type index_d$8_CancelOrderOptions = CancelOrderOptions;
24201
24084
  type index_d$8_CancelOrderRequest = CancelOrderRequest;
@@ -24276,8 +24159,6 @@ type index_d$8_GetOrderResponse = GetOrderResponse;
24276
24159
  type index_d$8_GetOrderResponseNonNullableFields = GetOrderResponseNonNullableFields;
24277
24160
  type index_d$8_GetPaymentCollectabilityStatusRequest = GetPaymentCollectabilityStatusRequest;
24278
24161
  type index_d$8_GetPaymentCollectabilityStatusResponse = GetPaymentCollectabilityStatusResponse;
24279
- type index_d$8_GetRefundOptionsRequest = GetRefundOptionsRequest;
24280
- type index_d$8_GetRefundOptionsResponse = GetRefundOptionsResponse;
24281
24162
  type index_d$8_GetShipmentsRequest = GetShipmentsRequest;
24282
24163
  type index_d$8_GetShipmentsResponse = GetShipmentsResponse;
24283
24164
  type index_d$8_HtmlApplication = HtmlApplication;
@@ -24314,7 +24195,6 @@ type index_d$8_LineItemPriceChange = LineItemPriceChange;
24314
24195
  type index_d$8_LineItemQuantityChange = LineItemQuantityChange;
24315
24196
  type index_d$8_LineItemQuantityChangeType = LineItemQuantityChangeType;
24316
24197
  declare const index_d$8_LineItemQuantityChangeType: typeof LineItemQuantityChangeType;
24317
- type index_d$8_LineItemRefundOption = LineItemRefundOption;
24318
24198
  type index_d$8_LineItemTax = LineItemTax;
24319
24199
  type index_d$8_LineItemTaxBreakdown = LineItemTaxBreakdown;
24320
24200
  type index_d$8_LineItemTaxInfo = LineItemTaxInfo;
@@ -24327,7 +24207,6 @@ type index_d$8_LocationAndQuantity = LocationAndQuantity;
24327
24207
  type index_d$8_ManagedAdditionalFee = ManagedAdditionalFee;
24328
24208
  type index_d$8_ManagedDiscount = ManagedDiscount;
24329
24209
  type index_d$8_ManagedLineItem = ManagedLineItem;
24330
- type index_d$8_ManuallyRefundablePaymentStatus = ManuallyRefundablePaymentStatus;
24331
24210
  type index_d$8_MarkAsFulfilledRequest = MarkAsFulfilledRequest;
24332
24211
  type index_d$8_MarkAsFulfilledResponse = MarkAsFulfilledResponse;
24333
24212
  type index_d$8_MarkAsUnfulfilledRequest = MarkAsUnfulfilledRequest;
@@ -24339,18 +24218,14 @@ type index_d$8_MarkOrderAsSeenByHumanResponse = MarkOrderAsSeenByHumanResponse;
24339
24218
  type index_d$8_MaskedOrder = MaskedOrder;
24340
24219
  type index_d$8_MaskedOrderLineItem = MaskedOrderLineItem;
24341
24220
  type index_d$8_MembershipChargeItem = MembershipChargeItem;
24342
- type index_d$8_MembershipPaymentSummary = MembershipPaymentSummary;
24343
24221
  type index_d$8_MerchantComment = MerchantComment;
24344
24222
  type index_d$8_MerchantDiscountMerchantDiscountReasonOneOf = MerchantDiscountMerchantDiscountReasonOneOf;
24345
24223
  type index_d$8_MetaData = MetaData;
24346
24224
  type index_d$8_MetaSite = MetaSite;
24347
24225
  type index_d$8_MetaTag = MetaTag;
24348
- type index_d$8_MonetaryPaymentSummary = MonetaryPaymentSummary;
24349
24226
  type index_d$8_Namespace = Namespace;
24350
24227
  declare const index_d$8_Namespace: typeof Namespace;
24351
24228
  type index_d$8_NewExchangeOrderCreated = NewExchangeOrderCreated;
24352
- type index_d$8_NonRefundablePaymentStatus = NonRefundablePaymentStatus;
24353
- type index_d$8_NotificationSideEffects = NotificationSideEffects;
24354
24229
  type index_d$8_OrderApprovalStrategy = OrderApprovalStrategy;
24355
24230
  declare const index_d$8_OrderApprovalStrategy: typeof OrderApprovalStrategy;
24356
24231
  type index_d$8_OrderApproved = OrderApproved;
@@ -24380,18 +24255,11 @@ declare const index_d$8_OrderStatus: typeof OrderStatus;
24380
24255
  type index_d$8_OrderTaxBreakdown = OrderTaxBreakdown;
24381
24256
  type index_d$8_OrderTaxInfo = OrderTaxInfo;
24382
24257
  type index_d$8_OrdersExperiments = OrdersExperiments;
24383
- type index_d$8_OrdersV1RestockItem = OrdersV1RestockItem;
24384
24258
  type index_d$8_PaymentCapture = PaymentCapture;
24385
24259
  type index_d$8_PaymentCollectabilityStatus = PaymentCollectabilityStatus;
24386
24260
  declare const index_d$8_PaymentCollectabilityStatus: typeof PaymentCollectabilityStatus;
24387
- type index_d$8_PaymentInfo = PaymentInfo;
24388
- type index_d$8_PaymentInfoPaymentMethodDetailsOneOf = PaymentInfoPaymentMethodDetailsOneOf;
24389
- type index_d$8_PaymentInfoSummaryOneOf = PaymentInfoSummaryOneOf;
24390
- type index_d$8_PaymentRefundOption = PaymentRefundOption;
24391
- type index_d$8_PaymentRefundOptionStatusOneOf = PaymentRefundOptionStatusOneOf;
24392
24261
  type index_d$8_PaymentStatusUpdated = PaymentStatusUpdated;
24393
24262
  type index_d$8_Payments = Payments;
24394
- type index_d$8_PaymentsSummary = PaymentsSummary;
24395
24263
  type index_d$8_Phone = Phone;
24396
24264
  type index_d$8_PickupReadyEmailSent = PickupReadyEmailSent;
24397
24265
  type index_d$8_Placement = Placement;
@@ -24435,14 +24303,7 @@ type index_d$8_QuotesAddress = QuotesAddress;
24435
24303
  type index_d$8_RecordManuallyCollectedPaymentRequest = RecordManuallyCollectedPaymentRequest;
24436
24304
  type index_d$8_RecordManuallyCollectedPaymentResponse = RecordManuallyCollectedPaymentResponse;
24437
24305
  type index_d$8_RedirectUrls = RedirectUrls;
24438
- type index_d$8_RefundRequest = RefundRequest;
24439
- type index_d$8_RefundResponse = RefundResponse;
24440
- type index_d$8_RefundabilityManuallyRefundableReason = RefundabilityManuallyRefundableReason;
24441
- declare const index_d$8_RefundabilityManuallyRefundableReason: typeof RefundabilityManuallyRefundableReason;
24442
- type index_d$8_RefundabilityNonRefundableReason = RefundabilityNonRefundableReason;
24443
- declare const index_d$8_RefundabilityNonRefundableReason: typeof RefundabilityNonRefundableReason;
24444
24306
  type index_d$8_Reschedule = Reschedule;
24445
- type index_d$8_RestockSideEffects = RestockSideEffects;
24446
24307
  type index_d$8_SavedPaymentMethod = SavedPaymentMethod;
24447
24308
  type index_d$8_SearchOrdersOptions = SearchOrdersOptions;
24448
24309
  type index_d$8_SearchOrdersRequest = SearchOrdersRequest;
@@ -24465,7 +24326,7 @@ type index_d$8_SendMerchantOrderReceivedPushResponse = SendMerchantOrderReceived
24465
24326
  type index_d$8_SeoData = SeoData;
24466
24327
  type index_d$8_ShippingAddressEdited = ShippingAddressEdited;
24467
24328
  type index_d$8_ShippingConfirmationEmailSent = ShippingConfirmationEmailSent;
24468
- type index_d$8_ShippingRefundOption = ShippingRefundOption;
24329
+ type index_d$8_ShippingInformationChange = ShippingInformationChange;
24469
24330
  type index_d$8_SourceType = SourceType;
24470
24331
  declare const index_d$8_SourceType: typeof SourceType;
24471
24332
  type index_d$8_StandardDetails = StandardDetails;
@@ -24517,21 +24378,16 @@ type index_d$8_UpdateOrderResponseNonNullableFields = UpdateOrderResponseNonNull
24517
24378
  type index_d$8_UpdateOrderShippingAddressRequest = UpdateOrderShippingAddressRequest;
24518
24379
  type index_d$8_UpdateOrderShippingAddressResponse = UpdateOrderShippingAddressResponse;
24519
24380
  type index_d$8_UserDataResponse = UserDataResponse;
24520
- type index_d$8_V1AdditionalFeeRefund = V1AdditionalFeeRefund;
24521
24381
  type index_d$8_V1BulkMarkOrdersAsPaidRequest = V1BulkMarkOrdersAsPaidRequest;
24522
24382
  type index_d$8_V1BulkMarkOrdersAsPaidResponse = V1BulkMarkOrdersAsPaidResponse;
24523
24383
  type index_d$8_V1CreatePaymentGatewayOrderRequest = V1CreatePaymentGatewayOrderRequest;
24524
24384
  type index_d$8_V1CreatePaymentGatewayOrderResponse = V1CreatePaymentGatewayOrderResponse;
24525
24385
  type index_d$8_V1LineItemDelta = V1LineItemDelta;
24526
24386
  type index_d$8_V1LineItemDeltaDeltaOneOf = V1LineItemDeltaDeltaOneOf;
24527
- type index_d$8_V1LineItemRefund = V1LineItemRefund;
24528
24387
  type index_d$8_V1MarkOrderAsPaidRequest = V1MarkOrderAsPaidRequest;
24529
24388
  type index_d$8_V1MarkOrderAsPaidResponse = V1MarkOrderAsPaidResponse;
24530
- type index_d$8_V1PaymentRefund = V1PaymentRefund;
24531
- type index_d$8_V1RefundDetails = V1RefundDetails;
24532
- type index_d$8_V1RefundSideEffects = V1RefundSideEffects;
24533
24389
  type index_d$8_V1RestockItem = V1RestockItem;
24534
- type index_d$8_V1ShippingRefund = V1ShippingRefund;
24390
+ type index_d$8_V1ShippingInformation = V1ShippingInformation;
24535
24391
  type index_d$8_Value = Value;
24536
24392
  type index_d$8_ValueType = ValueType;
24537
24393
  declare const index_d$8_ValueType: typeof ValueType;
@@ -24553,7 +24409,7 @@ declare const index_d$8_onOrderPaymentStatusUpdated: typeof onOrderPaymentStatus
24553
24409
  declare const index_d$8_searchOrders: typeof searchOrders;
24554
24410
  declare const index_d$8_updateOrder: typeof updateOrder;
24555
24411
  declare namespace index_d$8 {
24556
- export { type ActionEvent$6 as ActionEvent, ActionType$1 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$1 as AdditionalFeeRefund, type index_d$8_AdditionalFeeRefundOption as AdditionalFeeRefundOption, 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$1 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$1 as AuthorizationActionFailureDetails, type AuthorizationCapture$1 as AuthorizationCapture, AuthorizationCaptureStatus$1 as AuthorizationCaptureStatus, type AuthorizationDetails$1 as AuthorizationDetails, type AuthorizationVoid$1 as AuthorizationVoid, AuthorizationVoidStatus$1 as AuthorizationVoidStatus, type index_d$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$8_Balance as Balance, type index_d$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type index_d$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$8_BulkOrderResult as BulkOrderResult, type index_d$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, 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_CalculateRefundV1Request as CalculateRefundV1Request, type index_d$8_CalculateRefundV1Response as CalculateRefundV1Response, type index_d$8_CalculateRefundV2Request as CalculateRefundV2Request, type index_d$8_CalculateRefundV2Response as CalculateRefundV2Response, type index_d$8_CalculateRefundV2ResponseStatusOneOf as CalculateRefundV2ResponseStatusOneOf, type index_d$8_CalculatedAdditionalFeeRefund as CalculatedAdditionalFeeRefund, type index_d$8_CalculatedLineItemRefund as CalculatedLineItemRefund, type index_d$8_CalculatedRefundDetails as CalculatedRefundDetails, type index_d$8_CalculatedRefundNotAvailableStatus as CalculatedRefundNotAvailableStatus, type index_d$8_CalculatedRefundSummary as CalculatedRefundSummary, type index_d$8_CalculatedShippingRefund as CalculatedShippingRefund, type index_d$8_CalculatedTax as CalculatedTax, type index_d$8_CalculatedTaxes as CalculatedTaxes, type index_d$8_CalculationError as CalculationError, type index_d$8_CalculationErrorItemOneOf as CalculationErrorItemOneOf, 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 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$1 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 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_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 Details$1 as Details, type DetailsKindOneOf$1 as DetailsKindOneOf, 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_Email as Email, type index_d$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type index_d$8_ExternalUriMapping as ExternalUriMapping, type FieldViolation$1 as FieldViolation, 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_GetRefundOptionsRequest as GetRefundOptionsRequest, type index_d$8_GetRefundOptionsResponse as GetRefundOptionsResponse, 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$1 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$1 as LineItemRefund, type index_d$8_LineItemRefundOption as LineItemRefundOption, 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, type index_d$8_ManuallyRefundablePaymentStatus as ManuallyRefundablePaymentStatus, 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$2 as MembershipName, type MembershipPaymentDetails$1 as MembershipPaymentDetails, MembershipPaymentStatus$1 as MembershipPaymentStatus, type index_d$8_MembershipPaymentSummary as MembershipPaymentSummary, 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, type index_d$8_MonetaryPaymentSummary as MonetaryPaymentSummary, index_d$8_Namespace as Namespace, type index_d$8_NewExchangeOrderCreated as NewExchangeOrderCreated, type index_d$8_NonRefundablePaymentStatus as NonRefundablePaymentStatus, NonRefundableReason$1 as NonRefundableReason, type index_d$8_NotificationSideEffects as NotificationSideEffects, 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$1 as OrderTransactions, type index_d$8_OrdersExperiments as OrdersExperiments, type index_d$8_OrdersV1RestockItem as OrdersV1RestockItem, type Payment$1 as Payment, type index_d$8_PaymentCapture as PaymentCapture, index_d$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, type index_d$8_PaymentInfo as PaymentInfo, type index_d$8_PaymentInfoPaymentMethodDetailsOneOf as PaymentInfoPaymentMethodDetailsOneOf, type index_d$8_PaymentInfoSummaryOneOf as PaymentInfoSummaryOneOf, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$1 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$8_PaymentRefundOption as PaymentRefundOption, type index_d$8_PaymentRefundOptionStatusOneOf as PaymentRefundOptionStatusOneOf, PaymentStatus$1 as PaymentStatus, type index_d$8_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$8_Payments as Payments, type index_d$8_PaymentsSummary as PaymentsSummary, type PaymentsUpdated$1 as PaymentsUpdated, 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_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, 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$1 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$1 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$1 as RefundDetails, type RefundItem$1 as RefundItem, type index_d$8_RefundRequest as RefundRequest, type index_d$8_RefundResponse as RefundResponse, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$1 as RefundStatus, type RefundTransaction$1 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, index_d$8_RefundabilityManuallyRefundableReason as RefundabilityManuallyRefundableReason, index_d$8_RefundabilityNonRefundableReason as RefundabilityNonRefundableReason, RefundableStatus$1 as RefundableStatus, type RegularPaymentDetails$1 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, type index_d$8_RestockSideEffects as RestockSideEffects, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, RuleType$1 as RuleType, type index_d$8_SavedPaymentMethod as SavedPaymentMethod, type ScheduledAction$1 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_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 ShippingPrice$1 as ShippingPrice, type ShippingRefund$1 as ShippingRefund, type index_d$8_ShippingRefundOption as ShippingRefundOption, 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 SystemError$1 as SystemError, type index_d$8_TagList as TagList, type index_d$8_Tags as Tags, type index_d$8_Task as Task, type index_d$8_TaskAction as TaskAction, type index_d$8_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type index_d$8_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type index_d$8_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, 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$1 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_UserDataResponse as UserDataResponse, type index_d$8_V1AdditionalFeeRefund as V1AdditionalFeeRefund, 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_V1LineItemRefund as V1LineItemRefund, type index_d$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$8_V1PaymentRefund as V1PaymentRefund, type index_d$8_V1RefundDetails as V1RefundDetails, type index_d$8_V1RefundSideEffects as V1RefundSideEffects, type index_d$8_V1RestockItem as V1RestockItem, type index_d$8_V1ShippingRefund as V1ShippingRefund, type ValidationError$1 as ValidationError, 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, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, index_d$8_bulkUpdateOrders as bulkUpdateOrders, index_d$8_cancelOrder as cancelOrder, index_d$8_createOrder as createOrder, index_d$8_getOrder as getOrder, 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_searchOrders as searchOrders, index_d$8_updateOrder as updateOrder };
24412
+ export { type ActionEvent$6 as ActionEvent, ActionType$1 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$1 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$1 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$1 as AuthorizationActionFailureDetails, type AuthorizationCapture$1 as AuthorizationCapture, AuthorizationCaptureStatus$1 as AuthorizationCaptureStatus, type AuthorizationDetails$1 as AuthorizationDetails, type AuthorizationVoid$1 as AuthorizationVoid, AuthorizationVoidStatus$1 as AuthorizationVoidStatus, type index_d$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$8_Balance as Balance, type index_d$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type index_d$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$8_BulkOrderResult as BulkOrderResult, type index_d$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, 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 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$1 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type CursorSearch$1 as CursorSearch, type CursorSearchPagingMethodOneOf$1 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_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_Email as Email, type index_d$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type index_d$8_ExternalUriMapping as ExternalUriMapping, type index_d$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type index_d$8_FullAddressContactDetails as FullAddressContactDetails, type index_d$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$8_GetOrderRequest as GetOrderRequest, type index_d$8_GetOrderResponse as GetOrderResponse, type index_d$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type 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$1 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$1 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$2 as MembershipName, type MembershipPaymentDetails$1 as MembershipPaymentDetails, MembershipPaymentStatus$1 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$1 as OrderTransactions, type index_d$8_OrdersExperiments as OrdersExperiments, type Payment$1 as Payment, type index_d$8_PaymentCapture as PaymentCapture, index_d$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$1 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, PaymentStatus$1 as PaymentStatus, type index_d$8_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$8_Payments as Payments, type PaymentsUpdated$1 as PaymentsUpdated, 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_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, 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$1 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$1 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$1 as RefundDetails, type RefundItem$1 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$1 as RefundStatus, type RefundTransaction$1 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type RegularPaymentDetails$1 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, 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, type ScheduledAction$1 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_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$1 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, index_d$8_SourceType as SourceType, type index_d$8_StandardDetails as StandardDetails, index_d$8_State as State, type StreetAddress$3 as StreetAddress, type index_d$8_Subdivision as Subdivision, index_d$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type index_d$8_TagList as TagList, type index_d$8_Tags as Tags, type index_d$8_Task as Task, type index_d$8_TaskAction as TaskAction, type index_d$8_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type index_d$8_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type index_d$8_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, 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$1 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_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_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, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, index_d$8_bulkUpdateOrders as bulkUpdateOrders, index_d$8_cancelOrder as cancelOrder, index_d$8_createOrder as createOrder, index_d$8_getOrder as getOrder, 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_searchOrders as searchOrders, index_d$8_updateOrder as updateOrder };
24557
24413
  }
24558
24414
 
24559
24415
  interface OrderPaymentRequest {