@prisma/studio-core 0.0.0-dev.202511102132 → 0.0.0-dev.202511102222
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-EQFDGYQI.js +10 -0
- package/dist/chunk-GUK7IE4A.js +10 -0
- package/dist/chunk-MI7VN4OZ.js +10 -0
- package/dist/chunk-MNJNAVSY.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.d.cts +1 -1
- package/dist/data/index.d.ts +1 -1
- package/dist/data/index.js +1 -1
- package/dist/data/node-sqlite/index.cjs +2 -0
- package/dist/data/node-sqlite/index.d.cts +8 -0
- package/dist/data/node-sqlite/index.d.ts +8 -0
- package/dist/data/node-sqlite/index.js +10 -0
- package/dist/data/pglite/index.d.cts +1 -1
- package/dist/data/pglite/index.d.ts +1 -1
- package/dist/data/pglite/index.js +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/data/postgresjs/index.d.cts +1 -1
- package/dist/data/postgresjs/index.d.ts +1 -1
- package/dist/data/postgresjs/index.js +2 -2
- package/dist/data/ppg/index.d.cts +1 -1
- package/dist/data/ppg/index.d.ts +1 -1
- package/dist/data/sqlite-core/index.cjs +2 -0
- package/dist/data/sqlite-core/index.d.cts +23 -0
- package/dist/data/sqlite-core/index.d.ts +23 -0
- package/dist/data/sqlite-core/index.js +10 -0
- package/dist/{index-CkpN852N.d.cts → index-C2ZP5zCW.d.cts} +1 -1
- package/dist/{index-CkpN852N.d.ts → index-C2ZP5zCW.d.ts} +1 -1
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- 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-4N45R6OG.js +0 -10
- package/dist/chunk-AQXRIQHE.js +0 -10
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { d as AdapterRequirements, A as Adapter, B as BuilderRequirements, Q as Query } from '../../index-C2ZP5zCW.cjs';
|
|
2
|
+
import * as kysely from 'kysely';
|
|
3
|
+
|
|
4
|
+
type SQLIteAdapterRequirements = AdapterRequirements;
|
|
5
|
+
declare function createSQLiteAdapter(requirements: SQLIteAdapterRequirements): Adapter;
|
|
6
|
+
|
|
7
|
+
declare function getTablesQuery(requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
8
|
+
name: string;
|
|
9
|
+
schema: "main" | "temp";
|
|
10
|
+
type: "table" | "view" | "shadow" | "virtual";
|
|
11
|
+
sql: string | null;
|
|
12
|
+
columns: {
|
|
13
|
+
name: string;
|
|
14
|
+
datatype: string;
|
|
15
|
+
foreign_key_table: string | null;
|
|
16
|
+
foreign_key_column: string | null;
|
|
17
|
+
computed: kysely.SqlBool;
|
|
18
|
+
nullable: kysely.SqlBool;
|
|
19
|
+
pk: kysely.SqlBool;
|
|
20
|
+
}[];
|
|
21
|
+
}>;
|
|
22
|
+
|
|
23
|
+
export { type SQLIteAdapterRequirements, createSQLiteAdapter, getTablesQuery };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { d as AdapterRequirements, A as Adapter, B as BuilderRequirements, Q as Query } from '../../index-C2ZP5zCW.js';
|
|
2
|
+
import * as kysely from 'kysely';
|
|
3
|
+
|
|
4
|
+
type SQLIteAdapterRequirements = AdapterRequirements;
|
|
5
|
+
declare function createSQLiteAdapter(requirements: SQLIteAdapterRequirements): Adapter;
|
|
6
|
+
|
|
7
|
+
declare function getTablesQuery(requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
8
|
+
name: string;
|
|
9
|
+
schema: "main" | "temp";
|
|
10
|
+
type: "table" | "view" | "shadow" | "virtual";
|
|
11
|
+
sql: string | null;
|
|
12
|
+
columns: {
|
|
13
|
+
name: string;
|
|
14
|
+
datatype: string;
|
|
15
|
+
foreign_key_table: string | null;
|
|
16
|
+
foreign_key_column: string | null;
|
|
17
|
+
computed: kysely.SqlBool;
|
|
18
|
+
nullable: kysely.SqlBool;
|
|
19
|
+
pk: kysely.SqlBool;
|
|
20
|
+
}[];
|
|
21
|
+
}>;
|
|
22
|
+
|
|
23
|
+
export { type SQLIteAdapterRequirements, createSQLiteAdapter, getTablesQuery };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as ___react___ from 'react';
|
|
2
|
+
import * as ___react_dom___ from 'react-dom';
|
|
3
|
+
|
|
4
|
+
function require(mod) {
|
|
5
|
+
if (mod === 'react') return ___react___;
|
|
6
|
+
if (mod === 'react-dom') return ___react_dom___;
|
|
7
|
+
throw new Error(`Unknown module ${mod}`);
|
|
8
|
+
}
|
|
9
|
+
import{a,b}from"../../chunk-MNJNAVSY.js";import"../../chunk-MI7VN4OZ.js";import"../../chunk-EQFDGYQI.js";import"../../chunk-GDQBQ7MK.js";export{b as createSQLiteAdapter,a as getTablesQuery};
|
|
10
|
+
//# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFtdLAogICJzb3VyY2VzQ29udGVudCI6IFtdLAogICJtYXBwaW5ncyI6ICIiLAogICJuYW1lcyI6IFtdCn0K
|
|
@@ -286,4 +286,4 @@ declare class AbortError extends Error {
|
|
|
286
286
|
}
|
|
287
287
|
declare function getAbortResult(): [AbortError];
|
|
288
288
|
|
|
289
|
-
export { type Adapter as A, type BuilderRequirements as B, type Column as C, type DataType as D, type Executor as E, type FilterOperator as F, createAdapterError as G, AbortError as H, getAbortResult as I, type BigIntString as J, type NumericString as N, type Query as Q, type Schema as S, type Table as T, type ExecuteOptions as a, type Either as b, type QueryResult as c,
|
|
289
|
+
export { type Adapter as A, type BuilderRequirements as B, type Column as C, type DataType as D, type Executor as E, type FilterOperator as F, createAdapterError as G, AbortError as H, getAbortResult as I, type BigIntString as J, type NumericString as N, type Query as Q, type Schema as S, type Table as T, type ExecuteOptions as a, type Either as b, type QueryResult as c, type AdapterRequirements as d, AdapterError as e, type AdapterInsertDetails as f, type AdapterQueryDetails as g, type AdapterUpdateDetails as h, type AdapterDeleteDetails as i, applyInferredRowFilters as j, type AdapterBaseOptions as k, type AdapterIntrospectOptions as l, type AdapterQueryOptions as m, type AdapterInsertOptions as n, type AdapterUpdateOptions as o, type AdapterDeleteOptions as p, type AdapterIntrospectResult as q, type DataTypeGroup as r, type ColumnFilter as s, type FilterGroup as t, type SortOrderItem as u, type SortDirection as v, type AdapterQueryResult as w, type AdapterInsertResult as x, type AdapterUpdateResult as y, type AdapterDeleteResult as z };
|
|
@@ -286,4 +286,4 @@ declare class AbortError extends Error {
|
|
|
286
286
|
}
|
|
287
287
|
declare function getAbortResult(): [AbortError];
|
|
288
288
|
|
|
289
|
-
export { type Adapter as A, type BuilderRequirements as B, type Column as C, type DataType as D, type Executor as E, type FilterOperator as F, createAdapterError as G, AbortError as H, getAbortResult as I, type BigIntString as J, type NumericString as N, type Query as Q, type Schema as S, type Table as T, type ExecuteOptions as a, type Either as b, type QueryResult as c,
|
|
289
|
+
export { type Adapter as A, type BuilderRequirements as B, type Column as C, type DataType as D, type Executor as E, type FilterOperator as F, createAdapterError as G, AbortError as H, getAbortResult as I, type BigIntString as J, type NumericString as N, type Query as Q, type Schema as S, type Table as T, type ExecuteOptions as a, type Either as b, type QueryResult as c, type AdapterRequirements as d, AdapterError as e, type AdapterInsertDetails as f, type AdapterQueryDetails as g, type AdapterUpdateDetails as h, type AdapterDeleteDetails as i, applyInferredRowFilters as j, type AdapterBaseOptions as k, type AdapterIntrospectOptions as l, type AdapterQueryOptions as m, type AdapterInsertOptions as n, type AdapterUpdateOptions as o, type AdapterDeleteOptions as p, type AdapterIntrospectResult as q, type DataTypeGroup as r, type ColumnFilter as s, type FilterGroup as t, type SortOrderItem as u, type SortDirection as v, type AdapterQueryResult as w, type AdapterInsertResult as x, type AdapterUpdateResult as y, type AdapterDeleteResult as z };
|