Files
klz-cables.com/.pnpm-store/v10/files/72/0db05b45c547e9e554d352c19583ab01dd726463c7587b411bc0c736da6ac394f7fb1c0f5e8890135bd9969945b9520de2d1976b00bbd86c985f4ae943a6eb
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

34 lines
823 B
Plaintext

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