@prisma/client-generator-js 7.5.0-dev.28 → 7.5.0-dev.29
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 +4 -2
- package/dist/index.mjs +4 -2
- package/package.json +10 -10
package/dist/index.js
CHANGED
|
@@ -5567,7 +5567,9 @@ var PrismaClientClass = class {
|
|
|
5567
5567
|
* Type-safe database client for TypeScript & Node.js
|
|
5568
5568
|
* @example
|
|
5569
5569
|
* \`\`\`
|
|
5570
|
-
* const prisma = new PrismaClient(
|
|
5570
|
+
* const prisma = new PrismaClient({
|
|
5571
|
+
* adapter: new PrismaPg({ connectionString: process.env.DATABASE_URL })
|
|
5572
|
+
* })
|
|
5571
5573
|
* // Fetch zero or more ${(0, import_client_common15.capitalize)(example.plural)}
|
|
5572
5574
|
* const ${(0, import_client_common15.uncapitalize)(example.plural)} = await prisma.${(0, import_client_common15.uncapitalize)(example.model)}.findMany()
|
|
5573
5575
|
* \`\`\`
|
|
@@ -6830,7 +6832,7 @@ var import_engines_version = require("@prisma/engines-version");
|
|
|
6830
6832
|
var import_internals9 = require("@prisma/internals");
|
|
6831
6833
|
|
|
6832
6834
|
// package.json
|
|
6833
|
-
var version = "7.5.0-dev.
|
|
6835
|
+
var version = "7.5.0-dev.29";
|
|
6834
6836
|
|
|
6835
6837
|
// src/resolvePrismaClient.ts
|
|
6836
6838
|
var import_promises2 = __toESM(require("node:fs/promises"));
|
package/dist/index.mjs
CHANGED
|
@@ -5559,7 +5559,9 @@ var PrismaClientClass = class {
|
|
|
5559
5559
|
* Type-safe database client for TypeScript & Node.js
|
|
5560
5560
|
* @example
|
|
5561
5561
|
* \`\`\`
|
|
5562
|
-
* const prisma = new PrismaClient(
|
|
5562
|
+
* const prisma = new PrismaClient({
|
|
5563
|
+
* adapter: new PrismaPg({ connectionString: process.env.DATABASE_URL })
|
|
5564
|
+
* })
|
|
5563
5565
|
* // Fetch zero or more ${capitalize7(example.plural)}
|
|
5564
5566
|
* const ${uncapitalize7(example.plural)} = await prisma.${uncapitalize7(example.model)}.findMany()
|
|
5565
5567
|
* \`\`\`
|
|
@@ -6822,7 +6824,7 @@ import { enginesVersion } from "@prisma/engines-version";
|
|
|
6822
6824
|
import { parseEnvValue } from "@prisma/internals";
|
|
6823
6825
|
|
|
6824
6826
|
// package.json
|
|
6825
|
-
var version = "7.5.0-dev.
|
|
6827
|
+
var version = "7.5.0-dev.29";
|
|
6826
6828
|
|
|
6827
6829
|
// src/resolvePrismaClient.ts
|
|
6828
6830
|
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": "7.5.0-dev.
|
|
3
|
+
"version": "7.5.0-dev.29",
|
|
4
4
|
"description": "This package is intended for Prisma's internal use",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
"package-up": "5.0.0",
|
|
33
33
|
"pluralize": "8.0.0",
|
|
34
34
|
"ts-pattern": "5.6.2",
|
|
35
|
-
"@prisma/
|
|
36
|
-
"@prisma/
|
|
37
|
-
"@prisma/fetch-engine": "7.5.0-dev.
|
|
38
|
-
"@prisma/
|
|
39
|
-
"@prisma/
|
|
40
|
-
"@prisma/
|
|
41
|
-
"@prisma/internals": "7.5.0-dev.
|
|
42
|
-
"@prisma/
|
|
43
|
-
"@prisma/
|
|
35
|
+
"@prisma/client-common": "7.5.0-dev.29",
|
|
36
|
+
"@prisma/debug": "7.5.0-dev.29",
|
|
37
|
+
"@prisma/fetch-engine": "7.5.0-dev.29",
|
|
38
|
+
"@prisma/dmmf": "7.5.0-dev.29",
|
|
39
|
+
"@prisma/get-platform": "7.5.0-dev.29",
|
|
40
|
+
"@prisma/generator": "7.5.0-dev.29",
|
|
41
|
+
"@prisma/internals": "7.5.0-dev.29",
|
|
42
|
+
"@prisma/param-graph-builder": "7.5.0-dev.29",
|
|
43
|
+
"@prisma/ts-builders": "7.5.0-dev.29"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/pluralize": "0.0.33"
|