Files
klz-cables.com/.pnpm-store/v10/files/94/df97c695074bc16aa03ba77bb870e052072008617339da01be74879e03e873d33a72d69b91fcc32db2d0910a1c7ebef62449e62721254208b8998114ea67b6
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
627 B
Plaintext

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