@prisma/internals 5.23.0-dev.10 → 5.23.0-dev.12

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.
Files changed (50) hide show
  1. package/dist/chunk-2DXAGCPS.js +177 -0
  2. package/dist/chunk-5XRQ7ONW.js +122 -0
  3. package/dist/{chunk-SU3OJZZ5.js → chunk-75GSZEOY.js} +5 -5
  4. package/dist/{chunk-U6RRYHPS.js → chunk-AWPFLVB6.js} +19 -19
  5. package/dist/{chunk-6KUNW3T3.js → chunk-D4G3OMDH.js} +5 -5
  6. package/dist/{chunk-DH3P5MF7.js → chunk-D7G6TRG2.js} +5 -5
  7. package/dist/{chunk-TYOA3XAC.js → chunk-DMI3QKHF.js} +5 -5
  8. package/dist/{chunk-DKBMHP43.js → chunk-DSDTYXB5.js} +5 -5
  9. package/dist/{chunk-E6OPGGI2.js → chunk-IQ3XPQFI.js} +8 -8
  10. package/dist/{chunk-6U45LURI.js → chunk-JLJYCGJU.js} +8 -8
  11. package/dist/{chunk-PXPJFESL.js → chunk-KLZW2JAY.js} +7 -7
  12. package/dist/{chunk-LAOAENWL.js → chunk-NYIVM3HW.js} +5 -5
  13. package/dist/{chunk-SCBVWSLF.js → chunk-NZYA5YF6.js} +5 -5
  14. package/dist/{chunk-WOLPLTU4.js → chunk-OSPVVLY6.js} +8 -8
  15. package/dist/{chunk-M55HSMEB.js → chunk-PFZMGDZR.js} +7 -7
  16. package/dist/chunk-QIVUAERL.js +2202 -0
  17. package/dist/chunk-QJZIYUVB.js +110 -0
  18. package/dist/chunk-TFSZCVKC.js +166 -0
  19. package/dist/chunk-V2VWODV3.js +54 -0
  20. package/dist/{chunk-YUPIZFLE.js → chunk-VVOW6SAQ.js} +24 -795
  21. package/dist/{chunk-7ESJUH2Q.js → chunk-WSIDY2ZO.js} +5 -5
  22. package/dist/{chunk-AUELQSCO.js → chunk-XBTZEROW.js} +5 -5
  23. package/dist/{chunk-PG3P725O.js → chunk-XQUZGA2G.js} +4 -4
  24. package/dist/{chunk-KE7FUFII.js → chunk-YTL7KK6P.js} +8 -8
  25. package/dist/{chunk-O33RZNYT.js → chunk-ZPRI5BMZ.js} +8 -8
  26. package/dist/{chunk-FV73WJY2.js → chunk-ZZV6DPK5.js} +8 -8
  27. package/dist/cli/checkUnsupportedDataProxy.js +12 -12
  28. package/dist/cli/getSchema.js +17 -17
  29. package/dist/cli/hashes.js +12 -12
  30. package/dist/engine-commands/errorHelpers.js +4 -4
  31. package/dist/engine-commands/formatSchema.js +11 -11
  32. package/dist/engine-commands/getConfig.js +10 -10
  33. package/dist/engine-commands/getDmmf.js +7 -7
  34. package/dist/engine-commands/index.js +20 -20
  35. package/dist/engine-commands/lintSchema.js +8 -8
  36. package/dist/engine-commands/mergeSchemas.js +7 -7
  37. package/dist/engine-commands/validate.js +7 -7
  38. package/dist/get-generators/generatorResolvers/generatorResolvers.js +11 -11
  39. package/dist/get-generators/generatorResolvers/prisma-client-js/check-dependencies/checkTypeScriptVersion.js +11 -11
  40. package/dist/get-generators/generatorResolvers/prisma-client-js/check-dependencies/checkYarnVersion.js +11 -11
  41. package/dist/get-generators/generatorResolvers/prisma-client-js/prismaClientResolver.js +12 -12
  42. package/dist/get-generators/getGenerators.js +14 -14
  43. package/dist/index.js +39 -39
  44. package/dist/sendPanic.js +11 -11
  45. package/dist/utils/getEnvPaths.js +11 -11
  46. package/dist/utils/getVersionFromPackageJson.js +3 -3
  47. package/dist/utils/handlePanic.js +11 -11
  48. package/dist/utils/loadEnvFile.js +11 -11
  49. package/dist/wasm.js +4 -4
  50. package/package.json +8 -8
