@wix/auto_sdk_ecom_payment-settings 1.0.125 → 1.0.126

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 +14 -0
  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 +14 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/{interfaces-ecommerce-v1-payment-settings-provider.public-DwWDppeY.d.ts → interfaces-ecommerce-v1-payment-settings-provider.public-BYz8pkm3.d.ts} +72 -5
  8. package/build/es/index.d.mts +2 -2
  9. package/build/es/index.mjs +12 -0
  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 +12 -0
  13. package/build/es/index.typings.mjs.map +1 -1
  14. package/build/es/{interfaces-ecommerce-v1-payment-settings-provider.public-DwWDppeY.d.mts → interfaces-ecommerce-v1-payment-settings-provider.public-BYz8pkm3.d.mts} +72 -5
  15. package/build/internal/cjs/index.d.ts +2 -2
  16. package/build/internal/cjs/index.js +14 -0
  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 +14 -0
  20. package/build/internal/cjs/index.typings.js.map +1 -1
  21. package/build/internal/cjs/{interfaces-ecommerce-v1-payment-settings-provider.public-DwWDppeY.d.ts → interfaces-ecommerce-v1-payment-settings-provider.public-BYz8pkm3.d.ts} +72 -5
  22. package/build/internal/es/index.d.mts +2 -2
  23. package/build/internal/es/index.mjs +12 -0
  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 +12 -0
  27. package/build/internal/es/index.typings.mjs.map +1 -1
  28. package/build/internal/es/{interfaces-ecommerce-v1-payment-settings-provider.public-DwWDppeY.d.mts → interfaces-ecommerce-v1-payment-settings-provider.public-BYz8pkm3.d.mts} +72 -5
  29. package/package.json +2 -2
@@ -4600,18 +4600,33 @@ interface Membership {
4600
4600
  /** The name of this membership. */
4601
4601
  name?: MembershipName;
4602
4602
  /**
4603
- * Line item IDs which are "paid" for by this membership.
4603
+ * Deprecated. Use the response-level `coverages` (`LineItemCoverage`) to see which line items each benefit covers.
4604
4604
  * @minSize 1
4605
4605
  * @maxSize 300
4606
4606
  * @minLength 1
4607
4607
  * @maxLength 100
4608
4608
  */
4609
4609
  lineItemIds?: string[];
4610
- /** Optional - For a membership that has limited credits, information about credit usage. */
4610
+ /**
4611
+ * Deprecated. Use `benefits`.
4612
+ * @deprecated
4613
+ * @replacedBy benefits
4614
+ * @targetRemovalDate 2026-07-30
4615
+ */
4611
4616
  credits?: MembershipPaymentCredits;
4612
- /** Optional - TMembership expiry date. */
4617
+ /**
4618
+ * Deprecated. Use `offering_description`.
4619
+ * @deprecated
4620
+ * @replacedBy offering_description
4621
+ * @targetRemovalDate 2026-07-30
4622
+ */
4613
4623
  expirationDate?: Date | null;
4614
- /** Additional data about this membership. */
4624
+ /**
4625
+ * Deprecated. Use `benefits.additional_data`.
4626
+ * @deprecated
4627
+ * @replacedBy benefits
4628
+ * @targetRemovalDate 2026-07-30
4629
+ */
4615
4630
  additionalData?: Record<string, any> | null;
4616
4631
  }
