prisma 6.10.0-dev.3 → 6.10.0-dev.4

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.
@@ -1153,10 +1153,22 @@ declare type Error_2 = {
1153
1153
  column?: string;
1154
1154
  } | {
1155
1155
  kind: 'UniqueConstraintViolation';
1156
- fields: string[];
1156
+ constraint?: {
1157
+ fields: string[];
1158
+ } | {
1159
+ index: string;
1160
+ } | {
1161
+ foreignKey: {};
1162
+ };
1157
1163
  } | {
1158
1164
  kind: 'NullConstraintViolation';
1159
- fields: string[];
1165
+ constraint?: {
1166
+ fields: string[];
1167
+ } | {
1168
+ index: string;
1169
+ } | {
1170
+ foreignKey: {};
1171
+ };
1160
1172
  } | {
1161
1173
  kind: 'ForeignKeyConstraintViolation';
1162
1174
  constraint?: {
@@ -1189,6 +1201,11 @@ declare type Error_2 = {
1189
1201
  } | {
1190
1202
  kind: 'TooManyConnections';
1191
1203
  cause: string;
1204
+ } | {
1205
+ kind: 'ValueOutOfRange';
1206
+ cause: string;
1207
+ } | {
1208
+ kind: 'MissingFullTextSearchIndex';
1192
1209
  } | {
1193
1210
  kind: 'SocketTimeout';
1194
1211
  } | {
@@ -1153,10 +1153,22 @@ declare type Error_2 = {
1153
1153
  column?: string;
1154
1154
  } | {
1155
1155
  kind: 'UniqueConstraintViolation';
1156
- fields: string[];
1156
+ constraint?: {
1157
+ fields: string[];
1158
+ } | {
1159
+ index: string;
1160
+ } | {
1161
+ foreignKey: {};
1162
+ };
1157
1163
  } | {
1158
1164
  kind: 'NullConstraintViolation';
1159
- fields: string[];
1165
+ constraint?: {
1166
+ fields: string[];
1167
+ } | {
1168
+ index: string;
1169
+ } | {
1170
+ foreignKey: {};
1171
+ };
1160
1172
  } | {
1161
1173
  kind: 'ForeignKeyConstraintViolation';
1162
1174
  constraint?: {
@@ -1189,6 +1201,11 @@ declare type Error_2 = {
1189
1201
  } | {
1190
1202
  kind: 'TooManyConnections';
1191
1203
  cause: string;
1204
+ } | {
1205
+ kind: 'ValueOutOfRange';
1206
+ cause: string;
1207
+ } | {
1208
+ kind: 'MissingFullTextSearchIndex';
1192
1209
  } | {
1193
1210
  kind: 'SocketTimeout';
1194
1211
  } | {