@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.
@@ -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-TCZDODDW.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};
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};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/studio-core",
3
- "version": "0.0.0-dev.202504301346",
3
+ "version": "0.0.0-dev.202504301349",
4
4
  "description": "Modular Prisma Studio components",
5
5
  "type": "module",
6
6
  "sideEffects": false,