@wix/ecom 1.0.637 → 1.0.638

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/ecom",
3
- "version": "1.0.637",
3
+ "version": "1.0.638",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -23,12 +23,12 @@
23
23
  "@wix/ecom_additional-fees": "1.0.9",
24
24
  "@wix/ecom_back-in-stock-notifications": "1.0.35",
25
25
  "@wix/ecom_back-in-stock-settings": "1.0.22",
26
- "@wix/ecom_cart": "1.0.47",
27
- "@wix/ecom_checkout": "1.0.51",
26
+ "@wix/ecom_cart": "1.0.48",
27
+ "@wix/ecom_checkout": "1.0.52",
28
28
  "@wix/ecom_checkout-settings": "1.0.33",
29
- "@wix/ecom_checkout-templates": "1.0.53",
29
+ "@wix/ecom_checkout-templates": "1.0.54",
30
30
  "@wix/ecom_currencies": "1.0.23",
31
- "@wix/ecom_current-cart": "1.0.47",
31
+ "@wix/ecom_current-cart": "1.0.48",
32
32
  "@wix/ecom_custom-triggers": "1.0.7",
33
33
  "@wix/ecom_discount-rules": "1.0.35",
34
34
  "@wix/ecom_order-fulfillments": "1.0.30",
@@ -64,5 +64,5 @@
64
64
  "fqdn": ""
65
65
  }
66
66
  },
67
- "falconPackageHash": "41195deb6b7d4bfc0b486f1ac1c55fed4d182eb7f593e62df319d32a"
67
+ "falconPackageHash": "76d56dc041f581707a1dfcbaed10338b79efc498aac64e7e3522b16a"
68
68
  }
@@ -8669,6 +8669,18 @@ interface CustomSettings$1 {
8669
8669
  * Default: `false`
8670
8670
  */
8671
8671
  lockCouponCode?: boolean;
8672
+ /**
8673
+ * Whether to disable policy agreement checkout in the checkout page
8674
+ *
8675
+ * Default: `false`
8676
+ */
8677
+ disabledPolicyAgreementCheckbox?: boolean;
8678
+ /**
8679
+ * Whether to disable manual payment option for this checkout.
8680
+ *
8681
+ * Default: `false`
8682
+ */
8683
+ disabledManualPayment?: boolean;
8672
8684
  }
8673
8685
  interface GetCheckoutResponse {
8674
8686
  /** The requested checkout. */
@@ -9471,6 +9483,8 @@ interface GetCheckoutResponseNonNullableFields {
9471
9483
  customSettings?: {
9472
9484
  lockGiftCard: boolean;
9473
9485
  lockCouponCode: boolean;
9486
+ disabledPolicyAgreementCheckbox: boolean;
9487
+ disabledManualPayment: boolean;
9474
9488
  };
9475
9489
  };
9476
9490
  }
@@ -10176,6 +10190,8 @@ interface RemoveCouponResponseNonNullableFields {
10176
10190
  customSettings?: {
10177
10191
  lockGiftCard: boolean;
10178
10192
  lockCouponCode: boolean;
10193
+ disabledPolicyAgreementCheckbox: boolean;
10194
+ disabledManualPayment: boolean;
10179
10195
  };
10180
10196
  };
10181
10197
  }
@@ -10878,6 +10894,8 @@ interface RemoveGiftCardResponseNonNullableFields {
10878
10894
  customSettings?: {
10879
10895
  lockGiftCard: boolean;
10880
10896
  lockCouponCode: boolean;
10897
+ disabledPolicyAgreementCheckbox: boolean;
10898
+ disabledManualPayment: boolean;
10881
10899
  };
10882
10900
  };
10883
10901
  }
@@ -11580,6 +11598,8 @@ interface RemoveOverrideCheckoutUrlResponseNonNullableFields {
11580
11598
  customSettings?: {
11581
11599
  lockGiftCard: boolean;
11582
11600
  lockCouponCode: boolean;
11601
+ disabledPolicyAgreementCheckbox: boolean;
11602
+ disabledManualPayment: boolean;
11583
11603
  };
11584
11604
  };
11585
11605
  }
@@ -12282,6 +12302,8 @@ interface AddToCheckoutResponseNonNullableFields {
12282
12302
  customSettings?: {
12283
12303
  lockGiftCard: boolean;
12284
12304
  lockCouponCode: boolean;
12305
+ disabledPolicyAgreementCheckbox: boolean;
12306
+ disabledManualPayment: boolean;
12285
12307
  };
12286
12308
  };
12287
12309
  }
@@ -12984,6 +13006,8 @@ interface RemoveLineItemsResponseNonNullableFields {
12984
13006
  customSettings?: {
12985
13007
  lockGiftCard: boolean;
12986
13008
  lockCouponCode: boolean;
13009
+ disabledPolicyAgreementCheckbox: boolean;
13010
+ disabledManualPayment: boolean;
12987
13011
  };
12988
13012
  };
12989
13013
  }
@@ -13690,6 +13714,8 @@ interface UpdateLineItemsQuantityResponseNonNullableFields {
13690
13714
  customSettings?: {
13691
13715
  lockGiftCard: boolean;
13692
13716
  lockCouponCode: boolean;
13717
+ disabledPolicyAgreementCheckbox: boolean;
13718
+ disabledManualPayment: boolean;
13693
13719
  };
13694
13720
  };
13695
13721
  }
@@ -14649,6 +14675,8 @@ declare function createCheckout$1(httpClient: HttpClient): (options?: CreateChec
14649
14675
  customSettings?: {
14650
14676
  lockGiftCard: boolean;
14651
14677
  lockCouponCode: boolean;
14678
+ disabledPolicyAgreementCheckbox: boolean;
14679
+ disabledManualPayment: boolean;
14652
14680
  } | undefined;
14653
14681
  }>;
14654
14682
  declare function getCheckout$1(httpClient: HttpClient): (_id: string) => Promise<GetCheckoutResponse & GetCheckoutResponseNonNullableFields>;
@@ -15351,6 +15379,8 @@ declare function updateCheckout$1(httpClient: HttpClient): (_id: string | null,
15351
15379
  customSettings?: {
15352
15380
  lockGiftCard: boolean;
15353
15381
  lockCouponCode: boolean;
15382
+ disabledPolicyAgreementCheckbox: boolean;
15383
+ disabledManualPayment: boolean;
15354
15384
  } | undefined;
15355
15385
  }>;
15356
15386
  declare function removeCoupon$1(httpClient: HttpClient): (_id: string) => Promise<RemoveCouponResponse & RemoveCouponResponseNonNullableFields>;
