@prisma/client-generator-js 6.6.0-dev.102 → 6.6.0-dev.104

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 CHANGED
@@ -2519,7 +2519,7 @@ var package_default = {
2519
2519
  "@prisma/dmmf": "workspace:*",
2520
2520
  "@prisma/driver-adapter-utils": "workspace:*",
2521
2521
  "@prisma/engines": "workspace:*",
2522
- "@prisma/engines-version": "6.6.0-46.dc2c1279f201ab67d96815a69b3a831a2f89c207",
2522
+ "@prisma/engines-version": "6.6.0-47.4a9d50e6898ac0428d7dfd6aad4bd98fddb12229",
2523
2523
  "@prisma/fetch-engine": "workspace:*",
2524
2524
  "@prisma/generator": "workspace:*",
2525
2525
  "@prisma/generator-helper": "workspace:*",
@@ -2529,8 +2529,8 @@ var package_default = {
2529
2529
  "@prisma/migrate": "workspace:*",
2530
2530
  "@prisma/mini-proxy": "0.9.5",
2531
2531
  "@prisma/pg-worker": "workspace:*",
2532
- "@prisma/query-compiler-wasm": "6.6.0-46.dc2c1279f201ab67d96815a69b3a831a2f89c207",
2533
- "@prisma/query-engine-wasm": "6.6.0-46.dc2c1279f201ab67d96815a69b3a831a2f89c207",
2532
+ "@prisma/query-compiler-wasm": "6.6.0-47.4a9d50e6898ac0428d7dfd6aad4bd98fddb12229",
2533
+ "@prisma/query-engine-wasm": "6.6.0-47.4a9d50e6898ac0428d7dfd6aad4bd98fddb12229",
2534
2534
  "@prisma/ts-builders": "workspace:*",
2535
2535
  "@snaplet/copycat": "6.0.0",
2536
2536
  "@swc-node/register": "1.10.9",
@@ -6896,12 +6896,7 @@ To learn more about how to rename models, check out https://pris.ly/d/naming-mod
6896
6896
  });
6897
6897
  }
6898
6898
  const enginePath = clientEngineType === import_internals10.ClientEngineType.Library ? binaryPaths.libqueryEngine : binaryPaths.queryEngine;
