Files
klz-cables.com/.pnpm-store/v10/files/7a/de976822416b93ca62a15a2d876b4d664b9db91d958f8bf453dd0a62b18fc8024db5fe2753fb16e259a327718f0ec619347dbc7d8023b9c27daa95a68a8124
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

30 lines
723 B
Plaintext

import { entityKind } from "../../entity.js";
import { SingleStoreColumn, SingleStoreColumnBuilder } from "./common.js";
class SingleStoreYearBuilder extends SingleStoreColumnBuilder {
static [entityKind] = "SingleStoreYearBuilder";
constructor(name) {
super(name, "number", "SingleStoreYear");
}
/** @internal */
build(table) {
return new SingleStoreYear(
table,
this.config
);
}
}
class SingleStoreYear extends SingleStoreColumn {
static [entityKind] = "SingleStoreYear";
getSQLType() {
return `year`;
}
}
function year(name) {
return new SingleStoreYearBuilder(name ?? "");
}
export {
SingleStoreYear,
SingleStoreYearBuilder,
year
};
//# sourceMappingURL=year.js.map