@wix/auto_sdk_ecom_payment-settings 1.0.128 → 1.0.130
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +27 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +27 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/{interfaces-ecommerce-v1-payment-settings-provider.public-CUXj1XWh.d.ts → interfaces-ecommerce-v1-payment-settings-provider.public-DjwNomvx.d.ts} +74 -31
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +26 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +26 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/{interfaces-ecommerce-v1-payment-settings-provider.public-CUXj1XWh.d.mts → interfaces-ecommerce-v1-payment-settings-provider.public-DjwNomvx.d.mts} +74 -31
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +27 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +27 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/{interfaces-ecommerce-v1-payment-settings-provider.public-CUXj1XWh.d.ts → interfaces-ecommerce-v1-payment-settings-provider.public-DjwNomvx.d.ts} +74 -31
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +26 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +26 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/{interfaces-ecommerce-v1-payment-settings-provider.public-CUXj1XWh.d.mts → interfaces-ecommerce-v1-payment-settings-provider.public-DjwNomvx.d.mts} +74 -31
- 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.
|
|
@@ -4607,7 +4648,7 @@ interface Membership {
|
|
|
4607
4648
|
/** The name of this membership. */
|
|
4608
4649
|
name?: MembershipName;
|
|
4609
4650
|
/**
|
|
4610
|
-
* Deprecated. Use
|
|
4651
|
+
* Deprecated. Use `ExistingMembership.covered_line_items` to see which line items this membership covers.
|
|
4611
4652
|
* @minSize 1
|
|
4612
4653
|
* @maxSize 300
|
|
4613
4654
|
* @minLength 1
|
|
@@ -4615,9 +4656,10 @@ interface Membership {
|
|
|
4615
4656
|
*/
|
|
4616
4657
|
lineItemIds?: string[];
|
|
4617
4658
|
/**
|
|
4618
|
-
* Deprecated.
|
|
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).
|
|
4619
4661
|
* @deprecated
|
|
4620
|
-
* @replacedBy
|
|
4662
|
+
* @replacedBy ExistingMembership.covered_line_items.redemption_cost
|
|
4621
4663
|
* @targetRemovalDate 2026-07-30
|
|
4622
4664
|
*/
|
|
4623
4665
|
credits?: MembershipPaymentCredits;
|
|
@@ -4629,9 +4671,9 @@ interface Membership {
|
|
|
4629
4671
|
*/
|
|
4630
4672
|
expirationDate?: Date | null;
|
|
4631
4673
|
/**
|
|
4632
|
-
* Deprecated. Use `
|
|
4674
|
+
* Deprecated. Use `offering_description`.
|
|
4633
4675
|
* @deprecated
|
|
4634
|
-
* @replacedBy
|
|
4676
|
+
* @replacedBy offering_description
|
|
4635
4677
|
* @targetRemovalDate 2026-07-30
|
|
4636
4678
|
*/
|
|
4637
4679
|
additionalData?: Record<string, any> | null;
|
|
@@ -4664,14 +4706,15 @@ declare enum BalanceType {
|
|
|
4664
4706
|
CREDIT = "CREDIT"
|
|
4665
4707
|
}
|
|
4666
4708
|
/**
|
|
4667
|
-
* A single redeemable benefit
|
|
4668
|
-
*
|
|
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.)
|
|
4669
4712
|
*/
|
|
4670
4713
|
interface Benefit extends BenefitQuotaOneOf {
|
|
4671
4714
|
limitedQuota?: LimitedQuota;
|
|
4672
4715
|
/**
|
|
4673
|
-
* Identifier for this benefit.
|
|
4674
|
-
* (`LineItemCoverage.benefit_id`) can reference it unambiguously across
|
|
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.
|
|
4675
4718
|
* @minLength 1
|
|
4676
4719
|
* @maxLength 200
|
|
4677
4720
|
*/
|
|
@@ -5108,4 +5151,4 @@ declare const provideHandlers: ServicePluginDefinition<{
|
|
|
5108
5151
|
getPaymentSettingsForCheckout(payload: GetPaymentSettingsForCheckoutEnvelope): GetPaymentSettingsForCheckoutResponse | Promise<GetPaymentSettingsForCheckoutResponse>;
|
|
5109
5152
|
}>;
|
|
5110
5153
|
|
|
5111
|
-
export {
|
|
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 };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { p as provideHandlers$1 } from './interfaces-ecommerce-v1-payment-settings-provider.public-
|
|
2
|
-
export {
|
|
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';
|
|
3
3
|
import { BuildServicePluginDefinition } from '@wix/sdk-types';
|
|
4
4
|
|
|
5
5
|
declare const provideHandlers: BuildServicePluginDefinition<typeof provideHandlers$1> & typeof provideHandlers$1;
|
|
@@ -65,6 +65,31 @@ var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
|
|
|
65
65
|
TaxableAddressType2["SHIPPING"] = "SHIPPING";
|
|
66
66
|
return TaxableAddressType2;
|
|
67
67
|
})(TaxableAddressType || {});
|
|
68
|
+
var MeasurementUnit = /* @__PURE__ */ ((MeasurementUnit2) => {
|
|
69
|
+
MeasurementUnit2["UNSPECIFIED"] = "UNSPECIFIED";
|
|
70
|
+
MeasurementUnit2["ML"] = "ML";
|
|
71
|
+
MeasurementUnit2["CL"] = "CL";
|
|
72
|
+
MeasurementUnit2["L"] = "L";
|
|
73
|
+
MeasurementUnit2["CBM"] = "CBM";
|
|
74
|
+
MeasurementUnit2["MG"] = "MG";
|
|
75
|
+
MeasurementUnit2["G"] = "G";
|
|
76
|
+
MeasurementUnit2["KG"] = "KG";
|
|
77
|
+
MeasurementUnit2["MM"] = "MM";
|
|
78
|
+
MeasurementUnit2["CM"] = "CM";
|
|
79
|
+
MeasurementUnit2["M"] = "M";
|
|
80
|
+
MeasurementUnit2["SQM"] = "SQM";
|
|
81
|
+
MeasurementUnit2["OZ"] = "OZ";
|
|
82
|
+
MeasurementUnit2["LB"] = "LB";
|
|
83
|
+
MeasurementUnit2["FLOZ"] = "FLOZ";
|
|
84
|
+
MeasurementUnit2["PT"] = "PT";
|
|
85
|
+
MeasurementUnit2["QT"] = "QT";
|
|
86
|
+
MeasurementUnit2["GAL"] = "GAL";
|
|
87
|
+
MeasurementUnit2["IN"] = "IN";
|
|
88
|
+
MeasurementUnit2["FT"] = "FT";
|
|
89
|
+
MeasurementUnit2["YD"] = "YD";
|
|
90
|
+
MeasurementUnit2["SQFT"] = "SQFT";
|
|
91
|
+
return MeasurementUnit2;
|
|
92
|
+
})(MeasurementUnit || {});
|
|
68
93
|
var PaymentStatus = /* @__PURE__ */ ((PaymentStatus2) => {
|
|
69
94
|
PaymentStatus2["UNSPECIFIED"] = "UNSPECIFIED";
|
|
70
95
|
PaymentStatus2["NOT_PAID"] = "NOT_PAID";
|
|
@@ -613,6 +638,7 @@ export {
|
|
|
613
638
|
LimitedQuotaType,
|
|
614
639
|
LineItemQuantityChangeType,
|
|
615
640
|
ManualCalculationReason,
|
|
641
|
+
MeasurementUnit,
|
|
616
642
|
NameInLineItem,
|
|
617
643
|
NameInOther,
|
|
618
644
|
OrderActionType,
|