Files
klz-cables.com/.pnpm-store/v10/files/5f/dc9b911b1fc4a66538842c7ff00ff918c67a9921b2bbc8745be36059d8b1301a3ca11edb8efdbcba2192a149da250a5b89e511834be750a65ee66c30ce38c5
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

23 lines
1.0 KiB
Plaintext

import * as core from "../core/index.js";
import * as schemas from "./schemas.js";
export function string<T = unknown>(params?: string | core.$ZodStringParams): schemas.ZodMiniString<T> {
return core._coercedString(schemas.ZodMiniString, params) as schemas.ZodMiniString<T>;
}
export function number<T = unknown>(params?: string | core.$ZodNumberParams): schemas.ZodMiniNumber<T> {
return core._coercedNumber(schemas.ZodMiniNumber, params) as schemas.ZodMiniNumber<T>;
}
export function boolean<T = unknown>(params?: string | core.$ZodBooleanParams): schemas.ZodMiniBoolean<T> {
return core._coercedBoolean(schemas.ZodMiniBoolean, params) as schemas.ZodMiniBoolean<T>;
}
export function bigint<T = unknown>(params?: string | core.$ZodBigIntParams): schemas.ZodMiniBigInt<T> {
return core._coercedBigint(schemas.ZodMiniBigInt, params) as schemas.ZodMiniBigInt<T>;
}
export function date<T = unknown>(params?: string | core.$ZodDateParams): schemas.ZodMiniDate<T> {
return core._coercedDate(schemas.ZodMiniDate, params) as schemas.ZodMiniDate<T>;
}