@prisma/studio-core 0.0.0-dev.202506181805 → 0.0.0-dev.202506182311
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/chunk-LLYLSQF7.js +10 -0
- package/dist/chunk-U2KXGPNO.js +10 -0
- package/dist/data/accelerate/index.d.cts +1 -1
- package/dist/data/accelerate/index.d.ts +1 -1
- package/dist/data/bff/index.d.cts +1 -1
- package/dist/data/bff/index.d.ts +1 -1
- package/dist/data/index.cjs +2 -2
- package/dist/data/index.d.cts +2 -2
- package/dist/data/index.d.ts +2 -2
- package/dist/data/index.js +1 -1
- package/dist/data/pglite/index.cjs +2 -2
- package/dist/data/pglite/index.d.cts +1 -1
- package/dist/data/pglite/index.d.ts +1 -1
- package/dist/data/pglite/index.js +1 -1
- package/dist/data/postgres-core/index.cjs +2 -2
- package/dist/data/postgres-core/index.d.cts +1 -1
- package/dist/data/postgres-core/index.d.ts +1 -1
- package/dist/data/postgres-core/index.js +1 -1
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/{query-BhV8UH4b.d.cts → query-JxDYcViV.d.cts} +2 -2
- package/dist/{query-BhV8UH4b.d.ts → query-JxDYcViV.d.ts} +2 -2
- package/dist/ui/index.cjs +31 -31
- package/dist/ui/index.d.cts +1 -1
- package/dist/ui/index.d.ts +1 -1
- package/dist/ui/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-FRW62KTF.js +0 -10
- package/dist/chunk-KNBEUPON.js +0 -10
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { WhereInterface, DialectAdapter, QueryCompiler } from 'kysely';
|
|
1
|
+
import { WhereInterface, DialectAdapter, QueryCompiler, ExpressionWrapper } from 'kysely';
|
|
2
2
|
|
|
3
3
|
type Either<E, R> = [E] | [null, R];
|
|
4
4
|
type NumericString = `${number}`;
|
|
@@ -274,7 +274,7 @@ declare function applyInferredRowFilters(rows: Record<string, unknown>[], column
|
|
|
274
274
|
* Part of a filter that predicts a match.
|
|
275
275
|
* ie. ... WHERE $ColumName = $Value ...
|
|
276
276
|
*/
|
|
277
|
-
type RowFilterPredicate = [ColumnName: string, Value: unknown];
|
|
277
|
+
type RowFilterPredicate = [ColumnName: string | ExpressionWrapper<any, any, any>, Value: unknown];
|
|
278
278
|
/**
|
|
279
279
|
* A row filter is comprised of one or more predicates.
|
|
280
280
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { WhereInterface, DialectAdapter, QueryCompiler } from 'kysely';
|
|
1
|
+
import { WhereInterface, DialectAdapter, QueryCompiler, ExpressionWrapper } from 'kysely';
|
|
2
2
|
|
|
3
3
|
type Either<E, R> = [E] | [null, R];
|
|
4
4
|
type NumericString = `${number}`;
|
|
@@ -274,7 +274,7 @@ declare function applyInferredRowFilters(rows: Record<string, unknown>[], column
|
|
|
274
274
|
* Part of a filter that predicts a match.
|
|
275
275
|
* ie. ... WHERE $ColumName = $Value ...
|
|
276
276
|
*/
|
|
277
|
-
type RowFilterPredicate = [ColumnName: string, Value: unknown];
|
|
277
|
+
type RowFilterPredicate = [ColumnName: string | ExpressionWrapper<any, any, any>, Value: unknown];
|
|
278
278
|
/**
|
|
279
279
|
* A row filter is comprised of one or more predicates.
|
|
280
280
|
*/
|