@haus-storefront-react/shared-types 1.0.4-next.16 → 1.0.4-next.3
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/CHANGELOG.md +0 -66
- package/index.d.ts +1 -44
- package/index.js +1 -1
- package/index.mjs +10 -18
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,69 +1,3 @@
|
|
|
1
|
-
## 1.0.4-next.15 (2026-03-26)
|
|
2
|
-
|
|
3
|
-
This was a version bump only for shared/types to align it with other projects, there were no code changes.
|
|
4
|
-
|
|
5
|
-
## 1.0.4-next.14 (2026-03-26)
|
|
6
|
-
|
|
7
|
-
This was a version bump only for shared/types to align it with other projects, there were no code changes.
|
|
8
|
-
|
|
9
|
-
## 1.0.4-next.13 (2026-03-24)
|
|
10
|
-
|
|
11
|
-
This was a version bump only for shared/types to align it with other projects, there were no code changes.
|
|
12
|
-
|
|
13
|
-
## 1.0.4-next.12 (2026-03-19)
|
|
14
|
-
|
|
15
|
-
This was a version bump only for shared/types to align it with other projects, there were no code changes.
|
|
16
|
-
|
|
17
|
-
## 1.0.4-next.11 (2026-03-18)
|
|
18
|
-
|
|
19
|
-
This was a version bump only for shared/types to align it with other projects, there were no code changes.
|
|
20
|
-
|
|
21
|
-
## 1.0.4-next.10 (2026-03-18)
|
|
22
|
-
|
|
23
|
-
This was a version bump only for shared/types to align it with other projects, there were no code changes.
|
|
24
|
-
|
|
25
|
-
## 1.0.4-next.9 (2026-03-16)
|
|
26
|
-
|
|
27
|
-
This was a version bump only for shared/types to align it with other projects, there were no code changes.
|
|
28
|
-
|
|
29
|
-
## 1.0.4-next.8 (2026-03-13)
|
|
30
|
-
|
|
31
|
-
### 🚀 Features
|
|
32
|
-
|
|
33
|
-
- **vendure:** add related products plugin and types
|
|
34
|
-
|
|
35
|
-
## 1.0.4-next.7 (2026-03-11)
|
|
36
|
-
|
|
37
|
-
### 🚀 Features
|
|
38
|
-
|
|
39
|
-
- enhance form handling and component props across various modules
|
|
40
|
-
- add discount management components and hooks
|
|
41
|
-
- add ProductBadge component for enhanced product presentation
|
|
42
|
-
- add filters component for product listing
|
|
43
|
-
- add ProductListPrice component to handle pricing details
|
|
44
|
-
|
|
45
|
-
## 1.0.4-next.6 (2026-03-09)
|
|
46
|
-
|
|
47
|
-
### 🚀 Features
|
|
48
|
-
|
|
49
|
-
- add Product Variant Specifications plugin
|
|
50
|
-
|
|
51
|
-
## 1.0.4-next.5 (2026-03-09)
|
|
52
|
-
|
|
53
|
-
### 🚀 Features
|
|
54
|
-
|
|
55
|
-
- add Product Variant Specifications plugin
|
|
56
|
-
|
|
57
|
-
## 1.0.4-next.4 (2026-03-09)
|
|
58
|
-
|
|
59
|
-
This was a version bump only for shared/types to align it with other projects, there were no code changes.
|
|
60
|
-
|
|
61
|
-
## 1.0.4-next.3 (2026-03-06)
|
|
62
|
-
|
|
63
|
-
### 🚀 Features
|
|
64
|
-
|
|
65
|
-
- add goToPage method to Pagination interface
|
|
66
|
-
|
|
67
1
|
## 1.0.4-next.2 (2026-03-04)
|
|
68
2
|
|
|
69
3
|
This was a version bump only for shared/types to align it with other projects, there were no code changes.
|
package/index.d.ts
CHANGED
|
@@ -50,11 +50,6 @@ type ProviderData = {
|
|
|
50
50
|
}>;
|
|
51
51
|
};
|
|
52
52
|
export type ProviderDataMap = Array<ProviderData>;
|
|
53
|
-
export interface QueryUpdates extends BuilderQueryUpdates {
|
|
54
|
-
[key: string]: {
|
|
55
|
-
fields: Field[];
|
|
56
|
-
};
|
|
57
|
-
}
|
|
58
53
|
export interface IVendurePluginConfig<Features extends PluginFeatures, R, S, T> {
|
|
59
54
|
readonly name: PluginName;
|
|
60
55
|
enabled?: boolean;
|
|
@@ -111,10 +106,6 @@ export interface BuilderQuery<Vars extends Record<string, unknown> = Record<stri
|
|
|
111
106
|
fields: Field[];
|
|
112
107
|
variables?: Vars;
|
|
113
108
|
}
|
|
114
|
-
export type BuilderQueryWithInheritFieldsFrom<Vars extends Record<string, unknown> = Record<string, unknown>> = Omit<BuilderQuery<Vars>, 'fields'> & RequireAtLeastOne<{
|
|
115
|
-
fields: Field[];
|
|
116
|
-
inheritFieldsFrom: string;
|
|
117
|
-
}>;
|
|
118
109
|
export type ExpectedVariables<Vars> = {
|
|
119
110
|
[K in keyof Vars]: Vars[K] extends {
|
|
120
111
|
type: string;
|
|
@@ -401,6 +392,7 @@ export interface ProductVariant extends BriefProductVariant {
|
|
|
401
392
|
taxCategory: string;
|
|
402
393
|
options: Array<ProductOption>;
|
|
403
394
|
facetValues: Array<FacetValue>;
|
|
395
|
+
customFields: Record<string, unknown>;
|
|
404
396
|
}
|
|
405
397
|
export interface Country extends Node {
|
|
406
398
|
code: LanguageCode;
|
|
@@ -685,41 +677,6 @@ export interface AddItemToOrderInput {
|
|
|
685
677
|
productVariantId: string;
|
|
686
678
|
quantity: number;
|
|
687
679
|
}
|
|
688
|
-
export interface OrderItemErrorBase {
|
|
689
|
-
errorCode: string;
|
|
690
|
-
message: string;
|
|
691
|
-
}
|
|
692
|
-
export interface OrderModificationError extends OrderItemErrorBase {
|
|
693
|
-
errorCode: 'ORDER_MODIFICATION_ERROR';
|
|
694
|
-
}
|
|
695
|
-
export interface OrderLimitError extends OrderItemErrorBase {
|
|
696
|
-
errorCode: 'ORDER_LIMIT_ERROR';
|
|
697
|
-
maxItems: number;
|
|
698
|
-
}
|
|
699
|
-
export interface NegativeQuantityError extends OrderItemErrorBase {
|
|
700
|
-
errorCode: 'NEGATIVE_QUANTITY_ERROR';
|
|
701
|
-
}
|
|
702
|
-
export interface InsufficientStockError extends OrderItemErrorBase {
|
|
703
|
-
errorCode: 'INSUFFICIENT_STOCK_ERROR';
|
|
704
|
-
quantityAvailable: number;
|
|
705
|
-
order?: Order;
|
|
706
|
-
}
|
|
707
|
-
export interface OrderInterceptorError extends OrderItemErrorBase {
|
|
708
|
-
errorCode: 'ORDER_INTERCEPTOR_ERROR';
|
|
709
|
-
interceptorError: string;
|
|
710
|
-
}
|
|
711
|
-
/**
|
|
712
|
-
* Union type of all possible errors that can occur when adding or removing items from an Order.
|
|
713
|
-
*/
|
|
714
|
-
export type UpdateOrderItemErrorResult = OrderModificationError | OrderLimitError | NegativeQuantityError | InsufficientStockError | OrderInterceptorError;
|
|
715
|
-
/**
|
|
716
|
-
* Returned when multiple items are added to an Order.
|
|
717
|
-
* The errorResults array contains the errors that occurred for each item, if any.
|
|
718
|
-
*/
|
|
719
|
-
export interface UpdateMultipleOrderItemsResult {
|
|
720
|
-
order?: Order;
|
|
721
|
-
errorResults: UpdateOrderItemErrorResult[];
|
|
722
|
-
}
|
|
723
680
|
export interface AdjustOrderLineInput {
|
|
724
681
|
orderLineId: string;
|
|
725
682
|
quantity: number;
|
package/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});var E=(R=>(R.Asc="ASC",R.Desc="DESC",R))(E||{}),S=(R=>(R.ACTIVE_ORDER="activeOrder",R.ACTIVE_CHANNEL="activeChannel",R.ACTIVE_CUSTOMER="activeCustomer",R.ACTIVE_CUSTOMER_ORDERS="activeCustomerOrders",R.AVAILABLE_COUNTRIES="availableCountries",R.FACETS="facets",R.ORDER_BY_CODE="orderByCode",R.ORDER_STATES="orderStates",R.PRODUCT="product",R.PAYMENT_METHODS="paymentMethods",R.SEARCH="search",R.SEARCH_FIELD="searchField",R.SHIPPING_METHODS="shippingMethods",R))(S||{}),_=(R=>(R.Aed="AED",R.Afn="AFN",R.All="ALL",R.Amd="AMD",R.Ang="ANG",R.Aoa="AOA",R.Ars="ARS",R.Aud="AUD",R.Awg="AWG",R.Azn="AZN",R.Bam="BAM",R.Bbd="BBD",R.Bdt="BDT",R.Bgn="BGN",R.Bhd="BHD",R.Bif="BIF",R.Bmd="BMD",R.Bnd="BND",R.Bob="BOB",R.Brl="BRL",R.Bsd="BSD",R.Btn="BTN",R.Bwp="BWP",R.Byn="BYN",R.Bzd="BZD",R.Cad="CAD",R.Cdf="CDF",R.Chf="CHF",R.Clp="CLP",R.Cny="CNY",R.Cop="COP",R.Crc="CRC",R.Cuc="CUC",R.Cup="CUP",R.Cve="CVE",R.Czk="CZK",R.Djf="DJF",R.Dkk="DKK",R.Dop="DOP",R.Dzd="DZD",R.Egp="EGP",R.Ern="ERN",R.Etb="ETB",R.Eur="EUR",R.Fjd="FJD",R.Fkp="FKP",R.Gbp="GBP",R.Gel="GEL",R.Ghs="GHS",R.Gip="GIP",R.Gmd="GMD",R.Gnf="GNF",R.Gtq="GTQ",R.Gyd="GYD",R.Hkd="HKD",R.Hnl="HNL",R.Hrk="HRK",R.Htg="HTG",R.Huf="HUF",R.Idr="IDR",R.Ils="ILS",R.Inr="INR",R.Iqd="IQD",R.Irr="IRR",R.Isk="ISK",R.Jmd="JMD",R.Jod="JOD",R.Jpy="JPY",R.Kes="KES",R.Kgs="KGS",R.Khr="KHR",R.Kmf="KMF",R.Kpw="KPW",R.Krw="KRW",R.Kwd="KWD",R.Kyd="KYD",R.Kzt="KZT",R.Lak="LAK",R.Lbp="LBP",R.Lkr="LKR",R.Lrd="LRD",R.Lsl="LSL",R.Lyd="LYD",R.Mad="MAD",R.Mdl="MDL",R.Mga="MGA",R.Mkd="MKD",R.Mmk="MMK",R.Mnt="MNT",R.Mop="MOP",R.Mru="MRU",R.Mur="MUR",R.Mvr="MVR",R.Mwk="MWK",R.Mxn="MXN",R.Myr="MYR",R.Mzn="MZN",R.Nad="NAD",R.Ngn="NGN",R.Nio="NIO",R.Nok="NOK",R.Npr="NPR",R.Nzd="NZD",R.Omr="OMR",R.Pab="PAB",R.Pen="PEN",R.Pgk="PGK",R.Php="PHP",R.Pkr="PKR",R.Pln="PLN",R.Pyg="PYG",R.Qar="QAR",R.Ron="RON",R.Rsd="RSD",R.Rub="RUB",R.Rwf="RWF",R.Sar="SAR",R.Sbd="SBD",R.Scr="SCR",R.Sdg="SDG",R.Sek="SEK",R.Sgd="SGD",R.Shp="SHP",R.Sll="SLL",R.Sos="SOS",R.Srd="SRD",R.Ssp="SSP",R.Stn="STN",R.Svc="SVC",R.Syp="SYP",R.Szl="SZL",R.Thb="THB",R.Tjs="TJS",R.Tmt="TMT",R.Tnd="TND",R.Top="TOP",R.Try="TRY",R.Ttd="TTD",R.Twd="TWD",R.Tzs="TZS",R.Uah="UAH",R.Ugx="UGX",R.Usd="USD",R.Uyu="UYU",R.Uzs="UZS",R.Ves="VES",R.Vnd="VND",R.Vuv="VUV",R.Wst="WST",R.Xaf="XAF",R.Xcd="XCD",R.Xof="XOF",R.Xpf="XPF",R.Yer="YER",R.Zar="ZAR",R.Zmw="ZMW",R.Zwl="ZWL",R))(_||{}),O=(R=>(R.Af="af",R.Ak="ak",R.Am="am",R.Ar="ar",R.As="as",R.Az="az",R.Be="be",R.Bg="bg",R.Bm="bm",R.Bn="bn",R.Bo="bo",R.Br="br",R.Bs="bs",R.Ca="ca",R.Ce="ce",R.Co="co",R.Cs="cs",R.Cu="cu",R.Cy="cy",R.Da="da",R.De="de",R.DeAt="de_AT",R.DeCh="de_CH",R.Dz="dz",R.Ee="ee",R.El="el",R.En="en",R.EnAu="en_AU",R.EnCa="en_CA",R.EnGb="en_GB",R.EnUs="en_US",R.Eo="eo",R.Es="es",R.EsEs="es_ES",R.EsMx="es_MX",R.Et="et",R.Eu="eu",R.Fa="fa",R.FaAf="fa_AF",R.Ff="ff",R.Fi="fi",R.Fo="fo",R.Fr="fr",R.FrCa="fr_CA",R.FrCh="fr_CH",R.Fy="fy",R.Ga="ga",R.Gd="gd",R.Gl="gl",R.Gu="gu",R.Gv="gv",R.Ha="ha",R.He="he",R.Hi="hi",R.Hr="hr",R.Ht="ht",R.Hu="hu",R.Hy="hy",R.Ia="ia",R.Id="id",R.Ig="ig",R.Ii="ii",R.Is="is",R.It="it",R.Ja="ja",R.Jv="jv",R.Ka="ka",R.Ki="ki",R.Kk="kk",R.Kl="kl",R.Km="km",R.Kn="kn",R.Ko="ko",R.Ks="ks",R.Ku="ku",R.Kw="kw",R.Ky="ky",R.La="la",R.Lb="lb",R.Lg="lg",R.Ln="ln",R.Lo="lo",R.Lt="lt",R.Lu="lu",R.Lv="lv",R.Mg="mg",R.Mi="mi",R.Mk="mk",R.Ml="ml",R.Mn="mn",R.Mr="mr",R.Ms="ms",R.Mt="mt",R.My="my",R.Nb="nb",R.Nd="nd",R.Ne="ne",R.Nl="nl",R.NlBe="nl_BE",R.Nn="nn",R.Ny="ny",R.Om="om",R.Or="or",R.Os="os",R.Pa="pa",R.Pl="pl",R.Ps="ps",R.Pt="pt",R.PtBr="pt_BR",R.PtPt="pt_PT",R.Qu="qu",R.Rm="rm",R.Rn="rn",R.Ro="ro",R.RoMd="ro_MD",R.Ru="ru",R.Rw="rw",R.Sa="sa",R.Sd="sd",R.Se="se",R.Sg="sg",R.Si="si",R.Sk="sk",R.Sl="sl",R.Sm="sm",R.Sn="sn",R.So="so",R.Sq="sq",R.Sr="sr",R.St="st",R.Su="su",R.Sv="sv",R.Sw="sw",R.SwCd="sw_CD",R.Ta="ta",R.Te="te",R.Tg="tg",R.Th="th",R.Ti="ti",R.Tk="tk",R.To="to",R.Tr="tr",R.Tt="tt",R.Ug="ug",R.Uk="uk",R.Ur="ur",R.Uz="uz",R.Vi="vi",R.Vo="vo",R.Wo="wo",R.Xh="xh",R.Yi="yi",R.Yo="yo",R.Zh="zh",R.ZhHans="zh_Hans",R.ZhHant="zh_Hant",R.Zu="zu",R))(O||{}),A=(R=>(R.Binary="BINARY",R.Image="IMAGE",R.Video="VIDEO",R))(A||{}),D=(R=>(R.And="AND",R.Or="OR",R))(D||{}),t=(R=>(R.AlreadyLoggedInError="ALREADY_LOGGED_IN_ERROR",R.CouponCodeExpiredError="COUPON_CODE_EXPIRED_ERROR",R.CouponCodeInvalidError="COUPON_CODE_INVALID_ERROR",R.CouponCodeLimitError="COUPON_CODE_LIMIT_ERROR",R.EmailAddressConflictError="EMAIL_ADDRESS_CONFLICT_ERROR",R.GuestCheckoutError="GUEST_CHECKOUT_ERROR",R.IdentifierChangeTokenExpiredError="IDENTIFIER_CHANGE_TOKEN_EXPIRED_ERROR",R.IdentifierChangeTokenInvalidError="IDENTIFIER_CHANGE_TOKEN_INVALID_ERROR",R.IneligiblePaymentMethodError="INELIGIBLE_PAYMENT_METHOD_ERROR",R.IneligibleShippingMethodError="INELIGIBLE_SHIPPING_METHOD_ERROR",R.InsufficientStockError="INSUFFICIENT_STOCK_ERROR",R.InvalidCredentialsError="INVALID_CREDENTIALS_ERROR",R.MissingPasswordError="MISSING_PASSWORD_ERROR",R.NativeAuthStrategyError="NATIVE_AUTH_STRATEGY_ERROR",R.NegativeQuantityError="NEGATIVE_QUANTITY_ERROR",R.NotVerifiedError="NOT_VERIFIED_ERROR",R.NoActiveOrderError="NO_ACTIVE_ORDER_ERROR",R.OrderLimitError="ORDER_LIMIT_ERROR",R.OrderModificationError="ORDER_MODIFICATION_ERROR",R.OrderPaymentStateError="ORDER_PAYMENT_STATE_ERROR",R.OrderStateTransitionError="ORDER_STATE_TRANSITION_ERROR",R.PasswordAlreadySetError="PASSWORD_ALREADY_SET_ERROR",R.PasswordResetTokenExpiredError="PASSWORD_RESET_TOKEN_EXPIRED_ERROR",R.PasswordResetTokenInvalidError="PASSWORD_RESET_TOKEN_INVALID_ERROR",R.PasswordValidationError="PASSWORD_VALIDATION_ERROR",R.PaymentDeclinedError="PAYMENT_DECLINED_ERROR",R.PaymentFailedError="PAYMENT_FAILED_ERROR",R.UnknownError="UNKNOWN_ERROR",R.VerificationTokenExpiredError="VERIFICATION_TOKEN_EXPIRED_ERROR",R.VerificationTokenInvalidError="VERIFICATION_TOKEN_INVALID_ERROR",R))(t||{});exports.AssetType=A;exports.CurrencyCode=_;exports.ErrorCode=t;exports.LanguageCode=O;exports.LogicalOperator=D;exports.QueryKeys=S;exports.SortOrder=E;
|
package/index.mjs
CHANGED
|
@@ -1,18 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}
|
|
11
|
-
return e.Binary = "BINARY", e.Image = "IMAGE", e.Video = "VIDEO", e;
|
|
12
|
-
}({}), a = /* @__PURE__ */ function(e) {
|
|
13
|
-
return e.And = "AND", e.Or = "OR", e;
|
|
14
|
-
}({}), o = /* @__PURE__ */ function(e) {
|
|
15
|
-
return e.AlreadyLoggedInError = "ALREADY_LOGGED_IN_ERROR", e.CouponCodeExpiredError = "COUPON_CODE_EXPIRED_ERROR", e.CouponCodeInvalidError = "COUPON_CODE_INVALID_ERROR", e.CouponCodeLimitError = "COUPON_CODE_LIMIT_ERROR", e.EmailAddressConflictError = "EMAIL_ADDRESS_CONFLICT_ERROR", e.GuestCheckoutError = "GUEST_CHECKOUT_ERROR", e.IdentifierChangeTokenExpiredError = "IDENTIFIER_CHANGE_TOKEN_EXPIRED_ERROR", e.IdentifierChangeTokenInvalidError = "IDENTIFIER_CHANGE_TOKEN_INVALID_ERROR", e.IneligiblePaymentMethodError = "INELIGIBLE_PAYMENT_METHOD_ERROR", e.IneligibleShippingMethodError = "INELIGIBLE_SHIPPING_METHOD_ERROR", e.InsufficientStockError = "INSUFFICIENT_STOCK_ERROR", e.InvalidCredentialsError = "INVALID_CREDENTIALS_ERROR", e.MissingPasswordError = "MISSING_PASSWORD_ERROR", e.NativeAuthStrategyError = "NATIVE_AUTH_STRATEGY_ERROR", e.NegativeQuantityError = "NEGATIVE_QUANTITY_ERROR", e.NotVerifiedError = "NOT_VERIFIED_ERROR", e.NoActiveOrderError = "NO_ACTIVE_ORDER_ERROR", e.OrderLimitError = "ORDER_LIMIT_ERROR", e.OrderModificationError = "ORDER_MODIFICATION_ERROR", e.OrderPaymentStateError = "ORDER_PAYMENT_STATE_ERROR", e.OrderStateTransitionError = "ORDER_STATE_TRANSITION_ERROR", e.PasswordAlreadySetError = "PASSWORD_ALREADY_SET_ERROR", e.PasswordResetTokenExpiredError = "PASSWORD_RESET_TOKEN_EXPIRED_ERROR", e.PasswordResetTokenInvalidError = "PASSWORD_RESET_TOKEN_INVALID_ERROR", e.PasswordValidationError = "PASSWORD_VALIDATION_ERROR", e.PaymentDeclinedError = "PAYMENT_DECLINED_ERROR", e.PaymentFailedError = "PAYMENT_FAILED_ERROR", e.UnknownError = "UNKNOWN_ERROR", e.VerificationTokenExpiredError = "VERIFICATION_TOKEN_EXPIRED_ERROR", e.VerificationTokenInvalidError = "VERIFICATION_TOKEN_INVALID_ERROR", e;
|
|
16
|
-
}({});
|
|
17
|
-
//#endregion
|
|
18
|
-
export { i as AssetType, n as CurrencyCode, o as ErrorCode, r as LanguageCode, a as LogicalOperator, t as QueryKeys, e as SortOrder };
|
|
1
|
+
var E = /* @__PURE__ */ ((R) => (R.Asc = "ASC", R.Desc = "DESC", R))(E || {}), S = /* @__PURE__ */ ((R) => (R.ACTIVE_ORDER = "activeOrder", R.ACTIVE_CHANNEL = "activeChannel", R.ACTIVE_CUSTOMER = "activeCustomer", R.ACTIVE_CUSTOMER_ORDERS = "activeCustomerOrders", R.AVAILABLE_COUNTRIES = "availableCountries", R.FACETS = "facets", R.ORDER_BY_CODE = "orderByCode", R.ORDER_STATES = "orderStates", R.PRODUCT = "product", R.PAYMENT_METHODS = "paymentMethods", R.SEARCH = "search", R.SEARCH_FIELD = "searchField", R.SHIPPING_METHODS = "shippingMethods", R))(S || {}), _ = /* @__PURE__ */ ((R) => (R.Aed = "AED", R.Afn = "AFN", R.All = "ALL", R.Amd = "AMD", R.Ang = "ANG", R.Aoa = "AOA", R.Ars = "ARS", R.Aud = "AUD", R.Awg = "AWG", R.Azn = "AZN", R.Bam = "BAM", R.Bbd = "BBD", R.Bdt = "BDT", R.Bgn = "BGN", R.Bhd = "BHD", R.Bif = "BIF", R.Bmd = "BMD", R.Bnd = "BND", R.Bob = "BOB", R.Brl = "BRL", R.Bsd = "BSD", R.Btn = "BTN", R.Bwp = "BWP", R.Byn = "BYN", R.Bzd = "BZD", R.Cad = "CAD", R.Cdf = "CDF", R.Chf = "CHF", R.Clp = "CLP", R.Cny = "CNY", R.Cop = "COP", R.Crc = "CRC", R.Cuc = "CUC", R.Cup = "CUP", R.Cve = "CVE", R.Czk = "CZK", R.Djf = "DJF", R.Dkk = "DKK", R.Dop = "DOP", R.Dzd = "DZD", R.Egp = "EGP", R.Ern = "ERN", R.Etb = "ETB", R.Eur = "EUR", R.Fjd = "FJD", R.Fkp = "FKP", R.Gbp = "GBP", R.Gel = "GEL", R.Ghs = "GHS", R.Gip = "GIP", R.Gmd = "GMD", R.Gnf = "GNF", R.Gtq = "GTQ", R.Gyd = "GYD", R.Hkd = "HKD", R.Hnl = "HNL", R.Hrk = "HRK", R.Htg = "HTG", R.Huf = "HUF", R.Idr = "IDR", R.Ils = "ILS", R.Inr = "INR", R.Iqd = "IQD", R.Irr = "IRR", R.Isk = "ISK", R.Jmd = "JMD", R.Jod = "JOD", R.Jpy = "JPY", R.Kes = "KES", R.Kgs = "KGS", R.Khr = "KHR", R.Kmf = "KMF", R.Kpw = "KPW", R.Krw = "KRW", R.Kwd = "KWD", R.Kyd = "KYD", R.Kzt = "KZT", R.Lak = "LAK", R.Lbp = "LBP", R.Lkr = "LKR", R.Lrd = "LRD", R.Lsl = "LSL", R.Lyd = "LYD", R.Mad = "MAD", R.Mdl = "MDL", R.Mga = "MGA", R.Mkd = "MKD", R.Mmk = "MMK", R.Mnt = "MNT", R.Mop = "MOP", R.Mru = "MRU", R.Mur = "MUR", R.Mvr = "MVR", R.Mwk = "MWK", R.Mxn = "MXN", R.Myr = "MYR", R.Mzn = "MZN", R.Nad = "NAD", R.Ngn = "NGN", R.Nio = "NIO", R.Nok = "NOK", R.Npr = "NPR", R.Nzd = "NZD", R.Omr = "OMR", R.Pab = "PAB", R.Pen = "PEN", R.Pgk = "PGK", R.Php = "PHP", R.Pkr = "PKR", R.Pln = "PLN", R.Pyg = "PYG", R.Qar = "QAR", R.Ron = "RON", R.Rsd = "RSD", R.Rub = "RUB", R.Rwf = "RWF", R.Sar = "SAR", R.Sbd = "SBD", R.Scr = "SCR", R.Sdg = "SDG", R.Sek = "SEK", R.Sgd = "SGD", R.Shp = "SHP", R.Sll = "SLL", R.Sos = "SOS", R.Srd = "SRD", R.Ssp = "SSP", R.Stn = "STN", R.Svc = "SVC", R.Syp = "SYP", R.Szl = "SZL", R.Thb = "THB", R.Tjs = "TJS", R.Tmt = "TMT", R.Tnd = "TND", R.Top = "TOP", R.Try = "TRY", R.Ttd = "TTD", R.Twd = "TWD", R.Tzs = "TZS", R.Uah = "UAH", R.Ugx = "UGX", R.Usd = "USD", R.Uyu = "UYU", R.Uzs = "UZS", R.Ves = "VES", R.Vnd = "VND", R.Vuv = "VUV", R.Wst = "WST", R.Xaf = "XAF", R.Xcd = "XCD", R.Xof = "XOF", R.Xpf = "XPF", R.Yer = "YER", R.Zar = "ZAR", R.Zmw = "ZMW", R.Zwl = "ZWL", R))(_ || {}), D = /* @__PURE__ */ ((R) => (R.Af = "af", R.Ak = "ak", R.Am = "am", R.Ar = "ar", R.As = "as", R.Az = "az", R.Be = "be", R.Bg = "bg", R.Bm = "bm", R.Bn = "bn", R.Bo = "bo", R.Br = "br", R.Bs = "bs", R.Ca = "ca", R.Ce = "ce", R.Co = "co", R.Cs = "cs", R.Cu = "cu", R.Cy = "cy", R.Da = "da", R.De = "de", R.DeAt = "de_AT", R.DeCh = "de_CH", R.Dz = "dz", R.Ee = "ee", R.El = "el", R.En = "en", R.EnAu = "en_AU", R.EnCa = "en_CA", R.EnGb = "en_GB", R.EnUs = "en_US", R.Eo = "eo", R.Es = "es", R.EsEs = "es_ES", R.EsMx = "es_MX", R.Et = "et", R.Eu = "eu", R.Fa = "fa", R.FaAf = "fa_AF", R.Ff = "ff", R.Fi = "fi", R.Fo = "fo", R.Fr = "fr", R.FrCa = "fr_CA", R.FrCh = "fr_CH", R.Fy = "fy", R.Ga = "ga", R.Gd = "gd", R.Gl = "gl", R.Gu = "gu", R.Gv = "gv", R.Ha = "ha", R.He = "he", R.Hi = "hi", R.Hr = "hr", R.Ht = "ht", R.Hu = "hu", R.Hy = "hy", R.Ia = "ia", R.Id = "id", R.Ig = "ig", R.Ii = "ii", R.Is = "is", R.It = "it", R.Ja = "ja", R.Jv = "jv", R.Ka = "ka", R.Ki = "ki", R.Kk = "kk", R.Kl = "kl", R.Km = "km", R.Kn = "kn", R.Ko = "ko", R.Ks = "ks", R.Ku = "ku", R.Kw = "kw", R.Ky = "ky", R.La = "la", R.Lb = "lb", R.Lg = "lg", R.Ln = "ln", R.Lo = "lo", R.Lt = "lt", R.Lu = "lu", R.Lv = "lv", R.Mg = "mg", R.Mi = "mi", R.Mk = "mk", R.Ml = "ml", R.Mn = "mn", R.Mr = "mr", R.Ms = "ms", R.Mt = "mt", R.My = "my", R.Nb = "nb", R.Nd = "nd", R.Ne = "ne", R.Nl = "nl", R.NlBe = "nl_BE", R.Nn = "nn", R.Ny = "ny", R.Om = "om", R.Or = "or", R.Os = "os", R.Pa = "pa", R.Pl = "pl", R.Ps = "ps", R.Pt = "pt", R.PtBr = "pt_BR", R.PtPt = "pt_PT", R.Qu = "qu", R.Rm = "rm", R.Rn = "rn", R.Ro = "ro", R.RoMd = "ro_MD", R.Ru = "ru", R.Rw = "rw", R.Sa = "sa", R.Sd = "sd", R.Se = "se", R.Sg = "sg", R.Si = "si", R.Sk = "sk", R.Sl = "sl", R.Sm = "sm", R.Sn = "sn", R.So = "so", R.Sq = "sq", R.Sr = "sr", R.St = "st", R.Su = "su", R.Sv = "sv", R.Sw = "sw", R.SwCd = "sw_CD", R.Ta = "ta", R.Te = "te", R.Tg = "tg", R.Th = "th", R.Ti = "ti", R.Tk = "tk", R.To = "to", R.Tr = "tr", R.Tt = "tt", R.Ug = "ug", R.Uk = "uk", R.Ur = "ur", R.Uz = "uz", R.Vi = "vi", R.Vo = "vo", R.Wo = "wo", R.Xh = "xh", R.Yi = "yi", R.Yo = "yo", R.Zh = "zh", R.ZhHans = "zh_Hans", R.ZhHant = "zh_Hant", R.Zu = "zu", R))(D || {}), A = /* @__PURE__ */ ((R) => (R.Binary = "BINARY", R.Image = "IMAGE", R.Video = "VIDEO", R))(A || {}), I = /* @__PURE__ */ ((R) => (R.And = "AND", R.Or = "OR", R))(I || {}), O = /* @__PURE__ */ ((R) => (R.AlreadyLoggedInError = "ALREADY_LOGGED_IN_ERROR", R.CouponCodeExpiredError = "COUPON_CODE_EXPIRED_ERROR", R.CouponCodeInvalidError = "COUPON_CODE_INVALID_ERROR", R.CouponCodeLimitError = "COUPON_CODE_LIMIT_ERROR", R.EmailAddressConflictError = "EMAIL_ADDRESS_CONFLICT_ERROR", R.GuestCheckoutError = "GUEST_CHECKOUT_ERROR", R.IdentifierChangeTokenExpiredError = "IDENTIFIER_CHANGE_TOKEN_EXPIRED_ERROR", R.IdentifierChangeTokenInvalidError = "IDENTIFIER_CHANGE_TOKEN_INVALID_ERROR", R.IneligiblePaymentMethodError = "INELIGIBLE_PAYMENT_METHOD_ERROR", R.IneligibleShippingMethodError = "INELIGIBLE_SHIPPING_METHOD_ERROR", R.InsufficientStockError = "INSUFFICIENT_STOCK_ERROR", R.InvalidCredentialsError = "INVALID_CREDENTIALS_ERROR", R.MissingPasswordError = "MISSING_PASSWORD_ERROR", R.NativeAuthStrategyError = "NATIVE_AUTH_STRATEGY_ERROR", R.NegativeQuantityError = "NEGATIVE_QUANTITY_ERROR", R.NotVerifiedError = "NOT_VERIFIED_ERROR", R.NoActiveOrderError = "NO_ACTIVE_ORDER_ERROR", R.OrderLimitError = "ORDER_LIMIT_ERROR", R.OrderModificationError = "ORDER_MODIFICATION_ERROR", R.OrderPaymentStateError = "ORDER_PAYMENT_STATE_ERROR", R.OrderStateTransitionError = "ORDER_STATE_TRANSITION_ERROR", R.PasswordAlreadySetError = "PASSWORD_ALREADY_SET_ERROR", R.PasswordResetTokenExpiredError = "PASSWORD_RESET_TOKEN_EXPIRED_ERROR", R.PasswordResetTokenInvalidError = "PASSWORD_RESET_TOKEN_INVALID_ERROR", R.PasswordValidationError = "PASSWORD_VALIDATION_ERROR", R.PaymentDeclinedError = "PAYMENT_DECLINED_ERROR", R.PaymentFailedError = "PAYMENT_FAILED_ERROR", R.UnknownError = "UNKNOWN_ERROR", R.VerificationTokenExpiredError = "VERIFICATION_TOKEN_EXPIRED_ERROR", R.VerificationTokenInvalidError = "VERIFICATION_TOKEN_INVALID_ERROR", R))(O || {});
|
|
2
|
+
export {
|
|
3
|
+
A as AssetType,
|
|
4
|
+
_ as CurrencyCode,
|
|
5
|
+
O as ErrorCode,
|
|
6
|
+
D as LanguageCode,
|
|
7
|
+
I as LogicalOperator,
|
|
8
|
+
S as QueryKeys,
|
|
9
|
+
E as SortOrder
|
|
10
|
+
};
|