@@ -0,0 +1,177 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+ var chunk_2DXAGCPS_exports = {};
30
+ __export(chunk_2DXAGCPS_exports, {
31
+ getEnginesInfo: () => getEnginesInfo,
32
+ getEnginesMetaInfo: () => getEnginesMetaInfo,
33
+ resolveEngine: () => resolveEngine
34
+ });
35
+ module.exports = __toCommonJS(chunk_2DXAGCPS_exports);
36
+ var import_chunk_PFLLVWZX = require("./chunk-PFLLVWZX.js");
37
+ var import_chunk_V2VWODV3 = require("./chunk-V2VWODV3.js");
38
+ var import_chunk_H3T4L34H = require("./chunk-H3T4L34H.js");
39
+ var import_chunk_QJZIYUVB = require("./chunk-QJZIYUVB.js");
40
+ var import_chunk_7MD6344A = require("./chunk-7MD6344A.js");
41
+ var import_chunk_WWAWV7DQ = require("./chunk-WWAWV7DQ.js");
42
+ var import_engines = require("@prisma/engines");
43
+ var import_fetch_engine = require("@prisma/fetch-engine");
44
+ var import_path = __toESM(require("path"));
45
+ var import_function2 = (0, import_chunk_WWAWV7DQ.__toESM)((0, import_chunk_PFLLVWZX.require_function)());
46
+ var none2 = import_chunk_7MD6344A.none;
47
+ var some2 = import_chunk_7MD6344A.some;
48
+ var getRight = function(ma) {
49
+ return ma._tag === "Left" ? none2 : some2(ma.right);
50
+ };
51
+ var _map = function(fa, f) {
52
+ return (0, import_chunk_7MD6344A.pipe)(fa, map(f));
53
+ };
54
+ var _ap = function(fab, fa) {
55
+ return (0, import_chunk_7MD6344A.pipe)(fab, ap(fa));
56
+ };
57
+ var URI = "Option";
58
+ var map = function(f) {
59
+ return function(fa) {
60
+ return isNone(fa) ? none2 : some2(f(fa.value));
61
+ };
62
+ };
63
+ var Functor = {
64
+ URI,
65
+ map: _map
66
+ };
67
+ var as2 = (0, import_chunk_7MD6344A.dual)(2, (0, import_chunk_7MD6344A.as)(Functor));
68
+ var asUnit2 = (0, import_chunk_7MD6344A.asUnit)(Functor);
69
+ var ap = function(fa) {
70
+ return function(fab) {
71
+ return isNone(fab) ? none2 : isNone(fa) ? none2 : some2(fab.value(fa.value));
72
+ };
73
+ };
74
+ var flatMap = /* @__PURE__ */ (0, import_chunk_7MD6344A.dual)(2, function(ma, f) {
75
+ return isNone(ma) ? none2 : f(ma.value);
76
+ });
77
+ var Chain = {
78
+ URI,
79
+ map: _map,
80
+ ap: _ap,
81
+ chain: flatMap
82
+ };
83
+ var orElse = (0, import_chunk_7MD6344A.dual)(2, function(self, that) {
84
+ return isNone(self) ? that() : self;
85
+ });
86
+ var fromEither2 = getRight;
87
+ var FromEither = {
88
+ URI,
89
+ fromEither: fromEither2
90
+ };
91
+ var isSome2 = import_chunk_7MD6344A.isSome;
92
+ var isNone = function(fa) {
93
+ return fa._tag === "None";
94
+ };
95
+ var matchW = function(onNone, onSome) {
96
+ return function(ma) {
97
+ return isNone(ma) ? onNone() : onSome(ma.value);
98
+ };
99
+ };
100
+ var match = matchW;
101
+ var fold = match;
102
+ var tap2 = /* @__PURE__ */ (0, import_chunk_7MD6344A.dual)(2, (0, import_chunk_7MD6344A.tap)(Chain));
103
+ var tapEither2 = /* @__PURE__ */ (0, import_chunk_7MD6344A.dual)(2, (0, import_chunk_7MD6344A.tapEither)(FromEither, Chain));
104
+ var fromNullable = function(a) {
105
+ return a == null ? none2 : some2(a);
106
+ };
107
+ async function getEnginesMetaInfo() {
108
+ const cliQueryEngineBinaryType = (0, import_engines.getCliQueryEngineBinaryType)();
109
+ const engines = [
110
+ {
111
+ name: "query-engine",
112
+ type: cliQueryEngineBinaryType
113
+ },
114
+ {
115
+ name: "schema-engine",
116
+ type: import_fetch_engine.BinaryType.SchemaEngineBinary
117
+ }
118
+ ];
119
+ const enginePromises = engines.map(({ name, type }) => {
120
+ return resolveEngine(type).then((result) => [name, result]);
121
+ });
122
+ const engineMatrix = await Promise.all(enginePromises).then(Object.fromEntries);
123
+ const engineDataAcc = engines.map(({ name }) => {
124
+ const [engineInfo, errors] = getEnginesInfo(engineMatrix[name]);
125
+ return [{ [name]: engineInfo }, errors];
126
+ });
127
+ const engineMetaInfo = engineDataAcc.map((arr) => arr[0]);
128
+ const enginesMetaInfoErrors = engineDataAcc.flatMap((arr) => arr[1]);
129
+ return [engineMetaInfo, enginesMetaInfoErrors];
130
+ }
131
+ function getEnginesInfo(enginesInfo) {
132
+ const errors = [];
133
+ const resolved = (0, import_chunk_H3T4L34H.$)(enginesInfo).with({ fromEnvVar: import_chunk_H3T4L34H.N.when(isSome2) }, (_engineInfo) => {
134
+ return `, resolved by ${_engineInfo.fromEnvVar.value}`;
135
+ }).otherwise(() => "");
136
+ const absolutePath = (0, import_chunk_H3T4L34H.$)(enginesInfo).with({ path: import_chunk_H3T4L34H.N.when(import_chunk_7MD6344A.isRight) }, (_engineInfo) => {
137
+ return _engineInfo.path.right;
138
+ }).with({ path: import_chunk_H3T4L34H.N.when(import_chunk_7MD6344A.isLeft) }, (_engineInfo) => {
139
+ errors.push(_engineInfo.path.left);
140
+ return "E_CANNOT_RESOLVE_PATH";
141
+ }).exhaustive();
142
+ const version = (0, import_chunk_H3T4L34H.$)(enginesInfo).with({ version: import_chunk_H3T4L34H.N.when(import_chunk_7MD6344A.isRight) }, (_engineInfo) => {
143
+ return _engineInfo.version.right;
144
+ }).with({ version: import_chunk_H3T4L34H.N.when(import_chunk_7MD6344A.isLeft) }, (_engineInfo) => {
145
+ errors.push(_engineInfo.version.left);
146
+ return "E_CANNOT_RESOLVE_VERSION";
147
+ }).exhaustive();
148
+ const versionMessage = `${version} (at ${import_path.default.relative(process.cwd(), absolutePath)}${resolved})`;
149
+ return [versionMessage, errors];
150
+ }
151
+ async function resolveEngine(binaryName) {
152
+ const pathFromEnvOption = fromNullable((0, import_fetch_engine.getBinaryEnvVarPath)(binaryName));
153
+ const fromEnvVarOption = (0, import_function2.pipe)(
154
+ pathFromEnvOption,
155
+ map((p) => p.fromEnvVar)
156
+ );
157
+ const enginePathEither = await (0, import_function2.pipe)(
158
+ pathFromEnvOption,
159
+ fold(
160
+ () => (0, import_chunk_QJZIYUVB.safeResolveBinary)(binaryName),
161
+ (pathFromEnv) => (0, import_chunk_7MD6344A.right2)(pathFromEnv.path)
162
+ )
163
+ )();
164
+ const versionEither = await (0, import_function2.pipe)(
165
+ enginePathEither,
166
+ import_chunk_7MD6344A.fromEither,
167
+ (0, import_chunk_7MD6344A.chain)((enginePath) => {
168
+ return (0, import_chunk_V2VWODV3.safeGetEngineVersion)(enginePath, binaryName);
169
+ })
170
+ )();
171
+ const engineInfo = {
172
+ path: enginePathEither,
173
+ version: versionEither,
174
+ fromEnvVar: fromEnvVarOption
175
+ };
176
+ return engineInfo;
177
+ }
@@ -0,0 +1,122 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM2 = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+ var chunk_5XRQ7ONW_exports = {};
30
+ __export(chunk_5XRQ7ONW_exports, {
31
+ getBinaryPathsByVersion: () => getBinaryPathsByVersion
32
+ });
33
+ module.exports = __toCommonJS(chunk_5XRQ7ONW_exports);
34
+ var import_chunk_RS2R7COT = require("./chunk-RS2R7COT.js");
35
+ var import_chunk_4CGPN5SR = require("./chunk-4CGPN5SR.js");
36
+ var import_chunk_2SDPW6AX = require("./chunk-2SDPW6AX.js");
37
+ var import_chunk_7B5PXS6N = require("./chunk-7B5PXS6N.js");
38
+ var import_chunk_QIVUAERL = require("./chunk-QIVUAERL.js");
39
+ var import_chunk_WWAWV7DQ = require("./chunk-WWAWV7DQ.js");
40
+ var import_engines = require("@prisma/engines");
41
+ var import_fetch_engine = require("@prisma/fetch-engine");
42
+ var import_path = __toESM2(require("path"));
43
+ var import_fs_extra = (0, import_chunk_WWAWV7DQ.__toESM)((0, import_chunk_QIVUAERL.require_lib)());
44
+ async function getBinaryPathsByVersion({
45
+ neededVersions,
46
+ binaryTarget,
47
+ version,
48
+ printDownloadProgress,
49
+ skipDownload,
50
+ binaryPathsOverride
51
+ }) {
52
+ const binaryPathsByVersion = /* @__PURE__ */ Object.create(null);
53
+ for (const currentVersion in neededVersions) {
54
+ binaryPathsByVersion[currentVersion] = {};
55
+ const neededVersion = neededVersions[currentVersion];
56
+ if (neededVersion.binaryTargets.length === 0) {
57
+ neededVersion.binaryTargets = [{ fromEnvVar: null, value: binaryTarget }];
58
+ }
59
+ if (process.env.NETLIFY) {
60
+ const isNodeMajor20OrUp = parseInt(process.versions.node.split(".")[0]) >= 20;
61
+ const awsRuntimeVersion = (0, import_chunk_2SDPW6AX.parseAWSNodejsRuntimeEnvVarVersion)();
62
+ const isRuntimeEnvVar20OrUp = awsRuntimeVersion && awsRuntimeVersion >= 20;
63
+ const isRuntimeEnvVar18OrDown = awsRuntimeVersion && awsRuntimeVersion <= 18;
64
+ const isRhelBinaryTarget1xInNeededVersions = neededVersion.binaryTargets.find(
65
+ (object) => object.value === "rhel-openssl-1.0.x"
66
+ );
67
+ const isRhelBinaryTarget3xInNeededVersions = neededVersion.binaryTargets.find(
68
+ (object) => object.value === "rhel-openssl-3.0.x"
69
+ );
70
+ if (!isRhelBinaryTarget3xInNeededVersions && (isNodeMajor20OrUp || isRuntimeEnvVar20OrUp) && !isRuntimeEnvVar18OrDown) {
71
+ neededVersion.binaryTargets.push({
72
+ fromEnvVar: null,
73
+ value: "rhel-openssl-3.0.x"
74
+ });
75
+ } else if (!isRhelBinaryTarget1xInNeededVersions) {
76
+ neededVersion.binaryTargets.push({
77
+ fromEnvVar: null,
78
+ value: "rhel-openssl-1.0.x"
79
+ });
80
+ }
81
+ }
82
+ let binaryTargetBaseDir = eval(`require('path').join(__dirname, '..')`);
83
+ if (version !== currentVersion) {
84
+ binaryTargetBaseDir = import_path.default.join(binaryTargetBaseDir, `./engines/${currentVersion}/`);
85
+ await (0, import_fs_extra.ensureDir)(binaryTargetBaseDir).catch((e) => console.error(e));
86
+ }
87
+ const binariesConfig = neededVersion.engines.reduce((acc, curr) => {
88
+ if (!binaryPathsOverride?.[curr]) {
89
+ acc[(0, import_chunk_4CGPN5SR.engineTypeToBinaryType)(curr)] = binaryTargetBaseDir;
90
+ }
91
+ return acc;
92
+ }, /* @__PURE__ */ Object.create(null));
93
+ if (Object.values(binariesConfig).length > 0) {
94
+ const binaryTargets = neededVersion.binaryTargets.map(
95
+ (binaryTarget2) => binaryTarget2.value
96
+ );
97
+ const downloadParams = {
98
+ binaries: binariesConfig,
99
+ binaryTargets,
100
+ showProgress: typeof printDownloadProgress === "boolean" ? printDownloadProgress : true,
101
+ version: currentVersion && currentVersion !== "latest" ? currentVersion : import_engines.enginesVersion,
102
+ skipDownload
103
+ };
104
+ const binaryPathsWithEngineType = await (0, import_fetch_engine.download)(downloadParams);
105
+ const binaryPaths = (0, import_chunk_7B5PXS6N.mapKeys)(binaryPathsWithEngineType, import_chunk_RS2R7COT.binaryTypeToEngineType);
106
+ binaryPathsByVersion[currentVersion] = binaryPaths;
107
+ }
108
+ if (binaryPathsOverride) {
109
+ const overrideEngines = Object.keys(binaryPathsOverride);
110
+ const enginesCoveredByOverride = neededVersion.engines.filter((engine) => overrideEngines.includes(engine));
111
+ if (enginesCoveredByOverride.length > 0) {
112
+ for (const engine of enginesCoveredByOverride) {
113
+ const enginePath = binaryPathsOverride[engine];
114
+ binaryPathsByVersion[currentVersion][engine] = {
115
+ [binaryTarget]: enginePath
116
+ };
117
+ }
118
+ }
119
+ }
120
+ }
121
+ return binaryPathsByVersion;
122
+ }
@@ -16,17 +16,17 @@ var __copyProps = (to, from, except, desc) => {
16
16
  return to;
17
17
  };
