@wix/auto_sdk_ecom_payment-settings 1.0.130 → 1.0.132

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.
Files changed (29) hide show
  1. package/build/cjs/index.d.ts +2 -2
  2. package/build/cjs/index.js +0 -14
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +2 -2
  5. package/build/cjs/index.typings.js +0 -14
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/{interfaces-ecommerce-v1-payment-settings-provider.public-DjwNomvx.d.ts → interfaces-ecommerce-v1-payment-settings-provider.public-Dvsg8lsR.d.ts} +2 -61
  8. package/build/es/index.d.mts +2 -2
  9. package/build/es/index.mjs +0 -12
  10. package/build/es/index.mjs.map +1 -1
  11. package/build/es/index.typings.d.mts +2 -2
  12. package/build/es/index.typings.mjs +0 -12
  13. package/build/es/index.typings.mjs.map +1 -1
  14. package/build/es/{interfaces-ecommerce-v1-payment-settings-provider.public-DjwNomvx.d.mts → interfaces-ecommerce-v1-payment-settings-provider.public-Dvsg8lsR.d.mts} +2 -61
  15. package/build/internal/cjs/index.d.ts +2 -2
  16. package/build/internal/cjs/index.js +0 -14
  17. package/build/internal/cjs/index.js.map +1 -1
  18. package/build/internal/cjs/index.typings.d.ts +2 -2
  19. package/build/internal/cjs/index.typings.js +0 -14
  20. package/build/internal/cjs/index.typings.js.map +1 -1
  21. package/build/internal/cjs/{interfaces-ecommerce-v1-payment-settings-provider.public-DjwNomvx.d.ts → interfaces-ecommerce-v1-payment-settings-provider.public-Dvsg8lsR.d.ts} +2 -61
  22. package/build/internal/es/index.d.mts +2 -2
  23. package/build/internal/es/index.mjs +0 -12
  24. package/build/internal/es/index.mjs.map +1 -1
  25. package/build/internal/es/index.typings.d.mts +2 -2
  26. package/build/internal/es/index.typings.mjs +0 -12
  27. package/build/internal/es/index.typings.mjs.map +1 -1
  28. package/build/internal/es/{interfaces-ecommerce-v1-payment-settings-provider.public-DjwNomvx.d.mts → interfaces-ecommerce-v1-payment-settings-provider.public-Dvsg8lsR.d.mts} +2 -61
  29. package/package.json +2 -2
@@ -4655,13 +4655,7 @@ interface Membership {
4655
4655
  * @maxLength 100
4656
4656
  */
4657
4657
  lineItemIds?: string[];
4658
- /**
4659
- * Deprecated. The new flow no longer exposes raw balances on a membership; what a membership can pay
4660
- * for is conveyed by `ExistingMembership.covered_line_items` (per-item redemption cost).
4661
- * @deprecated
4662
- * @replacedBy ExistingMembership.covered_line_items.redemption_cost
4663
- * @targetRemovalDate 2026-07-30
4664
- */
4658
+ /** Membership's payment credits (balance information). */
4665
4659
  credits?: MembershipPaymentCredits;
4666
4660
  /**
4667
4661
  * Deprecated. Use `offering_description`.
@@ -4705,59 +4699,6 @@ declare enum BalanceType {
4705
4699
  /** Balance is measured in a currency-like value (e.g., points). */
4706
4700
  CREDIT = "CREDIT"
4707
4701
  }