6899
- if (!enginePath) {
6900
- throw new Error(
6901
- `Prisma Client needs \`${clientEngineType === import_internals10.ClientEngineType.Library ? "libqueryEngine" : "queryEngine"}\` in the \`binaryPaths\` object.`
6902
- );
6903
- }
6904
- if (copyEngine) {
6899
+ if (copyEngine && enginePath) {
6905
6900
  if (process.env.NETLIFY) {
6906
6901
  await (0, import_fs_extra.ensureDir)("/tmp/prisma-engines");
6907
6902
  }
@@ -7168,7 +7163,7 @@ var import_internals12 = require("@prisma/internals");
7168
7163
  var import_ts_pattern = require("ts-pattern");
7169
7164
 
7170
7165
  // package.json
7171
- var version = "6.6.0-dev.102";
7166
+ var version = "6.6.0-dev.104";
7172
7167
 
7173
7168
  // src/resolvePrismaClient.ts
7174
7169
  var import_promises2 = __toESM(require("node:fs/promises"));
package/dist/index.mjs CHANGED
@@ -2514,7 +2514,7 @@ var package_default = {
2514
2514
  "@prisma/dmmf": "workspace:*",
2515
2515
  "@prisma/driver-adapter-utils": "workspace:*",
2516
2516
  "@prisma/engines": "workspace:*",
2517
- "@prisma/engines-version": "6.6.0-46.dc2c1279f201ab67d96815a69b3a831a2f89c207",
2517
+ "@prisma/engines-version": "6.6.0-47.4a9d50e6898ac0428d7dfd6aad4bd98fddb12229",
2518
2518
  "@prisma/fetch-engine": "workspace:*",
2519
2519
  "@prisma/generator": "workspace:*",
2520
2520
  "@prisma/generator-helper": "workspace:*",
@@ -2524,8 +2524,8 @@ var package_default = {
2524
2524
  "@prisma/migrate": "workspace:*",
2525
2525
  "@prisma/mini-proxy": "0.9.5",
2526
2526
  "@prisma/pg-worker": "workspace:*",
2527
- "@prisma/query-compiler-wasm": "6.6.0-46.dc2c1279f201ab67d96815a69b3a831a2f89c207",
2528
- "@prisma/query-engine-wasm": "6.6.0-46.dc2c1279f201ab67d96815a69b3a831a2f89c207",
2527
+ "@prisma/query-compiler-wasm": "6.6.0-47.4a9d50e6898ac0428d7dfd6aad4bd98fddb12229",
2528
+ "@prisma/query-engine-wasm": "6.6.0-47.4a9d50e6898ac0428d7dfd6aad4bd98fddb12229",
2529
2529
  "@prisma/ts-builders": "workspace:*",
2530
2530
  "@snaplet/copycat": "6.0.0",
2531
2531
  "@swc-node/register": "1.10.9",
@@ -6894,12 +6894,7 @@ To learn more about how to rename models, check out https://pris.ly/d/naming-mod
6894
6894
  });
6895
6895
  }
6896
6896
  const enginePath = clientEngineType === ClientEngineType3.Library ? binaryPaths.libqueryEngine : binaryPaths.queryEngine;
6897
- if (!enginePath) {
6898
- throw new Error(
6899
- `Prisma Client needs \`${clientEngineType === ClientEngineType3.Library ? "libqueryEngine" : "queryEngine"}\` in the \`binaryPaths\` object.`
6900
- );
6901
- }
6902
- if (copyEngine) {
6897
+ if (copyEngine && enginePath) {
6903
6898
  if (process.env.NETLIFY) {
6904
6899
  await (0, import_fs_extra.ensureDir)("/tmp/prisma-engines");
6905
6900
  }
@@ -7166,7 +7161,7 @@ import { ClientEngineType as ClientEngineType4, getClientEngineType as getClient
7166
7161
  import { match } from "ts-pattern";
7167
7162
 
7168
7163
  // package.json
7169
- var version = "6.6.0-dev.102";
7164
+ var version = "6.6.0-dev.104";
7170
7165
 
7171
7166
  // src/resolvePrismaClient.ts
7172
7167
  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.6.0-dev.102",
3
+ "version": "6.6.0-dev.104",
4
4
  "description": "This package is intended for Prisma's internal use",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -25,7 +25,7 @@
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
27
  "@antfu/ni": "0.21.12",
28
- "@prisma/engines-version": "6.6.0-46.dc2c1279f201ab67d96815a69b3a831a2f89c207",
28
+ "@prisma/engines-version": "6.6.0-47.4a9d50e6898ac0428d7dfd6aad4bd98fddb12229",
29
29
  "ci-info": "4.2.0",
30
30
  "env-paths": "2.2.1",
31
31
  "indent-string": "4.0.0",
@@ -33,14 +33,14 @@
33
33
  "pkg-up": "3.1.0",
34
34
  "pluralize": "8.0.0",
35
35
  "ts-pattern": "5.6.2",
36
- "@prisma/debug": "6.6.0-dev.102",
37
- "@prisma/client-common": "6.6.0-dev.102",
38
- "@prisma/dmmf": "6.6.0-dev.102",
39
- "@prisma/generator": "6.6.0-dev.102",
40
- "@prisma/fetch-engine": "6.6.0-dev.102",
41
- "@prisma/get-platform": "6.6.0-dev.102",
42
- "@prisma/internals": "6.6.0-dev.102",
43
- "@prisma/ts-builders": "6.6.0-dev.102"
36
+ "@prisma/client-common": "6.6.0-dev.104",
37
+ "@prisma/debug": "6.6.0-dev.104",
38
+ "@prisma/fetch-engine": "6.6.0-dev.104",
39
+ "@prisma/generator": "6.6.0-dev.104",
40
+ "@prisma/get-platform": "6.6.0-dev.104",
41
+ "@prisma/internals": "6.6.0-dev.104",
42
+ "@prisma/ts-builders": "6.6.0-dev.104",
43
+ "@prisma/dmmf": "6.6.0-dev.104"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/pluralize": "0.0.33",