pqb 0.26.2 → 0.26.3
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/dist/index.d.ts +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1338,11 +1338,13 @@ interface JBase {
|
|
|
1338
1338
|
result: QueryColumns;
|
|
1339
1339
|
shape: QueryColumns;
|
|
1340
1340
|
meta: QueryMetaBase;
|
|
1341
|
+
table?: string;
|
|
1341
1342
|
}
|
|
1342
1343
|
declare class OnQueryBuilder<S extends PickQueryMetaShape = QueryBase, J extends JBase = JBase> extends WhereQueryBase {
|
|
1343
1344
|
selectable: J['meta']['selectable'] & Omit<S['meta']['selectable'], keyof S['shape']>;
|
|
1344
1345
|
relations: J['relations'];
|
|
1345
1346
|
result: J['result'];
|
|
1347
|
+
table: J['table'];
|
|
1346
1348
|
shape: J['shape'];
|
|
1347
1349
|
withData: {};
|
|
1348
1350
|
constructor(q: QueryBase, { shape, joinedShapes }: PickQueryDataShapeAndJoinedShapes, joinTo: QueryDataJoinTo);
|