@prisma/studio-core 0.0.0-dev.202504301105 → 0.0.0-dev.202504301134
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-BJtXh9Gf.d.cts → adapter-Dkdfzt2T.d.cts} +4 -0
- package/dist/{adapter-BJtXh9Gf.d.ts → adapter-Dkdfzt2T.d.ts} +4 -0
- package/dist/chunk-RH33JWPP.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/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 +8 -2
- package/dist/data/postgres-core/index.d.ts +8 -2
- package/dist/data/postgres-core/index.js +1 -1
- package/dist/{index-Dq8DiI_o.d.cts → index-BdW64k25.d.cts} +1 -1
- package/dist/{index-fE6YzF75.d.ts → index-C7A_pCvW.d.ts} +1 -1
- package/dist/ui/index.cjs +32 -32
- package/dist/ui/index.css +12 -36
- 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 +1 -1
- package/dist/chunk-TCZDODDW.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-Dkdfzt2T.cjs';
|
|
2
|
+
import { E as Executor, B as BuilderRequirements, Q as Query } from '../../index-BdW64k25.cjs';
|
|
3
3
|
import 'kysely';
|
|
4
4
|
|
|
5
5
|
interface PostgresAdapterRequirements {
|
|
@@ -79,6 +79,7 @@ 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
|
}[];
|
|
@@ -92,26 +93,31 @@ declare function mockTablesQuery(): [{
|
|
|
92
93
|
readonly columns: [{
|
|
93
94
|
readonly name: "id";
|
|
94
95
|
readonly datatype: "bigint";
|
|
96
|
+
readonly datatype_schema: "public";
|
|
95
97
|
readonly pk: true;
|
|
96
98
|
readonly computed: false;
|
|
97
99
|
}, {
|
|
98
100
|
readonly name: "name";
|
|
99
101
|
readonly datatype: "varchar";
|
|
102
|
+
readonly datatype_schema: "public";
|
|
100
103
|
readonly pk: false;
|
|
101
104
|
readonly computed: false;
|
|
102
105
|
}, {
|
|
103
106
|
readonly name: "role";
|
|
104
107
|
readonly datatype: "varchar";
|
|
108
|
+
readonly datatype_schema: "public";
|
|
105
109
|
readonly pk: false;
|
|
106
110
|
readonly computed: false;
|
|
107
111
|
}, {
|
|
108
112
|
readonly name: "created_at";
|
|
109
113
|
readonly datatype: "timestamptz";
|
|
114
|
+
readonly datatype_schema: "public";
|
|
110
115
|
readonly pk: false;
|
|
111
116
|
readonly computed: false;
|
|
112
117
|
}, {
|
|
113
118
|
readonly name: "deleted_at";
|
|
114
119
|
readonly datatype: "timestamptz";
|
|
120
|
+
readonly datatype_schema: "public";
|
|
115
121
|
readonly pk: false;
|
|
116
122
|
readonly computed: false;
|
|
117
123
|
}];
|
|
@@ -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-Dkdfzt2T.js';
|
|
2
|
+
import { E as Executor, B as BuilderRequirements, Q as Query } from '../../index-C7A_pCvW.js';
|
|
3
3
|
import 'kysely';
|
|
4
4
|
|
|
5
5
|
interface PostgresAdapterRequirements {
|
|
@@ -79,6 +79,7 @@ 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
|
}[];
|
|
@@ -92,26 +93,31 @@ declare function mockTablesQuery(): [{
|
|
|
92
93
|
readonly columns: [{
|
|
93
94
|
readonly name: "id";
|
|
94
95
|
readonly datatype: "bigint";
|
|
96
|
+
readonly datatype_schema: "public";
|
|
95
97
|
readonly pk: true;
|
|
96
98
|
readonly computed: false;
|
|
97
99
|
}, {
|
|
98
100
|
readonly name: "name";
|
|
99
101
|
readonly datatype: "varchar";
|
|
102
|
+
readonly datatype_schema: "public";
|
|
100
103
|
readonly pk: false;
|
|
101
104
|
readonly computed: false;
|
|
102
105
|
}, {
|
|
103
106
|
readonly name: "role";
|
|
104
107
|
readonly datatype: "varchar";
|
|
108
|
+
readonly datatype_schema: "public";
|
|
105
109
|
readonly pk: false;
|
|
106
110
|
readonly computed: false;
|
|
107
111
|
}, {
|
|
108
112
|
readonly name: "created_at";
|
|
109
113
|
readonly datatype: "timestamptz";
|
|
114
|
+
readonly datatype_schema: "public";
|
|
110
115
|
readonly pk: false;
|
|
111
116
|
readonly computed: false;
|
|
112
117
|
}, {
|
|
113
118
|
readonly name: "deleted_at";
|
|
114
119
|
readonly datatype: "timestamptz";
|
|
120
|
+
readonly datatype_schema: "public";
|
|
115
121
|
readonly pk: false;
|
|
116
122
|
readonly computed: false;
|
|
117
123
|
}];
|
|
@@ -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-RH33JWPP.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};
|