@wix/auto_sdk_ecom_payment-settings 1.0.127 → 1.0.129

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 +27 -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 +27 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/{interfaces-ecommerce-v1-payment-settings-provider.public-cDyzPOAo.d.ts → interfaces-ecommerce-v1-payment-settings-provider.public-BdyL0XzP.d.ts} +70 -22
  8. package/build/es/index.d.mts +2 -2
  9. package/build/es/index.mjs +26 -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 +26 -0
  13. package/build/es/index.typings.mjs.map +1 -1
  14. package/build/es/{interfaces-ecommerce-v1-payment-settings-provider.public-cDyzPOAo.d.mts → interfaces-ecommerce-v1-payment-settings-provider.public-BdyL0XzP.d.mts} +70 -22
  15. package/build/internal/cjs/index.d.ts +2 -2
  16. package/build/internal/cjs/index.js +27 -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 +27 -0
  20. package/build/internal/cjs/index.typings.js.map +1 -1
  21. package/build/internal/cjs/{interfaces-ecommerce-v1-payment-settings-provider.public-cDyzPOAo.d.ts → interfaces-ecommerce-v1-payment-settings-provider.public-BdyL0XzP.d.ts} +70 -22
  22. package/build/internal/es/index.d.mts +2 -2
  23. package/build/internal/es/index.mjs +26 -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 +26 -0
  27. package/build/internal/es/index.typings.mjs.map +1 -1
  28. package/build/internal/es/{interfaces-ecommerce-v1-payment-settings-provider.public-cDyzPOAo.d.mts → interfaces-ecommerce-v1-payment-settings-provider.public-BdyL0XzP.d.mts} +70 -22
  29. package/package.json +2 -2
@@ -851,6 +851,68 @@ declare enum TaxableAddressType {
851
851
  BILLING = "BILLING",
852
852
  SHIPPING = "SHIPPING"
853
853
  }
854
+ /**
855
+ * Decimal-quantity metadata for a line item.
856
+ *
857
+ * Set on a line item that represents a non-integer-quantity purchase
858
+ * (e.g. "2.75 square meters of fake grass", "1.5 kg of sugar",
859
+ * "0.75 hours of consultation"). When set, the line item must have
860
+ * `fixedQuantity` = true.
861
+ *
862
+ * The decimal value lives in `value`. When `decimalQuantity` is set,
863
+ * consumers read the human-readable quantity from `value` rather
864
+ * than from `lineItem.quantity`.
865
+ */
866
+ interface DecimalQuantity extends DecimalQuantityUnitOneOf {
867
+ }
868
+ /** @oneof */
869
+ interface DecimalQuantityUnitOneOf {
870
+ }
871
+ interface TranslatableString {
872
+ /**
873
+ * __Required.__ String in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
874
+ *
875
+ * Min: 1 character.
876
+ * Max: 200 characters.
877
+ * @minLength 1
878
+ * @maxLength 200
879
+ */
880
+ original?: string;
881
+ /**
882
+ * String translated into the buyer's language.
883
+ *
884
+ * Min: 1 character.
885
+ * Max: 400 characters.
886
+ * Default: Same as `original`.
887
+ * @minLength 1
888
+ * @maxLength 400
889
+ */
890
+ translated?: string | null;
891
+ }
892
+ declare enum MeasurementUnit {
893
+ UNSPECIFIED = "UNSPECIFIED",
894
+ ML = "ML",
895
+ CL = "CL",
896
+ L = "L",
897
+ CBM = "CBM",
898
+ MG = "MG",
899
+ G = "G",
900
+ KG = "KG",
901
+ MM = "MM",
902
+ CM = "CM",
903
+ M = "M",
904
+ SQM = "SQM",
905
+ OZ = "OZ",
906
+ LB = "LB",
907
+ FLOZ = "FLOZ",
908
+ PT = "PT",
909
+ QT = "QT",
910
+ GAL = "GAL",
911
+ IN = "IN",
912
+ FT = "FT",
913
+ YD = "YD",
914
+ SQFT = "SQFT"
915
+ }
854
916
  interface ExtendedFields {
855
917
  /**
856
918
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
@@ -878,27 +940,6 @@ interface V1ModifierGroup {
878
940
  */
879
941
  modifiers?: V1ItemModifier[];
880
942
  }