4708
- /**
4709
- * A single redeemable benefit. A purchasable plan grants one or more benefits (`PurchasablePlan.benefits`);
4710
- * once the plan is paid, each benefit becomes its own membership (charged via `membership_id`).
4711
- * (Also present on the deprecated `Membership.benefits`, retained for backward compatibility.)
4712
- */
4713
- interface Benefit extends BenefitQuotaOneOf {
4714
- limitedQuota?: LimitedQuota;
4715
- /**
4716
- * Identifier for this benefit. On a `PurchasablePlan` it must be unique within the response so
4717
- * `coverages` (`LineItemCoverage.benefit_id`) can reference it unambiguously across the plan's benefits.
4718
- * @minLength 1
4719
- * @maxLength 200
4720
- */
4721
- benefitId?: string;
4722
- /**
4723
- * Human-readable label for this benefit (for example, "Manicure" or "Pedicure" on multi-set punchcards).
4724
- * @maxLength 200
4725
- */
4726
- label?: string | null;
4727
- /**
4728
- * The kind of quota this benefit grants: a countable amount drawn down on redemption (`LIMITED`),
4729
- * or an unbounded amount that is never drawn down (`UNLIMITED`).
4730
- */
4731
- quotaType?: QuotaType;
4732
- }
4733
- /** @oneof */
4734
- interface BenefitQuotaOneOf {
4735
- limitedQuota?: LimitedQuota;
4736
- }
4737
- declare enum QuotaType {
4738
- /** The benefit grants a countable quota that is drawn down on redemption. */
4739
- LIMITED = "LIMITED",
4740
- /** The benefit is unlimited (unbounded) and is never drawn down. */
4741
- UNLIMITED = "UNLIMITED"
4742
- }
4743
- /** A limited, countable redeemable amount. */
4744
- interface LimitedQuota {
4745
- /**
4746
- * The quota's initial value.
4747
- * @min 1
4748
- */
4749
- total?: number;
4750
- /** The quota's remaining value. */
4751
- remaining?: number;
4752
- /** How the quota is measured. */
4753
- limitedQuotaType?: LimitedQuotaType;
4754
- }
4755
- declare enum LimitedQuotaType {
4756
- /** Quota is measured in discrete uses (e.g., sessions, visits). */
4757
- PUNCH_CARD = "PUNCH_CARD",
4758
- /** Quota is measured in a currency-like value (e.g., points). */
4759
- CREDIT = "CREDIT"
4760
- }
4761
4702
  interface InvalidMembership {
4762
4703
  /** Membership details. */
4763
4704
  membership?: Membership;
@@ -5151,4 +5092,4 @@ declare const provideHandlers: ServicePluginDefinition<{
5151
5092
  getPaymentSettingsForCheckout(payload: GetPaymentSettingsForCheckoutEnvelope): GetPaymentSettingsForCheckoutResponse | Promise<GetPaymentSettingsForCheckoutResponse>;
5152
5093
  }>;
5153
5094
 
5154
- export { PaymentStatus as $, AdjustmentType as A, type BillingSettings as B, type CatalogReference as C, type DescriptionLine as D, type PriceDescription as E, type FocalPoint as F, type GetPaymentSettingsRequest as G, type LocationAndQuantity as H, type ItemType as I, JurisdictionType as J, type TaxableAddressTaxableAddressDataOneOf as K, type LineItemTaxInfo as L, TaxableAddressType as M, type DecimalQuantity as N, type Order as O, type ProductName as P, type DecimalQuantityUnitOneOf as Q, type RestockLocation as R, type SubscriptionInfo as S, type TaxableAddress as T, type TranslatableString as U, MeasurementUnit as V, type ExtendedFields as W, type V1ModifierGroup as X, type V1ItemModifier as Y, type V1BuyerInfo as Z, type V1BuyerInfoIdOneOf as _, type OrderLineItem as a, type AuthorizedPaymentCreated as a$, FulfillmentStatus as a0, WeightUnit as a1, type CurrencyConversionDetails as a2, type PriceSummary as a3, type ApiAddressWithContact as a4, type Address as a5, type StreetAddress as a6, type AddressLocation as a7, type FullAddressContactDetails as a8, type VatId as a9, type Activity as aA, type ActivityContentOneOf as aB, type CustomActivity as aC, type MerchantComment as aD, type OrderRefunded as aE, type OrderCreatedFromExchange as aF, type NewExchangeOrderCreated as aG, type LineItemExchangeData as aH, type DraftOrderChangesApplied as aI, type OrderChange as aJ, type OrderChangeValueOneOf as aK, type LineItemChanges as aL, type LineItemQuantityChange as aM, LineItemQuantityChangeType as aN, type LineItemPriceChange as aO, type LineItemProductNameChange as aP, type LineItemDescriptionLineChange as aQ, type LineItemModifiersChange as aR, type ManagedLineItem as aS, type ManagedDiscount as aT, type TranslatedValue as aU, type LineItemAmount as aV, type ManagedAdditionalFee as aW, type TotalPriceChange as aX, type ShippingInformationChange as aY, type ShippingInformation as aZ, type SavedPaymentMethod as a_, VatType as aa, type V1ShippingInformation as ab, type DeliveryLogistics as ac, type DeliveryLogisticsAddressOneOf as ad, type PickupDetails as ae, type PickupAddress as af, PickupMethod as ag, type DeliveryTimeSlot as ah, type ShippingPrice as ai, type ShippingRegion as aj, OrderStatus as ak, type TaxSummary as al, type OrderTaxInfo as am, type OrderTaxBreakdown as an, type AppliedDiscount as ao, type AppliedDiscountDiscountSourceOneOf as ap, DiscountType as aq, type Coupon as ar, type MerchantDiscount as as, type MerchantDiscountMerchantDiscountReasonOneOf as at, DiscountReason as au, type DiscountRule as av, type DiscountRuleName as aw, type LineItemDiscount as ax, type ItemCombination as ay, type ItemCombinationLineItem as az, type Price as b, type V1ItemTaxFullDetails as b$, type AuthorizedPaymentCaptured as b0, type AuthorizedPaymentVoided as b1, type RefundInitiated as b2, type RefundedPayment as b3, type RefundedPaymentKindOneOf as b4, type RegularPaymentRefund as b5, type GiftCardPaymentRefund as b6, type MembershipPaymentRefund as b7, type PaymentRefunded as b8, type PaymentRefundFailed as b9, type BalanceSummary as bA, type Balance as bB, type CashRounding as bC, type AdditionalFee as bD, AdditionalFeeSource as bE, type FulfillmentStatusesAggregate as bF, type Tags as bG, type TagList as bH, type Location as bI, type OrderSettings as bJ, type OrderSettingsAllowedActionsOneOf as bK, type OrderSettingsEditableByOneOf as bL, type CustomAllowedActions as bM, OrderActionType as bN, type OwnerApps as bO, SpecificItemsCouponBehavior as bP, type FormInfo as bQ, type FormIdentifier as bR, type PlatformFeeSummary as bS, type PlatformFee as bT, ChargeType as bU, type GetPaymentSettingsResponse as bV, type PaymentSettings as bW, type GetPaymentSettingsForCheckoutRequest as bX, type Checkout as bY, type LineItem as bZ, type MultiCurrencyPrice as b_, type RefundedAsStoreCredit as ba, type PaymentPending as bb, type PaymentPendingPaymentDetailsOneOf as bc, type RegularPayment as bd, type RegularPaymentPaymentMethodDetailsOneOf as be, type CreditCardDetails as bf, type PaymentCanceled as bg, type PaymentCanceledPaymentDetailsOneOf as bh, type PaymentDeclined as bi, type PaymentDeclinedPaymentDetailsOneOf as bj, type ReceiptCreated as bk, type ReceiptCreatedReceiptInfoOneOf as bl, type WixReceipt as bm, type ExternalReceipt as bn, type ReceiptSent as bo, type ReceiptSentReceiptInfoOneOf as bp, type ChargebackCreated as bq, type ChargebackReversed as br, ActivityType as bs, OrderActivityTypeEnumActivityType as bt, AttributionSource as bu, type V1CreatedBy as bv, type V1CreatedByStringOneOf as bw, type ChannelInfo as bx, ChannelType as by, type CustomField as bz, type DescriptionLineValueOneOf as c, type V1MerchantDiscount as c$, type TaxRateBreakdown as c0, type TaxBreakdown as c1, V1JurisdictionType as c2, type ItemAvailabilityInfo as c3, ItemAvailabilityStatus as c4, type Scope as c5, type Group as c6, type SubscriptionOptionInfo as c7, type V1SubscriptionSettings as c8, type V1FreeTrialPeriod as c9, type Region as cA, type ApplicableLineItems as cB, type V1ShippingRegion as cC, type CarrierServiceOption as cD, type ShippingOption as cE, type V1ShippingPrice as cF, type OtherCharge as cG, type BuyerInfo as cH, type BuyerInfoIdOneOf as cI, type V1PriceSummary as cJ, type CalculationErrors as cK, type CalculationErrorsShippingCalculationErrorOneOf as cL, type Details as cM, type DetailsKindOneOf as cN, type ApplicationError as cO, type ValidationError as cP, RuleType as cQ, type FieldViolation as cR, type SystemError as cS, type CarrierErrors as cT, type CarrierError as cU, type GiftCardCalculationError as cV, type GiftCard as cW, type V1AppliedDiscount as cX, type V1AppliedDiscountDiscountSourceOneOf as cY, AppliedDiscountDiscountType as cZ, type V1Coupon as c_, type V1BillingSettings as ca, SubscriptionSettingsProductPeriodAlignment as cb, type Title as cc, type Description as cd, type SecuredMedia as ce, FileType as cf, type ServiceProperties as cg, type CatalogOverrideFields as ch, type PaymentOption as ci, type Policy as cj, type ModifierGroup as ck, type ItemModifier as cl, type V1PlatformFee as cm, PlatformFeeChargeType as cn, type AddressWithContact as co, type ShippingInfo as cp, type SelectedCarrierServiceOption as cq, type V1DeliveryLogistics as cr, type V1PickupDetails as cs, PickupDetailsPickupMethod as ct, type V1DeliveryTimeSlot as cu, type SelectedCarrierServiceOptionPrices as cv, type SelectedCarrierServiceOptionOtherCharge as cw, V1ChargeType as cx, type DeliveryAllocation as cy, type Carrier as cz, type DescriptionLineDescriptionLineValueOneOf as d, type V1DiscountRule as d0, type V1DiscountRuleName as d1, type V1LineItemDiscount as d2, type V1ItemCombination as d3, type V1ItemCombinationLineItem as d4, type V1TaxSummary as d5, type TaxCalculationDetails as d6, type TaxCalculationDetailsCalculationDetailsOneOf as d7, RateType as d8, ManualCalculationReason as d9, NameInOther as dA, NameInLineItem as dB, SuggestedFix as dC, type Other as dD, type TargetLineItem as dE, type CustomSettings as dF, type CustomContentReference as dG, type ExternalReference as dH, type SubscriptionCharges as dI, type Charge as dJ, type GetPaymentSettingsForCheckoutResponse as dK, V1PaymentOption as dL, type PaymentSettingsSPIConfig as dM, type Context as dN, IdentityType as dO, type IdentificationData as dP, type IdentificationDataIdOneOf as dQ, type GetPaymentSettingsEnvelope as dR, type GetPaymentSettingsForCheckoutEnvelope as dS, type AutoTaxFallbackCalculationDetails as da, FallbackReason as db, type AggregatedTaxBreakdown as dc, type CreatedBy as dd, type CreatedByIdOneOf as de, type MembershipOptions as df, type Membership as dg, type MembershipName as dh, type MembershipPaymentCredits as di, BalanceType as dj, type Benefit as dk, type BenefitQuotaOneOf as dl, QuotaType as dm, type LimitedQuota as dn, LimitedQuotaType as dp, type InvalidMembership as dq, type SelectedMemberships as dr, type SelectedMembership as ds, type V1AdditionalFee as dt, AdditionalFeeAdditionalFeeSource as du, type ConversionInfo as dv, type Violation as dw, Severity as dx, type Target as dy, type TargetTargetTypeOneOf as dz, type DescriptionLineName as e, type PlainTextValue as f, type Color as g, DescriptionLineType as h, type PhysicalProperties as i, type Dimensions as j, DimensionsUnit as k, type ItemTypeItemTypeDataOneOf as l, ItemTypePreset as m, PaymentOptionType as n, type ItemTaxFullDetails as o, provideHandlers as p, type LineItemTaxBreakdown as q, type DigitalFile as r, type SubscriptionTitle as s, type SubscriptionDescription as t, type SubscriptionSettings as u, SubscriptionFrequency as v, type FreeTrialPeriod as w, ProductPeriodAlignment as x, type BillingAdjustment as y, type BillingAdjustmentPriceSummary as z };
5095
+ export { PaymentStatus as $, AdjustmentType as A, type BillingSettings as B, type CatalogReference as C, type DescriptionLine as D, type PriceDescription as E, type FocalPoint as F, type GetPaymentSettingsRequest as G, type LocationAndQuantity as H, type ItemType as I, JurisdictionType as J, type TaxableAddressTaxableAddressDataOneOf as K, type LineItemTaxInfo as L, TaxableAddressType as M, type DecimalQuantity as N, type Order as O, type ProductName as P, type DecimalQuantityUnitOneOf as Q, type RestockLocation as R, type SubscriptionInfo as S, type TaxableAddress as T, type TranslatableString as U, MeasurementUnit as V, type ExtendedFields as W, type V1ModifierGroup as X, type V1ItemModifier as Y, type V1BuyerInfo as Z, type V1BuyerInfoIdOneOf as _, type OrderLineItem as a, type AuthorizedPaymentCreated as a$, FulfillmentStatus as a0, WeightUnit as a1, type CurrencyConversionDetails as a2, type PriceSummary as a3, type ApiAddressWithContact as a4, type Address as a5, type StreetAddress as a6, type AddressLocation as a7, type FullAddressContactDetails as a8, type VatId as a9, type Activity as aA, type ActivityContentOneOf as aB, type CustomActivity as aC, type MerchantComment as aD, type OrderRefunded as aE, type OrderCreatedFromExchange as aF, type NewExchangeOrderCreated as aG, type LineItemExchangeData as aH, type DraftOrderChangesApplied as aI, type OrderChange as aJ, type OrderChangeValueOneOf as aK, type LineItemChanges as aL, type LineItemQuantityChange as aM, LineItemQuantityChangeType as aN, type LineItemPriceChange as aO, type LineItemProductNameChange as aP, type LineItemDescriptionLineChange as aQ, type LineItemModifiersChange as aR, type ManagedLineItem as aS, type ManagedDiscount as aT, type TranslatedValue as aU, type LineItemAmount as aV, type ManagedAdditionalFee as aW, type TotalPriceChange as aX, type ShippingInformationChange as aY, type ShippingInformation as aZ, type SavedPaymentMethod as a_, VatType as aa, type V1ShippingInformation as ab, type DeliveryLogistics as ac, type DeliveryLogisticsAddressOneOf as ad, type PickupDetails as ae, type PickupAddress as af, PickupMethod as ag, type DeliveryTimeSlot as ah, type ShippingPrice as ai, type ShippingRegion as aj, OrderStatus as ak, type TaxSummary as al, type OrderTaxInfo as am, type OrderTaxBreakdown as an, type AppliedDiscount as ao, type AppliedDiscountDiscountSourceOneOf as ap, DiscountType as aq, type Coupon as ar, type MerchantDiscount as as, type MerchantDiscountMerchantDiscountReasonOneOf as at, DiscountReason as au, type DiscountRule as av, type DiscountRuleName as aw, type LineItemDiscount as ax, type ItemCombination as ay, type ItemCombinationLineItem as az, type Price as b, type V1ItemTaxFullDetails as b$, type AuthorizedPaymentCaptured as b0, type AuthorizedPaymentVoided as b1, type RefundInitiated as b2, type RefundedPayment as b3, type RefundedPaymentKindOneOf as b4, type RegularPaymentRefund as b5, type GiftCardPaymentRefund as b6, type MembershipPaymentRefund as b7, type PaymentRefunded as b8, type PaymentRefundFailed as b9, type BalanceSummary as bA, type Balance as bB, type CashRounding as bC, type AdditionalFee as bD, AdditionalFeeSource as bE, type FulfillmentStatusesAggregate as bF, type Tags as bG, type TagList as bH, type Location as bI, type OrderSettings as bJ, type OrderSettingsAllowedActionsOneOf as bK, type OrderSettingsEditableByOneOf as bL, type CustomAllowedActions as bM, OrderActionType as bN, type OwnerApps as bO, SpecificItemsCouponBehavior as bP, type FormInfo as bQ, type FormIdentifier as bR, type PlatformFeeSummary as bS, type PlatformFee as bT, ChargeType as bU, type GetPaymentSettingsResponse as bV, type PaymentSettings as bW, type GetPaymentSettingsForCheckoutRequest as bX, type Checkout as bY, type LineItem as bZ, type MultiCurrencyPrice as b_, type RefundedAsStoreCredit as ba, type PaymentPending as bb, type PaymentPendingPaymentDetailsOneOf as bc, type RegularPayment as bd, type RegularPaymentPaymentMethodDetailsOneOf as be, type CreditCardDetails as bf, type PaymentCanceled as bg, type PaymentCanceledPaymentDetailsOneOf as bh, type PaymentDeclined as bi, type PaymentDeclinedPaymentDetailsOneOf as bj, type ReceiptCreated as bk, type ReceiptCreatedReceiptInfoOneOf as bl, type WixReceipt as bm, type ExternalReceipt as bn, type ReceiptSent as bo, type ReceiptSentReceiptInfoOneOf as bp, type ChargebackCreated as bq, type ChargebackReversed as br, ActivityType as bs, OrderActivityTypeEnumActivityType as bt, AttributionSource as bu, type V1CreatedBy as bv, type V1CreatedByStringOneOf as bw, type ChannelInfo as bx, ChannelType as by, type CustomField as bz, type DescriptionLineValueOneOf as c, type V1MerchantDiscount as c$, type TaxRateBreakdown as c0, type TaxBreakdown as c1, V1JurisdictionType as c2, type ItemAvailabilityInfo as c3, ItemAvailabilityStatus as c4, type Scope as c5, type Group as c6, type SubscriptionOptionInfo as c7, type V1SubscriptionSettings as c8, type V1FreeTrialPeriod as c9, type Region as cA, type ApplicableLineItems as cB, type V1ShippingRegion as cC, type CarrierServiceOption as cD, type ShippingOption as cE, type V1ShippingPrice as cF, type OtherCharge as cG, type BuyerInfo as cH, type BuyerInfoIdOneOf as cI, type V1PriceSummary as cJ, type CalculationErrors as cK, type CalculationErrorsShippingCalculationErrorOneOf as cL, type Details as cM, type DetailsKindOneOf as cN, type ApplicationError as cO, type ValidationError as cP, RuleType as cQ, type FieldViolation as cR, type SystemError as cS, type CarrierErrors as cT, type CarrierError as cU, type GiftCardCalculationError as cV, type GiftCard as cW, type V1AppliedDiscount as cX, type V1AppliedDiscountDiscountSourceOneOf as cY, AppliedDiscountDiscountType as cZ, type V1Coupon as c_, type V1BillingSettings as ca, SubscriptionSettingsProductPeriodAlignment as cb, type Title as cc, type Description as cd, type SecuredMedia as ce, FileType as cf, type ServiceProperties as cg, type CatalogOverrideFields as ch, type PaymentOption as ci, type Policy as cj, type ModifierGroup as ck, type ItemModifier as cl, type V1PlatformFee as cm, PlatformFeeChargeType as cn, type AddressWithContact as co, type ShippingInfo as cp, type SelectedCarrierServiceOption as cq, type V1DeliveryLogistics as cr, type V1PickupDetails as cs, PickupDetailsPickupMethod as ct, type V1DeliveryTimeSlot as cu, type SelectedCarrierServiceOptionPrices as cv, type SelectedCarrierServiceOptionOtherCharge as cw, V1ChargeType as cx, type DeliveryAllocation as cy, type Carrier as cz, type DescriptionLineDescriptionLineValueOneOf as d, type V1DiscountRule as d0, type V1DiscountRuleName as d1, type V1LineItemDiscount as d2, type V1ItemCombination as d3, type V1ItemCombinationLineItem as d4, type V1TaxSummary as d5, type TaxCalculationDetails as d6, type TaxCalculationDetailsCalculationDetailsOneOf as d7, RateType as d8, ManualCalculationReason as d9, type CustomSettings as dA, type CustomContentReference as dB, type ExternalReference as dC, type SubscriptionCharges as dD, type Charge as dE, type GetPaymentSettingsForCheckoutResponse as dF, V1PaymentOption as dG, type PaymentSettingsSPIConfig as dH, type Context as dI, IdentityType as dJ, type IdentificationData as dK, type IdentificationDataIdOneOf as dL, type GetPaymentSettingsEnvelope as dM, type GetPaymentSettingsForCheckoutEnvelope as dN, type AutoTaxFallbackCalculationDetails as da, FallbackReason as db, type AggregatedTaxBreakdown as dc, type CreatedBy as dd, type CreatedByIdOneOf as de, type MembershipOptions as df, type Membership as dg, type MembershipName as dh, type MembershipPaymentCredits as di, BalanceType as dj, type InvalidMembership as dk, type SelectedMemberships as dl, type SelectedMembership as dm, type V1AdditionalFee as dn, AdditionalFeeAdditionalFeeSource as dp, type ConversionInfo as dq, type Violation as dr, Severity as ds, type Target as dt, type TargetTargetTypeOneOf as du, NameInOther as dv, NameInLineItem as dw, SuggestedFix as dx, type Other as dy, type TargetLineItem as dz, type DescriptionLineName as e, type PlainTextValue as f, type Color as g, DescriptionLineType as h, type PhysicalProperties as i, type Dimensions as j, DimensionsUnit as k, type ItemTypeItemTypeDataOneOf as l, ItemTypePreset as m, PaymentOptionType as n, type ItemTaxFullDetails as o, provideHandlers as p, type LineItemTaxBreakdown as q, type DigitalFile as r, type SubscriptionTitle as s, type SubscriptionDescription as t, type SubscriptionSettings as u, SubscriptionFrequency as v, type FreeTrialPeriod as w, ProductPeriodAlignment as x, type BillingAdjustment as y, type BillingAdjustmentPriceSummary as z };
@@ -1,5 +1,5 @@
1
- import { p as provideHandlers$1 } from './interfaces-ecommerce-v1-payment-settings-provider.public-DjwNomvx.mjs';
2
- export { aA as Activity, aB as ActivityContentOneOf, bs as ActivityType, bD as AdditionalFee, du as AdditionalFeeAdditionalFeeSource, bE as AdditionalFeeSource, a5 as Address, a7 as AddressLocation, co as AddressWithContact, A as AdjustmentType, dc as AggregatedTaxBreakdown, a4 as ApiAddressWithContact, cB as ApplicableLineItems, cO as ApplicationError, ao as AppliedDiscount, ap as AppliedDiscountDiscountSourceOneOf, cZ as AppliedDiscountDiscountType, bu as AttributionSource, b0 as AuthorizedPaymentCaptured, a$ as AuthorizedPaymentCreated, b1 as AuthorizedPaymentVoided, da as AutoTaxFallbackCalculationDetails, bB as Balance, bA as BalanceSummary, dj as BalanceType, dk as Benefit, dl as BenefitQuotaOneOf, y as BillingAdjustment, z as BillingAdjustmentPriceSummary, B as BillingSettings, cH as BuyerInfo, cI as BuyerInfoIdOneOf, cK as CalculationErrors, cL as CalculationErrorsShippingCalculationErrorOneOf, cz as Carrier, cU as CarrierError, cT as CarrierErrors, cD as CarrierServiceOption, bC as CashRounding, ch as CatalogOverrideFields, C as CatalogReference, bx as ChannelInfo, by as ChannelType, dJ as Charge, bU as ChargeType, bq as ChargebackCreated, br as ChargebackReversed, bY as Checkout, g as Color, dN as Context, dv as ConversionInfo, ar as Coupon, dd as CreatedBy, de as CreatedByIdOneOf, bf as CreditCardDetails, a2 as CurrencyConversionDetails, aC as CustomActivity, bM as CustomAllowedActions, dG as CustomContentReference, bz as CustomField, dF as CustomSettings, N as DecimalQuantity, Q as DecimalQuantityUnitOneOf, cy as DeliveryAllocation, ac as DeliveryLogistics, ad as DeliveryLogisticsAddressOneOf, ah as DeliveryTimeSlot, cd as Description, D as DescriptionLine, d as DescriptionLineDescriptionLineValueOneOf, e as DescriptionLineName, h as DescriptionLineType, c as DescriptionLineValueOneOf, cM as Details, cN as DetailsKindOneOf, r as DigitalFile, j as Dimensions, k as DimensionsUnit, au as DiscountReason, av as DiscountRule, aw as DiscountRuleName, aq as DiscountType, aI as DraftOrderChangesApplied, W as ExtendedFields, bn as ExternalReceipt, dH as ExternalReference, db as FallbackReason, cR as FieldViolation, cf as FileType, F as FocalPoint, bR as FormIdentifier, bQ as FormInfo, w as FreeTrialPeriod, a0 as FulfillmentStatus, bF as FulfillmentStatusesAggregate, a8 as FullAddressContactDetails, bX as GetPaymentSettingsForCheckoutRequest, dK as GetPaymentSettingsForCheckoutResponse, G as GetPaymentSettingsRequest, bV as GetPaymentSettingsResponse, cW as GiftCard, cV as GiftCardCalculationError, b6 as GiftCardPaymentRefund, c6 as Group, dP as IdentificationData, dQ as IdentificationDataIdOneOf, dO as IdentityType, dq as InvalidMembership, c3 as ItemAvailabilityInfo, c4 as ItemAvailabilityStatus, ay as ItemCombination, az as ItemCombinationLineItem, cl as ItemModifier, o as ItemTaxFullDetails, I as ItemType, l as ItemTypeItemTypeDataOneOf, m as ItemTypePreset, J as JurisdictionType, dn as LimitedQuota, dp as LimitedQuotaType, bZ as LineItem, aV as LineItemAmount, aL as LineItemChanges, aQ as LineItemDescriptionLineChange, ax as LineItemDiscount, aH as LineItemExchangeData, aR as LineItemModifiersChange, aO as LineItemPriceChange, aP as LineItemProductNameChange, aM as LineItemQuantityChange, aN as LineItemQuantityChangeType, q as LineItemTaxBreakdown, L as LineItemTaxInfo, bI as Location, H as LocationAndQuantity, aW as ManagedAdditionalFee, aT as ManagedDiscount, aS as ManagedLineItem, d9 as ManualCalculationReason, V as MeasurementUnit, dg as Membership, dh as MembershipName, df as MembershipOptions, di as MembershipPaymentCredits, b7 as MembershipPaymentRefund, aD as MerchantComment, as as MerchantDiscount, at as MerchantDiscountMerchantDiscountReasonOneOf, ck as ModifierGroup, b_ as MultiCurrencyPrice, dB as NameInLineItem, dA as NameInOther, aG as NewExchangeOrderCreated, O as Order, bN as OrderActionType, bt as OrderActivityTypeEnumActivityType, aJ as OrderChange, aK as OrderChangeValueOneOf, aF as OrderCreatedFromExchange, a as OrderLineItem, aE as OrderRefunded, bJ as OrderSettings, bK as OrderSettingsAllowedActionsOneOf, bL as OrderSettingsEditableByOneOf, ak as OrderStatus, an as OrderTaxBreakdown, am as OrderTaxInfo, dD as Other, cG as OtherCharge, bO as OwnerApps, bg as PaymentCanceled, bh as PaymentCanceledPaymentDetailsOneOf, bi as PaymentDeclined, bj as PaymentDeclinedPaymentDetailsOneOf, ci as PaymentOption, n as PaymentOptionType, bb as PaymentPending, bc as PaymentPendingPaymentDetailsOneOf, b9 as PaymentRefundFailed, b8 as PaymentRefunded, bW as PaymentSettings, dM as PaymentSettingsSPIConfig, $ as PaymentStatus, i as PhysicalProperties, af as PickupAddress, ae as PickupDetails, ct as PickupDetailsPickupMethod, ag as PickupMethod, f as PlainTextValue, bT as PlatformFee, cn as PlatformFeeChargeType, bS as PlatformFeeSummary, cj as Policy, b as Price, E as PriceDescription, a3 as PriceSummary, P as ProductName, x as ProductPeriodAlignment, dm as QuotaType, d8 as RateType, bk as ReceiptCreated, bl as ReceiptCreatedReceiptInfoOneOf, bo as ReceiptSent, bp as ReceiptSentReceiptInfoOneOf, b2 as RefundInitiated, ba as RefundedAsStoreCredit, b3 as RefundedPayment, b4 as RefundedPaymentKindOneOf, cA as Region, bd as RegularPayment, be as RegularPaymentPaymentMethodDetailsOneOf, b5 as RegularPaymentRefund, R as RestockLocation, cQ as RuleType, a_ as SavedPaymentMethod, c5 as Scope, ce as SecuredMedia, cq as SelectedCarrierServiceOption, cw as SelectedCarrierServiceOptionOtherCharge, cv as SelectedCarrierServiceOptionPrices, ds as SelectedMembership, dr as SelectedMemberships, cg as ServiceProperties, dx as Severity, cp as ShippingInfo, aZ as ShippingInformation, aY as ShippingInformationChange, cE as ShippingOption, ai as ShippingPrice, aj as ShippingRegion, bP as SpecificItemsCouponBehavior, a6 as StreetAddress, dI as SubscriptionCharges, t as SubscriptionDescription, v as SubscriptionFrequency, S as SubscriptionInfo, c7 as SubscriptionOptionInfo, u as SubscriptionSettings, cb as SubscriptionSettingsProductPeriodAlignment, s as SubscriptionTitle, dC as SuggestedFix, cS as SystemError, bH as TagList, bG as Tags, dy as Target, dE as TargetLineItem, dz as TargetTargetTypeOneOf, c1 as TaxBreakdown, d6 as TaxCalculationDetails, d7 as TaxCalculationDetailsCalculationDetailsOneOf, c0 as TaxRateBreakdown, al as TaxSummary, T as TaxableAddress, K as TaxableAddressTaxableAddressDataOneOf, M as TaxableAddressType, cc as Title, aX as TotalPriceChange, U as TranslatableString, aU as TranslatedValue, dt as V1AdditionalFee, cX as V1AppliedDiscount, cY as V1AppliedDiscountDiscountSourceOneOf, ca as V1BillingSettings, Z as V1BuyerInfo, _ as V1BuyerInfoIdOneOf, cx as V1ChargeType, c_ as V1Coupon, bv as V1CreatedBy, bw as V1CreatedByStringOneOf, cr as V1DeliveryLogistics, cu as V1DeliveryTimeSlot, d0 as V1DiscountRule, d1 as V1DiscountRuleName, c9 as V1FreeTrialPeriod, d3 as V1ItemCombination, d4 as V1ItemCombinationLineItem, Y as V1ItemModifier, b$ as V1ItemTaxFullDetails, c2 as V1JurisdictionType, d2 as V1LineItemDiscount, c$ as V1MerchantDiscount, X as V1ModifierGroup, dL as V1PaymentOption, cs as V1PickupDetails, cm as V1PlatformFee, cJ as V1PriceSummary, ab as V1ShippingInformation, cF as V1ShippingPrice, cC as V1ShippingRegion, c8 as V1SubscriptionSettings, d5 as V1TaxSummary, cP as ValidationError, a9 as VatId, aa as VatType, dw as Violation, a1 as WeightUnit, bm as WixReceipt } from './interfaces-ecommerce-v1-payment-settings-provider.public-DjwNomvx.mjs';
1
+ import { p as provideHandlers$1 } from './interfaces-ecommerce-v1-payment-settings-provider.public-Dvsg8lsR.mjs';
2
+ export { aA as Activity, aB as ActivityContentOneOf, bs as ActivityType, bD as AdditionalFee, dp as AdditionalFeeAdditionalFeeSource, bE as AdditionalFeeSource, a5 as Address, a7 as AddressLocation, co as AddressWithContact, A as AdjustmentType, dc as AggregatedTaxBreakdown, a4 as ApiAddressWithContact, cB as ApplicableLineItems, cO as ApplicationError, ao as AppliedDiscount, ap as AppliedDiscountDiscountSourceOneOf, cZ as AppliedDiscountDiscountType, bu as AttributionSource, b0 as AuthorizedPaymentCaptured, a$ as AuthorizedPaymentCreated, b1 as AuthorizedPaymentVoided, da as AutoTaxFallbackCalculationDetails, bB as Balance, bA as BalanceSummary, dj as BalanceType, y as BillingAdjustment, z as BillingAdjustmentPriceSummary, B as BillingSettings, cH as BuyerInfo, cI as BuyerInfoIdOneOf, cK as CalculationErrors, cL as CalculationErrorsShippingCalculationErrorOneOf, cz as Carrier, cU as CarrierError, cT as CarrierErrors, cD as CarrierServiceOption, bC as CashRounding, ch as CatalogOverrideFields, C as CatalogReference, bx as ChannelInfo, by as ChannelType, dE as Charge, bU as ChargeType, bq as ChargebackCreated, br as ChargebackReversed, bY as Checkout, g as Color, dI as Context, dq as ConversionInfo, ar as Coupon, dd as CreatedBy, de as CreatedByIdOneOf, bf as CreditCardDetails, a2 as CurrencyConversionDetails, aC as CustomActivity, bM as CustomAllowedActions, dB as CustomContentReference, bz as CustomField, dA as CustomSettings, N as DecimalQuantity, Q as DecimalQuantityUnitOneOf, cy as DeliveryAllocation, ac as DeliveryLogistics, ad as DeliveryLogisticsAddressOneOf, ah as DeliveryTimeSlot, cd as Description, D as DescriptionLine, d as DescriptionLineDescriptionLineValueOneOf, e as DescriptionLineName, h as DescriptionLineType, c as DescriptionLineValueOneOf, cM as Details, cN as DetailsKindOneOf, r as DigitalFile, j as Dimensions, k as DimensionsUnit, au as DiscountReason, av as DiscountRule, aw as DiscountRuleName, aq as DiscountType, aI as DraftOrderChangesApplied, W as ExtendedFields, bn as ExternalReceipt, dC as ExternalReference, db as FallbackReason, cR as FieldViolation, cf as FileType, F as FocalPoint, bR as FormIdentifier, bQ as FormInfo, w as FreeTrialPeriod, a0 as FulfillmentStatus, bF as FulfillmentStatusesAggregate, a8 as FullAddressContactDetails, bX as GetPaymentSettingsForCheckoutRequest, dF as GetPaymentSettingsForCheckoutResponse, G as GetPaymentSettingsRequest, bV as GetPaymentSettingsResponse, cW as GiftCard, cV as GiftCardCalculationError, b6 as GiftCardPaymentRefund, c6 as Group, dK as IdentificationData, dL as IdentificationDataIdOneOf, dJ as IdentityType, dk as InvalidMembership, c3 as ItemAvailabilityInfo, c4 as ItemAvailabilityStatus, ay as ItemCombination, az as ItemCombinationLineItem, cl as ItemModifier, o as ItemTaxFullDetails, I as ItemType, l as ItemTypeItemTypeDataOneOf, m as ItemTypePreset, J as JurisdictionType, bZ as LineItem, aV as LineItemAmount, aL as LineItemChanges, aQ as LineItemDescriptionLineChange, ax as LineItemDiscount, aH as LineItemExchangeData, aR as LineItemModifiersChange, aO as LineItemPriceChange, aP as LineItemProductNameChange, aM as LineItemQuantityChange, aN as LineItemQuantityChangeType, q as LineItemTaxBreakdown, L as LineItemTaxInfo, bI as Location, H as LocationAndQuantity, aW as ManagedAdditionalFee, aT as ManagedDiscount, aS as ManagedLineItem, d9 as ManualCalculationReason, V as MeasurementUnit, dg as Membership, dh as MembershipName, df as MembershipOptions, di as MembershipPaymentCredits, b7 as MembershipPaymentRefund, aD as MerchantComment, as as MerchantDiscount, at as MerchantDiscountMerchantDiscountReasonOneOf, ck as ModifierGroup, b_ as MultiCurrencyPrice, dw as NameInLineItem, dv as NameInOther, aG as NewExchangeOrderCreated, O as Order, bN as OrderActionType, bt as OrderActivityTypeEnumActivityType, aJ as OrderChange, aK as OrderChangeValueOneOf, aF as OrderCreatedFromExchange, a as OrderLineItem, aE as OrderRefunded, bJ as OrderSettings, bK as OrderSettingsAllowedActionsOneOf, bL as OrderSettingsEditableByOneOf, ak as OrderStatus, an as OrderTaxBreakdown, am as OrderTaxInfo, dy as Other, cG as OtherCharge, bO as OwnerApps, bg as PaymentCanceled, bh as PaymentCanceledPaymentDetailsOneOf, bi as PaymentDeclined, bj as PaymentDeclinedPaymentDetailsOneOf, ci as PaymentOption, n as PaymentOptionType, bb as PaymentPending, bc as PaymentPendingPaymentDetailsOneOf, b9 as PaymentRefundFailed, b8 as PaymentRefunded, bW as PaymentSettings, dH as PaymentSettingsSPIConfig, $ as PaymentStatus, i as PhysicalProperties, af as PickupAddress, ae as PickupDetails, ct as PickupDetailsPickupMethod, ag as PickupMethod, f as PlainTextValue, bT as PlatformFee, cn as PlatformFeeChargeType, bS as PlatformFeeSummary, cj as Policy, b as Price, E as PriceDescription, a3 as PriceSummary, P as ProductName, x as ProductPeriodAlignment, d8 as RateType, bk as ReceiptCreated, bl as ReceiptCreatedReceiptInfoOneOf, bo as ReceiptSent, bp as ReceiptSentReceiptInfoOneOf, b2 as RefundInitiated, ba as RefundedAsStoreCredit, b3 as RefundedPayment, b4 as RefundedPaymentKindOneOf, cA as Region, bd as RegularPayment, be as RegularPaymentPaymentMethodDetailsOneOf, b5 as RegularPaymentRefund, R as RestockLocation, cQ as RuleType, a_ as SavedPaymentMethod, c5 as Scope, ce as SecuredMedia, cq as SelectedCarrierServiceOption, cw as SelectedCarrierServiceOptionOtherCharge, cv as SelectedCarrierServiceOptionPrices, dm as SelectedMembership, dl as SelectedMemberships, cg as ServiceProperties, ds as Severity, cp as ShippingInfo, aZ as ShippingInformation, aY as ShippingInformationChange, cE as ShippingOption, ai as ShippingPrice, aj as ShippingRegion, bP as SpecificItemsCouponBehavior, a6 as StreetAddress, dD as SubscriptionCharges, t as SubscriptionDescription, v as SubscriptionFrequency, S as SubscriptionInfo, c7 as SubscriptionOptionInfo, u as SubscriptionSettings, cb as SubscriptionSettingsProductPeriodAlignment, s as SubscriptionTitle, dx as SuggestedFix, cS as SystemError, bH as TagList, bG as Tags, dt as Target, dz as TargetLineItem, du as TargetTargetTypeOneOf, c1 as TaxBreakdown, d6 as TaxCalculationDetails, d7 as TaxCalculationDetailsCalculationDetailsOneOf, c0 as TaxRateBreakdown, al as TaxSummary, T as TaxableAddress, K as TaxableAddressTaxableAddressDataOneOf, M as TaxableAddressType, cc as Title, aX as TotalPriceChange, U as TranslatableString, aU as TranslatedValue, dn as V1AdditionalFee, cX as V1AppliedDiscount, cY as V1AppliedDiscountDiscountSourceOneOf, ca as V1BillingSettings, Z as V1BuyerInfo, _ as V1BuyerInfoIdOneOf, cx as V1ChargeType, c_ as V1Coupon, bv as V1CreatedBy, bw as V1CreatedByStringOneOf, cr as V1DeliveryLogistics, cu as V1DeliveryTimeSlot, d0 as V1DiscountRule, d1 as V1DiscountRuleName, c9 as V1FreeTrialPeriod, d3 as V1ItemCombination, d4 as V1ItemCombinationLineItem, Y as V1ItemModifier, b$ as V1ItemTaxFullDetails, c2 as V1JurisdictionType, d2 as V1LineItemDiscount, c$ as V1MerchantDiscount, X as V1ModifierGroup, dG as V1PaymentOption, cs as V1PickupDetails, cm as V1PlatformFee, cJ as V1PriceSummary, ab as V1ShippingInformation, cF as V1ShippingPrice, cC as V1ShippingRegion, c8 as V1SubscriptionSettings, d5 as V1TaxSummary, cP as ValidationError, a9 as VatId, aa as VatType, dr as Violation, a1 as WeightUnit, bm as WixReceipt } from './interfaces-ecommerce-v1-payment-settings-provider.public-Dvsg8lsR.mjs';
3
3
  import { BuildServicePluginDefinition } from '@wix/sdk-types';
4
4
 
5
5
  declare const provideHandlers: BuildServicePluginDefinition<typeof provideHandlers$1> & typeof provideHandlers$1;
@@ -395,16 +395,6 @@ var BalanceType = /* @__PURE__ */ ((BalanceType2) => {
395
395
  BalanceType2["CREDIT"] = "CREDIT";
396
396
  return BalanceType2;
397
397
  })(BalanceType || {});
398
- var QuotaType = /* @__PURE__ */ ((QuotaType2) => {
399
- QuotaType2["LIMITED"] = "LIMITED";
400
- QuotaType2["UNLIMITED"] = "UNLIMITED";
401
- return QuotaType2;
402
- })(QuotaType || {});
403
- var LimitedQuotaType = /* @__PURE__ */ ((LimitedQuotaType2) => {
404
- LimitedQuotaType2["PUNCH_CARD"] = "PUNCH_CARD";
405
- LimitedQuotaType2["CREDIT"] = "CREDIT";
406
- return LimitedQuotaType2;
407
- })(LimitedQuotaType || {});
408
398
  var AdditionalFeeAdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeAdditionalFeeSource2) => {
409
399
  AdditionalFeeAdditionalFeeSource2["UNKNOWN_ADDITIONAL_FEE_SOURCE"] = "UNKNOWN_ADDITIONAL_FEE_SOURCE";
410
400
  AdditionalFeeAdditionalFeeSource2["SERVICE_PLUGIN"] = "SERVICE_PLUGIN";
@@ -635,7 +625,6 @@ export {
635
625
  ItemAvailabilityStatus,
636
626
  ItemTypePreset,
637
627
  JurisdictionType,
638
- LimitedQuotaType,
639
628
  LineItemQuantityChangeType,
640
629
  ManualCalculationReason,
641
630
  MeasurementUnit,
@@ -650,7 +639,6 @@ export {
650
639
  PickupMethod,
651
640
  PlatformFeeChargeType,
652
641
  ProductPeriodAlignment,
653
- QuotaType,
654
642
  RateType,
655
643
  RuleType,
656
644
  Severity,