@prisma/studio-core 0.0.0-dev.202504141907 → 0.0.0-dev.202504141918
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/{adapter-BR1dIXu1.d.cts → adapter-B6MTgAD1.d.cts} +1 -9
- package/dist/{adapter-CaxkQTNn.d.ts → adapter-DnrnbSIC.d.ts} +1 -9
- package/dist/data/index.d.cts +1 -1
- package/dist/data/index.d.ts +1 -1
- package/dist/data/pglite/index.d.cts +1 -1
- package/dist/data/pglite/index.d.ts +1 -1
- package/dist/data/postgres-core/index.d.cts +1 -1
- package/dist/data/postgres-core/index.d.ts +1 -1
- package/dist/{index-ESMXH6DI.css → index-RCHJGGEM.css} +3 -0
- package/dist/ui/index.cjs +25 -25
- 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 +2 -1
|
@@ -64,18 +64,10 @@ interface DataType {
|
|
|
64
64
|
}
|
|
65
65
|
type DataTypeGroup = "string" | "datetime" | "time" | "unsupported";
|
|
66
66
|
interface QueryDetails {
|
|
67
|
-
/**
|
|
68
|
-
* Zero-based index of the page to fetch.
|
|
69
|
-
*/
|
|
70
|
-
pageIndex: number;
|
|
71
|
-
/**
|
|
72
|
-
* Maximum number of rows to fetch from the database.
|
|
73
|
-
*/
|
|
74
|
-
pageSize: number;
|
|
75
67
|
/**
|
|
76
68
|
* The database schema where the table is located. Defaults to "public".
|
|
77
69
|
*/
|
|
78
|
-
schema
|
|
70
|
+
schema?: string;
|
|
79
71
|
/**
|
|
80
72
|
* The name of the table to select from.
|
|
81
73
|
*/
|
|
@@ -64,18 +64,10 @@ interface DataType {
|
|
|
64
64
|
}
|
|
65
65
|
type DataTypeGroup = "string" | "datetime" | "time" | "unsupported";
|
|
66
66
|
interface QueryDetails {
|
|
67
|
-
/**
|
|
68
|
-
* Zero-based index of the page to fetch.
|
|
69
|
-
*/
|
|
70
|
-
pageIndex: number;
|
|
71
|
-
/**
|
|
72
|
-
* Maximum number of rows to fetch from the database.
|
|
73
|
-
*/
|
|
74
|
-
pageSize: number;
|
|
75
67
|
/**
|
|
76
68
|
* The database schema where the table is located. Defaults to "public".
|
|
77
69
|
*/
|
|
78
|
-
schema
|
|
70
|
+
schema?: string;
|
|
79
71
|
/**
|
|
80
72
|
* The name of the table to select from.
|
|
81
73
|
*/
|
package/dist/data/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { A as Adapter, B as BaseOptions, C as Column, D as DataType, b as DataTypeGroup, I as IntrospectOptions, a as Introspection, c as QueryDetails, Q as QueryOptions, S as Schema, T as Table } from '../adapter-
|
|
1
|
+
export { A as Adapter, B as BaseOptions, C as Column, D as DataType, b as DataTypeGroup, I as IntrospectOptions, a as Introspection, c as QueryDetails, Q as QueryOptions, S as Schema, T as Table } from '../adapter-B6MTgAD1.cjs';
|
|
2
2
|
export { b as ExecuteOptions, E as Executor, Q as Query, a as QueryResult } from '../executor-BLAClqkI.cjs';
|
|
3
3
|
export { E as Either } from '../type-utils-rTHUvEmt.cjs';
|
|
4
4
|
import 'kysely';
|
package/dist/data/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { A as Adapter, B as BaseOptions, C as Column, D as DataType, b as DataTypeGroup, I as IntrospectOptions, a as Introspection, c as QueryDetails, Q as QueryOptions, S as Schema, T as Table } from '../adapter-
|
|
1
|
+
export { A as Adapter, B as BaseOptions, C as Column, D as DataType, b as DataTypeGroup, I as IntrospectOptions, a as Introspection, c as QueryDetails, Q as QueryOptions, S as Schema, T as Table } from '../adapter-DnrnbSIC.js';
|
|
2
2
|
export { b as ExecuteOptions, E as Executor, Q as Query, a as QueryResult } from '../executor-CySfZPUK.js';
|
|
3
3
|
export { E as Either } from '../type-utils-rTHUvEmt.js';
|
|
4
4
|
import 'kysely';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PGlite } from '@electric-sql/pglite';
|
|
2
|
-
import { A as Adapter } from '../../adapter-
|
|
2
|
+
import { A as Adapter } from '../../adapter-B6MTgAD1.cjs';
|
|
3
3
|
import { E as Executor } from '../../executor-BLAClqkI.cjs';
|
|
4
4
|
import '../../type-utils-rTHUvEmt.cjs';
|
|
5
5
|
import 'kysely';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PGlite } from '@electric-sql/pglite';
|
|
2
|
-
import { A as Adapter } from '../../adapter-
|
|
2
|
+
import { A as Adapter } from '../../adapter-DnrnbSIC.js';
|
|
3
3
|
import { E as Executor } from '../../executor-CySfZPUK.js';
|
|
4
4
|
import '../../type-utils-rTHUvEmt.js';
|
|
5
5
|
import 'kysely';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as Adapter, c as QueryDetails } from '../../adapter-
|
|
1
|
+
import { A as Adapter, c as QueryDetails } from '../../adapter-B6MTgAD1.cjs';
|
|
2
2
|
import { E as Executor, B as BuilderRequirements, Q as Query, a as QueryResult } from '../../executor-BLAClqkI.cjs';
|
|
3
3
|
import '../../type-utils-rTHUvEmt.cjs';
|
|
4
4
|
import 'kysely';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as Adapter, c as QueryDetails } from '../../adapter-
|
|
1
|
+
import { A as Adapter, c as QueryDetails } from '../../adapter-DnrnbSIC.js';
|
|
2
2
|
import { E as Executor, B as BuilderRequirements, Q as Query, a as QueryResult } from '../../executor-CySfZPUK.js';
|
|
3
3
|
import '../../type-utils-rTHUvEmt.js';
|
|
4
4
|
import 'kysely';
|