Files
klz-cables.com/.pnpm-store/v10/files/b2/57d1d925cbf9ed3b0aa4f2f876f575982a55d4d01ca179f118e318e39bd9ab35627fd324c463ede8c0a18ecc3a578585ef31beb56463bb6937bd250b656793
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
754 B
Plaintext

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