@wix/auto_sdk_ecom_payment-settings 1.0.100 → 1.0.101
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 +12 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +12 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/{interfaces-ecommerce-v1-payment-settings-provider.public-C-HZSvzv.d.ts → interfaces-ecommerce-v1-payment-settings-provider.public-BZAEWdBU.d.ts} +35 -1
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +11 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +11 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/{interfaces-ecommerce-v1-payment-settings-provider.public-C-HZSvzv.d.mts → interfaces-ecommerce-v1-payment-settings-provider.public-BZAEWdBU.d.mts} +35 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +12 -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 +12 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/{interfaces-ecommerce-v1-payment-settings-provider.public-C-HZSvzv.d.ts → interfaces-ecommerce-v1-payment-settings-provider.public-BZAEWdBU.d.ts} +35 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +11 -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 +11 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/{interfaces-ecommerce-v1-payment-settings-provider.public-C-HZSvzv.d.mts → interfaces-ecommerce-v1-payment-settings-provider.public-BZAEWdBU.d.mts} +35 -1
- package/package.json +2 -2
|
@@ -467,6 +467,40 @@ interface PhysicalProperties {
|
|
|
467
467
|
/** Whether this line item is shippable. */
|
|
468
468
|
shippable?: boolean;
|
|
469
469
|
}
|
|
470
|
+
interface Dimensions {
|
|
471
|
+
/**
|
|
472
|
+
* Length. Measurement unit is handled at the system level (metric/imperial).
|
|
473
|
+
* @decimalValue options { gte:0, lte:999999999, maxScale:6 }
|
|
474
|
+
*/
|
|
475
|
+
length?: string | null;
|
|
476
|
+
/**
|
|
477
|
+
* Width. Measurement unit is handled at the system level (metric/imperial).
|
|
478
|
+
* @decimalValue options { gte:0, lte:999999999, maxScale:6 }
|
|
479
|
+
*/
|
|
480
|
+
width?: string | null;
|
|
481
|
+
/**
|
|
482
|
+
* Height. Measurement unit is handled at the system level (metric/imperial).
|
|
483
|
+
* @decimalValue options { gte:0, lte:999999999, maxScale:6 }
|
|
484
|
+
*/
|
|
485
|
+
height?: string | null;
|
|
486
|
+
/** Unit of measurement for dimensions (length, width, height). */
|
|
487
|
+
unit?: DimensionsUnit;
|
|
488
|
+
}
|
|
489
|
+
declare enum DimensionsUnit {
|
|
490
|
+
UNKNOWN_DIMENSIONS_UNIT = "UNKNOWN_DIMENSIONS_UNIT",
|
|
491
|
+
/** Millimeters. */
|
|
492
|
+
MM = "MM",
|
|
493
|
+
/** Centimeters. */
|
|
494
|
+
CM = "CM",
|
|
495
|
+
/** Meters. */
|
|
496
|
+
M = "M",
|
|
497
|
+
/** Inches. */
|
|
498
|
+
IN = "IN",
|
|
499
|
+
/** Feet. */
|
|
500
|
+
FT = "FT",
|
|
501
|
+
/** Yards. */
|
|
502
|
+
YD = "YD"
|
|
503
|
+
}
|
|
470
504
|
interface ItemType extends ItemTypeItemTypeDataOneOf {
|
|
471
505
|
/** Preset item type. */
|
|
472
506
|
preset?: ItemTypePreset;
|
|
@@ -4923,4 +4957,4 @@ declare const provideHandlers: ServicePluginDefinition<{
|
|
|
4923
4957
|
getPaymentSettingsForCheckout(payload: GetPaymentSettingsForCheckoutEnvelope): GetPaymentSettingsForCheckoutResponse | Promise<GetPaymentSettingsForCheckoutResponse>;
|
|
4924
4958
|
}>;
|
|
4925
4959
|
|
|
4926
|
-
export { type
|
|
4960
|
+
export { type Address as $, AdjustmentType as A, type BillingAdjustment as B, type CatalogReference as C, type DescriptionLine as D, type TaxableAddressTaxableAddressDataOneOf as E, type FocalPoint as F, type GetPaymentSettingsRequest as G, TaxableAddressType as H, type ItemType as I, JurisdictionType as J, type ExtendedFields as K, type LineItemTaxInfo as L, type TranslatableString as M, type V1ItemModifier as N, type Order as O, type ProductName as P, type V1BuyerInfo as Q, type V1BuyerInfoIdOneOf as R, type SubscriptionInfo as S, type TaxableAddress as T, PaymentStatus as U, type V1ModifierGroup as V, FulfillmentStatus as W, WeightUnit as X, type CurrencyConversionDetails as Y, type PriceSummary as Z, type ApiAddressWithContact as _, type OrderLineItem as a, type RegularPaymentRefund as a$, type StreetAddress as a0, type AddressLocation as a1, type FullAddressContactDetails as a2, type VatId as a3, VatType as a4, type V1ShippingInformation as a5, type DeliveryLogistics as a6, type DeliveryLogisticsAddressOneOf as a7, type PickupDetails as a8, type PickupAddress as a9, type NewExchangeOrderCreated as aA, type LineItemExchangeData as aB, type DraftOrderChangesApplied as aC, type OrderChange as aD, type OrderChangeValueOneOf as aE, type LineItemChanges as aF, type LineItemQuantityChange as aG, LineItemQuantityChangeType as aH, type LineItemPriceChange as aI, type LineItemProductNameChange as aJ, type LineItemDescriptionLineChange as aK, type LineItemModifiersChange as aL, type ManagedLineItem as aM, type ManagedDiscount as aN, type TranslatedValue as aO, type LineItemAmount as aP, type ManagedAdditionalFee as aQ, type TotalPriceChange as aR, type ShippingInformationChange as aS, type ShippingInformation as aT, type SavedPaymentMethod as aU, type AuthorizedPaymentCreated as aV, type AuthorizedPaymentCaptured as aW, type AuthorizedPaymentVoided as aX, type RefundInitiated as aY, type RefundedPayment as aZ, type RefundedPaymentKindOneOf as a_, PickupMethod as aa, type DeliveryTimeSlot as ab, type ShippingPrice as ac, type ShippingRegion as ad, OrderStatus as ae, type TaxSummary as af, type OrderTaxInfo as ag, type OrderTaxBreakdown as ah, type AppliedDiscount as ai, type AppliedDiscountDiscountSourceOneOf as aj, DiscountType as ak, type Coupon as al, type MerchantDiscount as am, type MerchantDiscountMerchantDiscountReasonOneOf as an, DiscountReason as ao, type DiscountRule as ap, type DiscountRuleName as aq, type LineItemDiscount as ar, type ItemCombination as as, type ItemCombinationLineItem as at, type Activity as au, type ActivityContentOneOf as av, type CustomActivity as aw, type MerchantComment as ax, type OrderRefunded as ay, type OrderCreatedFromExchange as az, type Price as b, type SubscriptionOptionInfo as b$, type GiftCardPaymentRefund as b0, type MembershipPaymentRefund as b1, type PaymentRefunded as b2, type PaymentRefundFailed as b3, type RefundedAsStoreCredit as b4, type PaymentPending as b5, type PaymentPendingPaymentDetailsOneOf as b6, type RegularPayment as b7, type RegularPaymentPaymentMethodDetailsOneOf as b8, type CreditCardDetails as b9, type TagList as bA, type Location as bB, type OrderSettings as bC, type OrderSettingsAllowedActionsOneOf as bD, type OrderSettingsEditableByOneOf as bE, type CustomAllowedActions as bF, OrderActionType as bG, type OwnerApps as bH, type FormInfo as bI, type FormIdentifier as bJ, type PlatformFeeSummary as bK, type PlatformFee as bL, ChargeType as bM, type GetPaymentSettingsResponse as bN, type PaymentSettings as bO, type GetPaymentSettingsForCheckoutRequest as bP, type Checkout as bQ, type LineItem as bR, type MultiCurrencyPrice as bS, type V1ItemTaxFullDetails as bT, type TaxRateBreakdown as bU, type TaxBreakdown as bV, V1JurisdictionType as bW, type ItemAvailabilityInfo as bX, ItemAvailabilityStatus as bY, type Scope as bZ, type Group as b_, type PaymentCanceled as ba, type PaymentCanceledPaymentDetailsOneOf as bb, type PaymentDeclined as bc, type PaymentDeclinedPaymentDetailsOneOf as bd, type ReceiptCreated as be, type ReceiptCreatedReceiptInfoOneOf as bf, type WixReceipt as bg, type ExternalReceipt as bh, type ReceiptSent as bi, type ReceiptSentReceiptInfoOneOf as bj, type ChargebackCreated as bk, type ChargebackReversed as bl, ActivityType as bm, OrderActivityTypeEnumActivityType as bn, AttributionSource as bo, type V1CreatedBy as bp, type V1CreatedByStringOneOf as bq, type ChannelInfo as br, ChannelType as bs, type CustomField as bt, type BalanceSummary as bu, type Balance as bv, type AdditionalFee as bw, AdditionalFeeSource as bx, type FulfillmentStatusesAggregate as by, type Tags as bz, type DescriptionLineValueOneOf as c, type AutoTaxFallbackCalculationDetails as c$, type V1SubscriptionSettings as c0, type V1FreeTrialPeriod as c1, type Title as c2, type Description as c3, type SecuredMedia as c4, FileType as c5, type ServiceProperties as c6, type CatalogOverrideFields as c7, type PaymentOption as c8, type Policy as c9, type CalculationErrors as cA, type CalculationErrorsShippingCalculationErrorOneOf as cB, type Details as cC, type DetailsKindOneOf as cD, type ApplicationError as cE, type ValidationError as cF, RuleType as cG, type FieldViolation as cH, type SystemError as cI, type CarrierErrors as cJ, type CarrierError as cK, type GiftCard as cL, type V1AppliedDiscount as cM, type V1AppliedDiscountDiscountSourceOneOf as cN, AppliedDiscountDiscountType as cO, type V1Coupon as cP, type V1MerchantDiscount as cQ, type V1DiscountRule as cR, type V1DiscountRuleName as cS, type V1LineItemDiscount as cT, type V1ItemCombination as cU, type V1ItemCombinationLineItem as cV, type V1TaxSummary as cW, type TaxCalculationDetails as cX, type TaxCalculationDetailsCalculationDetailsOneOf as cY, RateType as cZ, ManualCalculationReason as c_, type ModifierGroup as ca, type ItemModifier as cb, type V1PlatformFee as cc, PlatformFeeChargeType as cd, type AddressWithContact as ce, type ShippingInfo as cf, type SelectedCarrierServiceOption as cg, type V1DeliveryLogistics as ch, type V1PickupDetails as ci, PickupDetailsPickupMethod as cj, type V1DeliveryTimeSlot as ck, type SelectedCarrierServiceOptionPrices as cl, type SelectedCarrierServiceOptionOtherCharge as cm, V1ChargeType as cn, type DeliveryAllocation as co, type Carrier as cp, type Region as cq, type ApplicableLineItems as cr, type V1ShippingRegion as cs, type CarrierServiceOption as ct, type ShippingOption as cu, type V1ShippingPrice as cv, type OtherCharge as cw, type BuyerInfo as cx, type BuyerInfoIdOneOf as cy, type V1PriceSummary as cz, type DescriptionLineDescriptionLineValueOneOf as d, FallbackReason as d0, type AggregatedTaxBreakdown as d1, type CreatedBy as d2, type CreatedByIdOneOf as d3, type MembershipOptions as d4, type Membership as d5, type MembershipName as d6, type MembershipPaymentCredits as d7, BalanceType as d8, type InvalidMembership as d9, type IdentificationDataIdOneOf as dA, type GetPaymentSettingsEnvelope as dB, type GetPaymentSettingsForCheckoutEnvelope as dC, type SelectedMemberships as da, type SelectedMembership as db, type V1AdditionalFee as dc, AdditionalFeeAdditionalFeeSource as dd, type ConversionInfo as de, type Violation as df, Severity as dg, type Target as dh, type TargetTargetTypeOneOf as di, NameInOther as dj, NameInLineItem as dk, SuggestedFix as dl, type Other as dm, type TargetLineItem as dn, type CustomSettings as dp, type CustomContentReference as dq, type ExternalReference as dr, type SubscriptionCharges as ds, type Charge as dt, type GetPaymentSettingsForCheckoutResponse as du, V1PaymentOption as dv, type PaymentSettingsSPIConfig as dw, type Context as dx, IdentityType as dy, type IdentificationData 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, type BillingAdjustmentPriceSummary as x, type PriceDescription as y, type LocationAndQuantity as z };
|
package/build/es/index.d.mts
CHANGED
|
@@ -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-BZAEWdBU.mjs';
|
|
2
|
+
export { au as Activity, av as ActivityContentOneOf, bm as ActivityType, bw as AdditionalFee, dd as AdditionalFeeAdditionalFeeSource, bx as AdditionalFeeSource, $ as Address, a1 as AddressLocation, ce as AddressWithContact, A as AdjustmentType, d1 as AggregatedTaxBreakdown, _ as ApiAddressWithContact, cr as ApplicableLineItems, cE as ApplicationError, ai as AppliedDiscount, aj as AppliedDiscountDiscountSourceOneOf, cO as AppliedDiscountDiscountType, bo as AttributionSource, aW as AuthorizedPaymentCaptured, aV as AuthorizedPaymentCreated, aX as AuthorizedPaymentVoided, c$ as AutoTaxFallbackCalculationDetails, bv as Balance, bu as BalanceSummary, d8 as BalanceType, B as BillingAdjustment, x as BillingAdjustmentPriceSummary, cx as BuyerInfo, cy as BuyerInfoIdOneOf, cA as CalculationErrors, cB as CalculationErrorsShippingCalculationErrorOneOf, cp as Carrier, cK as CarrierError, cJ as CarrierErrors, ct as CarrierServiceOption, c7 as CatalogOverrideFields, C as CatalogReference, br as ChannelInfo, bs as ChannelType, dt as Charge, bM as ChargeType, bk as ChargebackCreated, bl as ChargebackReversed, bQ as Checkout, g as Color, dx as Context, de as ConversionInfo, al as Coupon, d2 as CreatedBy, d3 as CreatedByIdOneOf, b9 as CreditCardDetails, Y as CurrencyConversionDetails, aw as CustomActivity, bF as CustomAllowedActions, dq as CustomContentReference, bt as CustomField, dp as CustomSettings, co as DeliveryAllocation, a6 as DeliveryLogistics, a7 as DeliveryLogisticsAddressOneOf, ab as DeliveryTimeSlot, c3 as Description, D as DescriptionLine, d as DescriptionLineDescriptionLineValueOneOf, e as DescriptionLineName, h as DescriptionLineType, c as DescriptionLineValueOneOf, cC as Details, cD as DetailsKindOneOf, r as DigitalFile, j as Dimensions, k as DimensionsUnit, ao as DiscountReason, ap as DiscountRule, aq as DiscountRuleName, ak as DiscountType, aC as DraftOrderChangesApplied, K as ExtendedFields, bh as ExternalReceipt, dr as ExternalReference, d0 as FallbackReason, cH as FieldViolation, c5 as FileType, F as FocalPoint, bJ as FormIdentifier, bI as FormInfo, w as FreeTrialPeriod, W as FulfillmentStatus, by as FulfillmentStatusesAggregate, a2 as FullAddressContactDetails, bP as GetPaymentSettingsForCheckoutRequest, du as GetPaymentSettingsForCheckoutResponse, G as GetPaymentSettingsRequest, bN as GetPaymentSettingsResponse, cL as GiftCard, b0 as GiftCardPaymentRefund, b_ as Group, dz as IdentificationData, dA as IdentificationDataIdOneOf, dy as IdentityType, d9 as InvalidMembership, bX as ItemAvailabilityInfo, bY as ItemAvailabilityStatus, as as ItemCombination, at as ItemCombinationLineItem, cb as ItemModifier, o as ItemTaxFullDetails, I as ItemType, l as ItemTypeItemTypeDataOneOf, m as ItemTypePreset, J as JurisdictionType, bR as LineItem, aP as LineItemAmount, aF as LineItemChanges, aK as LineItemDescriptionLineChange, ar as LineItemDiscount, aB as LineItemExchangeData, aL as LineItemModifiersChange, aI as LineItemPriceChange, aJ as LineItemProductNameChange, aG as LineItemQuantityChange, aH as LineItemQuantityChangeType, q as LineItemTaxBreakdown, L as LineItemTaxInfo, bB as Location, z as LocationAndQuantity, aQ as ManagedAdditionalFee, aN as ManagedDiscount, aM as ManagedLineItem, c_ as ManualCalculationReason, d5 as Membership, d6 as MembershipName, d4 as MembershipOptions, d7 as MembershipPaymentCredits, b1 as MembershipPaymentRefund, ax as MerchantComment, am as MerchantDiscount, an as MerchantDiscountMerchantDiscountReasonOneOf, ca as ModifierGroup, bS as MultiCurrencyPrice, dk as NameInLineItem, dj as NameInOther, aA as NewExchangeOrderCreated, O as Order, bG as OrderActionType, bn as OrderActivityTypeEnumActivityType, aD as OrderChange, aE as OrderChangeValueOneOf, az as OrderCreatedFromExchange, a as OrderLineItem, ay as OrderRefunded, bC as OrderSettings, bD as OrderSettingsAllowedActionsOneOf, bE as OrderSettingsEditableByOneOf, ae as OrderStatus, ah as OrderTaxBreakdown, ag as OrderTaxInfo, dm as Other, cw as OtherCharge, bH as OwnerApps, ba as PaymentCanceled, bb as PaymentCanceledPaymentDetailsOneOf, bc as PaymentDeclined, bd as PaymentDeclinedPaymentDetailsOneOf, c8 as PaymentOption, n as PaymentOptionType, b5 as PaymentPending, b6 as PaymentPendingPaymentDetailsOneOf, b3 as PaymentRefundFailed, b2 as PaymentRefunded, bO as PaymentSettings, dw as PaymentSettingsSPIConfig, U as PaymentStatus, i as PhysicalProperties, a9 as PickupAddress, a8 as PickupDetails, cj as PickupDetailsPickupMethod, aa as PickupMethod, f as PlainTextValue, bL as PlatformFee, cd as PlatformFeeChargeType, bK as PlatformFeeSummary, c9 as Policy, b as Price, y as PriceDescription, Z as PriceSummary, P as ProductName, cZ as RateType, be as ReceiptCreated, bf as ReceiptCreatedReceiptInfoOneOf, bi as ReceiptSent, bj as ReceiptSentReceiptInfoOneOf, aY as RefundInitiated, b4 as RefundedAsStoreCredit, aZ as RefundedPayment, a_ as RefundedPaymentKindOneOf, cq as Region, b7 as RegularPayment, b8 as RegularPaymentPaymentMethodDetailsOneOf, a$ as RegularPaymentRefund, cG as RuleType, aU as SavedPaymentMethod, bZ as Scope, c4 as SecuredMedia, cg as SelectedCarrierServiceOption, cm as SelectedCarrierServiceOptionOtherCharge, cl as SelectedCarrierServiceOptionPrices, db as SelectedMembership, da as SelectedMemberships, c6 as ServiceProperties, dg as Severity, cf as ShippingInfo, aT as ShippingInformation, aS as ShippingInformationChange, cu as ShippingOption, ac as ShippingPrice, ad as ShippingRegion, a0 as StreetAddress, ds as SubscriptionCharges, t as SubscriptionDescription, v as SubscriptionFrequency, S as SubscriptionInfo, b$ as SubscriptionOptionInfo, u as SubscriptionSettings, s as SubscriptionTitle, dl as SuggestedFix, cI as SystemError, bA as TagList, bz as Tags, dh as Target, dn as TargetLineItem, di as TargetTargetTypeOneOf, bV as TaxBreakdown, cX as TaxCalculationDetails, cY as TaxCalculationDetailsCalculationDetailsOneOf, bU as TaxRateBreakdown, af as TaxSummary, T as TaxableAddress, E as TaxableAddressTaxableAddressDataOneOf, H as TaxableAddressType, c2 as Title, aR as TotalPriceChange, M as TranslatableString, aO as TranslatedValue, dc as V1AdditionalFee, cM as V1AppliedDiscount, cN as V1AppliedDiscountDiscountSourceOneOf, Q as V1BuyerInfo, R as V1BuyerInfoIdOneOf, cn as V1ChargeType, cP as V1Coupon, bp as V1CreatedBy, bq as V1CreatedByStringOneOf, ch as V1DeliveryLogistics, ck as V1DeliveryTimeSlot, cR as V1DiscountRule, cS as V1DiscountRuleName, c1 as V1FreeTrialPeriod, cU as V1ItemCombination, cV as V1ItemCombinationLineItem, N as V1ItemModifier, bT as V1ItemTaxFullDetails, bW as V1JurisdictionType, cT as V1LineItemDiscount, cQ as V1MerchantDiscount, V as V1ModifierGroup, dv as V1PaymentOption, ci as V1PickupDetails, cc as V1PlatformFee, cz as V1PriceSummary, a5 as V1ShippingInformation, cv as V1ShippingPrice, cs as V1ShippingRegion, c0 as V1SubscriptionSettings, cW as V1TaxSummary, cF as ValidationError, a3 as VatId, a4 as VatType, df as Violation, X as WeightUnit, bg as WixReceipt } from './interfaces-ecommerce-v1-payment-settings-provider.public-BZAEWdBU.mjs';
|
|
3
3
|
import { BuildServicePluginDefinition } from '@wix/sdk-types';
|
|
4
4
|
|
|
5
5
|
declare const provideHandlers: BuildServicePluginDefinition<typeof provideHandlers$1> & typeof provideHandlers$1;
|
package/build/es/index.mjs
CHANGED
|
@@ -5,6 +5,16 @@ var DescriptionLineType = /* @__PURE__ */ ((DescriptionLineType2) => {
|
|
|
5
5
|
DescriptionLineType2["COLOR"] = "COLOR";
|
|
6
6
|
return DescriptionLineType2;
|
|
7
7
|
})(DescriptionLineType || {});
|
|
8
|
+
var DimensionsUnit = /* @__PURE__ */ ((DimensionsUnit2) => {
|
|
9
|
+
DimensionsUnit2["UNKNOWN_DIMENSIONS_UNIT"] = "UNKNOWN_DIMENSIONS_UNIT";
|
|
10
|
+
DimensionsUnit2["MM"] = "MM";
|
|
11
|
+
DimensionsUnit2["CM"] = "CM";
|
|
12
|
+
DimensionsUnit2["M"] = "M";
|
|
13
|
+
DimensionsUnit2["IN"] = "IN";
|
|
14
|
+
DimensionsUnit2["FT"] = "FT";
|
|
15
|
+
DimensionsUnit2["YD"] = "YD";
|
|
16
|
+
return DimensionsUnit2;
|
|
17
|
+
})(DimensionsUnit || {});
|
|
8
18
|
var ItemTypePreset = /* @__PURE__ */ ((ItemTypePreset2) => {
|
|
9
19
|
ItemTypePreset2["UNRECOGNISED"] = "UNRECOGNISED";
|
|
10
20
|
ItemTypePreset2["PHYSICAL"] = "PHYSICAL";
|
|
@@ -576,6 +586,7 @@ export {
|
|
|
576
586
|
ChannelType,
|
|
577
587
|
ChargeType,
|
|
578
588
|
DescriptionLineType,
|
|
589
|
+
DimensionsUnit,
|
|
579
590
|
DiscountReason,
|
|
580
591
|
DiscountType,
|
|
581
592
|
FallbackReason,
|