@prisma/studio-core 0.0.0-dev.202505010952 → 0.0.0-dev.202505011022
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-B9MiXpUz.d.cts → adapter-CcM-aqXZ.d.cts} +1 -0
- package/dist/{adapter-B9MiXpUz.d.ts → adapter-CcM-aqXZ.d.ts} +1 -0
- package/dist/{chunk-OF2BKSP4.js → chunk-XYXPPYJ6.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 +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-BQXHy3Nu.d.ts → index-CNZOC3Ts.d.ts} +1 -1
- package/dist/{index-CWPK1srI.d.cts → index-sTB0qn_S.d.cts} +1 -1
- package/dist/ui/index.cjs +22 -22
- 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
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as Adapter, T as Table, a as AdapterInsertDetails, b as AdapterQueryDetails, c as AdapterUpdateDetails, d as AdapterDeleteDetails } 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, d as AdapterDeleteDetails } from '../../adapter-CcM-aqXZ.cjs';
|
|
2
|
+
import { E as Executor, B as BuilderRequirements, Q as Query } from '../../index-sTB0qn_S.cjs';
|
|
3
3
|
import * as kysely from 'kysely';
|
|
4
4
|
|
|
5
5
|
interface PostgresAdapterRequirements {
|
|
@@ -86,6 +86,7 @@ declare function getTablesQuery(requirements?: Omit<BuilderRequirements, "Adapte
|
|
|
86
86
|
datatype_schema: string;
|
|
87
87
|
pk: boolean;
|
|
88
88
|
computed: boolean;
|
|
89
|
+
notnull: boolean;
|
|
89
90
|
options: string[];
|
|
90
91
|
}[];
|
|
91
92
|
}>;
|
|
@@ -102,6 +103,7 @@ declare function mockTablesQuery(): [{
|
|
|
102
103
|
readonly pk: true;
|
|
103
104
|
readonly computed: false;
|
|
104
105
|
readonly options: [];
|
|
106
|
+
readonly notnull: true;
|
|
105
107
|
}, {
|
|
106
108
|
readonly name: "name";
|
|
107
109
|
readonly datatype: "varchar";
|
|
@@ -109,6 +111,7 @@ declare function mockTablesQuery(): [{
|
|
|
109
111
|
readonly pk: false;
|
|
110
112
|
readonly computed: false;
|
|
111
113
|
readonly options: [];
|
|
114
|
+
readonly notnull: true;
|
|
112
115
|
}, {
|
|
113
116
|
readonly name: "role";
|
|
114
117
|
readonly datatype: "role";
|
|
@@ -116,6 +119,7 @@ declare function mockTablesQuery(): [{
|
|
|
116
119
|
readonly pk: false;
|
|
117
120
|
readonly computed: false;
|
|
118
121
|
readonly options: ["admin", "maintainer", "member"];
|
|
122
|
+
readonly notnull: true;
|
|
119
123
|
}, {
|
|
120
124
|
readonly name: "created_at";
|
|
121
125
|
readonly datatype: "timestamptz";
|
|
@@ -123,6 +127,7 @@ declare function mockTablesQuery(): [{
|
|
|
123
127
|
readonly pk: false;
|
|
124
128
|
readonly computed: false;
|
|
125
129
|
readonly options: [];
|
|
130
|
+
readonly notnull: true;
|
|
126
131
|
}, {
|
|
127
132
|
readonly name: "deleted_at";
|
|
128
133
|
readonly datatype: "timestamptz";
|
|
@@ -130,6 +135,7 @@ declare function mockTablesQuery(): [{
|
|
|
130
135
|
readonly pk: false;
|
|
131
136
|
readonly computed: false;
|
|
132
137
|
readonly options: [];
|
|
138
|
+
readonly notnull: true;
|
|
133
139
|
}];
|
|
134
140
|
}];
|
|
135
141
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as Adapter, T as Table, a as AdapterInsertDetails, b as AdapterQueryDetails, c as AdapterUpdateDetails, d as AdapterDeleteDetails } 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, d as AdapterDeleteDetails } from '../../adapter-CcM-aqXZ.js';
|
|
2
|
+
import { E as Executor, B as BuilderRequirements, Q as Query } from '../../index-CNZOC3Ts.js';
|
|
3
3
|
import * as kysely from 'kysely';
|
|
4
4
|
|
|
5
5
|
interface PostgresAdapterRequirements {
|
|
@@ -86,6 +86,7 @@ declare function getTablesQuery(requirements?: Omit<BuilderRequirements, "Adapte
|
|
|
86
86
|
datatype_schema: string;
|
|
87
87
|
pk: boolean;
|
|
88
88
|
computed: boolean;
|
|
89
|
+
notnull: boolean;
|
|
89
90
|
options: string[];
|
|
90
91
|
}[];
|
|
91
92
|
}>;
|
|
@@ -102,6 +103,7 @@ declare function mockTablesQuery(): [{
|
|
|
102
103
|
readonly pk: true;
|
|
103
104
|
readonly computed: false;
|
|
104
105
|
readonly options: [];
|
|
106
|
+
readonly notnull: true;
|
|
105
107
|
}, {
|
|
106
108
|
readonly name: "name";
|
|
107
109
|
readonly datatype: "varchar";
|
|
@@ -109,6 +111,7 @@ declare function mockTablesQuery(): [{
|
|
|
109
111
|
readonly pk: false;
|
|
110
112
|
readonly computed: false;
|
|
111
113
|
readonly options: [];
|
|
114
|
+
readonly notnull: true;
|
|
112
115
|
}, {
|
|
113
116
|
readonly name: "role";
|
|
114
117
|
readonly datatype: "role";
|
|
@@ -116,6 +119,7 @@ declare function mockTablesQuery(): [{
|
|
|
116
119
|
readonly pk: false;
|
|
117
120
|
readonly computed: false;
|
|
118
121
|
readonly options: ["admin", "maintainer", "member"];
|
|
122
|
+
readonly notnull: true;
|
|
119
123
|
}, {
|
|
120
124
|
readonly name: "created_at";
|
|
121
125
|
readonly datatype: "timestamptz";
|
|
@@ -123,6 +127,7 @@ declare function mockTablesQuery(): [{
|
|
|
123
127
|
readonly pk: false;
|
|
124
128
|
readonly computed: false;
|
|
125
129
|
readonly options: [];
|
|
130
|
+
readonly notnull: true;
|
|
126
131
|
}, {
|
|
127
132
|
readonly name: "deleted_at";
|
|
128
133
|
readonly datatype: "timestamptz";
|
|
@@ -130,6 +135,7 @@ declare function mockTablesQuery(): [{
|
|
|
130
135
|
readonly pk: false;
|
|
131
136
|
readonly computed: false;
|
|
132
137
|
readonly options: [];
|
|
138
|
+
readonly notnull: true;
|
|
133
139
|
}];
|
|
134
140
|
}];
|
|
135
141
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{a,b,c,d,e,f,g,h,i,j,k}from"../../chunk-
|
|
1
|
+
import{a,b,c,d,e,f,g,h,i,j,k}from"../../chunk-XYXPPYJ6.js";import"../../chunk-GNXJUBVK.js";import"../../chunk-BMVJYUJW.js";export{j as createPostgresAdapter,e as getDeleteQuery,a as getInsertQuery,b as getSelectQuery,f as getTablesQuery,h as getTimezoneQuery,d as getUpdateQuery,k as mockIntrospect,c as mockSelectQuery,g as mockTablesQuery,i as mockTimezoneQuery};
|