TenantAtlas/apps/platform/.pnpm-store/v10/files/39/aacc0e54ddc0a1d666faefb6b88c6e50581683dfffb2f0bc9280bed532b4ef6728dd1c87429c3ead342a7768e55d72432c84a456f863f69902b73965faaf18
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

27 lines
601 B
Plaintext

import { entityKind } from "../../entity.js";
import { GelColumn, GelColumnBuilder } from "./common.js";
class GelUUIDBuilder extends GelColumnBuilder {
static [entityKind] = "GelUUIDBuilder";
constructor(name) {
super(name, "string", "GelUUID");
}
/** @internal */
build(table) {
return new GelUUID(table, this.config);
}
}
class GelUUID extends GelColumn {
static [entityKind] = "GelUUID";
getSQLType() {
return "uuid";
}
}
function uuid(name) {
return new GelUUIDBuilder(name ?? "");
}
export {
GelUUID,
GelUUIDBuilder,
uuid
};
//# sourceMappingURL=uuid.js.map