Files
klz-cables.com/.pnpm-store/v10/files/9f/a38cd77f87d77be194b1506a2e389fbc340b83cb4fef7d0c163379fa59f2633c7f74c570e6870afdb935706b7af5461ca2a6ed6bd174aced6ea9e051d67ef4
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
588 B
Plaintext

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