Files
klz-cables.com/.pnpm-store/v10/files/91/74796c682ff75a0f2fafdd3c1ca71ea8211d9a8531532f8e63700df8b4e08ac6025286ebc68ec29002c6d95409fd588c2b3ad75c3da233a22de19a10852cc7
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
827 B
Plaintext

import { entityKind } from "../../entity.js";
import { GelColumn } from "./common.js";
import { GelLocalDateColumnBaseBuilder } from "./date.common.js";
class GelTimestampTzBuilder extends GelLocalDateColumnBaseBuilder {
static [entityKind] = "GelTimestampTzBuilder";
constructor(name) {
super(name, "date", "GelTimestampTz");
}
/** @internal */
build(table) {
return new GelTimestampTz(
table,
this.config
);
}
}
class GelTimestampTz extends GelColumn {
static [entityKind] = "GelTimestampTz";
constructor(table, config) {
super(table, config);
}
getSQLType() {
return "datetime";
}
}
function timestamptz(name) {
return new GelTimestampTzBuilder(name ?? "");
}
export {
GelTimestampTz,
GelTimestampTzBuilder,
timestamptz
};
//# sourceMappingURL=timestamptz.js.map