@prisma/client-engine-runtime 6.11.0-dev.34 → 6.11.0-dev.35
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/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -477,7 +477,7 @@ function renderErrorMessage(err) {
|
|
|
477
477
|
case "NullConstraintViolation":
|
|
478
478
|
return `Null constraint violation on the ${renderConstraint(err.cause.constraint)}`;
|
|
479
479
|
case "ValueOutOfRange":
|
|
480
|
-
return `Value out of range for the type
|
|
480
|
+
return `Value out of range for the type: ${err.cause.cause}`;
|
|
481
481
|
case "TableDoesNotExist": {
|
|
482
482
|
const table = err.cause.table ?? "(not available)";
|
|
483
483
|
return `The table \`${table}\` does not exist in the current database.`;
|
package/dist/index.mjs
CHANGED
|
@@ -429,7 +429,7 @@ function renderErrorMessage(err) {
|
|
|
429
429
|
case "NullConstraintViolation":
|
|
430
430
|
return `Null constraint violation on the ${renderConstraint(err.cause.constraint)}`;
|
|
431
431
|
case "ValueOutOfRange":
|
|
432
|
-
return `Value out of range for the type
|
|
432
|
+
return `Value out of range for the type: ${err.cause.cause}`;
|
|
433
433
|
case "TableDoesNotExist": {
|
|
434
434
|
const table = err.cause.table ?? "(not available)";
|
|
435
435
|
return `The table \`${table}\` does not exist in the current database.`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/client-engine-runtime",
|
|
3
|
-
"version": "6.11.0-dev.
|
|
3
|
+
"version": "6.11.0-dev.35",
|
|
4
4
|
"description": "This package is intended for Prisma's internal use",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"nanoid": "5.1.5",
|
|
32
32
|
"ulid": "3.0.0",
|
|
33
33
|
"uuid": "11.1.0",
|
|
34
|
-
"@prisma/debug": "6.11.0-dev.
|
|
35
|
-
"@prisma/driver-adapter-utils": "6.11.0-dev.
|
|
34
|
+
"@prisma/debug": "6.11.0-dev.35",
|
|
35
|
+
"@prisma/driver-adapter-utils": "6.11.0-dev.35"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/jest": "29.5.14",
|