@wix/ecom 1.0.754 → 1.0.756

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.754",
3
+ "version": "1.0.756",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -24,7 +24,7 @@
24
24
  "@wix/ecom_back-in-stock-notifications": "1.0.48",
25
25
  "@wix/ecom_back-in-stock-settings": "1.0.34",
26
26
  "@wix/ecom_cart": "1.0.72",
27
- "@wix/ecom_checkout": "1.0.82",
27
+ "@wix/ecom_checkout": "1.0.83",
28
28
  "@wix/ecom_checkout-content": "1.0.5",
29
29
  "@wix/ecom_checkout-settings": "1.0.50",
30
30
  "@wix/ecom_checkout-templates": "1.0.82",
@@ -35,7 +35,7 @@
35
35
  "@wix/ecom_discount-rules": "1.0.51",
36
36
  "@wix/ecom_discounts": "1.0.2",
37
37
  "@wix/ecom_discounts-custom-trigger": "1.0.6",
38
- "@wix/ecom_draft-orders": "1.0.17",
38
+ "@wix/ecom_draft-orders": "1.0.18",
39
39
  "@wix/ecom_gift-vouchers": "1.0.0",
40
40
  "@wix/ecom_gift-vouchers-provider": "1.0.2",
41
41
  "@wix/ecom_local-delivery-options": "1.0.7",
@@ -43,9 +43,9 @@
43
43
  "@wix/ecom_order-invoices": "1.0.38",
44
44
  "@wix/ecom_order-payment-requests": "1.0.9",
45
45
  "@wix/ecom_order-transactions": "1.0.65",
46
- "@wix/ecom_orders": "1.0.118",
46
+ "@wix/ecom_orders": "1.0.119",
47
47
  "@wix/ecom_orders-settings": "1.0.44",
48
- "@wix/ecom_payment-settings": "1.0.40",
48
+ "@wix/ecom_payment-settings": "1.0.41",
49
49
  "@wix/ecom_pickup-locations": "1.0.7",
50
50
  "@wix/ecom_recommendations": "1.0.39",
51
51
  "@wix/ecom_shipping-options": "1.0.6",
@@ -77,5 +77,5 @@
77
77
  "fqdn": ""
78
78
  }
79
79
  },
80
- "falconPackageHash": "5ff15db82e2fabb77ccaf75f0c556bbda856523646ca0e09bfea82cc"
80
+ "falconPackageHash": "354efa49ebd3ebb2aad8b3aa24cb57957e3d42dea5f943963a1d5219"
81
81
  }
@@ -10549,6 +10549,17 @@ interface UpdateLineItemsQuantityResponse {
10549
10549
  /** Updated checkout. */
10550
10550
  checkout?: Checkout$1;
10551
10551
  }
10552
+ interface GetCheckoutPaymentSettingsRequest {
10553
+ /** Checkout ID. */
10554
+ _id: string;
10555
+ }
10556
+ interface GetCheckoutPaymentSettingsResponse {
10557
+ blockedPaymentOptions?: PaymentOption[];
10558
+ }
10559
+ declare enum PaymentOption {
10560
+ UNKNOWN_PAYMENT_OPTION = "UNKNOWN_PAYMENT_OPTION",
10561
+ MANUAL = "MANUAL"
10562
+ }
10552
10563
  interface SubscriptionCreated {
10553
10564
  subscription?: Subscription;
10554
10565
  }