18
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
- var chunk_SU3OJZZ5_exports = {};
20
- __export(chunk_SU3OJZZ5_exports, {
19
+ var chunk_75GSZEOY_exports = {};
20
+ __export(chunk_75GSZEOY_exports, {
21
21
  require_package: () => require_package
22
22
  });
23
- module.exports = __toCommonJS(chunk_SU3OJZZ5_exports);
23
+ module.exports = __toCommonJS(chunk_75GSZEOY_exports);
24
24
  var import_chunk_WWAWV7DQ = require("./chunk-WWAWV7DQ.js");
25
25
  var require_package = (0, import_chunk_WWAWV7DQ.__commonJS)({
26
26
  "package.json"(exports, module2) {
27
27
  module2.exports = {
28
28
  name: "@prisma/internals",
29
- version: "5.23.0-dev.10",
29
+ version: "5.23.0-dev.12",
30
30
  description: "This package is intended for Prisma's internal use",
31
31
  main: "dist/index.js",
32
32
  types: "dist/index.d.ts",
@@ -111,7 +111,7 @@ var require_package = (0, import_chunk_WWAWV7DQ.__commonJS)({
111
111
  "@prisma/fetch-engine": "workspace:*",
112
112
  "@prisma/generator-helper": "workspace:*",
113
113
  "@prisma/get-platform": "workspace:*",
114
- "@prisma/prisma-schema-wasm": "5.23.0-9.378004bf583e0d2e7846a4fe191c0f97c2303ab3",
114
+ "@prisma/prisma-schema-wasm": "5.23.0-10.5b155e0290acbe06ba32edc234026b6943efee9a",
115
115
  "@prisma/schema-files-loader": "workspace:*",
116
116
  arg: "5.0.2",
117
117
  prompts: "2.4.2"
@@ -26,8 +26,8 @@ var __toESM2 = (mod, isNodeMode, target) => (target = mod != null ? __create(__g
26
26
  mod
27
27
  ));
28
28
  var __toCommonJS2 = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
- var chunk_U6RRYHPS_exports = {};
30
- __export2(chunk_U6RRYHPS_exports, {
29
+ var chunk_AWPFLVB6_exports = {};
30
+ __export2(chunk_AWPFLVB6_exports, {
31
31
  checkTypeScriptVersion: () => checkTypeScriptVersion,
32
32
  checkUnsupportedDataProxy: () => checkUnsupportedDataProxy,
33
33
  checkYarnVersion: () => checkYarnVersion,
@@ -56,7 +56,7 @@ __export2(chunk_U6RRYHPS_exports, {
56
56
  sendPanic: () => sendPanic,
57
57
  skipIndex: () => skipIndex
58
58
  });
59
- module.exports = __toCommonJS2(chunk_U6RRYHPS_exports);
59
+ module.exports = __toCommonJS2(chunk_AWPFLVB6_exports);
60
60
  var import_chunk_IABMG3F4 = require("./chunk-IABMG3F4.js");
61
61
  var import_chunk_3U2ANLD3 = require("./chunk-3U2ANLD3.js");
62
62
  var import_chunk_FTS2IEWX = require("./chunk-FTS2IEWX.js");
@@ -81,13 +81,13 @@ var import_chunk_XLYQ6PQW = require("./chunk-XLYQ6PQW.js");
81
81
  var import_chunk_EPJYKNCQ = require("./chunk-EPJYKNCQ.js");
82
82
  var import_chunk_ODI3VNBD = require("./chunk-ODI3VNBD.js");
83
83
  var import_chunk_TSJICM5S = require("./chunk-TSJICM5S.js");
84
- var import_chunk_DKBMHP43 = require("./chunk-DKBMHP43.js");
85
- var import_chunk_PXPJFESL = require("./chunk-PXPJFESL.js");
86
- var import_chunk_E6OPGGI2 = require("./chunk-E6OPGGI2.js");
87
- var import_chunk_6U45LURI = require("./chunk-6U45LURI.js");
84
+ var import_chunk_XBTZEROW = require("./chunk-XBTZEROW.js");
85
+ var import_chunk_PFZMGDZR = require("./chunk-PFZMGDZR.js");
86
+ var import_chunk_ZZV6DPK5 = require("./chunk-ZZV6DPK5.js");
87
+ var import_chunk_ZPRI5BMZ = require("./chunk-ZPRI5BMZ.js");
88
88
  var import_chunk_YRBRUREX = require("./chunk-YRBRUREX.js");
89
89
  var import_chunk_H3T4L34H = require("./chunk-H3T4L34H.js");
90
- var import_chunk_SCBVWSLF = require("./chunk-SCBVWSLF.js");
90
+ var import_chunk_NYIVM3HW = require("./chunk-NYIVM3HW.js");
91
91
  var import_chunk_MUPZUVSI = require("./chunk-MUPZUVSI.js");
92
92
  var import_chunk_A4QWQE3W = require("./chunk-A4QWQE3W.js");
93
93
  var import_chunk_2B26F5N3 = require("./chunk-2B26F5N3.js");
@@ -15517,7 +15517,7 @@ async function readSchemaFromDirectory(schemaPath2) {
15517
15517
  }
15518
15518
  const files = await (0, import_schema_files_loader.loadSchemaFiles)(schemaPath2);
15519
15519
  debug2("Loading config");
15520
- const config2 = await (0, import_chunk_E6OPGGI2.getConfig)({
15520
+ const config2 = await (0, import_chunk_ZZV6DPK5.getConfig)({
15521
15521
  datamodel: files,
15522
15522
  ignoreEnvVarErrors: true
15523
15523
  });
@@ -15909,8 +15909,8 @@ async function checkUnsupportedDataProxyMessage(command, args, implicitSchema) {
15909
15909
  if (argName.includes("schema")) {
15910
15910
  await loadEnvFile({ schemaPath: argValue, printMessage: false });
15911
15911
  const datamodel = await import_fs.default.promises.readFile(argValue, "utf-8");
15912
- const config2 = await (0, import_chunk_E6OPGGI2.getConfig)({ datamodel, ignoreEnvVarErrors: true });
15913
- const url = (0, import_chunk_E6OPGGI2.resolveUrl)((0, import_chunk_E6OPGGI2.getEffectiveUrl)(config2.datasources[0]));
15912
+ const config2 = await (0, import_chunk_ZZV6DPK5.getConfig)({ datamodel, ignoreEnvVarErrors: true });
15913
+ const url = (0, import_chunk_ZZV6DPK5.resolveUrl)((0, import_chunk_ZZV6DPK5.getEffectiveUrl)(config2.datasources[0]));
15914
15914
  if (url?.startsWith("prisma://")) {
15915
15915
  return forbiddenCmdWithDataProxyFlagMessage(command);
15916
15916
  }
@@ -16114,7 +16114,7 @@ async function getGenerators(options) {
16114
16114
  prismaPath = binaryPathsWithEngineType[queryEngineBinaryType][binaryTarget];
16115
16115
  }
16116
16116
  }
16117
- const config = await (0, import_chunk_E6OPGGI2.getConfig)({
16117
+ const config = await (0, import_chunk_ZZV6DPK5.getConfig)({
16118
16118
  datamodel: schemas,
16119
16119
  datamodelPath: schemaPath,
16120
16120
  prismaPath,
@@ -16125,7 +16125,7 @@ async function getGenerators(options) {
16125
16125
  }
16126
16126
  (0, import_chunk_5FJ3MENK.printConfigWarnings)(config.warnings);
16127
16127
  const previewFeatures = (0, import_chunk_TSJICM5S.extractPreviewFeatures)(config);
16128
- const dmmf = await (0, import_chunk_6U45LURI.getDMMF)({
16128
+ const dmmf = await (0, import_chunk_ZPRI5BMZ.getDMMF)({
16129
16129
  datamodel: schemas,
16130
16130
  datamodelPath: schemaPath,
16131
16131
  prismaPath,
@@ -16186,7 +16186,7 @@ The generator needs to either define the \`defaultOutput\` path in the manifest
16186
16186
  fromEnvVar: "null"
16187
16187
  };
16188
16188
  }
16189
- const datamodel = (0, import_chunk_PXPJFESL.mergeSchemas)({ schemas });
16189
+ const datamodel = (0, import_chunk_PFZMGDZR.mergeSchemas)({ schemas });
16190
16190
  const envPaths2 = await getEnvPaths(schemaPath, { cwd: generator.output.value });
16191
16191
  const options2 = {
16192
16192
  datamodel,
@@ -16269,7 +16269,7 @@ generator gen {
16269
16269
  debug6({ generatorBinaryPaths });
16270
16270
  generator.setBinaryPaths(generatorBinaryPaths);
16271
16271
  if (engineVersion !== version && generator.options && generator.manifest.requiresEngines.includes(queryEngineType) && generatorBinaryPaths[queryEngineType] && generatorBinaryPaths[queryEngineType]?.[binaryTarget]) {
16272
- const customDmmf = await (0, import_chunk_6U45LURI.getDMMF)({
16272
+ const customDmmf = await (0, import_chunk_ZPRI5BMZ.getDMMF)({
16273
16273
  datamodel: schemas,
16274
16274
  datamodelPath: schemaPath,
16275
16275
  prismaPath: generatorBinaryPaths[queryEngineType]?.[binaryTarget],
@@ -16567,7 +16567,7 @@ async function formatSchema({ schemas: schemas2 }, inputFormattingOptions) {
16567
16567
  if (process.env.FORCE_PANIC_PRISMA_SCHEMA) {
16568
16568
  handleFormatPanic(
16569
16569
  () => {
16570
- import_chunk_SCBVWSLF.prismaSchemaWasm.debug_panic();
16570
+ import_chunk_NYIVM3HW.prismaSchemaWasm.debug_panic();
16571
16571
  },
16572
16572
  { schemas: schemas2 }
16573
16573
  );
@@ -16587,12 +16587,12 @@ async function formatSchema({ schemas: schemas2 }, inputFormattingOptions) {
16587
16587
  () => {
16588
16588
  const formattedMultipleSchemasRaw = formatWasm(JSON.stringify(schemas2), documentFormattingParams);
16589
16589
  const formattedMultipleSchemas2 = JSON.parse(formattedMultipleSchemasRaw);
16590
- const lintDiagnostics2 = (0, import_chunk_DKBMHP43.lintSchema)({ schemas: formattedMultipleSchemas2 });
16590
+ const lintDiagnostics2 = (0, import_chunk_XBTZEROW.lintSchema)({ schemas: formattedMultipleSchemas2 });
16591
16591
  return { formattedMultipleSchemas: formattedMultipleSchemas2, lintDiagnostics: lintDiagnostics2 };
16592
16592
  },
16593
16593
  { schemas: schemas2 }
16594
16594
  );
16595
- const lintWarnings = (0, import_chunk_DKBMHP43.getLintWarningsAsText)(lintDiagnostics);
16595
+ const lintWarnings = (0, import_chunk_XBTZEROW.getLintWarningsAsText)(lintDiagnostics);
16596
16596
  if (lintWarnings && import_chunk_AZNLB67U.logger_exports.should.warn()) {
16597
16597
  console.warn(lintWarnings);
16598
16598
  }
@@ -16622,7 +16622,7 @@ function handleFormatPanic(tryCb, { schemas: schemas2 }) {
16622
16622
  }
16623
16623
  }
16624
16624
  function formatWasm(schema, documentFormattingParams) {
16625
- const formattedSchema = import_chunk_SCBVWSLF.prismaSchemaWasm.format(schema, JSON.stringify(documentFormattingParams));
16625
+ const formattedSchema = import_chunk_NYIVM3HW.prismaSchemaWasm.format(schema, JSON.stringify(documentFormattingParams));
16626
16626
  return formattedSchema;
16627
16627
  }
16628
16628
  /*! Bundled license information:
@@ -16,11 +16,11 @@ var __copyProps = (to, from, except, desc) => {
16
16
  return to;
17
17
  };
18
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
- var chunk_6KUNW3T3_exports = {};
20
- __export(chunk_6KUNW3T3_exports, {
19
+ var chunk_D4G3OMDH_exports = {};
20
+ __export(chunk_D4G3OMDH_exports, {
21
21
  version: () => version
22
22
  });
23
- module.exports = __toCommonJS(chunk_6KUNW3T3_exports);
24
- var import_chunk_PG3P725O = require("./chunk-PG3P725O.js");
25
- var packageJson = (0, import_chunk_PG3P725O.require_package)();
23
+ module.exports = __toCommonJS(chunk_D4G3OMDH_exports);
24
+ var import_chunk_XQUZGA2G = require("./chunk-XQUZGA2G.js");
25
+ var packageJson = (0, import_chunk_XQUZGA2G.require_package)();
26
26
  var version = packageJson.version;
@@ -16,15 +16,15 @@ var __copyProps = (to, from, except, desc) => {
16
16
  return to;
17
17
  };
18
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
- var chunk_DH3P5MF7_exports = {};
20
- __export(chunk_DH3P5MF7_exports, {
19
+ var chunk_D7G6TRG2_exports = {};
20
+ __export(chunk_D7G6TRG2_exports, {
21
21
  addVersionDetailsToErrorMessage: () => addVersionDetailsToErrorMessage
22
22
  });
23
- module.exports = __toCommonJS(chunk_DH3P5MF7_exports);
24
- var import_chunk_6KUNW3T3 = require("./chunk-6KUNW3T3.js");
23
+ module.exports = __toCommonJS(chunk_D7G6TRG2_exports);
24
+ var import_chunk_DMI3QKHF = require("./chunk-DMI3QKHF.js");
25
25
  var import_chunk_QN6PSQY7 = require("./chunk-QN6PSQY7.js");
26
26
  function addVersionDetailsToErrorMessage(message) {
27
- const rows = [["Prisma CLI Version", import_chunk_6KUNW3T3.version]];
27
+ const rows = [["Prisma CLI Version", import_chunk_DMI3QKHF.version]];
28
28
  return `${message}
29
29
 
30
30
  ${(0, import_chunk_QN6PSQY7.formatTable)(rows)}`;
@@ -16,11 +16,11 @@ var __copyProps = (to, from, except, desc) => {
16
16
  return to;
17
17
  };
18
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
- var chunk_TYOA3XAC_exports = {};
20
- __export(chunk_TYOA3XAC_exports, {
19
+ var chunk_DMI3QKHF_exports = {};
20
+ __export(chunk_DMI3QKHF_exports, {
21
21
  version: () => version
22
22
  });
23
- module.exports = __toCommonJS(chunk_TYOA3XAC_exports);
24
- var import_chunk_SU3OJZZ5 = require("./chunk-SU3OJZZ5.js");
25
- var packageJson = (0, import_chunk_SU3OJZZ5.require_package)();
23
+ module.exports = __toCommonJS(chunk_DMI3QKHF_exports);
24
+ var import_chunk_75GSZEOY = require("./chunk-75GSZEOY.js");
25
+ var packageJson = (0, import_chunk_75GSZEOY.require_package)();
26
26
  var version = packageJson.version;
@@ -16,21 +16,21 @@ var __copyProps = (to, from, except, desc) => {
16
16
  return to;
17
17
  };
18
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
- var chunk_DKBMHP43_exports = {};
20
- __export(chunk_DKBMHP43_exports, {
19
+ var chunk_DSDTYXB5_exports = {};
20
+ __export(chunk_DSDTYXB5_exports, {
21
21
  getLintWarnings: () => getLintWarnings,
22
22
  getLintWarningsAsText: () => getLintWarningsAsText,
23
23
  handleLintPanic: () => handleLintPanic,
24
24
  lintSchema: () => lintSchema,
25
25
  warningToString: () => warningToString
26
26
  });
27
- module.exports = __toCommonJS(chunk_DKBMHP43_exports);
27
+ module.exports = __toCommonJS(chunk_DSDTYXB5_exports);
28
28
  var import_chunk_YRBRUREX = require("./chunk-YRBRUREX.js");
29
- var import_chunk_SCBVWSLF = require("./chunk-SCBVWSLF.js");
29
+ var import_chunk_NZYA5YF6 = require("./chunk-NZYA5YF6.js");
30
30
  var import_chunk_A4QWQE3W = require("./chunk-A4QWQE3W.js");
31
31
  var import_chunk_PG5FDKSF = require("./chunk-PG5FDKSF.js");
32
32
  function lintSchema({ schemas }) {
33
- const lintResult = import_chunk_SCBVWSLF.prismaSchemaWasm.lint(JSON.stringify(schemas));
33
+ const lintResult = import_chunk_NZYA5YF6.prismaSchemaWasm.lint(JSON.stringify(schemas));
34
34
  const lintDiagnostics = JSON.parse(lintResult);
35
35
  return lintDiagnostics;
36
36
  }
@@ -26,22 +26,22 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
26
26
  mod
27
27
  ));
28
28
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
- var chunk_E6OPGGI2_exports = {};
30
- __export(chunk_E6OPGGI2_exports, {
29
+ var chunk_IQ3XPQFI_exports = {};
30
+ __export(chunk_IQ3XPQFI_exports, {
31
31
  GetConfigError: () => GetConfigError,
32
32
  getConfig: () => getConfig,
33
33
  getDirectUrl: () => getDirectUrl,
34
34
  getEffectiveUrl: () => getEffectiveUrl,
35
35
  resolveUrl: () => resolveUrl
36
36
  });
37
- module.exports = __toCommonJS(chunk_E6OPGGI2_exports);
37
+ module.exports = __toCommonJS(chunk_IQ3XPQFI_exports);
38
38
  var import_chunk_YRBRUREX = require("./chunk-YRBRUREX.js");
39
39
  var import_chunk_IAEMHQAC = require("./chunk-IAEMHQAC.js");
40
40
  var import_chunk_WMIBAVWZ = require("./chunk-WMIBAVWZ.js");
41
- var import_chunk_7ESJUH2Q = require("./chunk-7ESJUH2Q.js");
41
+ var import_chunk_WSIDY2ZO = require("./chunk-WSIDY2ZO.js");
42
42
  var import_chunk_PFLLVWZX = require("./chunk-PFLLVWZX.js");
43
43
  var import_chunk_H3T4L34H = require("./chunk-H3T4L34H.js");
44
- var import_chunk_SCBVWSLF = require("./chunk-SCBVWSLF.js");
44
+ var import_chunk_NZYA5YF6 = require("./chunk-NZYA5YF6.js");
45
45
  var import_chunk_A4QWQE3W = require("./chunk-A4QWQE3W.js");
46
46
  var import_chunk_7MD6344A = require("./chunk-7MD6344A.js");
47
47
  var import_chunk_PG5FDKSF = require("./chunk-PG5FDKSF.js");
@@ -65,7 +65,7 @@ ${detailsHeader} ${message}`;
65
65
  }).exhaustive();
66
66
  const errorMessageWithContext = `${constructedErrorMessage}
67
67
  [Context: getConfig]`;
68
- super((0, import_chunk_7ESJUH2Q.addVersionDetailsToErrorMessage)(errorMessageWithContext));
68
+ super((0, import_chunk_WSIDY2ZO.addVersionDetailsToErrorMessage)(errorMessageWithContext));
69
69
  this.name = "GetConfigError";
70
70
  }
71
71
  };
@@ -90,7 +90,7 @@ async function getConfig(options) {
90
90
  () => {
91
91
  if (process.env.FORCE_PANIC_QUERY_ENGINE_GET_CONFIG) {
92
92
  debug("Triggering a Rust panic...");
93
- import_chunk_SCBVWSLF.prismaSchemaWasm.debug_panic();
93
+ import_chunk_NZYA5YF6.prismaSchemaWasm.debug_panic();
94
94
  }
95
95
  const params = JSON.stringify({
96
96
  prismaSchema: options.datamodel,
@@ -98,7 +98,7 @@ async function getConfig(options) {
98
98
  ignoreEnvVarErrors: options.ignoreEnvVarErrors ?? false,
99
99
  env: process.env
100
100
  });
101
- const data = import_chunk_SCBVWSLF.prismaSchemaWasm.get_config(params);
101
+ const data = import_chunk_NZYA5YF6.prismaSchemaWasm.get_config(params);
102
102
  return data;
103
103
  },
104
104
  (e) => ({
@@ -26,18 +26,18 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
26
26
  mod
27
27
  ));
28
28
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
- var chunk_6U45LURI_exports = {};
30
- __export(chunk_6U45LURI_exports, {
29
+ var chunk_JLJYCGJU_exports = {};
30
+ __export(chunk_JLJYCGJU_exports, {
31
31
  GetDmmfError: () => GetDmmfError,
32
32
  getDMMF: () => getDMMF
33
33
  });
34
- module.exports = __toCommonJS(chunk_6U45LURI_exports);
34
+ module.exports = __toCommonJS(chunk_JLJYCGJU_exports);
35
35
  var import_chunk_YRBRUREX = require("./chunk-YRBRUREX.js");
36
36
  var import_chunk_IAEMHQAC = require("./chunk-IAEMHQAC.js");
37
- var import_chunk_7ESJUH2Q = require("./chunk-7ESJUH2Q.js");
37
+ var import_chunk_WSIDY2ZO = require("./chunk-WSIDY2ZO.js");
38
38
  var import_chunk_PFLLVWZX = require("./chunk-PFLLVWZX.js");
39
39
  var import_chunk_H3T4L34H = require("./chunk-H3T4L34H.js");
40
- var import_chunk_SCBVWSLF = require("./chunk-SCBVWSLF.js");
40
+ var import_chunk_NZYA5YF6 = require("./chunk-NZYA5YF6.js");
41
41
  var import_chunk_A4QWQE3W = require("./chunk-A4QWQE3W.js");
42
42
  var import_chunk_7MD6344A = require("./chunk-7MD6344A.js");
43
43
  var import_chunk_PG5FDKSF = require("./chunk-PG5FDKSF.js");
@@ -60,7 +60,7 @@ ${detailsHeader} ${message}`;
60
60
  }).exhaustive();
61
61
  const errorMessageWithContext = `${constructedErrorMessage}
62
62
  [Context: getDmmf]`;
63
- super((0, import_chunk_7ESJUH2Q.addVersionDetailsToErrorMessage)(errorMessageWithContext));
63
+ super((0, import_chunk_WSIDY2ZO.addVersionDetailsToErrorMessage)(errorMessageWithContext));
64
64
  this.name = "GetDmmfError";
65
65
  }
66
66
  };
@@ -91,13 +91,13 @@ async function getDMMF(options) {
91
91
  () => {
92
92
  if (process.env.FORCE_PANIC_QUERY_ENGINE_GET_DMMF) {
93
93
  debug("Triggering a Rust panic...");
94
- import_chunk_SCBVWSLF.prismaSchemaWasm.debug_panic();
94
+ import_chunk_NZYA5YF6.prismaSchemaWasm.debug_panic();
95
95
  }
96
96
  const params = JSON.stringify({
97
97
  prismaSchema: datamodel,
98
98
  noColor: Boolean(process.env.NO_COLOR)
99
99
  });
100
- const data = import_chunk_SCBVWSLF.prismaSchemaWasm.get_dmmf(params);
100
+ const data = import_chunk_NZYA5YF6.prismaSchemaWasm.get_dmmf(params);
101
101
  return data;
102
102
  },
103
103
  (e) => ({