@prisma/studio-core 0.0.0-dev.202504151822 → 0.0.0-dev.202504151900
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-dDnGaS1S.d.ts → adapter-B6MTgAD1.d.cts} +6 -23
- package/dist/{adapter-DOfxRYJO.d.cts → adapter-DnrnbSIC.d.ts} +6 -23
- package/dist/{chunk-CDTENDXB.js → chunk-YMPRBKIC.js} +1 -1
- package/dist/data/accelerate/index.d.cts +2 -2
- package/dist/data/accelerate/index.d.ts +2 -2
- package/dist/data/bff/index.d.cts +2 -2
- package/dist/data/bff/index.d.ts +2 -2
- package/dist/data/index.d.cts +3 -3
- package/dist/data/index.d.ts +3 -3
- package/dist/data/pglite/index.cjs +1 -1
- package/dist/data/pglite/index.d.cts +3 -3
- package/dist/data/pglite/index.d.ts +3 -3
- package/dist/data/pglite/index.js +1 -1
- package/dist/data/postgres-core/index.cjs +1 -1
- package/dist/data/postgres-core/index.d.cts +4 -8
- package/dist/data/postgres-core/index.d.ts +4 -8
- package/dist/data/postgres-core/index.js +1 -1
- package/dist/{executor-DbZM00RR.d.cts → executor-BLAClqkI.d.cts} +1 -1
- package/dist/{executor-DI7JTcqO.d.ts → executor-CySfZPUK.d.ts} +1 -1
- package/dist/{index-ESMXH6DI.css → index-RCHJGGEM.css} +3 -0
- package/dist/type-utils-rTHUvEmt.d.cts +3 -0
- package/dist/type-utils-rTHUvEmt.d.ts +3 -0
- package/dist/ui/index.cjs +117 -117
- package/dist/ui/index.d.cts +2 -2
- package/dist/ui/index.d.ts +2 -2
- package/dist/ui/index.js +1 -1
- package/package.json +2 -1
- package/dist/type-utils-u92OZz8n.d.cts +0 -4
- package/dist/type-utils-u92OZz8n.d.ts +0 -4
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { A as Adapter, c as
|
|
2
|
-
import { E as Executor, B as BuilderRequirements, Q as Query, a as QueryResult } from '../../executor-
|
|
3
|
-
import '../../type-utils-
|
|
1
|
+
import { A as Adapter, c as QueryDetails } from '../../adapter-B6MTgAD1.cjs';
|
|
2
|
+
import { E as Executor, B as BuilderRequirements, Q as Query, a as QueryResult } from '../../executor-BLAClqkI.cjs';
|
|
3
|
+
import '../../type-utils-rTHUvEmt.cjs';
|
|
4
4
|
import 'kysely';
|
|
5
5
|
|
|
6
6
|
interface PostgresAdapterRequirements {
|
|
@@ -17,12 +17,8 @@ declare function createPostgresAdapter(requirements: PostgresAdapterRequirements
|
|
|
17
17
|
* Example: '(0,23)' represents the 24th row in the first block of the table.
|
|
18
18
|
*/
|
|
19
19
|
type CTIDasText = `(${number},${number})`;
|
|
20
|
-
|
|
21
|
-
* Returns a query that selects all columns from a table, along with the `ctid` column, and unbound row count as `oid` (reserved column name that cannot conflict with user columns).
|
|
22
|
-
*/
|
|
23
|
-
declare function getSelectQuery(details: AdapterQueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
20
|
+
declare function getSelectQuery(details: QueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
24
21
|
[x: string]: unknown;
|
|
25
|
-
oid: `${number}`;
|
|
26
22
|
ctid: `(${number},${number})`;
|
|
27
23
|
}>;
|
|
28
24
|
/**
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { A as Adapter, c as
|
|
2
|
-
import { E as Executor, B as BuilderRequirements, Q as Query, a as QueryResult } from '../../executor-
|
|
3
|
-
import '../../type-utils-
|
|
1
|
+
import { A as Adapter, c as QueryDetails } from '../../adapter-DnrnbSIC.js';
|
|
2
|
+
import { E as Executor, B as BuilderRequirements, Q as Query, a as QueryResult } from '../../executor-CySfZPUK.js';
|
|
3
|
+
import '../../type-utils-rTHUvEmt.js';
|
|
4
4
|
import 'kysely';
|
|
5
5
|
|
|
6
6
|
interface PostgresAdapterRequirements {
|
|
@@ -17,12 +17,8 @@ declare function createPostgresAdapter(requirements: PostgresAdapterRequirements
|
|
|
17
17
|
* Example: '(0,23)' represents the 24th row in the first block of the table.
|
|
18
18
|
*/
|
|
19
19
|
type CTIDasText = `(${number},${number})`;
|
|
20
|
-
|
|
21
|
-
* Returns a query that selects all columns from a table, along with the `ctid` column, and unbound row count as `oid` (reserved column name that cannot conflict with user columns).
|
|
22
|
-
*/
|
|
23
|
-
declare function getSelectQuery(details: AdapterQueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
20
|
+
declare function getSelectQuery(details: QueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
24
21
|
[x: string]: unknown;
|
|
25
|
-
oid: `${number}`;
|
|
26
22
|
ctid: `(${number},${number})`;
|
|
27
23
|
}>;
|
|
28
24
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{a,b,c,d,e,f,g}from"../../chunk-
|
|
1
|
+
import{a,b,c,d,e,f,g}from"../../chunk-YMPRBKIC.js";import"../../chunk-2FW6TKD6.js";export{g as createPostgresAdapter,a as getSelectQuery,c as getTablesQuery,e as getTimezoneQuery,b as mockSelectQuery,d as mockTablesQuery,f as mockTimezoneQuery};
|