4617
4632
  interface MembershipName {
@@ -4641,6 +4656,58 @@ declare enum BalanceType {
4641
4656
  /** Balance is measured in a currency-like value (e.g., points). */
4642
4657
  CREDIT = "CREDIT"
4643
4658
  }
4659
+ /**
4660
+ * A single redeemable benefit granted by a membership or a purchasable plan.
4661
+ * Used by the per-benefit redemption flow (`ListExistingMemberships`, `ListPurchasablePlans`, `EnhanceAndValidateSelection`).
4662
+ */
4663
+ interface Benefit extends BenefitQuotaOneOf {
4664
+ limitedQuota?: LimitedQuota;
4665
+ /**
4666
+ * Identifier for this benefit. Must be unique within the response so the response-level `coverages`
4667
+ * (`LineItemCoverage.benefit_id`) can reference it unambiguously across memberships/plans.
4668
+ * @minLength 1
4669
+ * @maxLength 100
4670
+ */
4671
+ benefitId?: string;
4672
+ /**
4673
+ * Human-readable label for this benefit (for example, "Manicure" or "Pedicure" on multi-set punchcards).
4674
+ * @maxLength 200
4675
+ */
4676
+ label?: string | null;
4677
+ /**
4678
+ * The kind of quota this benefit grants: a countable amount drawn down on redemption (`LIMITED`),
4679
+ * or an unbounded amount that is never drawn down (`UNLIMITED`).
4680
+ */
4681
+ quotaType?: QuotaType;
4682
+ }
4683
+ /** @oneof */
4684
+ interface BenefitQuotaOneOf {
4685
+ limitedQuota?: LimitedQuota;
4686
+ }
4687
+ declare enum QuotaType {
4688
+ /** The benefit grants a countable quota that is drawn down on redemption. */
4689
+ LIMITED = "LIMITED",
4690
+ /** The benefit is unlimited (unbounded) and is never drawn down. */
4691
+ UNLIMITED = "UNLIMITED"
4692
+ }
4693
+ /** A limited, countable redeemable amount. */
4694
+ interface LimitedQuota {
4695
+ /**
4696
+ * The quota's initial value.
4697
+ * @min 1
4698
+ */
4699
+ total?: number;
4700
+ /** The quota's remaining value. */
4701
+ remaining?: number;
4702
+ /** How the quota is measured. */
4703
+ limitedQuotaType?: LimitedQuotaType;
4704
+ }
4705
+ declare enum LimitedQuotaType {
4706
+ /** Quota is measured in discrete uses (e.g., sessions, visits). */
4707
+ PUNCH_CARD = "PUNCH_CARD",
4708
+ /** Quota is measured in a currency-like value (e.g., points). */
4709
+ CREDIT = "CREDIT"
4710
+ }
4644
4711
  interface InvalidMembership {
4645
4712
  /** Membership details. */
4646
4713
  membership?: Membership;
@@ -5034,4 +5101,4 @@ declare const provideHandlers: ServicePluginDefinition<{
5034
5101
  getPaymentSettingsForCheckout(payload: GetPaymentSettingsForCheckoutEnvelope): GetPaymentSettingsForCheckoutResponse | Promise<GetPaymentSettingsForCheckoutResponse>;
5035
5102
  }>;
5036
5103
 
5037
- export { type CurrencyConversionDetails 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 ExtendedFields as N, type Order as O, type ProductName as P, type TranslatableString as Q, type RestockLocation as R, type SubscriptionInfo as S, type TaxableAddress as T, type V1ItemModifier as U, type V1ModifierGroup as V, type V1BuyerInfo as W, type V1BuyerInfoIdOneOf as X, PaymentStatus as Y, FulfillmentStatus as Z, WeightUnit as _, type OrderLineItem as a, type RefundInitiated as a$, type PriceSummary as a0, type ApiAddressWithContact as a1, type Address as a2, type StreetAddress as a3, type AddressLocation as a4, type FullAddressContactDetails as a5, type VatId as a6, VatType as a7, type V1ShippingInformation as a8, type DeliveryLogistics as a9, type MerchantComment as aA, type OrderRefunded as aB, type OrderCreatedFromExchange as aC, type NewExchangeOrderCreated as aD, type LineItemExchangeData as aE, type DraftOrderChangesApplied as aF, type OrderChange as aG, type OrderChangeValueOneOf as aH, type LineItemChanges as aI, type LineItemQuantityChange as aJ, LineItemQuantityChangeType as aK, type LineItemPriceChange as aL, type LineItemProductNameChange as aM, type LineItemDescriptionLineChange as aN, type LineItemModifiersChange as aO, type ManagedLineItem as aP, type ManagedDiscount as aQ, type TranslatedValue as aR, type LineItemAmount as aS, type ManagedAdditionalFee as aT, type TotalPriceChange as aU, type ShippingInformationChange as aV, type ShippingInformation as aW, type SavedPaymentMethod as aX, type AuthorizedPaymentCreated as aY, type AuthorizedPaymentCaptured as aZ, type AuthorizedPaymentVoided as a_, type DeliveryLogisticsAddressOneOf as aa, type PickupDetails as ab, type PickupAddress as ac, PickupMethod as ad, type DeliveryTimeSlot as ae, type ShippingPrice as af, type ShippingRegion as ag, OrderStatus as ah, type TaxSummary as ai, type OrderTaxInfo as aj, type OrderTaxBreakdown as ak, type AppliedDiscount as al, type AppliedDiscountDiscountSourceOneOf as am, DiscountType as an, type Coupon as ao, type MerchantDiscount as ap, type MerchantDiscountMerchantDiscountReasonOneOf as aq, DiscountReason as ar, type DiscountRule as as, type DiscountRuleName as at, type LineItemDiscount as au, type ItemCombination as av, type ItemCombinationLineItem as aw, type Activity as ax, type ActivityContentOneOf as ay, type CustomActivity as az, type Price as b, V1JurisdictionType as b$, type RefundedPayment as b0, type RefundedPaymentKindOneOf as b1, type RegularPaymentRefund as b2, type GiftCardPaymentRefund as b3, type MembershipPaymentRefund as b4, type PaymentRefunded as b5, type PaymentRefundFailed as b6, type RefundedAsStoreCredit as b7, type PaymentPending as b8, type PaymentPendingPaymentDetailsOneOf as b9, type AdditionalFee as bA, AdditionalFeeSource as bB, type FulfillmentStatusesAggregate as bC, type Tags as bD, type TagList as bE, type Location as bF, type OrderSettings as bG, type OrderSettingsAllowedActionsOneOf as bH, type OrderSettingsEditableByOneOf as bI, type CustomAllowedActions as bJ, OrderActionType as bK, type OwnerApps as bL, SpecificItemsCouponBehavior as bM, type FormInfo as bN, type FormIdentifier as bO, type PlatformFeeSummary as bP, type PlatformFee as bQ, ChargeType as bR, type GetPaymentSettingsResponse as bS, type PaymentSettings as bT, type GetPaymentSettingsForCheckoutRequest as bU, type Checkout as bV, type LineItem as bW, type MultiCurrencyPrice as bX, type V1ItemTaxFullDetails as bY, type TaxRateBreakdown as bZ, type TaxBreakdown as b_, type RegularPayment as ba, type RegularPaymentPaymentMethodDetailsOneOf as bb, type CreditCardDetails as bc, type PaymentCanceled as bd, type PaymentCanceledPaymentDetailsOneOf as be, type PaymentDeclined as bf, type PaymentDeclinedPaymentDetailsOneOf as bg, type ReceiptCreated as bh, type ReceiptCreatedReceiptInfoOneOf as bi, type WixReceipt as bj, type ExternalReceipt as bk, type ReceiptSent as bl, type ReceiptSentReceiptInfoOneOf as bm, type ChargebackCreated as bn, type ChargebackReversed as bo, ActivityType as bp, OrderActivityTypeEnumActivityType as bq, AttributionSource as br, type V1CreatedBy as bs, type V1CreatedByStringOneOf as bt, type ChannelInfo as bu, ChannelType as bv, type CustomField as bw, type BalanceSummary as bx, type Balance as by, type CashRounding as bz, type DescriptionLineValueOneOf as c, type V1LineItemDiscount as c$, type ItemAvailabilityInfo as c0, ItemAvailabilityStatus as c1, type Scope as c2, type Group as c3, type SubscriptionOptionInfo as c4, type V1SubscriptionSettings as c5, type V1FreeTrialPeriod as c6, type V1BillingSettings as c7, SubscriptionSettingsProductPeriodAlignment as c8, type Title as c9, type CarrierServiceOption as cA, type ShippingOption as cB, type V1ShippingPrice as cC, type OtherCharge as cD, type BuyerInfo as cE, type BuyerInfoIdOneOf as cF, type V1PriceSummary as cG, type CalculationErrors as cH, type CalculationErrorsShippingCalculationErrorOneOf as cI, type Details as cJ, type DetailsKindOneOf as cK, type ApplicationError as cL, type ValidationError as cM, RuleType as cN, type FieldViolation as cO, type SystemError as cP, type CarrierErrors as cQ, type CarrierError as cR, type GiftCardCalculationError as cS, type GiftCard as cT, type V1AppliedDiscount as cU, type V1AppliedDiscountDiscountSourceOneOf as cV, AppliedDiscountDiscountType as cW, type V1Coupon as cX, type V1MerchantDiscount as cY, type V1DiscountRule as cZ, type V1DiscountRuleName as c_, type Description as ca, type SecuredMedia as cb, FileType as cc, type ServiceProperties as cd, type CatalogOverrideFields as ce, type PaymentOption as cf, type Policy as cg, type ModifierGroup as ch, type ItemModifier as ci, type V1PlatformFee as cj, PlatformFeeChargeType as ck, type AddressWithContact as cl, type ShippingInfo as cm, type SelectedCarrierServiceOption as cn, type V1DeliveryLogistics as co, type V1PickupDetails as cp, PickupDetailsPickupMethod as cq, type V1DeliveryTimeSlot as cr, type SelectedCarrierServiceOptionPrices as cs, type SelectedCarrierServiceOptionOtherCharge as ct, V1ChargeType as cu, type DeliveryAllocation as cv, type Carrier as cw, type Region as cx, type ApplicableLineItems as cy, type V1ShippingRegion as cz, type DescriptionLineDescriptionLineValueOneOf as d, type V1ItemCombination as d0, type V1ItemCombinationLineItem as d1, type V1TaxSummary as d2, type TaxCalculationDetails as d3, type TaxCalculationDetailsCalculationDetailsOneOf as d4, RateType as d5, ManualCalculationReason as d6, type AutoTaxFallbackCalculationDetails as d7, FallbackReason as d8, type AggregatedTaxBreakdown as d9, type SubscriptionCharges as dA, type Charge as dB, type GetPaymentSettingsForCheckoutResponse as dC, V1PaymentOption as dD, type PaymentSettingsSPIConfig as dE, type Context as dF, IdentityType as dG, type IdentificationData as dH, type IdentificationDataIdOneOf as dI, type GetPaymentSettingsEnvelope as dJ, type GetPaymentSettingsForCheckoutEnvelope as dK, type CreatedBy as da, type CreatedByIdOneOf as db, type MembershipOptions as dc, type Membership as dd, type MembershipName as de, type MembershipPaymentCredits as df, BalanceType as dg, type InvalidMembership as dh, type SelectedMemberships as di, type SelectedMembership as dj, type V1AdditionalFee as dk, AdditionalFeeAdditionalFeeSource as dl, type ConversionInfo as dm, type Violation as dn, Severity as dp, type Target as dq, type TargetTargetTypeOneOf as dr, NameInOther as ds, NameInLineItem as dt, SuggestedFix as du, type Other as dv, type TargetLineItem as dw, type CustomSettings as dx, type CustomContentReference as dy, type ExternalReference 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 };
5104
+ export { type CurrencyConversionDetails 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 ExtendedFields as N, type Order as O, type ProductName as P, type TranslatableString as Q, type RestockLocation as R, type SubscriptionInfo as S, type TaxableAddress as T, type V1ItemModifier as U, type V1ModifierGroup as V, type V1BuyerInfo as W, type V1BuyerInfoIdOneOf as X, PaymentStatus as Y, FulfillmentStatus as Z, WeightUnit as _, type OrderLineItem as a, type RefundInitiated as a$, type PriceSummary as a0, type ApiAddressWithContact as a1, type Address as a2, type StreetAddress as a3, type AddressLocation as a4, type FullAddressContactDetails as a5, type VatId as a6, VatType as a7, type V1ShippingInformation as a8, type DeliveryLogistics as a9, type MerchantComment as aA, type OrderRefunded as aB, type OrderCreatedFromExchange as aC, type NewExchangeOrderCreated as aD, type LineItemExchangeData as aE, type DraftOrderChangesApplied as aF, type OrderChange as aG, type OrderChangeValueOneOf as aH, type LineItemChanges as aI, type LineItemQuantityChange as aJ, LineItemQuantityChangeType as aK, type LineItemPriceChange as aL, type LineItemProductNameChange as aM, type LineItemDescriptionLineChange as aN, type LineItemModifiersChange as aO, type ManagedLineItem as aP, type ManagedDiscount as aQ, type TranslatedValue as aR, type LineItemAmount as aS, type ManagedAdditionalFee as aT, type TotalPriceChange as aU, type ShippingInformationChange as aV, type ShippingInformation as aW, type SavedPaymentMethod as aX, type AuthorizedPaymentCreated as aY, type AuthorizedPaymentCaptured as aZ, type AuthorizedPaymentVoided as a_, type DeliveryLogisticsAddressOneOf as aa, type PickupDetails as ab, type PickupAddress as ac, PickupMethod as ad, type DeliveryTimeSlot as ae, type ShippingPrice as af, type ShippingRegion as ag, OrderStatus as ah, type TaxSummary as ai, type OrderTaxInfo as aj, type OrderTaxBreakdown as ak, type AppliedDiscount as al, type AppliedDiscountDiscountSourceOneOf as am, DiscountType as an, type Coupon as ao, type MerchantDiscount as ap, type MerchantDiscountMerchantDiscountReasonOneOf as aq, DiscountReason as ar, type DiscountRule as as, type DiscountRuleName as at, type LineItemDiscount as au, type ItemCombination as av, type ItemCombinationLineItem as aw, type Activity as ax, type ActivityContentOneOf as ay, type CustomActivity as az, type Price as b, V1JurisdictionType as b$, type RefundedPayment as b0, type RefundedPaymentKindOneOf as b1, type RegularPaymentRefund as b2, type GiftCardPaymentRefund as b3, type MembershipPaymentRefund as b4, type PaymentRefunded as b5, type PaymentRefundFailed as b6, type RefundedAsStoreCredit as b7, type PaymentPending as b8, type PaymentPendingPaymentDetailsOneOf as b9, type AdditionalFee as bA, AdditionalFeeSource as bB, type FulfillmentStatusesAggregate as bC, type Tags as bD, type TagList as bE, type Location as bF, type OrderSettings as bG, type OrderSettingsAllowedActionsOneOf as bH, type OrderSettingsEditableByOneOf as bI, type CustomAllowedActions as bJ, OrderActionType as bK, type OwnerApps as bL, SpecificItemsCouponBehavior as bM, type FormInfo as bN, type FormIdentifier as bO, type PlatformFeeSummary as bP, type PlatformFee as bQ, ChargeType as bR, type GetPaymentSettingsResponse as bS, type PaymentSettings as bT, type GetPaymentSettingsForCheckoutRequest as bU, type Checkout as bV, type LineItem as bW, type MultiCurrencyPrice as bX, type V1ItemTaxFullDetails as bY, type TaxRateBreakdown as bZ, type TaxBreakdown as b_, type RegularPayment as ba, type RegularPaymentPaymentMethodDetailsOneOf as bb, type CreditCardDetails as bc, type PaymentCanceled as bd, type PaymentCanceledPaymentDetailsOneOf as be, type PaymentDeclined as bf, type PaymentDeclinedPaymentDetailsOneOf as bg, type ReceiptCreated as bh, type ReceiptCreatedReceiptInfoOneOf as bi, type WixReceipt as bj, type ExternalReceipt as bk, type ReceiptSent as bl, type ReceiptSentReceiptInfoOneOf as bm, type ChargebackCreated as bn, type ChargebackReversed as bo, ActivityType as bp, OrderActivityTypeEnumActivityType as bq, AttributionSource as br, type V1CreatedBy as bs, type V1CreatedByStringOneOf as bt, type ChannelInfo as bu, ChannelType as bv, type CustomField as bw, type BalanceSummary as bx, type Balance as by, type CashRounding as bz, type DescriptionLineValueOneOf as c, type V1LineItemDiscount as c$, type ItemAvailabilityInfo as c0, ItemAvailabilityStatus as c1, type Scope as c2, type Group as c3, type SubscriptionOptionInfo as c4, type V1SubscriptionSettings as c5, type V1FreeTrialPeriod as c6, type V1BillingSettings as c7, SubscriptionSettingsProductPeriodAlignment as c8, type Title as c9, type CarrierServiceOption as cA, type ShippingOption as cB, type V1ShippingPrice as cC, type OtherCharge as cD, type BuyerInfo as cE, type BuyerInfoIdOneOf as cF, type V1PriceSummary as cG, type CalculationErrors as cH, type CalculationErrorsShippingCalculationErrorOneOf as cI, type Details as cJ, type DetailsKindOneOf as cK, type ApplicationError as cL, type ValidationError as cM, RuleType as cN, type FieldViolation as cO, type SystemError as cP, type CarrierErrors as cQ, type CarrierError as cR, type GiftCardCalculationError as cS, type GiftCard as cT, type V1AppliedDiscount as cU, type V1AppliedDiscountDiscountSourceOneOf as cV, AppliedDiscountDiscountType as cW, type V1Coupon as cX, type V1MerchantDiscount as cY, type V1DiscountRule as cZ, type V1DiscountRuleName as c_, type Description as ca, type SecuredMedia as cb, FileType as cc, type ServiceProperties as cd, type CatalogOverrideFields as ce, type PaymentOption as cf, type Policy as cg, type ModifierGroup as ch, type ItemModifier as ci, type V1PlatformFee as cj, PlatformFeeChargeType as ck, type AddressWithContact as cl, type ShippingInfo as cm, type SelectedCarrierServiceOption as cn, type V1DeliveryLogistics as co, type V1PickupDetails as cp, PickupDetailsPickupMethod as cq, type V1DeliveryTimeSlot as cr, type SelectedCarrierServiceOptionPrices as cs, type SelectedCarrierServiceOptionOtherCharge as ct, V1ChargeType as cu, type DeliveryAllocation as cv, type Carrier as cw, type Region as cx, type ApplicableLineItems as cy, type V1ShippingRegion as cz, type DescriptionLineDescriptionLineValueOneOf as d, type V1ItemCombination as d0, type V1ItemCombinationLineItem as d1, type V1TaxSummary as d2, type TaxCalculationDetails as d3, type TaxCalculationDetailsCalculationDetailsOneOf as d4, RateType as d5, ManualCalculationReason as d6, type AutoTaxFallbackCalculationDetails as d7, FallbackReason as d8, type AggregatedTaxBreakdown as d9, type Other as dA, type TargetLineItem as dB, type CustomSettings as dC, type CustomContentReference as dD, type ExternalReference as dE, type SubscriptionCharges as dF, type Charge as dG, type GetPaymentSettingsForCheckoutResponse as dH, V1PaymentOption as dI, type PaymentSettingsSPIConfig as dJ, type Context as dK, IdentityType as dL, type IdentificationData as dM, type IdentificationDataIdOneOf as dN, type GetPaymentSettingsEnvelope as dO, type GetPaymentSettingsForCheckoutEnvelope as dP, type CreatedBy as da, type CreatedByIdOneOf as db, type MembershipOptions as dc, type Membership as dd, type MembershipName as de, type MembershipPaymentCredits as df, BalanceType as dg, type Benefit as dh, type BenefitQuotaOneOf as di, QuotaType as dj, type LimitedQuota as dk, LimitedQuotaType as dl, type InvalidMembership as dm, type SelectedMemberships as dn, type SelectedMembership as dp, type V1AdditionalFee as dq, AdditionalFeeAdditionalFeeSource as dr, type ConversionInfo as ds, type Violation as dt, Severity as du, type Target as dv, type TargetTargetTypeOneOf as dw, NameInOther as dx, NameInLineItem as dy, SuggestedFix 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/auto_sdk_ecom_payment-settings",
3
- "version": "1.0.125",
3
+ "version": "1.0.126",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -51,5 +51,5 @@
51
51
  "fqdn": "wix.interfaces.ecommerce.v1.payment_settings_provider"
52
52
  }
53
53
  },
54
- "falconPackageHash": "a3df6d17615208a144e415541ddbff592d9ced6d55f40fd8e532cff9"
54
+ "falconPackageHash": "2f4433a05738096e3d5634a0acef8372cf854bde972033041347fa23"
55
55
  }