@prisma/studio-core 0.0.0-dev.202504301412 → 0.0.0-dev.202504301553
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-DZMVLGcT.d.cts → adapter-D9mf0fDl.d.cts} +3 -10
- package/dist/{adapter-DZMVLGcT.d.ts → adapter-D9mf0fDl.d.ts} +3 -10
- package/dist/chunk-F6Y2SIK5.js +1 -0
- package/dist/chunk-RGBMDID6.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 +10 -16
- package/dist/data/postgres-core/index.d.ts +10 -16
- package/dist/data/postgres-core/index.js +1 -1
- package/dist/{index-tfZkctV4.d.cts → index-B19_fEW8.d.cts} +1 -1
- package/dist/{index-B2QY7jfB.d.ts → index-B9kfkRZt.d.ts} +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-76TBOC76.js +0 -1
- package/dist/chunk-U6LHXUXE.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-D9mf0fDl.cjs';
|
|
2
|
+
import { E as Executor, B as BuilderRequirements, Q as Query } from '../../index-B19_fEW8.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
|
-
oid: `${bigint}`;
|
|
42
41
|
ctid: `(${number},${number})`;
|
|
42
|
+
oid: `${bigint}`;
|
|
43
43
|
}>;
|
|
44
44
|
/**
|
|
45
45
|
* For testing purposes.
|
|
@@ -79,10 +79,9 @@ declare function getTablesQuery(requirements?: Omit<BuilderRequirements, "Adapte
|
|
|
79
79
|
columns: {
|
|
80
80
|
name: string;
|
|
81
81
|
datatype: string;
|
|
82
|
-
datatype_schema: string;
|
|
83
82
|
pk: boolean;
|
|
84
83
|
computed: boolean;
|
|
85
|
-
|
|
84
|
+
notnull: boolean;
|
|
86
85
|
}[];
|
|
87
86
|
}>;
|
|
88
87
|
/**
|
|
@@ -94,38 +93,33 @@ declare function mockTablesQuery(): [{
|
|
|
94
93
|
readonly columns: [{
|
|
95
94
|
readonly name: "id";
|
|
96
95
|
readonly datatype: "bigint";
|
|
97
|
-
readonly datatype_schema: "public";
|
|
98
96
|
readonly pk: true;
|
|
99
97
|
readonly computed: false;
|
|
100
|
-
readonly
|
|
98
|
+
readonly notnull: true;
|
|
101
99
|
}, {
|
|
102
100
|
readonly name: "name";
|
|
103
101
|
readonly datatype: "varchar";
|
|
104
|
-
readonly datatype_schema: "public";
|
|
105
102
|
readonly pk: false;
|
|
106
103
|
readonly computed: false;
|
|
107
|
-
readonly
|
|
104
|
+
readonly notnull: true;
|
|
108
105
|
}, {
|
|
109
106
|
readonly name: "role";
|
|
110
|
-
readonly datatype: "
|
|
111
|
-
readonly datatype_schema: "public";
|
|
107
|
+
readonly datatype: "varchar";
|
|
112
108
|
readonly pk: false;
|
|
113
109
|
readonly computed: false;
|
|
114
|
-
readonly
|
|
110
|
+
readonly notnull: true;
|
|
115
111
|
}, {
|
|
116
112
|
readonly name: "created_at";
|
|
117
113
|
readonly datatype: "timestamptz";
|
|
118
|
-
readonly datatype_schema: "public";
|
|
119
114
|
readonly pk: false;
|
|
120
115
|
readonly computed: false;
|
|
121
|
-
readonly
|
|
116
|
+
readonly notnull: true;
|
|
122
117
|
}, {
|
|
123
118
|
readonly name: "deleted_at";
|
|
124
119
|
readonly datatype: "timestamptz";
|
|
125
|
-
readonly datatype_schema: "public";
|
|
126
120
|
readonly pk: false;
|
|
127
121
|
readonly computed: false;
|
|
128
|
-
readonly
|
|
122
|
+
readonly notnull: true;
|
|
129
123
|
}];
|
|
130
124
|
}];
|
|
131
125
|
/**
|
|
@@ -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-D9mf0fDl.js';
|
|
2
|
+
import { E as Executor, B as BuilderRequirements, Q as Query } from '../../index-B9kfkRZt.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
|
-
oid: `${bigint}`;
|
|
42
41
|
ctid: `(${number},${number})`;
|
|
42
|
+
oid: `${bigint}`;
|
|
43
43
|
}>;
|
|
44
44
|
/**
|
|
45
45
|
* For testing purposes.
|
|
@@ -79,10 +79,9 @@ declare function getTablesQuery(requirements?: Omit<BuilderRequirements, "Adapte
|
|
|
79
79
|
columns: {
|
|
80
80
|
name: string;
|
|
81
81
|
datatype: string;
|
|
82
|
-
datatype_schema: string;
|
|
83
82
|
pk: boolean;
|
|
84
83
|
computed: boolean;
|
|
85
|
-
|
|
84
|
+
notnull: boolean;
|
|
86
85
|
}[];
|
|
87
86
|
}>;
|
|
88
87
|
/**
|
|
@@ -94,38 +93,33 @@ declare function mockTablesQuery(): [{
|
|
|
94
93
|
readonly columns: [{
|
|
95
94
|
readonly name: "id";
|
|
96
95
|
readonly datatype: "bigint";
|
|
97
|
-
readonly datatype_schema: "public";
|
|
98
96
|
readonly pk: true;
|
|
99
97
|
readonly computed: false;
|
|
100
|
-
readonly
|
|
98
|
+
readonly notnull: true;
|
|
101
99
|
}, {
|
|
102
100
|
readonly name: "name";
|
|
103
101
|
readonly datatype: "varchar";
|
|
104
|
-
readonly datatype_schema: "public";
|
|
105
102
|
readonly pk: false;
|
|
106
103
|
readonly computed: false;
|
|
107
|
-
readonly
|
|
104
|
+
readonly notnull: true;
|
|
108
105
|
}, {
|
|
109
106
|
readonly name: "role";
|
|
110
|
-
readonly datatype: "
|
|
111
|
-
readonly datatype_schema: "public";
|
|
107
|
+
readonly datatype: "varchar";
|
|
112
108
|
readonly pk: false;
|
|
113
109
|
readonly computed: false;
|
|
114
|
-
readonly
|
|
110
|
+
readonly notnull: true;
|
|
115
111
|
}, {
|
|
116
112
|
readonly name: "created_at";
|
|
117
113
|
readonly datatype: "timestamptz";
|
|
118
|
-
readonly datatype_schema: "public";
|
|
119
114
|
readonly pk: false;
|
|
120
115
|
readonly computed: false;
|
|
121
|
-
readonly
|
|
116
|
+
readonly notnull: true;
|
|
122
117
|
}, {
|
|
123
118
|
readonly name: "deleted_at";
|
|
124
119
|
readonly datatype: "timestamptz";
|
|
125
|
-
readonly datatype_schema: "public";
|
|
126
120
|
readonly pk: false;
|
|
127
121
|
readonly computed: false;
|
|
128
|
-
readonly
|
|
122
|
+
readonly notnull: true;
|
|
129
123
|
}];
|
|
130
124
|
}];
|
|
131
125
|
/**
|
|
@@ -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-F6Y2SIK5.js";import"../../chunk-RGBMDID6.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};
|