mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-12-06 06:36:25 +00:00
Properly type unnestValues return
This commit is contained in:
@@ -155,7 +155,7 @@ export const unnestValues = <
|
|||||||
if (!(k in columns)) continue;
|
if (!(k in columns)) continue;
|
||||||
keys.push(k);
|
keys.push(k);
|
||||||
acc[k] = new Array(i).fill(null);
|
acc[k] = new Array(i).fill(null);
|
||||||
acc[k].push(cur[k])
|
acc[k].push(cur[k]);
|
||||||
}
|
}
|
||||||
return acc;
|
return acc;
|
||||||
},
|
},
|
||||||
@@ -172,7 +172,11 @@ export const unnestValues = <
|
|||||||
x,
|
x,
|
||||||
(columns[x].defaultFn?.() ?? columns[x].onUpdateFn!()).as(dbNames[x]),
|
(columns[x].defaultFn?.() ?? columns[x].onUpdateFn!()).as(dbNames[x]),
|
||||||
]),
|
]),
|
||||||
]),
|
]) as {
|
||||||
|
[k in keyof typeof typeInfo.$inferInsert]-?: SQL.Aliased<
|
||||||
|
(typeof typeInfo.$inferInsert)[k]
|
||||||
|
>;
|
||||||
|
},
|
||||||
)
|
)
|
||||||
.from(
|
.from(
|
||||||
sql`unnest(${sql.join(
|
sql`unnest(${sql.join(
|
||||||
|
|||||||
Reference in New Issue
Block a user