Files
klz-cables.com/.pnpm-store/v10/files/fa/1b136ee4e7b192c69a2c43f9854264604b041e7cd74c1c6cc797a4534adff77df56860efe7bb55bf84a83a0872ccf5e3228b4f26958d0bfb5092c079cf47ba
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

31 lines
808 B
Plaintext

import { entityKind } from "../../entity.js";
import { GelColumn } from "./common.js";
import { GelLocalDateColumnBaseBuilder } from "./date.common.js";
class GelLocalDateStringBuilder extends GelLocalDateColumnBaseBuilder {
static [entityKind] = "GelLocalDateStringBuilder";
constructor(name) {
super(name, "localDate", "GelLocalDateString");
}
/** @internal */
build(table) {
return new GelLocalDateString(
table,
this.config
);
}
}
class GelLocalDateString extends GelColumn {
static [entityKind] = "GelLocalDateString";
getSQLType() {
return "cal::local_date";
}
}
function localDate(name) {
return new GelLocalDateStringBuilder(name ?? "");
}
export {
GelLocalDateString,
GelLocalDateStringBuilder,
localDate
};
//# sourceMappingURL=localdate.js.map