881
- interface TranslatableString {
882
- /**
883
- * __Required.__ String in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
884
- *
885
- * Min: 1 character.
886
- * Max: 200 characters.
887
- * @minLength 1
888
- * @maxLength 200
889
- */
890
- original?: string;
891
- /**
892
- * String translated into the buyer's language.
893
- *
894
- * Min: 1 character.
895
- * Max: 400 characters.
896
- * Default: Same as `original`.
897
- * @minLength 1
898
- * @maxLength 400
899
- */
900
- translated?: string | null;
901
- }
902
943
  interface V1ItemModifier {
903
944
  /**
904
945
  * Modifier ID.
@@ -2706,6 +2747,13 @@ interface BalanceSummary {
2706
2747
  * @readonly
2707
2748
  */
2708
2749
  totalMinusPlatformFees?: Price;
2750
+ /**
2751
+ * The total adjustment applied to the cash payment due to rounding.
2752
+ *
2753
+ * Positive values indicate the total was rounded up; negative values indicate it was rounded down.
2754
+ * @readonly
2755
+ */
2756
+ cashRoundingAdjustment?: CashRounding;
2709
2757
  }
2710
2758
  /**
2711
2759
  * Order balance. Reflects amount left to be paid on order and is calculated dynamically. Can be negative per balance definition.
@@ -5101,4 +5149,4 @@ declare const provideHandlers: ServicePluginDefinition<{
5101
5149
  getPaymentSettingsForCheckout(payload: GetPaymentSettingsForCheckoutEnvelope): GetPaymentSettingsForCheckoutResponse | Promise<GetPaymentSettingsForCheckoutResponse>;
5102
5150
  }>;
5103
5151
 
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 };
5152
+ 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 };
@@ -1,5 +1,5 @@
1
- import { p as provideHandlers$1 } from './interfaces-ecommerce-v1-payment-settings-provider.public-cDyzPOAo.js';
2
- export { ax as Activity, ay as ActivityContentOneOf, bp as ActivityType, bA as AdditionalFee, dr as AdditionalFeeAdditionalFeeSource, bB as AdditionalFeeSource, a2 as Address, a4 as AddressLocation, cl as AddressWithContact, A as AdjustmentType, d9 as AggregatedTaxBreakdown, a1 as ApiAddressWithContact, cy as ApplicableLineItems, cL as ApplicationError, al as AppliedDiscount, am as AppliedDiscountDiscountSourceOneOf, cW as AppliedDiscountDiscountType, br as AttributionSource, aZ as AuthorizedPaymentCaptured, aY as AuthorizedPaymentCreated, a_ as AuthorizedPaymentVoided, d7 as AutoTaxFallbackCalculationDetails, by as Balance, bx as BalanceSummary, dg as BalanceType, dh as Benefit, di as BenefitQuotaOneOf, y as BillingAdjustment, z as BillingAdjustmentPriceSummary, B as BillingSettings, cE as BuyerInfo, cF as BuyerInfoIdOneOf, cH as CalculationErrors, cI as CalculationErrorsShippingCalculationErrorOneOf, cw as Carrier, cR as CarrierError, cQ as CarrierErrors, cA as CarrierServiceOption, bz as CashRounding, ce as CatalogOverrideFields, C as CatalogReference, bu as ChannelInfo, bv as ChannelType, dG as Charge, bR as ChargeType, bn as ChargebackCreated, bo as ChargebackReversed, bV as Checkout, g as Color, dK as Context, ds as ConversionInfo, ao as Coupon, da as CreatedBy, db as CreatedByIdOneOf, bc as CreditCardDetails, $ as CurrencyConversionDetails, az as CustomActivity, bJ as CustomAllowedActions, dD as CustomContentReference, bw as CustomField, dC as CustomSettings, cv as DeliveryAllocation, a9 as DeliveryLogistics, aa as DeliveryLogisticsAddressOneOf, ae as DeliveryTimeSlot, ca as Description, D as DescriptionLine, d as DescriptionLineDescriptionLineValueOneOf, e as DescriptionLineName, h as DescriptionLineType, c as DescriptionLineValueOneOf, cJ as Details, cK as DetailsKindOneOf, r as DigitalFile, j as Dimensions, k as DimensionsUnit, ar as DiscountReason, as as DiscountRule, at as DiscountRuleName, an as DiscountType, aF as DraftOrderChangesApplied, N as ExtendedFields, bk as ExternalReceipt, dE as ExternalReference, d8 as FallbackReason, cO as FieldViolation, cc as FileType, F as FocalPoint, bO as FormIdentifier, bN as FormInfo, w as FreeTrialPeriod, Z as FulfillmentStatus, bC as FulfillmentStatusesAggregate, a5 as FullAddressContactDetails, bU as GetPaymentSettingsForCheckoutRequest, dH as GetPaymentSettingsForCheckoutResponse, G as GetPaymentSettingsRequest, bS as GetPaymentSettingsResponse, cT as GiftCard, cS as GiftCardCalculationError, b3 as GiftCardPaymentRefund, c3 as Group, dM as IdentificationData, dN as IdentificationDataIdOneOf, dL as IdentityType, dm as InvalidMembership, c0 as ItemAvailabilityInfo, c1 as ItemAvailabilityStatus, av as ItemCombination, aw as ItemCombinationLineItem, ci as ItemModifier, o as ItemTaxFullDetails, I as ItemType, l as ItemTypeItemTypeDataOneOf, m as ItemTypePreset, J as JurisdictionType, dk as LimitedQuota, dl as LimitedQuotaType, bW as LineItem, aS as LineItemAmount, aI as LineItemChanges, aN as LineItemDescriptionLineChange, au as LineItemDiscount, aE as LineItemExchangeData, aO as LineItemModifiersChange, aL as LineItemPriceChange, aM as LineItemProductNameChange, aJ as LineItemQuantityChange, aK as LineItemQuantityChangeType, q as LineItemTaxBreakdown, L as LineItemTaxInfo, bF as Location, H as LocationAndQuantity, aT as ManagedAdditionalFee, aQ as ManagedDiscount, aP as ManagedLineItem, d6 as ManualCalculationReason, dd as Membership, de as MembershipName, dc as MembershipOptions, df as MembershipPaymentCredits, b4 as MembershipPaymentRefund, aA as MerchantComment, ap as MerchantDiscount, aq as MerchantDiscountMerchantDiscountReasonOneOf, ch as ModifierGroup, bX as MultiCurrencyPrice, dy as NameInLineItem, dx as NameInOther, aD as NewExchangeOrderCreated, O as Order, bK as OrderActionType, bq as OrderActivityTypeEnumActivityType, aG as OrderChange, aH as OrderChangeValueOneOf, aC as OrderCreatedFromExchange, a as OrderLineItem, aB as OrderRefunded, bG as OrderSettings, bH as OrderSettingsAllowedActionsOneOf, bI as OrderSettingsEditableByOneOf, ah as OrderStatus, ak as OrderTaxBreakdown, aj as OrderTaxInfo, dA as Other, cD as OtherCharge, bL as OwnerApps, bd as PaymentCanceled, be as PaymentCanceledPaymentDetailsOneOf, bf as PaymentDeclined, bg as PaymentDeclinedPaymentDetailsOneOf, cf as PaymentOption, n as PaymentOptionType, b8 as PaymentPending, b9 as PaymentPendingPaymentDetailsOneOf, b6 as PaymentRefundFailed, b5 as PaymentRefunded, bT as PaymentSettings, dJ as PaymentSettingsSPIConfig, Y as PaymentStatus, i as PhysicalProperties, ac as PickupAddress, ab as PickupDetails, cq as PickupDetailsPickupMethod, ad as PickupMethod, f as PlainTextValue, bQ as PlatformFee, ck as PlatformFeeChargeType, bP as PlatformFeeSummary, cg as Policy, b as Price, E as PriceDescription, a0 as PriceSummary, P as ProductName, x as ProductPeriodAlignment, dj as QuotaType, d5 as RateType, bh as ReceiptCreated, bi as ReceiptCreatedReceiptInfoOneOf, bl as ReceiptSent, bm as ReceiptSentReceiptInfoOneOf, a$ as RefundInitiated, b7 as RefundedAsStoreCredit, b0 as RefundedPayment, b1 as RefundedPaymentKindOneOf, cx as Region, ba as RegularPayment, bb as RegularPaymentPaymentMethodDetailsOneOf, b2 as RegularPaymentRefund, R as RestockLocation, cN as RuleType, aX as SavedPaymentMethod, c2 as Scope, cb as SecuredMedia, cn as SelectedCarrierServiceOption, ct as SelectedCarrierServiceOptionOtherCharge, cs as SelectedCarrierServiceOptionPrices, dp as SelectedMembership, dn as SelectedMemberships, cd as ServiceProperties, du as Severity, cm as ShippingInfo, aW as ShippingInformation, aV as ShippingInformationChange, cB as ShippingOption, af as ShippingPrice, ag as ShippingRegion, bM as SpecificItemsCouponBehavior, a3 as StreetAddress, dF as SubscriptionCharges, t as SubscriptionDescription, v as SubscriptionFrequency, S as SubscriptionInfo, c4 as SubscriptionOptionInfo, u as SubscriptionSettings, c8 as SubscriptionSettingsProductPeriodAlignment, s as SubscriptionTitle, dz as SuggestedFix, cP as SystemError, bE as TagList, bD as Tags, dv as Target, dB as TargetLineItem, dw as TargetTargetTypeOneOf, b_ as TaxBreakdown, d3 as TaxCalculationDetails, d4 as TaxCalculationDetailsCalculationDetailsOneOf, bZ as TaxRateBreakdown, ai as TaxSummary, T as TaxableAddress, K as TaxableAddressTaxableAddressDataOneOf, M as TaxableAddressType, c9 as Title, aU as TotalPriceChange, Q as TranslatableString, aR as TranslatedValue, dq as V1AdditionalFee, cU as V1AppliedDiscount, cV as V1AppliedDiscountDiscountSourceOneOf, c7 as V1BillingSettings, W as V1BuyerInfo, X as V1BuyerInfoIdOneOf, cu as V1ChargeType, cX as V1Coupon, bs as V1CreatedBy, bt as V1CreatedByStringOneOf, co as V1DeliveryLogistics, cr as V1DeliveryTimeSlot, cZ as V1DiscountRule, c_ as V1DiscountRuleName, c6 as V1FreeTrialPeriod, d0 as V1ItemCombination, d1 as V1ItemCombinationLineItem, U as V1ItemModifier, bY as V1ItemTaxFullDetails, b$ as V1JurisdictionType, c$ as V1LineItemDiscount, cY as V1MerchantDiscount, V as V1ModifierGroup, dI as V1PaymentOption, cp as V1PickupDetails, cj as V1PlatformFee, cG as V1PriceSummary, a8 as V1ShippingInformation, cC as V1ShippingPrice, cz as V1ShippingRegion, c5 as V1SubscriptionSettings, d2 as V1TaxSummary, cM as ValidationError, a6 as VatId, a7 as VatType, dt as Violation, _ as WeightUnit, bj as WixReceipt } from './interfaces-ecommerce-v1-payment-settings-provider.public-cDyzPOAo.js';
1
+ import { p as provideHandlers$1 } from './interfaces-ecommerce-v1-payment-settings-provider.public-BdyL0XzP.js';
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-BdyL0XzP.js';
3
3
  import { BuildServicePluginDefinition } from '@wix/sdk-types';
4
4
 
5
5
  declare const provideHandlers: BuildServicePluginDefinition<typeof provideHandlers$1> & typeof provideHandlers$1;
@@ -43,6 +43,7 @@ __export(index_exports, {
43
43
  LimitedQuotaType: () => LimitedQuotaType,
44
44
  LineItemQuantityChangeType: () => LineItemQuantityChangeType,
45
45
  ManualCalculationReason: () => ManualCalculationReason,
46
+ MeasurementUnit: () => MeasurementUnit,
46
47
  NameInLineItem: () => NameInLineItem,
47
48
  NameInOther: () => NameInOther,
48
49
  OrderActionType: () => OrderActionType,
@@ -140,6 +141,31 @@ var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
140
141
  TaxableAddressType2["SHIPPING"] = "SHIPPING";
141
142
  return TaxableAddressType2;
142
143
  })(TaxableAddressType || {});
144
+ var MeasurementUnit = /* @__PURE__ */ ((MeasurementUnit2) => {
145
+ MeasurementUnit2["UNSPECIFIED"] = "UNSPECIFIED";
146
+ MeasurementUnit2["ML"] = "ML";
147
+ MeasurementUnit2["CL"] = "CL";
148
+ MeasurementUnit2["L"] = "L";
149
+ MeasurementUnit2["CBM"] = "CBM";
150
+ MeasurementUnit2["MG"] = "MG";
151
+ MeasurementUnit2["G"] = "G";
152
+ MeasurementUnit2["KG"] = "KG";
153
+ MeasurementUnit2["MM"] = "MM";
154
+ MeasurementUnit2["CM"] = "CM";
155
+ MeasurementUnit2["M"] = "M";
156
+ MeasurementUnit2["SQM"] = "SQM";
157
+ MeasurementUnit2["OZ"] = "OZ";
158
+ MeasurementUnit2["LB"] = "LB";
159
+ MeasurementUnit2["FLOZ"] = "FLOZ";
160
+ MeasurementUnit2["PT"] = "PT";
161
+ MeasurementUnit2["QT"] = "QT";
162
+ MeasurementUnit2["GAL"] = "GAL";
163
+ MeasurementUnit2["IN"] = "IN";
164
+ MeasurementUnit2["FT"] = "FT";
165
+ MeasurementUnit2["YD"] = "YD";
166
+ MeasurementUnit2["SQFT"] = "SQFT";
167
+ return MeasurementUnit2;
168
+ })(MeasurementUnit || {});
143
169
  var PaymentStatus = /* @__PURE__ */ ((PaymentStatus2) => {
144
170
  PaymentStatus2["UNSPECIFIED"] = "UNSPECIFIED";
145
171
  PaymentStatus2["NOT_PAID"] = "NOT_PAID";
@@ -686,6 +712,7 @@ var provideHandlers2 = (0, import_service_plugin_modules.createServicePluginModu
686
712
  LimitedQuotaType,
687
713
  LineItemQuantityChangeType,
688
714
  ManualCalculationReason,
715
+ MeasurementUnit,
689
716
  NameInLineItem,
690
717
  NameInOther,
691
718
  OrderActionType,