@@ -11501,6 +11512,9 @@ interface CreateOrderResponseNonNullableFields$1 {
11501
11512
  interface UpdateLineItemsQuantityResponseNonNullableFields {
11502
11513
  checkout?: CheckoutNonNullableFields;
11503
11514
  }
11515
+ interface GetCheckoutPaymentSettingsResponseNonNullableFields {
11516
+ blockedPaymentOptions: PaymentOption[];
11517
+ }
11504
11518
  interface BaseEventMetadata$b {
11505
11519
  /** App instance ID. */
11506
11520
  instanceId?: string | null;
@@ -11970,6 +11984,11 @@ interface UpdateLineItemsQuantitySignature {
11970
11984
  */
11971
11985
  (_id: string, lineItems: LineItemQuantityUpdate[]): Promise<UpdateLineItemsQuantityResponse & UpdateLineItemsQuantityResponseNonNullableFields>;
11972
11986
  }
11987
+ declare function getCheckoutPaymentSettings$1(httpClient: HttpClient): GetCheckoutPaymentSettingsSignature;
11988
+ interface GetCheckoutPaymentSettingsSignature {
11989
+ /** @param - Checkout ID. */
11990
+ (_id: string): Promise<GetCheckoutPaymentSettingsResponse & GetCheckoutPaymentSettingsResponseNonNullableFields>;
11991
+ }
11973
11992
  declare const onCheckoutCreated$1: EventDefinition<CheckoutCreatedEnvelope, "wix.ecom.v1.checkout_created">;
11974
11993
  declare const onCheckoutUpdated$1: EventDefinition<CheckoutUpdatedEnvelope, "wix.ecom.v1.checkout_updated">;
11975
11994
  declare const onCheckoutCompleted$1: EventDefinition<CheckoutCompletedEnvelope, "wix.ecom.v1.checkout_completed">;
@@ -11989,6 +12008,7 @@ declare const removeLineItems: BuildRESTFunction<typeof removeLineItems$1> & typ
11989
12008
  declare const createOrder$2: BuildRESTFunction<typeof createOrder$3> & typeof createOrder$3;
11990
12009
  declare const markCheckoutAsCompleted: BuildRESTFunction<typeof markCheckoutAsCompleted$1> & typeof markCheckoutAsCompleted$1;
11991
12010
  declare const updateLineItemsQuantity: BuildRESTFunction<typeof updateLineItemsQuantity$1> & typeof updateLineItemsQuantity$1;
12011
+ declare const getCheckoutPaymentSettings: BuildRESTFunction<typeof getCheckoutPaymentSettings$1> & typeof getCheckoutPaymentSettings$1;
11992
12012
 
11993
12013
  type _publicOnCheckoutCreatedType = typeof onCheckoutCreated$1;
11994
12014
  /**
@@ -12041,6 +12061,9 @@ type context$g_DoublePaymentErrorDataIdOneOf = DoublePaymentErrorDataIdOneOf;
12041
12061
  type context$g_GetCheckoutByCartIdRequest = GetCheckoutByCartIdRequest;
12042
12062
  type context$g_GetCheckoutByCartIdResponse = GetCheckoutByCartIdResponse;
12043
12063
  type context$g_GetCheckoutByCartIdResponseNonNullableFields = GetCheckoutByCartIdResponseNonNullableFields;
12064
+ type context$g_GetCheckoutPaymentSettingsRequest = GetCheckoutPaymentSettingsRequest;
12065
+ type context$g_GetCheckoutPaymentSettingsResponse = GetCheckoutPaymentSettingsResponse;
12066
+ type context$g_GetCheckoutPaymentSettingsResponseNonNullableFields = GetCheckoutPaymentSettingsResponseNonNullableFields;
12044
12067
  type context$g_GetCheckoutRequest = GetCheckoutRequest;
12045
12068
  type context$g_GetCheckoutResponse = GetCheckoutResponse;
12046
12069
  type context$g_GetCheckoutResponseNonNullableFields = GetCheckoutResponseNonNullableFields;
@@ -12055,6 +12078,8 @@ type context$g_LineItemQuantityUpdate = LineItemQuantityUpdate;
12055
12078
  type context$g_MarkCheckoutAsCompletedRequest = MarkCheckoutAsCompletedRequest;
12056
12079
  type context$g_MarkCheckoutAsCompletedResponse = MarkCheckoutAsCompletedResponse;
12057
12080
  type context$g_PaymentErrorResponseData = PaymentErrorResponseData;
12081
+ type context$g_PaymentOption = PaymentOption;
12082
+ declare const context$g_PaymentOption: typeof PaymentOption;
12058
12083
  type context$g_ProductDetails = ProductDetails;
12059
12084
  type context$g_RedeemErrorData = RedeemErrorData;
12060
12085
  type context$g_RemoveCouponRequest = RemoveCouponRequest;
@@ -12097,6 +12122,7 @@ declare const context$g_addToCheckout: typeof addToCheckout;
12097
12122
  declare const context$g_createCheckout: typeof createCheckout;
12098
12123
  declare const context$g_getCheckout: typeof getCheckout;
12099
12124
  declare const context$g_getCheckoutByCartId: typeof getCheckoutByCartId;
12125
+ declare const context$g_getCheckoutPaymentSettings: typeof getCheckoutPaymentSettings;
12100
12126
  declare const context$g_getCheckoutUrl: typeof getCheckoutUrl;
12101
12127
  declare const context$g_markCheckoutAsCompleted: typeof markCheckoutAsCompleted;
12102
12128
  declare const context$g_onCheckoutCompleted: typeof onCheckoutCompleted;
@@ -12109,7 +12135,7 @@ declare const context$g_removeOverrideCheckoutUrl: typeof removeOverrideCheckout
12109
12135
  declare const context$g_updateCheckout: typeof updateCheckout;
12110
12136
  declare const context$g_updateLineItemsQuantity: typeof updateLineItemsQuantity;
12111
12137
  declare namespace context$g {
12112
- export { type ActionEvent$d as ActionEvent, type context$g_AddToCheckoutOptions as AddToCheckoutOptions, type context$g_AddToCheckoutRequest as AddToCheckoutRequest, type context$g_AddToCheckoutResponse as AddToCheckoutResponse, type context$g_AddToCheckoutResponseNonNullableFields as AddToCheckoutResponseNonNullableFields, type AdditionalFee$4 as AdditionalFee, type Address$7 as Address, type AddressAddressLine1OptionsOneOf$1 as AddressAddressLine1OptionsOneOf, type AddressLocation$6 as AddressLocation, type AddressWithContact$3 as AddressWithContact, type AggregatedTaxBreakdown$2 as AggregatedTaxBreakdown, type context$g_ApiAddress as ApiAddress, type ApplicationError$8 as ApplicationError, type AppliedCoupon$1 as AppliedCoupon, type AppliedDiscount$4 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$4 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$2 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$b as BaseEventMetadata, type BillingInfo$1 as BillingInfo, type BuyerInfo$5 as BuyerInfo, type BuyerInfoIdOneOf$3 as BuyerInfoIdOneOf, type CalculationErrors$3 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$3 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$3 as CarrierError, type CarrierErrors$3 as CarrierErrors, type CarrierServiceOption$2 as CarrierServiceOption, type CatalogOverrideFields$1 as CatalogOverrideFields, type CatalogReference$4 as CatalogReference, type ChannelInfo$3 as ChannelInfo, context$g_ChannelInfoChannelType as ChannelInfoChannelType, ChannelType$4 as ChannelType, type context$g_ChargeDetails as ChargeDetails, ChargeType$3 as ChargeType, type Checkout$1 as Checkout, type context$g_CheckoutCompletedEnvelope as CheckoutCompletedEnvelope, type context$g_CheckoutCreatedEnvelope as CheckoutCreatedEnvelope, type context$g_CheckoutMarkedAsCompleted as CheckoutMarkedAsCompleted, type context$g_CheckoutNonNullableFields as CheckoutNonNullableFields, type context$g_CheckoutUpdatedEnvelope as CheckoutUpdatedEnvelope, type Color$3 as Color, type context$g_CommonVatId as CommonVatId, context$g_CommonVatType as CommonVatType, type ConversionInfo$1 as ConversionInfo, type Coupon$4 as Coupon, type context$g_CreateCheckoutOptions as CreateCheckoutOptions, type context$g_CreateCheckoutRequest as CreateCheckoutRequest, type context$g_CreateCheckoutResponse as CreateCheckoutResponse, type context$g_CreateCheckoutResponseNonNullableFields as CreateCheckoutResponseNonNullableFields, type context$g_CreateOrderAndChargeRequest as CreateOrderAndChargeRequest, type context$g_CreateOrderAndChargeResponse as CreateOrderAndChargeResponse, type context$g_CreateOrderAndChargeResponseIdOneOf as CreateOrderAndChargeResponseIdOneOf, type context$g_CreateOrderOptions as CreateOrderOptions, type CreateOrderRequest$1 as CreateOrderRequest, type CreateOrderResponse$1 as CreateOrderResponse, type context$g_CreateOrderResponseIdOneOf as CreateOrderResponseIdOneOf, type CreateOrderResponseNonNullableFields$1 as CreateOrderResponseNonNullableFields, type CreatedBy$3 as CreatedBy, type CreatedByIdOneOf$1 as CreatedByIdOneOf, type CustomContentReference$1 as CustomContentReference, type CustomField$4 as CustomField, type CustomLineItem$2 as CustomLineItem, type CustomSettings$1 as CustomSettings, type CustomTextFieldSelection$1 as CustomTextFieldSelection, type DeliveryLogistics$4 as DeliveryLogistics, type DeliveryTimeSlot$4 as DeliveryTimeSlot, type Description$1 as Description, type DescriptionLine$3 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$3 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$3 as DescriptionLineName, DescriptionLineType$3 as DescriptionLineType, type DescriptionLineValueOneOf$3 as DescriptionLineValueOneOf, type Details$3 as Details, type DetailsKindOneOf$3 as DetailsKindOneOf, type Discount$2 as Discount, context$g_DiscountDiscountType as DiscountDiscountType, type DiscountRule$4 as DiscountRule, type DiscountRuleName$4 as DiscountRuleName, DiscountType$4 as DiscountType, type DomainEvent$d as DomainEvent, type DomainEventBodyOneOf$d as DomainEventBodyOneOf, type context$g_DoublePaymentErrorData as DoublePaymentErrorData, type context$g_DoublePaymentErrorDataIdOneOf as DoublePaymentErrorDataIdOneOf, type Empty$8 as Empty, type EntityCreatedEvent$d as EntityCreatedEvent, type EntityDeletedEvent$d as EntityDeletedEvent, type EntityUpdatedEvent$d as EntityUpdatedEvent, type EventMetadata$b as EventMetadata, type ExtendedFields$7 as ExtendedFields, type ExternalReference$2 as ExternalReference, FallbackReason$2 as FallbackReason, type FieldViolation$3 as FieldViolation, FileType$2 as FileType, type FullAddressContactDetails$3 as FullAddressContactDetails, type FullName$1 as FullName, type context$g_GetCheckoutByCartIdRequest as GetCheckoutByCartIdRequest, type context$g_GetCheckoutByCartIdResponse as GetCheckoutByCartIdResponse, type context$g_GetCheckoutByCartIdResponseNonNullableFields as GetCheckoutByCartIdResponseNonNullableFields, type context$g_GetCheckoutRequest as GetCheckoutRequest, type context$g_GetCheckoutResponse as GetCheckoutResponse, type context$g_GetCheckoutResponseNonNullableFields as GetCheckoutResponseNonNullableFields, type context$g_GetCheckoutURLRequest as GetCheckoutURLRequest, type context$g_GetCheckoutURLResponse as GetCheckoutURLResponse, type context$g_GetCheckoutURLResponseNonNullableFields as GetCheckoutURLResponseNonNullableFields, type context$g_GetCheckoutWithAllExtendedFieldsRequest as GetCheckoutWithAllExtendedFieldsRequest, type context$g_GetCheckoutWithAllExtendedFieldsResponse as GetCheckoutWithAllExtendedFieldsResponse, type context$g_GetWixCheckoutURLRequest as GetWixCheckoutURLRequest, type context$g_GetWixCheckoutURLResponse as GetWixCheckoutURLResponse, type GiftCard$4 as GiftCard, type Group$2 as Group, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type InvalidMembership$2 as InvalidMembership, type ItemAvailabilityInfo$1 as ItemAvailabilityInfo, ItemAvailabilityStatus$1 as ItemAvailabilityStatus, type ItemTaxFullDetails$4 as ItemTaxFullDetails, type ItemType$4 as ItemType, ItemTypeItemType$4 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$4 as ItemTypeItemTypeDataOneOf, JurisdictionType$4 as JurisdictionType, type LineItem$4 as LineItem, type LineItemDiscount$4 as LineItemDiscount, type context$g_LineItemQuantityUpdate as LineItemQuantityUpdate, LineItemType$1 as LineItemType, ManualCalculationReason$2 as ManualCalculationReason, type context$g_MarkCheckoutAsCompletedRequest as MarkCheckoutAsCompletedRequest, type context$g_MarkCheckoutAsCompletedResponse as MarkCheckoutAsCompletedResponse, type MediaItem$1 as MediaItem, MediaItemType$1 as MediaItemType, type Membership$2 as Membership, type MembershipName$5 as MembershipName, type MembershipOptions$2 as MembershipOptions, type MembershipPaymentCredits$2 as MembershipPaymentCredits, type MerchantDiscount$4 as MerchantDiscount, type MerchantDiscountInput$1 as MerchantDiscountInput, type MessageEnvelope$d as MessageEnvelope, type MultiCurrencyPrice$2 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type OptionSelection$1 as OptionSelection, type Other$1 as Other, type OtherCharge$2 as OtherCharge, type context$g_PaymentErrorResponseData as PaymentErrorResponseData, PaymentOptionType$4 as PaymentOptionType, type PhysicalProperties$4 as PhysicalProperties, type PickupAddress$3 as PickupAddress, type PickupDetails$5 as PickupDetails, PickupMethod$4 as PickupMethod, type PlainTextValue$3 as PlainTextValue, type PriceDescription$3 as PriceDescription, type PriceSummary$4 as PriceSummary, type context$g_ProductDetails as ProductDetails, type ProductName$3 as ProductName, RateType$2 as RateType, type context$g_RedeemErrorData as RedeemErrorData, type context$g_RemoveCouponRequest as RemoveCouponRequest, type context$g_RemoveCouponResponse as RemoveCouponResponse, type context$g_RemoveCouponResponseNonNullableFields as RemoveCouponResponseNonNullableFields, type context$g_RemoveGiftCardRequest as RemoveGiftCardRequest, type context$g_RemoveGiftCardResponse as RemoveGiftCardResponse, type context$g_RemoveGiftCardResponseNonNullableFields as RemoveGiftCardResponseNonNullableFields, type context$g_RemoveLineItemsRequest as RemoveLineItemsRequest, type context$g_RemoveLineItemsResponse as RemoveLineItemsResponse, type context$g_RemoveLineItemsResponseNonNullableFields as RemoveLineItemsResponseNonNullableFields, type context$g_RemoveOverrideCheckoutUrlRequest as RemoveOverrideCheckoutUrlRequest, type context$g_RemoveOverrideCheckoutUrlResponse as RemoveOverrideCheckoutUrlResponse, type context$g_RemoveOverrideCheckoutUrlResponseNonNullableFields as RemoveOverrideCheckoutUrlResponseNonNullableFields, type RestoreInfo$d as RestoreInfo, RuleType$3 as RuleType, type Scope$2 as Scope, type SecuredMedia$2 as SecuredMedia, type SelectedCarrierServiceOption$2 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$2 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$2 as SelectedCarrierServiceOptionPrices, type SelectedMembership$2 as SelectedMembership, type SelectedMemberships$2 as SelectedMemberships, type ServiceProperties$3 as ServiceProperties, Severity$1 as Severity, type ShipmentDetails$1 as ShipmentDetails, type context$g_ShippingCalculationErrorData as ShippingCalculationErrorData, type context$g_ShippingCalculationErrorDataShippingCalculationErrorOneOf as ShippingCalculationErrorDataShippingCalculationErrorOneOf, type ShippingInfo$2 as ShippingInfo, type ShippingOption$4 as ShippingOption, type ShippingPrice$4 as ShippingPrice, type ShippingRegion$4 as ShippingRegion, type context$g_StoreSettings as StoreSettings, type Street$1 as Street, type StreetAddress$6 as StreetAddress, type context$g_Subscription as Subscription, type context$g_SubscriptionCreated as SubscriptionCreated, SubscriptionFrequency$5 as SubscriptionFrequency, type SubscriptionOptionInfo$2 as SubscriptionOptionInfo, type SubscriptionSettings$5 as SubscriptionSettings, type SystemError$3 as SystemError, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$2 as TaxBreakdown, type TaxCalculationDetails$2 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$2 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$2 as TaxRateBreakdown, type TaxSummary$4 as TaxSummary, type TaxableAddress$3 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$3 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$3 as TaxableAddressType, type Title$1 as Title, type Totals$1 as Totals, type context$g_UpdateCheckout as UpdateCheckout, type context$g_UpdateCheckoutOptions as UpdateCheckoutOptions, type context$g_UpdateCheckoutRequest as UpdateCheckoutRequest, type context$g_UpdateCheckoutResponse as UpdateCheckoutResponse, type context$g_UpdateCheckoutResponseNonNullableFields as UpdateCheckoutResponseNonNullableFields, type context$g_UpdateLineItemsQuantityRequest as UpdateLineItemsQuantityRequest, type context$g_UpdateLineItemsQuantityResponse as UpdateLineItemsQuantityResponse, type context$g_UpdateLineItemsQuantityResponseNonNullableFields as UpdateLineItemsQuantityResponseNonNullableFields, type context$g_UpdatedCheckoutMessage as UpdatedCheckoutMessage, type context$g_V1BuyerInfo as V1BuyerInfo, type context$g_V1CustomField as V1CustomField, type V1LineItem$1 as V1LineItem, type V1PickupDetails$1 as V1PickupDetails, type context$g_V1ShippingInfo as V1ShippingInfo, type context$g_V1ShippingInfoDetailsOneOf as V1ShippingInfoDetailsOneOf, type context$g_V1SubscriptionOptionInfo as V1SubscriptionOptionInfo, type context$g_V1SubscriptionSettings as V1SubscriptionSettings, type ValidationError$3 as ValidationError, type VatId$4 as VatId, VatType$4 as VatType, type Violation$1 as Violation, type context$g_ViolationsList as ViolationsList, WebhookIdentityType$d as WebhookIdentityType, WeightUnit$5 as WeightUnit, type context$g__publicOnCheckoutCompletedType as _publicOnCheckoutCompletedType, type context$g__publicOnCheckoutCreatedType as _publicOnCheckoutCreatedType, type context$g__publicOnCheckoutUpdatedType as _publicOnCheckoutUpdatedType, context$g_addToCheckout as addToCheckout, context$g_createCheckout as createCheckout, createOrder$2 as createOrder, context$g_getCheckout as getCheckout, context$g_getCheckoutByCartId as getCheckoutByCartId, context$g_getCheckoutUrl as getCheckoutUrl, context$g_markCheckoutAsCompleted as markCheckoutAsCompleted, context$g_onCheckoutCompleted as onCheckoutCompleted, context$g_onCheckoutCreated as onCheckoutCreated, context$g_onCheckoutUpdated as onCheckoutUpdated, onCheckoutCompleted$1 as publicOnCheckoutCompleted, onCheckoutCreated$1 as publicOnCheckoutCreated, onCheckoutUpdated$1 as publicOnCheckoutUpdated, context$g_removeCoupon as removeCoupon, context$g_removeGiftCard as removeGiftCard, context$g_removeLineItems as removeLineItems, context$g_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, context$g_updateCheckout as updateCheckout, context$g_updateLineItemsQuantity as updateLineItemsQuantity };
12138
+ export { type ActionEvent$d as ActionEvent, type context$g_AddToCheckoutOptions as AddToCheckoutOptions, type context$g_AddToCheckoutRequest as AddToCheckoutRequest, type context$g_AddToCheckoutResponse as AddToCheckoutResponse, type context$g_AddToCheckoutResponseNonNullableFields as AddToCheckoutResponseNonNullableFields, type AdditionalFee$4 as AdditionalFee, type Address$7 as Address, type AddressAddressLine1OptionsOneOf$1 as AddressAddressLine1OptionsOneOf, type AddressLocation$6 as AddressLocation, type AddressWithContact$3 as AddressWithContact, type AggregatedTaxBreakdown$2 as AggregatedTaxBreakdown, type context$g_ApiAddress as ApiAddress, type ApplicationError$8 as ApplicationError, type AppliedCoupon$1 as AppliedCoupon, type AppliedDiscount$4 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$4 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$2 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$b as BaseEventMetadata, type BillingInfo$1 as BillingInfo, type BuyerInfo$5 as BuyerInfo, type BuyerInfoIdOneOf$3 as BuyerInfoIdOneOf, type CalculationErrors$3 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$3 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$3 as CarrierError, type CarrierErrors$3 as CarrierErrors, type CarrierServiceOption$2 as CarrierServiceOption, type CatalogOverrideFields$1 as CatalogOverrideFields, type CatalogReference$4 as CatalogReference, type ChannelInfo$3 as ChannelInfo, context$g_ChannelInfoChannelType as ChannelInfoChannelType, ChannelType$4 as ChannelType, type context$g_ChargeDetails as ChargeDetails, ChargeType$3 as ChargeType, type Checkout$1 as Checkout, type context$g_CheckoutCompletedEnvelope as CheckoutCompletedEnvelope, type context$g_CheckoutCreatedEnvelope as CheckoutCreatedEnvelope, type context$g_CheckoutMarkedAsCompleted as CheckoutMarkedAsCompleted, type context$g_CheckoutNonNullableFields as CheckoutNonNullableFields, type context$g_CheckoutUpdatedEnvelope as CheckoutUpdatedEnvelope, type Color$3 as Color, type context$g_CommonVatId as CommonVatId, context$g_CommonVatType as CommonVatType, type ConversionInfo$1 as ConversionInfo, type Coupon$4 as Coupon, type context$g_CreateCheckoutOptions as CreateCheckoutOptions, type context$g_CreateCheckoutRequest as CreateCheckoutRequest, type context$g_CreateCheckoutResponse as CreateCheckoutResponse, type context$g_CreateCheckoutResponseNonNullableFields as CreateCheckoutResponseNonNullableFields, type context$g_CreateOrderAndChargeRequest as CreateOrderAndChargeRequest, type context$g_CreateOrderAndChargeResponse as CreateOrderAndChargeResponse, type context$g_CreateOrderAndChargeResponseIdOneOf as CreateOrderAndChargeResponseIdOneOf, type context$g_CreateOrderOptions as CreateOrderOptions, type CreateOrderRequest$1 as CreateOrderRequest, type CreateOrderResponse$1 as CreateOrderResponse, type context$g_CreateOrderResponseIdOneOf as CreateOrderResponseIdOneOf, type CreateOrderResponseNonNullableFields$1 as CreateOrderResponseNonNullableFields, type CreatedBy$3 as CreatedBy, type CreatedByIdOneOf$1 as CreatedByIdOneOf, type CustomContentReference$1 as CustomContentReference, type CustomField$4 as CustomField, type CustomLineItem$2 as CustomLineItem, type CustomSettings$1 as CustomSettings, type CustomTextFieldSelection$1 as CustomTextFieldSelection, type DeliveryLogistics$4 as DeliveryLogistics, type DeliveryTimeSlot$4 as DeliveryTimeSlot, type Description$1 as Description, type DescriptionLine$3 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$3 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$3 as DescriptionLineName, DescriptionLineType$3 as DescriptionLineType, type DescriptionLineValueOneOf$3 as DescriptionLineValueOneOf, type Details$3 as Details, type DetailsKindOneOf$3 as DetailsKindOneOf, type Discount$2 as Discount, context$g_DiscountDiscountType as DiscountDiscountType, type DiscountRule$4 as DiscountRule, type DiscountRuleName$4 as DiscountRuleName, DiscountType$4 as DiscountType, type DomainEvent$d as DomainEvent, type DomainEventBodyOneOf$d as DomainEventBodyOneOf, type context$g_DoublePaymentErrorData as DoublePaymentErrorData, type context$g_DoublePaymentErrorDataIdOneOf as DoublePaymentErrorDataIdOneOf, type Empty$8 as Empty, type EntityCreatedEvent$d as EntityCreatedEvent, type EntityDeletedEvent$d as EntityDeletedEvent, type EntityUpdatedEvent$d as EntityUpdatedEvent, type EventMetadata$b as EventMetadata, type ExtendedFields$7 as ExtendedFields, type ExternalReference$2 as ExternalReference, FallbackReason$2 as FallbackReason, type FieldViolation$3 as FieldViolation, FileType$2 as FileType, type FullAddressContactDetails$3 as FullAddressContactDetails, type FullName$1 as FullName, type context$g_GetCheckoutByCartIdRequest as GetCheckoutByCartIdRequest, type context$g_GetCheckoutByCartIdResponse as GetCheckoutByCartIdResponse, type context$g_GetCheckoutByCartIdResponseNonNullableFields as GetCheckoutByCartIdResponseNonNullableFields, type context$g_GetCheckoutPaymentSettingsRequest as GetCheckoutPaymentSettingsRequest, type context$g_GetCheckoutPaymentSettingsResponse as GetCheckoutPaymentSettingsResponse, type context$g_GetCheckoutPaymentSettingsResponseNonNullableFields as GetCheckoutPaymentSettingsResponseNonNullableFields, type context$g_GetCheckoutRequest as GetCheckoutRequest, type context$g_GetCheckoutResponse as GetCheckoutResponse, type context$g_GetCheckoutResponseNonNullableFields as GetCheckoutResponseNonNullableFields, type context$g_GetCheckoutURLRequest as GetCheckoutURLRequest, type context$g_GetCheckoutURLResponse as GetCheckoutURLResponse, type context$g_GetCheckoutURLResponseNonNullableFields as GetCheckoutURLResponseNonNullableFields, type context$g_GetCheckoutWithAllExtendedFieldsRequest as GetCheckoutWithAllExtendedFieldsRequest, type context$g_GetCheckoutWithAllExtendedFieldsResponse as GetCheckoutWithAllExtendedFieldsResponse, type context$g_GetWixCheckoutURLRequest as GetWixCheckoutURLRequest, type context$g_GetWixCheckoutURLResponse as GetWixCheckoutURLResponse, type GiftCard$4 as GiftCard, type Group$2 as Group, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type InvalidMembership$2 as InvalidMembership, type ItemAvailabilityInfo$1 as ItemAvailabilityInfo, ItemAvailabilityStatus$1 as ItemAvailabilityStatus, type ItemTaxFullDetails$4 as ItemTaxFullDetails, type ItemType$4 as ItemType, ItemTypeItemType$4 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$4 as ItemTypeItemTypeDataOneOf, JurisdictionType$4 as JurisdictionType, type LineItem$4 as LineItem, type LineItemDiscount$4 as LineItemDiscount, type context$g_LineItemQuantityUpdate as LineItemQuantityUpdate, LineItemType$1 as LineItemType, ManualCalculationReason$2 as ManualCalculationReason, type context$g_MarkCheckoutAsCompletedRequest as MarkCheckoutAsCompletedRequest, type context$g_MarkCheckoutAsCompletedResponse as MarkCheckoutAsCompletedResponse, type MediaItem$1 as MediaItem, MediaItemType$1 as MediaItemType, type Membership$2 as Membership, type MembershipName$5 as MembershipName, type MembershipOptions$2 as MembershipOptions, type MembershipPaymentCredits$2 as MembershipPaymentCredits, type MerchantDiscount$4 as MerchantDiscount, type MerchantDiscountInput$1 as MerchantDiscountInput, type MessageEnvelope$d as MessageEnvelope, type MultiCurrencyPrice$2 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type OptionSelection$1 as OptionSelection, type Other$1 as Other, type OtherCharge$2 as OtherCharge, type context$g_PaymentErrorResponseData as PaymentErrorResponseData, context$g_PaymentOption as PaymentOption, PaymentOptionType$4 as PaymentOptionType, type PhysicalProperties$4 as PhysicalProperties, type PickupAddress$3 as PickupAddress, type PickupDetails$5 as PickupDetails, PickupMethod$4 as PickupMethod, type PlainTextValue$3 as PlainTextValue, type PriceDescription$3 as PriceDescription, type PriceSummary$4 as PriceSummary, type context$g_ProductDetails as ProductDetails, type ProductName$3 as ProductName, RateType$2 as RateType, type context$g_RedeemErrorData as RedeemErrorData, type context$g_RemoveCouponRequest as RemoveCouponRequest, type context$g_RemoveCouponResponse as RemoveCouponResponse, type context$g_RemoveCouponResponseNonNullableFields as RemoveCouponResponseNonNullableFields, type context$g_RemoveGiftCardRequest as RemoveGiftCardRequest, type context$g_RemoveGiftCardResponse as RemoveGiftCardResponse, type context$g_RemoveGiftCardResponseNonNullableFields as RemoveGiftCardResponseNonNullableFields, type context$g_RemoveLineItemsRequest as RemoveLineItemsRequest, type context$g_RemoveLineItemsResponse as RemoveLineItemsResponse, type context$g_RemoveLineItemsResponseNonNullableFields as RemoveLineItemsResponseNonNullableFields, type context$g_RemoveOverrideCheckoutUrlRequest as RemoveOverrideCheckoutUrlRequest, type context$g_RemoveOverrideCheckoutUrlResponse as RemoveOverrideCheckoutUrlResponse, type context$g_RemoveOverrideCheckoutUrlResponseNonNullableFields as RemoveOverrideCheckoutUrlResponseNonNullableFields, type RestoreInfo$d as RestoreInfo, RuleType$3 as RuleType, type Scope$2 as Scope, type SecuredMedia$2 as SecuredMedia, type SelectedCarrierServiceOption$2 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$2 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$2 as SelectedCarrierServiceOptionPrices, type SelectedMembership$2 as SelectedMembership, type SelectedMemberships$2 as SelectedMemberships, type ServiceProperties$3 as ServiceProperties, Severity$1 as Severity, type ShipmentDetails$1 as ShipmentDetails, type context$g_ShippingCalculationErrorData as ShippingCalculationErrorData, type context$g_ShippingCalculationErrorDataShippingCalculationErrorOneOf as ShippingCalculationErrorDataShippingCalculationErrorOneOf, type ShippingInfo$2 as ShippingInfo, type ShippingOption$4 as ShippingOption, type ShippingPrice$4 as ShippingPrice, type ShippingRegion$4 as ShippingRegion, type context$g_StoreSettings as StoreSettings, type Street$1 as Street, type StreetAddress$6 as StreetAddress, type context$g_Subscription as Subscription, type context$g_SubscriptionCreated as SubscriptionCreated, SubscriptionFrequency$5 as SubscriptionFrequency, type SubscriptionOptionInfo$2 as SubscriptionOptionInfo, type SubscriptionSettings$5 as SubscriptionSettings, type SystemError$3 as SystemError, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$2 as TaxBreakdown, type TaxCalculationDetails$2 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$2 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$2 as TaxRateBreakdown, type TaxSummary$4 as TaxSummary, type TaxableAddress$3 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$3 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$3 as TaxableAddressType, type Title$1 as Title, type Totals$1 as Totals, type context$g_UpdateCheckout as UpdateCheckout, type context$g_UpdateCheckoutOptions as UpdateCheckoutOptions, type context$g_UpdateCheckoutRequest as UpdateCheckoutRequest, type context$g_UpdateCheckoutResponse as UpdateCheckoutResponse, type context$g_UpdateCheckoutResponseNonNullableFields as UpdateCheckoutResponseNonNullableFields, type context$g_UpdateLineItemsQuantityRequest as UpdateLineItemsQuantityRequest, type context$g_UpdateLineItemsQuantityResponse as UpdateLineItemsQuantityResponse, type context$g_UpdateLineItemsQuantityResponseNonNullableFields as UpdateLineItemsQuantityResponseNonNullableFields, type context$g_UpdatedCheckoutMessage as UpdatedCheckoutMessage, type context$g_V1BuyerInfo as V1BuyerInfo, type context$g_V1CustomField as V1CustomField, type V1LineItem$1 as V1LineItem, type V1PickupDetails$1 as V1PickupDetails, type context$g_V1ShippingInfo as V1ShippingInfo, type context$g_V1ShippingInfoDetailsOneOf as V1ShippingInfoDetailsOneOf, type context$g_V1SubscriptionOptionInfo as V1SubscriptionOptionInfo, type context$g_V1SubscriptionSettings as V1SubscriptionSettings, type ValidationError$3 as ValidationError, type VatId$4 as VatId, VatType$4 as VatType, type Violation$1 as Violation, type context$g_ViolationsList as ViolationsList, WebhookIdentityType$d as WebhookIdentityType, WeightUnit$5 as WeightUnit, type context$g__publicOnCheckoutCompletedType as _publicOnCheckoutCompletedType, type context$g__publicOnCheckoutCreatedType as _publicOnCheckoutCreatedType, type context$g__publicOnCheckoutUpdatedType as _publicOnCheckoutUpdatedType, context$g_addToCheckout as addToCheckout, context$g_createCheckout as createCheckout, createOrder$2 as createOrder, context$g_getCheckout as getCheckout, context$g_getCheckoutByCartId as getCheckoutByCartId, context$g_getCheckoutPaymentSettings as getCheckoutPaymentSettings, context$g_getCheckoutUrl as getCheckoutUrl, context$g_markCheckoutAsCompleted as markCheckoutAsCompleted, context$g_onCheckoutCompleted as onCheckoutCompleted, context$g_onCheckoutCreated as onCheckoutCreated, context$g_onCheckoutUpdated as onCheckoutUpdated, onCheckoutCompleted$1 as publicOnCheckoutCompleted, onCheckoutCreated$1 as publicOnCheckoutCreated, onCheckoutUpdated$1 as publicOnCheckoutUpdated, context$g_removeCoupon as removeCoupon, context$g_removeGiftCard as removeGiftCard, context$g_removeLineItems as removeLineItems, context$g_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, context$g_updateCheckout as updateCheckout, context$g_updateLineItemsQuantity as updateLineItemsQuantity };
12113
12139
  }
12114
12140
 
12115
12141
  interface CheckoutSettings {
@@ -18201,7 +18227,7 @@ interface Order$2 {
18201
18227
  /**
18202
18228
  * Custom field data for the order object.
18203
18229
  *
18204
- * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
18230
+ * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
18205
18231
  */
18206
18232
  extendedFields?: ExtendedFields$4;
18207
18233
  /** Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. */
@@ -21463,7 +21489,7 @@ interface Order$1 {
21463
21489
  /**
21464
21490
  * Custom field data for the order object.
21465
21491
  *
21466
- * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
21492
+ * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
21467
21493
  */
21468
21494
  extendedFields?: ExtendedFields$3;
21469
21495
  /** Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. */
@@ -26391,7 +26417,7 @@ interface UpdateOrder {
26391
26417
  /**
26392
26418
  * Custom field data for the order object.
26393
26419
  *
26394
- * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
26420
+ * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
26395
26421
  */
26396
26422
  extendedFields?: ExtendedFields$3;
26397
26423
  /** Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. */
@@ -10549,6 +10549,17 @@ interface UpdateLineItemsQuantityResponse {
10549
10549
  /** Updated checkout. */
10550
10550
  checkout?: Checkout$1;
10551
10551
  }
10552
+ interface GetCheckoutPaymentSettingsRequest {
10553
+ /** Checkout ID. */
10554
+ _id: string;
10555
+ }
10556
+ interface GetCheckoutPaymentSettingsResponse {
10557
+ blockedPaymentOptions?: PaymentOption[];
10558
+ }
10559
+ declare enum PaymentOption {
10560
+ UNKNOWN_PAYMENT_OPTION = "UNKNOWN_PAYMENT_OPTION",
10561
+ MANUAL = "MANUAL"
10562
+ }
10552
10563
  interface SubscriptionCreated {
10553
10564
  subscription?: Subscription;
10554
10565
  }
@@ -11501,6 +11512,9 @@ interface CreateOrderResponseNonNullableFields$1 {
11501
11512
  interface UpdateLineItemsQuantityResponseNonNullableFields {
11502
11513
  checkout?: CheckoutNonNullableFields;
11503
11514
  }
11515
+ interface GetCheckoutPaymentSettingsResponseNonNullableFields {
11516
+ blockedPaymentOptions: PaymentOption[];
11517
+ }
11504
11518
  interface BaseEventMetadata$b {
11505
11519
  /** App instance ID. */
11506
11520
  instanceId?: string | null;
@@ -11970,6 +11984,11 @@ interface UpdateLineItemsQuantitySignature {
11970
11984
  */
11971
11985
  (_id: string, lineItems: LineItemQuantityUpdate[]): Promise<UpdateLineItemsQuantityResponse & UpdateLineItemsQuantityResponseNonNullableFields>;
11972
11986
  }
11987
+ declare function getCheckoutPaymentSettings$1(httpClient: HttpClient): GetCheckoutPaymentSettingsSignature;
11988
+ interface GetCheckoutPaymentSettingsSignature {
11989
+ /** @param - Checkout ID. */
11990
+ (_id: string): Promise<GetCheckoutPaymentSettingsResponse & GetCheckoutPaymentSettingsResponseNonNullableFields>;
11991
+ }
11973
11992
  declare const onCheckoutCreated$1: EventDefinition<CheckoutCreatedEnvelope, "wix.ecom.v1.checkout_created">;
11974
11993
  declare const onCheckoutUpdated$1: EventDefinition<CheckoutUpdatedEnvelope, "wix.ecom.v1.checkout_updated">;
11975
11994
  declare const onCheckoutCompleted$1: EventDefinition<CheckoutCompletedEnvelope, "wix.ecom.v1.checkout_completed">;
@@ -11989,6 +12008,7 @@ declare const removeLineItems: BuildRESTFunction<typeof removeLineItems$1> & typ
11989
12008
  declare const createOrder$2: BuildRESTFunction<typeof createOrder$3> & typeof createOrder$3;
11990
12009
  declare const markCheckoutAsCompleted: BuildRESTFunction<typeof markCheckoutAsCompleted$1> & typeof markCheckoutAsCompleted$1;
11991
12010
  declare const updateLineItemsQuantity: BuildRESTFunction<typeof updateLineItemsQuantity$1> & typeof updateLineItemsQuantity$1;
12011
+ declare const getCheckoutPaymentSettings: BuildRESTFunction<typeof getCheckoutPaymentSettings$1> & typeof getCheckoutPaymentSettings$1;
11992
12012
 
11993
12013
  type _publicOnCheckoutCreatedType = typeof onCheckoutCreated$1;
11994
12014
  /**
@@ -12041,6 +12061,9 @@ type index_d$g_DoublePaymentErrorDataIdOneOf = DoublePaymentErrorDataIdOneOf;
12041
12061
  type index_d$g_GetCheckoutByCartIdRequest = GetCheckoutByCartIdRequest;
12042
12062
  type index_d$g_GetCheckoutByCartIdResponse = GetCheckoutByCartIdResponse;
12043
12063
  type index_d$g_GetCheckoutByCartIdResponseNonNullableFields = GetCheckoutByCartIdResponseNonNullableFields;
12064
+ type index_d$g_GetCheckoutPaymentSettingsRequest = GetCheckoutPaymentSettingsRequest;
12065
+ type index_d$g_GetCheckoutPaymentSettingsResponse = GetCheckoutPaymentSettingsResponse;
12066
+ type index_d$g_GetCheckoutPaymentSettingsResponseNonNullableFields = GetCheckoutPaymentSettingsResponseNonNullableFields;
12044
12067
  type index_d$g_GetCheckoutRequest = GetCheckoutRequest;
12045
12068
  type index_d$g_GetCheckoutResponse = GetCheckoutResponse;
12046
12069
  type index_d$g_GetCheckoutResponseNonNullableFields = GetCheckoutResponseNonNullableFields;
@@ -12055,6 +12078,8 @@ type index_d$g_LineItemQuantityUpdate = LineItemQuantityUpdate;
12055
12078
  type index_d$g_MarkCheckoutAsCompletedRequest = MarkCheckoutAsCompletedRequest;
12056
12079
  type index_d$g_MarkCheckoutAsCompletedResponse = MarkCheckoutAsCompletedResponse;
12057
12080
  type index_d$g_PaymentErrorResponseData = PaymentErrorResponseData;
12081
+ type index_d$g_PaymentOption = PaymentOption;
12082
+ declare const index_d$g_PaymentOption: typeof PaymentOption;
12058
12083
  type index_d$g_ProductDetails = ProductDetails;
12059
12084
  type index_d$g_RedeemErrorData = RedeemErrorData;
12060
12085
  type index_d$g_RemoveCouponRequest = RemoveCouponRequest;
@@ -12097,6 +12122,7 @@ declare const index_d$g_addToCheckout: typeof addToCheckout;
12097
12122
  declare const index_d$g_createCheckout: typeof createCheckout;
12098
12123
  declare const index_d$g_getCheckout: typeof getCheckout;
12099
12124
  declare const index_d$g_getCheckoutByCartId: typeof getCheckoutByCartId;
12125
+ declare const index_d$g_getCheckoutPaymentSettings: typeof getCheckoutPaymentSettings;
12100
12126
  declare const index_d$g_getCheckoutUrl: typeof getCheckoutUrl;
12101
12127
  declare const index_d$g_markCheckoutAsCompleted: typeof markCheckoutAsCompleted;
12102
12128
  declare const index_d$g_onCheckoutCompleted: typeof onCheckoutCompleted;
@@ -12109,7 +12135,7 @@ declare const index_d$g_removeOverrideCheckoutUrl: typeof removeOverrideCheckout
12109
12135
  declare const index_d$g_updateCheckout: typeof updateCheckout;
12110
12136
  declare const index_d$g_updateLineItemsQuantity: typeof updateLineItemsQuantity;
12111
12137
  declare namespace index_d$g {
12112
- export { type ActionEvent$d as ActionEvent, type index_d$g_AddToCheckoutOptions as AddToCheckoutOptions, type index_d$g_AddToCheckoutRequest as AddToCheckoutRequest, type index_d$g_AddToCheckoutResponse as AddToCheckoutResponse, type index_d$g_AddToCheckoutResponseNonNullableFields as AddToCheckoutResponseNonNullableFields, type AdditionalFee$4 as AdditionalFee, type Address$7 as Address, type AddressAddressLine1OptionsOneOf$1 as AddressAddressLine1OptionsOneOf, type AddressLocation$6 as AddressLocation, type AddressWithContact$3 as AddressWithContact, type AggregatedTaxBreakdown$2 as AggregatedTaxBreakdown, type index_d$g_ApiAddress as ApiAddress, type ApplicationError$8 as ApplicationError, type AppliedCoupon$1 as AppliedCoupon, type AppliedDiscount$4 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$4 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$2 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$b as BaseEventMetadata, type BillingInfo$1 as BillingInfo, type BuyerInfo$5 as BuyerInfo, type BuyerInfoIdOneOf$3 as BuyerInfoIdOneOf, type CalculationErrors$3 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$3 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$3 as CarrierError, type CarrierErrors$3 as CarrierErrors, type CarrierServiceOption$2 as CarrierServiceOption, type CatalogOverrideFields$1 as CatalogOverrideFields, type CatalogReference$4 as CatalogReference, type ChannelInfo$3 as ChannelInfo, index_d$g_ChannelInfoChannelType as ChannelInfoChannelType, ChannelType$4 as ChannelType, type index_d$g_ChargeDetails as ChargeDetails, ChargeType$3 as ChargeType, type Checkout$1 as Checkout, type index_d$g_CheckoutCompletedEnvelope as CheckoutCompletedEnvelope, type index_d$g_CheckoutCreatedEnvelope as CheckoutCreatedEnvelope, type index_d$g_CheckoutMarkedAsCompleted as CheckoutMarkedAsCompleted, type index_d$g_CheckoutNonNullableFields as CheckoutNonNullableFields, type index_d$g_CheckoutUpdatedEnvelope as CheckoutUpdatedEnvelope, type Color$3 as Color, type index_d$g_CommonVatId as CommonVatId, index_d$g_CommonVatType as CommonVatType, type ConversionInfo$1 as ConversionInfo, type Coupon$4 as Coupon, type index_d$g_CreateCheckoutOptions as CreateCheckoutOptions, type index_d$g_CreateCheckoutRequest as CreateCheckoutRequest, type index_d$g_CreateCheckoutResponse as CreateCheckoutResponse, type index_d$g_CreateCheckoutResponseNonNullableFields as CreateCheckoutResponseNonNullableFields, type index_d$g_CreateOrderAndChargeRequest as CreateOrderAndChargeRequest, type index_d$g_CreateOrderAndChargeResponse as CreateOrderAndChargeResponse, type index_d$g_CreateOrderAndChargeResponseIdOneOf as CreateOrderAndChargeResponseIdOneOf, type index_d$g_CreateOrderOptions as CreateOrderOptions, type CreateOrderRequest$1 as CreateOrderRequest, type CreateOrderResponse$1 as CreateOrderResponse, type index_d$g_CreateOrderResponseIdOneOf as CreateOrderResponseIdOneOf, type CreateOrderResponseNonNullableFields$1 as CreateOrderResponseNonNullableFields, type CreatedBy$3 as CreatedBy, type CreatedByIdOneOf$1 as CreatedByIdOneOf, type CustomContentReference$1 as CustomContentReference, type CustomField$4 as CustomField, type CustomLineItem$2 as CustomLineItem, type CustomSettings$1 as CustomSettings, type CustomTextFieldSelection$1 as CustomTextFieldSelection, type DeliveryLogistics$4 as DeliveryLogistics, type DeliveryTimeSlot$4 as DeliveryTimeSlot, type Description$1 as Description, type DescriptionLine$3 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$3 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$3 as DescriptionLineName, DescriptionLineType$3 as DescriptionLineType, type DescriptionLineValueOneOf$3 as DescriptionLineValueOneOf, type Details$3 as Details, type DetailsKindOneOf$3 as DetailsKindOneOf, type Discount$2 as Discount, index_d$g_DiscountDiscountType as DiscountDiscountType, type DiscountRule$4 as DiscountRule, type DiscountRuleName$4 as DiscountRuleName, DiscountType$4 as DiscountType, type DomainEvent$d as DomainEvent, type DomainEventBodyOneOf$d as DomainEventBodyOneOf, type index_d$g_DoublePaymentErrorData as DoublePaymentErrorData, type index_d$g_DoublePaymentErrorDataIdOneOf as DoublePaymentErrorDataIdOneOf, type Empty$8 as Empty, type EntityCreatedEvent$d as EntityCreatedEvent, type EntityDeletedEvent$d as EntityDeletedEvent, type EntityUpdatedEvent$d as EntityUpdatedEvent, type EventMetadata$b as EventMetadata, type ExtendedFields$7 as ExtendedFields, type ExternalReference$2 as ExternalReference, FallbackReason$2 as FallbackReason, type FieldViolation$3 as FieldViolation, FileType$2 as FileType, type FullAddressContactDetails$3 as FullAddressContactDetails, type FullName$1 as FullName, type index_d$g_GetCheckoutByCartIdRequest as GetCheckoutByCartIdRequest, type index_d$g_GetCheckoutByCartIdResponse as GetCheckoutByCartIdResponse, type index_d$g_GetCheckoutByCartIdResponseNonNullableFields as GetCheckoutByCartIdResponseNonNullableFields, type index_d$g_GetCheckoutRequest as GetCheckoutRequest, type index_d$g_GetCheckoutResponse as GetCheckoutResponse, type index_d$g_GetCheckoutResponseNonNullableFields as GetCheckoutResponseNonNullableFields, type index_d$g_GetCheckoutURLRequest as GetCheckoutURLRequest, type index_d$g_GetCheckoutURLResponse as GetCheckoutURLResponse, type index_d$g_GetCheckoutURLResponseNonNullableFields as GetCheckoutURLResponseNonNullableFields, type index_d$g_GetCheckoutWithAllExtendedFieldsRequest as GetCheckoutWithAllExtendedFieldsRequest, type index_d$g_GetCheckoutWithAllExtendedFieldsResponse as GetCheckoutWithAllExtendedFieldsResponse, type index_d$g_GetWixCheckoutURLRequest as GetWixCheckoutURLRequest, type index_d$g_GetWixCheckoutURLResponse as GetWixCheckoutURLResponse, type GiftCard$4 as GiftCard, type Group$2 as Group, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type InvalidMembership$2 as InvalidMembership, type ItemAvailabilityInfo$1 as ItemAvailabilityInfo, ItemAvailabilityStatus$1 as ItemAvailabilityStatus, type ItemTaxFullDetails$4 as ItemTaxFullDetails, type ItemType$4 as ItemType, ItemTypeItemType$4 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$4 as ItemTypeItemTypeDataOneOf, JurisdictionType$4 as JurisdictionType, type LineItem$4 as LineItem, type LineItemDiscount$4 as LineItemDiscount, type index_d$g_LineItemQuantityUpdate as LineItemQuantityUpdate, LineItemType$1 as LineItemType, ManualCalculationReason$2 as ManualCalculationReason, type index_d$g_MarkCheckoutAsCompletedRequest as MarkCheckoutAsCompletedRequest, type index_d$g_MarkCheckoutAsCompletedResponse as MarkCheckoutAsCompletedResponse, type MediaItem$1 as MediaItem, MediaItemType$1 as MediaItemType, type Membership$2 as Membership, type MembershipName$5 as MembershipName, type MembershipOptions$2 as MembershipOptions, type MembershipPaymentCredits$2 as MembershipPaymentCredits, type MerchantDiscount$4 as MerchantDiscount, type MerchantDiscountInput$1 as MerchantDiscountInput, type MessageEnvelope$d as MessageEnvelope, type MultiCurrencyPrice$2 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type OptionSelection$1 as OptionSelection, type Other$1 as Other, type OtherCharge$2 as OtherCharge, type index_d$g_PaymentErrorResponseData as PaymentErrorResponseData, PaymentOptionType$4 as PaymentOptionType, type PhysicalProperties$4 as PhysicalProperties, type PickupAddress$3 as PickupAddress, type PickupDetails$5 as PickupDetails, PickupMethod$4 as PickupMethod, type PlainTextValue$3 as PlainTextValue, type PriceDescription$3 as PriceDescription, type PriceSummary$4 as PriceSummary, type index_d$g_ProductDetails as ProductDetails, type ProductName$3 as ProductName, RateType$2 as RateType, type index_d$g_RedeemErrorData as RedeemErrorData, type index_d$g_RemoveCouponRequest as RemoveCouponRequest, type index_d$g_RemoveCouponResponse as RemoveCouponResponse, type index_d$g_RemoveCouponResponseNonNullableFields as RemoveCouponResponseNonNullableFields, type index_d$g_RemoveGiftCardRequest as RemoveGiftCardRequest, type index_d$g_RemoveGiftCardResponse as RemoveGiftCardResponse, type index_d$g_RemoveGiftCardResponseNonNullableFields as RemoveGiftCardResponseNonNullableFields, type index_d$g_RemoveLineItemsRequest as RemoveLineItemsRequest, type index_d$g_RemoveLineItemsResponse as RemoveLineItemsResponse, type index_d$g_RemoveLineItemsResponseNonNullableFields as RemoveLineItemsResponseNonNullableFields, type index_d$g_RemoveOverrideCheckoutUrlRequest as RemoveOverrideCheckoutUrlRequest, type index_d$g_RemoveOverrideCheckoutUrlResponse as RemoveOverrideCheckoutUrlResponse, type index_d$g_RemoveOverrideCheckoutUrlResponseNonNullableFields as RemoveOverrideCheckoutUrlResponseNonNullableFields, type RestoreInfo$d as RestoreInfo, RuleType$3 as RuleType, type Scope$2 as Scope, type SecuredMedia$2 as SecuredMedia, type SelectedCarrierServiceOption$2 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$2 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$2 as SelectedCarrierServiceOptionPrices, type SelectedMembership$2 as SelectedMembership, type SelectedMemberships$2 as SelectedMemberships, type ServiceProperties$3 as ServiceProperties, Severity$1 as Severity, type ShipmentDetails$1 as ShipmentDetails, type index_d$g_ShippingCalculationErrorData as ShippingCalculationErrorData, type index_d$g_ShippingCalculationErrorDataShippingCalculationErrorOneOf as ShippingCalculationErrorDataShippingCalculationErrorOneOf, type ShippingInfo$2 as ShippingInfo, type ShippingOption$4 as ShippingOption, type ShippingPrice$4 as ShippingPrice, type ShippingRegion$4 as ShippingRegion, type index_d$g_StoreSettings as StoreSettings, type Street$1 as Street, type StreetAddress$6 as StreetAddress, type index_d$g_Subscription as Subscription, type index_d$g_SubscriptionCreated as SubscriptionCreated, SubscriptionFrequency$5 as SubscriptionFrequency, type SubscriptionOptionInfo$2 as SubscriptionOptionInfo, type SubscriptionSettings$5 as SubscriptionSettings, type SystemError$3 as SystemError, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$2 as TaxBreakdown, type TaxCalculationDetails$2 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$2 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$2 as TaxRateBreakdown, type TaxSummary$4 as TaxSummary, type TaxableAddress$3 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$3 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$3 as TaxableAddressType, type Title$1 as Title, type Totals$1 as Totals, type index_d$g_UpdateCheckout as UpdateCheckout, type index_d$g_UpdateCheckoutOptions as UpdateCheckoutOptions, type index_d$g_UpdateCheckoutRequest as UpdateCheckoutRequest, type index_d$g_UpdateCheckoutResponse as UpdateCheckoutResponse, type index_d$g_UpdateCheckoutResponseNonNullableFields as UpdateCheckoutResponseNonNullableFields, type index_d$g_UpdateLineItemsQuantityRequest as UpdateLineItemsQuantityRequest, type index_d$g_UpdateLineItemsQuantityResponse as UpdateLineItemsQuantityResponse, type index_d$g_UpdateLineItemsQuantityResponseNonNullableFields as UpdateLineItemsQuantityResponseNonNullableFields, type index_d$g_UpdatedCheckoutMessage as UpdatedCheckoutMessage, type index_d$g_V1BuyerInfo as V1BuyerInfo, type index_d$g_V1CustomField as V1CustomField, type V1LineItem$1 as V1LineItem, type V1PickupDetails$1 as V1PickupDetails, type index_d$g_V1ShippingInfo as V1ShippingInfo, type index_d$g_V1ShippingInfoDetailsOneOf as V1ShippingInfoDetailsOneOf, type index_d$g_V1SubscriptionOptionInfo as V1SubscriptionOptionInfo, type index_d$g_V1SubscriptionSettings as V1SubscriptionSettings, type ValidationError$3 as ValidationError, type VatId$4 as VatId, VatType$4 as VatType, type Violation$1 as Violation, type index_d$g_ViolationsList as ViolationsList, WebhookIdentityType$d as WebhookIdentityType, WeightUnit$5 as WeightUnit, type index_d$g__publicOnCheckoutCompletedType as _publicOnCheckoutCompletedType, type index_d$g__publicOnCheckoutCreatedType as _publicOnCheckoutCreatedType, type index_d$g__publicOnCheckoutUpdatedType as _publicOnCheckoutUpdatedType, index_d$g_addToCheckout as addToCheckout, index_d$g_createCheckout as createCheckout, createOrder$2 as createOrder, index_d$g_getCheckout as getCheckout, index_d$g_getCheckoutByCartId as getCheckoutByCartId, index_d$g_getCheckoutUrl as getCheckoutUrl, index_d$g_markCheckoutAsCompleted as markCheckoutAsCompleted, index_d$g_onCheckoutCompleted as onCheckoutCompleted, index_d$g_onCheckoutCreated as onCheckoutCreated, index_d$g_onCheckoutUpdated as onCheckoutUpdated, onCheckoutCompleted$1 as publicOnCheckoutCompleted, onCheckoutCreated$1 as publicOnCheckoutCreated, onCheckoutUpdated$1 as publicOnCheckoutUpdated, index_d$g_removeCoupon as removeCoupon, index_d$g_removeGiftCard as removeGiftCard, index_d$g_removeLineItems as removeLineItems, index_d$g_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, index_d$g_updateCheckout as updateCheckout, index_d$g_updateLineItemsQuantity as updateLineItemsQuantity };
12138
+ export { type ActionEvent$d as ActionEvent, type index_d$g_AddToCheckoutOptions as AddToCheckoutOptions, type index_d$g_AddToCheckoutRequest as AddToCheckoutRequest, type index_d$g_AddToCheckoutResponse as AddToCheckoutResponse, type index_d$g_AddToCheckoutResponseNonNullableFields as AddToCheckoutResponseNonNullableFields, type AdditionalFee$4 as AdditionalFee, type Address$7 as Address, type AddressAddressLine1OptionsOneOf$1 as AddressAddressLine1OptionsOneOf, type AddressLocation$6 as AddressLocation, type AddressWithContact$3 as AddressWithContact, type AggregatedTaxBreakdown$2 as AggregatedTaxBreakdown, type index_d$g_ApiAddress as ApiAddress, type ApplicationError$8 as ApplicationError, type AppliedCoupon$1 as AppliedCoupon, type AppliedDiscount$4 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$4 as AppliedDiscountDiscountSourceOneOf, type AutoTaxFallbackCalculationDetails$2 as AutoTaxFallbackCalculationDetails, type BaseEventMetadata$b as BaseEventMetadata, type BillingInfo$1 as BillingInfo, type BuyerInfo$5 as BuyerInfo, type BuyerInfoIdOneOf$3 as BuyerInfoIdOneOf, type CalculationErrors$3 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$3 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$3 as CarrierError, type CarrierErrors$3 as CarrierErrors, type CarrierServiceOption$2 as CarrierServiceOption, type CatalogOverrideFields$1 as CatalogOverrideFields, type CatalogReference$4 as CatalogReference, type ChannelInfo$3 as ChannelInfo, index_d$g_ChannelInfoChannelType as ChannelInfoChannelType, ChannelType$4 as ChannelType, type index_d$g_ChargeDetails as ChargeDetails, ChargeType$3 as ChargeType, type Checkout$1 as Checkout, type index_d$g_CheckoutCompletedEnvelope as CheckoutCompletedEnvelope, type index_d$g_CheckoutCreatedEnvelope as CheckoutCreatedEnvelope, type index_d$g_CheckoutMarkedAsCompleted as CheckoutMarkedAsCompleted, type index_d$g_CheckoutNonNullableFields as CheckoutNonNullableFields, type index_d$g_CheckoutUpdatedEnvelope as CheckoutUpdatedEnvelope, type Color$3 as Color, type index_d$g_CommonVatId as CommonVatId, index_d$g_CommonVatType as CommonVatType, type ConversionInfo$1 as ConversionInfo, type Coupon$4 as Coupon, type index_d$g_CreateCheckoutOptions as CreateCheckoutOptions, type index_d$g_CreateCheckoutRequest as CreateCheckoutRequest, type index_d$g_CreateCheckoutResponse as CreateCheckoutResponse, type index_d$g_CreateCheckoutResponseNonNullableFields as CreateCheckoutResponseNonNullableFields, type index_d$g_CreateOrderAndChargeRequest as CreateOrderAndChargeRequest, type index_d$g_CreateOrderAndChargeResponse as CreateOrderAndChargeResponse, type index_d$g_CreateOrderAndChargeResponseIdOneOf as CreateOrderAndChargeResponseIdOneOf, type index_d$g_CreateOrderOptions as CreateOrderOptions, type CreateOrderRequest$1 as CreateOrderRequest, type CreateOrderResponse$1 as CreateOrderResponse, type index_d$g_CreateOrderResponseIdOneOf as CreateOrderResponseIdOneOf, type CreateOrderResponseNonNullableFields$1 as CreateOrderResponseNonNullableFields, type CreatedBy$3 as CreatedBy, type CreatedByIdOneOf$1 as CreatedByIdOneOf, type CustomContentReference$1 as CustomContentReference, type CustomField$4 as CustomField, type CustomLineItem$2 as CustomLineItem, type CustomSettings$1 as CustomSettings, type CustomTextFieldSelection$1 as CustomTextFieldSelection, type DeliveryLogistics$4 as DeliveryLogistics, type DeliveryTimeSlot$4 as DeliveryTimeSlot, type Description$1 as Description, type DescriptionLine$3 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$3 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$3 as DescriptionLineName, DescriptionLineType$3 as DescriptionLineType, type DescriptionLineValueOneOf$3 as DescriptionLineValueOneOf, type Details$3 as Details, type DetailsKindOneOf$3 as DetailsKindOneOf, type Discount$2 as Discount, index_d$g_DiscountDiscountType as DiscountDiscountType, type DiscountRule$4 as DiscountRule, type DiscountRuleName$4 as DiscountRuleName, DiscountType$4 as DiscountType, type DomainEvent$d as DomainEvent, type DomainEventBodyOneOf$d as DomainEventBodyOneOf, type index_d$g_DoublePaymentErrorData as DoublePaymentErrorData, type index_d$g_DoublePaymentErrorDataIdOneOf as DoublePaymentErrorDataIdOneOf, type Empty$8 as Empty, type EntityCreatedEvent$d as EntityCreatedEvent, type EntityDeletedEvent$d as EntityDeletedEvent, type EntityUpdatedEvent$d as EntityUpdatedEvent, type EventMetadata$b as EventMetadata, type ExtendedFields$7 as ExtendedFields, type ExternalReference$2 as ExternalReference, FallbackReason$2 as FallbackReason, type FieldViolation$3 as FieldViolation, FileType$2 as FileType, type FullAddressContactDetails$3 as FullAddressContactDetails, type FullName$1 as FullName, type index_d$g_GetCheckoutByCartIdRequest as GetCheckoutByCartIdRequest, type index_d$g_GetCheckoutByCartIdResponse as GetCheckoutByCartIdResponse, type index_d$g_GetCheckoutByCartIdResponseNonNullableFields as GetCheckoutByCartIdResponseNonNullableFields, type index_d$g_GetCheckoutPaymentSettingsRequest as GetCheckoutPaymentSettingsRequest, type index_d$g_GetCheckoutPaymentSettingsResponse as GetCheckoutPaymentSettingsResponse, type index_d$g_GetCheckoutPaymentSettingsResponseNonNullableFields as GetCheckoutPaymentSettingsResponseNonNullableFields, type index_d$g_GetCheckoutRequest as GetCheckoutRequest, type index_d$g_GetCheckoutResponse as GetCheckoutResponse, type index_d$g_GetCheckoutResponseNonNullableFields as GetCheckoutResponseNonNullableFields, type index_d$g_GetCheckoutURLRequest as GetCheckoutURLRequest, type index_d$g_GetCheckoutURLResponse as GetCheckoutURLResponse, type index_d$g_GetCheckoutURLResponseNonNullableFields as GetCheckoutURLResponseNonNullableFields, type index_d$g_GetCheckoutWithAllExtendedFieldsRequest as GetCheckoutWithAllExtendedFieldsRequest, type index_d$g_GetCheckoutWithAllExtendedFieldsResponse as GetCheckoutWithAllExtendedFieldsResponse, type index_d$g_GetWixCheckoutURLRequest as GetWixCheckoutURLRequest, type index_d$g_GetWixCheckoutURLResponse as GetWixCheckoutURLResponse, type GiftCard$4 as GiftCard, type Group$2 as Group, type IdentificationData$d as IdentificationData, type IdentificationDataIdOneOf$d as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type InvalidMembership$2 as InvalidMembership, type ItemAvailabilityInfo$1 as ItemAvailabilityInfo, ItemAvailabilityStatus$1 as ItemAvailabilityStatus, type ItemTaxFullDetails$4 as ItemTaxFullDetails, type ItemType$4 as ItemType, ItemTypeItemType$4 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$4 as ItemTypeItemTypeDataOneOf, JurisdictionType$4 as JurisdictionType, type LineItem$4 as LineItem, type LineItemDiscount$4 as LineItemDiscount, type index_d$g_LineItemQuantityUpdate as LineItemQuantityUpdate, LineItemType$1 as LineItemType, ManualCalculationReason$2 as ManualCalculationReason, type index_d$g_MarkCheckoutAsCompletedRequest as MarkCheckoutAsCompletedRequest, type index_d$g_MarkCheckoutAsCompletedResponse as MarkCheckoutAsCompletedResponse, type MediaItem$1 as MediaItem, MediaItemType$1 as MediaItemType, type Membership$2 as Membership, type MembershipName$5 as MembershipName, type MembershipOptions$2 as MembershipOptions, type MembershipPaymentCredits$2 as MembershipPaymentCredits, type MerchantDiscount$4 as MerchantDiscount, type MerchantDiscountInput$1 as MerchantDiscountInput, type MessageEnvelope$d as MessageEnvelope, type MultiCurrencyPrice$2 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type OptionSelection$1 as OptionSelection, type Other$1 as Other, type OtherCharge$2 as OtherCharge, type index_d$g_PaymentErrorResponseData as PaymentErrorResponseData, index_d$g_PaymentOption as PaymentOption, PaymentOptionType$4 as PaymentOptionType, type PhysicalProperties$4 as PhysicalProperties, type PickupAddress$3 as PickupAddress, type PickupDetails$5 as PickupDetails, PickupMethod$4 as PickupMethod, type PlainTextValue$3 as PlainTextValue, type PriceDescription$3 as PriceDescription, type PriceSummary$4 as PriceSummary, type index_d$g_ProductDetails as ProductDetails, type ProductName$3 as ProductName, RateType$2 as RateType, type index_d$g_RedeemErrorData as RedeemErrorData, type index_d$g_RemoveCouponRequest as RemoveCouponRequest, type index_d$g_RemoveCouponResponse as RemoveCouponResponse, type index_d$g_RemoveCouponResponseNonNullableFields as RemoveCouponResponseNonNullableFields, type index_d$g_RemoveGiftCardRequest as RemoveGiftCardRequest, type index_d$g_RemoveGiftCardResponse as RemoveGiftCardResponse, type index_d$g_RemoveGiftCardResponseNonNullableFields as RemoveGiftCardResponseNonNullableFields, type index_d$g_RemoveLineItemsRequest as RemoveLineItemsRequest, type index_d$g_RemoveLineItemsResponse as RemoveLineItemsResponse, type index_d$g_RemoveLineItemsResponseNonNullableFields as RemoveLineItemsResponseNonNullableFields, type index_d$g_RemoveOverrideCheckoutUrlRequest as RemoveOverrideCheckoutUrlRequest, type index_d$g_RemoveOverrideCheckoutUrlResponse as RemoveOverrideCheckoutUrlResponse, type index_d$g_RemoveOverrideCheckoutUrlResponseNonNullableFields as RemoveOverrideCheckoutUrlResponseNonNullableFields, type RestoreInfo$d as RestoreInfo, RuleType$3 as RuleType, type Scope$2 as Scope, type SecuredMedia$2 as SecuredMedia, type SelectedCarrierServiceOption$2 as SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge$2 as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$2 as SelectedCarrierServiceOptionPrices, type SelectedMembership$2 as SelectedMembership, type SelectedMemberships$2 as SelectedMemberships, type ServiceProperties$3 as ServiceProperties, Severity$1 as Severity, type ShipmentDetails$1 as ShipmentDetails, type index_d$g_ShippingCalculationErrorData as ShippingCalculationErrorData, type index_d$g_ShippingCalculationErrorDataShippingCalculationErrorOneOf as ShippingCalculationErrorDataShippingCalculationErrorOneOf, type ShippingInfo$2 as ShippingInfo, type ShippingOption$4 as ShippingOption, type ShippingPrice$4 as ShippingPrice, type ShippingRegion$4 as ShippingRegion, type index_d$g_StoreSettings as StoreSettings, type Street$1 as Street, type StreetAddress$6 as StreetAddress, type index_d$g_Subscription as Subscription, type index_d$g_SubscriptionCreated as SubscriptionCreated, SubscriptionFrequency$5 as SubscriptionFrequency, type SubscriptionOptionInfo$2 as SubscriptionOptionInfo, type SubscriptionSettings$5 as SubscriptionSettings, type SystemError$3 as SystemError, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$2 as TaxBreakdown, type TaxCalculationDetails$2 as TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf$2 as TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown$2 as TaxRateBreakdown, type TaxSummary$4 as TaxSummary, type TaxableAddress$3 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$3 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$3 as TaxableAddressType, type Title$1 as Title, type Totals$1 as Totals, type index_d$g_UpdateCheckout as UpdateCheckout, type index_d$g_UpdateCheckoutOptions as UpdateCheckoutOptions, type index_d$g_UpdateCheckoutRequest as UpdateCheckoutRequest, type index_d$g_UpdateCheckoutResponse as UpdateCheckoutResponse, type index_d$g_UpdateCheckoutResponseNonNullableFields as UpdateCheckoutResponseNonNullableFields, type index_d$g_UpdateLineItemsQuantityRequest as UpdateLineItemsQuantityRequest, type index_d$g_UpdateLineItemsQuantityResponse as UpdateLineItemsQuantityResponse, type index_d$g_UpdateLineItemsQuantityResponseNonNullableFields as UpdateLineItemsQuantityResponseNonNullableFields, type index_d$g_UpdatedCheckoutMessage as UpdatedCheckoutMessage, type index_d$g_V1BuyerInfo as V1BuyerInfo, type index_d$g_V1CustomField as V1CustomField, type V1LineItem$1 as V1LineItem, type V1PickupDetails$1 as V1PickupDetails, type index_d$g_V1ShippingInfo as V1ShippingInfo, type index_d$g_V1ShippingInfoDetailsOneOf as V1ShippingInfoDetailsOneOf, type index_d$g_V1SubscriptionOptionInfo as V1SubscriptionOptionInfo, type index_d$g_V1SubscriptionSettings as V1SubscriptionSettings, type ValidationError$3 as ValidationError, type VatId$4 as VatId, VatType$4 as VatType, type Violation$1 as Violation, type index_d$g_ViolationsList as ViolationsList, WebhookIdentityType$d as WebhookIdentityType, WeightUnit$5 as WeightUnit, type index_d$g__publicOnCheckoutCompletedType as _publicOnCheckoutCompletedType, type index_d$g__publicOnCheckoutCreatedType as _publicOnCheckoutCreatedType, type index_d$g__publicOnCheckoutUpdatedType as _publicOnCheckoutUpdatedType, index_d$g_addToCheckout as addToCheckout, index_d$g_createCheckout as createCheckout, createOrder$2 as createOrder, index_d$g_getCheckout as getCheckout, index_d$g_getCheckoutByCartId as getCheckoutByCartId, index_d$g_getCheckoutPaymentSettings as getCheckoutPaymentSettings, index_d$g_getCheckoutUrl as getCheckoutUrl, index_d$g_markCheckoutAsCompleted as markCheckoutAsCompleted, index_d$g_onCheckoutCompleted as onCheckoutCompleted, index_d$g_onCheckoutCreated as onCheckoutCreated, index_d$g_onCheckoutUpdated as onCheckoutUpdated, onCheckoutCompleted$1 as publicOnCheckoutCompleted, onCheckoutCreated$1 as publicOnCheckoutCreated, onCheckoutUpdated$1 as publicOnCheckoutUpdated, index_d$g_removeCoupon as removeCoupon, index_d$g_removeGiftCard as removeGiftCard, index_d$g_removeLineItems as removeLineItems, index_d$g_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, index_d$g_updateCheckout as updateCheckout, index_d$g_updateLineItemsQuantity as updateLineItemsQuantity };
12113
12139
  }
12114
12140
 
12115
12141
  interface CheckoutSettings {
@@ -18201,7 +18227,7 @@ interface Order$2 {
18201
18227
  /**
18202
18228
  * Custom field data for the order object.
18203
18229
  *
18204
- * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
18230
+ * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
18205
18231
  */
18206
18232
  extendedFields?: ExtendedFields$4;
18207
18233
  /** Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. */
@@ -21463,7 +21489,7 @@ interface Order$1 {
21463
21489
  /**
21464
21490
  * Custom field data for the order object.
21465
21491
  *
21466
- * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
21492
+ * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
21467
21493
  */
21468
21494
  extendedFields?: ExtendedFields$3;
21469
21495
  /** Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. */
@@ -26391,7 +26417,7 @@ interface UpdateOrder {
26391
26417
  /**
26392
26418
  * Custom field data for the order object.
26393
26419
  *
26394
- * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
26420
+ * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
26395
26421
  */
26396
26422
  extendedFields?: ExtendedFields$3;
26397
26423
  /** Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. */
@@ -12275,6 +12275,17 @@ interface UpdateLineItemsQuantityResponse$1 {
12275
12275
  /** Updated checkout. */
12276
12276
  checkout?: Checkout$1;
12277
12277
  }
12278
+ interface GetCheckoutPaymentSettingsRequest$1 {
12279
+ /** Checkout ID. */
12280
+ id: string;
12281
+ }
12282
+ interface GetCheckoutPaymentSettingsResponse$1 {
12283
+ blockedPaymentOptions?: PaymentOption$1[];
12284
+ }
12285
+ declare enum PaymentOption$1 {
12286
+ UNKNOWN_PAYMENT_OPTION = "UNKNOWN_PAYMENT_OPTION",
12287
+ MANUAL = "MANUAL"
12288
+ }
12278
12289
  interface CatalogReferenceNonNullableFields$7 {
12279
12290
  catalogItemId: string;
12280
12291
  appId: string;
@@ -12752,6 +12763,9 @@ interface CreateOrderResponseNonNullableFields$3 {
12752
12763
  interface UpdateLineItemsQuantityResponseNonNullableFields$1 {
12753
12764
  checkout?: CheckoutNonNullableFields$1;
12754
12765
  }
12766
+ interface GetCheckoutPaymentSettingsResponseNonNullableFields$1 {
12767
+ blockedPaymentOptions: PaymentOption$1[];
12768
+ }
12755
12769
 
12756
12770
  interface Checkout {
12757
12771
  /**
@@ -14360,6 +14374,17 @@ interface UpdateLineItemsQuantityResponse {
14360
14374
  /** Updated checkout. */
14361
14375
  checkout?: Checkout;
14362
14376
  }
14377
+ interface GetCheckoutPaymentSettingsRequest {
14378
+ /** Checkout ID. */
14379
+ _id: string;
14380
+ }
14381
+ interface GetCheckoutPaymentSettingsResponse {
14382
+ blockedPaymentOptions?: PaymentOption[];
14383
+ }
14384
+ declare enum PaymentOption {
14385
+ UNKNOWN_PAYMENT_OPTION = "UNKNOWN_PAYMENT_OPTION",
14386
+ MANUAL = "MANUAL"
14387
+ }
14363
14388
  interface CatalogReferenceNonNullableFields$6 {
14364
14389
  catalogItemId: string;
14365
14390
  appId: string;
@@ -14823,6 +14848,9 @@ interface CreateOrderResponseNonNullableFields$2 {
14823
14848
  interface UpdateLineItemsQuantityResponseNonNullableFields {
14824
14849
  checkout?: CheckoutNonNullableFields;
14825
14850
  }
14851
+ interface GetCheckoutPaymentSettingsResponseNonNullableFields {
14852
+ blockedPaymentOptions: PaymentOption[];
14853
+ }
14826
14854
 
14827
14855
  type __PublicMethodMetaInfo$g<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
14828
14856
  getUrl: (context: any) => string;
@@ -14871,11 +14899,15 @@ declare function markCheckoutAsCompleted(): __PublicMethodMetaInfo$g<'POST', {
14871
14899
  declare function updateLineItemsQuantity(): __PublicMethodMetaInfo$g<'POST', {
14872
14900
  id: string;
14873
14901
  }, UpdateLineItemsQuantityRequest, UpdateLineItemsQuantityRequest$1, UpdateLineItemsQuantityResponse & UpdateLineItemsQuantityResponseNonNullableFields, UpdateLineItemsQuantityResponse$1 & UpdateLineItemsQuantityResponseNonNullableFields$1>;
14902
+ declare function getCheckoutPaymentSettings(): __PublicMethodMetaInfo$g<'GET', {
14903
+ id: string;
14904
+ }, GetCheckoutPaymentSettingsRequest, GetCheckoutPaymentSettingsRequest$1, GetCheckoutPaymentSettingsResponse & GetCheckoutPaymentSettingsResponseNonNullableFields, GetCheckoutPaymentSettingsResponse$1 & GetCheckoutPaymentSettingsResponseNonNullableFields$1>;
14874
14905
 
14875
14906
  declare const meta$g_addToCheckout: typeof addToCheckout;
14876
14907
  declare const meta$g_createCheckout: typeof createCheckout;
14877
14908
  declare const meta$g_getCheckout: typeof getCheckout;
14878
14909
  declare const meta$g_getCheckoutByCartId: typeof getCheckoutByCartId;
14910
+ declare const meta$g_getCheckoutPaymentSettings: typeof getCheckoutPaymentSettings;
14879
14911
  declare const meta$g_getCheckoutUrl: typeof getCheckoutUrl;
14880
14912
  declare const meta$g_markCheckoutAsCompleted: typeof markCheckoutAsCompleted;
14881
14913
  declare const meta$g_removeCoupon: typeof removeCoupon;
@@ -14885,7 +14917,7 @@ declare const meta$g_removeOverrideCheckoutUrl: typeof removeOverrideCheckoutUrl
14885
14917
  declare const meta$g_updateCheckout: typeof updateCheckout;
14886
14918
  declare const meta$g_updateLineItemsQuantity: typeof updateLineItemsQuantity;
14887
14919
  declare namespace meta$g {
14888
- export { type __PublicMethodMetaInfo$g as __PublicMethodMetaInfo, meta$g_addToCheckout as addToCheckout, meta$g_createCheckout as createCheckout, createOrder$1 as createOrder, meta$g_getCheckout as getCheckout, meta$g_getCheckoutByCartId as getCheckoutByCartId, meta$g_getCheckoutUrl as getCheckoutUrl, meta$g_markCheckoutAsCompleted as markCheckoutAsCompleted, meta$g_removeCoupon as removeCoupon, meta$g_removeGiftCard as removeGiftCard, meta$g_removeLineItems as removeLineItems, meta$g_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, meta$g_updateCheckout as updateCheckout, meta$g_updateLineItemsQuantity as updateLineItemsQuantity };
14920
+ export { type __PublicMethodMetaInfo$g as __PublicMethodMetaInfo, meta$g_addToCheckout as addToCheckout, meta$g_createCheckout as createCheckout, createOrder$1 as createOrder, meta$g_getCheckout as getCheckout, meta$g_getCheckoutByCartId as getCheckoutByCartId, meta$g_getCheckoutPaymentSettings as getCheckoutPaymentSettings, meta$g_getCheckoutUrl as getCheckoutUrl, meta$g_markCheckoutAsCompleted as markCheckoutAsCompleted, meta$g_removeCoupon as removeCoupon, meta$g_removeGiftCard as removeGiftCard, meta$g_removeLineItems as removeLineItems, meta$g_removeOverrideCheckoutUrl as removeOverrideCheckoutUrl, meta$g_updateCheckout as updateCheckout, meta$g_updateLineItemsQuantity as updateLineItemsQuantity };
14889
14921
  }
14890
14922
 
14891
14923
  interface CheckoutSettings$1 {
@@ -19367,7 +19399,7 @@ interface Order$3 {
19367
19399
  /**
19368
19400
  * Custom field data for the order object.
19369
19401
  *
19370
- * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
19402
+ * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
19371
19403
  */
19372
19404
  extendedFields?: ExtendedFields$9;
19373
19405
  /** Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. */
@@ -21868,7 +21900,7 @@ interface Order$2 {
21868
21900
  /**
21869
21901
  * Custom field data for the order object.
21870
21902
  *
21871
- * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
21903
+ * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
21872
21904
  */
21873
21905
  extendedFields?: ExtendedFields$8;
21874
21906
  /** Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. */
@@ -24308,7 +24340,7 @@ interface Order$1 {
24308
24340
  /**
24309
24341
  * Custom field data for the order object.
24310
24342
  *
24311
- * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
24343
+ * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
24312
24344
  */
24313
24345
  extendedFields?: ExtendedFields$7;
24314
24346
  /** Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. */
@@ -26588,7 +26620,7 @@ interface Order {
26588
26620
  /**
26589
26621
  * Custom field data for the order object.
26590
26622
  *
26591
- * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
26623
+ * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
26592
26624
  */
26593
26625
  extendedFields?: ExtendedFields$6;
26594
26626
  /** Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. */
@@ -1901,7 +1901,7 @@ interface Order {
1901
1901
  /**
1902
1902
  * Custom field data for the order object.
1903
1903
  *
1904
- * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
1904
+ * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
1905
1905
  */
1906
1906
  extendedFields?: ExtendedFields$1;
1907
1907
  /** Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. */
@@ -1901,7 +1901,7 @@ interface Order {
1901
1901
  /**
1902
1902
  * Custom field data for the order object.
1903
1903
  *
1904
- * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the Wix Dev Center before they can be accessed with API calls.
1904
+ * [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
1905
1905
  */
1906
1906
  extendedFields?: ExtendedFields$1;
1907
1907
  /** Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. */