@prisma/studio-core 0.0.0-dev.202504301553 → 0.0.0-dev.202504301809
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-D9mf0fDl.d.cts → adapter-DZMVLGcT.d.cts} +10 -3
- package/dist/{adapter-D9mf0fDl.d.ts → adapter-DZMVLGcT.d.ts} +10 -3
- package/dist/chunk-ESRQTUP7.js +1 -0
- package/dist/chunk-U6LHXUXE.js +1 -0
- 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 +2 -2
- package/dist/data/index.d.ts +2 -2
- package/dist/data/index.js +1 -1
- package/dist/data/pglite/index.cjs +1 -1
- package/dist/data/pglite/index.d.cts +2 -2
- package/dist/data/pglite/index.d.ts +2 -2
- 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 +16 -10
- package/dist/data/postgres-core/index.d.ts +16 -10
- package/dist/data/postgres-core/index.js +1 -1
- package/dist/{index-B9kfkRZt.d.ts → index-B2QY7jfB.d.ts} +1 -1
- package/dist/{index-B19_fEW8.d.cts → index-tfZkctV4.d.cts} +1 -1
- package/dist/ui/index.cjs +21 -21
- package/dist/ui/index.d.cts +1 -1
- package/dist/ui/index.d.ts +1 -1
- package/dist/ui/index.js +2 -2
- package/package.json +2 -2
- package/dist/chunk-F6Y2SIK5.js +0 -1
- package/dist/chunk-RGBMDID6.js +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as Adapter, T as Table, a as AdapterInsertDetails, b as AdapterQueryDetails, c as AdapterUpdateDetails } from '../../adapter-
|
|
2
|
-
import { E as Executor, B as BuilderRequirements, Q as Query } from '../../index-
|
|
1
|
+
import { A as Adapter, T as Table, a as AdapterInsertDetails, b as AdapterQueryDetails, c as AdapterUpdateDetails } from '../../adapter-DZMVLGcT.cjs';
|
|
2
|
+
import { E as Executor, B as BuilderRequirements, Q as Query } from '../../index-tfZkctV4.cjs';
|
|
3
3
|
import 'kysely';
|
|
4
4
|
|
|
5
5
|
interface PostgresAdapterRequirements {
|
|
@@ -38,8 +38,8 @@ declare function getInsertQuery(details: AdapterInsertDetails, requirements?: Om
|
|
|
38
38
|
*/
|
|
39
39
|
declare function getSelectQuery(details: AdapterQueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
40
40
|
[x: string]: unknown;
|
|
41
|
-
ctid: `(${number},${number})`;
|
|
42
41
|
oid: `${bigint}`;
|
|
42
|
+
ctid: `(${number},${number})`;
|
|
43
43
|
}>;
|
|
44
44
|
/**
|
|
45
45
|
* For testing purposes.
|
|
@@ -79,9 +79,10 @@ declare function getTablesQuery(requirements?: Omit<BuilderRequirements, "Adapte
|
|
|
79
79
|
columns: {
|
|
80
80
|
name: string;
|
|
81
81
|
datatype: string;
|
|
82
|
+
datatype_schema: string;
|
|
82
83
|
pk: boolean;
|
|
83
84
|
computed: boolean;
|
|
84
|
-
|
|
85
|
+
options: string[];
|
|
85
86
|
}[];
|
|
86
87
|
}>;
|
|
87
88
|
/**
|
|
@@ -93,33 +94,38 @@ declare function mockTablesQuery(): [{
|
|
|
93
94
|
readonly columns: [{
|
|
94
95
|
readonly name: "id";
|
|
95
96
|
readonly datatype: "bigint";
|
|
97
|
+
readonly datatype_schema: "public";
|
|
96
98
|
readonly pk: true;
|
|
97
99
|
readonly computed: false;
|
|
98
|
-
readonly
|
|
100
|
+
readonly options: [];
|
|
99
101
|
}, {
|
|
100
102
|
readonly name: "name";
|
|
101
103
|
readonly datatype: "varchar";
|
|
104
|
+
readonly datatype_schema: "public";
|
|
102
105
|
readonly pk: false;
|
|
103
106
|
readonly computed: false;
|
|
104
|
-
readonly
|
|
107
|
+
readonly options: [];
|
|
105
108
|
}, {
|
|
106
109
|
readonly name: "role";
|
|
107
|
-
readonly datatype: "
|
|
110
|
+
readonly datatype: "role";
|
|
111
|
+
readonly datatype_schema: "public";
|
|
108
112
|
readonly pk: false;
|
|
109
113
|
readonly computed: false;
|
|
110
|
-
readonly
|
|
114
|
+
readonly options: ["admin", "maintainer", "member"];
|
|
111
115
|
}, {
|
|
112
116
|
readonly name: "created_at";
|
|
113
117
|
readonly datatype: "timestamptz";
|
|
118
|
+
readonly datatype_schema: "public";
|
|
114
119
|
readonly pk: false;
|
|
115
120
|
readonly computed: false;
|
|
116
|
-
readonly
|
|
121
|
+
readonly options: [];
|
|
117
122
|
}, {
|
|
118
123
|
readonly name: "deleted_at";
|
|
119
124
|
readonly datatype: "timestamptz";
|
|
125
|
+
readonly datatype_schema: "public";
|
|
120
126
|
readonly pk: false;
|
|
121
127
|
readonly computed: false;
|
|
122
|
-
readonly
|
|
128
|
+
readonly options: [];
|
|
123
129
|
}];
|
|
124
130
|
}];
|
|
125
131
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as Adapter, T as Table, a as AdapterInsertDetails, b as AdapterQueryDetails, c as AdapterUpdateDetails } from '../../adapter-
|
|
2
|
-
import { E as Executor, B as BuilderRequirements, Q as Query } from '../../index-
|
|
1
|
+
import { A as Adapter, T as Table, a as AdapterInsertDetails, b as AdapterQueryDetails, c as AdapterUpdateDetails } from '../../adapter-DZMVLGcT.js';
|
|
2
|
+
import { E as Executor, B as BuilderRequirements, Q as Query } from '../../index-B2QY7jfB.js';
|
|
3
3
|
import 'kysely';
|
|
4
4
|
|
|
5
5
|
interface PostgresAdapterRequirements {
|
|
@@ -38,8 +38,8 @@ declare function getInsertQuery(details: AdapterInsertDetails, requirements?: Om
|
|
|
38
38
|
*/
|
|
39
39
|
declare function getSelectQuery(details: AdapterQueryDetails, requirements?: Omit<BuilderRequirements, "Adapter" | "QueryCompiler">): Query<{
|
|
40
40
|
[x: string]: unknown;
|
|
41
|
-
ctid: `(${number},${number})`;
|
|
42
41
|
oid: `${bigint}`;
|
|
42
|
+
ctid: `(${number},${number})`;
|
|
43
43
|
}>;
|
|
44
44
|
/**
|
|
45
45
|
* For testing purposes.
|
|
@@ -79,9 +79,10 @@ declare function getTablesQuery(requirements?: Omit<BuilderRequirements, "Adapte
|
|
|
79
79
|
columns: {
|
|
80
80
|
name: string;
|
|
81
81
|
datatype: string;
|
|
82
|
+
datatype_schema: string;
|
|
82
83
|
pk: boolean;
|
|
83
84
|
computed: boolean;
|
|
84
|
-
|
|
85
|
+
options: string[];
|
|
85
86
|
}[];
|
|
86
87
|
}>;
|
|
87
88
|
/**
|
|
@@ -93,33 +94,38 @@ declare function mockTablesQuery(): [{
|
|
|
93
94
|
readonly columns: [{
|
|
94
95
|
readonly name: "id";
|
|
95
96
|
readonly datatype: "bigint";
|
|
97
|
+
readonly datatype_schema: "public";
|
|
96
98
|
readonly pk: true;
|
|
97
99
|
readonly computed: false;
|
|
98
|
-
readonly
|
|
100
|
+
readonly options: [];
|
|
99
101
|
}, {
|
|
100
102
|
readonly name: "name";
|
|
101
103
|
readonly datatype: "varchar";
|
|
104
|
+
readonly datatype_schema: "public";
|
|
102
105
|
readonly pk: false;
|
|
103
106
|
readonly computed: false;
|
|
104
|
-
readonly
|
|
107
|
+
readonly options: [];
|
|
105
108
|
}, {
|
|
106
109
|
readonly name: "role";
|
|
107
|
-
readonly datatype: "
|
|
110
|
+
readonly datatype: "role";
|
|
111
|
+
readonly datatype_schema: "public";
|
|
108
112
|
readonly pk: false;
|
|
109
113
|
readonly computed: false;
|
|
110
|
-
readonly
|
|
114
|
+
readonly options: ["admin", "maintainer", "member"];
|
|
111
115
|
}, {
|
|
112
116
|
readonly name: "created_at";
|
|
113
117
|
readonly datatype: "timestamptz";
|
|
118
|
+
readonly datatype_schema: "public";
|
|
114
119
|
readonly pk: false;
|
|
115
120
|
readonly computed: false;
|
|
116
|
-
readonly
|
|
121
|
+
readonly options: [];
|
|
117
122
|
}, {
|
|
118
123
|
readonly name: "deleted_at";
|
|
119
124
|
readonly datatype: "timestamptz";
|
|
125
|
+
readonly datatype_schema: "public";
|
|
120
126
|
readonly pk: false;
|
|
121
127
|
readonly computed: false;
|
|
122
|
-
readonly
|
|
128
|
+
readonly options: [];
|
|
123
129
|
}];
|
|
124
130
|
}];
|
|
125
131
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{a,b,c,d,e,f,g,h,i,j}from"../../chunk-
|
|
1
|
+
import{a,b,c,d,e,f,g,h,i,j}from"../../chunk-ESRQTUP7.js";import"../../chunk-U6LHXUXE.js";import"../../chunk-BMVJYUJW.js";export{i as createPostgresAdapter,a as getInsertQuery,b as getSelectQuery,e as getTablesQuery,g as getTimezoneQuery,d as getUpdateQuery,j as mockIntrospect,c as mockSelectQuery,f as mockTablesQuery,h as mockTimezoneQuery};
|