@prisma/studio-core 0.0.0-dev.202504301346 → 0.0.0-dev.202504301349
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/{chunk-TCZDODDW.js → chunk-L52Z6B5Q.js} +1 -1
- package/dist/data/pglite/index.cjs +1 -1
- 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 +6 -0
- package/dist/data/postgres-core/index.d.ts +6 -0
- package/dist/data/postgres-core/index.js +1 -1
- package/package.json +1 -1
|
@@ -81,6 +81,7 @@ declare function getTablesQuery(requirements?: Omit<BuilderRequirements, "Adapte
|
|
|
81
81
|
datatype: string;
|
|
82
82
|
pk: boolean;
|
|
83
83
|
computed: boolean;
|
|
84
|
+
notnull: boolean;
|
|
84
85
|
}[];
|
|
85
86
|
}>;
|
|
86
87
|
/**
|
|
@@ -94,26 +95,31 @@ declare function mockTablesQuery(): [{
|
|
|
94
95
|
readonly datatype: "bigint";
|
|
95
96
|
readonly pk: true;
|
|
96
97
|
readonly computed: false;
|
|
98
|
+
readonly notnull: true;
|
|
97
99
|
}, {
|
|
98
100
|
readonly name: "name";
|
|
99
101
|
readonly datatype: "varchar";
|
|
100
102
|
readonly pk: false;
|
|
101
103
|
readonly computed: false;
|
|
104
|
+
readonly notnull: true;
|
|
102
105
|
}, {
|
|
103
106
|
readonly name: "role";
|
|
104
107
|
readonly datatype: "varchar";
|
|
105
108
|
readonly pk: false;
|
|
106
109
|
readonly computed: false;
|
|
110
|
+
readonly notnull: true;
|
|
107
111
|
}, {
|
|
108
112
|
readonly name: "created_at";
|
|
109
113
|
readonly datatype: "timestamptz";
|
|
110
114
|
readonly pk: false;
|
|
111
115
|
readonly computed: false;
|
|
116
|
+
readonly notnull: true;
|
|
112
117
|
}, {
|
|
113
118
|
readonly name: "deleted_at";
|
|
114
119
|
readonly datatype: "timestamptz";
|
|
115
120
|
readonly pk: false;
|
|
116
121
|
readonly computed: false;
|
|
122
|
+
readonly notnull: true;
|
|
117
123
|
}];
|
|
118
124
|
}];
|
|
119
125
|
/**
|
|
@@ -81,6 +81,7 @@ declare function getTablesQuery(requirements?: Omit<BuilderRequirements, "Adapte
|
|
|
81
81
|
datatype: string;
|
|
82
82
|
pk: boolean;
|
|
83
83
|
computed: boolean;
|
|
84
|
+
notnull: boolean;
|
|
84
85
|
}[];
|
|
85
86
|
}>;
|
|
86
87
|
/**
|
|
@@ -94,26 +95,31 @@ declare function mockTablesQuery(): [{
|
|
|
94
95
|
readonly datatype: "bigint";
|
|
95
96
|
readonly pk: true;
|
|
96
97
|
readonly computed: false;
|
|
98
|
+
readonly notnull: true;
|
|
97
99
|
}, {
|
|
98
100
|
readonly name: "name";
|
|
99
101
|
readonly datatype: "varchar";
|
|
100
102
|
readonly pk: false;
|
|
101
103
|
readonly computed: false;
|
|
104
|
+
readonly notnull: true;
|
|
102
105
|
}, {
|
|
103
106
|
readonly name: "role";
|
|
104
107
|
readonly datatype: "varchar";
|
|
105
108
|
readonly pk: false;
|
|
106
109
|
readonly computed: false;
|
|
110
|
+
readonly notnull: true;
|
|
107
111
|
}, {
|
|
108
112
|
readonly name: "created_at";
|
|
109
113
|
readonly datatype: "timestamptz";
|
|
110
114
|
readonly pk: false;
|
|
111
115
|
readonly computed: false;
|
|
116
|
+
readonly notnull: true;
|
|
112
117
|
}, {
|
|
113
118
|
readonly name: "deleted_at";
|
|
114
119
|
readonly datatype: "timestamptz";
|
|
115
120
|
readonly pk: false;
|
|
116
121
|
readonly computed: false;
|
|
122
|
+
readonly notnull: true;
|
|
117
123
|
}];
|
|
118
124
|
}];
|
|
119
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-L52Z6B5Q.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};
|