@@ -4869,6 +4869,9 @@ interface DomainEventBodyOneOf$8 {
4869
4869
  interface EntityCreatedEvent$8 {
4870
4870
  entity?: string;
4871
4871
  }
4872
+ interface UndeleteInfo$4 {
4873
+ deletedDate?: Date;
4874
+ }
4872
4875
  interface EntityUpdatedEvent$8 {
4873
4876
  /**
4874
4877
  * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
@@ -7277,7 +7280,7 @@ declare const index_d$9_estimateTotals: typeof estimateTotals;
7277
7280
  declare const index_d$9_getCart: typeof getCart;
7278
7281
  declare const index_d$9_updateCart: typeof updateCart;
7279
7282
  declare namespace index_d$9 {
7280
- export { type ActionEvent$8 as ActionEvent, type index_d$9_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$4 as AdditionalFee, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$4 as AddressWithContact, type AggregatedTaxBreakdown$3 as AggregatedTaxBreakdown, type ApplicationError$6 as ApplicationError, type AppliedDiscount$4 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$4 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$3 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$8 as BaseEventMetadata, type BuyerInfo$6 as BuyerInfo, type BuyerInfoIdOneOf$4 as BuyerInfoIdOneOf, type CalculatedLineItem$1 as CalculatedLineItem, type CalculationErrors$3 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$3 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$3 as CarrierError, type CarrierErrors$3 as CarrierErrors, type CarrierServiceOption$3 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 CartUpdatedEnvelope$1 as CartUpdatedEnvelope, type CatalogOverrideFields$3 as CatalogOverrideFields, type CatalogReference$4 as CatalogReference, ChannelType$5 as ChannelType, ChargeType$3 as ChargeType, type Color$4 as Color, type Coupon$4 as Coupon, type index_d$9_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$3 as CustomLineItem, type DeleteCartRequest$1 as DeleteCartRequest, type DeleteCartResponse$1 as DeleteCartResponse, type DeleteCurrentCartRequest$1 as DeleteCurrentCartRequest, type DeliveryLogistics$4 as DeliveryLogistics, type DeliveryTimeSlot$4 as DeliveryTimeSlot, type Description$3 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$4 as DiscountRule, type DiscountRuleName$4 as DiscountRuleName, DiscountType$4 as DiscountType, type DomainEvent$8 as DomainEvent, type DomainEventBodyOneOf$8 as DomainEventBodyOneOf, type Empty$4 as Empty, type EntityCreatedEvent$8 as EntityCreatedEvent, type EntityDeletedEvent$8 as EntityDeletedEvent, type EntityUpdatedEvent$8 as EntityUpdatedEvent, type EstimateCurrentCartTotalsRequest$1 as EstimateCurrentCartTotalsRequest, type index_d$9_EstimateTotalsOptions as EstimateTotalsOptions, type EstimateTotalsRequest$1 as EstimateTotalsRequest, type EstimateTotalsResponse$1 as EstimateTotalsResponse, type EstimateTotalsResponseNonNullableFields$1 as EstimateTotalsResponseNonNullableFields, type EventMetadata$8 as EventMetadata, type ExtendedFields$4 as ExtendedFields, FallbackReason$3 as FallbackReason, type FieldViolation$4 as FieldViolation, FileType$3 as FileType, type FullAddressContactDetails$4 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$4 as GiftCard, type Group$3 as Group, type HostSelectedMembership$1 as HostSelectedMembership, type IdentificationData$8 as IdentificationData, type IdentificationDataIdOneOf$8 as IdentificationDataIdOneOf, type InvalidMembership$3 as InvalidMembership, type ItemAvailabilityInfo$3 as ItemAvailabilityInfo, ItemAvailabilityStatus$3 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$5 as LineItem, type LineItemDiscount$4 as LineItemDiscount, type LineItemPricesData$1 as LineItemPricesData, type LineItemQuantityUpdate$2 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$4 as MerchantDiscount, type MerchantDiscountInput$2 as MerchantDiscountInput, type MessageEnvelope$8 as MessageEnvelope, type MultiCurrencyPrice$3 as MultiCurrencyPrice, NameInLineItem$3 as NameInLineItem, NameInOther$3 as NameInOther, type Other$3 as Other, type OtherCharge$3 as OtherCharge, PaymentOptionType$4 as PaymentOptionType, type PhysicalProperties$4 as PhysicalProperties, type PickupDetails$5 as PickupDetails, PickupMethod$4 as PickupMethod, type PlainTextValue$4 as PlainTextValue, type PriceDescription$4 as PriceDescription, type PriceSummary$4 as PriceSummary, type ProductName$4 as ProductName, RateType$3 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, 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$3 as Severity, type ShippingInformation$2 as ShippingInformation, type ShippingOption$3 as ShippingOption, type ShippingPrice$4 as ShippingPrice, type ShippingRegion$4 as ShippingRegion, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$5 as SubscriptionFrequency, type SubscriptionOptionInfo$4 as SubscriptionOptionInfo, type SubscriptionSettings$5 as SubscriptionSettings, type SystemError$4 as SystemError, type Target$3 as Target, type TargetLineItem$3 as TargetLineItem, type TargetTargetTypeOneOf$3 as TargetTargetTypeOneOf, type TaxBreakdown$3 as TaxBreakdown, type TaxCalculationDetails$3 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$3 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$3 as TaxRateBreakdown, type TaxSummary$4 as TaxSummary, type Title$3 as Title, type index_d$9_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$4 as ValidationError, type VatId$5 as VatId, VatType$5 as VatType, type Violation$3 as Violation, WebhookIdentityType$8 as WebhookIdentityType, WeightUnit$5 as WeightUnit, __metadata$9 as __metadata, index_d$9_addToCart as addToCart, index_d$9_createCart as createCart, createCheckout$1 as createCheckout, index_d$9_deleteCart as deleteCart, index_d$9_estimateTotals as estimateTotals, index_d$9_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$9_updateCart as updateCart, updateLineItemsQuantity$1 as updateLineItemsQuantity };
7283
+ export { type ActionEvent$8 as ActionEvent, type index_d$9_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$4 as AdditionalFee, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$4 as AddressWithContact, type AggregatedTaxBreakdown$3 as AggregatedTaxBreakdown, type ApplicationError$6 as ApplicationError, type AppliedDiscount$4 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$4 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$3 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$8 as BaseEventMetadata, type BuyerInfo$6 as BuyerInfo, type BuyerInfoIdOneOf$4 as BuyerInfoIdOneOf, type CalculatedLineItem$1 as CalculatedLineItem, type CalculationErrors$3 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$3 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$3 as CarrierError, type CarrierErrors$3 as CarrierErrors, type CarrierServiceOption$3 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 CartUpdatedEnvelope$1 as CartUpdatedEnvelope, type CatalogOverrideFields$3 as CatalogOverrideFields, type CatalogReference$4 as CatalogReference, ChannelType$5 as ChannelType, ChargeType$3 as ChargeType, type Color$4 as Color, type Coupon$4 as Coupon, type index_d$9_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$3 as CustomLineItem, type DeleteCartRequest$1 as DeleteCartRequest, type DeleteCartResponse$1 as DeleteCartResponse, type DeleteCurrentCartRequest$1 as DeleteCurrentCartRequest, type DeliveryLogistics$4 as DeliveryLogistics, type DeliveryTimeSlot$4 as DeliveryTimeSlot, type Description$3 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$4 as DiscountRule, type DiscountRuleName$4 as DiscountRuleName, DiscountType$4 as DiscountType, type DomainEvent$8 as DomainEvent, type DomainEventBodyOneOf$8 as DomainEventBodyOneOf, type Empty$4 as Empty, type EntityCreatedEvent$8 as EntityCreatedEvent, type EntityDeletedEvent$8 as EntityDeletedEvent, type EntityUpdatedEvent$8 as EntityUpdatedEvent, type EstimateCurrentCartTotalsRequest$1 as EstimateCurrentCartTotalsRequest, type index_d$9_EstimateTotalsOptions as EstimateTotalsOptions, type EstimateTotalsRequest$1 as EstimateTotalsRequest, type EstimateTotalsResponse$1 as EstimateTotalsResponse, type EstimateTotalsResponseNonNullableFields$1 as EstimateTotalsResponseNonNullableFields, type EventMetadata$8 as EventMetadata, type ExtendedFields$4 as ExtendedFields, FallbackReason$3 as FallbackReason, type FieldViolation$4 as FieldViolation, FileType$3 as FileType, type FullAddressContactDetails$4 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$4 as GiftCard, type Group$3 as Group, type HostSelectedMembership$1 as HostSelectedMembership, type IdentificationData$8 as IdentificationData, type IdentificationDataIdOneOf$8 as IdentificationDataIdOneOf, type InvalidMembership$3 as InvalidMembership, type ItemAvailabilityInfo$3 as ItemAvailabilityInfo, ItemAvailabilityStatus$3 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$5 as LineItem, type LineItemDiscount$4 as LineItemDiscount, type LineItemPricesData$1 as LineItemPricesData, type LineItemQuantityUpdate$2 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$4 as MerchantDiscount, type MerchantDiscountInput$2 as MerchantDiscountInput, type MessageEnvelope$8 as MessageEnvelope, type MultiCurrencyPrice$3 as MultiCurrencyPrice, NameInLineItem$3 as NameInLineItem, NameInOther$3 as NameInOther, type Other$3 as Other, type OtherCharge$3 as OtherCharge, PaymentOptionType$4 as PaymentOptionType, type PhysicalProperties$4 as PhysicalProperties, type PickupDetails$5 as PickupDetails, PickupMethod$4 as PickupMethod, type PlainTextValue$4 as PlainTextValue, type PriceDescription$4 as PriceDescription, type PriceSummary$4 as PriceSummary, type ProductName$4 as ProductName, RateType$3 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, 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$3 as Severity, type ShippingInformation$2 as ShippingInformation, type ShippingOption$3 as ShippingOption, type ShippingPrice$4 as ShippingPrice, type ShippingRegion$4 as ShippingRegion, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$5 as SubscriptionFrequency, type SubscriptionOptionInfo$4 as SubscriptionOptionInfo, type SubscriptionSettings$5 as SubscriptionSettings, type SystemError$4 as SystemError, type Target$3 as Target, type TargetLineItem$3 as TargetLineItem, type TargetTargetTypeOneOf$3 as TargetTargetTypeOneOf, type TaxBreakdown$3 as TaxBreakdown, type TaxCalculationDetails$3 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$3 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$3 as TaxRateBreakdown, type TaxSummary$4 as TaxSummary, type Title$3 as Title, type UndeleteInfo$4 as UndeleteInfo, type index_d$9_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$4 as ValidationError, type VatId$5 as VatId, VatType$5 as VatType, type Violation$3 as Violation, WebhookIdentityType$8 as WebhookIdentityType, WeightUnit$5 as WeightUnit, __metadata$9 as __metadata, index_d$9_addToCart as addToCart, index_d$9_createCart as createCart, createCheckout$1 as createCheckout, index_d$9_deleteCart as deleteCart, index_d$9_estimateTotals as estimateTotals, index_d$9_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$9_updateCart as updateCart, updateLineItemsQuantity$1 as updateLineItemsQuantity };
7281
7284
  }
7282
7285
 
7283
7286
  interface Cart {
@@ -8832,6 +8835,9 @@ interface DomainEventBodyOneOf$7 {
8832
8835
  interface EntityCreatedEvent$7 {
8833
8836
  entity?: string;
8834
8837
  }
8838
+ interface UndeleteInfo$3 {
8839
+ deletedDate?: Date;
8840
+ }
8835
8841
  interface EntityUpdatedEvent$7 {
8836
8842
  /**
8837
8843
  * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
@@ -11079,7 +11085,7 @@ declare const index_d$8_removeLineItemsFromCurrentCart: typeof removeLineItemsFr
11079
11085
  declare const index_d$8_updateCurrentCart: typeof updateCurrentCart;
11080
11086
  declare const index_d$8_updateCurrentCartLineItemQuantity: typeof updateCurrentCartLineItemQuantity;
11081
11087
  declare namespace index_d$8 {
11082
- export { type ActionEvent$7 as ActionEvent, type index_d$8_AddToCartRequest as AddToCartRequest, type index_d$8_AddToCartResponse as AddToCartResponse, type index_d$8_AddToCartResponseNonNullableFields as AddToCartResponseNonNullableFields, type index_d$8_AddToCurrentCartAndEstimateTotalsRequest as AddToCurrentCartAndEstimateTotalsRequest, type index_d$8_AddToCurrentCartOptions as AddToCurrentCartOptions, type index_d$8_AddToCurrentCartRequest as AddToCurrentCartRequest, type AdditionalFee$3 as AdditionalFee, type Address$4 as Address, type AddressLocation$3 as AddressLocation, type AddressWithContact$3 as AddressWithContact, type AggregatedTaxBreakdown$2 as AggregatedTaxBreakdown, type ApplicationError$5 as ApplicationError, type AppliedDiscount$3 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$3 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$2 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$7 as BaseEventMetadata, type BuyerInfo$5 as BuyerInfo, type BuyerInfoIdOneOf$3 as BuyerInfoIdOneOf, type index_d$8_CalculatedLineItem as CalculatedLineItem, type CalculationErrors$2 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$2 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$2 as CarrierError, type CarrierErrors$2 as CarrierErrors, type CarrierServiceOption$2 as CarrierServiceOption, type index_d$8_Cart as Cart, type index_d$8_CartCreatedEnvelope as CartCreatedEnvelope, type index_d$8_CartDeletedEnvelope as CartDeletedEnvelope, type index_d$8_CartDiscount as CartDiscount, type index_d$8_CartDiscountDiscountSourceOneOf as CartDiscountDiscountSourceOneOf, type index_d$8_CartUpdatedEnvelope as CartUpdatedEnvelope, type CatalogOverrideFields$2 as CatalogOverrideFields, type CatalogReference$3 as CatalogReference, ChannelType$4 as ChannelType, ChargeType$2 as ChargeType, type Color$3 as Color, type Coupon$3 as Coupon, type index_d$8_CreateCartRequest as CreateCartRequest, type index_d$8_CreateCartResponse as CreateCartResponse, type index_d$8_CreateCartResponseNonNullableFields as CreateCartResponseNonNullableFields, type index_d$8_CreateCheckoutFromCurrentCartOptions as CreateCheckoutFromCurrentCartOptions, type index_d$8_CreateCheckoutFromCurrentCartRequest as CreateCheckoutFromCurrentCartRequest, type CreateCheckoutRequest$1 as CreateCheckoutRequest, type CreateCheckoutResponse$1 as CreateCheckoutResponse, type CreateCheckoutResponseNonNullableFields$1 as CreateCheckoutResponseNonNullableFields, type CustomLineItem$2 as CustomLineItem, type index_d$8_DeleteCartRequest as DeleteCartRequest, type index_d$8_DeleteCartResponse as DeleteCartResponse, type index_d$8_DeleteCurrentCartRequest as DeleteCurrentCartRequest, type DeliveryLogistics$3 as DeliveryLogistics, type DeliveryTimeSlot$3 as DeliveryTimeSlot, type Description$2 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 DiscountRule$3 as DiscountRule, type DiscountRuleName$3 as DiscountRuleName, DiscountType$3 as DiscountType, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type Empty$3 as Empty, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type index_d$8_EstimateCurrentCartTotalsOptions as EstimateCurrentCartTotalsOptions, type index_d$8_EstimateCurrentCartTotalsRequest as EstimateCurrentCartTotalsRequest, type index_d$8_EstimateTotalsRequest as EstimateTotalsRequest, type index_d$8_EstimateTotalsResponse as EstimateTotalsResponse, type index_d$8_EstimateTotalsResponseNonNullableFields as EstimateTotalsResponseNonNullableFields, type EventMetadata$7 as EventMetadata, type ExtendedFields$3 as ExtendedFields, FallbackReason$2 as FallbackReason, type FieldViolation$3 as FieldViolation, FileType$2 as FileType, type FullAddressContactDetails$3 as FullAddressContactDetails, type index_d$8_GetCartByCheckoutIdRequest as GetCartByCheckoutIdRequest, type index_d$8_GetCartByCheckoutIdResponse as GetCartByCheckoutIdResponse, type index_d$8_GetCartRequest as GetCartRequest, type index_d$8_GetCartResponse as GetCartResponse, type index_d$8_GetCartResponseNonNullableFields as GetCartResponseNonNullableFields, type index_d$8_GetCurrentCartRequest as GetCurrentCartRequest, type index_d$8_GetCurrentCartResponse as GetCurrentCartResponse, type index_d$8_GetCurrentCartResponseNonNullableFields as GetCurrentCartResponseNonNullableFields, type GiftCard$3 as GiftCard, type Group$2 as Group, type index_d$8_HostSelectedMembership as HostSelectedMembership, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type InvalidMembership$2 as InvalidMembership, type ItemAvailabilityInfo$2 as ItemAvailabilityInfo, ItemAvailabilityStatus$2 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$4 as LineItem, type LineItemDiscount$3 as LineItemDiscount, type index_d$8_LineItemPricesData as LineItemPricesData, type LineItemQuantityUpdate$1 as LineItemQuantityUpdate, ManualCalculationReason$2 as ManualCalculationReason, type Membership$2 as Membership, type MembershipName$4 as MembershipName, type MembershipOptions$2 as MembershipOptions, type MembershipPaymentCredits$2 as MembershipPaymentCredits, type MerchantDiscount$3 as MerchantDiscount, type MerchantDiscountInput$1 as MerchantDiscountInput, type MessageEnvelope$7 as MessageEnvelope, type MultiCurrencyPrice$2 as MultiCurrencyPrice, NameInLineItem$2 as NameInLineItem, NameInOther$2 as NameInOther, type Other$2 as Other, type OtherCharge$2 as OtherCharge, PaymentOptionType$3 as PaymentOptionType, type PhysicalProperties$3 as PhysicalProperties, type PickupDetails$4 as PickupDetails, PickupMethod$3 as PickupMethod, type PlainTextValue$3 as PlainTextValue, type PriceDescription$3 as PriceDescription, type PriceSummary$3 as PriceSummary, type ProductName$3 as ProductName, RateType$2 as RateType, type index_d$8_RemoveCouponFromCurrentCartRequest as RemoveCouponFromCurrentCartRequest, type RemoveCouponRequest$1 as RemoveCouponRequest, type RemoveCouponResponse$1 as RemoveCouponResponse, type RemoveCouponResponseNonNullableFields$1 as RemoveCouponResponseNonNullableFields, type index_d$8_RemoveLineItemsFromCurrentCartRequest as RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsRequest$1 as RemoveLineItemsRequest, type RemoveLineItemsResponse$1 as RemoveLineItemsResponse, type RemoveLineItemsResponseNonNullableFields$1 as RemoveLineItemsResponseNonNullableFields, 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 index_d$8_SelectedShippingOption as SelectedShippingOption, type ServiceProperties$3 as ServiceProperties, Severity$2 as Severity, type ShippingInformation$1 as ShippingInformation, type ShippingOption$2 as ShippingOption, type ShippingPrice$3 as ShippingPrice, type ShippingRegion$3 as ShippingRegion, type StreetAddress$3 as StreetAddress, SubscriptionFrequency$4 as SubscriptionFrequency, type SubscriptionOptionInfo$3 as SubscriptionOptionInfo, type SubscriptionSettings$4 as SubscriptionSettings, type SystemError$3 as SystemError, type Target$2 as Target, type TargetLineItem$2 as TargetLineItem, type TargetTargetTypeOneOf$2 as TargetTargetTypeOneOf, type TaxBreakdown$2 as TaxBreakdown, type TaxCalculationDetails$2 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$2 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$2 as TaxRateBreakdown, type TaxSummary$3 as TaxSummary, type Title$2 as Title, type index_d$8_UpdateCartRequest as UpdateCartRequest, type index_d$8_UpdateCartResponse as UpdateCartResponse, type index_d$8_UpdateCartResponseNonNullableFields as UpdateCartResponseNonNullableFields, type index_d$8_UpdateCurrentCartLineItemQuantityRequest as UpdateCurrentCartLineItemQuantityRequest, type index_d$8_UpdateCurrentCartOptions as UpdateCurrentCartOptions, type UpdateLineItemsQuantityRequest$1 as UpdateLineItemsQuantityRequest, type UpdateLineItemsQuantityResponse$1 as UpdateLineItemsQuantityResponse, type UpdateLineItemsQuantityResponseNonNullableFields$1 as UpdateLineItemsQuantityResponseNonNullableFields, type index_d$8_V1Coupon as V1Coupon, type index_d$8_V1MerchantDiscount as V1MerchantDiscount, type ValidationError$3 as ValidationError, type VatId$4 as VatId, VatType$4 as VatType, type Violation$2 as Violation, WebhookIdentityType$7 as WebhookIdentityType, WeightUnit$4 as WeightUnit, __metadata$8 as __metadata, index_d$8_addToCurrentCart as addToCurrentCart, index_d$8_createCheckoutFromCurrentCart as createCheckoutFromCurrentCart, index_d$8_deleteCurrentCart as deleteCurrentCart, index_d$8_estimateCurrentCartTotals as estimateCurrentCartTotals, index_d$8_getCurrentCart as getCurrentCart, index_d$8_onCartCreated as onCartCreated, index_d$8_onCartDeleted as onCartDeleted, index_d$8_onCartUpdated as onCartUpdated, index_d$8_removeCouponFromCurrentCart as removeCouponFromCurrentCart, index_d$8_removeLineItemsFromCurrentCart as removeLineItemsFromCurrentCart, index_d$8_updateCurrentCart as updateCurrentCart, index_d$8_updateCurrentCartLineItemQuantity as updateCurrentCartLineItemQuantity };
11088
+ export { type ActionEvent$7 as ActionEvent, type index_d$8_AddToCartRequest as AddToCartRequest, type index_d$8_AddToCartResponse as AddToCartResponse, type index_d$8_AddToCartResponseNonNullableFields as AddToCartResponseNonNullableFields, type index_d$8_AddToCurrentCartAndEstimateTotalsRequest as AddToCurrentCartAndEstimateTotalsRequest, type index_d$8_AddToCurrentCartOptions as AddToCurrentCartOptions, type index_d$8_AddToCurrentCartRequest as AddToCurrentCartRequest, type AdditionalFee$3 as AdditionalFee, type Address$4 as Address, type AddressLocation$3 as AddressLocation, type AddressWithContact$3 as AddressWithContact, type AggregatedTaxBreakdown$2 as AggregatedTaxBreakdown, type ApplicationError$5 as ApplicationError, type AppliedDiscount$3 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$3 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$2 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$7 as BaseEventMetadata, type BuyerInfo$5 as BuyerInfo, type BuyerInfoIdOneOf$3 as BuyerInfoIdOneOf, type index_d$8_CalculatedLineItem as CalculatedLineItem, type CalculationErrors$2 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$2 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$2 as CarrierError, type CarrierErrors$2 as CarrierErrors, type CarrierServiceOption$2 as CarrierServiceOption, type index_d$8_Cart as Cart, type index_d$8_CartCreatedEnvelope as CartCreatedEnvelope, type index_d$8_CartDeletedEnvelope as CartDeletedEnvelope, type index_d$8_CartDiscount as CartDiscount, type index_d$8_CartDiscountDiscountSourceOneOf as CartDiscountDiscountSourceOneOf, type index_d$8_CartUpdatedEnvelope as CartUpdatedEnvelope, type CatalogOverrideFields$2 as CatalogOverrideFields, type CatalogReference$3 as CatalogReference, ChannelType$4 as ChannelType, ChargeType$2 as ChargeType, type Color$3 as Color, type Coupon$3 as Coupon, type index_d$8_CreateCartRequest as CreateCartRequest, type index_d$8_CreateCartResponse as CreateCartResponse, type index_d$8_CreateCartResponseNonNullableFields as CreateCartResponseNonNullableFields, type index_d$8_CreateCheckoutFromCurrentCartOptions as CreateCheckoutFromCurrentCartOptions, type index_d$8_CreateCheckoutFromCurrentCartRequest as CreateCheckoutFromCurrentCartRequest, type CreateCheckoutRequest$1 as CreateCheckoutRequest, type CreateCheckoutResponse$1 as CreateCheckoutResponse, type CreateCheckoutResponseNonNullableFields$1 as CreateCheckoutResponseNonNullableFields, type CustomLineItem$2 as CustomLineItem, type index_d$8_DeleteCartRequest as DeleteCartRequest, type index_d$8_DeleteCartResponse as DeleteCartResponse, type index_d$8_DeleteCurrentCartRequest as DeleteCurrentCartRequest, type DeliveryLogistics$3 as DeliveryLogistics, type DeliveryTimeSlot$3 as DeliveryTimeSlot, type Description$2 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 DiscountRule$3 as DiscountRule, type DiscountRuleName$3 as DiscountRuleName, DiscountType$3 as DiscountType, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type Empty$3 as Empty, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type index_d$8_EstimateCurrentCartTotalsOptions as EstimateCurrentCartTotalsOptions, type index_d$8_EstimateCurrentCartTotalsRequest as EstimateCurrentCartTotalsRequest, type index_d$8_EstimateTotalsRequest as EstimateTotalsRequest, type index_d$8_EstimateTotalsResponse as EstimateTotalsResponse, type index_d$8_EstimateTotalsResponseNonNullableFields as EstimateTotalsResponseNonNullableFields, type EventMetadata$7 as EventMetadata, type ExtendedFields$3 as ExtendedFields, FallbackReason$2 as FallbackReason, type FieldViolation$3 as FieldViolation, FileType$2 as FileType, type FullAddressContactDetails$3 as FullAddressContactDetails, type index_d$8_GetCartByCheckoutIdRequest as GetCartByCheckoutIdRequest, type index_d$8_GetCartByCheckoutIdResponse as GetCartByCheckoutIdResponse, type index_d$8_GetCartRequest as GetCartRequest, type index_d$8_GetCartResponse as GetCartResponse, type index_d$8_GetCartResponseNonNullableFields as GetCartResponseNonNullableFields, type index_d$8_GetCurrentCartRequest as GetCurrentCartRequest, type index_d$8_GetCurrentCartResponse as GetCurrentCartResponse, type index_d$8_GetCurrentCartResponseNonNullableFields as GetCurrentCartResponseNonNullableFields, type GiftCard$3 as GiftCard, type Group$2 as Group, type index_d$8_HostSelectedMembership as HostSelectedMembership, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, type InvalidMembership$2 as InvalidMembership, type ItemAvailabilityInfo$2 as ItemAvailabilityInfo, ItemAvailabilityStatus$2 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$4 as LineItem, type LineItemDiscount$3 as LineItemDiscount, type index_d$8_LineItemPricesData as LineItemPricesData, type LineItemQuantityUpdate$1 as LineItemQuantityUpdate, ManualCalculationReason$2 as ManualCalculationReason, type Membership$2 as Membership, type MembershipName$4 as MembershipName, type MembershipOptions$2 as MembershipOptions, type MembershipPaymentCredits$2 as MembershipPaymentCredits, type MerchantDiscount$3 as MerchantDiscount, type MerchantDiscountInput$1 as MerchantDiscountInput, type MessageEnvelope$7 as MessageEnvelope, type MultiCurrencyPrice$2 as MultiCurrencyPrice, NameInLineItem$2 as NameInLineItem, NameInOther$2 as NameInOther, type Other$2 as Other, type OtherCharge$2 as OtherCharge, PaymentOptionType$3 as PaymentOptionType, type PhysicalProperties$3 as PhysicalProperties, type PickupDetails$4 as PickupDetails, PickupMethod$3 as PickupMethod, type PlainTextValue$3 as PlainTextValue, type PriceDescription$3 as PriceDescription, type PriceSummary$3 as PriceSummary, type ProductName$3 as ProductName, RateType$2 as RateType, type index_d$8_RemoveCouponFromCurrentCartRequest as RemoveCouponFromCurrentCartRequest, type RemoveCouponRequest$1 as RemoveCouponRequest, type RemoveCouponResponse$1 as RemoveCouponResponse, type RemoveCouponResponseNonNullableFields$1 as RemoveCouponResponseNonNullableFields, type index_d$8_RemoveLineItemsFromCurrentCartRequest as RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsRequest$1 as RemoveLineItemsRequest, type RemoveLineItemsResponse$1 as RemoveLineItemsResponse, type RemoveLineItemsResponseNonNullableFields$1 as RemoveLineItemsResponseNonNullableFields, 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 index_d$8_SelectedShippingOption as SelectedShippingOption, type ServiceProperties$3 as ServiceProperties, Severity$2 as Severity, type ShippingInformation$1 as ShippingInformation, type ShippingOption$2 as ShippingOption, type ShippingPrice$3 as ShippingPrice, type ShippingRegion$3 as ShippingRegion, type StreetAddress$3 as StreetAddress, SubscriptionFrequency$4 as SubscriptionFrequency, type SubscriptionOptionInfo$3 as SubscriptionOptionInfo, type SubscriptionSettings$4 as SubscriptionSettings, type SystemError$3 as SystemError, type Target$2 as Target, type TargetLineItem$2 as TargetLineItem, type TargetTargetTypeOneOf$2 as TargetTargetTypeOneOf, type TaxBreakdown$2 as TaxBreakdown, type TaxCalculationDetails$2 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$2 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$2 as TaxRateBreakdown, type TaxSummary$3 as TaxSummary, type Title$2 as Title, type UndeleteInfo$3 as UndeleteInfo, type index_d$8_UpdateCartRequest as UpdateCartRequest, type index_d$8_UpdateCartResponse as UpdateCartResponse, type index_d$8_UpdateCartResponseNonNullableFields as UpdateCartResponseNonNullableFields, type index_d$8_UpdateCurrentCartLineItemQuantityRequest as UpdateCurrentCartLineItemQuantityRequest, type index_d$8_UpdateCurrentCartOptions as UpdateCurrentCartOptions, type UpdateLineItemsQuantityRequest$1 as UpdateLineItemsQuantityRequest, type UpdateLineItemsQuantityResponse$1 as UpdateLineItemsQuantityResponse, type UpdateLineItemsQuantityResponseNonNullableFields$1 as UpdateLineItemsQuantityResponseNonNullableFields, type index_d$8_V1Coupon as V1Coupon, type index_d$8_V1MerchantDiscount as V1MerchantDiscount, type ValidationError$3 as ValidationError, type VatId$4 as VatId, VatType$4 as VatType, type Violation$2 as Violation, WebhookIdentityType$7 as WebhookIdentityType, WeightUnit$4 as WeightUnit, __metadata$8 as __metadata, index_d$8_addToCurrentCart as addToCurrentCart, index_d$8_createCheckoutFromCurrentCart as createCheckoutFromCurrentCart, index_d$8_deleteCurrentCart as deleteCurrentCart, index_d$8_estimateCurrentCartTotals as estimateCurrentCartTotals, index_d$8_getCurrentCart as getCurrentCart, index_d$8_onCartCreated as onCartCreated, index_d$8_onCartDeleted as onCartDeleted, index_d$8_onCartUpdated as onCartUpdated, index_d$8_removeCouponFromCurrentCart as removeCouponFromCurrentCart, index_d$8_removeLineItemsFromCurrentCart as removeLineItemsFromCurrentCart, index_d$8_updateCurrentCart as updateCurrentCart, index_d$8_updateCurrentCartLineItemQuantity as updateCurrentCartLineItemQuantity };
11083
11089
  }
11084
11090
 
11085
11091
  interface Checkout$1 {
@@ -12472,6 +12478,18 @@ interface CustomSettings$1 {
12472
12478
  * Default: `false`
12473
12479
  */
12474
12480
  lockCouponCode?: boolean;
12481
+ /**
12482
+ * Whether to disable policy agreement checkout in the checkout page
12483
+ *
12484
+ * Default: `false`
12485
+ */
12486
+ disabledPolicyAgreementCheckbox?: boolean;
12487
+ /**
12488
+ * Whether to disable manual payment option for this checkout.
12489
+ *
12490
+ * Default: `false`
12491
+ */
12492
+ disabledManualPayment?: boolean;
12475
12493
  }
12476
12494
  interface CustomContentReference$1 {
12477
12495
  /**
@@ -13257,6 +13275,9 @@ interface DomainEventBodyOneOf$6 {
13257
13275
  interface EntityCreatedEvent$6 {
13258
13276
  entity?: string;
13259
13277
  }
13278
+ interface UndeleteInfo$2 {
13279
+ deletedDate?: Date;
13280
+ }
13260
13281
  interface EntityUpdatedEvent$6 {
13261
13282
  /**
13262
13283
  * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
@@ -14011,6 +14032,8 @@ interface CreateCheckoutResponseNonNullableFields {
14011
14032
  customSettings?: {
14012
14033
  lockGiftCard: boolean;
14013
14034
  lockCouponCode: boolean;
14035
+ disabledPolicyAgreementCheckbox: boolean;
14036
+ disabledManualPayment: boolean;
14014
14037
  };
14015
14038
  };
14016
14039
  }
@@ -14713,6 +14736,8 @@ interface GetCheckoutResponseNonNullableFields {
14713
14736
  customSettings?: {
14714
14737
  lockGiftCard: boolean;
14715
14738
  lockCouponCode: boolean;
14739
+ disabledPolicyAgreementCheckbox: boolean;
14740
+ disabledManualPayment: boolean;
14716
14741
  };
14717
14742
  };
14718
14743
  }
@@ -15418,6 +15443,8 @@ interface UpdateCheckoutResponseNonNullableFields {
15418
15443
  customSettings?: {
15419
15444
  lockGiftCard: boolean;
15420
15445
  lockCouponCode: boolean;
15446
+ disabledPolicyAgreementCheckbox: boolean;
15447
+ disabledManualPayment: boolean;
15421
15448
  };
15422
15449
  };
15423
15450
  }
@@ -16120,6 +16147,8 @@ interface RemoveCouponResponseNonNullableFields {
16120
16147
  customSettings?: {
16121
16148
  lockGiftCard: boolean;
16122
16149
  lockCouponCode: boolean;
16150
+ disabledPolicyAgreementCheckbox: boolean;
16151
+ disabledManualPayment: boolean;
16123
16152
  };
16124
16153
  };
16125
16154
  }
@@ -16822,6 +16851,8 @@ interface RemoveGiftCardResponseNonNullableFields {
16822
16851
  customSettings?: {
16823
16852
  lockGiftCard: boolean;
16824
16853
  lockCouponCode: boolean;
16854
+ disabledPolicyAgreementCheckbox: boolean;
16855
+ disabledManualPayment: boolean;
16825
16856
  };
16826
16857
  };
16827
16858
  }
@@ -17524,6 +17555,8 @@ interface RemoveOverrideCheckoutUrlResponseNonNullableFields {
17524
17555
  customSettings?: {
17525
17556
  lockGiftCard: boolean;
17526
17557
  lockCouponCode: boolean;
17558
+ disabledPolicyAgreementCheckbox: boolean;
17559
+ disabledManualPayment: boolean;
17527
17560
  };
17528
17561
  };
17529
17562
  }
@@ -18226,6 +18259,8 @@ interface AddToCheckoutResponseNonNullableFields {
18226
18259
  customSettings?: {
18227
18260
  lockGiftCard: boolean;
18228
18261
  lockCouponCode: boolean;
18262
+ disabledPolicyAgreementCheckbox: boolean;
18263
+ disabledManualPayment: boolean;
18229
18264
  };
18230
18265
  };
18231
18266
  }
@@ -18928,6 +18963,8 @@ interface RemoveLineItemsResponseNonNullableFields {
18928
18963
  customSettings?: {
18929
18964
  lockGiftCard: boolean;
18930
18965
  lockCouponCode: boolean;
18966
+ disabledPolicyAgreementCheckbox: boolean;
18967
+ disabledManualPayment: boolean;
18931
18968
  };
18932
18969
  };
18933
18970
  }
@@ -19634,6 +19671,8 @@ interface UpdateLineItemsQuantityResponseNonNullableFields {
19634
19671
  customSettings?: {
19635
19672
  lockGiftCard: boolean;
19636
19673
  lockCouponCode: boolean;
19674
+ disabledPolicyAgreementCheckbox: boolean;
19675
+ disabledManualPayment: boolean;
19637
19676
  };
19638
19677
  };
19639
19678
  }
@@ -20596,6 +20635,8 @@ declare function createCheckout(httpClient: HttpClient): (options?: CreateChecko
20596
20635
  customSettings?: {
20597
20636
  lockGiftCard: boolean;
20598
20637
  lockCouponCode: boolean;
20638
+ disabledPolicyAgreementCheckbox: boolean;
20639
+ disabledManualPayment: boolean;
20599
20640
  } | undefined;
20600
20641
  }>;
20601
20642
  declare function getCheckout(httpClient: HttpClient): (_id: string) => Promise<GetCheckoutResponse & GetCheckoutResponseNonNullableFields>;
@@ -21298,6 +21339,8 @@ declare function updateCheckout(httpClient: HttpClient): (_id: string | null, ch
21298
21339
  customSettings?: {
21299
21340
  lockGiftCard: boolean;
21300
21341
  lockCouponCode: boolean;
21342
+ disabledPolicyAgreementCheckbox: boolean;
21343
+ disabledManualPayment: boolean;
21301
21344
  } | undefined;
21302
21345
  }>;
21303
21346
  declare function removeCoupon(httpClient: HttpClient): (_id: string) => Promise<RemoveCouponResponse & RemoveCouponResponseNonNullableFields>;
@@ -21407,7 +21450,7 @@ declare const index_d$7_removeOverrideCheckoutUrl: typeof removeOverrideCheckout
21407
21450
  declare const index_d$7_updateCheckout: typeof updateCheckout;
21408
21451
  declare const index_d$7_updateLineItemsQuantity: typeof updateLineItemsQuantity;
21409
21452
  declare namespace index_d$7 {
21410
- export { type ActionEvent$6 as ActionEvent, type index_d$7_AddToCheckoutOptions as AddToCheckoutOptions, type index_d$7_AddToCheckoutRequest as AddToCheckoutRequest, type index_d$7_AddToCheckoutResponse as AddToCheckoutResponse, type index_d$7_AddToCheckoutResponseNonNullableFields as AddToCheckoutResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type Address$3 as Address, type AddressAddressLine1OptionsOneOf$1 as AddressAddressLine1OptionsOneOf, type AddressLocation$2 as AddressLocation, type AddressWithContact$2 as AddressWithContact, type AggregatedTaxBreakdown$1 as AggregatedTaxBreakdown, type index_d$7_ApiAddress as ApiAddress, type ApplicationError$4 as ApplicationError, type AppliedCoupon$1 as AppliedCoupon, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$1 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$6 as BaseEventMetadata, type BillingInfo$1 as BillingInfo, type BuyerInfo$4 as BuyerInfo, type BuyerInfoIdOneOf$2 as BuyerInfoIdOneOf, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CarrierServiceOption$1 as CarrierServiceOption, type CatalogOverrideFields$1 as CatalogOverrideFields, type CatalogReference$2 as CatalogReference, type ChannelInfo$2 as ChannelInfo, index_d$7_ChannelInfoChannelType as ChannelInfoChannelType, ChannelType$3 as ChannelType, type index_d$7_ChargeDetails as ChargeDetails, ChargeType$1 as ChargeType, type Checkout$1 as Checkout, type index_d$7_CheckoutCompletedEnvelope as CheckoutCompletedEnvelope, type index_d$7_CheckoutCreatedEnvelope as CheckoutCreatedEnvelope, type index_d$7_CheckoutMarkedAsCompleted as CheckoutMarkedAsCompleted, type index_d$7_CheckoutUpdatedEnvelope as CheckoutUpdatedEnvelope, type Color$2 as Color, type index_d$7_CommonVatId as CommonVatId, index_d$7_CommonVatType as CommonVatType, type ConversionInfo$1 as ConversionInfo, type Coupon$2 as Coupon, type index_d$7_CreateCheckoutOptions as CreateCheckoutOptions, type index_d$7_CreateCheckoutRequest as CreateCheckoutRequest, type index_d$7_CreateCheckoutResponse as CreateCheckoutResponse, type index_d$7_CreateCheckoutResponseNonNullableFields as CreateCheckoutResponseNonNullableFields, type index_d$7_CreateOrderAndChargeRequest as CreateOrderAndChargeRequest, type index_d$7_CreateOrderAndChargeResponse as CreateOrderAndChargeResponse, type index_d$7_CreateOrderAndChargeResponseIdOneOf as CreateOrderAndChargeResponseIdOneOf, type CreateOrderRequest$1 as CreateOrderRequest, type CreateOrderResponse$1 as CreateOrderResponse, type index_d$7_CreateOrderResponseIdOneOf as CreateOrderResponseIdOneOf, type CreateOrderResponseNonNullableFields$1 as CreateOrderResponseNonNullableFields, type CreatedBy$2 as CreatedBy, type CreatedByIdOneOf$1 as CreatedByIdOneOf, type CustomContentReference$1 as CustomContentReference, type CustomField$3 as CustomField, type CustomLineItem$1 as CustomLineItem, type CustomSettings$1 as CustomSettings, type CustomTextFieldSelection$1 as CustomTextFieldSelection, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, type Description$1 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 Discount$2 as Discount, index_d$7_DiscountDiscountType as DiscountDiscountType, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type index_d$7_DoublePaymentErrorData as DoublePaymentErrorData, type index_d$7_DoublePaymentErrorDataIdOneOf as DoublePaymentErrorDataIdOneOf, type Empty$2 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type EventMetadata$6 as EventMetadata, type ExtendedFields$2 as ExtendedFields, FallbackReason$1 as FallbackReason, type FieldViolation$2 as FieldViolation, FileType$1 as FileType, type FullAddressContactDetails$2 as FullAddressContactDetails, type FullName$1 as FullName, type index_d$7_GetCheckoutByCartIdRequest as GetCheckoutByCartIdRequest, type index_d$7_GetCheckoutByCartIdResponse as GetCheckoutByCartIdResponse, type index_d$7_GetCheckoutRequest as GetCheckoutRequest, type index_d$7_GetCheckoutResponse as GetCheckoutResponse, type index_d$7_GetCheckoutResponseNonNullableFields as GetCheckoutResponseNonNullableFields, type index_d$7_GetCheckoutURLRequest as GetCheckoutURLRequest, type index_d$7_GetCheckoutURLResponse as GetCheckoutURLResponse, type index_d$7_GetCheckoutURLResponseNonNullableFields as GetCheckoutURLResponseNonNullableFields, type index_d$7_GetCheckoutWithAllExtendedFieldsRequest as GetCheckoutWithAllExtendedFieldsRequest, type index_d$7_GetCheckoutWithAllExtendedFieldsResponse as GetCheckoutWithAllExtendedFieldsResponse, type index_d$7_GetWixCheckoutURLRequest as GetWixCheckoutURLRequest, type index_d$7_GetWixCheckoutURLResponse as GetWixCheckoutURLResponse, type GiftCard$2 as GiftCard, type Group$1 as Group, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type InvalidMembership$1 as InvalidMembership, type ItemAvailabilityInfo$1 as ItemAvailabilityInfo, ItemAvailabilityStatus$1 as ItemAvailabilityStatus, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItem$3 as LineItem, type LineItemDiscount$2 as LineItemDiscount, type index_d$7_LineItemQuantityUpdate as LineItemQuantityUpdate, LineItemType$1 as LineItemType, ManualCalculationReason$1 as ManualCalculationReason, type index_d$7_MarkCheckoutAsCompletedRequest as MarkCheckoutAsCompletedRequest, type index_d$7_MarkCheckoutAsCompletedResponse as MarkCheckoutAsCompletedResponse, type MediaItem$1 as MediaItem, MediaItemType$1 as MediaItemType, type Membership$1 as Membership, type MembershipName$3 as MembershipName, type MembershipOptions$1 as MembershipOptions, type MembershipPaymentCredits$1 as MembershipPaymentCredits, type MerchantDiscount$2 as MerchantDiscount, type index_d$7_MerchantDiscountInput as MerchantDiscountInput, type MessageEnvelope$6 as MessageEnvelope, type MultiCurrencyPrice$1 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type OptionSelection$1 as OptionSelection, type Other$1 as Other, type OtherCharge$1 as OtherCharge, type index_d$7_PaymentErrorResponseData as PaymentErrorResponseData, PaymentOptionType$2 as PaymentOptionType, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, PickupMethod$2 as PickupMethod, type PlainTextValue$2 as PlainTextValue, type PriceDescription$2 as PriceDescription, type PriceSummary$2 as PriceSummary, type index_d$7_ProductDetails as ProductDetails, type ProductName$2 as ProductName, RateType$1 as RateType, type index_d$7_RedeemErrorData as RedeemErrorData, type index_d$7_RemoveCouponRequest as RemoveCouponRequest, type index_d$7_RemoveCouponResponse as RemoveCouponResponse, type index_d$7_RemoveCouponResponseNonNullableFields as RemoveCouponResponseNonNullableFields, type index_d$7_RemoveGiftCardRequest as RemoveGiftCardRequest, type index_d$7_RemoveGiftCardResponse as RemoveGiftCardResponse, type index_d$7_RemoveGiftCardResponseNonNullableFields as RemoveGiftCardResponseNonNullableFields, type index_d$7_RemoveLineItemsRequest as RemoveLineItemsRequest, type index_d$7_RemoveLineItemsResponse as RemoveLineItemsResponse, type index_d$7_RemoveLineItemsResponseNonNullableFields as RemoveLineItemsResponseNonNullableFields, type index_d$7_RemoveOverrideCheckoutUrlRequest as RemoveOverrideCheckoutUrlRequest, type index_d$7_RemoveOverrideCheckoutUrlResponse as RemoveOverrideCheckoutUrlResponse, type index_d$7_RemoveOverrideCheckoutUrlResponseNonNullableFields as RemoveOverrideCheckoutUrlResponseNonNullableFields, 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, Severity$1 as Severity, type ShipmentDetails$1 as ShipmentDetails, type index_d$7_ShippingCalculationErrorData as ShippingCalculationErrorData, type index_d$7_ShippingCalculationErrorDataShippingCalculationErrorOneOf as ShippingCalculationErrorDataShippingCalculationErrorOneOf, type ShippingInfo$2 as ShippingInfo, type ShippingOption$1 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, type index_d$7_StoreSettings as StoreSettings, type Street$1 as Street, type StreetAddress$2 as StreetAddress, type index_d$7_Subscription as Subscription, type index_d$7_SubscriptionCreated as SubscriptionCreated, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionOptionInfo$2 as SubscriptionOptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$2 as SystemError, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type TaxCalculationDetails$1 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$1 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$1 as TaxRateBreakdown, type TaxSummary$2 as TaxSummary, type Title$1 as Title, type Totals$1 as Totals, type index_d$7_UpdateCheckout as UpdateCheckout, type index_d$7_UpdateCheckoutOptions as UpdateCheckoutOptions, type index_d$7_UpdateCheckoutRequest as UpdateCheckoutRequest, type index_d$7_UpdateCheckoutResponse as UpdateCheckoutResponse, type index_d$7_UpdateCheckoutResponseNonNullableFields as UpdateCheckoutResponseNonNullableFields, type index_d$7_UpdateLineItemsQuantityRequest as UpdateLineItemsQuantityRequest, type index_d$7_UpdateLineItemsQuantityResponse as UpdateLineItemsQuantityResponse, type index_d$7_UpdateLineItemsQuantityResponseNonNullableFields as UpdateLineItemsQuantityResponseNonNullableFields, type index_d$7_UpdatedCheckoutMessage as UpdatedCheckoutMessage, type index_d$7_V1BuyerInfo as V1BuyerInfo, type index_d$7_V1CustomField as V1CustomField, type V1LineItem$1 as V1LineItem, type index_d$7_V1PickupDetails as V1PickupDetails, type index_d$7_V1ShippingInfo as V1ShippingInfo, type index_d$7_V1ShippingInfoDetailsOneOf as V1ShippingInfoDetailsOneOf, type index_d$7_V1SubscriptionOptionInfo as V1SubscriptionOptionInfo, type index_d$7_V1SubscriptionSettings as V1SubscriptionSettings, type ValidationError$2 as ValidationError, type VatId$3 as VatId, VatType$3 as VatType, type Violation$1 as Violation, type index_d$7_ViolationsList as ViolationsList, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$3 as WeightUnit, __metadata$7 as __metadata, index_d$7_addToCheckout as addToCheckout, index_d$7_createCheckout as createCheckout, createOrder$1 as createOrder, index_d$7_getCheckout as getCheckout, index_d$7_getCheckoutUrl as getCheckoutUrl, index_d$7_markCheckoutAsCompleted as markCheckoutAsCompleted, index_d$7_onCheckoutCompleted as onCheckoutCompleted, index_d$7_onCheckoutCreated as onCheckoutCreated, index_d$7_onCheckoutUpdated as onCheckoutUpdated, index_d$7_removeCoupon as removeCoupon, index_d$7_removeGiftCard as removeGiftCard, index_d$7_removeLineItems as removeLineItems, index_d$7_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, index_d$7_updateCheckout as updateCheckout, index_d$7_updateLineItemsQuantity as updateLineItemsQuantity };
21453
+ export { type ActionEvent$6 as ActionEvent, type index_d$7_AddToCheckoutOptions as AddToCheckoutOptions, type index_d$7_AddToCheckoutRequest as AddToCheckoutRequest, type index_d$7_AddToCheckoutResponse as AddToCheckoutResponse, type index_d$7_AddToCheckoutResponseNonNullableFields as AddToCheckoutResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type Address$3 as Address, type AddressAddressLine1OptionsOneOf$1 as AddressAddressLine1OptionsOneOf, type AddressLocation$2 as AddressLocation, type AddressWithContact$2 as AddressWithContact, type AggregatedTaxBreakdown$1 as AggregatedTaxBreakdown, type index_d$7_ApiAddress as ApiAddress, type ApplicationError$4 as ApplicationError, type AppliedCoupon$1 as AppliedCoupon, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$1 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$6 as BaseEventMetadata, type BillingInfo$1 as BillingInfo, type BuyerInfo$4 as BuyerInfo, type BuyerInfoIdOneOf$2 as BuyerInfoIdOneOf, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CarrierServiceOption$1 as CarrierServiceOption, type CatalogOverrideFields$1 as CatalogOverrideFields, type CatalogReference$2 as CatalogReference, type ChannelInfo$2 as ChannelInfo, index_d$7_ChannelInfoChannelType as ChannelInfoChannelType, ChannelType$3 as ChannelType, type index_d$7_ChargeDetails as ChargeDetails, ChargeType$1 as ChargeType, type Checkout$1 as Checkout, type index_d$7_CheckoutCompletedEnvelope as CheckoutCompletedEnvelope, type index_d$7_CheckoutCreatedEnvelope as CheckoutCreatedEnvelope, type index_d$7_CheckoutMarkedAsCompleted as CheckoutMarkedAsCompleted, type index_d$7_CheckoutUpdatedEnvelope as CheckoutUpdatedEnvelope, type Color$2 as Color, type index_d$7_CommonVatId as CommonVatId, index_d$7_CommonVatType as CommonVatType, type ConversionInfo$1 as ConversionInfo, type Coupon$2 as Coupon, type index_d$7_CreateCheckoutOptions as CreateCheckoutOptions, type index_d$7_CreateCheckoutRequest as CreateCheckoutRequest, type index_d$7_CreateCheckoutResponse as CreateCheckoutResponse, type index_d$7_CreateCheckoutResponseNonNullableFields as CreateCheckoutResponseNonNullableFields, type index_d$7_CreateOrderAndChargeRequest as CreateOrderAndChargeRequest, type index_d$7_CreateOrderAndChargeResponse as CreateOrderAndChargeResponse, type index_d$7_CreateOrderAndChargeResponseIdOneOf as CreateOrderAndChargeResponseIdOneOf, type CreateOrderRequest$1 as CreateOrderRequest, type CreateOrderResponse$1 as CreateOrderResponse, type index_d$7_CreateOrderResponseIdOneOf as CreateOrderResponseIdOneOf, type CreateOrderResponseNonNullableFields$1 as CreateOrderResponseNonNullableFields, type CreatedBy$2 as CreatedBy, type CreatedByIdOneOf$1 as CreatedByIdOneOf, type CustomContentReference$1 as CustomContentReference, type CustomField$3 as CustomField, type CustomLineItem$1 as CustomLineItem, type CustomSettings$1 as CustomSettings, type CustomTextFieldSelection$1 as CustomTextFieldSelection, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, type Description$1 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 Discount$2 as Discount, index_d$7_DiscountDiscountType as DiscountDiscountType, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type index_d$7_DoublePaymentErrorData as DoublePaymentErrorData, type index_d$7_DoublePaymentErrorDataIdOneOf as DoublePaymentErrorDataIdOneOf, type Empty$2 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type EventMetadata$6 as EventMetadata, type ExtendedFields$2 as ExtendedFields, FallbackReason$1 as FallbackReason, type FieldViolation$2 as FieldViolation, FileType$1 as FileType, type FullAddressContactDetails$2 as FullAddressContactDetails, type FullName$1 as FullName, type index_d$7_GetCheckoutByCartIdRequest as GetCheckoutByCartIdRequest, type index_d$7_GetCheckoutByCartIdResponse as GetCheckoutByCartIdResponse, type index_d$7_GetCheckoutRequest as GetCheckoutRequest, type index_d$7_GetCheckoutResponse as GetCheckoutResponse, type index_d$7_GetCheckoutResponseNonNullableFields as GetCheckoutResponseNonNullableFields, type index_d$7_GetCheckoutURLRequest as GetCheckoutURLRequest, type index_d$7_GetCheckoutURLResponse as GetCheckoutURLResponse, type index_d$7_GetCheckoutURLResponseNonNullableFields as GetCheckoutURLResponseNonNullableFields, type index_d$7_GetCheckoutWithAllExtendedFieldsRequest as GetCheckoutWithAllExtendedFieldsRequest, type index_d$7_GetCheckoutWithAllExtendedFieldsResponse as GetCheckoutWithAllExtendedFieldsResponse, type index_d$7_GetWixCheckoutURLRequest as GetWixCheckoutURLRequest, type index_d$7_GetWixCheckoutURLResponse as GetWixCheckoutURLResponse, type GiftCard$2 as GiftCard, type Group$1 as Group, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type InvalidMembership$1 as InvalidMembership, type ItemAvailabilityInfo$1 as ItemAvailabilityInfo, ItemAvailabilityStatus$1 as ItemAvailabilityStatus, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItem$3 as LineItem, type LineItemDiscount$2 as LineItemDiscount, type index_d$7_LineItemQuantityUpdate as LineItemQuantityUpdate, LineItemType$1 as LineItemType, ManualCalculationReason$1 as ManualCalculationReason, type index_d$7_MarkCheckoutAsCompletedRequest as MarkCheckoutAsCompletedRequest, type index_d$7_MarkCheckoutAsCompletedResponse as MarkCheckoutAsCompletedResponse, type MediaItem$1 as MediaItem, MediaItemType$1 as MediaItemType, type Membership$1 as Membership, type MembershipName$3 as MembershipName, type MembershipOptions$1 as MembershipOptions, type MembershipPaymentCredits$1 as MembershipPaymentCredits, type MerchantDiscount$2 as MerchantDiscount, type index_d$7_MerchantDiscountInput as MerchantDiscountInput, type MessageEnvelope$6 as MessageEnvelope, type MultiCurrencyPrice$1 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type OptionSelection$1 as OptionSelection, type Other$1 as Other, type OtherCharge$1 as OtherCharge, type index_d$7_PaymentErrorResponseData as PaymentErrorResponseData, PaymentOptionType$2 as PaymentOptionType, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, PickupMethod$2 as PickupMethod, type PlainTextValue$2 as PlainTextValue, type PriceDescription$2 as PriceDescription, type PriceSummary$2 as PriceSummary, type index_d$7_ProductDetails as ProductDetails, type ProductName$2 as ProductName, RateType$1 as RateType, type index_d$7_RedeemErrorData as RedeemErrorData, type index_d$7_RemoveCouponRequest as RemoveCouponRequest, type index_d$7_RemoveCouponResponse as RemoveCouponResponse, type index_d$7_RemoveCouponResponseNonNullableFields as RemoveCouponResponseNonNullableFields, type index_d$7_RemoveGiftCardRequest as RemoveGiftCardRequest, type index_d$7_RemoveGiftCardResponse as RemoveGiftCardResponse, type index_d$7_RemoveGiftCardResponseNonNullableFields as RemoveGiftCardResponseNonNullableFields, type index_d$7_RemoveLineItemsRequest as RemoveLineItemsRequest, type index_d$7_RemoveLineItemsResponse as RemoveLineItemsResponse, type index_d$7_RemoveLineItemsResponseNonNullableFields as RemoveLineItemsResponseNonNullableFields, type index_d$7_RemoveOverrideCheckoutUrlRequest as RemoveOverrideCheckoutUrlRequest, type index_d$7_RemoveOverrideCheckoutUrlResponse as RemoveOverrideCheckoutUrlResponse, type index_d$7_RemoveOverrideCheckoutUrlResponseNonNullableFields as RemoveOverrideCheckoutUrlResponseNonNullableFields, 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, Severity$1 as Severity, type ShipmentDetails$1 as ShipmentDetails, type index_d$7_ShippingCalculationErrorData as ShippingCalculationErrorData, type index_d$7_ShippingCalculationErrorDataShippingCalculationErrorOneOf as ShippingCalculationErrorDataShippingCalculationErrorOneOf, type ShippingInfo$2 as ShippingInfo, type ShippingOption$1 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, type index_d$7_StoreSettings as StoreSettings, type Street$1 as Street, type StreetAddress$2 as StreetAddress, type index_d$7_Subscription as Subscription, type index_d$7_SubscriptionCreated as SubscriptionCreated, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionOptionInfo$2 as SubscriptionOptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$2 as SystemError, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type TaxCalculationDetails$1 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$1 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$1 as TaxRateBreakdown, type TaxSummary$2 as TaxSummary, type Title$1 as Title, type Totals$1 as Totals, type UndeleteInfo$2 as UndeleteInfo, type index_d$7_UpdateCheckout as UpdateCheckout, type index_d$7_UpdateCheckoutOptions as UpdateCheckoutOptions, type index_d$7_UpdateCheckoutRequest as UpdateCheckoutRequest, type index_d$7_UpdateCheckoutResponse as UpdateCheckoutResponse, type index_d$7_UpdateCheckoutResponseNonNullableFields as UpdateCheckoutResponseNonNullableFields, type index_d$7_UpdateLineItemsQuantityRequest as UpdateLineItemsQuantityRequest, type index_d$7_UpdateLineItemsQuantityResponse as UpdateLineItemsQuantityResponse, type index_d$7_UpdateLineItemsQuantityResponseNonNullableFields as UpdateLineItemsQuantityResponseNonNullableFields, type index_d$7_UpdatedCheckoutMessage as UpdatedCheckoutMessage, type index_d$7_V1BuyerInfo as V1BuyerInfo, type index_d$7_V1CustomField as V1CustomField, type V1LineItem$1 as V1LineItem, type index_d$7_V1PickupDetails as V1PickupDetails, type index_d$7_V1ShippingInfo as V1ShippingInfo, type index_d$7_V1ShippingInfoDetailsOneOf as V1ShippingInfoDetailsOneOf, type index_d$7_V1SubscriptionOptionInfo as V1SubscriptionOptionInfo, type index_d$7_V1SubscriptionSettings as V1SubscriptionSettings, type ValidationError$2 as ValidationError, type VatId$3 as VatId, VatType$3 as VatType, type Violation$1 as Violation, type index_d$7_ViolationsList as ViolationsList, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$3 as WeightUnit, __metadata$7 as __metadata, index_d$7_addToCheckout as addToCheckout, index_d$7_createCheckout as createCheckout, createOrder$1 as createOrder, index_d$7_getCheckout as getCheckout, index_d$7_getCheckoutUrl as getCheckoutUrl, index_d$7_markCheckoutAsCompleted as markCheckoutAsCompleted, index_d$7_onCheckoutCompleted as onCheckoutCompleted, index_d$7_onCheckoutCreated as onCheckoutCreated, index_d$7_onCheckoutUpdated as onCheckoutUpdated, index_d$7_removeCoupon as removeCoupon, index_d$7_removeGiftCard as removeGiftCard, index_d$7_removeLineItems as removeLineItems, index_d$7_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, index_d$7_updateCheckout as updateCheckout, index_d$7_updateLineItemsQuantity as updateLineItemsQuantity };
21411
21454
  }
21412
21455
 
21413
21456
  interface CheckoutSettings {
@@ -23564,6 +23607,9 @@ interface DomainEventBodyOneOf$4 {
23564
23607
  interface EntityCreatedEvent$4 {
23565
23608
  entity?: string;
23566
23609
  }
23610
+ interface UndeleteInfo$1 {
23611
+ deletedDate?: Date;
23612
+ }
23567
23613
  interface EntityUpdatedEvent$4 {
23568
23614
  /**
23569
23615
  * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
@@ -24170,7 +24216,7 @@ declare const index_d$5_onCheckoutTemplateUsed: typeof onCheckoutTemplateUsed;
24170
24216
  declare const index_d$5_queryCheckoutTemplates: typeof queryCheckoutTemplates;
24171
24217
  declare const index_d$5_updateCheckoutTemplate: typeof updateCheckoutTemplate;
24172
24218
  declare namespace index_d$5 {
24173
- export { type ActionEvent$4 as ActionEvent, type AdditionalFee$1 as AdditionalFee, type Address$2 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type index_d$5_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$5_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$4 as BaseEventMetadata, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$5_CalculationErrors as CalculationErrors, type index_d$5_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type index_d$5_CarrierError as CarrierError, type index_d$5_CarrierErrors as CarrierErrors, type index_d$5_CarrierServiceOption as CarrierServiceOption, type index_d$5_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$1 as CatalogReference, ChannelType$2 as ChannelType, index_d$5_ChargeType as ChargeType, type index_d$5_Checkout as Checkout, type index_d$5_CheckoutCustomization as CheckoutCustomization, type index_d$5_CheckoutTemplate as CheckoutTemplate, type index_d$5_CheckoutTemplateCreatedEnvelope as CheckoutTemplateCreatedEnvelope, type index_d$5_CheckoutTemplateDeletedEnvelope as CheckoutTemplateDeletedEnvelope, type index_d$5_CheckoutTemplateUpdatedEnvelope as CheckoutTemplateUpdatedEnvelope, type index_d$5_CheckoutTemplateUsed as CheckoutTemplateUsed, type index_d$5_CheckoutTemplateUsedEnvelope as CheckoutTemplateUsedEnvelope, type index_d$5_CheckoutTemplatesQueryBuilder as CheckoutTemplatesQueryBuilder, type index_d$5_CheckoutTemplatesQueryResult as CheckoutTemplatesQueryResult, type Color$1 as Color, type index_d$5_ConversionInfo as ConversionInfo, type Coupon$1 as Coupon, type index_d$5_CreateAndRedirectToCheckoutRequest as CreateAndRedirectToCheckoutRequest, type index_d$5_CreateCheckoutFromTemplateRequest as CreateCheckoutFromTemplateRequest, type index_d$5_CreateCheckoutFromTemplateResponse as CreateCheckoutFromTemplateResponse, type index_d$5_CreateCheckoutFromTemplateResponseNonNullableFields as CreateCheckoutFromTemplateResponseNonNullableFields, type index_d$5_CreateCheckoutTemplateRequest as CreateCheckoutTemplateRequest, type index_d$5_CreateCheckoutTemplateResponse as CreateCheckoutTemplateResponse, type index_d$5_CreateCheckoutTemplateResponseNonNullableFields as CreateCheckoutTemplateResponseNonNullableFields, type CreatedBy$1 as CreatedBy, type index_d$5_CreatedByIdOneOf as CreatedByIdOneOf, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type index_d$5_CursorQuery as CursorQuery, type index_d$5_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$5_CustomContentReference as CustomContentReference, type CustomField$2 as CustomField, type index_d$5_CustomLineItem as CustomLineItem, type index_d$5_CustomSettings as CustomSettings, type index_d$5_DeleteCheckoutTemplateRequest as DeleteCheckoutTemplateRequest, type index_d$5_DeleteCheckoutTemplateResponse as DeleteCheckoutTemplateResponse, type DeliveryLogistics$1 as DeliveryLogistics, type DeliveryTimeSlot$1 as DeliveryTimeSlot, type index_d$5_Description as Description, 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 DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventMetadata$4 as EventMetadata, type ExtendedFields$1 as ExtendedFields, index_d$5_FallbackReason as FallbackReason, type FieldViolation$1 as FieldViolation, index_d$5_FileType as FileType, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$5_GetCheckoutTemplateRequest as GetCheckoutTemplateRequest, type index_d$5_GetCheckoutTemplateResponse as GetCheckoutTemplateResponse, type index_d$5_GetCheckoutTemplateResponseNonNullableFields as GetCheckoutTemplateResponseNonNullableFields, type GiftCard$1 as GiftCard, type index_d$5_Group as Group, type index_d$5_HeadersEntry as HeadersEntry, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type index_d$5_InvalidMembership as InvalidMembership, type index_d$5_ItemAvailabilityInfo as ItemAvailabilityInfo, index_d$5_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type LineItemDiscount$1 as LineItemDiscount, index_d$5_ManualCalculationReason as ManualCalculationReason, type index_d$5_Membership as Membership, type MembershipName$2 as MembershipName, type index_d$5_MembershipOptions as MembershipOptions, type index_d$5_MembershipPaymentCredits as MembershipPaymentCredits, type MerchantDiscount$1 as MerchantDiscount, type MessageEnvelope$4 as MessageEnvelope, type index_d$5_MultiCurrencyPrice as MultiCurrencyPrice, index_d$5_NameInLineItem as NameInLineItem, index_d$5_NameInOther as NameInOther, type index_d$5_Other as Other, type index_d$5_OtherCharge as OtherCharge, PaymentOptionType$1 as PaymentOptionType, type PhysicalProperties$1 as PhysicalProperties, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type PriceDescription$1 as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, type index_d$5_QueryCheckoutTemplatesRequest as QueryCheckoutTemplatesRequest, type index_d$5_QueryCheckoutTemplatesResponse as QueryCheckoutTemplatesResponse, type index_d$5_QueryCheckoutTemplatesResponseNonNullableFields as QueryCheckoutTemplatesResponseNonNullableFields, index_d$5_RateType as RateType, type index_d$5_RawHttpResponse as RawHttpResponse, RuleType$1 as RuleType, type index_d$5_Scope as Scope, type index_d$5_SecuredMedia as SecuredMedia, type index_d$5_SelectedCarrierServiceOption as SelectedCarrierServiceOption, type index_d$5_SelectedCarrierServiceOptionOtherCharge as SelectedCarrierServiceOptionOtherCharge, type index_d$5_SelectedCarrierServiceOptionPrices as SelectedCarrierServiceOptionPrices, type index_d$5_SelectedMembership as SelectedMembership, type index_d$5_SelectedMemberships as SelectedMemberships, type ServiceProperties$1 as ServiceProperties, index_d$5_Severity as Severity, type ShippingInfo$1 as ShippingInfo, type index_d$5_ShippingOption as ShippingOption, type ShippingPrice$1 as ShippingPrice, type ShippingRegion$1 as ShippingRegion, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, index_d$5_Status as Status, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type SystemError$1 as SystemError, type index_d$5_Target as Target, type index_d$5_TargetLineItem as TargetLineItem, type index_d$5_TargetTargetTypeOneOf as TargetTargetTypeOneOf, type index_d$5_TaxBreakdown as TaxBreakdown, type index_d$5_TaxCalculationDetails as TaxCalculationDetails, type index_d$5_TaxCalculationDetailsCalculationDetailsOneOf as TaxCalculationDetailsCalculationDetailsOneOf, type index_d$5_TaxRateBreakdown as TaxRateBreakdown, type TaxSummary$1 as TaxSummary, type index_d$5_Title as Title, type index_d$5_UpdateCheckoutTemplate as UpdateCheckoutTemplate, type index_d$5_UpdateCheckoutTemplateRequest as UpdateCheckoutTemplateRequest, type index_d$5_UpdateCheckoutTemplateResponse as UpdateCheckoutTemplateResponse, type index_d$5_UpdateCheckoutTemplateResponseNonNullableFields as UpdateCheckoutTemplateResponseNonNullableFields, type index_d$5_V1LineItem as V1LineItem, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, type index_d$5_Violation as Violation, type index_d$5_WebClientCustomization as WebClientCustomization, WebhookIdentityType$4 as WebhookIdentityType, WeightUnit$2 as WeightUnit, __metadata$5 as __metadata, index_d$5_createCheckoutFromTemplate as createCheckoutFromTemplate, index_d$5_createCheckoutTemplate as createCheckoutTemplate, index_d$5_deleteCheckoutTemplate as deleteCheckoutTemplate, index_d$5_getCheckoutTemplate as getCheckoutTemplate, index_d$5_onCheckoutTemplateCreated as onCheckoutTemplateCreated, index_d$5_onCheckoutTemplateDeleted as onCheckoutTemplateDeleted, index_d$5_onCheckoutTemplateUpdated as onCheckoutTemplateUpdated, index_d$5_onCheckoutTemplateUsed as onCheckoutTemplateUsed, index_d$5_queryCheckoutTemplates as queryCheckoutTemplates, index_d$5_updateCheckoutTemplate as updateCheckoutTemplate };
24219
+ export { type ActionEvent$4 as ActionEvent, type AdditionalFee$1 as AdditionalFee, type Address$2 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type index_d$5_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$5_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$4 as BaseEventMetadata, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$5_CalculationErrors as CalculationErrors, type index_d$5_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type index_d$5_CarrierError as CarrierError, type index_d$5_CarrierErrors as CarrierErrors, type index_d$5_CarrierServiceOption as CarrierServiceOption, type index_d$5_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$1 as CatalogReference, ChannelType$2 as ChannelType, index_d$5_ChargeType as ChargeType, type index_d$5_Checkout as Checkout, type index_d$5_CheckoutCustomization as CheckoutCustomization, type index_d$5_CheckoutTemplate as CheckoutTemplate, type index_d$5_CheckoutTemplateCreatedEnvelope as CheckoutTemplateCreatedEnvelope, type index_d$5_CheckoutTemplateDeletedEnvelope as CheckoutTemplateDeletedEnvelope, type index_d$5_CheckoutTemplateUpdatedEnvelope as CheckoutTemplateUpdatedEnvelope, type index_d$5_CheckoutTemplateUsed as CheckoutTemplateUsed, type index_d$5_CheckoutTemplateUsedEnvelope as CheckoutTemplateUsedEnvelope, type index_d$5_CheckoutTemplatesQueryBuilder as CheckoutTemplatesQueryBuilder, type index_d$5_CheckoutTemplatesQueryResult as CheckoutTemplatesQueryResult, type Color$1 as Color, type index_d$5_ConversionInfo as ConversionInfo, type Coupon$1 as Coupon, type index_d$5_CreateAndRedirectToCheckoutRequest as CreateAndRedirectToCheckoutRequest, type index_d$5_CreateCheckoutFromTemplateRequest as CreateCheckoutFromTemplateRequest, type index_d$5_CreateCheckoutFromTemplateResponse as CreateCheckoutFromTemplateResponse, type index_d$5_CreateCheckoutFromTemplateResponseNonNullableFields as CreateCheckoutFromTemplateResponseNonNullableFields, type index_d$5_CreateCheckoutTemplateRequest as CreateCheckoutTemplateRequest, type index_d$5_CreateCheckoutTemplateResponse as CreateCheckoutTemplateResponse, type index_d$5_CreateCheckoutTemplateResponseNonNullableFields as CreateCheckoutTemplateResponseNonNullableFields, type CreatedBy$1 as CreatedBy, type index_d$5_CreatedByIdOneOf as CreatedByIdOneOf, type CursorPaging$2 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type index_d$5_CursorQuery as CursorQuery, type index_d$5_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type Cursors$2 as Cursors, type index_d$5_CustomContentReference as CustomContentReference, type CustomField$2 as CustomField, type index_d$5_CustomLineItem as CustomLineItem, type index_d$5_CustomSettings as CustomSettings, type index_d$5_DeleteCheckoutTemplateRequest as DeleteCheckoutTemplateRequest, type index_d$5_DeleteCheckoutTemplateResponse as DeleteCheckoutTemplateResponse, type DeliveryLogistics$1 as DeliveryLogistics, type DeliveryTimeSlot$1 as DeliveryTimeSlot, type index_d$5_Description as Description, 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 DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type EventMetadata$4 as EventMetadata, type ExtendedFields$1 as ExtendedFields, index_d$5_FallbackReason as FallbackReason, type FieldViolation$1 as FieldViolation, index_d$5_FileType as FileType, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$5_GetCheckoutTemplateRequest as GetCheckoutTemplateRequest, type index_d$5_GetCheckoutTemplateResponse as GetCheckoutTemplateResponse, type index_d$5_GetCheckoutTemplateResponseNonNullableFields as GetCheckoutTemplateResponseNonNullableFields, type GiftCard$1 as GiftCard, type index_d$5_Group as Group, type index_d$5_HeadersEntry as HeadersEntry, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type index_d$5_InvalidMembership as InvalidMembership, type index_d$5_ItemAvailabilityInfo as ItemAvailabilityInfo, index_d$5_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type LineItemDiscount$1 as LineItemDiscount, index_d$5_ManualCalculationReason as ManualCalculationReason, type index_d$5_Membership as Membership, type MembershipName$2 as MembershipName, type index_d$5_MembershipOptions as MembershipOptions, type index_d$5_MembershipPaymentCredits as MembershipPaymentCredits, type MerchantDiscount$1 as MerchantDiscount, type MessageEnvelope$4 as MessageEnvelope, type index_d$5_MultiCurrencyPrice as MultiCurrencyPrice, index_d$5_NameInLineItem as NameInLineItem, index_d$5_NameInOther as NameInOther, type index_d$5_Other as Other, type index_d$5_OtherCharge as OtherCharge, PaymentOptionType$1 as PaymentOptionType, type PhysicalProperties$1 as PhysicalProperties, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type PriceDescription$1 as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, type index_d$5_QueryCheckoutTemplatesRequest as QueryCheckoutTemplatesRequest, type index_d$5_QueryCheckoutTemplatesResponse as QueryCheckoutTemplatesResponse, type index_d$5_QueryCheckoutTemplatesResponseNonNullableFields as QueryCheckoutTemplatesResponseNonNullableFields, index_d$5_RateType as RateType, type index_d$5_RawHttpResponse as RawHttpResponse, RuleType$1 as RuleType, type index_d$5_Scope as Scope, type index_d$5_SecuredMedia as SecuredMedia, type index_d$5_SelectedCarrierServiceOption as SelectedCarrierServiceOption, type index_d$5_SelectedCarrierServiceOptionOtherCharge as SelectedCarrierServiceOptionOtherCharge, type index_d$5_SelectedCarrierServiceOptionPrices as SelectedCarrierServiceOptionPrices, type index_d$5_SelectedMembership as SelectedMembership, type index_d$5_SelectedMemberships as SelectedMemberships, type ServiceProperties$1 as ServiceProperties, index_d$5_Severity as Severity, type ShippingInfo$1 as ShippingInfo, type index_d$5_ShippingOption as ShippingOption, type ShippingPrice$1 as ShippingPrice, type ShippingRegion$1 as ShippingRegion, SortOrder$2 as SortOrder, type Sorting$2 as Sorting, index_d$5_Status as Status, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type SystemError$1 as SystemError, type index_d$5_Target as Target, type index_d$5_TargetLineItem as TargetLineItem, type index_d$5_TargetTargetTypeOneOf as TargetTargetTypeOneOf, type index_d$5_TaxBreakdown as TaxBreakdown, type index_d$5_TaxCalculationDetails as TaxCalculationDetails, type index_d$5_TaxCalculationDetailsCalculationDetailsOneOf as TaxCalculationDetailsCalculationDetailsOneOf, type index_d$5_TaxRateBreakdown as TaxRateBreakdown, type TaxSummary$1 as TaxSummary, type index_d$5_Title as Title, type UndeleteInfo$1 as UndeleteInfo, type index_d$5_UpdateCheckoutTemplate as UpdateCheckoutTemplate, type index_d$5_UpdateCheckoutTemplateRequest as UpdateCheckoutTemplateRequest, type index_d$5_UpdateCheckoutTemplateResponse as UpdateCheckoutTemplateResponse, type index_d$5_UpdateCheckoutTemplateResponseNonNullableFields as UpdateCheckoutTemplateResponseNonNullableFields, type index_d$5_V1LineItem as V1LineItem, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, type index_d$5_Violation as Violation, type index_d$5_WebClientCustomization as WebClientCustomization, WebhookIdentityType$4 as WebhookIdentityType, WeightUnit$2 as WeightUnit, __metadata$5 as __metadata, index_d$5_createCheckoutFromTemplate as createCheckoutFromTemplate, index_d$5_createCheckoutTemplate as createCheckoutTemplate, index_d$5_deleteCheckoutTemplate as deleteCheckoutTemplate, index_d$5_getCheckoutTemplate as getCheckoutTemplate, index_d$5_onCheckoutTemplateCreated as onCheckoutTemplateCreated, index_d$5_onCheckoutTemplateDeleted as onCheckoutTemplateDeleted, index_d$5_onCheckoutTemplateUpdated as onCheckoutTemplateUpdated, index_d$5_onCheckoutTemplateUsed as onCheckoutTemplateUsed, index_d$5_queryCheckoutTemplates as queryCheckoutTemplates, index_d$5_updateCheckoutTemplate as updateCheckoutTemplate };
24174
24220
  }
24175
24221
 
24176
24222
  interface OrderWithFulfillments {
@@ -4424,6 +4424,7 @@ interface UpdateCartResponseNonNullableFields$3 {
4424
4424
  subscriptionSettings?: {
4425
4425
  frequency: SubscriptionFrequency$5;
4426
4426
  autoRenewal: boolean;
4427
+ enableCustomerCancellation: boolean;
4427
4428
  };
4428
4429
  title?: {
4429
4430
  original: string;
@@ -4607,6 +4608,7 @@ interface AddToCartResponseNonNullableFields$3 {
4607
4608
  subscriptionSettings?: {
4608
4609
  frequency: SubscriptionFrequency$5;
4609
4610
  autoRenewal: boolean;
4611
+ enableCustomerCancellation: boolean;
4610
4612
  };
4611
4613
  title?: {
4612
4614
  original: string;
@@ -4790,6 +4792,7 @@ interface RemoveLineItemsResponseNonNullableFields$5 {
4790
4792
  subscriptionSettings?: {
4791
4793
  frequency: SubscriptionFrequency$5;
4792
4794
  autoRenewal: boolean;
4795
+ enableCustomerCancellation: boolean;
4793
4796
  };
4794
4797
  title?: {
4795
4798
  original: string;
@@ -4976,6 +4979,7 @@ interface RemoveCouponResponseNonNullableFields$5 {
4976
4979
  subscriptionSettings?: {
4977
4980
  frequency: SubscriptionFrequency$5;
4978
4981
  autoRenewal: boolean;
4982
+ enableCustomerCancellation: boolean;
4979
4983
  };
4980
4984
  title?: {
4981
4985
  original: string;
@@ -5159,6 +5163,7 @@ interface UpdateLineItemsQuantityResponseNonNullableFields$5 {
5159
5163
  subscriptionSettings?: {
5160
5164
  frequency: SubscriptionFrequency$5;
5161
5165
  autoRenewal: boolean;
5166
+ enableCustomerCancellation: boolean;
5162
5167
  };
5163
5168
  title?: {
5164
5169
  original: string;
@@ -5342,6 +5347,7 @@ interface EstimateTotalsResponseNonNullableFields$3 {
5342
5347
  subscriptionSettings?: {
5343
5348
  frequency: SubscriptionFrequency$5;
5344
5349
  autoRenewal: boolean;
5350
+ enableCustomerCancellation: boolean;
5345
5351
  };
5346
5352
  title?: {
5347
5353
  original: string;
@@ -6335,6 +6341,7 @@ interface CreateCartResponseNonNullableFields$1 {
6335
6341
  subscriptionSettings?: {
6336
6342
  frequency: SubscriptionFrequency$5;
6337
6343
  autoRenewal: boolean;
6344
+ enableCustomerCancellation: boolean;
6338
6345
  };
6339
6346
  title?: {
6340
6347
  original: string;
@@ -6518,6 +6525,7 @@ interface GetCartResponseNonNullableFields$1 {
6518
6525
  subscriptionSettings?: {
6519
6526
  frequency: SubscriptionFrequency$5;
6520
6527
  autoRenewal: boolean;
6528
+ enableCustomerCancellation: boolean;
6521
6529
  };
6522
6530
  title?: {
6523
6531
  original: string;
@@ -10970,6 +10978,7 @@ interface GetCurrentCartResponseNonNullableFields$1 {
10970
10978
  subscriptionSettings?: {
10971
10979
  frequency: SubscriptionFrequency$4;
10972
10980
  autoRenewal: boolean;
10981
+ enableCustomerCancellation: boolean;
10973
10982
  };
10974
10983
  title?: {
10975
10984
  original: string;
@@ -11153,6 +11162,7 @@ interface UpdateCartResponseNonNullableFields$1 {
11153
11162
  subscriptionSettings?: {
11154
11163
  frequency: SubscriptionFrequency$4;
11155
11164
  autoRenewal: boolean;
11165
+ enableCustomerCancellation: boolean;
11156
11166
  };
11157
11167
  title?: {
11158
11168
  original: string;
@@ -11336,6 +11346,7 @@ interface AddToCartResponseNonNullableFields$1 {
11336
11346
  subscriptionSettings?: {
11337
11347
  frequency: SubscriptionFrequency$4;
11338
11348
  autoRenewal: boolean;
11349
+ enableCustomerCancellation: boolean;
11339
11350
  };
11340
11351
  title?: {
11341
11352
  original: string;
@@ -11519,6 +11530,7 @@ interface RemoveLineItemsResponseNonNullableFields$3 {
11519
11530
  subscriptionSettings?: {
11520
11531
  frequency: SubscriptionFrequency$4;
11521
11532
  autoRenewal: boolean;
11533
+ enableCustomerCancellation: boolean;
11522
11534
  };
11523
11535
  title?: {
11524
11536
  original: string;
@@ -11705,6 +11717,7 @@ interface RemoveCouponResponseNonNullableFields$3 {
11705
11717
  subscriptionSettings?: {
11706
11718
  frequency: SubscriptionFrequency$4;
11707
11719
  autoRenewal: boolean;
11720
+ enableCustomerCancellation: boolean;
11708
11721
  };
11709
11722
  title?: {
11710
11723
  original: string;
@@ -11888,6 +11901,7 @@ interface UpdateLineItemsQuantityResponseNonNullableFields$3 {
11888
11901
  subscriptionSettings?: {
11889
11902
  frequency: SubscriptionFrequency$4;
11890
11903
  autoRenewal: boolean;
11904
+ enableCustomerCancellation: boolean;
11891
11905
  };
11892
11906
  title?: {
11893
11907
  original: string;
@@ -12071,6 +12085,7 @@ interface EstimateTotalsResponseNonNullableFields$1 {
12071
12085
  subscriptionSettings?: {
12072
12086
  frequency: SubscriptionFrequency$4;
12073
12087
  autoRenewal: boolean;
12088
+ enableCustomerCancellation: boolean;
12074
12089
  };
12075
12090
  title?: {
12076
12091
  original: string;
@@ -17053,6 +17068,18 @@ interface CustomSettings$1 {
17053
17068
  * Default: `false`
17054
17069
  */
17055
17070
  lockCouponCode?: boolean;
17071
+ /**
17072
+ * Whether to disable policy agreement checkout in the checkout page
17073
+ *
17074
+ * Default: `false`
17075
+ */
17076
+ disabledPolicyAgreementCheckbox?: boolean;
17077
+ /**
17078
+ * Whether to disable manual payment option for this checkout.
17079
+ *
17080
+ * Default: `false`
17081
+ */
17082
+ disabledManualPayment?: boolean;
17056
17083
  }
17057
17084
  interface CreateCheckoutRequest$1 {
17058
17085
  /** Checkout information. */
@@ -17400,6 +17427,7 @@ interface CreateCheckoutResponseNonNullableFields$1 {
17400
17427
  subscriptionSettings?: {
17401
17428
  frequency: SubscriptionFrequency$3;
17402
17429
  autoRenewal: boolean;
17430
+ enableCustomerCancellation: boolean;
17403
17431
  };
17404
17432
  title?: {
17405
17433
  original: string;
@@ -18397,6 +18425,7 @@ interface GetCheckoutResponseNonNullableFields$1 {
18397
18425
  subscriptionSettings?: {
18398
18426
  frequency: SubscriptionFrequency$3;
18399
18427
  autoRenewal: boolean;
18428
+ enableCustomerCancellation: boolean;
18400
18429
  };
18401
18430
  title?: {
18402
18431
  original: string;
@@ -19397,6 +19426,7 @@ interface UpdateCheckoutResponseNonNullableFields$1 {
19397
19426
  subscriptionSettings?: {
19398
19427
  frequency: SubscriptionFrequency$3;
19399
19428
  autoRenewal: boolean;
19429
+ enableCustomerCancellation: boolean;
19400
19430
  };
19401
19431
  title?: {
19402
19432
  original: string;
@@ -20394,6 +20424,7 @@ interface RemoveCouponResponseNonNullableFields$1 {
20394
20424
  subscriptionSettings?: {
20395
20425
  frequency: SubscriptionFrequency$3;
20396
20426
  autoRenewal: boolean;
20427
+ enableCustomerCancellation: boolean;
20397
20428
  };
20398
20429
  title?: {
20399
20430
  original: string;
@@ -21391,6 +21422,7 @@ interface RemoveGiftCardResponseNonNullableFields$1 {
21391
21422
  subscriptionSettings?: {
21392
21423
  frequency: SubscriptionFrequency$3;
21393
21424
  autoRenewal: boolean;
21425
+ enableCustomerCancellation: boolean;
21394
21426
  };
21395
21427
  title?: {
21396
21428
  original: string;
@@ -22388,6 +22420,7 @@ interface RemoveOverrideCheckoutUrlResponseNonNullableFields$1 {
22388
22420
  subscriptionSettings?: {
22389
22421
  frequency: SubscriptionFrequency$3;
22390
22422
  autoRenewal: boolean;
22423
+ enableCustomerCancellation: boolean;
22391
22424
  };
22392
22425
  title?: {
22393
22426
  original: string;
@@ -23385,6 +23418,7 @@ interface AddToCheckoutResponseNonNullableFields$1 {
23385
23418
  subscriptionSettings?: {
23386
23419
  frequency: SubscriptionFrequency$3;
23387
23420
  autoRenewal: boolean;
23421
+ enableCustomerCancellation: boolean;
23388
23422
  };
23389
23423
  title?: {
23390
23424
  original: string;
@@ -24382,6 +24416,7 @@ interface RemoveLineItemsResponseNonNullableFields$1 {
24382
24416
  subscriptionSettings?: {
24383
24417
  frequency: SubscriptionFrequency$3;
24384
24418
  autoRenewal: boolean;
24419
+ enableCustomerCancellation: boolean;
24385
24420
  };
24386
24421
  title?: {
24387
24422
  original: string;
@@ -25383,6 +25418,7 @@ interface UpdateLineItemsQuantityResponseNonNullableFields$1 {
25383
25418
  subscriptionSettings?: {
25384
25419
  frequency: SubscriptionFrequency$3;
25385
25420
  autoRenewal: boolean;
25421
+ enableCustomerCancellation: boolean;
25386
25422
  };
25387
25423
  title?: {
25388
25424
  original: string;
@@ -27453,6 +27489,18 @@ interface CustomSettings {
27453
27489
  * Default: `false`
27454
27490
  */
27455
27491
  lockCouponCode?: boolean;
27492
+ /**
27493
+ * Whether to disable policy agreement checkout in the checkout page
27494
+ *
27495
+ * Default: `false`
27496
+ */
27497
+ disabledPolicyAgreementCheckbox?: boolean;
27498
+ /**
27499
+ * Whether to disable manual payment option for this checkout.
27500
+ *
27501
+ * Default: `false`
27502
+ */
27503
+ disabledManualPayment?: boolean;
27456
27504
  }
27457
27505
  interface CreateCheckoutRequest {
27458
27506
  /** Checkout information. */
@@ -28318,6 +28366,8 @@ interface CreateCheckoutResponseNonNullableFields {
28318
28366
  customSettings?: {
28319
28367
  lockGiftCard: boolean;
28320
28368
  lockCouponCode: boolean;
28369
+ disabledPolicyAgreementCheckbox: boolean;
28370
+ disabledManualPayment: boolean;
28321
28371
  };
28322
28372
  };
28323
28373
  }
@@ -29020,6 +29070,8 @@ interface GetCheckoutResponseNonNullableFields {
29020
29070
  customSettings?: {
29021
29071
  lockGiftCard: boolean;
29022
29072
  lockCouponCode: boolean;
29073
+ disabledPolicyAgreementCheckbox: boolean;
29074
+ disabledManualPayment: boolean;
29023
29075
  };
29024
29076
  };
29025
29077
  }
@@ -29725,6 +29777,8 @@ interface UpdateCheckoutResponseNonNullableFields {
29725
29777
  customSettings?: {
29726
29778
  lockGiftCard: boolean;
29727
29779
  lockCouponCode: boolean;
29780
+ disabledPolicyAgreementCheckbox: boolean;
29781
+ disabledManualPayment: boolean;
29728
29782
  };
29729
29783
  };
29730
29784
  }
@@ -30427,6 +30481,8 @@ interface RemoveCouponResponseNonNullableFields {
30427
30481
  customSettings?: {
30428
30482
  lockGiftCard: boolean;
30429
30483
  lockCouponCode: boolean;
30484
+ disabledPolicyAgreementCheckbox: boolean;
30485
+ disabledManualPayment: boolean;
30430
30486
  };
30431
30487
  };
30432
30488
  }
@@ -31129,6 +31185,8 @@ interface RemoveGiftCardResponseNonNullableFields {
31129
31185
  customSettings?: {
31130
31186
  lockGiftCard: boolean;
31131
31187
  lockCouponCode: boolean;
31188
+ disabledPolicyAgreementCheckbox: boolean;
31189
+ disabledManualPayment: boolean;
31132
31190
  };
31133
31191
  };
31134
31192
  }
@@ -31831,6 +31889,8 @@ interface RemoveOverrideCheckoutUrlResponseNonNullableFields {
31831
31889
  customSettings?: {
31832
31890
  lockGiftCard: boolean;
31833
31891
  lockCouponCode: boolean;
31892
+ disabledPolicyAgreementCheckbox: boolean;
31893
+ disabledManualPayment: boolean;
31834
31894
  };
31835
31895
  };
31836
31896
  }
@@ -32533,6 +32593,8 @@ interface AddToCheckoutResponseNonNullableFields {
32533
32593
  customSettings?: {
32534
32594
  lockGiftCard: boolean;
32535
32595
  lockCouponCode: boolean;
32596
+ disabledPolicyAgreementCheckbox: boolean;
32597
+ disabledManualPayment: boolean;
32536
32598
  };
32537
32599
  };
32538
32600
  }
@@ -33235,6 +33297,8 @@ interface RemoveLineItemsResponseNonNullableFields {
33235
33297
  customSettings?: {
33236
33298
  lockGiftCard: boolean;
33237
33299
  lockCouponCode: boolean;
33300
+ disabledPolicyAgreementCheckbox: boolean;
33301
+ disabledManualPayment: boolean;
33238
33302
  };
33239
33303
  };
33240
33304
  }
@@ -33941,6 +34005,8 @@ interface UpdateLineItemsQuantityResponseNonNullableFields {
33941
34005
  customSettings?: {
33942
34006
  lockGiftCard: boolean;
33943
34007
  lockCouponCode: boolean;
34008
+ disabledPolicyAgreementCheckbox: boolean;
34009
+ disabledManualPayment: boolean;
33944
34010
  };
33945
34011
  };
33946
34012
  }
@@ -34767,6 +34833,7 @@ interface CreateCheckoutTemplateResponseNonNullableFields$1 {
34767
34833
  subscriptionSettings?: {
34768
34834
  frequency: SubscriptionFrequency$2;
34769
34835
  autoRenewal: boolean;
34836
+ enableCustomerCancellation: boolean;
34770
34837
  };
34771
34838
  title?: {
34772
34839
  original: string;
@@ -34887,6 +34954,7 @@ interface GetCheckoutTemplateResponseNonNullableFields$1 {
34887
34954
  subscriptionSettings?: {
34888
34955
  frequency: SubscriptionFrequency$2;
34889
34956
  autoRenewal: boolean;
34957
+ enableCustomerCancellation: boolean;
34890
34958
  };
34891
34959
  title?: {
34892
34960
  original: string;
@@ -35007,6 +35075,7 @@ interface UpdateCheckoutTemplateResponseNonNullableFields$1 {
35007
35075
  subscriptionSettings?: {
35008
35076
  frequency: SubscriptionFrequency$2;
35009
35077
  autoRenewal: boolean;
35078
+ enableCustomerCancellation: boolean;
35010
35079
  };
35011
35080
  title?: {
35012
35081
  original: string;
@@ -35127,6 +35196,7 @@ interface QueryCheckoutTemplatesResponseNonNullableFields$1 {
35127
35196
  subscriptionSettings?: {
35128
35197
  frequency: SubscriptionFrequency$2;
35129
35198
  autoRenewal: boolean;
35199
+ enableCustomerCancellation: boolean;
35130
35200
  };
35131
35201
  title?: {
35132
35202
  original: string;