@prisma/client-engine-runtime 6.8.0-dev.7 → 6.8.0-dev.9
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 -4
- package/dist/index.mjs +1 -4
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -518,9 +518,6 @@ function renderRawSql(sql, params) {
|
|
|
518
518
|
};
|
|
519
519
|
}
|
|
520
520
|
function toArgType(value) {
|
|
521
|
-
if (value === null) {
|
|
522
|
-
return "Int32";
|
|
523
|
-
}
|
|
524
521
|
if (typeof value === "string") {
|
|
525
522
|
return "Text";
|
|
526
523
|
}
|
|
@@ -536,7 +533,7 @@ function toArgType(value) {
|
|
|
536
533
|
if (isPrismaValuePlaceholder(value)) {
|
|
537
534
|
return placeholderTypeToArgType(value.prisma__value.type);
|
|
538
535
|
}
|
|
539
|
-
return "
|
|
536
|
+
return "Unknown";
|
|
540
537
|
}
|
|
541
538
|
function placeholderTypeToArgType(type) {
|
|
542
539
|
const typeMap = {
|
package/dist/index.mjs
CHANGED
|
@@ -476,9 +476,6 @@ function renderRawSql(sql, params) {
|
|
|
476
476
|
};
|
|
477
477
|
}
|
|
478
478
|
function toArgType(value) {
|
|
479
|
-
if (value === null) {
|
|
480
|
-
return "Int32";
|
|
481
|
-
}
|
|
482
479
|
if (typeof value === "string") {
|
|
483
480
|
return "Text";
|
|
484
481
|
}
|
|
@@ -494,7 +491,7 @@ function toArgType(value) {
|
|
|
494
491
|
if (isPrismaValuePlaceholder(value)) {
|
|
495
492
|
return placeholderTypeToArgType(value.prisma__value.type);
|
|
496
493
|
}
|
|
497
|
-
return "
|
|
494
|
+
return "Unknown";
|
|
498
495
|
}
|
|
499
496
|
function placeholderTypeToArgType(type) {
|
|
500
497
|
const typeMap = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/client-engine-runtime",
|
|
3
|
-
"version": "6.8.0-dev.
|
|
3
|
+
"version": "6.8.0-dev.9",
|
|
4
4
|
"description": "This package is intended for Prisma's internal use",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"nanoid": "5.1.5",
|
|
31
31
|
"ulid": "3.0.0",
|
|
32
32
|
"uuid": "11.1.0",
|
|
33
|
-
"@prisma/debug": "6.8.0-dev.
|
|
34
|
-
"@prisma/driver-adapter-utils": "6.8.0-dev.
|
|
33
|
+
"@prisma/debug": "6.8.0-dev.9",
|
|
34
|
+
"@prisma/driver-adapter-utils": "6.8.0-dev.9"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/jest": "29.5.14",
|