Files
klz-cables.com/.pnpm-store/v10/files/39/aacc0e54ddc0a1d666faefb6b88c6e50581683dfffb2f0bc9280bed532b4ef6728dd1c87429c3ead342a7768e55d72432c84a456f863f69902b73965faaf18
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

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