@voltro/database 0.27.0 → 0.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +513 -0
- package/dist/{frameworkLiveTables-CS_Hyhgz.js → frameworkLiveTables-CMyumigs.js} +169 -125
- package/dist/index.d.ts +305 -0
- package/dist/index.js +634 -594
- package/dist/sql.d.ts +649 -0
- package/dist/sql.js +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { $ as e, A as t, At as n, B as r,
|
|
1
|
+
import { $ as e, A as t, At as n, B as r, Bt as i, C as a, Ct as o, D as s, Dt as c, E as l, Et as u, F as d, Ft as f, G as p, H as m, I as h, It as g, J as _, K as v, L as y, Lt as ee, M as te, Mt as b, N as ne, Nt as x, O as re, Ot as S, P as ie, Pt as ae, Q as oe, R as C, Rt as se, S as ce, St as le, T as ue, Tt as de, U as fe, V as pe, Vt as me, W as he, X as ge, Y as _e, Z as ve, _ as ye, _t as be, a as xe, at as Se, b as Ce, bt as we, c as Te, ct as Ee, d as De, dt as Oe, et as ke, f as Ae, ft as je, g as Me, gt as Ne, h as Pe, ht as Fe, i as Ie, it as Le, j as Re, jt as w, k as ze, kt as T, l as Be, lt as Ve, m as He, mt as Ue, n as We, nt as Ge, o as Ke, ot as qe, p as Je, pt as Ye, q as Xe, rt as Ze, s as E, st as Qe, t as $e, tt as et, u as tt, ut as nt, v as rt, vt as it, w as at, wt as ot, x as st, xt as ct, y as lt, yt as ut, z as dt, zt as D } from "./frameworkLiveTables-CMyumigs.js";
|
|
2
2
|
import { timestampMs as ft, timestampMsOrNull as pt } from "./wire.js";
|
|
3
|
-
import { Cause as mt, Chunk as ht, Data as gt, Effect as _t, Exit as vt, Option as
|
|
3
|
+
import { Cause as mt, Chunk as ht, Data as gt, Effect as _t, Exit as vt, Option as O, Schema as k, Stream as yt } from "effect";
|
|
4
4
|
import { AsyncLocalStorage as bt } from "node:async_hooks";
|
|
5
|
-
import { ansi as
|
|
5
|
+
import { ansi as A } from "@voltro/logger";
|
|
6
6
|
import { SqlClient as xt } from "@effect/sql";
|
|
7
7
|
//#region src/actorSnapshot.ts
|
|
8
8
|
var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n) => {
|
|
@@ -120,25 +120,25 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
120
120
|
case "id":
|
|
121
121
|
case "reference":
|
|
122
122
|
case "text":
|
|
123
|
-
case "enum": return
|
|
123
|
+
case "enum": return k.String;
|
|
124
124
|
case "integer":
|
|
125
125
|
case "real":
|
|
126
|
-
case "decimal": return
|
|
127
|
-
case "boolean": return
|
|
126
|
+
case "decimal": return k.Number;
|
|
127
|
+
case "boolean": return k.Boolean;
|
|
128
128
|
case "timestamp":
|
|
129
129
|
case "date": return ft;
|
|
130
|
-
case "bigint": return
|
|
131
|
-
case "bytes": return
|
|
132
|
-
case "array": return
|
|
133
|
-
case "interval": return
|
|
134
|
-
default: return
|
|
130
|
+
case "bigint": return k.BigInt;
|
|
131
|
+
case "bytes": return k.Uint8ArrayFromSelf;
|
|
132
|
+
case "array": return k.Array(k.Unknown);
|
|
133
|
+
case "interval": return k.String;
|
|
134
|
+
default: return k.Unknown;
|
|
135
135
|
}
|
|
136
136
|
})();
|
|
137
|
-
return e.nullable === !0 ?
|
|
137
|
+
return e.nullable === !0 ? k.NullOr(t) : t;
|
|
138
138
|
}, It = (e, t) => {
|
|
139
139
|
let n = new Set(t?.omit ?? []), r = {};
|
|
140
140
|
for (let [t, i] of Object.entries(e.fields)) n.has(t) || (r[t] = Ft(i));
|
|
141
|
-
return
|
|
141
|
+
return k.Struct(r);
|
|
142
142
|
}, Lt = (e) => typeof e == "function" ? e : () => e, Rt = (e, t) => ({
|
|
143
143
|
kind: "one",
|
|
144
144
|
target: Lt(e),
|
|
@@ -178,35 +178,35 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
178
178
|
let t = e?.kind;
|
|
179
179
|
return t === "one" || t === "many" || t === "manyToMany";
|
|
180
180
|
});
|
|
181
|
-
}, Gt = Rt, Kt = zt, qt = Bt,
|
|
181
|
+
}, Gt = Rt, Kt = zt, qt = Bt, Jt = (e, t, n) => {
|
|
182
182
|
let r = [];
|
|
183
183
|
for (let [n, i] of Object.entries(e.fields)) i.type === "reference" && i.references?.()?.tableName === t && r.push(n);
|
|
184
184
|
if (r.length === 0) throw Error(`relation '${n}': no reference() column on '${e.tableName}' points at '${t}'. Either add one or pass an explicit { foreignKey: '<column>' }.`);
|
|
185
185
|
if (r.length > 1) throw Error(`relation '${n}': multiple reference() columns on '${e.tableName}' point at '${t}' (${r.join(", ")}). Pass an explicit { foreignKey: '<column>' } to disambiguate.`);
|
|
186
186
|
return r[0];
|
|
187
|
-
},
|
|
188
|
-
let t =
|
|
187
|
+
}, Yt = (e) => Object.keys(e.fields), Xt = (e, t) => Object.prototype.hasOwnProperty.call(e.fields, t), Zt = (e) => {
|
|
188
|
+
let t = Yt(e);
|
|
189
189
|
return t.length === 0 ? "<none>" : t.join(", ");
|
|
190
|
-
},
|
|
190
|
+
}, Qt = (e, t, n) => {
|
|
191
191
|
let r = `relation '${t}' on '${e.tableName}'`, i = n.target();
|
|
192
192
|
if (n.kind === "manyToMany") {
|
|
193
193
|
let t = n.through();
|
|
194
|
-
for (let [a, o] of [["sourceKey", n.sourceKey], ["targetKey", n.targetKey]]) if (!
|
|
194
|
+
for (let [a, o] of [["sourceKey", n.sourceKey], ["targetKey", n.targetKey]]) if (!Xt(t, o)) throw Error(`${r}: manyToMany ${a} '${o}' is not a column on the junction table '${t.tableName}'. Both keys name columns on the JUNCTION — ${a === "sourceKey" ? `sourceKey points at '${e.tableName}'` : `targetKey points at '${i.tableName}'`}. Columns on '${t.tableName}': ${Zt(t)}.`);
|
|
195
195
|
return;
|
|
196
196
|
}
|
|
197
197
|
if (n.sourceKey !== void 0 && n.foreignKey !== void 0) throw Error(`${r}: pass EITHER sourceKey OR foreignKey, not both. sourceKey '${n.sourceKey}' names a column on the source ('${e.tableName}') holding the target's id; foreignKey '${n.foreignKey}' names a column on the target ('${i.tableName}') holding the source's id. With both, foreignKey is ignored.`);
|
|
198
|
-
if (n.sourceKey !== void 0 && !
|
|
199
|
-
let t =
|
|
200
|
-
throw Error(`${r}: sourceKey '${n.sourceKey}' is not a column on the source table '${e.tableName}'.` + (t ? ` It IS a column on the target '${i.tableName}' — you probably want { foreignKey: '${n.sourceKey}' }, which names the column on the TARGET that holds this table's id.` : ` Columns on '${e.tableName}': ${
|
|
198
|
+
if (n.sourceKey !== void 0 && !Xt(e, n.sourceKey)) {
|
|
199
|
+
let t = Xt(i, n.sourceKey);
|
|
200
|
+
throw Error(`${r}: sourceKey '${n.sourceKey}' is not a column on the source table '${e.tableName}'.` + (t ? ` It IS a column on the target '${i.tableName}' — you probably want { foreignKey: '${n.sourceKey}' }, which names the column on the TARGET that holds this table's id.` : ` Columns on '${e.tableName}': ${Zt(e)}.`));
|
|
201
201
|
}
|
|
202
|
-
if (n.foreignKey !== void 0 && !
|
|
203
|
-
let t =
|
|
204
|
-
throw Error(`${r}: foreignKey '${n.foreignKey}' is not a column on the target table '${i.tableName}'.` + (t ? ` It IS a column on the source '${e.tableName}' — you want { sourceKey: '${n.foreignKey}' }. foreignKey names the column on the TARGET that points back at this table; sourceKey names the column on THIS table that holds the target's id.` : ` Columns on '${i.tableName}': ${
|
|
202
|
+
if (n.foreignKey !== void 0 && !Xt(i, n.foreignKey)) {
|
|
203
|
+
let t = Xt(e, n.foreignKey);
|
|
204
|
+
throw Error(`${r}: foreignKey '${n.foreignKey}' is not a column on the target table '${i.tableName}'.` + (t ? ` It IS a column on the source '${e.tableName}' — you want { sourceKey: '${n.foreignKey}' }. foreignKey names the column on the TARGET that points back at this table; sourceKey names the column on THIS table that holds the target's id.` : ` Columns on '${i.tableName}': ${Zt(i)}.`));
|
|
205
205
|
}
|
|
206
|
-
},
|
|
207
|
-
let t = e.source(), n =
|
|
206
|
+
}, $t = Symbol.for("@voltro/database/relationsRegistry"), en = globalThis, j = en[$t] ?? (en[$t] = /* @__PURE__ */ new Map()), tn = (e) => {
|
|
207
|
+
let t = e.source(), n = j.get(t.tableName);
|
|
208
208
|
if (n === void 0) {
|
|
209
|
-
|
|
209
|
+
j.set(t.tableName, new Map(Object.entries(e.relations)));
|
|
210
210
|
return;
|
|
211
211
|
}
|
|
212
212
|
for (let [r, i] of Object.entries(e.relations)) {
|
|
@@ -216,29 +216,29 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
216
216
|
n.set(r, i);
|
|
217
217
|
}
|
|
218
218
|
}
|
|
219
|
-
},
|
|
219
|
+
}, nn = (e) => {
|
|
220
220
|
let t = 0;
|
|
221
|
-
for (let n of Object.values(e)) Wt(n) && (
|
|
221
|
+
for (let n of Object.values(e)) Wt(n) && (tn(n), t += 1);
|
|
222
222
|
return t;
|
|
223
|
-
},
|
|
224
|
-
let t =
|
|
223
|
+
}, rn = (e) => {
|
|
224
|
+
let t = j.get(e);
|
|
225
225
|
if (t !== void 0) return Object.fromEntries(t);
|
|
226
|
-
},
|
|
226
|
+
}, an = (e, t) => j.get(e)?.get(t), on = () => {
|
|
227
227
|
let e = [];
|
|
228
|
-
for (let [t, n] of
|
|
228
|
+
for (let [t, n] of j) for (let [r, i] of n) e.push({
|
|
229
229
|
source: t,
|
|
230
230
|
name: r,
|
|
231
231
|
relation: i
|
|
232
232
|
});
|
|
233
233
|
return e;
|
|
234
|
-
}, on = () => {
|
|
235
|
-
for (let [e, t] of k) {
|
|
236
|
-
let n = S(e);
|
|
237
|
-
if (n !== void 0) for (let [e, r] of t) Zt(n, e, r);
|
|
238
|
-
}
|
|
239
234
|
}, sn = () => {
|
|
240
|
-
|
|
241
|
-
|
|
235
|
+
for (let [e, t] of j) {
|
|
236
|
+
let n = C(e);
|
|
237
|
+
if (n !== void 0) for (let [e, r] of t) Qt(n, e, r);
|
|
238
|
+
}
|
|
239
|
+
}, cn = () => {
|
|
240
|
+
j.clear();
|
|
241
|
+
}, ln = (e) => e == null || typeof e == "boolean" ? e : typeof e == "number" ? e !== 0 : typeof e == "bigint" ? e !== 0n : typeof e == "string" ? e === "1" || e.toLowerCase() === "true" : e, un = (e) => {
|
|
242
242
|
if (e == null || typeof e != "string") return e;
|
|
243
243
|
let t = e.trim();
|
|
244
244
|
if (t.length === 0) return e;
|
|
@@ -249,7 +249,7 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
249
249
|
} catch {
|
|
250
250
|
return e;
|
|
251
251
|
}
|
|
252
|
-
},
|
|
252
|
+
}, dn = (e) => e == null || typeof e == "string" ? e : typeof e == "number" || typeof e == "bigint" ? String(e) : e, fn = (e) => {
|
|
253
253
|
if (e == null || e instanceof Date) return e;
|
|
254
254
|
if (typeof e == "string") {
|
|
255
255
|
let t = new Date(e);
|
|
@@ -260,21 +260,21 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
260
260
|
return isNaN(t.getTime()) ? e : t;
|
|
261
261
|
}
|
|
262
262
|
return e;
|
|
263
|
-
},
|
|
263
|
+
}, pn = (e, t, n) => {
|
|
264
264
|
if (e == null) return e;
|
|
265
265
|
switch (t) {
|
|
266
|
-
case "boolean": return n === "postgres" ? e :
|
|
266
|
+
case "boolean": return n === "postgres" ? e : ln(e);
|
|
267
267
|
case "json":
|
|
268
|
-
case "array": return n === "postgres" ? e :
|
|
268
|
+
case "array": return n === "postgres" ? e : un(e);
|
|
269
269
|
case "timestamp":
|
|
270
|
-
case "date": return n === "sqlite" || n === "turso" ?
|
|
270
|
+
case "date": return n === "sqlite" || n === "turso" ? fn(e) : e;
|
|
271
271
|
case "decimal":
|
|
272
|
-
case "bigint": return
|
|
272
|
+
case "bigint": return dn(e);
|
|
273
273
|
default: return e;
|
|
274
274
|
}
|
|
275
|
-
},
|
|
275
|
+
}, mn = (e, t, n) => {
|
|
276
276
|
if (e.length === 0) return e;
|
|
277
|
-
let r =
|
|
277
|
+
let r = C(t);
|
|
278
278
|
if (r === void 0) return e;
|
|
279
279
|
let i = r.fields, a = [];
|
|
280
280
|
for (let [e, t] of Object.entries(i)) a.push({
|
|
@@ -283,36 +283,36 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
283
283
|
});
|
|
284
284
|
return e.map((e) => {
|
|
285
285
|
let t = { ...e };
|
|
286
|
-
for (let { key: e, type: r } of a) e in t && (t[e] =
|
|
286
|
+
for (let { key: e, type: r } of a) e in t && (t[e] = pn(t[e], r, n));
|
|
287
287
|
return t;
|
|
288
288
|
});
|
|
289
|
-
},
|
|
289
|
+
}, hn = (e, t) => {
|
|
290
290
|
if (e == null) return e;
|
|
291
291
|
switch (t) {
|
|
292
292
|
case "json":
|
|
293
293
|
case "array": return typeof e == "string" ? e : JSON.stringify(e);
|
|
294
294
|
default: return e;
|
|
295
295
|
}
|
|
296
|
-
},
|
|
297
|
-
let r =
|
|
296
|
+
}, gn = (e, t, n = ["json", "array"]) => {
|
|
297
|
+
let r = C(t);
|
|
298
298
|
if (r === void 0) return e;
|
|
299
299
|
let i = r.fields, a = null;
|
|
300
300
|
for (let [t, r] of Object.entries(i)) if (n.includes(r.type) && t in e) {
|
|
301
|
-
let n =
|
|
301
|
+
let n = hn(e[t], r.type);
|
|
302
302
|
n !== e[t] && (a === null && (a = { ...e }), a[t] = n);
|
|
303
303
|
}
|
|
304
304
|
return a ?? e;
|
|
305
|
-
},
|
|
305
|
+
}, _n = class extends Error {
|
|
306
306
|
_tag = "EagerCardinalityError";
|
|
307
307
|
constructor(e) {
|
|
308
308
|
super(e), this.name = "EagerCardinalityError";
|
|
309
309
|
}
|
|
310
|
-
},
|
|
310
|
+
}, vn = (e) => {
|
|
311
311
|
let { relationName: t, sourceTableName: n, targetTableName: r, foreignKey: i, sourceKey: a } = e, o = r === n;
|
|
312
312
|
return `relation '${t}' on '${n}' is declared \`one\`, but ${r}.${i} matches MORE than one row for the same ${n}.${a} — so there is no single related row to return.` + (o ? ` Because this relation is self-referential, check which side the key is on: \`foreignKey: '${i}'\` means "rows whose ${i} points AT me" (my children — there can be many). If you meant "the row my ${i} points to" (my parent), that is \`sourceKey: '${i}'\`.` : " Use `many(...)` if several are expected, or narrow the key.");
|
|
313
|
-
},
|
|
313
|
+
}, yn = async (e, t, n, r) => {
|
|
314
314
|
if (e.length === 0) return e;
|
|
315
|
-
let i =
|
|
315
|
+
let i = rn(n.tableName);
|
|
316
316
|
if (i === void 0) throw Error(`cannot eager-load on '${n.tableName}': no relations registered. Did you forget to declare \`relations(${n.tableName}, ...)\` or import the file that does?`);
|
|
317
317
|
let a = e.map((e) => ({ ...e }));
|
|
318
318
|
for (let [e, o] of Object.entries(t)) {
|
|
@@ -321,36 +321,36 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
321
321
|
let t = Object.keys(i).join(", ") || "<none>";
|
|
322
322
|
throw Error(`unknown relation '${e}' on '${n.tableName}'. Registered relations: ${t}.`);
|
|
323
323
|
}
|
|
324
|
-
|
|
324
|
+
Qt(n, e, t), await bn(a, e, t, o === !0 ? {} : o, n, r);
|
|
325
325
|
}
|
|
326
326
|
return a;
|
|
327
|
-
},
|
|
327
|
+
}, bn = async (e, t, n, r, i, a) => {
|
|
328
328
|
switch (n.kind) {
|
|
329
329
|
case "one":
|
|
330
|
-
await
|
|
330
|
+
await xn(e, t, n, r, i, a);
|
|
331
331
|
return;
|
|
332
332
|
case "many":
|
|
333
|
-
await
|
|
333
|
+
await Sn(e, t, n, r, i, a);
|
|
334
334
|
return;
|
|
335
335
|
case "manyToMany":
|
|
336
|
-
await
|
|
336
|
+
await wn(e, t, n, r, i, a);
|
|
337
337
|
return;
|
|
338
338
|
}
|
|
339
|
-
},
|
|
340
|
-
let o = n.target(), s = n.sourceKey ??
|
|
339
|
+
}, xn = async (e, t, n, r, i, a) => {
|
|
340
|
+
let o = n.target(), s = n.sourceKey ?? Tn(i, o.tableName);
|
|
341
341
|
if (s !== void 0) {
|
|
342
|
-
let n =
|
|
342
|
+
let n = En(e, s), i = n.length === 0 ? [] : await Dn(o, "id", n, r, a), c = new Map(i.map((e) => [e.id, e]));
|
|
343
343
|
for (let n of e) {
|
|
344
344
|
let e = n[s];
|
|
345
345
|
n[t] = e == null ? null : c.get(e) ?? null;
|
|
346
346
|
}
|
|
347
|
-
await
|
|
347
|
+
await On(i, r.with, o, a);
|
|
348
348
|
return;
|
|
349
349
|
}
|
|
350
|
-
let c = n.foreignKey ??
|
|
350
|
+
let c = n.foreignKey ?? Jt(o, i.tableName, t), l = n.sourceKey ?? "id", u = En(e, l), d = u.length === 0 ? [] : await Dn(o, c, u, r, a), f = /* @__PURE__ */ new Map();
|
|
351
351
|
for (let e of d) {
|
|
352
352
|
let n = e[c];
|
|
353
|
-
if (f.has(n)) throw new
|
|
353
|
+
if (f.has(n)) throw new _n(vn({
|
|
354
354
|
relationName: t,
|
|
355
355
|
sourceTableName: i.tableName,
|
|
356
356
|
targetTableName: o.tableName,
|
|
@@ -363,9 +363,9 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
363
363
|
let e = n[l];
|
|
364
364
|
n[t] = e == null ? null : f.get(e) ?? null;
|
|
365
365
|
}
|
|
366
|
-
await
|
|
367
|
-
},
|
|
368
|
-
let o = n.target(), s = n.foreignKey ??
|
|
366
|
+
await On(d, r.with, o, a);
|
|
367
|
+
}, Sn = async (e, t, n, r, i, a) => {
|
|
368
|
+
let o = n.target(), s = n.foreignKey ?? Jt(o, i.tableName, t), c = n.sourceKey ?? "id", l = En(e, c), u = Cn(r), d = l.length === 0 ? [] : await Dn(o, s, l, u, a), f = /* @__PURE__ */ new Map();
|
|
369
369
|
for (let e of d) {
|
|
370
370
|
let t = e[s], n = f.get(t);
|
|
371
371
|
n ? n.push(e) : f.set(t, [e]);
|
|
@@ -381,12 +381,12 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
381
381
|
let e = n[c];
|
|
382
382
|
n[t] = f.get(e) ?? [];
|
|
383
383
|
}
|
|
384
|
-
await
|
|
385
|
-
},
|
|
384
|
+
await On(d, r.with, o, a);
|
|
385
|
+
}, Cn = (e) => {
|
|
386
386
|
let { limit: t, offset: n, ...r } = e;
|
|
387
387
|
return r;
|
|
388
|
-
},
|
|
389
|
-
let o = n.target(), s = n.through(), c =
|
|
388
|
+
}, wn = async (e, t, n, r, i, a) => {
|
|
389
|
+
let o = n.target(), s = n.through(), c = En(e, "id");
|
|
390
390
|
if (c.length === 0) {
|
|
391
391
|
for (let n of e) n[t] = [];
|
|
392
392
|
return;
|
|
@@ -407,8 +407,8 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
407
407
|
for (let n of e) n[t] = [];
|
|
408
408
|
return;
|
|
409
409
|
}
|
|
410
|
-
let f = await
|
|
411
|
-
await
|
|
410
|
+
let f = await Dn(o, "id", En(d, n.targetKey), r, a), p = new Map(f.map((e) => [e.id, e]));
|
|
411
|
+
await On(f, r.with, o, a);
|
|
412
412
|
let m = r.junction === void 0 ? void 0 : r.junction === !0 ? Object.keys(s.fields) : r.junction, h = /* @__PURE__ */ new Map();
|
|
413
413
|
for (let e of d) {
|
|
414
414
|
let t = e[n.sourceKey], r = e[n.targetKey], i = p.get(r);
|
|
@@ -420,16 +420,16 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
420
420
|
o ? o.push(a) : h.set(t, [a]);
|
|
421
421
|
}
|
|
422
422
|
for (let n of e) n[t] = h.get(n.id) ?? [];
|
|
423
|
-
},
|
|
423
|
+
}, Tn = (e, t) => {
|
|
424
424
|
for (let [n, r] of Object.entries(e.fields)) if (r.type === "reference" && r.references?.()?.tableName === t) return n;
|
|
425
|
-
},
|
|
425
|
+
}, En = (e, t) => {
|
|
426
426
|
let n = /* @__PURE__ */ new Set();
|
|
427
427
|
for (let r of e) {
|
|
428
428
|
let e = r[t];
|
|
429
429
|
e != null && n.add(e);
|
|
430
430
|
}
|
|
431
431
|
return [...n];
|
|
432
|
-
},
|
|
432
|
+
}, Dn = (e, t, n, r, i) => {
|
|
433
433
|
let a = {
|
|
434
434
|
column: t,
|
|
435
435
|
op: "in",
|
|
@@ -443,63 +443,63 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
443
443
|
skip: r.offset,
|
|
444
444
|
projection: void 0
|
|
445
445
|
});
|
|
446
|
-
},
|
|
447
|
-
t !== void 0 && e.length !== 0 && (await
|
|
446
|
+
}, On = async (e, t, n, r) => {
|
|
447
|
+
t !== void 0 && e.length !== 0 && (await yn(e, t, n, r)).forEach((t, n) => {
|
|
448
448
|
let r = e[n];
|
|
449
449
|
for (let [e, n] of Object.entries(t)) e in r || (r[e] = n);
|
|
450
450
|
});
|
|
451
|
-
},
|
|
451
|
+
}, kn = (e) => e.eager !== void 0 && Object.keys(e.eager).length > 0, An = class extends Error {
|
|
452
452
|
_tag = "TenantNamespaceUnresolved";
|
|
453
453
|
constructor(e) {
|
|
454
454
|
super(e), this.name = "TenantNamespaceUnresolved";
|
|
455
455
|
}
|
|
456
|
-
},
|
|
456
|
+
}, jn = class extends Error {
|
|
457
457
|
_tag = "TenantNamespaceInvalid";
|
|
458
458
|
constructor(e) {
|
|
459
459
|
super(e), this.name = "TenantNamespaceInvalid";
|
|
460
460
|
}
|
|
461
|
-
},
|
|
462
|
-
if (e == null || e === "") throw new
|
|
463
|
-
let t =
|
|
464
|
-
if (t.replace(/_/g, "") === "") throw new
|
|
465
|
-
let n = `${
|
|
466
|
-
if (n.length >
|
|
461
|
+
}, Mn = 63, Nn = "tenant_", Pn = (e) => e.toLowerCase().replace(/[^a-z0-9_]/g, "_"), Fn = (e) => {
|
|
462
|
+
if (e == null || e === "") throw new An("namespace isolation is on but the request has no resolvable tenant (subject.tenantId is null/empty). Refusing to run against a shared/default namespace — this would be a cross-tenant read. Authenticate with a tenant-scoped subject, or disable namespace isolation for this surface.");
|
|
463
|
+
let t = Pn(e);
|
|
464
|
+
if (t.replace(/_/g, "") === "") throw new jn(`tenant id '${e}' has no usable identifier characters after sanitisation — cannot derive a distinct namespace.`);
|
|
465
|
+
let n = `${Nn}${t}`;
|
|
466
|
+
if (n.length > Mn) throw new jn(`namespace '${n}' for tenant '${e}' exceeds the ${Mn}-byte identifier limit. Use a shorter tenant id.`);
|
|
467
467
|
return n;
|
|
468
|
-
},
|
|
469
|
-
if (e === void 0 || t == null || !
|
|
468
|
+
}, In = (e, t) => e === null ? t : `${e}.${t}`, Ln = /* @__PURE__ */ new Set(["timestamp", "date"]), Rn = /^\d{4}-\d{2}-\d{2}([T ]\d{2}:\d{2})?/, zn = (e, t) => {
|
|
469
|
+
if (e === void 0 || t == null || !Ln.has(e) || t instanceof Date) return t;
|
|
470
470
|
if (typeof t == "number" && Number.isFinite(t)) return new Date(t);
|
|
471
|
-
if (typeof t == "string" &&
|
|
471
|
+
if (typeof t == "string" && Rn.test(t)) {
|
|
472
472
|
let e = new Date(t);
|
|
473
473
|
return Number.isNaN(e.getTime()) ? t : e;
|
|
474
474
|
}
|
|
475
475
|
return t;
|
|
476
|
-
},
|
|
476
|
+
}, Bn = (e, t) => e === void 0 || !Ln.has(e) ? t : t.map((t) => zn(e, t)), Vn = (e, t) => {
|
|
477
477
|
let { strings: n, values: r } = e, i = t.unsafe(n[0] ?? "");
|
|
478
478
|
for (let e = 0; e < r.length; e++) i = t`${i}${r[e]}${t.unsafe(n[e + 1] ?? "")}`;
|
|
479
479
|
return t`${i}`;
|
|
480
|
-
},
|
|
481
|
-
if ("not" in e) return t`NOT (${
|
|
482
|
-
if ("and" in e) return e.and.length === 0 ? t`TRUE` : t.and(e.and.map((e) =>
|
|
483
|
-
if ("or" in e) return e.or.length === 0 ? t`FALSE` : t.or(e.or.map((e) =>
|
|
480
|
+
}, M = (e) => e.replace(/[\\%_]/g, (e) => `\\${e}`), N = (e, t, n = null, r) => {
|
|
481
|
+
if ("not" in e) return t`NOT (${N(e.not, t, n, r)})`;
|
|
482
|
+
if ("and" in e) return e.and.length === 0 ? t`TRUE` : t.and(e.and.map((e) => N(e, t, n, r)));
|
|
483
|
+
if ("or" in e) return e.or.length === 0 ? t`FALSE` : t.or(e.or.map((e) => N(e, t, n, r)));
|
|
484
484
|
if (e.op === "subquery-in" || e.op === "subquery-not-in") {
|
|
485
|
-
let r = e, i =
|
|
485
|
+
let r = e, i = P(r.subquery, t, n);
|
|
486
486
|
return r.op === "subquery-in" ? t`${t(r.column)} IN (${i})` : t`${t(r.column)} NOT IN (${i})`;
|
|
487
487
|
}
|
|
488
488
|
if (e.op === "exists" || e.op === "not-exists") {
|
|
489
|
-
let r = e, i =
|
|
489
|
+
let r = e, i = P(r.subquery, t, n);
|
|
490
490
|
return r.op === "exists" ? t`EXISTS (${i})` : t`NOT EXISTS (${i})`;
|
|
491
491
|
}
|
|
492
492
|
let i = e, a = t(i.column), o = i.path, s = o !== void 0 && o.length > 0, c = () => t.onDialectOrElse({
|
|
493
|
-
mysql: () => t.unsafe(
|
|
494
|
-
mssql: () => t.unsafe(
|
|
495
|
-
sqlite: () => t.unsafe(
|
|
496
|
-
orElse: () => t.unsafe(
|
|
493
|
+
mysql: () => t.unsafe(E(i.column, o, "mysql")),
|
|
494
|
+
mssql: () => t.unsafe(E(i.column, o, "mssql")),
|
|
495
|
+
sqlite: () => t.unsafe(E(i.column, o, "sqlite")),
|
|
496
|
+
orElse: () => t.unsafe(E(i.column, o, "postgres"))
|
|
497
497
|
}), l = () => t.onDialectOrElse({
|
|
498
|
-
mysql: () => t.unsafe(
|
|
499
|
-
mssql: () => t.unsafe(
|
|
500
|
-
sqlite: () => t.unsafe(
|
|
501
|
-
orElse: () => t.unsafe(
|
|
502
|
-
}), u = s ? c() : a, d = s ? l() : a, f = (e) => s && e != null ? String(e) : e, p = (e) => s ? Number(e) : e, m = s || r === void 0 ? void 0 :
|
|
498
|
+
mysql: () => t.unsafe(E(i.column, o, "mysql", { numeric: !0 })),
|
|
499
|
+
mssql: () => t.unsafe(E(i.column, o, "mssql", { numeric: !0 })),
|
|
500
|
+
sqlite: () => t.unsafe(E(i.column, o, "sqlite", { numeric: !0 })),
|
|
501
|
+
orElse: () => t.unsafe(E(i.column, o, "postgres", { numeric: !0 }))
|
|
502
|
+
}), u = s ? c() : a, d = s ? l() : a, f = (e) => s && e != null ? String(e) : e, p = (e) => s ? Number(e) : e, m = s || r === void 0 ? void 0 : C(r)?.fields?.[i.column]?.type, h = (e) => zn(m, e);
|
|
503
503
|
switch (i.op) {
|
|
504
504
|
case "eq": return t`${u} = ${f(h(i.value))}`;
|
|
505
505
|
case "neq": return t`${u} <> ${f(h(i.value))}`;
|
|
@@ -516,7 +516,7 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
516
516
|
return e.length === 0 ? t`TRUE` : t`${u} NOT IN ${t.in(s ? e.map((e) => f(e)) : e)}`;
|
|
517
517
|
}
|
|
518
518
|
case "contains": {
|
|
519
|
-
let e = `%${
|
|
519
|
+
let e = `%${M(typeof i.value == "string" ? i.value : String(i.value ?? ""))}%`;
|
|
520
520
|
return t.onDialectOrElse({
|
|
521
521
|
mysql: () => t`LOWER(${u}) LIKE LOWER(${e})`,
|
|
522
522
|
mssql: () => t`LOWER(${u}) LIKE LOWER(${e})`,
|
|
@@ -525,7 +525,7 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
525
525
|
});
|
|
526
526
|
}
|
|
527
527
|
case "startsWith": {
|
|
528
|
-
let e = `${
|
|
528
|
+
let e = `${M(typeof i.value == "string" ? i.value : String(i.value ?? ""))}%`;
|
|
529
529
|
return t.onDialectOrElse({
|
|
530
530
|
mysql: () => t`${u} LIKE ${e}`,
|
|
531
531
|
orElse: () => t`${u} LIKE ${e} ESCAPE '\\'`
|
|
@@ -573,13 +573,13 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
573
573
|
});
|
|
574
574
|
}
|
|
575
575
|
}
|
|
576
|
-
},
|
|
576
|
+
}, Hn = (e, t) => {
|
|
577
577
|
let n = [];
|
|
578
578
|
return e.partitionBy && e.partitionBy.length > 0 && n.push(t`PARTITION BY ${t.csv(e.partitionBy.map((e) => t`${t(e)}`))}`), e.orderBy && e.orderBy.length > 0 && n.push(t`ORDER BY ${t.csv(e.orderBy.map((e) => e.direction === "desc" ? t`${t(e.column)} DESC` : t`${t(e.column)} ASC`))}`), n.length === 0 ? t`` : n.length === 1 ? n[0] : n.reduce((e, n, r) => r === 0 ? n : t`${e} ${n}`);
|
|
579
|
-
},
|
|
579
|
+
}, Un = (e, t) => t.csv(e.map((e) => {
|
|
580
580
|
let n = e.column === void 0 ? t.unsafe("*") : t`${t(e.column)}`;
|
|
581
581
|
if (e.op.startsWith("window-")) {
|
|
582
|
-
let r =
|
|
582
|
+
let r = Hn(e.window ?? {}, t);
|
|
583
583
|
switch (e.op) {
|
|
584
584
|
case "window-row-number": return t`ROW_NUMBER() OVER (${r}) AS ${t(e.alias)}`;
|
|
585
585
|
case "window-rank": return t`RANK() OVER (${r}) AS ${t(e.alias)}`;
|
|
@@ -603,43 +603,43 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
603
603
|
return t`${t(e.column)} AS ${t(e.alias)}`;
|
|
604
604
|
default: throw Error(`compileAggregateProjection: unknown op '${e.op}'`);
|
|
605
605
|
}
|
|
606
|
-
})),
|
|
606
|
+
})), Wn = (e) => `[${e.join(",")}]`, Gn = (e, t) => {
|
|
607
607
|
if (e.queryVector === void 0) return null;
|
|
608
|
-
let n = t(e.column), r =
|
|
608
|
+
let n = t(e.column), r = Wn(e.queryVector), i = e.distance === "cosine" ? "<=>" : e.distance === "l2" ? "<->" : "<#>", a = e.distance === "cosine" ? "VEC_DISTANCE_COSINE" : "VEC_DISTANCE_EUCLIDEAN";
|
|
609
609
|
return t.onDialectOrElse({
|
|
610
610
|
mysql: () => t`${t.unsafe(a)}(${n}, ${r})`,
|
|
611
611
|
mssql: () => t`NULL`,
|
|
612
612
|
sqlite: () => t`NULL`,
|
|
613
613
|
orElse: () => t`${n} ${t.unsafe(i)} ${r}::vector`
|
|
614
614
|
});
|
|
615
|
-
},
|
|
615
|
+
}, Kn = (e, t) => {
|
|
616
616
|
let n = t.unsafe(e.useGeography ? "::geography" : "::geometry");
|
|
617
617
|
return t`ST_Distance(${t(e.column)}${n}, ${e.geom}${n})`;
|
|
618
|
-
},
|
|
619
|
-
let r = n.csv(e.columns.map((e) => n`${n(e)}`)), i = `%${
|
|
618
|
+
}, qn = (e, t) => t`${t(e.column)} <-> ${e.geom}::geometry`, Jn = (e, t) => t`${t(`${e.indexName}_tsv`)}`, Yn = (e, t) => `${t}_${e.indexName}_fts`, Xn = (e, t, n) => {
|
|
619
|
+
let r = n.csv(e.columns.map((e) => n`${n(e)}`)), i = `%${M(e.query)}%`;
|
|
620
620
|
return n.onDialectOrElse({
|
|
621
621
|
mysql: () => n`MATCH(${r}) AGAINST(${e.query} IN NATURAL LANGUAGE MODE)`,
|
|
622
622
|
sqlite: () => {
|
|
623
|
-
let r = n(
|
|
623
|
+
let r = n(Yn(e, t));
|
|
624
624
|
return n`${n("id")} IN (SELECT ${n("row_id")} FROM ${r} WHERE ${r} MATCH ${e.query})`;
|
|
625
625
|
},
|
|
626
626
|
mssql: () => n.or(e.columns.map((e) => n`LOWER(${n(e)}) LIKE LOWER(${i}) ESCAPE '\\'`)),
|
|
627
|
-
orElse: () => n`${
|
|
627
|
+
orElse: () => n`${Jn(e, n)} @@ plainto_tsquery(${e.config ?? "english"}, ${e.query})`
|
|
628
628
|
});
|
|
629
|
-
},
|
|
630
|
-
let r = `%${
|
|
629
|
+
}, Zn = (e, t, n) => {
|
|
630
|
+
let r = `%${M(e.query)}%`;
|
|
631
631
|
return n.onDialectOrElse({
|
|
632
632
|
mysql: () => n`MATCH(${n.csv(e.columns.map((e) => n`${n(e)}`))}) AGAINST(${e.query} IN NATURAL LANGUAGE MODE)`,
|
|
633
633
|
sqlite: () => {
|
|
634
|
-
let r = n(
|
|
634
|
+
let r = n(Yn(e, t));
|
|
635
635
|
return n`COALESCE((SELECT -bm25(${r}) FROM ${r} WHERE ${r} MATCH ${e.query} AND ${r}.${n("row_id")} = ${n("id")}), 0)`;
|
|
636
636
|
},
|
|
637
637
|
mssql: () => e.columns.map((e) => n`(CASE WHEN LOWER(${n(e)}) LIKE LOWER(${r}) ESCAPE '\\' THEN 1 ELSE 0 END)`).reduce((e, t, r) => r === 0 ? t : n`${e} + ${t}`),
|
|
638
|
-
orElse: () => n`ts_rank(${
|
|
638
|
+
orElse: () => n`ts_rank(${Jn(e, n)}, plainto_tsquery(${e.config ?? "english"}, ${e.query}))`
|
|
639
639
|
});
|
|
640
|
-
},
|
|
640
|
+
}, P = (e, t, n = null) => {
|
|
641
641
|
if (e.setOp && e.setOp.queries.length >= 2) {
|
|
642
|
-
let r = e.setOp.kind === "union" ? "UNION" : e.setOp.kind === "union-all" ? "UNION ALL" : e.setOp.kind === "intersect" ? "INTERSECT" : "EXCEPT", i = e.setOp.queries.map((e) => t`(${
|
|
642
|
+
let r = e.setOp.kind === "union" ? "UNION" : e.setOp.kind === "union-all" ? "UNION ALL" : e.setOp.kind === "intersect" ? "INTERSECT" : "EXCEPT", i = e.setOp.queries.map((e) => t`(${P(e, t, n)})`).reduce((e, n, i) => i === 0 ? n : t`${e} ${t.unsafe(r)} ${n}`), a = [];
|
|
643
643
|
if (e.order.length > 0 && a.push(t` ORDER BY ${t.csv(e.order.map((e) => e.direction === "desc" ? t`${t(e.column)} DESC` : t`${t(e.column)} ASC`))}`), e.take !== void 0) {
|
|
644
644
|
if (!Number.isInteger(e.take) || e.take < 0) throw Error(`compileSelect: invalid take ${e.take}`);
|
|
645
645
|
a.push(t` LIMIT ${t.unsafe(String(e.take))}`);
|
|
@@ -650,7 +650,7 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
650
650
|
}
|
|
651
651
|
return t`${i}${a.reduce((e, n) => t`${e}${n}`, t``)}`;
|
|
652
652
|
}
|
|
653
|
-
let r = e.annClause === void 0 ? null :
|
|
653
|
+
let r = e.annClause === void 0 ? null : Gn(e.annClause, t);
|
|
654
654
|
e.spatialClause !== void 0 && t.onDialectOrElse({
|
|
655
655
|
mysql: () => {
|
|
656
656
|
throw Error("@voltro/plugin-postgis: spatial distance / KNN ordering is postgres-only");
|
|
@@ -663,57 +663,57 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
663
663
|
},
|
|
664
664
|
orElse: () => t``
|
|
665
665
|
});
|
|
666
|
-
let i = e.spatialClause?.projectAs === void 0 ? null :
|
|
666
|
+
let i = e.spatialClause?.projectAs === void 0 ? null : Kn(e.spatialClause, t), a = e.aggregations && e.aggregations.length > 0 ? Un(e.aggregations, t) : e.joinedProjection && e.joinedProjection.length > 0 ? t.csv(e.joinedProjection.map((e) => t`${t(e.source)} AS ${t(e.outputKey)}`)) : e.projection && e.projection.length > 0 ? t.csv(e.projection.map((e) => t`${t(e)}`)) : t`*`, o = (e.aggregations && e.aggregations.length > 0) === !0, s = r !== null && !o ? t`${a}, ${r} AS ${t("distance")}` : a, c = e.fullTextSearch, l = c?.rank !== void 0 && !o ? Zn(c, e.table, t) : null, u = l !== null && c?.rank !== void 0 ? t`${s}, ${l} AS ${t(c.rank.alias)}` : s, d = i !== null && !o && e.spatialClause?.projectAs !== void 0 ? t`${u}, ${i} AS ${t(e.spatialClause.projectAs)}` : u, f = e.distinctOn && e.distinctOn.length > 0 ? t.onDialectOrElse({
|
|
667
667
|
orElse: () => t`DISTINCT ON (${t.csv(e.distinctOn.map((e) => t`${t(e)}`))}) `,
|
|
668
668
|
mysql: () => t`DISTINCT `,
|
|
669
669
|
mssql: () => t`DISTINCT `,
|
|
670
670
|
sqlite: () => t`DISTINCT `
|
|
671
|
-
}) : e.distinct ? t`DISTINCT ` : t``, p = e.alias === void 0 ? t`${t(
|
|
671
|
+
}) : e.distinct ? t`DISTINCT ` : t``, p = e.alias === void 0 ? t`${t(In(n, e.table))}` : t`${t(In(n, e.table))} AS ${t(e.alias)}`, m = (e.joins ?? []).map((e) => {
|
|
672
672
|
let r = e.kind === "inner" ? "INNER" : "LEFT";
|
|
673
|
-
return t` ${t.unsafe(r)} JOIN ${t(
|
|
674
|
-
}), h = m.length > 0 ? m.reduce((e, n) => t`${e}${n}`, p) : p, g = c === void 0 ? null :
|
|
675
|
-
r !== null && b.push(t`${r} ASC`), e.spatialClause?.order !== void 0 && b.push(e.spatialClause.order === "desc" ? t`${
|
|
673
|
+
return t` ${t.unsafe(r)} JOIN ${t(In(n, e.table))} AS ${t(e.alias)} ON ${N(e.on, t, n)}`;
|
|
674
|
+
}), h = m.length > 0 ? m.reduce((e, n) => t`${e}${n}`, p) : p, g = c === void 0 ? null : Xn(c, e.table, t), _ = [e.predicate ? N(e.predicate, t, n, e.table) : null, g].filter((e) => e !== null), v = _.length > 0 ? t` WHERE ${t.and(_)}` : t``, y = e.groupBy && e.groupBy.length > 0 ? t` GROUP BY ${t.csv(e.groupBy.map((e) => t`${t(e)}`))}` : t``, ee = e.having ? t` HAVING ${N(e.having, t, n, e.table)}` : t``, te = e.skip !== void 0, b = [];
|
|
675
|
+
r !== null && b.push(t`${r} ASC`), e.spatialClause?.order !== void 0 && b.push(e.spatialClause.order === "desc" ? t`${qn(e.spatialClause, t)} DESC` : t`${qn(e.spatialClause, t)} ASC`), l !== null && c?.rank?.order === !0 && b.push(t`${l} DESC`);
|
|
676
676
|
for (let n of e.order) b.push(n.direction === "desc" ? t`${t(n.column)} DESC` : t`${t(n.column)} ASC`);
|
|
677
|
-
let ne = b.length > 0 ? t` ORDER BY ${t.csv(b)}` :
|
|
677
|
+
let ne = b.length > 0 ? t` ORDER BY ${t.csv(b)}` : te ? t.onDialectOrElse({
|
|
678
678
|
mssql: () => t` ORDER BY (SELECT NULL)`,
|
|
679
679
|
orElse: () => t``
|
|
680
680
|
}) : t``, x = (e) => {
|
|
681
681
|
if (!Number.isFinite(e) || !Number.isInteger(e) || e < 0) throw Error(`compileSelect: expected non-negative integer take/skip, got ${e}`);
|
|
682
682
|
return t.unsafe(String(e));
|
|
683
|
-
}, re = (e.ctes ?? []).map((e) => t`${t(e.name)} AS (${
|
|
683
|
+
}, re = (e.ctes ?? []).map((e) => t`${t(e.name)} AS (${P(e.descriptor, t, n)})`), S = (e.ctes ?? []).some((e) => e.recursive === !0), ie = re.length > 0 ? t`WITH ${t.unsafe(S ? "RECURSIVE " : "")}${t.csv(re)} ` : t``;
|
|
684
684
|
return t.onDialectOrElse({
|
|
685
685
|
mssql: () => {
|
|
686
|
-
let n = e.take !== void 0 && !
|
|
687
|
-
return t`${
|
|
686
|
+
let n = e.take !== void 0 && !te ? t`TOP ${x(e.take)} ` : t``, r = te ? t` OFFSET ${x(e.skip)} ROWS FETCH NEXT ${x(e.take ?? 2 ** 53 - 1)} ROWS ONLY` : t``;
|
|
687
|
+
return t`${ie}SELECT ${n}${f}${d} FROM ${h}${v}${y}${ee}${ne}${r}`;
|
|
688
688
|
},
|
|
689
689
|
orElse: () => {
|
|
690
|
-
let n = e.take === void 0 ? t`` : t` LIMIT ${x(e.take)}`, r =
|
|
691
|
-
return t`${
|
|
690
|
+
let n = e.take === void 0 ? t`` : t` LIMIT ${x(e.take)}`, r = te ? t` OFFSET ${x(e.skip)}` : t``;
|
|
691
|
+
return t`${ie}SELECT ${f}${d} FROM ${h}${v}${y}${ee}${ne}${n}${r}`;
|
|
692
692
|
}
|
|
693
693
|
});
|
|
694
|
-
},
|
|
694
|
+
}, Qn = (e, t, n) => {
|
|
695
695
|
if (e.eager === void 0) return null;
|
|
696
|
-
let r =
|
|
696
|
+
let r = er(e.table, e.eager, e.sourceTable);
|
|
697
697
|
if (r === null) return null;
|
|
698
|
-
let i =
|
|
698
|
+
let i = sr(n, e, r, or(t, n));
|
|
699
699
|
return i === null ? null : {
|
|
700
700
|
fragment: i,
|
|
701
|
-
decode:
|
|
701
|
+
decode: ur(r, n)
|
|
702
702
|
};
|
|
703
|
-
},
|
|
703
|
+
}, F = (e) => e.relation.kind === "one" && e.fkSide === "target", $n = (e) => ({
|
|
704
704
|
...e,
|
|
705
705
|
branch: {
|
|
706
706
|
...e.branch,
|
|
707
707
|
limit: 2
|
|
708
708
|
}
|
|
709
|
-
}),
|
|
710
|
-
let r = n ?? pe(e), i =
|
|
709
|
+
}), er = (e, t, n) => {
|
|
710
|
+
let r = n ?? pe(e), i = rn(e);
|
|
711
711
|
if (i === void 0) return null;
|
|
712
712
|
let a = [];
|
|
713
713
|
for (let [e, n] of Object.entries(t)) {
|
|
714
714
|
let t = i[e];
|
|
715
715
|
if (t === void 0) return null;
|
|
716
|
-
let o =
|
|
716
|
+
let o = tr(e, t, r, n === !0 ? {} : n);
|
|
717
717
|
if (o === null) return null;
|
|
718
718
|
a.push(o);
|
|
719
719
|
}
|
|
@@ -721,30 +721,30 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
721
721
|
table: r,
|
|
722
722
|
children: a
|
|
723
723
|
};
|
|
724
|
-
},
|
|
724
|
+
}, tr = (e, t, n, r) => {
|
|
725
725
|
let i = t.target(), a = (t.kind === "manyToMany" ? void 0 : t.sourceKey) ?? "id", o, s;
|
|
726
726
|
if (t.kind === "manyToMany") o = t.targetKey, s = "target";
|
|
727
727
|
else if (t.kind === "one") {
|
|
728
|
-
let r = t.sourceKey ??
|
|
728
|
+
let r = t.sourceKey ?? ar(n, i.tableName);
|
|
729
729
|
if (r !== void 0) o = r, s = "source";
|
|
730
730
|
else try {
|
|
731
|
-
o = t.foreignKey ??
|
|
731
|
+
o = t.foreignKey ?? Jt(i, n.tableName, e), s = "target";
|
|
732
732
|
} catch {
|
|
733
733
|
return null;
|
|
734
734
|
}
|
|
735
735
|
} else try {
|
|
736
|
-
o = t.foreignKey ??
|
|
736
|
+
o = t.foreignKey ?? Jt(i, n.tableName, e), s = "target";
|
|
737
737
|
} catch {
|
|
738
738
|
return null;
|
|
739
739
|
}
|
|
740
740
|
let c = r.with === void 0 ? [] : (() => {
|
|
741
|
-
let e =
|
|
741
|
+
let e = rn(i.tableName);
|
|
742
742
|
if (e === void 0 && Object.keys(r.with).length > 0) return null;
|
|
743
743
|
let t = [];
|
|
744
744
|
for (let [n, a] of Object.entries(r.with)) {
|
|
745
745
|
let r = e?.[n];
|
|
746
746
|
if (r === void 0) return null;
|
|
747
|
-
let o =
|
|
747
|
+
let o = tr(n, r, i, a === !0 ? {} : a);
|
|
748
748
|
if (o === null) return null;
|
|
749
749
|
t.push(o);
|
|
750
750
|
}
|
|
@@ -760,9 +760,9 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
760
760
|
fkSide: s,
|
|
761
761
|
branch: r,
|
|
762
762
|
children: c,
|
|
763
|
-
junction:
|
|
763
|
+
junction: nr(t, r)
|
|
764
764
|
};
|
|
765
|
-
},
|
|
765
|
+
}, nr = (e, t) => {
|
|
766
766
|
if (e.kind !== "manyToMany" || t.junction === void 0) return;
|
|
767
767
|
let n = e.through(), r = t.junction === !0 ? Object.keys(n.fields) : t.junction, i = r.filter((e) => e in n.fields);
|
|
768
768
|
return {
|
|
@@ -774,35 +774,35 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
774
774
|
return t !== void 0 && (t.type === "timestamp" || t.type === "date");
|
|
775
775
|
})
|
|
776
776
|
};
|
|
777
|
-
},
|
|
777
|
+
}, rr = (e) => `__j_${e}`, ir = "__j", ar = (e, t) => {
|
|
778
778
|
for (let [n, r] of Object.entries(e.fields)) if (r.type === "reference" && r.references?.()?.tableName === t) return n;
|
|
779
|
-
},
|
|
779
|
+
}, or = (e, t) => {
|
|
780
780
|
let n = 0;
|
|
781
781
|
return {
|
|
782
782
|
sql: e,
|
|
783
783
|
dialect: t,
|
|
784
784
|
nextAlias: () => `__a${n++}`
|
|
785
785
|
};
|
|
786
|
-
},
|
|
786
|
+
}, sr = (e, t, n, r) => {
|
|
787
787
|
switch (e) {
|
|
788
|
-
case "postgres": return
|
|
788
|
+
case "postgres": return pr(t, n, r);
|
|
789
789
|
case "sqlite":
|
|
790
|
-
case "turso": return
|
|
790
|
+
case "turso": return xr(t, n, r);
|
|
791
791
|
case "mysql":
|
|
792
|
-
case "mariadb": return
|
|
793
|
-
case "mssql": return
|
|
792
|
+
case "mariadb": return jr(t, n, r);
|
|
793
|
+
case "mssql": return Rr(t, n, r);
|
|
794
794
|
}
|
|
795
|
-
},
|
|
796
|
-
let n =
|
|
795
|
+
}, cr = (e, t) => t === "mssql" && !lr.test(e) ? /* @__PURE__ */ new Date(`${e}Z`) : new Date(e), lr = /(?:Z|[+-]\d{2}:?\d{2})$/, ur = (e, t) => {
|
|
796
|
+
let n = dr(e.table, e.children, t);
|
|
797
797
|
return (e) => e.map((e) => {
|
|
798
798
|
let t = e.__row, r = typeof t == "string" ? JSON.parse(t) : t;
|
|
799
799
|
return n(r);
|
|
800
800
|
});
|
|
801
|
-
},
|
|
801
|
+
}, dr = (e, t, n) => {
|
|
802
802
|
let r = [];
|
|
803
803
|
for (let [t, n] of Object.entries(e.fields)) (n.type === "timestamp" || n.type === "date") && r.push(t);
|
|
804
804
|
let i = t.map((e) => {
|
|
805
|
-
let t =
|
|
805
|
+
let t = dr(e.target, e.children, n), r = e.relation.kind === "one", i = F(e), a = i ? vn({
|
|
806
806
|
relationName: e.relationName,
|
|
807
807
|
sourceTableName: e.source.tableName,
|
|
808
808
|
targetTableName: e.target.tableName,
|
|
@@ -815,14 +815,14 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
815
815
|
isSingle: r,
|
|
816
816
|
fromOverFetch: i,
|
|
817
817
|
cardinalityMessage: a,
|
|
818
|
-
junction:
|
|
818
|
+
junction: fr(e.junction, n)
|
|
819
819
|
};
|
|
820
820
|
});
|
|
821
821
|
return (e) => {
|
|
822
822
|
let t = { ...e };
|
|
823
823
|
for (let e of r) {
|
|
824
824
|
let r = t[e];
|
|
825
|
-
typeof r == "string" && (t[e] =
|
|
825
|
+
typeof r == "string" && (t[e] = cr(r, n));
|
|
826
826
|
}
|
|
827
827
|
for (let e of i) {
|
|
828
828
|
let n = t[e.name];
|
|
@@ -832,7 +832,7 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
832
832
|
}
|
|
833
833
|
if (e.fromOverFetch) {
|
|
834
834
|
let r = n;
|
|
835
|
-
if (r.length > 1) throw new
|
|
835
|
+
if (r.length > 1) throw new _n(e.cardinalityMessage);
|
|
836
836
|
t[e.name] = r.length === 0 ? null : e.decode(r[0]);
|
|
837
837
|
continue;
|
|
838
838
|
}
|
|
@@ -844,204 +844,204 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
844
844
|
}
|
|
845
845
|
return t;
|
|
846
846
|
};
|
|
847
|
-
},
|
|
847
|
+
}, fr = (e, t) => {
|
|
848
848
|
if (e === void 0) return;
|
|
849
849
|
let n = new Set(e.dateColumns), r = e.requested;
|
|
850
850
|
return (e) => {
|
|
851
851
|
let i = e._junction ?? {}, a = {};
|
|
852
852
|
for (let e of r) {
|
|
853
853
|
let r = i[e];
|
|
854
|
-
a[e] = n.has(e) && typeof r == "string" ?
|
|
854
|
+
a[e] = n.has(e) && typeof r == "string" ? cr(r, t) : r;
|
|
855
855
|
}
|
|
856
856
|
return {
|
|
857
857
|
...e,
|
|
858
858
|
_junction: a
|
|
859
859
|
};
|
|
860
860
|
};
|
|
861
|
-
},
|
|
862
|
-
let r = n.sql, i = n.nextAlias(), a = r(t.table.tableName), o = r(i), s =
|
|
863
|
-
return s === null ? null : r`SELECT ${s} AS "__row" FROM ${a} AS ${o}${e.predicate ? r` WHERE ${
|
|
864
|
-
},
|
|
865
|
-
let i = n.sql, a = r === void 0 ? i`to_jsonb(${i(e)}.*)` : i`(to_jsonb(${i(e)}.*) - ${
|
|
861
|
+
}, pr = (e, t, n) => {
|
|
862
|
+
let r = n.sql, i = n.nextAlias(), a = r(t.table.tableName), o = r(i), s = mr(i, t.children, n);
|
|
863
|
+
return s === null ? null : r`SELECT ${s} AS "__row" FROM ${a} AS ${o}${e.predicate ? r` WHERE ${V(e.predicate, i, r)}` : r``}${e.order.length > 0 ? r` ORDER BY ${r.csv(e.order.map((e) => e.direction === "desc" ? r`${R(i, e.column, r)} DESC` : r`${R(i, e.column, r)} ASC`))}` : r``}${e.take === void 0 ? r`` : r` LIMIT ${B(e.take, r)}`}${e.skip === void 0 ? r`` : r` OFFSET ${B(e.skip, r)}`}`;
|
|
864
|
+
}, mr = (e, t, n, r) => {
|
|
865
|
+
let i = n.sql, a = r === void 0 ? i`to_jsonb(${i(e)}.*)` : i`(to_jsonb(${i(e)}.*) - ${z(ir, i)}::text)`;
|
|
866
866
|
if (t.length === 0 && r === void 0) return a;
|
|
867
867
|
let o = [];
|
|
868
|
-
r !== void 0 && o.push(i`${
|
|
868
|
+
r !== void 0 && o.push(i`${z("_junction", i)}, ${R(e, ir, i)}`);
|
|
869
869
|
for (let r of t) {
|
|
870
|
-
let t =
|
|
870
|
+
let t = hr(r, e, n);
|
|
871
871
|
if (t === null) return null;
|
|
872
|
-
o.push(i`${
|
|
872
|
+
o.push(i`${z(r.relationName, i)}, ${t}`);
|
|
873
873
|
}
|
|
874
874
|
return i`${a} || jsonb_build_object(${i.csv(o)})`;
|
|
875
|
-
},
|
|
875
|
+
}, hr = (e, t, n) => {
|
|
876
876
|
switch (e.relation.kind) {
|
|
877
|
-
case "one": return
|
|
878
|
-
case "many": return
|
|
879
|
-
case "manyToMany": return
|
|
877
|
+
case "one": return F(e) ? _r($n(e), t, n) : gr(e, t, n);
|
|
878
|
+
case "many": return _r(e, t, n);
|
|
879
|
+
case "manyToMany": return vr(e, t, n);
|
|
880
880
|
}
|
|
881
|
-
},
|
|
882
|
-
let r = n.sql, i = n.nextAlias(), a =
|
|
881
|
+
}, gr = (e, t, n) => {
|
|
882
|
+
let r = n.sql, i = n.nextAlias(), a = mr(i, e.children, n);
|
|
883
883
|
if (a === null) return null;
|
|
884
|
-
let o = e.fkSide === "source" ? r`${
|
|
884
|
+
let o = e.fkSide === "source" ? r`${R(i, "id", r)} = ${R(t, e.foreignKey, r)}` : r`${R(i, e.foreignKey, r)} = ${R(t, e.sourceKey, r)}`, s = e.branch.where === void 0 ? r`` : r` AND ${V(e.branch.where, i, r)}`, c = I(i, e.branch.orderBy, r);
|
|
885
885
|
return r`(SELECT ${a} FROM ${r(e.target.tableName)} AS ${r(i)} WHERE ${o}${s}${c} LIMIT 1)`;
|
|
886
|
-
},
|
|
887
|
-
let r = n.sql, i = n.nextAlias(), a =
|
|
886
|
+
}, _r = (e, t, n) => {
|
|
887
|
+
let r = n.sql, i = n.nextAlias(), a = mr(i, e.children, n);
|
|
888
888
|
if (a === null) return null;
|
|
889
|
-
let o = r`${
|
|
889
|
+
let o = r`${R(void 0, e.foreignKey, r)} = ${R(t, e.sourceKey, r)}`, s = e.branch.where === void 0 ? r`` : r` AND ${N(e.branch.where, r)}`, c = br(e.branch.orderBy, r), l = e.branch.limit === void 0 ? r`` : r` LIMIT ${B(e.branch.limit, r)}`, u = e.branch.offset === void 0 ? r`` : r` OFFSET ${B(e.branch.offset, r)}`;
|
|
890
890
|
return r`COALESCE((SELECT jsonb_agg(${a}) FROM (SELECT * FROM ${r(e.target.tableName)} WHERE ${o}${s}${c}${l}${u}) AS ${r(i)}), '[]'::jsonb)`;
|
|
891
|
-
},
|
|
892
|
-
let r = n.sql, i = e.relation, a = i.through(), o = n.nextAlias(), s = n.nextAlias(), c =
|
|
891
|
+
}, vr = (e, t, n) => {
|
|
892
|
+
let r = n.sql, i = e.relation, a = i.through(), o = n.nextAlias(), s = n.nextAlias(), c = mr(o, e.children, n, e.junction);
|
|
893
893
|
if (c === null) return null;
|
|
894
|
-
let l = e.branch.where === void 0 ? r`` : r` AND ${
|
|
895
|
-
return r`COALESCE((SELECT jsonb_agg(${c}) FROM (SELECT ${r(o)}.*${m} FROM ${r(a.tableName)} AS ${r(s)} INNER JOIN ${r(e.target.tableName)} AS ${r(o)} ON ${
|
|
896
|
-
},
|
|
897
|
-
let r = n.sql, i = n.nextAlias(), a =
|
|
894
|
+
let l = e.branch.where === void 0 ? r`` : r` AND ${N(e.branch.where, r)}`, u = H(e, s, r), d = I(o, e.branch.orderBy, r), f = e.branch.limit === void 0 ? r`` : r` LIMIT ${B(e.branch.limit, r)}`, p = e.branch.offset === void 0 ? r`` : r` OFFSET ${B(e.branch.offset, r)}`, m = e.junction === void 0 ? r`` : r`, ${yr(e.junction, s, r)} AS ${r(ir)}`;
|
|
895
|
+
return r`COALESCE((SELECT jsonb_agg(${c}) FROM (SELECT ${r(o)}.*${m} FROM ${r(a.tableName)} AS ${r(s)} INNER JOIN ${r(e.target.tableName)} AS ${r(o)} ON ${R(o, "id", r)} = ${R(s, i.targetKey, r)} WHERE ${R(s, i.sourceKey, r)} = ${R(t, "id", r)}${u}${l}${d}${f}${p}) AS ${r(o)}), '[]'::jsonb)`;
|
|
896
|
+
}, yr = (e, t, n) => e.present.length === 0 ? n`jsonb_build_object()` : n`jsonb_build_object(${n.csv(e.present.map((e) => n`${z(e, n)}, ${R(t, e, n)}`))})`, I = (e, t, n) => t === void 0 || t.length === 0 ? n`` : n` ORDER BY ${n.csv(t.map((t) => t.direction === "desc" ? n`${R(e, t.column, n)} DESC` : n`${R(e, t.column, n)} ASC`))}`, br = (e, t) => e === void 0 || e.length === 0 ? t`` : t` ORDER BY ${t.csv(e.map((e) => e.direction === "desc" ? t`${t(e.column)} DESC` : t`${t(e.column)} ASC`))}`, xr = (e, t, n) => {
|
|
897
|
+
let r = n.sql, i = n.nextAlias(), a = Sr(i, t.table, t.children, n);
|
|
898
898
|
if (a === null) return null;
|
|
899
|
-
let o = e.predicate ? r` WHERE ${
|
|
899
|
+
let o = e.predicate ? r` WHERE ${V(e.predicate, i, r)}` : r``, s = e.order.length > 0 ? r` ORDER BY ${r.csv(e.order.map((e) => e.direction === "desc" ? r`${R(i, e.column, r)} DESC` : r`${R(i, e.column, r)} ASC`))}` : r``, c = e.take === void 0 ? r`` : r` LIMIT ${B(e.take, r)}`, l = e.skip === void 0 ? r`` : r` OFFSET ${B(e.skip, r)}`;
|
|
900
900
|
return r`SELECT ${a} AS "__row" FROM ${r(t.table.tableName)} AS ${r(i)}${o}${s}${c}${l}`;
|
|
901
|
-
},
|
|
901
|
+
}, Sr = (e, t, n, r, i) => {
|
|
902
902
|
let a = r.sql, o = [];
|
|
903
|
-
for (let n of Object.keys(t.fields)) o.push(a`${
|
|
903
|
+
for (let n of Object.keys(t.fields)) o.push(a`${z(n, a)}, ${R(e, n, a)}`);
|
|
904
904
|
if (i !== void 0) {
|
|
905
|
-
let e =
|
|
906
|
-
o.push(a`${
|
|
905
|
+
let e = Cr(i.projection, i.source, a);
|
|
906
|
+
o.push(a`${z("_junction", a)}, json_object(${e})`);
|
|
907
907
|
}
|
|
908
908
|
for (let t of n) {
|
|
909
|
-
let n =
|
|
909
|
+
let n = Dr(t, e, r);
|
|
910
910
|
if (n === null) return null;
|
|
911
|
-
o.push(a`${
|
|
911
|
+
o.push(a`${z(t.relationName, a)}, ${n}`);
|
|
912
912
|
}
|
|
913
913
|
return a`json_object(${a.csv(o)})`;
|
|
914
|
-
},
|
|
914
|
+
}, Cr = (e, t, n) => e.present.length === 0 ? n`` : n.csv(e.present.map((e) => n`${z(e, n)}, ${R(t.alias, t.physical(e), n)}`)), wr = (e, t, n) => e.present.length === 0 ? n`` : n`, ${n.csv(e.present.map((e) => n`${R(t, e, n)} AS ${n(rr(e))}`))}`, Tr = (e) => ({
|
|
915
915
|
alias: e,
|
|
916
|
-
physical:
|
|
917
|
-
}),
|
|
916
|
+
physical: rr
|
|
917
|
+
}), Er = (e) => ({
|
|
918
918
|
alias: e,
|
|
919
919
|
physical: (e) => e
|
|
920
|
-
}),
|
|
920
|
+
}), Dr = (e, t, n) => {
|
|
921
921
|
switch (e.relation.kind) {
|
|
922
|
-
case "one": return
|
|
923
|
-
case "many": return
|
|
924
|
-
case "manyToMany": return
|
|
922
|
+
case "one": return F(e) ? kr($n(e), t, n) : Or(e, t, n);
|
|
923
|
+
case "many": return kr(e, t, n);
|
|
924
|
+
case "manyToMany": return Ar(e, t, n);
|
|
925
925
|
}
|
|
926
|
-
},
|
|
927
|
-
let r = n.sql, i = n.nextAlias(), a =
|
|
926
|
+
}, Or = (e, t, n) => {
|
|
927
|
+
let r = n.sql, i = n.nextAlias(), a = Sr(i, e.target, e.children, n);
|
|
928
928
|
if (a === null) return null;
|
|
929
|
-
let o = e.fkSide === "source" ? r`${
|
|
929
|
+
let o = e.fkSide === "source" ? r`${R(i, "id", r)} = ${R(t, e.foreignKey, r)}` : r`${R(i, e.foreignKey, r)} = ${R(t, e.sourceKey, r)}`;
|
|
930
930
|
return r`(SELECT ${a} FROM ${r(e.target.tableName)} AS ${r(i)} WHERE ${o} LIMIT 1)`;
|
|
931
|
-
},
|
|
932
|
-
let r = n.sql, i = n.nextAlias(), a =
|
|
931
|
+
}, kr = (e, t, n) => {
|
|
932
|
+
let r = n.sql, i = n.nextAlias(), a = Sr(i, e.target, e.children, n);
|
|
933
933
|
if (a === null) return null;
|
|
934
|
-
let o = r`${
|
|
934
|
+
let o = r`${R(void 0, e.foreignKey, r)} = ${R(t, e.sourceKey, r)}`, s = e.branch.where === void 0 ? r`` : r` AND ${N(U(e.branch.where), r)}`, c = br(e.branch.orderBy, r), l = e.branch.limit === void 0 ? r`` : r` LIMIT ${B(e.branch.limit, r)}`, u = e.branch.offset === void 0 ? r`` : r` OFFSET ${B(e.branch.offset, r)}`;
|
|
935
935
|
return r`COALESCE((SELECT json_group_array(${a}) FROM (SELECT * FROM ${r(e.target.tableName)} WHERE ${o}${s}${c}${l}${u}) AS ${r(i)}), json('[]'))`;
|
|
936
|
-
},
|
|
937
|
-
let r = n.sql, i = e.relation, a = i.through(), o = n.nextAlias(), s = n.nextAlias(), c =
|
|
936
|
+
}, Ar = (e, t, n) => {
|
|
937
|
+
let r = n.sql, i = e.relation, a = i.through(), o = n.nextAlias(), s = n.nextAlias(), c = Sr(o, e.target, e.children, n, e.junction === void 0 ? void 0 : {
|
|
938
938
|
projection: e.junction,
|
|
939
|
-
source:
|
|
939
|
+
source: Tr(o)
|
|
940
940
|
});
|
|
941
941
|
if (c === null) return null;
|
|
942
|
-
let l = e.branch.where === void 0 ? r`` : r` AND ${
|
|
943
|
-
return r`COALESCE((SELECT json_group_array(${c}) FROM (SELECT ${r(o)}.*${m} FROM ${r(a.tableName)} AS ${r(s)} INNER JOIN ${r(e.target.tableName)} AS ${r(o)} ON ${
|
|
944
|
-
},
|
|
945
|
-
let r = n.sql, i = n.nextAlias(), a =
|
|
942
|
+
let l = e.branch.where === void 0 ? r`` : r` AND ${N(U(e.branch.where), r)}`, u = H(e, s, r, !0), d = I(o, e.branch.orderBy, r), f = e.branch.limit === void 0 ? r`` : r` LIMIT ${B(e.branch.limit, r)}`, p = e.branch.offset === void 0 ? r`` : r` OFFSET ${B(e.branch.offset, r)}`, m = e.junction === void 0 ? r`` : wr(e.junction, s, r);
|
|
943
|
+
return r`COALESCE((SELECT json_group_array(${c}) FROM (SELECT ${r(o)}.*${m} FROM ${r(a.tableName)} AS ${r(s)} INNER JOIN ${r(e.target.tableName)} AS ${r(o)} ON ${R(o, "id", r)} = ${R(s, i.targetKey, r)} WHERE ${R(s, i.sourceKey, r)} = ${R(t, "id", r)}${u}${l}${d}${f}${p}) AS ${r(o)}), json('[]'))`;
|
|
944
|
+
}, jr = (e, t, n) => {
|
|
945
|
+
let r = n.sql, i = n.nextAlias(), a = L(i, t.table, t.children, n);
|
|
946
946
|
if (a === null) return null;
|
|
947
|
-
let o = e.predicate ? r` WHERE ${
|
|
947
|
+
let o = e.predicate ? r` WHERE ${V(e.predicate, i, r)}` : r``, s = e.order.length > 0 ? r` ORDER BY ${r.csv(e.order.map((e) => e.direction === "desc" ? r`${R(i, e.column, r)} DESC` : r`${R(i, e.column, r)} ASC`))}` : r``, c = e.take === void 0 ? r`` : r` LIMIT ${B(e.take, r)}`, l = e.skip === void 0 ? r`` : r` OFFSET ${B(e.skip, r)}`;
|
|
948
948
|
return r`SELECT ${a} AS \`__row\` FROM ${r(t.table.tableName)} AS ${r(i)}${o}${s}${c}${l}`;
|
|
949
|
-
},
|
|
949
|
+
}, L = (e, t, n, r, i) => {
|
|
950
950
|
let a = r.sql, o = [];
|
|
951
|
-
for (let n of Object.keys(t.fields)) o.push(a`${
|
|
951
|
+
for (let n of Object.keys(t.fields)) o.push(a`${z(n, a)}, ${R(e, n, a)}`);
|
|
952
952
|
if (i !== void 0) {
|
|
953
|
-
let e =
|
|
954
|
-
o.push(a`${
|
|
953
|
+
let e = Cr(i.projection, i.source, a);
|
|
954
|
+
o.push(a`${z("_junction", a)}, JSON_OBJECT(${e})`);
|
|
955
955
|
}
|
|
956
956
|
for (let t of n) {
|
|
957
|
-
let n =
|
|
957
|
+
let n = Mr(t, e, r);
|
|
958
958
|
if (n === null) return null;
|
|
959
|
-
o.push(a`${
|
|
959
|
+
o.push(a`${z(t.relationName, a)}, ${n}`);
|
|
960
960
|
}
|
|
961
961
|
return a`JSON_OBJECT(${a.csv(o)})`;
|
|
962
|
-
},
|
|
962
|
+
}, Mr = (e, t, n) => {
|
|
963
963
|
switch (e.relation.kind) {
|
|
964
964
|
case "one":
|
|
965
|
-
if (
|
|
966
|
-
let r =
|
|
967
|
-
return n.dialect === "mariadb" ?
|
|
965
|
+
if (F(e)) {
|
|
966
|
+
let r = $n(e);
|
|
967
|
+
return n.dialect === "mariadb" ? Ir(r, t, n) : Pr(r, t, n);
|
|
968
968
|
}
|
|
969
|
-
return
|
|
970
|
-
case "many": return n.dialect === "mariadb" ?
|
|
971
|
-
case "manyToMany": return n.dialect === "mariadb" ?
|
|
969
|
+
return Nr(e, t, n);
|
|
970
|
+
case "many": return n.dialect === "mariadb" ? Ir(e, t, n) : Pr(e, t, n);
|
|
971
|
+
case "manyToMany": return n.dialect === "mariadb" ? Lr(e, t, n) : Fr(e, t, n);
|
|
972
972
|
}
|
|
973
|
-
},
|
|
974
|
-
let r = n.sql, i = n.nextAlias(), a =
|
|
973
|
+
}, Nr = (e, t, n) => {
|
|
974
|
+
let r = n.sql, i = n.nextAlias(), a = L(i, e.target, e.children, n);
|
|
975
975
|
if (a === null) return null;
|
|
976
|
-
let o = e.fkSide === "source" ? r`${
|
|
976
|
+
let o = e.fkSide === "source" ? r`${R(i, "id", r)} = ${R(t, e.foreignKey, r)}` : r`${R(i, e.foreignKey, r)} = ${R(t, e.sourceKey, r)}`;
|
|
977
977
|
return r`(SELECT ${a} FROM ${r(e.target.tableName)} AS ${r(i)} WHERE ${o} LIMIT 1)`;
|
|
978
|
-
},
|
|
979
|
-
let r = n.sql, i = n.nextAlias(), a =
|
|
978
|
+
}, Pr = (e, t, n) => {
|
|
979
|
+
let r = n.sql, i = n.nextAlias(), a = L(i, e.target, e.children, n);
|
|
980
980
|
if (a === null) return null;
|
|
981
|
-
let o = r`${
|
|
981
|
+
let o = r`${R(void 0, e.foreignKey, r)} = ${R(t, e.sourceKey, r)}`, s = e.branch.where === void 0 ? r`` : r` AND ${N(U(e.branch.where), r)}`, c = br(e.branch.orderBy, r), l = e.branch.limit === void 0 ? r`` : r` LIMIT ${B(e.branch.limit, r)}`, u = e.branch.offset === void 0 ? r`` : r` OFFSET ${B(e.branch.offset, r)}`;
|
|
982
982
|
return r`COALESCE((SELECT JSON_ARRAYAGG(${a}) FROM (SELECT * FROM ${r(e.target.tableName)} WHERE ${o}${s}${c}${l}${u}) AS ${r(i)}), JSON_ARRAY())`;
|
|
983
|
-
},
|
|
984
|
-
let r = n.sql, i = e.relation, a = i.through(), o = n.nextAlias(), s = n.nextAlias(), c =
|
|
983
|
+
}, Fr = (e, t, n) => {
|
|
984
|
+
let r = n.sql, i = e.relation, a = i.through(), o = n.nextAlias(), s = n.nextAlias(), c = L(o, e.target, e.children, n, e.junction === void 0 ? void 0 : {
|
|
985
985
|
projection: e.junction,
|
|
986
|
-
source:
|
|
986
|
+
source: Tr(o)
|
|
987
987
|
});
|
|
988
988
|
if (c === null) return null;
|
|
989
|
-
let l = e.branch.where === void 0 ? r`` : r` AND ${
|
|
990
|
-
return r`COALESCE((SELECT JSON_ARRAYAGG(${c}) FROM (SELECT ${r(o)}.*${m} FROM ${r(a.tableName)} AS ${r(s)} INNER JOIN ${r(e.target.tableName)} AS ${r(o)} ON ${
|
|
991
|
-
},
|
|
992
|
-
let r = n.sql, i = n.nextAlias(), a =
|
|
989
|
+
let l = e.branch.where === void 0 ? r`` : r` AND ${N(U(e.branch.where), r)}`, u = H(e, s, r, !0), d = I(o, e.branch.orderBy, r), f = e.branch.limit === void 0 ? r`` : r` LIMIT ${B(e.branch.limit, r)}`, p = e.branch.offset === void 0 ? r`` : r` OFFSET ${B(e.branch.offset, r)}`, m = e.junction === void 0 ? r`` : wr(e.junction, s, r);
|
|
990
|
+
return r`COALESCE((SELECT JSON_ARRAYAGG(${c}) FROM (SELECT ${r(o)}.*${m} FROM ${r(a.tableName)} AS ${r(s)} INNER JOIN ${r(e.target.tableName)} AS ${r(o)} ON ${R(o, "id", r)} = ${R(s, i.targetKey, r)} WHERE ${R(s, i.sourceKey, r)} = ${R(t, "id", r)}${u}${l}${d}${f}${p}) AS ${r(o)}), JSON_ARRAY())`;
|
|
991
|
+
}, Ir = (e, t, n) => {
|
|
992
|
+
let r = n.sql, i = n.nextAlias(), a = L(i, e.target, e.children, n);
|
|
993
993
|
if (a === null) return null;
|
|
994
|
-
let o = r`${
|
|
995
|
-
if (!(e.branch.limit !== void 0 || e.branch.offset !== void 0)) return r`COALESCE((SELECT JSON_ARRAYAGG(${a}${c.length > 0 ? r` ORDER BY ${r.csv(c.map((e) => e.direction === "desc" ? r`${
|
|
996
|
-
let l = c.length > 0 ? r` ORDER BY ${r.csv(c.map((e) => e.direction === "desc" ? r`${r(e.column)} DESC` : r`${r(e.column)} ASC`))}` : r` ORDER BY ${r("id")}`, u = e.branch.limit, d = e.branch.offset, f = u !== void 0 && d !== void 0 ? r` AND ${
|
|
997
|
-
return r`COALESCE((SELECT JSON_ARRAYAGG(${a} ORDER BY ${
|
|
998
|
-
},
|
|
994
|
+
let o = r`${R(i, e.foreignKey, r)} = ${R(t, e.sourceKey, r)}`, s = e.branch.where === void 0 ? r`` : r` AND ${N(U(e.branch.where), r)}`, c = e.branch.orderBy ?? [];
|
|
995
|
+
if (!(e.branch.limit !== void 0 || e.branch.offset !== void 0)) return r`COALESCE((SELECT JSON_ARRAYAGG(${a}${c.length > 0 ? r` ORDER BY ${r.csv(c.map((e) => e.direction === "desc" ? r`${R(i, e.column, r)} DESC` : r`${R(i, e.column, r)} ASC`))}` : r``}) FROM ${r(e.target.tableName)} AS ${r(i)} WHERE ${o}${s}), JSON_ARRAY())`;
|
|
996
|
+
let l = c.length > 0 ? r` ORDER BY ${r.csv(c.map((e) => e.direction === "desc" ? r`${r(e.column)} DESC` : r`${r(e.column)} ASC`))}` : r` ORDER BY ${r("id")}`, u = e.branch.limit, d = e.branch.offset, f = u !== void 0 && d !== void 0 ? r` AND ${R(i, "rn", r)} > ${B(d, r)} AND ${R(i, "rn", r)} <= ${B(d + u, r)}` : u === void 0 ? r` AND ${R(i, "rn", r)} > ${B(d, r)}` : r` AND ${R(i, "rn", r)} <= ${B(u, r)}`;
|
|
997
|
+
return r`COALESCE((SELECT JSON_ARRAYAGG(${a} ORDER BY ${R(i, "rn", r)}) FROM (SELECT *, ROW_NUMBER() OVER (PARTITION BY ${r(e.foreignKey)}${l}) AS rn FROM ${r(e.target.tableName)}) AS ${r(i)} WHERE ${o}${s}${f}), JSON_ARRAY())`;
|
|
998
|
+
}, Lr = (e, t, n) => {
|
|
999
999
|
let r = n.sql, i = e.relation, a = i.through(), o = n.nextAlias(), s = n.nextAlias(), c = (t) => e.junction === void 0 ? void 0 : {
|
|
1000
1000
|
projection: e.junction,
|
|
1001
1001
|
source: t
|
|
1002
|
-
}, l = r`${
|
|
1002
|
+
}, l = r`${R(s, i.sourceKey, r)} = ${R(t, "id", r)}`, u = r`${R(o, "id", r)} = ${R(s, i.targetKey, r)}`, d = e.branch.where === void 0 ? r`` : r` AND ${N(U(e.branch.where), r)}`, f = H(e, s, r, !0), p = e.branch.orderBy ?? [];
|
|
1003
1003
|
if (!(e.branch.limit !== void 0 || e.branch.offset !== void 0)) {
|
|
1004
|
-
let t =
|
|
1005
|
-
return t === null ? null : r`COALESCE((SELECT JSON_ARRAYAGG(${t}${p.length > 0 ? r` ORDER BY ${r.csv(p.map((e) => e.direction === "desc" ? r`${
|
|
1006
|
-
}
|
|
1007
|
-
let m = p.length > 0 ? r` ORDER BY ${r.csv(p.map((e) => e.direction === "desc" ? r`${
|
|
1008
|
-
if (
|
|
1009
|
-
let
|
|
1010
|
-
return r`COALESCE((SELECT JSON_ARRAYAGG(${
|
|
1011
|
-
},
|
|
1012
|
-
let r = n.sql, i = n.nextAlias(), a =
|
|
1004
|
+
let t = L(o, e.target, e.children, n, c(Er(s)));
|
|
1005
|
+
return t === null ? null : r`COALESCE((SELECT JSON_ARRAYAGG(${t}${p.length > 0 ? r` ORDER BY ${r.csv(p.map((e) => e.direction === "desc" ? r`${R(o, e.column, r)} DESC` : r`${R(o, e.column, r)} ASC`))}` : r``}) FROM ${r(a.tableName)} AS ${r(s)} INNER JOIN ${r(e.target.tableName)} AS ${r(o)} ON ${u} WHERE ${l}${f}${d}), JSON_ARRAY())`;
|
|
1006
|
+
}
|
|
1007
|
+
let m = p.length > 0 ? r` ORDER BY ${r.csv(p.map((e) => e.direction === "desc" ? r`${R(o, e.column, r)} DESC` : r`${R(o, e.column, r)} ASC`))}` : r` ORDER BY ${R(o, "id", r)}`, h = e.branch.limit, g = e.branch.offset, _ = h !== void 0 && g !== void 0 ? r` AND ${R(o, "rn", r)} > ${B(g, r)} AND ${R(o, "rn", r)} <= ${B(g + h, r)}` : h === void 0 ? r` AND ${R(o, "rn", r)} > ${B(g, r)}` : r` AND ${R(o, "rn", r)} <= ${B(h, r)}`, v = e.branch.onJunction === void 0 ? r`` : r` WHERE ${V(U(e.branch.onJunction), s, r)}`, y = L(o, e.target, e.children, n, c(Tr(o)));
|
|
1008
|
+
if (y === null) return null;
|
|
1009
|
+
let ee = e.junction === void 0 ? r`` : wr(e.junction, s, r);
|
|
1010
|
+
return r`COALESCE((SELECT JSON_ARRAYAGG(${y} ORDER BY ${R(o, "rn", r)}) FROM (SELECT ${r(o)}.*${ee}, ${R(s, i.sourceKey, r)} AS ${r(`__src_${i.sourceKey}`)}, ROW_NUMBER() OVER (PARTITION BY ${R(s, i.sourceKey, r)}${m}) AS rn FROM ${r(a.tableName)} AS ${r(s)} INNER JOIN ${r(e.target.tableName)} AS ${r(o)} ON ${u}${v}) AS ${r(o)} WHERE ${R(o, `__src_${i.sourceKey}`, r)} = ${R(t, "id", r)}${d}${_}), JSON_ARRAY())`;
|
|
1011
|
+
}, Rr = (e, t, n) => {
|
|
1012
|
+
let r = n.sql, i = n.nextAlias(), a = zr(i, t.table, t.children, n);
|
|
1013
1013
|
if (a === null) return null;
|
|
1014
|
-
let o = e.predicate ? r` WHERE ${
|
|
1014
|
+
let o = e.predicate ? r` WHERE ${V(e.predicate, i, r)}` : r``, s = e.order.length > 0 ? r` ORDER BY ${r.csv(e.order.map((e) => e.direction === "desc" ? r`${R(i, e.column, r)} DESC` : r`${R(i, e.column, r)} ASC`))}` : r``, c = r``, l = r``;
|
|
1015
1015
|
if (e.skip !== void 0) {
|
|
1016
1016
|
let t = e.order.length > 0 ? s : r` ORDER BY (SELECT NULL)`;
|
|
1017
|
-
l = e.take === void 0 ? r`${t} OFFSET ${
|
|
1018
|
-
} else e.take !== void 0 && (c = r`TOP ${
|
|
1017
|
+
l = e.take === void 0 ? r`${t} OFFSET ${B(e.skip, r)} ROWS` : r`${t} OFFSET ${B(e.skip, r)} ROWS FETCH NEXT ${B(e.take, r)} ROWS ONLY`;
|
|
1018
|
+
} else e.take !== void 0 && (c = r`TOP ${B(e.take, r)} `);
|
|
1019
1019
|
let u = e.skip === void 0 ? s : r``;
|
|
1020
1020
|
return r`SELECT ${c}(SELECT ${a} FOR JSON PATH, INCLUDE_NULL_VALUES, WITHOUT_ARRAY_WRAPPER) AS ${r("__row")} FROM ${r(t.table.tableName)} AS ${r(i)}${o}${u}${l}`;
|
|
1021
|
-
},
|
|
1021
|
+
}, zr = (e, t, n, r, i) => {
|
|
1022
1022
|
let a = r.sql, o = [];
|
|
1023
|
-
for (let n of Object.keys(t.fields)) o.push(a`${
|
|
1024
|
-
if (i !== void 0) for (let e of i.projection.present) o.push(a`${
|
|
1023
|
+
for (let n of Object.keys(t.fields)) o.push(a`${R(e, n, a)} AS ${a(n)}`);
|
|
1024
|
+
if (i !== void 0) for (let e of i.projection.present) o.push(a`${R(i.source.alias, i.source.physical(e), a)} AS ${Br(`_junction.${e}`, a)}`);
|
|
1025
1025
|
for (let t of n) {
|
|
1026
|
-
let n =
|
|
1026
|
+
let n = Vr(t, e, r);
|
|
1027
1027
|
if (n === null) return null;
|
|
1028
1028
|
o.push(n);
|
|
1029
1029
|
}
|
|
1030
1030
|
return a.csv(o);
|
|
1031
|
-
},
|
|
1031
|
+
}, Br = (e, t) => t.unsafe(`[${e.replace(/]/g, "]]")}]`), Vr = (e, t, n) => {
|
|
1032
1032
|
switch (e.relation.kind) {
|
|
1033
|
-
case "one": return
|
|
1034
|
-
case "many": return
|
|
1035
|
-
case "manyToMany": return
|
|
1033
|
+
case "one": return F(e) ? Wr($n(e), t, n) : Hr(e, t, n);
|
|
1034
|
+
case "many": return Wr(e, t, n);
|
|
1035
|
+
case "manyToMany": return Gr(e, t, n);
|
|
1036
1036
|
}
|
|
1037
|
-
},
|
|
1038
|
-
let r = n.sql, i = n.nextAlias(), a =
|
|
1037
|
+
}, Hr = (e, t, n) => {
|
|
1038
|
+
let r = n.sql, i = n.nextAlias(), a = zr(i, e.target, e.children, n);
|
|
1039
1039
|
if (a === null) return null;
|
|
1040
|
-
let o = e.fkSide === "source" ? r`${
|
|
1040
|
+
let o = e.fkSide === "source" ? r`${R(i, "id", r)} = ${R(t, e.foreignKey, r)}` : r`${R(i, e.foreignKey, r)} = ${R(t, e.sourceKey, r)}`;
|
|
1041
1041
|
return r`JSON_QUERY((SELECT TOP 1 ${a} FROM ${r(e.target.tableName)} AS ${r(i)} WHERE ${o} FOR JSON PATH, INCLUDE_NULL_VALUES, WITHOUT_ARRAY_WRAPPER)) AS ${r(e.relationName)}`;
|
|
1042
|
-
},
|
|
1042
|
+
}, Ur = (e, t, n) => {
|
|
1043
1043
|
if (e.offset !== void 0) {
|
|
1044
|
-
let r = e.orderBy && e.orderBy.length > 0 ? t : n` ORDER BY (SELECT NULL)`, i = e.limit === void 0 ? n`${r} OFFSET ${
|
|
1044
|
+
let r = e.orderBy && e.orderBy.length > 0 ? t : n` ORDER BY (SELECT NULL)`, i = e.limit === void 0 ? n`${r} OFFSET ${B(e.offset, n)} ROWS` : n`${r} OFFSET ${B(e.offset, n)} ROWS FETCH NEXT ${B(e.limit, n)} ROWS ONLY`;
|
|
1045
1045
|
return {
|
|
1046
1046
|
top: n``,
|
|
1047
1047
|
pagination: i,
|
|
@@ -1049,33 +1049,33 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1049
1049
|
};
|
|
1050
1050
|
}
|
|
1051
1051
|
return {
|
|
1052
|
-
top: e.limit === void 0 ? n`` : n`TOP ${
|
|
1052
|
+
top: e.limit === void 0 ? n`` : n`TOP ${B(e.limit, n)} `,
|
|
1053
1053
|
pagination: n``,
|
|
1054
1054
|
finalOrder: t
|
|
1055
1055
|
};
|
|
1056
|
-
},
|
|
1057
|
-
let r = n.sql, i = n.nextAlias(), a =
|
|
1056
|
+
}, Wr = (e, t, n) => {
|
|
1057
|
+
let r = n.sql, i = n.nextAlias(), a = zr(i, e.target, e.children, n);
|
|
1058
1058
|
if (a === null) return null;
|
|
1059
|
-
let o = e.branch.where === void 0 ? r`` : r` AND ${
|
|
1060
|
-
return r`ISNULL(JSON_QUERY((SELECT ${c}${a} FROM ${r(e.target.tableName)} AS ${r(i)} WHERE ${
|
|
1061
|
-
},
|
|
1062
|
-
let r = n.sql, i = e.relation, a = i.through(), o = n.nextAlias(), s = n.nextAlias(), c =
|
|
1059
|
+
let o = e.branch.where === void 0 ? r`` : r` AND ${V(e.branch.where, i, r)}`, s = I(i, e.branch.orderBy, r), { top: c, pagination: l, finalOrder: u } = Ur(e.branch, s, r);
|
|
1060
|
+
return r`ISNULL(JSON_QUERY((SELECT ${c}${a} FROM ${r(e.target.tableName)} AS ${r(i)} WHERE ${R(i, e.foreignKey, r)} = ${R(t, e.sourceKey, r)}${o}${u}${l} FOR JSON PATH, INCLUDE_NULL_VALUES)), JSON_QUERY('[]')) AS ${r(e.relationName)}`;
|
|
1061
|
+
}, Gr = (e, t, n) => {
|
|
1062
|
+
let r = n.sql, i = e.relation, a = i.through(), o = n.nextAlias(), s = n.nextAlias(), c = zr(o, e.target, e.children, n, e.junction === void 0 ? void 0 : {
|
|
1063
1063
|
projection: e.junction,
|
|
1064
|
-
source:
|
|
1064
|
+
source: Er(s)
|
|
1065
1065
|
});
|
|
1066
1066
|
if (c === null) return null;
|
|
1067
|
-
let l = e.branch.where === void 0 ? r`` : r` AND ${
|
|
1068
|
-
return r`ISNULL(JSON_QUERY((SELECT ${f}${c} FROM ${r(a.tableName)} AS ${r(s)} INNER JOIN ${r(e.target.tableName)} AS ${r(o)} ON ${
|
|
1069
|
-
},
|
|
1067
|
+
let l = e.branch.where === void 0 ? r`` : r` AND ${V(e.branch.where, o, r)}`, u = H(e, s, r), d = I(o, e.branch.orderBy, r), { top: f, pagination: p, finalOrder: m } = Ur(e.branch, d, r);
|
|
1068
|
+
return r`ISNULL(JSON_QUERY((SELECT ${f}${c} FROM ${r(a.tableName)} AS ${r(s)} INNER JOIN ${r(e.target.tableName)} AS ${r(o)} ON ${R(o, "id", r)} = ${R(s, i.targetKey, r)} WHERE ${R(s, i.sourceKey, r)} = ${R(t, "id", r)}${u}${l}${m}${p} FOR JSON PATH, INCLUDE_NULL_VALUES)), JSON_QUERY('[]')) AS ${r(e.relationName)}`;
|
|
1069
|
+
}, R = (e, t, n) => e === void 0 ? n`${n(t)}` : n`${n(e)}.${n(t)}`, z = (e, t) => t.unsafe(`'${e.replace(/'/g, "''")}'`), B = (e, t) => {
|
|
1070
1070
|
if (!Number.isFinite(e) || !Number.isInteger(e) || e < 0) throw Error(`literalInt: expected non-negative integer, got ${e}`);
|
|
1071
1071
|
return t.unsafe(String(e));
|
|
1072
|
-
},
|
|
1072
|
+
}, V = (e, t, n) => N(Kr(e, t), n), H = (e, t, n, r = !1) => {
|
|
1073
1073
|
let i = e.branch.onJunction;
|
|
1074
|
-
return i === void 0 ? n`` : n` AND ${
|
|
1075
|
-
},
|
|
1076
|
-
if ("not" in e) return { not:
|
|
1077
|
-
if ("and" in e) return { and: e.and.map((e) =>
|
|
1078
|
-
if ("or" in e) return { or: e.or.map((e) =>
|
|
1074
|
+
return i === void 0 ? n`` : n` AND ${V(r ? U(i) : i, t, n)}`;
|
|
1075
|
+
}, Kr = (e, t) => {
|
|
1076
|
+
if ("not" in e) return { not: Kr(e.not, t) };
|
|
1077
|
+
if ("and" in e) return { and: e.and.map((e) => Kr(e, t)) };
|
|
1078
|
+
if ("or" in e) return { or: e.or.map((e) => Kr(e, t)) };
|
|
1079
1079
|
if (e.op === "subquery-in" || e.op === "subquery-not-in") {
|
|
1080
1080
|
let n = e;
|
|
1081
1081
|
return {
|
|
@@ -1089,99 +1089,99 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1089
1089
|
...n,
|
|
1090
1090
|
column: `${t}.${n.column}`
|
|
1091
1091
|
};
|
|
1092
|
-
},
|
|
1093
|
-
if ("not" in e) return { not:
|
|
1094
|
-
if ("and" in e) return { and: e.and.map((e) =>
|
|
1095
|
-
if ("or" in e) return { or: e.or.map((e) =>
|
|
1092
|
+
}, U = (e) => {
|
|
1093
|
+
if ("not" in e) return { not: U(e.not) };
|
|
1094
|
+
if ("and" in e) return { and: e.and.map((e) => U(e)) };
|
|
1095
|
+
if ("or" in e) return { or: e.or.map((e) => U(e)) };
|
|
1096
1096
|
if (e.op === "subquery-in" || e.op === "subquery-not-in" || e.op === "exists" || e.op === "not-exists") return e;
|
|
1097
1097
|
let t = e;
|
|
1098
1098
|
return {
|
|
1099
1099
|
...t,
|
|
1100
|
-
value:
|
|
1100
|
+
value: qr(t.value)
|
|
1101
1101
|
};
|
|
1102
|
-
},
|
|
1103
|
-
e.actors !== void 0 && (
|
|
1104
|
-
},
|
|
1102
|
+
}, qr = (e) => e == null ? e : e instanceof Date ? e.toISOString() : typeof e == "boolean" ? +!!e : Array.isArray(e) ? e.map((e) => qr(e)) : e, Jr = Symbol.for("@voltro/database/coreTablesRegistry"), Yr = globalThis, Xr = Yr[Jr] ?? (Yr[Jr] = {}), Zr = (e) => {
|
|
1103
|
+
e.actors !== void 0 && (Xr.actors = e.actors), e.tenants !== void 0 && (Xr.tenants = e.tenants);
|
|
1104
|
+
}, Qr = (e, t) => () => {
|
|
1105
1105
|
let n = e();
|
|
1106
1106
|
if (n === void 0) throw Error(`core '${t}' table not registered; expected the framework CLI or your migrate step to call registerCoreTables({ ${t}: () => ${t}Table }) before the database handle is constructed`);
|
|
1107
1107
|
return n();
|
|
1108
|
-
},
|
|
1109
|
-
id:
|
|
1110
|
-
kind:
|
|
1108
|
+
}, $r = () => Qr(() => Xr.actors, "actors"), ei = () => Qr(() => Xr.tenants, "tenants"), ti = v("actors", {
|
|
1109
|
+
id: S(),
|
|
1110
|
+
kind: D().oneOf([
|
|
1111
1111
|
"user",
|
|
1112
1112
|
"serviceAccount",
|
|
1113
1113
|
"apiKey",
|
|
1114
1114
|
"system"
|
|
1115
1115
|
]),
|
|
1116
|
-
displayName:
|
|
1117
|
-
createdAt:
|
|
1118
|
-
}),
|
|
1116
|
+
displayName: D().nullable(),
|
|
1117
|
+
createdAt: i().default("now")
|
|
1118
|
+
}), ni = (e, t) => ({
|
|
1119
1119
|
column: e,
|
|
1120
1120
|
op: "eq",
|
|
1121
1121
|
value: t
|
|
1122
|
-
}),
|
|
1122
|
+
}), ri = (e, t) => ({
|
|
1123
1123
|
column: e,
|
|
1124
1124
|
op: "neq",
|
|
1125
1125
|
value: t
|
|
1126
|
-
}),
|
|
1126
|
+
}), ii = (e, t) => ({
|
|
1127
1127
|
column: e,
|
|
1128
1128
|
op: "gt",
|
|
1129
1129
|
value: t
|
|
1130
|
-
}),
|
|
1130
|
+
}), ai = (e, t) => ({
|
|
1131
1131
|
column: e,
|
|
1132
1132
|
op: "gte",
|
|
1133
1133
|
value: t
|
|
1134
|
-
}),
|
|
1134
|
+
}), oi = (e, t) => ({
|
|
1135
1135
|
column: e,
|
|
1136
1136
|
op: "lt",
|
|
1137
1137
|
value: t
|
|
1138
|
-
}),
|
|
1138
|
+
}), si = (e, t) => ({
|
|
1139
1139
|
column: e,
|
|
1140
1140
|
op: "lte",
|
|
1141
1141
|
value: t
|
|
1142
|
-
}),
|
|
1142
|
+
}), ci = (e, t) => ({
|
|
1143
1143
|
column: e,
|
|
1144
1144
|
op: "in",
|
|
1145
1145
|
value: t
|
|
1146
|
-
}),
|
|
1146
|
+
}), li = (e, t) => ({
|
|
1147
1147
|
column: e,
|
|
1148
1148
|
op: "notIn",
|
|
1149
1149
|
value: t
|
|
1150
|
-
}),
|
|
1150
|
+
}), ui = (e, t) => ({
|
|
1151
1151
|
column: e,
|
|
1152
1152
|
op: "contains",
|
|
1153
1153
|
value: t
|
|
1154
|
-
}),
|
|
1154
|
+
}), di = (e, t) => ({
|
|
1155
1155
|
column: e,
|
|
1156
1156
|
op: "startsWith",
|
|
1157
1157
|
value: t
|
|
1158
|
-
}),
|
|
1158
|
+
}), fi = (e, t) => ({
|
|
1159
1159
|
column: e,
|
|
1160
1160
|
op: "arrayContains",
|
|
1161
1161
|
value: t
|
|
1162
|
-
}),
|
|
1162
|
+
}), pi = (e, t) => ({
|
|
1163
1163
|
column: e,
|
|
1164
1164
|
op: "arrayOverlaps",
|
|
1165
1165
|
value: t
|
|
1166
|
-
}),
|
|
1166
|
+
}), mi = (e, t) => ({
|
|
1167
1167
|
column: e,
|
|
1168
1168
|
op: "arrayHas",
|
|
1169
1169
|
value: t
|
|
1170
|
-
}),
|
|
1170
|
+
}), hi = {
|
|
1171
1171
|
column: "id",
|
|
1172
1172
|
op: "in",
|
|
1173
1173
|
value: []
|
|
1174
|
-
},
|
|
1174
|
+
}, gi = (e) => ({
|
|
1175
1175
|
column: e,
|
|
1176
1176
|
op: "isNull"
|
|
1177
|
-
}),
|
|
1177
|
+
}), _i = (e) => ({
|
|
1178
1178
|
column: e,
|
|
1179
1179
|
op: "isNotNull"
|
|
1180
|
-
}),
|
|
1180
|
+
}), vi = (e, t) => ({
|
|
1181
1181
|
column: e,
|
|
1182
1182
|
op: "spatial",
|
|
1183
1183
|
value: t
|
|
1184
|
-
}),
|
|
1184
|
+
}), yi = (...e) => ({ and: e }), bi = (...e) => ({ or: e }), xi = (e) => ({ not: e }), Si = (e, ...t) => {
|
|
1185
1185
|
if (t.length === 0) throw Error(`jsonField("${e}"): at least one path segment is required`);
|
|
1186
1186
|
let n = (n, r) => ({
|
|
1187
1187
|
column: e,
|
|
@@ -1203,29 +1203,29 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1203
1203
|
isNull: () => n("isNull"),
|
|
1204
1204
|
isNotNull: () => n("isNotNull")
|
|
1205
1205
|
};
|
|
1206
|
-
},
|
|
1206
|
+
}, Ci = (e) => "descriptor" in e ? e.descriptor : e, wi = (e, t) => ({
|
|
1207
1207
|
column: e,
|
|
1208
1208
|
op: "subquery-in",
|
|
1209
|
-
subquery:
|
|
1210
|
-
}),
|
|
1209
|
+
subquery: Ci(t)
|
|
1210
|
+
}), Ti = (e, t) => ({
|
|
1211
1211
|
column: e,
|
|
1212
1212
|
op: "subquery-not-in",
|
|
1213
|
-
subquery:
|
|
1214
|
-
}),
|
|
1213
|
+
subquery: Ci(t)
|
|
1214
|
+
}), Ei = (e) => ({
|
|
1215
1215
|
op: "exists",
|
|
1216
|
-
subquery:
|
|
1217
|
-
}),
|
|
1216
|
+
subquery: Ci(e)
|
|
1217
|
+
}), Di = (e) => ({
|
|
1218
1218
|
op: "not-exists",
|
|
1219
|
-
subquery:
|
|
1220
|
-
}),
|
|
1219
|
+
subquery: Ci(e)
|
|
1220
|
+
}), Oi = (e, t) => e == null || t == null ? null : typeof e == typeof t ? e === t ? 0 : e > t ? 1 : -1 : null, ki = (e, t, n = null) => {
|
|
1221
1221
|
if (!t) return !1;
|
|
1222
|
-
if ("not" in e) return !
|
|
1222
|
+
if ("not" in e) return !ki(e.not, t, n);
|
|
1223
1223
|
if ("and" in e) {
|
|
1224
|
-
for (let r of e.and) if (!
|
|
1224
|
+
for (let r of e.and) if (!ki(r, t, n)) return !1;
|
|
1225
1225
|
return !0;
|
|
1226
1226
|
}
|
|
1227
1227
|
if ("or" in e) {
|
|
1228
|
-
for (let r of e.or) if (
|
|
1228
|
+
for (let r of e.or) if (ki(r, t, n)) return !0;
|
|
1229
1229
|
return !1;
|
|
1230
1230
|
}
|
|
1231
1231
|
if (e.op === "subquery-in" || e.op === "subquery-not-in") {
|
|
@@ -1244,10 +1244,10 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1244
1244
|
switch (r.op) {
|
|
1245
1245
|
case "eq": return i === r.value;
|
|
1246
1246
|
case "neq": return i !== r.value;
|
|
1247
|
-
case "gt": return (
|
|
1248
|
-
case "gte": return (
|
|
1249
|
-
case "lt": return (
|
|
1250
|
-
case "lte": return (
|
|
1247
|
+
case "gt": return (Oi(i, r.value) ?? -1) > 0;
|
|
1248
|
+
case "gte": return (Oi(i, r.value) ?? -1) >= 0;
|
|
1249
|
+
case "lt": return (Oi(i, r.value) ?? 1) < 0;
|
|
1250
|
+
case "lte": return (Oi(i, r.value) ?? 1) <= 0;
|
|
1251
1251
|
case "in": return Array.isArray(r.value) && r.value.includes(i);
|
|
1252
1252
|
case "notIn": return Array.isArray(r.value) && !r.value.includes(i);
|
|
1253
1253
|
case "contains": return typeof i == "string" && typeof r.value == "string" && i.toLowerCase().includes(r.value.toLowerCase());
|
|
@@ -1265,17 +1265,17 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1265
1265
|
case "isNotNull": return i != null;
|
|
1266
1266
|
case "spatial": throw Error("@voltro/plugin-postgis: spatial predicates (ST_DWithin / ST_Contains / ST_Within / ST_Intersects / bbox &&) are not evaluable in-memory — use them in one-shot ctx.store.query reads, not reactive subscriptions.");
|
|
1267
1267
|
}
|
|
1268
|
-
},
|
|
1268
|
+
}, Ai = function* (e) {
|
|
1269
1269
|
if ("not" in e) {
|
|
1270
|
-
yield*
|
|
1270
|
+
yield* Ai(e.not);
|
|
1271
1271
|
return;
|
|
1272
1272
|
}
|
|
1273
1273
|
if ("and" in e) {
|
|
1274
|
-
for (let t of e.and) yield*
|
|
1274
|
+
for (let t of e.and) yield* Ai(t);
|
|
1275
1275
|
return;
|
|
1276
1276
|
}
|
|
1277
1277
|
if ("or" in e) {
|
|
1278
|
-
for (let t of e.or) yield*
|
|
1278
|
+
for (let t of e.or) yield* Ai(t);
|
|
1279
1279
|
return;
|
|
1280
1280
|
}
|
|
1281
1281
|
e.op === "subquery-in" || e.op === "subquery-not-in" ? yield {
|
|
@@ -1285,83 +1285,116 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1285
1285
|
kind: "exists",
|
|
1286
1286
|
descriptor: e.subquery
|
|
1287
1287
|
});
|
|
1288
|
-
},
|
|
1288
|
+
}, ji = function* (e, t = !0) {
|
|
1289
1289
|
if ("not" in e) {
|
|
1290
|
-
yield*
|
|
1290
|
+
yield* ji(e.not, !1);
|
|
1291
1291
|
return;
|
|
1292
1292
|
}
|
|
1293
1293
|
if ("and" in e) {
|
|
1294
|
-
for (let n of e.and) yield*
|
|
1294
|
+
for (let n of e.and) yield* ji(n, t);
|
|
1295
1295
|
return;
|
|
1296
1296
|
}
|
|
1297
1297
|
if ("or" in e) {
|
|
1298
|
-
for (let t of e.or) yield*
|
|
1298
|
+
for (let t of e.or) yield* ji(t, !1);
|
|
1299
1299
|
return;
|
|
1300
1300
|
}
|
|
1301
1301
|
e.op === "subquery-in" || e.op === "subquery-not-in" || e.op === "exists" || e.op === "not-exists" || (yield {
|
|
1302
1302
|
...e,
|
|
1303
1303
|
conjunctive: t
|
|
1304
1304
|
});
|
|
1305
|
-
},
|
|
1306
|
-
|
|
1305
|
+
}, Mi = (e, t, n = {}) => ({
|
|
1306
|
+
table: e,
|
|
1307
|
+
op: "insert",
|
|
1308
|
+
old: null,
|
|
1309
|
+
new: t,
|
|
1310
|
+
...n
|
|
1311
|
+
}), Ni = (e, t, n, r = {}) => ({
|
|
1312
|
+
table: e,
|
|
1313
|
+
op: "update",
|
|
1314
|
+
old: t,
|
|
1315
|
+
new: n,
|
|
1316
|
+
...r
|
|
1317
|
+
}), Pi = (e, t, n = {}) => ({
|
|
1318
|
+
table: e,
|
|
1319
|
+
op: "delete",
|
|
1320
|
+
old: t,
|
|
1321
|
+
new: null,
|
|
1322
|
+
...n
|
|
1323
|
+
}), Fi = (e, t, n = {}) => {
|
|
1324
|
+
let { at: r = "2026-01-01T00:00:00.000Z", column: i = "deletedAt", ...a } = n;
|
|
1325
|
+
return {
|
|
1326
|
+
table: e,
|
|
1327
|
+
op: "update",
|
|
1328
|
+
old: {
|
|
1329
|
+
...t,
|
|
1330
|
+
[i]: null
|
|
1331
|
+
},
|
|
1332
|
+
new: {
|
|
1333
|
+
...t,
|
|
1334
|
+
[i]: r
|
|
1335
|
+
},
|
|
1336
|
+
...a
|
|
1337
|
+
};
|
|
1338
|
+
}, W = new bt(), Ii = (e, t) => W.run(e, t), Li = () => W.getStore(), Ri = (e) => {
|
|
1339
|
+
let t = e ?? W.getStore();
|
|
1307
1340
|
return t === void 0 ? {} : {
|
|
1308
1341
|
...t.traceId === void 0 ? {} : { traceId: t.traceId },
|
|
1309
1342
|
...t.subjectId === void 0 ? {} : { subjectId: t.subjectId },
|
|
1310
1343
|
...t.procedure === void 0 ? {} : { procedure: t.procedure }
|
|
1311
1344
|
};
|
|
1312
|
-
},
|
|
1313
|
-
let t =
|
|
1314
|
-
return t === void 0 ? e(void 0) :
|
|
1315
|
-
},
|
|
1316
|
-
for (let [t, n] of
|
|
1317
|
-
let r = n.filter((t) => e - t.at <
|
|
1318
|
-
|
|
1319
|
-
}
|
|
1320
|
-
},
|
|
1345
|
+
}, zi = (e) => {
|
|
1346
|
+
let t = W.getStore();
|
|
1347
|
+
return t === void 0 ? e(void 0) : W.run(t, () => e(t));
|
|
1348
|
+
}, Bi = 3e4, Vi = 1e4, G = /* @__PURE__ */ new Map(), K = 0, Hi = (e, t, n) => `${e}\u0000${t}\u0000${String(n)}`, Ui = (e) => {
|
|
1349
|
+
for (let [t, n] of G) {
|
|
1350
|
+
let r = n.filter((t) => e - t.at < Bi);
|
|
1351
|
+
K -= n.length - r.length, r.length === 0 ? G.delete(t) : r.length !== n.length && G.set(t, r);
|
|
1352
|
+
}
|
|
1353
|
+
}, Wi = (e, t) => {
|
|
1321
1354
|
if (t.traceId === void 0 && t.subjectId === void 0 && t.procedure === void 0) return;
|
|
1322
1355
|
let n = Date.now();
|
|
1323
|
-
if (
|
|
1324
|
-
let r =
|
|
1325
|
-
r === void 0 ?
|
|
1356
|
+
if (K >= Vi && Ui(n), K >= Vi) return;
|
|
1357
|
+
let r = G.get(e);
|
|
1358
|
+
r === void 0 ? G.set(e, [{
|
|
1326
1359
|
attribution: t,
|
|
1327
1360
|
at: n
|
|
1328
1361
|
}]) : r.push({
|
|
1329
1362
|
attribution: t,
|
|
1330
1363
|
at: n
|
|
1331
|
-
}),
|
|
1332
|
-
},
|
|
1333
|
-
let t =
|
|
1364
|
+
}), K += 1;
|
|
1365
|
+
}, Gi = (e) => {
|
|
1366
|
+
let t = G.get(e);
|
|
1334
1367
|
if (t === void 0 || t.length === 0) return;
|
|
1335
1368
|
let n = t.shift();
|
|
1336
|
-
if (--
|
|
1337
|
-
},
|
|
1338
|
-
let t =
|
|
1369
|
+
if (--K, t.length === 0 && G.delete(e), !(Date.now() - n.at >= Bi)) return n.attribution;
|
|
1370
|
+
}, Ki = (e) => (G.get(e)?.length ?? 0) > 0, q = /* @__PURE__ */ new Map(), J = /* @__PURE__ */ new Map(), qi = /* @__PURE__ */ new Map(), Ji = 250, Yi = (e) => {
|
|
1371
|
+
let t = J.get(e);
|
|
1339
1372
|
if (t === void 0) return;
|
|
1340
|
-
|
|
1341
|
-
let n =
|
|
1342
|
-
n !== void 0 && (clearTimeout(n),
|
|
1373
|
+
J.delete(e);
|
|
1374
|
+
let n = qi.get(e);
|
|
1375
|
+
n !== void 0 && (clearTimeout(n), qi.delete(e));
|
|
1343
1376
|
for (let e of t) e();
|
|
1344
|
-
},
|
|
1345
|
-
|
|
1346
|
-
},
|
|
1347
|
-
let t = (
|
|
1377
|
+
}, Xi = (e) => {
|
|
1378
|
+
q.set(e, (q.get(e) ?? 0) + 1);
|
|
1379
|
+
}, Zi = (e) => {
|
|
1380
|
+
let t = (q.get(e) ?? 0) - 1;
|
|
1348
1381
|
if (t > 0) {
|
|
1349
|
-
|
|
1382
|
+
q.set(e, t);
|
|
1350
1383
|
return;
|
|
1351
1384
|
}
|
|
1352
|
-
|
|
1353
|
-
},
|
|
1354
|
-
let i = n == null ? void 0 :
|
|
1385
|
+
q.delete(e), Yi(e);
|
|
1386
|
+
}, Qi = (e, t, n, r) => {
|
|
1387
|
+
let i = n == null ? void 0 : Hi(e, t, n), a = () => r(i === void 0 ? void 0 : Gi(i));
|
|
1355
1388
|
if (i === void 0) {
|
|
1356
1389
|
a();
|
|
1357
1390
|
return;
|
|
1358
1391
|
}
|
|
1359
|
-
if (
|
|
1392
|
+
if (Ki(i)) {
|
|
1360
1393
|
a();
|
|
1361
1394
|
return;
|
|
1362
1395
|
}
|
|
1363
|
-
let o =
|
|
1364
|
-
if (o === void 0 && (
|
|
1396
|
+
let o = J.get(e);
|
|
1397
|
+
if (o === void 0 && (q.get(e) ?? 0) === 0) {
|
|
1365
1398
|
a();
|
|
1366
1399
|
return;
|
|
1367
1400
|
}
|
|
@@ -1369,38 +1402,38 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1369
1402
|
o.push(a);
|
|
1370
1403
|
return;
|
|
1371
1404
|
}
|
|
1372
|
-
|
|
1373
|
-
let s = setTimeout(() =>
|
|
1374
|
-
typeof s == "object" && typeof s.unref == "function" && s.unref(),
|
|
1375
|
-
},
|
|
1376
|
-
|
|
1377
|
-
for (let e of
|
|
1378
|
-
|
|
1379
|
-
},
|
|
1405
|
+
J.set(e, [a]);
|
|
1406
|
+
let s = setTimeout(() => Yi(e), Ji);
|
|
1407
|
+
typeof s == "object" && typeof s.unref == "function" && s.unref(), qi.set(e, s);
|
|
1408
|
+
}, $i = () => {
|
|
1409
|
+
G.clear(), K = 0, q.clear();
|
|
1410
|
+
for (let e of qi.values()) clearTimeout(e);
|
|
1411
|
+
qi.clear(), J.clear();
|
|
1412
|
+
}, ea = () => K, Y = /* @__PURE__ */ new Map(), ta = (e, t) => {
|
|
1380
1413
|
Y.set(e, {
|
|
1381
1414
|
recorder: t.recorder,
|
|
1382
1415
|
tables: new Set(t.tables),
|
|
1383
1416
|
ownTables: new Set(t.ownTables)
|
|
1384
1417
|
});
|
|
1385
|
-
},
|
|
1418
|
+
}, na = (e) => {
|
|
1386
1419
|
Y.delete(e);
|
|
1387
|
-
},
|
|
1420
|
+
}, ra = () => Y.clear(), ia = (e) => {
|
|
1388
1421
|
if (Y.size === 0) return !1;
|
|
1389
1422
|
for (let t of Y.values()) if (!t.ownTables.has(e) && t.tables.has(e)) return !0;
|
|
1390
1423
|
return !1;
|
|
1391
|
-
},
|
|
1424
|
+
}, aa = async (e, t) => {
|
|
1392
1425
|
if (Y.size !== 0) for (let n of Y.values()) n.ownTables.has(t.table) || n.tables.has(t.table) && await n.recorder(e, t);
|
|
1393
|
-
},
|
|
1426
|
+
}, oa = (e) => {
|
|
1394
1427
|
if (vt.isSuccess(e)) return e.value;
|
|
1395
1428
|
throw mt.squash(e.cause);
|
|
1396
|
-
},
|
|
1397
|
-
table:
|
|
1398
|
-
id:
|
|
1399
|
-
expected:
|
|
1400
|
-
actual:
|
|
1401
|
-
}) {},
|
|
1429
|
+
}, sa = class extends k.TaggedError()("VersionConflict", {
|
|
1430
|
+
table: k.String,
|
|
1431
|
+
id: k.String,
|
|
1432
|
+
expected: k.Number,
|
|
1433
|
+
actual: k.NullOr(k.Number)
|
|
1434
|
+
}) {}, ca = (e) => {
|
|
1402
1435
|
for (let [t, n] of Object.entries(e)) if (n?.definition?.versionColumn === !0) return t;
|
|
1403
|
-
},
|
|
1436
|
+
}, la = (e) => {
|
|
1404
1437
|
let { versionColumn: t, patch: n } = e;
|
|
1405
1438
|
if (t === void 0) return {
|
|
1406
1439
|
nextVersion: void 0,
|
|
@@ -1413,21 +1446,28 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1413
1446
|
expected: i,
|
|
1414
1447
|
patch: a
|
|
1415
1448
|
};
|
|
1416
|
-
},
|
|
1417
|
-
if (e.expected !== void 0 && !(e.current !== null && e.current === e.expected)) return new
|
|
1449
|
+
}, ua = (e) => {
|
|
1450
|
+
if (e.expected !== void 0 && !(e.current !== null && e.current === e.expected)) return new sa({
|
|
1418
1451
|
table: e.table,
|
|
1419
1452
|
id: e.id,
|
|
1420
1453
|
expected: e.expected,
|
|
1421
1454
|
actual: e.current
|
|
1422
1455
|
});
|
|
1423
|
-
},
|
|
1424
|
-
id:
|
|
1425
|
-
fields: { expiresAt:
|
|
1456
|
+
}, da = 1, fa = "voltro/expires", pa = () => _({
|
|
1457
|
+
id: fa,
|
|
1458
|
+
fields: { expiresAt: i().nullable() },
|
|
1426
1459
|
behaviors: { defaultWhere: () => "expiresAt IS NULL OR expiresAt > now()" }
|
|
1427
|
-
}),
|
|
1428
|
-
|
|
1460
|
+
}), ma = "voltro/localFirst", ha = () => _({
|
|
1461
|
+
id: ma,
|
|
1462
|
+
fields: {}
|
|
1463
|
+
}), ga = (e) => e.appliedMixins.some((e) => e.id === ma), _a = (e) => {
|
|
1464
|
+
let t = [];
|
|
1465
|
+
for (let n of Object.values(e)) ga(n) && t.push(n.tableName);
|
|
1466
|
+
return t;
|
|
1467
|
+
}, va = class extends gt.TaggedError("TableStreamError") {}, ya = 1e3, ba = (e, t, n, r) => {
|
|
1468
|
+
let i = O.match(r, {
|
|
1429
1469
|
onNone: () => e.where,
|
|
1430
|
-
onSome: (n) => e.where ?
|
|
1470
|
+
onSome: (n) => e.where ? yi(e.where, ii(t, n)) : ii(t, n)
|
|
1431
1471
|
});
|
|
1432
1472
|
return {
|
|
1433
1473
|
table: e.table,
|
|
@@ -1442,19 +1482,19 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1442
1482
|
...e.includeDeleted === void 0 ? {} : { includeDeleted: e.includeDeleted },
|
|
1443
1483
|
...e.crossTenant === void 0 ? {} : { crossTenant: e.crossTenant }
|
|
1444
1484
|
};
|
|
1445
|
-
},
|
|
1446
|
-
let n = t.pk ?? "id", r = t.chunkSize ??
|
|
1447
|
-
return yt.paginateChunkEffect(
|
|
1485
|
+
}, xa = (e, t) => {
|
|
1486
|
+
let n = t.pk ?? "id", r = t.chunkSize ?? ya;
|
|
1487
|
+
return yt.paginateChunkEffect(O.none(), (i) => {
|
|
1448
1488
|
let a = _t.tryPromise({
|
|
1449
|
-
try: () => e.query(
|
|
1450
|
-
catch: (e) => new
|
|
1489
|
+
try: () => e.query(ba(t, n, r, i)),
|
|
1490
|
+
catch: (e) => new va({
|
|
1451
1491
|
table: t.table,
|
|
1452
1492
|
cause: e
|
|
1453
1493
|
})
|
|
1454
1494
|
});
|
|
1455
|
-
return (t.retry ? a.pipe(_t.retry(t.retry)) : a).pipe(_t.map((e) => [ht.fromIterable(e), e.length === r && e.length > 0 ?
|
|
1495
|
+
return (t.retry ? a.pipe(_t.retry(t.retry)) : a).pipe(_t.map((e) => [ht.fromIterable(e), e.length === r && e.length > 0 ? O.some(O.some(e[e.length - 1][n])) : O.none()]));
|
|
1456
1496
|
});
|
|
1457
|
-
},
|
|
1497
|
+
}, Sa = (e) => {
|
|
1458
1498
|
let t = e.alpha ?? .5;
|
|
1459
1499
|
if (t < 0 || t > 1) throw Error(`hybridSearch: alpha must be in [0, 1], got ${t}`);
|
|
1460
1500
|
return (n) => {
|
|
@@ -1481,17 +1521,17 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1481
1521
|
}
|
|
1482
1522
|
};
|
|
1483
1523
|
};
|
|
1484
|
-
},
|
|
1524
|
+
}, Ca = async (e, t) => {
|
|
1485
1525
|
let n = e.as ?? "embedding", r = t.row[e.from];
|
|
1486
1526
|
if (typeof r != "string" || r.length === 0) return {};
|
|
1487
1527
|
let i = await t.embed(r);
|
|
1488
1528
|
return { [n]: i };
|
|
1489
|
-
},
|
|
1529
|
+
}, wa = (e) => {
|
|
1490
1530
|
if (!Number.isInteger(e.dimensions) || e.dimensions <= 0) throw Error(`vectorEmbedding: dimensions must be a positive integer, got ${String(e.dimensions)}.`);
|
|
1491
|
-
let t = e.as ?? "embedding", n = (t) =>
|
|
1492
|
-
return
|
|
1531
|
+
let t = e.as ?? "embedding", n = (t) => Ca(e, t);
|
|
1532
|
+
return _({
|
|
1493
1533
|
id: "voltro/vectorEmbedding",
|
|
1494
|
-
fields: { [t]:
|
|
1534
|
+
fields: { [t]: me(e.dimensions) },
|
|
1495
1535
|
...e.index === !1 ? {} : { indexes: [{
|
|
1496
1536
|
fields: [t],
|
|
1497
1537
|
kind: "hnsw",
|
|
@@ -1506,19 +1546,19 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1506
1546
|
beforeUpdate: n
|
|
1507
1547
|
}
|
|
1508
1548
|
});
|
|
1509
|
-
},
|
|
1549
|
+
}, Ta = 63, Ea = "br_pr", X = class extends Error {
|
|
1510
1550
|
_tag = "BranchNameInvalid";
|
|
1511
1551
|
constructor(e) {
|
|
1512
1552
|
super(e), this.name = "BranchNameInvalid";
|
|
1513
1553
|
}
|
|
1514
|
-
},
|
|
1554
|
+
}, Da = (e, t) => {
|
|
1515
1555
|
if (!Number.isInteger(t) || t < 0) throw new X(`prNumber must be a non-negative integer, got ${String(t)}`);
|
|
1516
|
-
let n =
|
|
1556
|
+
let n = Pn(e);
|
|
1517
1557
|
if (n.replace(/_/g, "") === "") throw new X(`app slug '${e}' has no usable identifier characters`);
|
|
1518
|
-
let r = `${
|
|
1519
|
-
if (r.length >
|
|
1558
|
+
let r = `${Ea}${t}_${n}`;
|
|
1559
|
+
if (r.length > Ta) throw new X(`branch namespace '${r}' exceeds the ${Ta}-byte identifier limit — use a shorter app slug`);
|
|
1520
1560
|
return r;
|
|
1521
|
-
},
|
|
1561
|
+
}, Oa = (e) => e.startsWith(Ea), ka = {
|
|
1522
1562
|
requested: {
|
|
1523
1563
|
provision: "provisioning",
|
|
1524
1564
|
destroy: "destroying"
|
|
@@ -1537,18 +1577,18 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1537
1577
|
fail: "failed"
|
|
1538
1578
|
},
|
|
1539
1579
|
destroyed: {}
|
|
1540
|
-
},
|
|
1580
|
+
}, Aa = class extends Error {
|
|
1541
1581
|
from;
|
|
1542
1582
|
event;
|
|
1543
1583
|
_tag = "BranchTransitionInvalid";
|
|
1544
1584
|
constructor(e, t) {
|
|
1545
1585
|
super(`invalid branch transition: ${e} --${t}-->`), this.from = e, this.event = t, this.name = "BranchTransitionInvalid";
|
|
1546
1586
|
}
|
|
1547
|
-
},
|
|
1548
|
-
let n =
|
|
1549
|
-
if (n === void 0) throw new
|
|
1587
|
+
}, ja = (e, t) => {
|
|
1588
|
+
let n = ka[e][t];
|
|
1589
|
+
if (n === void 0) throw new Aa(e, t);
|
|
1550
1590
|
return n;
|
|
1551
|
-
},
|
|
1591
|
+
}, Ma = (e, t, n, r) => {
|
|
1552
1592
|
if (n === "copy" && (r === void 0 || r === "")) throw new X("seed 'copy' requires a parentNamespace to snapshot from");
|
|
1553
1593
|
let i = [{
|
|
1554
1594
|
kind: "create-namespace",
|
|
@@ -1569,13 +1609,13 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1569
1609
|
detail: `run boot seeds into ${e}`
|
|
1570
1610
|
});
|
|
1571
1611
|
return i;
|
|
1572
|
-
},
|
|
1573
|
-
if (!
|
|
1612
|
+
}, Na = (e) => {
|
|
1613
|
+
if (!Oa(e)) throw new X(`refusing to plan teardown of '${e}' — not a branch namespace`);
|
|
1574
1614
|
return [{
|
|
1575
1615
|
kind: "drop-namespace",
|
|
1576
1616
|
detail: e
|
|
1577
1617
|
}];
|
|
1578
|
-
},
|
|
1618
|
+
}, Pa = (e) => {
|
|
1579
1619
|
if (e === void 0 || e === "") return !1;
|
|
1580
1620
|
try {
|
|
1581
1621
|
let t = new URL(e).hostname.toLowerCase();
|
|
@@ -1583,27 +1623,27 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1583
1623
|
} catch {
|
|
1584
1624
|
return /\bneon\.(tech|build)\b/i.test(e);
|
|
1585
1625
|
}
|
|
1586
|
-
},
|
|
1626
|
+
}, Fa = (e) => e.prefer === void 0 ? e.seed === "copy" && Pa(e.dbUrl) ? "neon-cow" : "namespace" : e.prefer, Ia = (e, t = {}) => [{
|
|
1587
1627
|
kind: "neon-branch-create",
|
|
1588
1628
|
detail: `${t.parentBranch ?? "main"} → ${e} (copy-on-write)`
|
|
1589
|
-
}],
|
|
1590
|
-
if (!
|
|
1629
|
+
}], La = (e) => {
|
|
1630
|
+
if (!Oa(e)) throw new X(`refusing to plan teardown of '${e}' — not a branch namespace`);
|
|
1591
1631
|
return [{
|
|
1592
1632
|
kind: "neon-branch-delete",
|
|
1593
1633
|
detail: e
|
|
1594
1634
|
}];
|
|
1595
|
-
},
|
|
1635
|
+
}, Ra = (e) => e.mechanism === "neon-cow" ? Ia(e.branchId, e.neonParentBranch === void 0 ? {} : { parentBranch: e.neonParentBranch }) : Ma(e.branchId, e.tableNames, e.seed, e.parentNamespace), za = (e, t) => e === "neon-cow" ? La(t) : Na(t), Ba = (e, t, n) => {
|
|
1596
1636
|
let r = e.filter((e) => e.state !== "destroyed" && e.state !== "destroying"), i = r.filter((e) => n - e.createdAtMs > t.ttlMs).map((e) => e.namespace), a = new Set(i);
|
|
1597
1637
|
return {
|
|
1598
1638
|
evict: i,
|
|
1599
1639
|
rejectNew: r.filter((e) => !a.has(e.namespace)).length >= t.maxBranches
|
|
1600
1640
|
};
|
|
1601
|
-
},
|
|
1602
|
-
let n =
|
|
1641
|
+
}, Va = async (e, t) => {
|
|
1642
|
+
let n = Da(e.appSlug, e.prNumber), r = Fa({
|
|
1603
1643
|
seed: e.seed,
|
|
1604
1644
|
...e.dbUrl === void 0 ? {} : { dbUrl: e.dbUrl },
|
|
1605
1645
|
...e.prefer === void 0 ? {} : { prefer: e.prefer }
|
|
1606
|
-
}), i =
|
|
1646
|
+
}), i = Ra({
|
|
1607
1647
|
mechanism: r,
|
|
1608
1648
|
branchId: n,
|
|
1609
1649
|
tableNames: e.tableNames,
|
|
@@ -1628,10 +1668,10 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1628
1668
|
mechanism: r,
|
|
1629
1669
|
steps: i
|
|
1630
1670
|
};
|
|
1631
|
-
},
|
|
1632
|
-
let r =
|
|
1671
|
+
}, Ha = async (e, t, n) => {
|
|
1672
|
+
let r = za(t, e);
|
|
1633
1673
|
return t === "neon-cow" ? await n.neonBranchDelete(e) : await n.dropNamespace(e), r;
|
|
1634
|
-
},
|
|
1674
|
+
}, Ua = (e, t, n) => Ba(e, t, n), Z = (e) => `"${e.replace(/"/g, "\"\"")}"`, Wa = (e) => {
|
|
1635
1675
|
let t = () => {
|
|
1636
1676
|
throw Error("namespace branch executor: Neon ops require a neon-cow executor (use a Neon connection for copy-on-write branches)");
|
|
1637
1677
|
};
|
|
@@ -1643,18 +1683,18 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1643
1683
|
neonBranchCreate: t,
|
|
1644
1684
|
neonBranchDelete: t
|
|
1645
1685
|
};
|
|
1646
|
-
},
|
|
1686
|
+
}, Ga = class extends Error {
|
|
1647
1687
|
_tag = "TenantResidencyUnresolved";
|
|
1648
1688
|
constructor(e) {
|
|
1649
1689
|
super(e), this.name = "TenantResidencyUnresolved";
|
|
1650
1690
|
}
|
|
1651
|
-
},
|
|
1691
|
+
}, Ka = class extends Error {
|
|
1652
1692
|
region;
|
|
1653
1693
|
_tag = "TenantRegionUnavailable";
|
|
1654
1694
|
constructor(e, t) {
|
|
1655
1695
|
super(t), this.region = e, this.name = "TenantRegionUnavailable";
|
|
1656
1696
|
}
|
|
1657
|
-
},
|
|
1697
|
+
}, qa, Ja = (e) => {
|
|
1658
1698
|
if (e.homes === void 0) throw Error("setResidencyConfig: `homes` is required");
|
|
1659
1699
|
if (e.servableRegions === void 0 || e.servableRegions.length === 0) throw Error("setResidencyConfig: `servableRegions` must be non-empty (which regions this deployment serves)");
|
|
1660
1700
|
let t = /* @__PURE__ */ new Map();
|
|
@@ -1663,55 +1703,55 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1663
1703
|
if (e !== void 0 && e !== n.region) throw Error(`residency: tenant '${n.tenantId}' is mapped to two regions ('${e}' and '${n.region}')`);
|
|
1664
1704
|
t.set(n.tenantId, n.region);
|
|
1665
1705
|
}
|
|
1666
|
-
return
|
|
1667
|
-
},
|
|
1668
|
-
|
|
1669
|
-
},
|
|
1670
|
-
if (e == null || e === "") throw new
|
|
1706
|
+
return qa = e, e;
|
|
1707
|
+
}, Ya = () => qa, Xa = () => {
|
|
1708
|
+
qa = void 0;
|
|
1709
|
+
}, Za = (e, t) => {
|
|
1710
|
+
if (e == null || e === "") throw new Ga("residency is on but the request has no resolvable tenant — refusing to bind a store");
|
|
1671
1711
|
let n = t.homes.find((t) => t.tenantId === e);
|
|
1672
|
-
if (n === void 0) throw new
|
|
1712
|
+
if (n === void 0) throw new Ga(`no residency home is mapped for tenant '${e}' — refusing to fall back to a default store (would be a residency violation)`);
|
|
1673
1713
|
return n;
|
|
1674
|
-
},
|
|
1675
|
-
let n =
|
|
1714
|
+
}, Qa = (e, t) => t.servableRegions.includes(e), $a = (e, t) => {
|
|
1715
|
+
let n = Za(e.tenantId, t), r = Fn(n.tenantId);
|
|
1676
1716
|
return {
|
|
1677
1717
|
region: n.region,
|
|
1678
1718
|
namespace: r,
|
|
1679
1719
|
...n.connectionKey === void 0 ? {} : { connectionKey: n.connectionKey }
|
|
1680
1720
|
};
|
|
1681
|
-
},
|
|
1682
|
-
let r =
|
|
1683
|
-
if (!
|
|
1721
|
+
}, eo = (e, t, n) => {
|
|
1722
|
+
let r = $a(e, t);
|
|
1723
|
+
if (!Qa(r.region, t)) throw new Ka(r.region, `tenant homed in region '${r.region}', which this deployment does not serve — route to the home region`);
|
|
1684
1724
|
let i = n.get(r.region);
|
|
1685
|
-
if (i === void 0) throw new
|
|
1725
|
+
if (i === void 0) throw new Ka(r.region, `no store handle for home region '${r.region}' (declared servable but not wired) — failing closed`);
|
|
1686
1726
|
return {
|
|
1687
1727
|
store: i,
|
|
1688
1728
|
placement: r
|
|
1689
1729
|
};
|
|
1690
|
-
},
|
|
1691
|
-
let { store: i, placement: a } =
|
|
1730
|
+
}, to = async (e, t, n, r) => {
|
|
1731
|
+
let { store: i, placement: a } = eo(e, t, n);
|
|
1692
1732
|
return await r(i, a), a;
|
|
1693
|
-
},
|
|
1733
|
+
}, no = (e) => {
|
|
1694
1734
|
if (typeof e == "string") return e;
|
|
1695
1735
|
if ("jsonPath" in e) {
|
|
1696
1736
|
let { column: t, path: n, numeric: r } = e.jsonPath;
|
|
1697
1737
|
return `(json:${t}->${n.join(".")}${r ? "::num" : ""})`;
|
|
1698
1738
|
}
|
|
1699
1739
|
return `(${e.expr})`;
|
|
1700
|
-
}, Q = (e) => e.map(
|
|
1740
|
+
}, Q = (e) => e.map(no), ro = (e, t) => {
|
|
1701
1741
|
if (e.length !== t.length) return !1;
|
|
1702
|
-
for (let n = 0; n < e.length; n++) if (
|
|
1742
|
+
for (let n = 0; n < e.length; n++) if (no(e[n]) !== no(t[n])) return !1;
|
|
1703
1743
|
return !0;
|
|
1704
|
-
},
|
|
1744
|
+
}, io = (e, t) => {
|
|
1705
1745
|
if (e.length >= t.length) return !1;
|
|
1706
|
-
for (let n = 0; n < e.length; n++) if (
|
|
1746
|
+
for (let n = 0; n < e.length; n++) if (no(e[n]) !== no(t[n])) return !1;
|
|
1707
1747
|
return !0;
|
|
1708
|
-
},
|
|
1748
|
+
}, ao = (e) => {
|
|
1709
1749
|
let t = [], n = e.appliedIndexes, r = e.tableName;
|
|
1710
1750
|
for (let e = 0; e < n.length; e++) {
|
|
1711
1751
|
let i = n[e];
|
|
1712
1752
|
for (let a = e + 1; a < n.length; a++) {
|
|
1713
1753
|
let e = n[a];
|
|
1714
|
-
if (
|
|
1754
|
+
if (ro(i.fields, e.fields)) {
|
|
1715
1755
|
let [n, a] = i.name < e.name ? [i, e] : [e, i];
|
|
1716
1756
|
t.push({
|
|
1717
1757
|
kind: "duplicate-fields",
|
|
@@ -1722,13 +1762,13 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1722
1762
|
});
|
|
1723
1763
|
continue;
|
|
1724
1764
|
}
|
|
1725
|
-
|
|
1765
|
+
io(i.fields, e.fields) ? t.push({
|
|
1726
1766
|
kind: "redundant-prefix",
|
|
1727
1767
|
table: r,
|
|
1728
1768
|
redundant: i,
|
|
1729
1769
|
coveredBy: e,
|
|
1730
1770
|
message: `'${r}' index '${i.name}' on [${Q(i.fields).join(", ")}] is a leading prefix of '${e.name}' on [${Q(e.fields).join(", ")}]. Every B-tree dialect we support (Postgres / MySQL / MariaDB / MSSQL / SQLite) can serve a [${Q(i.fields).join(", ")}] query from '${e.name}' too via the leading-prefix rule, so '${i.name}' adds write cost without read benefit. Drop '${i.name}' — unless you specifically need a smaller index for cache locality on a write-heavy table (rare; profile first).`
|
|
1731
|
-
}) :
|
|
1771
|
+
}) : io(e.fields, i.fields) && t.push({
|
|
1732
1772
|
kind: "redundant-prefix",
|
|
1733
1773
|
table: r,
|
|
1734
1774
|
redundant: e,
|
|
@@ -1738,23 +1778,23 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1738
1778
|
}
|
|
1739
1779
|
}
|
|
1740
1780
|
return t;
|
|
1741
|
-
},
|
|
1781
|
+
}, oo = (e) => {
|
|
1742
1782
|
let t = [];
|
|
1743
|
-
for (let n of e) t.push(...
|
|
1783
|
+
for (let n of e) t.push(...ao(n));
|
|
1744
1784
|
return t;
|
|
1745
|
-
},
|
|
1746
|
-
let n = t.color ?? !0, r = t.indent ?? " ", i = (e) => $(n,
|
|
1785
|
+
}, so = "\x1B[", co = `${so}38;2;245;158;11m`, lo = `${so}38;2;16;185;129m`, uo = (e, t) => `${e}${t}${A.reset}`, $ = (e, t, n) => e ? typeof t == "function" ? t(n) : uo(t, n) : n, fo = (e, t = {}) => {
|
|
1786
|
+
let n = t.color ?? !0, r = t.indent ?? " ", i = (e) => $(n, A.dim, e.padEnd(11)), a = (e) => $(n, (e) => A.bold(A.brand(e)), e), o = (e) => $(n, A.brightRed24, e), s = (e) => $(n, lo, e), c = (e) => $(n, co, e), l = (e) => $(n, A.dim, e), u = `${c("index audit")} ${l("·")} ${$(n, A.bold, e.kind)}`, d = e.redundant.fields.length, f = Q(e.coveredBy.fields.slice(d)), p = (e, t) => {
|
|
1747
1787
|
let n = e.slice(0, t), r = e.slice(t), i = [];
|
|
1748
1788
|
return n.length > 0 && i.push(s(`[${n.join(", ")}]`)), r.length > 0 && i.push(c(`+ [${r.join(", ")}]`)), i.join(" ");
|
|
1749
1789
|
}, m = [];
|
|
1750
|
-
return m.push(u), m.push(""), m.push(`${i("table")}${a(e.table)}`), m.push(""), m.push(`${i("redundant")}${o(e.redundant.name)}`), m.push(`${i("")}${p(Q(e.redundant.fields), d)}`), m.push(""), m.push(`${i("covered by")}${s(e.coveredBy.name)}`), m.push(`${i("")}${p(Q(e.coveredBy.fields), d)}`), f.length > 0 && m.push(`${i("")}${l(`└ extra columns: ${f.join(", ")}`)}`), m.push(""), e.kind === "redundant-prefix" ? (m.push(`${i("why")}B-tree indexes serve queries that filter on a LEADING PREFIX of`), m.push(`${i("")}their column list. The wider index already covers every`), m.push(`${i("")}query the narrower one can serve.`), m.push(`${i("")}${l("Same rule on Postgres / MySQL / MariaDB / MSSQL / SQLite.")}`)) : (m.push(`${i("why")}Two indexes on the same columns under different names.`), m.push(`${i("")}The B-tree engine builds both — same coverage, double cost.`), m.push(`${i("")}${l("Same rule on Postgres / MySQL / MariaDB / MSSQL / SQLite.")}`)), m.push(""), m.push(`${i("cost")}Every ${a("INSERT")} / ${a("UPDATE")} / ${a("DELETE")} on this table writes`), m.push(`${i("")}to ${$(n,
|
|
1751
|
-
},
|
|
1790
|
+
return m.push(u), m.push(""), m.push(`${i("table")}${a(e.table)}`), m.push(""), m.push(`${i("redundant")}${o(e.redundant.name)}`), m.push(`${i("")}${p(Q(e.redundant.fields), d)}`), m.push(""), m.push(`${i("covered by")}${s(e.coveredBy.name)}`), m.push(`${i("")}${p(Q(e.coveredBy.fields), d)}`), f.length > 0 && m.push(`${i("")}${l(`└ extra columns: ${f.join(", ")}`)}`), m.push(""), e.kind === "redundant-prefix" ? (m.push(`${i("why")}B-tree indexes serve queries that filter on a LEADING PREFIX of`), m.push(`${i("")}their column list. The wider index already covers every`), m.push(`${i("")}query the narrower one can serve.`), m.push(`${i("")}${l("Same rule on Postgres / MySQL / MariaDB / MSSQL / SQLite.")}`)) : (m.push(`${i("why")}Two indexes on the same columns under different names.`), m.push(`${i("")}The B-tree engine builds both — same coverage, double cost.`), m.push(`${i("")}${l("Same rule on Postgres / MySQL / MariaDB / MSSQL / SQLite.")}`)), m.push(""), m.push(`${i("cost")}Every ${a("INSERT")} / ${a("UPDATE")} / ${a("DELETE")} on this table writes`), m.push(`${i("")}to ${$(n, A.bold, "both")} B-trees. Pure write overhead, zero read benefit.`), m.push(""), m.push(`${i("fix")}Drop ${o(e.redundant.name)}`), m.push(`${i("")}${l("Keep only if profiling shows the smaller index gives a")}`), m.push(`${i("")}${l("measurable cache-locality boost on a write-heavy hot path.")}`), m.push(`${i("")}${l("Silence with VOLTRO_INDEX_AUDIT=off if intentional.")}`), m.map((e) => `${r}${e}`).join("\n");
|
|
1791
|
+
}, po = (e, t) => ({
|
|
1752
1792
|
name: e,
|
|
1753
1793
|
body: t
|
|
1754
|
-
}),
|
|
1794
|
+
}), mo = (e) => {
|
|
1755
1795
|
if (e.lifecycle === "cron" && !e.cron) throw Error(`seed "${e.id}": lifecycle 'cron' requires a 'cron' field`);
|
|
1756
1796
|
if (e.lifecycle === "onSchemaChange" && (!e.watchedTables || e.watchedTables.length === 0)) throw Error(`seed "${e.id}": lifecycle 'onSchemaChange' requires at least one entry in 'watchedTables'`);
|
|
1757
|
-
let t = e.steps({ step:
|
|
1797
|
+
let t = e.steps({ step: po });
|
|
1758
1798
|
if (t.length === 0) throw Error(`seed "${e.id}": at least one step is required`);
|
|
1759
1799
|
return {
|
|
1760
1800
|
__seed: !0,
|
|
@@ -1766,13 +1806,13 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1766
1806
|
...e.fingerprint === void 0 ? {} : { fingerprint: e.fingerprint },
|
|
1767
1807
|
steps: t
|
|
1768
1808
|
};
|
|
1769
|
-
},
|
|
1809
|
+
}, ho = (e) => typeof e == "object" && !!e && "__seed" in e && e.__seed === !0, go = (e, { apply: t, undo: n }) => ({
|
|
1770
1810
|
name: e,
|
|
1771
1811
|
apply: t,
|
|
1772
1812
|
undo: n
|
|
1773
|
-
}),
|
|
1813
|
+
}), _o = (e) => {
|
|
1774
1814
|
if (!/^\d{14}_/.test(e.id)) throw Error(`migration "${e.id}": id must start with a 14-digit timestamp followed by "_" (convention: <YYYYMMDDHHMMSS>_<slug>)`);
|
|
1775
|
-
let t = e.steps({ step:
|
|
1815
|
+
let t = e.steps({ step: go });
|
|
1776
1816
|
if (t.length === 0) throw Error(`migration "${e.id}": at least one step is required`);
|
|
1777
1817
|
return {
|
|
1778
1818
|
__migration: !0,
|
|
@@ -1780,145 +1820,145 @@ var St = (e) => typeof e == "string" && e !== "" ? e : null, Ct = async (e, t, n
|
|
|
1780
1820
|
name: e.name,
|
|
1781
1821
|
steps: t
|
|
1782
1822
|
};
|
|
1783
|
-
},
|
|
1784
|
-
id:
|
|
1785
|
-
name:
|
|
1786
|
-
hash:
|
|
1787
|
-
status:
|
|
1788
|
-
appliedAt:
|
|
1789
|
-
durationMs:
|
|
1790
|
-
errorMessage:
|
|
1791
|
-
errorStack:
|
|
1792
|
-
workflowRunId:
|
|
1793
|
-
createdAt:
|
|
1794
|
-
updatedAt:
|
|
1795
|
-
}).index(["status"]),
|
|
1796
|
-
id:
|
|
1797
|
-
name:
|
|
1798
|
-
lifecycle:
|
|
1799
|
-
fingerprint:
|
|
1800
|
-
cronSchedule:
|
|
1801
|
-
watchedTables:
|
|
1802
|
-
nextRunAt:
|
|
1803
|
-
lastRunStatus:
|
|
1804
|
-
lastRunAt:
|
|
1805
|
-
lastRunDurationMs:
|
|
1806
|
-
lastRunRowsTouched:
|
|
1807
|
-
lastError:
|
|
1808
|
-
workflowRunId:
|
|
1809
|
-
createdAt:
|
|
1810
|
-
updatedAt:
|
|
1811
|
-
}).index(["lifecycle"]).index(["nextRunAt"]),
|
|
1812
|
-
id:
|
|
1813
|
-
fingerprint:
|
|
1814
|
-
liveFingerprint:
|
|
1815
|
-
operations:
|
|
1816
|
-
rollbackPlan:
|
|
1817
|
-
appliedBy:
|
|
1818
|
-
environment:
|
|
1819
|
-
source:
|
|
1820
|
-
onlineStrategy:
|
|
1821
|
-
durationMs:
|
|
1822
|
-
notes:
|
|
1823
|
-
squashedAt:
|
|
1824
|
-
appliedAt:
|
|
1825
|
-
createdAt:
|
|
1826
|
-
updatedAt:
|
|
1827
|
-
}).index(["fingerprint"]).index(["environment"]),
|
|
1828
|
-
id:
|
|
1829
|
-
scope:
|
|
1830
|
-
key:
|
|
1831
|
-
status:
|
|
1832
|
-
response:
|
|
1833
|
-
createdAt:
|
|
1834
|
-
}).unique(["scope", "key"]).index(["createdAt"]),
|
|
1835
|
-
id:
|
|
1836
|
-
key:
|
|
1837
|
-
value:
|
|
1838
|
-
expiresAt:
|
|
1839
|
-
createdAt:
|
|
1840
|
-
updatedAt:
|
|
1841
|
-
}).index(["expiresAt"]),
|
|
1842
|
-
id:
|
|
1843
|
-
tenantId:
|
|
1844
|
-
name:
|
|
1845
|
-
hashedKey:
|
|
1846
|
-
keyPrefix:
|
|
1847
|
-
scopes:
|
|
1848
|
-
lastUsedAt:
|
|
1849
|
-
requestCount:
|
|
1850
|
-
expiresAt:
|
|
1851
|
-
revokedAt:
|
|
1852
|
-
createdBy:
|
|
1853
|
-
onBehalfOf:
|
|
1854
|
-
metadata:
|
|
1855
|
-
createdAt:
|
|
1856
|
-
}).index("byApiKeyTenant", ["tenantId"]),
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
],
|
|
1861
|
-
let n =
|
|
1823
|
+
}, vo = (e) => typeof e == "object" && !!e && "__migration" in e && e.__migration === !0, yo = v("_voltro_migrations", {
|
|
1824
|
+
id: S({ prefix: "mig" }),
|
|
1825
|
+
name: D(),
|
|
1826
|
+
hash: D(),
|
|
1827
|
+
status: D(),
|
|
1828
|
+
appliedAt: i().nullable(),
|
|
1829
|
+
durationMs: T().nullable(),
|
|
1830
|
+
errorMessage: D().nullable(),
|
|
1831
|
+
errorStack: D().nullable(),
|
|
1832
|
+
workflowRunId: D().nullable(),
|
|
1833
|
+
createdAt: i().default("now"),
|
|
1834
|
+
updatedAt: i().default("now").onUpdate("now")
|
|
1835
|
+
}).index(["status"]), bo = v("_voltro_seeds", {
|
|
1836
|
+
id: S({ prefix: "seed" }),
|
|
1837
|
+
name: D(),
|
|
1838
|
+
lifecycle: D(),
|
|
1839
|
+
fingerprint: D(),
|
|
1840
|
+
cronSchedule: D().nullable(),
|
|
1841
|
+
watchedTables: w().nullable(),
|
|
1842
|
+
nextRunAt: i().nullable(),
|
|
1843
|
+
lastRunStatus: D().nullable(),
|
|
1844
|
+
lastRunAt: i().nullable(),
|
|
1845
|
+
lastRunDurationMs: T().nullable(),
|
|
1846
|
+
lastRunRowsTouched: T().nullable(),
|
|
1847
|
+
lastError: D().nullable(),
|
|
1848
|
+
workflowRunId: D().nullable(),
|
|
1849
|
+
createdAt: i().default("now"),
|
|
1850
|
+
updatedAt: i().default("now").onUpdate("now")
|
|
1851
|
+
}).index(["lifecycle"]).index(["nextRunAt"]), xo = v("_voltro_migration_plans", {
|
|
1852
|
+
id: S({ prefix: "plan" }),
|
|
1853
|
+
fingerprint: D(),
|
|
1854
|
+
liveFingerprint: D().nullable(),
|
|
1855
|
+
operations: w(),
|
|
1856
|
+
rollbackPlan: w().nullable(),
|
|
1857
|
+
appliedBy: D(),
|
|
1858
|
+
environment: D(),
|
|
1859
|
+
source: D(),
|
|
1860
|
+
onlineStrategy: D().nullable(),
|
|
1861
|
+
durationMs: T(),
|
|
1862
|
+
notes: D().nullable(),
|
|
1863
|
+
squashedAt: i().nullable(),
|
|
1864
|
+
appliedAt: i().default("now"),
|
|
1865
|
+
createdAt: i().default("now"),
|
|
1866
|
+
updatedAt: i().default("now").onUpdate("now")
|
|
1867
|
+
}).index(["fingerprint"]).index(["environment"]), So = v("_voltro_idempotency", {
|
|
1868
|
+
id: S({ prefix: "idem" }),
|
|
1869
|
+
scope: D(),
|
|
1870
|
+
key: D(),
|
|
1871
|
+
status: D(),
|
|
1872
|
+
response: w().nullable(),
|
|
1873
|
+
createdAt: i().default("now")
|
|
1874
|
+
}).unique(["scope", "key"]).index(["createdAt"]), Co = v("_voltro_kv", {
|
|
1875
|
+
id: S({ prefix: "kv" }),
|
|
1876
|
+
key: D().unique(),
|
|
1877
|
+
value: D().nullable(),
|
|
1878
|
+
expiresAt: i().nullable(),
|
|
1879
|
+
createdAt: i().default("now"),
|
|
1880
|
+
updatedAt: i().default("now").onUpdate("now")
|
|
1881
|
+
}).index(["expiresAt"]), wo = v("_voltro_api_keys", {
|
|
1882
|
+
id: S({ prefix: "apikey" }),
|
|
1883
|
+
tenantId: D().nullable(),
|
|
1884
|
+
name: D(),
|
|
1885
|
+
hashedKey: D().maxLength(64).unique(),
|
|
1886
|
+
keyPrefix: D(),
|
|
1887
|
+
scopes: w().nullable(),
|
|
1888
|
+
lastUsedAt: i().nullable(),
|
|
1889
|
+
requestCount: T().default(0),
|
|
1890
|
+
expiresAt: i().nullable(),
|
|
1891
|
+
revokedAt: i().nullable(),
|
|
1892
|
+
createdBy: D().nullable(),
|
|
1893
|
+
onBehalfOf: D().nullable(),
|
|
1894
|
+
metadata: w().nullable(),
|
|
1895
|
+
createdAt: i().default("now")
|
|
1896
|
+
}).index("byApiKeyTenant", ["tenantId"]), To = [
|
|
1897
|
+
yo,
|
|
1898
|
+
bo,
|
|
1899
|
+
xo
|
|
1900
|
+
], Eo = "id", Do = (e, t) => {
|
|
1901
|
+
let n = C(e);
|
|
1862
1902
|
if (n === void 0) return t;
|
|
1863
|
-
let r = n.fields[
|
|
1864
|
-
if (r === void 0 || t[
|
|
1903
|
+
let r = n.fields[Eo]?.idScheme;
|
|
1904
|
+
if (r === void 0 || t[Eo] != null) return t;
|
|
1865
1905
|
if (r.kind === "numeric") {
|
|
1866
|
-
if (!(
|
|
1906
|
+
if (!(Eo in t)) return t;
|
|
1867
1907
|
let e = { ...t };
|
|
1868
|
-
return delete e[
|
|
1908
|
+
return delete e[Eo], e;
|
|
1869
1909
|
}
|
|
1870
1910
|
let i = oe(r, e);
|
|
1871
1911
|
return i === null ? t : {
|
|
1872
1912
|
...t,
|
|
1873
|
-
[
|
|
1913
|
+
[Eo]: i
|
|
1874
1914
|
};
|
|
1875
|
-
},
|
|
1915
|
+
}, Oo = (e, t) => t.map((t) => Do(e, t)), ko = (e, t) => {
|
|
1876
1916
|
let n = [], r = t;
|
|
1877
1917
|
for (let [t, i] of Object.entries(e.fields)) {
|
|
1878
1918
|
let e = i;
|
|
1879
1919
|
e.nullable || e.hasDefault || e.idScheme !== void 0 || e.generatedAs !== void 0 || (r[t] === void 0 || r[t] === null) && n.push(t);
|
|
1880
1920
|
}
|
|
1881
1921
|
return n;
|
|
1882
|
-
},
|
|
1922
|
+
}, Ao = (e, t) => {
|
|
1883
1923
|
let n = t;
|
|
1884
1924
|
return e.filter((e) => n[e] === void 0 || n[e] === null);
|
|
1885
|
-
},
|
|
1925
|
+
}, jo = (e, t, n) => e.insert(t.tableName, n), Mo = (e, t, n, r) => e.upsert(t.tableName, n, {
|
|
1886
1926
|
conflictColumns: r.conflictColumns,
|
|
1887
1927
|
...r.update === void 0 ? {} : { update: r.update }
|
|
1888
|
-
}),
|
|
1928
|
+
}), No = (e, t, n, r) => e.updateMany(t.tableName, n, { where: r.where }), Po = 512, Fo = (e) => {
|
|
1889
1929
|
e.setMaxListeners(512);
|
|
1890
|
-
},
|
|
1930
|
+
}, Io = (e, t, n) => ({
|
|
1891
1931
|
_tag: "PrimaryKeyConflictError",
|
|
1892
1932
|
table: e,
|
|
1893
1933
|
key: t,
|
|
1894
1934
|
cause: n
|
|
1895
|
-
}),
|
|
1935
|
+
}), Lo = (e) => typeof e == "object" && !!e && e._tag === "PrimaryKeyConflictError", Ro = /* @__PURE__ */ new Map(), zo = (e) => {
|
|
1896
1936
|
if (!e.table || !e.timeColumn) throw Error("registerRetention: table + timeColumn are required");
|
|
1897
1937
|
if (!Number.isFinite(e.ttlMs) || e.ttlMs <= 0) throw Error(`registerRetention(${e.table}): ttlMs must be a positive number`);
|
|
1898
|
-
|
|
1899
|
-
},
|
|
1938
|
+
Ro.set(e.table, e);
|
|
1939
|
+
}, Bo = () => [...Ro.values()], Vo = () => Ro.clear(), Ho = async (e, t, n, r = 2e4) => {
|
|
1900
1940
|
let i = new Date(t - e.ttlMs), a = 0;
|
|
1901
1941
|
for (;;) {
|
|
1902
1942
|
let t = await n(e.table, e.timeColumn, i, r, e.where);
|
|
1903
1943
|
if (a += t, t < r) break;
|
|
1904
1944
|
}
|
|
1905
1945
|
return a;
|
|
1906
|
-
},
|
|
1946
|
+
}, Uo = (e, t) => {
|
|
1907
1947
|
let n = Number(e ?? String(t));
|
|
1908
1948
|
return (Number.isFinite(n) && n > 0 ? n : t) * 36e5;
|
|
1909
|
-
},
|
|
1910
|
-
id:
|
|
1911
|
-
replicaId:
|
|
1912
|
-
streamName:
|
|
1913
|
-
binlogFile:
|
|
1914
|
-
binlogPosition:
|
|
1915
|
-
updatedAt:
|
|
1916
|
-
}).index(["replicaId"]),
|
|
1917
|
-
id:
|
|
1918
|
-
replicaId:
|
|
1919
|
-
streamName:
|
|
1920
|
-
ctVersion:
|
|
1921
|
-
updatedAt:
|
|
1922
|
-
}).index(["replicaId"]),
|
|
1949
|
+
}, Wo = "_voltro_cdc_offsets", Go = v(Wo, {
|
|
1950
|
+
id: S({ prefix: "cdcoff" }),
|
|
1951
|
+
replicaId: D(),
|
|
1952
|
+
streamName: D(),
|
|
1953
|
+
binlogFile: D(),
|
|
1954
|
+
binlogPosition: D(),
|
|
1955
|
+
updatedAt: i()
|
|
1956
|
+
}).index(["replicaId"]), Ko = v(Wo, {
|
|
1957
|
+
id: S({ prefix: "cdcoff" }),
|
|
1958
|
+
replicaId: D(),
|
|
1959
|
+
streamName: D(),
|
|
1960
|
+
ctVersion: D(),
|
|
1961
|
+
updatedAt: i()
|
|
1962
|
+
}).index(["replicaId"]), qo = "postgres";
|
|
1923
1963
|
//#endregion
|
|
1924
|
-
export {
|
|
1964
|
+
export { he as AUTO_FILLED_COLUMNS, X as BranchNameInvalid, Aa as BranchTransitionInvalid, Wo as CDC_OFFSETS_TABLE, Po as CHANGE_LISTENER_CEILING, Fe as ColumnBuilder, Ot as ENCRYPTED_PREFIX, qo as ENGINE, _n as EagerCardinalityError, Ie as FILE_MIGRATION_PATTERN, $e as FRAMEWORK_LIVE_TABLES, kt as FieldDecryptionError, da as INITIAL_VERSION, hi as MATCHES_NO_ROWS, Ge as MAX_IDENTIFIER_LENGTH, xt as SqlClient, va as TableStreamError, jn as TenantNamespaceInvalid, An as TenantNamespaceUnresolved, Ka as TenantRegionUnavailable, Ga as TenantResidencyUnresolved, fa as VOLTRO_EXPIRES_MIXIN_ID, ma as VOLTRO_LOCAL_FIRST_MIXIN_ID, sa as VersionConflict, Ze as WARN_IDENTIFIER_LENGTH, wo as _voltroApiKeysTable, Go as _voltroCdcOffsetsTable, So as _voltroIdempotencyTable, Co as _voltroKvTable, xo as _voltroMigrationPlansTable, yo as _voltroMigrationsTable, Ko as _voltroMssqlCdcOffsetsTable, bo as _voltroSeedsTable, ti as actorsTable, Ua as admitBranch, Ve as allEnumRenames, on as allRegisteredRelations, d as allRegisteredTables, yi as and, Ne as array, fi as arrayContains, mi as arrayHas, pi as arrayOverlaps, yn as attachEagerLoads, Ri as attributionFields, Hi as attributionKey, oo as auditAllTableIndexes, ao as auditTableIndexes, Ae as avg, Je as avgOver, Xi as beginLocalWrite, be as bigint, eo as bindResidentStore, it as boolean, Da as branchNamespaceName, ut as bytes, Pi as changeDelete, Mi as changeInsert, Fi as changeSoftDelete, Ni as changeUpdate, Gi as claimPendingAttribution, nt as clearEnumRenames, $i as clearPendingAttribution, cn as clearRelationsRegistry, Xa as clearResidencyConfig, Vo as clearRetentions, h as clearTableRegistry, ra as clearWriteRecorders, zn as coercePredicateValue, Bn as coercePredicateValues, Ai as collectSubqueries, He as column, Ft as columnSchema, Qn as compileEagerJson, N as compilePredicate, Vn as compileRawFragment, P as compileSelect, Ca as computeEmbedding, ui as contains, Pe as count, Me as countDistinct, we as crdtManagedColumns, ct as crdtText, Li as currentWriteAttribution, ye as databaseHandle, le as date, o as dbEnum, ot as decimal, Oe as declareEnumRename, mn as decodeRowsFromSchema, Pt as decryptFieldsOnRead, _o as defineMigration, _ as defineMixin, mo as defineSeed, rt as denseRank, ve as deriveTypeIdPrefix, Dt as deserializeArraysOnRead, Le as drainIdentifierWarnings, de as dropped, gn as encodeRowForSchema, Nt as encryptFieldsForWrite, Mt as encryptedColumnsOf, Zi as endLocalWrite, Ba as enforceBranchLimits, y as ensureTableRegistered, ni as eq, M as escapeLike, ki as evaluatePredicate, lt as except, Ei as exists, pa as expires, fo as formatIndexAuditIssue, To as frameworkTables, oe as generateId, ke as generateSnowflake, u as geography, c as geometry, je as getEnumRenames, an as getRelation, rn as getRelations, Ya as getResidencyConfig, C as getTable, ii as gt, ai as gte, kn as hasEagerLoads, Sa as hybridSearch, S as id, ci as inSet, wi as inSubquery, Jt as inferForeignKey, jo as insertRow, T as integer, Ce as intersect, n as interval, Oa as isBranchNamespace, Ut as isEmptyRelationsSpec, jt as isEncrypted, At as isFieldDecryptionError, xe as isFileMigration, We as isFrameworkOwnedLiveTable, ga as isLocalFirst, vo as isMigrationDefinition, Pa as isNeonConnection, _i as isNotNull, gi as isNull, Lo as isPrimaryKeyConflictError, Qa as isRegionServable, Wt as isRelationsSpec, ho as isSeedDefinition, m as isSqliteFamily, dt as isTableReactive, Te as isView, w as json, Si as jsonField, p as jsonIndex, st as lag, ce as lead, Bo as listRetentions, ha as localFirst, _a as localFirstTables, oi as lt, si as lte, Wa as makeNamespaceBranchExecutor, Kt as many, qt as manyToMany, b as materializeFields, a as max, Ke as migration, at as min, Ao as missingConflictColumns, ko as missingRequiredColumns, _e as mixin, ri as neq, ja as nextBranchState, xi as not, Di as notExists, li as notInSet, Ti as notInSubquery, x as numeric, Gt as one, vn as oneCardinalityMessage, bi as or, ue as paginateBy, l as paginateById, ea as pendingAttributionCount, Ra as planBranch, Ma as planBranchProvision, Na as planBranchTeardown, za as planBranchTeardownFor, Ia as planNeonBranchProvision, La as planNeonBranchTeardown, la as planVersionedUpdate, Ye as pluginRef, Ue as pluginRefSpecOf, Io as primaryKeyConflictError, Va as provisionBranch, to as provisionResidentTenant, In as qualifyTable, s as queryFor, Be as queryForView, fe as quoteIdent, Fo as raiseChangeListenerCeiling, re as rank, ae as raw, f as readableByColumns, g as real, ia as recordsTable, ee as reference, Zr as registerCoreTables, nn as registerDiscoveredRelations, Wi as registerPendingAttribution, tn as registerRelations, zo as registerRetention, r as registerTable, ta as registerWriteRecorder, Ht as relations, $r as requireActors, pe as requireTable, ei as requireTenants, et as resetSnowflake, $a as residentPlacement, Ct as resolveActorSnapshot, Fa as resolveBranchMechanism, Qi as resolveEchoAttribution, ze as resolveFullTextIndex, e as resolveIdScheme, ge as resolveMixinGraph, Za as resolveTenantHome, Fn as resolveTenantNamespace, Uo as retentionTtlMsFromEnv, t as rowNumber, It as rowSchema, Ii as runWithWriteAttribution, aa as runWriteRecorders, Pn as sanitizeIdentifierFragment, Et as serializeArraysForWrite, se as serverOnlyColumns, Ja as setResidencyConfig, oa as settleTransactionExit, ua as settleVersionedUpdate, vi as spatialPredicate, Do as stampGeneratedId, Oo as stampGeneratedIds, di as startsWith, xa as streamTable, Re as sum, te as sumOver, Ho as sweepRetention, v as table, Ha as teardownBranch, D as text, i as timestamp, ft as timestampMs, pt as timestampMsOrNull, ne as union, ie as unionAll, na as unregisterWriteRecorder, No as updateManyRow, Mo as upsertRow, Se as validateColumnName, qe as validateIndexName, sn as validateRegisteredRelations, Qt as validateRelationConfig, Qe as validateTableName, Ee as validateTypeIdPrefix, me as vector, Xe as vectorDistanceToOpclass, wa as vectorEmbedding, ca as versionColumnOf, tt as view, De as viewSql, ji as walkLeaves, zi as withCapturedAttribution };
|