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

34 lines
784 B
Plaintext

import { entityKind } from "../../entity.js";
import { GelColumn } from "./common.js";
import { GelIntColumnBaseBuilder } from "./int.common.js";
class GelBigInt64Builder extends GelIntColumnBaseBuilder {
static [entityKind] = "GelBigInt64Builder";
constructor(name) {
super(name, "bigint", "GelBigInt64");
}
/** @internal */
build(table) {
return new GelBigInt64(
table,
this.config
);
}
}
class GelBigInt64 extends GelColumn {
static [entityKind] = "GelBigInt64";
getSQLType() {
return "edgedbt.bigint_t";
}
mapFromDriverValue(value) {
return BigInt(value);
}
}
function bigintT(name) {
return new GelBigInt64Builder(name ?? "");
}
export {
GelBigInt64,
GelBigInt64Builder,
bigintT
};
//# sourceMappingURL=bigintT.js.map