Files
klz-cables.com/.pnpm-store/v10/files/9e/833b0f36ad67b84c9a9836a0d9e4dd67002c7b88efe8cfca563f1d3222061491f895178da685de1e460260cefb85797454b03cc3348d86e050e12ecb6e661f
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
632 B
Plaintext

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