prisma 6.10.0-dev.2 → 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.
- package/build/index.js +64 -64
- package/package.json +14 -14
- package/prisma-client/generator-build/index.js +2 -2
- package/prisma-client/package.json +1 -1
- package/prisma-client/runtime/binary.js +2 -2
- package/prisma-client/runtime/binary.mjs +2 -2
- package/prisma-client/runtime/client.d.mts +19 -2
- package/prisma-client/runtime/client.d.ts +19 -2
- package/prisma-client/runtime/client.js +16 -16
- package/prisma-client/runtime/client.mjs +14 -14
- package/prisma-client/runtime/edge-esm.js +2 -2
- package/prisma-client/runtime/edge.d.ts +19 -2
- package/prisma-client/runtime/edge.js +2 -2
- package/prisma-client/runtime/library.d.mts +19 -2
- package/prisma-client/runtime/library.d.ts +19 -2
- package/prisma-client/runtime/library.js +2 -2
- package/prisma-client/runtime/library.mjs +2 -2
- package/prisma-client/runtime/react-native.d.ts +19 -2
- package/prisma-client/runtime/react-native.js +2 -2
- package/prisma-client/scripts/default-index.js +1 -1
@@ -1153,10 +1153,22 @@ declare type Error_2 = {
|
|
1153
1153
|
column?: string;
|
1154
1154
|
} | {
|
1155
1155
|
kind: 'UniqueConstraintViolation';
|
1156
|
-
|
1156
|
+
constraint?: {
|
1157
|
+
fields: string[];
|
1158
|
+
} | {
|
1159
|
+
index: string;
|
1160
|
+
} | {
|
1161
|
+
foreignKey: {};
|
1162
|
+
};
|
1157
1163
|
} | {
|
1158
1164
|
kind: 'NullConstraintViolation';
|
1159
|
-
|
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
|
-
|
1156
|
+
constraint?: {
|
1157
|
+
fields: string[];
|
1158
|
+
} | {
|
1159
|
+
index: string;
|
1160
|
+
} | {
|
1161
|
+
foreignKey: {};
|
1162
|
+
};
|
1157
1163
|
} | {
|
1158
1164
|
kind: 'NullConstraintViolation';
|
1159
|
-
|
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
|
} | {
|