@prisma/internals 6.1.0-dev.1 → 6.1.0-dev.11
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/chunk-2DXAGCPS.js +177 -0
- package/dist/{chunk-AV3YRAF7.js → chunk-2PP7BHKH.js} +5 -5
- package/dist/chunk-5XRQ7ONW.js +122 -0
- package/dist/{chunk-SBSURDHK.js → chunk-ARAZIXTI.js} +8 -8
- package/dist/{chunk-KFFXIB4M.js → chunk-EPKZPJC5.js} +8 -35
- package/dist/{chunk-VCUPZJX2.js → chunk-GNMI6KU5.js} +7 -7
- package/dist/{chunk-R3WQECNL.js → chunk-GZ3W4XBV.js} +5 -5
- package/dist/{chunk-Z7ROEU4E.js → chunk-JIAYIGQW.js} +5 -5
- package/dist/{chunk-3PBQDKPK.js → chunk-LATZTP6I.js} +5 -5
- package/dist/{chunk-QDOMMF5G.js → chunk-MDOYAOLV.js} +19 -19
- package/dist/{chunk-YNPUNJMZ.js → chunk-NM5GRZUZ.js} +8 -8
- package/dist/{chunk-WVGKD3KM.js → chunk-NYIQRUZG.js} +5 -5
- package/dist/{chunk-CCGCZ6T3.js → chunk-OFTYL4FA.js} +8 -8
- package/dist/{chunk-BNRRMKGX.js → chunk-PC46MJ4M.js} +8 -8
- package/dist/{chunk-GUD2WGWW.js → chunk-PDG6GFQR.js} +5 -5
- package/dist/{chunk-5RRTA2GZ.js → chunk-PWZWCXZX.js} +24 -795
- package/dist/chunk-QIVUAERL.js +2202 -0
- package/dist/chunk-QJZIYUVB.js +110 -0
- package/dist/{chunk-KNBPQSE7.js → chunk-RFYKY4ZX.js} +7 -7
- package/dist/{chunk-UFZF4RUO.js → chunk-RROXH3J7.js} +8 -35
- package/dist/{chunk-UQJVO3AP.js → chunk-SHCCLLD3.js} +5 -5
- package/dist/{chunk-HRCVABJC.js → chunk-SM6BW5WS.js} +5 -5
- package/dist/{chunk-MIOYH7IR.js → chunk-T2RTHBYQ.js} +4 -4
- package/dist/chunk-TFSZCVKC.js +166 -0
- package/dist/chunk-V2VWODV3.js +54 -0
- package/dist/{chunk-YARHADMO.js → chunk-Y673TJNF.js} +5 -5
- package/dist/cli/checkUnsupportedDataProxy.js +12 -12
- package/dist/cli/getSchema.js +17 -17
- package/dist/cli/hashes.js +12 -12
- package/dist/engine-commands/errorHelpers.js +4 -4
- package/dist/engine-commands/formatSchema.js +11 -11
- package/dist/engine-commands/getConfig.js +10 -10
- package/dist/engine-commands/getDmmf.js +7 -7
- package/dist/engine-commands/index.js +20 -20
- package/dist/engine-commands/lintSchema.js +8 -8
- package/dist/engine-commands/mergeSchemas.js +7 -7
- package/dist/engine-commands/validate.js +7 -7
- package/dist/get-generators/generatorResolvers/generatorResolvers.js +11 -11
- package/dist/get-generators/generatorResolvers/prisma-client-js/check-dependencies/checkTypeScriptVersion.js +11 -11
- package/dist/get-generators/generatorResolvers/prisma-client-js/prismaClientResolver.js +12 -12
- package/dist/get-generators/getGenerators.js +14 -14
- package/dist/index.js +39 -39
- package/dist/sendPanic.js +11 -11
- package/dist/utils/getEnvPaths.js +11 -11
- package/dist/utils/getVersionFromPackageJson.js +3 -3
- package/dist/utils/handlePanic.js +11 -11
- package/dist/utils/loadEnvFile.js +11 -11
- package/dist/wasm.js +4 -4
- 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
|
+
}
|
@@ -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
|
20
|
-
__export(
|
19
|
+
var chunk_2PP7BHKH_exports = {};
|
20
|
+
__export(chunk_2PP7BHKH_exports, {
|
21
21
|
version: () => version
|
22
22
|
});
|
23
|
-
module.exports = __toCommonJS(
|
24
|
-
var
|
25
|
-
var packageJson = (0,
|
23
|
+
module.exports = __toCommonJS(chunk_2PP7BHKH_exports);
|
24
|
+
var import_chunk_T2RTHBYQ = require("./chunk-T2RTHBYQ.js");
|
25
|
+
var packageJson = (0, import_chunk_T2RTHBYQ.require_package)();
|
26
26
|
var version = packageJson.version;
|
@@ -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
|
+
}
|
@@ -26,19 +26,19 @@ 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
|
30
|
-
__export(
|
29
|
+
var chunk_ARAZIXTI_exports = {};
|
30
|
+
__export(chunk_ARAZIXTI_exports, {
|
31
31
|
ValidateError: () => ValidateError,
|
32
32
|
validate: () => validate
|
33
33
|
});
|
34
|
-
module.exports = __toCommonJS(
|
34
|
+
module.exports = __toCommonJS(chunk_ARAZIXTI_exports);
|
35
35
|
var import_chunk_YRBRUREX = require("./chunk-YRBRUREX.js");
|
36
36
|
var import_chunk_I4467NNA = require("./chunk-I4467NNA.js");
|
37
37
|
var import_chunk_C47SCASR = require("./chunk-C47SCASR.js");
|
38
|
-
var
|
38
|
+
var import_chunk_SHCCLLD3 = require("./chunk-SHCCLLD3.js");
|
39
39
|
var import_chunk_PFLLVWZX = require("./chunk-PFLLVWZX.js");
|
40
40
|
var import_chunk_H3T4L34H = require("./chunk-H3T4L34H.js");
|
41
|
-
var
|
41
|
+
var import_chunk_NYIQRUZG = require("./chunk-NYIQRUZG.js");
|
42
42
|
var import_chunk_A4QWQE3W = require("./chunk-A4QWQE3W.js");
|
43
43
|
var import_chunk_7MD6344A = require("./chunk-7MD6344A.js");
|
44
44
|
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: validate]`;
|
63
|
-
super((0,
|
63
|
+
super((0, import_chunk_SHCCLLD3.addVersionDetailsToErrorMessage)(errorMessageWithContext));
|
64
64
|
this.name = "ValidateError";
|
65
65
|
}
|
66
66
|
};
|
@@ -72,13 +72,13 @@ function validate(options) {
|
|
72
72
|
() => {
|
73
73
|
if (process.env.FORCE_PANIC_QUERY_ENGINE_GET_DMMF) {
|
74
74
|
debug("Triggering a Rust panic...");
|
75
|
-
|
75
|
+
import_chunk_NYIQRUZG.prismaSchemaWasm.debug_panic();
|
76
76
|
}
|
77
77
|
const params = JSON.stringify({
|
78
78
|
prismaSchema: options.schemas,
|
79
79
|
noColor: Boolean(process.env.NO_COLOR)
|
80
80
|
});
|
81
|
-
|
81
|
+
import_chunk_NYIQRUZG.prismaSchemaWasm.validate(params);
|
82
82
|
},
|
83
83
|
(e) => ({
|
84
84
|
type: "wasm-error",
|
@@ -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
|
30
|
-
__export(
|
29
|
+
var chunk_EPKZPJC5_exports = {};
|
30
|
+
__export(chunk_EPKZPJC5_exports, {
|
31
31
|
GetDmmfError: () => GetDmmfError,
|
32
32
|
getDMMF: () => getDMMF
|
33
33
|
});
|
34
|
-
module.exports = __toCommonJS(
|
34
|
+
module.exports = __toCommonJS(chunk_EPKZPJC5_exports);
|
35
35
|
var import_chunk_YRBRUREX = require("./chunk-YRBRUREX.js");
|
36
36
|
var import_chunk_I4467NNA = require("./chunk-I4467NNA.js");
|
37
|
-
var
|
37
|
+
var import_chunk_LATZTP6I = require("./chunk-LATZTP6I.js");
|
38
38
|
var import_chunk_PFLLVWZX = require("./chunk-PFLLVWZX.js");
|
39
39
|
var import_chunk_H3T4L34H = require("./chunk-H3T4L34H.js");
|
40
|
-
var
|
40
|
+
var import_chunk_SM6BW5WS = require("./chunk-SM6BW5WS.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,12 +60,11 @@ ${detailsHeader} ${message}`;
|
|
60
60
|
}).exhaustive();
|
61
61
|
const errorMessageWithContext = `${constructedErrorMessage}
|
62
62
|
[Context: getDmmf]`;
|
63
|
-
super((0,
|
63
|
+
super((0, import_chunk_LATZTP6I.addVersionDetailsToErrorMessage)(errorMessageWithContext));
|
64
64
|
this.name = "GetDmmfError";
|
65
65
|
}
|
66
66
|
};
|
67
67
|
async function getDMMF(options) {
|
68
|
-
warnOnDeprecatedFeatureFlag(options.previewFeatures);
|
69
68
|
const debugErrorType = (0, import_chunk_I4467NNA.createDebugErrorType)(debug, "getDmmfWasm");
|
70
69
|
debug(`Using getDmmf Wasm`);
|
71
70
|
const dmmfPipeline = (0, import_function.pipe)(
|
@@ -91,13 +90,13 @@ async function getDMMF(options) {
|
|
91
90
|
() => {
|
92
91
|
if (process.env.FORCE_PANIC_QUERY_ENGINE_GET_DMMF) {
|
93
92
|
debug("Triggering a Rust panic...");
|
94
|
-
|
93
|
+
import_chunk_SM6BW5WS.prismaSchemaWasm.debug_panic();
|
95
94
|
}
|
96
95
|
const params = JSON.stringify({
|
97
96
|
prismaSchema: datamodel,
|
98
97
|
noColor: Boolean(process.env.NO_COLOR)
|
99
98
|
});
|
100
|
-
const data =
|
99
|
+
const data = import_chunk_SM6BW5WS.prismaSchemaWasm.get_dmmf(params);
|
101
100
|
return data;
|
102
101
|
},
|
103
102
|
(e) => ({
|
@@ -165,29 +164,3 @@ Datamodel path: "${e.datamodelPath}"`,
|
|
165
164
|
}).exhaustive();
|
166
165
|
throw error;
|
167
166
|
}
|
168
|
-
function warnOnDeprecatedFeatureFlag(previewFeatures) {
|
169
|
-
const getMessage = (flag) => `${(0, import_chunk_PG5FDKSF.blue)((0, import_chunk_PG5FDKSF.bold)("info"))} The preview flag "${flag}" is not needed anymore, please remove it from your schema.prisma`;
|
170
|
-
const removedFeatureFlagMap = {
|
171
|
-
insensitiveFilters: getMessage("insensitiveFilters"),
|
172
|
-
atomicNumberOperations: getMessage("atomicNumberOperations"),
|
173
|
-
connectOrCreate: getMessage("connectOrCreate"),
|
174
|
-
transaction: getMessage("transaction"),
|
175
|
-
nApi: getMessage("nApi"),
|
176
|
-
transactionApi: getMessage("transactionApi"),
|
177
|
-
uncheckedScalarInputs: getMessage("uncheckedScalarInputs"),
|
178
|
-
nativeTypes: getMessage("nativeTypes"),
|
179
|
-
createMany: getMessage("createMany"),
|
180
|
-
groupBy: getMessage("groupBy"),
|
181
|
-
referentialActions: getMessage("referentialActions"),
|
182
|
-
microsoftSqlServer: getMessage("microsoftSqlServer"),
|
183
|
-
selectRelationCount: getMessage("selectRelationCount"),
|
184
|
-
orderByRelation: getMessage("orderByRelation"),
|
185
|
-
orderByAggregateGroup: getMessage("orderByAggregateGroup")
|
186
|
-
};
|
187
|
-
previewFeatures?.forEach((f) => {
|
188
|
-
const removedMessage = removedFeatureFlagMap[f];
|
189
|
-
if (removedMessage && !process.env.PRISMA_HIDE_PREVIEW_FLAG_WARNINGS) {
|
190
|
-
console.warn(removedMessage);
|
191
|
-
}
|
192
|
-
});
|
193
|
-
}
|
@@ -26,19 +26,19 @@ 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
|
30
|
-
__export(
|
29
|
+
var chunk_GNMI6KU5_exports = {};
|
30
|
+
__export(chunk_GNMI6KU5_exports, {
|
31
31
|
MergeSchemasError: () => MergeSchemasError,
|
32
32
|
mergeSchemas: () => mergeSchemas
|
33
33
|
});
|
34
|
-
module.exports = __toCommonJS(
|
34
|
+
module.exports = __toCommonJS(chunk_GNMI6KU5_exports);
|
35
35
|
var import_chunk_YRBRUREX = require("./chunk-YRBRUREX.js");
|
36
36
|
var import_chunk_I4467NNA = require("./chunk-I4467NNA.js");
|
37
37
|
var import_chunk_C47SCASR = require("./chunk-C47SCASR.js");
|
38
|
-
var
|
38
|
+
var import_chunk_SHCCLLD3 = require("./chunk-SHCCLLD3.js");
|
39
39
|
var import_chunk_PFLLVWZX = require("./chunk-PFLLVWZX.js");
|
40
40
|
var import_chunk_H3T4L34H = require("./chunk-H3T4L34H.js");
|
41
|
-
var
|
41
|
+
var import_chunk_NYIQRUZG = require("./chunk-NYIQRUZG.js");
|
42
42
|
var import_chunk_A4QWQE3W = require("./chunk-A4QWQE3W.js");
|
43
43
|
var import_chunk_7MD6344A = require("./chunk-7MD6344A.js");
|
44
44
|
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: mergeSchemas]`;
|
63
|
-
super((0,
|
63
|
+
super((0, import_chunk_SHCCLLD3.addVersionDetailsToErrorMessage)(errorMessageWithContext));
|
64
64
|
this.name = "MergeSchemasError";
|
65
65
|
}
|
66
66
|
};
|
@@ -73,7 +73,7 @@ function mergeSchemas(options) {
|
|
73
73
|
const params = JSON.stringify({
|
74
74
|
schema: options.schemas
|
75
75
|
});
|
76
|
-
return
|
76
|
+
return import_chunk_NYIQRUZG.prismaSchemaWasm.merge_schemas(params);
|
77
77
|
},
|
78
78
|
(e) => ({
|
79
79
|
type: "wasm-error",
|
@@ -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
|
20
|
-
__export(
|
19
|
+
var chunk_GZ3W4XBV_exports = {};
|
20
|
+
__export(chunk_GZ3W4XBV_exports, {
|
21
21
|
require_package: () => require_package
|
22
22
|
});
|
23
|
-
module.exports = __toCommonJS(
|
23
|
+
module.exports = __toCommonJS(chunk_GZ3W4XBV_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: "6.1.0-dev.
|
29
|
+
version: "6.1.0-dev.11",
|
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": "6.1.0-
|
114
|
+
"@prisma/prisma-schema-wasm": "6.1.0-5.c74f8976aaa3212c16a61537319f9024d0c21e85",
|
115
115
|
"@prisma/schema-files-loader": "workspace:*",
|
116
116
|
arg: "5.0.2",
|
117
117
|
prompts: "2.4.2"
|
@@ -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
|
20
|
-
__export(
|
19
|
+
var chunk_JIAYIGQW_exports = {};
|
20
|
+
__export(chunk_JIAYIGQW_exports, {
|
21
21
|
version: () => version
|
22
22
|
});
|
23
|
-
module.exports = __toCommonJS(
|
24
|
-
var
|
25
|
-
var packageJson = (0,
|
23
|
+
module.exports = __toCommonJS(chunk_JIAYIGQW_exports);
|
24
|
+
var import_chunk_GZ3W4XBV = require("./chunk-GZ3W4XBV.js");
|
25
|
+
var packageJson = (0, import_chunk_GZ3W4XBV.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
|
20
|
-
__export(
|
19
|
+
var chunk_LATZTP6I_exports = {};
|
20
|
+
__export(chunk_LATZTP6I_exports, {
|
21
21
|
addVersionDetailsToErrorMessage: () => addVersionDetailsToErrorMessage
|
22
22
|
});
|
23
|
-
module.exports = __toCommonJS(
|
24
|
-
var
|
23
|
+
module.exports = __toCommonJS(chunk_LATZTP6I_exports);
|
24
|
+
var import_chunk_2PP7BHKH = require("./chunk-2PP7BHKH.js");
|
25
25
|
var import_chunk_QN6PSQY7 = require("./chunk-QN6PSQY7.js");
|
26
26
|
function addVersionDetailsToErrorMessage(message) {
|
27
|
-
const rows = [["Prisma CLI Version",
|
27
|
+
const rows = [["Prisma CLI Version", import_chunk_2PP7BHKH.version]];
|
28
28
|
return `${message}
|
29
29
|
|
30
30
|
${(0, import_chunk_QN6PSQY7.formatTable)(rows)}`;
|