TenantAtlas/apps/platform/.pnpm-store/v10/files/fa/1b136ee4e7b192c69a2c43f9854264604b041e7cd74c1c6cc797a4534adff77df56860efe7bb55bf84a83a0872ccf5e3228b4f26958d0bfb5092c079cf47ba
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02: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