@prisma/client-generator-js 6.18.0-integration-next.8 → 6.18.0-integration-next.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 +20 -14
- package/dist/index.mjs +20 -14
- package/package.json +9 -9
package/dist/index.js
CHANGED
|
@@ -3104,7 +3104,6 @@ var package_default = {
|
|
|
3104
3104
|
arg: "5.0.2",
|
|
3105
3105
|
benchmark: "2.1.4",
|
|
3106
3106
|
"cookie-es": "2.0.0",
|
|
3107
|
-
"decimal.js": "10.5.0",
|
|
3108
3107
|
execa: "8.0.1",
|
|
3109
3108
|
"expect-type": "1.2.2",
|
|
3110
3109
|
"fs-extra": "11.3.0",
|
|
@@ -3129,7 +3128,6 @@ var package_default = {
|
|
|
3129
3128
|
"simple-statistics": "7.8.8",
|
|
3130
3129
|
"sort-keys": "5.1.0",
|
|
3131
3130
|
"source-map-support": "0.5.21",
|
|
3132
|
-
"sql-template-tag": "5.2.1",
|
|
3133
3131
|
"stacktrace-parser": "0.1.11",
|
|
3134
3132
|
"strip-ansi": "7.1.0",
|
|
3135
3133
|
"strip-indent": "4.0.0",
|
|
@@ -3140,6 +3138,9 @@ var package_default = {
|
|
|
3140
3138
|
undici: "7.4.0",
|
|
3141
3139
|
zx: "8.4.1"
|
|
3142
3140
|
},
|
|
3141
|
+
dependencies: {
|
|
3142
|
+
"@prisma/client-runtime-utils": "workspace:*"
|
|
3143
|
+
},
|
|
3143
3144
|
peerDependencies: {
|
|
3144
3145
|
prisma: "*",
|
|
3145
3146
|
typescript: ">=5.4.0"
|
|
@@ -5359,7 +5360,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5359
5360
|
${browser ? `
|
|
5360
5361
|
const {
|
|
5361
5362
|
Decimal,
|
|
5362
|
-
|
|
5363
|
+
DbNull,
|
|
5364
|
+
JsonNull,
|
|
5365
|
+
AnyNull,
|
|
5366
|
+
NullTypes,
|
|
5363
5367
|
makeStrictEnum,
|
|
5364
5368
|
Public,
|
|
5365
5369
|
getRuntime,
|
|
@@ -5380,7 +5384,10 @@ const {
|
|
|
5380
5384
|
skip,
|
|
5381
5385
|
Decimal,
|
|
5382
5386
|
Debug,
|
|
5383
|
-
|
|
5387
|
+
DbNull,
|
|
5388
|
+
JsonNull,
|
|
5389
|
+
AnyNull,
|
|
5390
|
+
NullTypes,
|
|
5384
5391
|
makeStrictEnum,
|
|
5385
5392
|
Extensions,
|
|
5386
5393
|
warnOnce,
|
|
@@ -5430,15 +5437,11 @@ Prisma.defineExtension = ${notSupportOnBrowser("Extensions.defineExtension", bro
|
|
|
5430
5437
|
/**
|
|
5431
5438
|
* Shorthand utilities for JSON filtering
|
|
5432
5439
|
*/
|
|
5433
|
-
Prisma.DbNull =
|
|
5434
|
-
Prisma.JsonNull =
|
|
5435
|
-
Prisma.AnyNull =
|
|
5440
|
+
Prisma.DbNull = DbNull
|
|
5441
|
+
Prisma.JsonNull = JsonNull
|
|
5442
|
+
Prisma.AnyNull = AnyNull
|
|
5436
5443
|
|
|
5437
|
-
Prisma.NullTypes =
|
|
5438
|
-
DbNull: objectEnumValues.classes.DbNull,
|
|
5439
|
-
JsonNull: objectEnumValues.classes.JsonNull,
|
|
5440
|
-
AnyNull: objectEnumValues.classes.AnyNull
|
|
5441
|
-
}
|
|
5444
|
+
Prisma.NullTypes = NullTypes
|
|
5442
5445
|
|
|
5443
5446
|
${buildPrismaSkipJs(generator.previewFeatures)}
|
|
5444
5447
|
`;
|
|
@@ -7266,7 +7269,10 @@ async function buildClient({
|
|
|
7266
7269
|
".": exportsMapDefault
|
|
7267
7270
|
},
|
|
7268
7271
|
version: clientVersion,
|
|
7269
|
-
sideEffects: false
|
|
7272
|
+
sideEffects: false,
|
|
7273
|
+
dependencies: {
|
|
7274
|
+
"@prisma/client-runtime-utils": clientVersion
|
|
7275
|
+
}
|
|
7270
7276
|
};
|
|
7271
7277
|
const fileMap = {};
|
|
7272
7278
|
fileMap["index.js"] = JS(nodeClient);
|
|
@@ -7737,7 +7743,7 @@ var import_internals12 = require("@prisma/internals");
|
|
|
7737
7743
|
var import_ts_pattern = require("ts-pattern");
|
|
7738
7744
|
|
|
7739
7745
|
// package.json
|
|
7740
|
-
var version = "6.18.0-integration-next.
|
|
7746
|
+
var version = "6.18.0-integration-next.9";
|
|
7741
7747
|
|
|
7742
7748
|
// src/resolvePrismaClient.ts
|
|
7743
7749
|
var import_promises3 = __toESM(require("node:fs/promises"));
|
package/dist/index.mjs
CHANGED
|
@@ -3099,7 +3099,6 @@ var package_default = {
|
|
|
3099
3099
|
arg: "5.0.2",
|
|
3100
3100
|
benchmark: "2.1.4",
|
|
3101
3101
|
"cookie-es": "2.0.0",
|
|
3102
|
-
"decimal.js": "10.5.0",
|
|
3103
3102
|
execa: "8.0.1",
|
|
3104
3103
|
"expect-type": "1.2.2",
|
|
3105
3104
|
"fs-extra": "11.3.0",
|
|
@@ -3124,7 +3123,6 @@ var package_default = {
|
|
|
3124
3123
|
"simple-statistics": "7.8.8",
|
|
3125
3124
|
"sort-keys": "5.1.0",
|
|
3126
3125
|
"source-map-support": "0.5.21",
|
|
3127
|
-
"sql-template-tag": "5.2.1",
|
|
3128
3126
|
"stacktrace-parser": "0.1.11",
|
|
3129
3127
|
"strip-ansi": "7.1.0",
|
|
3130
3128
|
"strip-indent": "4.0.0",
|
|
@@ -3135,6 +3133,9 @@ var package_default = {
|
|
|
3135
3133
|
undici: "7.4.0",
|
|
3136
3134
|
zx: "8.4.1"
|
|
3137
3135
|
},
|
|
3136
|
+
dependencies: {
|
|
3137
|
+
"@prisma/client-runtime-utils": "workspace:*"
|
|
3138
|
+
},
|
|
3138
3139
|
peerDependencies: {
|
|
3139
3140
|
prisma: "*",
|
|
3140
3141
|
typescript: ">=5.4.0"
|
|
@@ -5357,7 +5358,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5357
5358
|
${browser ? `
|
|
5358
5359
|
const {
|
|
5359
5360
|
Decimal,
|
|
5360
|
-
|
|
5361
|
+
DbNull,
|
|
5362
|
+
JsonNull,
|
|
5363
|
+
AnyNull,
|
|
5364
|
+
NullTypes,
|
|
5361
5365
|
makeStrictEnum,
|
|
5362
5366
|
Public,
|
|
5363
5367
|
getRuntime,
|
|
@@ -5378,7 +5382,10 @@ const {
|
|
|
5378
5382
|
skip,
|
|
5379
5383
|
Decimal,
|
|
5380
5384
|
Debug,
|
|
5381
|
-
|
|
5385
|
+
DbNull,
|
|
5386
|
+
JsonNull,
|
|
5387
|
+
AnyNull,
|
|
5388
|
+
NullTypes,
|
|
5382
5389
|
makeStrictEnum,
|
|
5383
5390
|
Extensions,
|
|
5384
5391
|
warnOnce,
|
|
@@ -5428,15 +5435,11 @@ Prisma.defineExtension = ${notSupportOnBrowser("Extensions.defineExtension", bro
|
|
|
5428
5435
|
/**
|
|
5429
5436
|
* Shorthand utilities for JSON filtering
|
|
5430
5437
|
*/
|
|
5431
|
-
Prisma.DbNull =
|
|
5432
|
-
Prisma.JsonNull =
|
|
5433
|
-
Prisma.AnyNull =
|
|
5438
|
+
Prisma.DbNull = DbNull
|
|
5439
|
+
Prisma.JsonNull = JsonNull
|
|
5440
|
+
Prisma.AnyNull = AnyNull
|
|
5434
5441
|
|
|
5435
|
-
Prisma.NullTypes =
|
|
5436
|
-
DbNull: objectEnumValues.classes.DbNull,
|
|
5437
|
-
JsonNull: objectEnumValues.classes.JsonNull,
|
|
5438
|
-
AnyNull: objectEnumValues.classes.AnyNull
|
|
5439
|
-
}
|
|
5442
|
+
Prisma.NullTypes = NullTypes
|
|
5440
5443
|
|
|
5441
5444
|
${buildPrismaSkipJs(generator.previewFeatures)}
|
|
5442
5445
|
`;
|
|
@@ -7264,7 +7267,10 @@ async function buildClient({
|
|
|
7264
7267
|
".": exportsMapDefault
|
|
7265
7268
|
},
|
|
7266
7269
|
version: clientVersion,
|
|
7267
|
-
sideEffects: false
|
|
7270
|
+
sideEffects: false,
|
|
7271
|
+
dependencies: {
|
|
7272
|
+
"@prisma/client-runtime-utils": clientVersion
|
|
7273
|
+
}
|
|
7268
7274
|
};
|
|
7269
7275
|
const fileMap = {};
|
|
7270
7276
|
fileMap["index.js"] = JS(nodeClient);
|
|
@@ -7735,7 +7741,7 @@ import { ClientEngineType as ClientEngineType4, getClientEngineType as getClient
|
|
|
7735
7741
|
import { match } from "ts-pattern";
|
|
7736
7742
|
|
|
7737
7743
|
// package.json
|
|
7738
|
-
var version = "6.18.0-integration-next.
|
|
7744
|
+
var version = "6.18.0-integration-next.9";
|
|
7739
7745
|
|
|
7740
7746
|
// src/resolvePrismaClient.ts
|
|
7741
7747
|
import fs2 from "node:fs/promises";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/client-generator-js",
|
|
3
|
-
"version": "6.18.0-integration-next.
|
|
3
|
+
"version": "6.18.0-integration-next.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",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"package-up": "5.0.0",
|
|
34
34
|
"pluralize": "8.0.0",
|
|
35
35
|
"ts-pattern": "5.6.2",
|
|
36
|
-
"@prisma/client-common": "6.18.0-integration-next.
|
|
37
|
-
"@prisma/dmmf": "6.18.0-integration-next.
|
|
38
|
-
"@prisma/
|
|
39
|
-
"@prisma/
|
|
40
|
-
"@prisma/
|
|
41
|
-
"@prisma/
|
|
42
|
-
"@prisma/
|
|
43
|
-
"@prisma/
|
|
36
|
+
"@prisma/client-common": "6.18.0-integration-next.9",
|
|
37
|
+
"@prisma/dmmf": "6.18.0-integration-next.9",
|
|
38
|
+
"@prisma/fetch-engine": "6.18.0-integration-next.9",
|
|
39
|
+
"@prisma/generator": "6.18.0-integration-next.9",
|
|
40
|
+
"@prisma/get-platform": "6.18.0-integration-next.9",
|
|
41
|
+
"@prisma/internals": "6.18.0-integration-next.9",
|
|
42
|
+
"@prisma/ts-builders": "6.18.0-integration-next.9",
|
|
43
|
+
"@prisma/debug": "6.18.0-integration-next.9"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/pluralize": "0.0.33",
|