Files
klz-cables.com/.pnpm-store/v10/files/8d/bd5c5baa7fe8fe1640e40d749cd7f6d04af1fd073749aea56951377b71a06016cfd845d97637cd24c6357c747fc32a1b0e8fc68392fc71a087398805457cfa
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

30 lines
660 B
Plaintext

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