@prisma/internals 6.12.0-integration-push-nqqtxovowlmm.2 → 6.12.0-integration-feat-investigate-prisma-generate-on-stackblitz.1
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-D5S3R3EM.js → chunk-5HCY6XOO.js} +8 -8
- package/dist/{chunk-2GGWY7T5.js → chunk-5PTPWHZM.js} +28 -25
- package/dist/{chunk-X4EBOJJA.js → chunk-CLW6AUQF.js} +5 -5
- package/dist/{chunk-FATFYTFW.js → chunk-G6ZVIGNL.js} +28 -25
- package/dist/{chunk-CM2NDVVN.js → chunk-GWSUUTFI.js} +8 -8
- package/dist/{chunk-SV2NQ4OK.js → chunk-HSV7FNBA.js} +5 -5
- package/dist/{chunk-647STTBS.js → chunk-HW6VVHIW.js} +5 -5
- package/dist/{chunk-D2UE6E7T.js → chunk-IJ6AED6T.js} +9 -8
- package/dist/{chunk-EJNN56Q2.js → chunk-KOQXWQTO.js} +5 -5
- package/dist/{chunk-YNU6RAUM.js → chunk-LXKHQK77.js} +5 -5
- package/dist/{chunk-3OLT56WB.js → chunk-MTCC42S3.js} +5 -5
- package/dist/{chunk-5TMZQTBW.js → chunk-OOLQMNK2.js} +5 -5
- package/dist/{chunk-L3VZAYJP.js → chunk-PJCDSU5M.js} +7 -7
- package/dist/{chunk-QIKOCFSH.js → chunk-Q6PEJONK.js} +5 -5
- package/dist/{chunk-CS2YLXXM.js → chunk-T2ZJ7BUD.js} +8 -8
- package/dist/{chunk-MHGHJ47C.js → chunk-V2YGEMSF.js} +7 -7
- package/dist/{chunk-3TCO7Q7S.js → chunk-VGIJZOFA.js} +8 -8
- package/dist/{chunk-LGG7AFXR.js → chunk-XIOP5B57.js} +6 -6
- package/dist/{chunk-GWD676DW.js → chunk-Y6KOTH6X.js} +9 -8
- package/dist/{chunk-7H6RP42V.js → chunk-ZBGPJ3BO.js} +5 -5
- package/dist/cli/checkUnsupportedDataProxy.js +12 -12
- package/dist/cli/checkUnsupportedSchemaEngineWasm.js +12 -12
- package/dist/cli/schemaContext.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/getGenerators.js +14 -14
- package/dist/index.js +31 -31
- package/dist/utils/getVersionFromPackageJson.js +3 -3
- package/dist/wasm.js +5 -5
- package/package.json +13 -13
@@ -26,16 +26,16 @@ 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_5HCY6XOO_exports = {};
|
30
|
+
__export(chunk_5HCY6XOO_exports, {
|
31
31
|
GetDmmfError: () => GetDmmfError,
|
32
32
|
getDMMF: () => getDMMF
|
33
33
|
});
|
34
|
-
module.exports = __toCommonJS(
|
34
|
+
module.exports = __toCommonJS(chunk_5HCY6XOO_exports);
|
35
35
|
var import_chunk_TZJROXB3 = require("./chunk-TZJROXB3.js");
|
36
36
|
var import_chunk_R6QH57HZ = require("./chunk-R6QH57HZ.js");
|
37
|
-
var
|
38
|
-
var
|
37
|
+
var import_chunk_Q6PEJONK = require("./chunk-Q6PEJONK.js");
|
38
|
+
var import_chunk_KOQXWQTO = require("./chunk-KOQXWQTO.js");
|
39
39
|
var import_chunk_5DBOS77Y = require("./chunk-5DBOS77Y.js");
|
40
40
|
var import_chunk_XKZ6CBLA = require("./chunk-XKZ6CBLA.js");
|
41
41
|
var import_chunk_LMVSIVKQ = require("./chunk-LMVSIVKQ.js");
|
@@ -58,7 +58,7 @@ ${detailsHeader} ${message}`;
|
|
58
58
|
}).exhaustive();
|
59
59
|
const errorMessageWithContext = `${constructedErrorMessage}
|
60
60
|
[Context: getDmmf]`;
|
61
|
-
super((0,
|
61
|
+
super((0, import_chunk_Q6PEJONK.addVersionDetailsToErrorMessage)(errorMessageWithContext));
|
62
62
|
this.name = "GetDmmfError";
|
63
63
|
}
|
64
64
|
};
|
@@ -70,13 +70,13 @@ async function getDMMF(options) {
|
|
70
70
|
() => {
|
71
71
|
if (process.env.FORCE_PANIC_QUERY_ENGINE_GET_DMMF) {
|
72
72
|
debug("Triggering a Rust panic...");
|
73
|
-
|
73
|
+
import_chunk_KOQXWQTO.prismaSchemaWasm.debug_panic();
|
74
74
|
}
|
75
75
|
const params = JSON.stringify({
|
76
76
|
prismaSchema: options.datamodel,
|
77
77
|
noColor: Boolean(process.env.NO_COLOR)
|
78
78
|
});
|
79
|
-
const data =
|
79
|
+
const data = import_chunk_KOQXWQTO.prismaSchemaWasm.get_dmmf(params);
|
80
80
|
return data;
|
81
81
|
},
|
82
82
|
(e) => ({
|
@@ -26,8 +26,8 @@ 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_5PTPWHZM_exports = {};
|
30
|
+
__export(chunk_5PTPWHZM_exports, {
|
31
31
|
checkUnsupportedDataProxy: () => checkUnsupportedDataProxy,
|
32
32
|
checkUnsupportedSchemaEngineWasm: () => checkUnsupportedSchemaEngineWasm,
|
33
33
|
forbiddenCmdFlagWithSchemaEngineWasm: () => forbiddenCmdFlagWithSchemaEngineWasm,
|
@@ -42,7 +42,7 @@ __export(chunk_2GGWY7T5_exports, {
|
|
42
42
|
processSchemaResult: () => processSchemaResult,
|
43
43
|
skipIndex: () => skipIndex
|
44
44
|
});
|
45
|
-
module.exports = __toCommonJS(
|
45
|
+
module.exports = __toCommonJS(chunk_5PTPWHZM_exports);
|
46
46
|
var import_chunk_X3P4J7WW = require("./chunk-X3P4J7WW.js");
|
47
47
|
var import_chunk_LRU47BGE = require("./chunk-LRU47BGE.js");
|
48
48
|
var import_chunk_X77CS5RK = require("./chunk-X77CS5RK.js");
|
@@ -55,12 +55,12 @@ var import_chunk_AX5N26KG = require("./chunk-AX5N26KG.js");
|
|
55
55
|
var import_chunk_WXRTT6AT = require("./chunk-WXRTT6AT.js");
|
56
56
|
var import_chunk_I6WLABB2 = require("./chunk-I6WLABB2.js");
|
57
57
|
var import_chunk_CRVLHWC5 = require("./chunk-CRVLHWC5.js");
|
58
|
-
var
|
59
|
-
var
|
60
|
-
var
|
61
|
-
var
|
58
|
+
var import_chunk_IJ6AED6T = require("./chunk-IJ6AED6T.js");
|
59
|
+
var import_chunk_GWSUUTFI = require("./chunk-GWSUUTFI.js");
|
60
|
+
var import_chunk_OOLQMNK2 = require("./chunk-OOLQMNK2.js");
|
61
|
+
var import_chunk_PJCDSU5M = require("./chunk-PJCDSU5M.js");
|
62
62
|
var import_chunk_ZCBEMBHR = require("./chunk-ZCBEMBHR.js");
|
63
|
-
var
|
63
|
+
var import_chunk_CLW6AUQF = require("./chunk-CLW6AUQF.js");
|
64
64
|
var import_chunk_ZJWZK45Z = require("./chunk-ZJWZK45Z.js");
|
65
65
|
var import_chunk_2B26F5N3 = require("./chunk-2B26F5N3.js");
|
66
66
|
var import_chunk_XKZ6CBLA = require("./chunk-XKZ6CBLA.js");
|
@@ -70,9 +70,10 @@ var import_chunk_IOIAK7V7 = require("./chunk-IOIAK7V7.js");
|
|
70
70
|
var import_chunk_PG5FDKSF = require("./chunk-PG5FDKSF.js");
|
71
71
|
var import_chunk_ZIFBTC6Y = require("./chunk-ZIFBTC6Y.js");
|
72
72
|
var import_chunk_4VNS5WPM = require("./chunk-4VNS5WPM.js");
|
73
|
-
var import_path = __toESM(require("path"));
|
74
73
|
var import_debug = __toESM(require("@prisma/debug"));
|
74
|
+
var import_path = __toESM(require("path"));
|
75
75
|
var import_debug2 = __toESM(require("@prisma/debug"));
|
76
|
+
var import_debug3 = __toESM(require("@prisma/debug"));
|
76
77
|
var import_engines = require("@prisma/engines");
|
77
78
|
var import_get_platform = require("@prisma/get-platform");
|
78
79
|
var import_path2 = __toESM(require("path"));
|
@@ -98,11 +99,11 @@ function checkUnsupportedSchemaEngineWasm({
|
|
98
99
|
}
|
99
100
|
}
|
100
101
|
}
|
101
|
-
var debug = (0,
|
102
|
+
var debug = (0, import_debug2.default)("prisma:format");
|
102
103
|
async function formatSchema({ schemas }, inputFormattingOptions) {
|
103
104
|
if (process.env.FORCE_PANIC_PRISMA_SCHEMA) {
|
104
105
|
handleFormatPanic(() => {
|
105
|
-
|
106
|
+
import_chunk_CLW6AUQF.prismaSchemaWasm.debug_panic();
|
106
107
|
});
|
107
108
|
}
|
108
109
|
const defaultFormattingOptions = {
|
@@ -119,10 +120,10 @@ async function formatSchema({ schemas }, inputFormattingOptions) {
|
|
119
120
|
const { formattedMultipleSchemas, lintDiagnostics } = handleFormatPanic(() => {
|
120
121
|
const formattedMultipleSchemasRaw = formatWasm(JSON.stringify(schemas), documentFormattingParams);
|
121
122
|
const formattedMultipleSchemas2 = JSON.parse(formattedMultipleSchemasRaw);
|
122
|
-
const lintDiagnostics2 = (0,
|
123
|
+
const lintDiagnostics2 = (0, import_chunk_OOLQMNK2.lintSchema)({ schemas: formattedMultipleSchemas2 });
|
123
124
|
return { formattedMultipleSchemas: formattedMultipleSchemas2, lintDiagnostics: lintDiagnostics2 };
|
124
125
|
});
|
125
|
-
const lintWarnings = (0,
|
126
|
+
const lintWarnings = (0, import_chunk_OOLQMNK2.getLintWarningsAsText)(lintDiagnostics);
|
126
127
|
if (lintWarnings && import_chunk_ZJWZK45Z.logger_exports.should.warn()) {
|
127
128
|
console.warn(lintWarnings);
|
128
129
|
}
|
@@ -149,9 +150,10 @@ function handleFormatPanic(tryCb) {
|
|
149
150
|
}
|
150
151
|
}
|
151
152
|
function formatWasm(schema, documentFormattingParams) {
|
152
|
-
const formattedSchema =
|
153
|
+
const formattedSchema = import_chunk_CLW6AUQF.prismaSchemaWasm.format(schema, JSON.stringify(documentFormattingParams));
|
153
154
|
return formattedSchema;
|
154
155
|
}
|
156
|
+
var debug2 = (0, import_debug.default)("prisma:cli:schemaContext");
|
155
157
|
async function loadSchemaContext({
|
156
158
|
schemaPathFromArg,
|
157
159
|
schemaPathFromConfig,
|
@@ -186,7 +188,8 @@ async function processSchemaResult({
|
|
186
188
|
if (printLoadMessage) {
|
187
189
|
(0, import_chunk_ZCBEMBHR.printSchemaLoadedMessage)(loadedFromPathForLogMessages);
|
188
190
|
}
|
189
|
-
|
191
|
+
debug2("processSchemaResult with ignoreEnvVarErrors=%s:\n%s", ignoreEnvVarErrors, schemaResult.schemas);
|
192
|
+
const configFromPsl = await (0, import_chunk_IJ6AED6T.getConfig)({ datamodel: schemaResult.schemas, ignoreEnvVarErrors });
|
190
193
|
const primaryDatasource = configFromPsl.datasources.at(0);
|
191
194
|
const schemaRootDir = schemaResult.schemaRootDir || cwd;
|
192
195
|
return {
|
@@ -209,7 +212,7 @@ function primaryDatasourceDirectory(primaryDatasource) {
|
|
209
212
|
return null;
|
210
213
|
}
|
211
214
|
var import_p_map = (0, import_chunk_4VNS5WPM.__toESM)((0, import_chunk_ZIFBTC6Y.require_p_map)());
|
212
|
-
var
|
215
|
+
var debug3 = (0, import_debug3.default)("prisma:getGenerators");
|
213
216
|
async function getGenerators(options) {
|
214
217
|
if (options.registry === void 0 && options.providerAliases !== void 0) {
|
215
218
|
options.registry = Object.fromEntries(
|
@@ -246,7 +249,7 @@ async function getGenerators(options) {
|
|
246
249
|
}
|
247
250
|
(0, import_chunk_5FJ3MENK.printConfigWarnings)(schemaContext.warnings);
|
248
251
|
const previewFeatures = (0, import_chunk_CRVLHWC5.extractPreviewFeatures)(schemaContext.generators);
|
249
|
-
const dmmf = await (0,
|
252
|
+
const dmmf = await (0, import_chunk_GWSUUTFI.getDMMF)({
|
250
253
|
datamodel: schemaContext.schemaFiles,
|
251
254
|
previewFeatures
|
252
255
|
});
|
@@ -297,7 +300,7 @@ You need to define \`output\` in the generator block in the schema file.`
|
|
297
300
|
fromEnvVar: null
|
298
301
|
};
|
299
302
|
}
|
300
|
-
const datamodel = (0,
|
303
|
+
const datamodel = (0, import_chunk_PJCDSU5M.mergeSchemas)({ schemas: schemaContext.schemaFiles });
|
301
304
|
const envPaths = await (0, import_chunk_WXRTT6AT.getEnvPaths)(schemaContext.schemaPath, { cwd: generatorConfig.output.value });
|
302
305
|
const options2 = {
|
303
306
|
datamodel,
|
@@ -366,7 +369,7 @@ generator gen {
|
|
366
369
|
}
|
367
370
|
const queryEngineBinaryType = (0, import_engines.getCliQueryEngineBinaryType)();
|
368
371
|
const queryEngineType = (0, import_chunk_RS2R7COT.binaryTypeToEngineType)(queryEngineBinaryType);
|
369
|
-
|
372
|
+
debug3("neededVersions", JSON.stringify(neededVersions, null, 2));
|
370
373
|
const { binaryPathsByVersion, binaryTarget } = await (0, import_chunk_F2OZV76L.getBinaryPathsByVersion)({
|
371
374
|
neededVersions,
|
372
375
|
// We're lazily computing the binary target here, to avoid printing the
|
@@ -386,17 +389,17 @@ generator gen {
|
|
386
389
|
const engineVersion = (0, import_chunk_X3P4J7WW.getEngineVersionForGenerator)(generator.manifest, version2);
|
387
390
|
const binaryPaths = binaryPathsByVersion[engineVersion];
|
388
391
|
const generatorBinaryPaths = (0, import_chunk_5V36RLCO.pick)(binaryPaths ?? {}, generator.manifest.requiresEngines);
|
389
|
-
|
392
|
+
debug3({ generatorBinaryPaths });
|
390
393
|
generator.setBinaryPaths(generatorBinaryPaths);
|
391
394
|
if (engineVersion !== version2 && generator.options && generator.manifest.requiresEngines.includes(queryEngineType) && generatorBinaryPaths[queryEngineType] && generatorBinaryPaths[queryEngineType]?.[binaryTarget]) {
|
392
|
-
const customDmmf = await (0,
|
395
|
+
const customDmmf = await (0, import_chunk_GWSUUTFI.getDMMF)({
|
393
396
|
datamodel: schemaContext.schemaFiles,
|
394
397
|
previewFeatures
|
395
398
|
});
|
396
399
|
const options2 = { ...generator.options, dmmf: customDmmf };
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
+
debug3("generator.manifest.prettyName", generator.manifest.prettyName);
|
401
|
+
debug3("options", options2);
|
402
|
+
debug3("options.generator.binaryTargets", options2.generator.binaryTargets);
|
400
403
|
generator.setOptions(options2);
|
401
404
|
}
|
402
405
|
}
|
@@ -510,7 +513,7 @@ function checkUnsupportedDataProxy({
|
|
510
513
|
}
|
511
514
|
}
|
512
515
|
if (!schemaContext?.primaryDatasource) return;
|
513
|
-
const url = (0,
|
516
|
+
const url = (0, import_chunk_IJ6AED6T.resolveUrl)((0, import_chunk_IJ6AED6T.getEffectiveUrl)(schemaContext.primaryDatasource));
|
514
517
|
if (url?.startsWith("prisma://")) {
|
515
518
|
throw new Error(forbiddenCmdWithDataProxyFlagMessage(cmd));
|
516
519
|
}
|
@@ -26,15 +26,15 @@ 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_CLW6AUQF_exports = {};
|
30
|
+
__export(chunk_CLW6AUQF_exports, {
|
31
31
|
prismaSchemaWasm: () => import_prisma_schema_wasm.default,
|
32
32
|
prismaSchemaWasmVersion: () => prismaSchemaWasmVersion,
|
33
33
|
schemaEngineWasmVersion: () => schemaEngineWasmVersion,
|
34
34
|
wasm_exports: () => wasm_exports
|
35
35
|
});
|
36
|
-
module.exports = __toCommonJS(
|
37
|
-
var
|
36
|
+
module.exports = __toCommonJS(chunk_CLW6AUQF_exports);
|
37
|
+
var import_chunk_ZBGPJ3BO = require("./chunk-ZBGPJ3BO.js");
|
38
38
|
var import_chunk_WXRVYSYN = require("./chunk-WXRVYSYN.js");
|
39
39
|
var import_chunk_4VNS5WPM = require("./chunk-4VNS5WPM.js");
|
40
40
|
var import_prisma_schema_wasm = __toESM(require("@prisma/prisma-schema-wasm"));
|
@@ -46,6 +46,6 @@ var wasm_exports = {};
|
|
46
46
|
});
|
47
47
|
var globalWithPanicRegistry = globalThis;
|
48
48
|
globalWithPanicRegistry.PRISMA_WASM_PANIC_REGISTRY = new import_chunk_WXRVYSYN.WasmPanicRegistry();
|
49
|
-
var { dependencies } = (0,
|
49
|
+
var { dependencies } = (0, import_chunk_ZBGPJ3BO.require_package)();
|
50
50
|
var prismaSchemaWasmVersion = dependencies["@prisma/prisma-schema-wasm"];
|
51
51
|
var schemaEngineWasmVersion = dependencies["@prisma/schema-engine-wasm"];
|
@@ -26,8 +26,8 @@ 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_G6ZVIGNL_exports = {};
|
30
|
+
__export(chunk_G6ZVIGNL_exports, {
|
31
31
|
checkUnsupportedDataProxy: () => checkUnsupportedDataProxy,
|
32
32
|
checkUnsupportedSchemaEngineWasm: () => checkUnsupportedSchemaEngineWasm,
|
33
33
|
forbiddenCmdFlagWithSchemaEngineWasm: () => forbiddenCmdFlagWithSchemaEngineWasm,
|
@@ -42,7 +42,7 @@ __export(chunk_FATFYTFW_exports, {
|
|
42
42
|
processSchemaResult: () => processSchemaResult,
|
43
43
|
skipIndex: () => skipIndex
|
44
44
|
});
|
45
|
-
module.exports = __toCommonJS(
|
45
|
+
module.exports = __toCommonJS(chunk_G6ZVIGNL_exports);
|
46
46
|
var import_chunk_X3P4J7WW = require("./chunk-X3P4J7WW.js");
|
47
47
|
var import_chunk_LRU47BGE = require("./chunk-LRU47BGE.js");
|
48
48
|
var import_chunk_X77CS5RK = require("./chunk-X77CS5RK.js");
|
@@ -55,12 +55,12 @@ var import_chunk_AX5N26KG = require("./chunk-AX5N26KG.js");
|
|
55
55
|
var import_chunk_WXRTT6AT = require("./chunk-WXRTT6AT.js");
|
56
56
|
var import_chunk_I6WLABB2 = require("./chunk-I6WLABB2.js");
|
57
57
|
var import_chunk_CRVLHWC5 = require("./chunk-CRVLHWC5.js");
|
58
|
-
var
|
59
|
-
var
|
60
|
-
var
|
61
|
-
var
|
58
|
+
var import_chunk_Y6KOTH6X = require("./chunk-Y6KOTH6X.js");
|
59
|
+
var import_chunk_5HCY6XOO = require("./chunk-5HCY6XOO.js");
|
60
|
+
var import_chunk_HW6VVHIW = require("./chunk-HW6VVHIW.js");
|
61
|
+
var import_chunk_V2YGEMSF = require("./chunk-V2YGEMSF.js");
|
62
62
|
var import_chunk_ZCBEMBHR = require("./chunk-ZCBEMBHR.js");
|
63
|
-
var
|
63
|
+
var import_chunk_KOQXWQTO = require("./chunk-KOQXWQTO.js");
|
64
64
|
var import_chunk_ZJWZK45Z = require("./chunk-ZJWZK45Z.js");
|
65
65
|
var import_chunk_2B26F5N3 = require("./chunk-2B26F5N3.js");
|
66
66
|
var import_chunk_XKZ6CBLA = require("./chunk-XKZ6CBLA.js");
|
@@ -70,9 +70,10 @@ var import_chunk_IOIAK7V7 = require("./chunk-IOIAK7V7.js");
|
|
70
70
|
var import_chunk_PG5FDKSF = require("./chunk-PG5FDKSF.js");
|
71
71
|
var import_chunk_ZIFBTC6Y = require("./chunk-ZIFBTC6Y.js");
|
72
72
|
var import_chunk_4VNS5WPM = require("./chunk-4VNS5WPM.js");
|
73
|
-
var import_path = __toESM(require("path"));
|
74
73
|
var import_debug = __toESM(require("@prisma/debug"));
|
74
|
+
var import_path = __toESM(require("path"));
|
75
75
|
var import_debug2 = __toESM(require("@prisma/debug"));
|
76
|
+
var import_debug3 = __toESM(require("@prisma/debug"));
|
76
77
|
var import_engines = require("@prisma/engines");
|
77
78
|
var import_get_platform = require("@prisma/get-platform");
|
78
79
|
var import_path2 = __toESM(require("path"));
|
@@ -98,11 +99,11 @@ function checkUnsupportedSchemaEngineWasm({
|
|
98
99
|
}
|
99
100
|
}
|
100
101
|
}
|
101
|
-
var debug = (0,
|
102
|
+
var debug = (0, import_debug2.default)("prisma:format");
|
102
103
|
async function formatSchema({ schemas }, inputFormattingOptions) {
|
103
104
|
if (process.env.FORCE_PANIC_PRISMA_SCHEMA) {
|
104
105
|
handleFormatPanic(() => {
|
105
|
-
|
106
|
+
import_chunk_KOQXWQTO.prismaSchemaWasm.debug_panic();
|
106
107
|
});
|
107
108
|
}
|
108
109
|
const defaultFormattingOptions = {
|
@@ -119,10 +120,10 @@ async function formatSchema({ schemas }, inputFormattingOptions) {
|
|
119
120
|
const { formattedMultipleSchemas, lintDiagnostics } = handleFormatPanic(() => {
|
120
121
|
const formattedMultipleSchemasRaw = formatWasm(JSON.stringify(schemas), documentFormattingParams);
|
121
122
|
const formattedMultipleSchemas2 = JSON.parse(formattedMultipleSchemasRaw);
|
122
|
-
const lintDiagnostics2 = (0,
|
123
|
+
const lintDiagnostics2 = (0, import_chunk_HW6VVHIW.lintSchema)({ schemas: formattedMultipleSchemas2 });
|
123
124
|
return { formattedMultipleSchemas: formattedMultipleSchemas2, lintDiagnostics: lintDiagnostics2 };
|
124
125
|
});
|
125
|
-
const lintWarnings = (0,
|
126
|
+
const lintWarnings = (0, import_chunk_HW6VVHIW.getLintWarningsAsText)(lintDiagnostics);
|
126
127
|
if (lintWarnings && import_chunk_ZJWZK45Z.logger_exports.should.warn()) {
|
127
128
|
console.warn(lintWarnings);
|
128
129
|
}
|
@@ -149,9 +150,10 @@ function handleFormatPanic(tryCb) {
|
|
149
150
|
}
|
150
151
|
}
|
151
152
|
function formatWasm(schema, documentFormattingParams) {
|
152
|
-
const formattedSchema =
|
153
|
+
const formattedSchema = import_chunk_KOQXWQTO.prismaSchemaWasm.format(schema, JSON.stringify(documentFormattingParams));
|
153
154
|
return formattedSchema;
|
154
155
|
}
|
156
|
+
var debug2 = (0, import_debug.default)("prisma:cli:schemaContext");
|
155
157
|
async function loadSchemaContext({
|
156
158
|
schemaPathFromArg,
|
157
159
|
schemaPathFromConfig,
|
@@ -186,7 +188,8 @@ async function processSchemaResult({
|
|
186
188
|
if (printLoadMessage) {
|
187
189
|
(0, import_chunk_ZCBEMBHR.printSchemaLoadedMessage)(loadedFromPathForLogMessages);
|
188
190
|
}
|
189
|
-
|
191
|
+
debug2("processSchemaResult with ignoreEnvVarErrors=%s:\n%s", ignoreEnvVarErrors, schemaResult.schemas);
|
192
|
+
const configFromPsl = await (0, import_chunk_Y6KOTH6X.getConfig)({ datamodel: schemaResult.schemas, ignoreEnvVarErrors });
|
190
193
|
const primaryDatasource = configFromPsl.datasources.at(0);
|
191
194
|
const schemaRootDir = schemaResult.schemaRootDir || cwd;
|
192
195
|
return {
|
@@ -209,7 +212,7 @@ function primaryDatasourceDirectory(primaryDatasource) {
|
|
209
212
|
return null;
|
210
213
|
}
|
211
214
|
var import_p_map = (0, import_chunk_4VNS5WPM.__toESM)((0, import_chunk_ZIFBTC6Y.require_p_map)());
|
212
|
-
var
|
215
|
+
var debug3 = (0, import_debug3.default)("prisma:getGenerators");
|
213
216
|
async function getGenerators(options) {
|
214
217
|
if (options.registry === void 0 && options.providerAliases !== void 0) {
|
215
218
|
options.registry = Object.fromEntries(
|
@@ -246,7 +249,7 @@ async function getGenerators(options) {
|
|
246
249
|
}
|
247
250
|
(0, import_chunk_5FJ3MENK.printConfigWarnings)(schemaContext.warnings);
|
248
251
|
const previewFeatures = (0, import_chunk_CRVLHWC5.extractPreviewFeatures)(schemaContext.generators);
|
249
|
-
const dmmf = await (0,
|
252
|
+
const dmmf = await (0, import_chunk_5HCY6XOO.getDMMF)({
|
250
253
|
datamodel: schemaContext.schemaFiles,
|
251
254
|
previewFeatures
|
252
255
|
});
|
@@ -297,7 +300,7 @@ You need to define \`output\` in the generator block in the schema file.`
|
|
297
300
|
fromEnvVar: null
|
298
301
|
};
|
299
302
|
}
|
300
|
-
const datamodel = (0,
|
303
|
+
const datamodel = (0, import_chunk_V2YGEMSF.mergeSchemas)({ schemas: schemaContext.schemaFiles });
|
301
304
|
const envPaths = await (0, import_chunk_WXRTT6AT.getEnvPaths)(schemaContext.schemaPath, { cwd: generatorConfig.output.value });
|
302
305
|
const options2 = {
|
303
306
|
datamodel,
|
@@ -366,7 +369,7 @@ generator gen {
|
|
366
369
|
}
|
367
370
|
const queryEngineBinaryType = (0, import_engines.getCliQueryEngineBinaryType)();
|
368
371
|
const queryEngineType = (0, import_chunk_RS2R7COT.binaryTypeToEngineType)(queryEngineBinaryType);
|
369
|
-
|
372
|
+
debug3("neededVersions", JSON.stringify(neededVersions, null, 2));
|
370
373
|
const { binaryPathsByVersion, binaryTarget } = await (0, import_chunk_F2OZV76L.getBinaryPathsByVersion)({
|
371
374
|
neededVersions,
|
372
375
|
// We're lazily computing the binary target here, to avoid printing the
|
@@ -386,17 +389,17 @@ generator gen {
|
|
386
389
|
const engineVersion = (0, import_chunk_X3P4J7WW.getEngineVersionForGenerator)(generator.manifest, version2);
|
387
390
|
const binaryPaths = binaryPathsByVersion[engineVersion];
|
388
391
|
const generatorBinaryPaths = (0, import_chunk_5V36RLCO.pick)(binaryPaths ?? {}, generator.manifest.requiresEngines);
|
389
|
-
|
392
|
+
debug3({ generatorBinaryPaths });
|
390
393
|
generator.setBinaryPaths(generatorBinaryPaths);
|
391
394
|
if (engineVersion !== version2 && generator.options && generator.manifest.requiresEngines.includes(queryEngineType) && generatorBinaryPaths[queryEngineType] && generatorBinaryPaths[queryEngineType]?.[binaryTarget]) {
|
392
|
-
const customDmmf = await (0,
|
395
|
+
const customDmmf = await (0, import_chunk_5HCY6XOO.getDMMF)({
|
393
396
|
datamodel: schemaContext.schemaFiles,
|
394
397
|
previewFeatures
|
395
398
|
});
|
396
399
|
const options2 = { ...generator.options, dmmf: customDmmf };
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
+
debug3("generator.manifest.prettyName", generator.manifest.prettyName);
|
401
|
+
debug3("options", options2);
|
402
|
+
debug3("options.generator.binaryTargets", options2.generator.binaryTargets);
|
400
403
|
generator.setOptions(options2);
|
401
404
|
}
|
402
405
|
}
|
@@ -510,7 +513,7 @@ function checkUnsupportedDataProxy({
|
|
510
513
|
}
|
511
514
|
}
|
512
515
|
if (!schemaContext?.primaryDatasource) return;
|
513
|
-
const url = (0,
|
516
|
+
const url = (0, import_chunk_Y6KOTH6X.resolveUrl)((0, import_chunk_Y6KOTH6X.getEffectiveUrl)(schemaContext.primaryDatasource));
|
514
517
|
if (url?.startsWith("prisma://")) {
|
515
518
|
throw new Error(forbiddenCmdWithDataProxyFlagMessage(cmd));
|
516
519
|
}
|
@@ -26,16 +26,16 @@ 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_GWSUUTFI_exports = {};
|
30
|
+
__export(chunk_GWSUUTFI_exports, {
|
31
31
|
GetDmmfError: () => GetDmmfError,
|
32
32
|
getDMMF: () => getDMMF
|
33
33
|
});
|
34
|
-
module.exports = __toCommonJS(
|
34
|
+
module.exports = __toCommonJS(chunk_GWSUUTFI_exports);
|
35
35
|
var import_chunk_TZJROXB3 = require("./chunk-TZJROXB3.js");
|
36
36
|
var import_chunk_R6QH57HZ = require("./chunk-R6QH57HZ.js");
|
37
|
-
var
|
38
|
-
var
|
37
|
+
var import_chunk_MTCC42S3 = require("./chunk-MTCC42S3.js");
|
38
|
+
var import_chunk_CLW6AUQF = require("./chunk-CLW6AUQF.js");
|
39
39
|
var import_chunk_5DBOS77Y = require("./chunk-5DBOS77Y.js");
|
40
40
|
var import_chunk_XKZ6CBLA = require("./chunk-XKZ6CBLA.js");
|
41
41
|
var import_chunk_LMVSIVKQ = require("./chunk-LMVSIVKQ.js");
|
@@ -58,7 +58,7 @@ ${detailsHeader} ${message}`;
|
|
58
58
|
}).exhaustive();
|
59
59
|
const errorMessageWithContext = `${constructedErrorMessage}
|
60
60
|
[Context: getDmmf]`;
|
61
|
-
super((0,
|
61
|
+
super((0, import_chunk_MTCC42S3.addVersionDetailsToErrorMessage)(errorMessageWithContext));
|
62
62
|
this.name = "GetDmmfError";
|
63
63
|
}
|
64
64
|
};
|
@@ -70,13 +70,13 @@ async function getDMMF(options) {
|
|
70
70
|
() => {
|
71
71
|
if (process.env.FORCE_PANIC_QUERY_ENGINE_GET_DMMF) {
|
72
72
|
debug("Triggering a Rust panic...");
|
73
|
-
|
73
|
+
import_chunk_CLW6AUQF.prismaSchemaWasm.debug_panic();
|
74
74
|
}
|
75
75
|
const params = JSON.stringify({
|
76
76
|
prismaSchema: options.datamodel,
|
77
77
|
noColor: Boolean(process.env.NO_COLOR)
|
78
78
|
});
|
79
|
-
const data =
|
79
|
+
const data = import_chunk_CLW6AUQF.prismaSchemaWasm.get_dmmf(params);
|
80
80
|
return data;
|
81
81
|
},
|
82
82
|
(e) => ({
|
@@ -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_HSV7FNBA_exports = {};
|
20
|
+
__export(chunk_HSV7FNBA_exports, {
|
21
21
|
version: () => version
|
22
22
|
});
|
23
|
-
module.exports = __toCommonJS(
|
24
|
-
var
|
25
|
-
var packageJson = (0,
|
23
|
+
module.exports = __toCommonJS(chunk_HSV7FNBA_exports);
|
24
|
+
var import_chunk_ZBGPJ3BO = require("./chunk-ZBGPJ3BO.js");
|
25
|
+
var packageJson = (0, import_chunk_ZBGPJ3BO.require_package)();
|
26
26
|
var version = packageJson.version;
|
@@ -16,20 +16,20 @@ 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_HW6VVHIW_exports = {};
|
20
|
+
__export(chunk_HW6VVHIW_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(
|
28
|
-
var
|
27
|
+
module.exports = __toCommonJS(chunk_HW6VVHIW_exports);
|
28
|
+
var import_chunk_KOQXWQTO = require("./chunk-KOQXWQTO.js");
|
29
29
|
var import_chunk_LMVSIVKQ = require("./chunk-LMVSIVKQ.js");
|
30
30
|
var import_chunk_PG5FDKSF = require("./chunk-PG5FDKSF.js");
|
31
31
|
function lintSchema({ schemas }) {
|
32
|
-
const lintResult =
|
32
|
+
const lintResult = import_chunk_KOQXWQTO.prismaSchemaWasm.lint(JSON.stringify(schemas));
|
33
33
|
const lintDiagnostics = JSON.parse(lintResult);
|
34
34
|
return lintDiagnostics;
|
35
35
|
}
|
@@ -26,20 +26,20 @@ 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_IJ6AED6T_exports = {};
|
30
|
+
__export(chunk_IJ6AED6T_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(
|
37
|
+
module.exports = __toCommonJS(chunk_IJ6AED6T_exports);
|
38
38
|
var import_chunk_TZJROXB3 = require("./chunk-TZJROXB3.js");
|
39
39
|
var import_chunk_C47SCASR = require("./chunk-C47SCASR.js");
|
40
40
|
var import_chunk_R6QH57HZ = require("./chunk-R6QH57HZ.js");
|
41
|
-
var
|
42
|
-
var
|
41
|
+
var import_chunk_MTCC42S3 = require("./chunk-MTCC42S3.js");
|
42
|
+
var import_chunk_CLW6AUQF = require("./chunk-CLW6AUQF.js");
|
43
43
|
var import_chunk_5DBOS77Y = require("./chunk-5DBOS77Y.js");
|
44
44
|
var import_chunk_XKZ6CBLA = require("./chunk-XKZ6CBLA.js");
|
45
45
|
var import_chunk_LMVSIVKQ = require("./chunk-LMVSIVKQ.js");
|
@@ -64,7 +64,7 @@ ${detailsHeader} ${message}`;
|
|
64
64
|
}).exhaustive();
|
65
65
|
const errorMessageWithContext = `${constructedErrorMessage}
|
66
66
|
[Context: getConfig]`;
|
67
|
-
super((0,
|
67
|
+
super((0, import_chunk_MTCC42S3.addVersionDetailsToErrorMessage)(errorMessageWithContext));
|
68
68
|
this.name = "GetConfigError";
|
69
69
|
}
|
70
70
|
};
|
@@ -89,7 +89,7 @@ async function getConfig(options) {
|
|
89
89
|
() => {
|
90
90
|
if (process.env.FORCE_PANIC_QUERY_ENGINE_GET_CONFIG) {
|
91
91
|
debug("Triggering a Rust panic...");
|
92
|
-
|
92
|
+
import_chunk_CLW6AUQF.prismaSchemaWasm.debug_panic();
|
93
93
|
}
|
94
94
|
const params = JSON.stringify({
|
95
95
|
prismaSchema: options.datamodel,
|
@@ -97,7 +97,7 @@ async function getConfig(options) {
|
|
97
97
|
ignoreEnvVarErrors: options.ignoreEnvVarErrors ?? false,
|
98
98
|
env: process.env
|
99
99
|
});
|
100
|
-
const data =
|
100
|
+
const data = import_chunk_CLW6AUQF.prismaSchemaWasm.get_config(params);
|
101
101
|
return data;
|
102
102
|
},
|
103
103
|
(e) => ({
|
@@ -139,6 +139,7 @@ async function getConfig(options) {
|
|
139
139
|
}
|
140
140
|
return Promise.resolve(data);
|
141
141
|
}
|
142
|
+
debug("original error in getConfig Wasm:\n%s", configEither.left);
|
142
143
|
const error = (0, import_chunk_XKZ6CBLA.z)(configEither.left).with({ type: "wasm-error" }, (e) => {
|
143
144
|
debugErrorType(e);
|
144
145
|
if ((0, import_chunk_LMVSIVKQ.isWasmPanic)(e.error)) {
|
@@ -26,15 +26,15 @@ 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_KOQXWQTO_exports = {};
|
30
|
+
__export(chunk_KOQXWQTO_exports, {
|
31
31
|
prismaSchemaWasm: () => import_prisma_schema_wasm.default,
|
32
32
|
prismaSchemaWasmVersion: () => prismaSchemaWasmVersion,
|
33
33
|
schemaEngineWasmVersion: () => schemaEngineWasmVersion,
|
34
34
|
wasm_exports: () => wasm_exports
|
35
35
|
});
|
36
|
-
module.exports = __toCommonJS(
|
37
|
-
var
|
36
|
+
module.exports = __toCommonJS(chunk_KOQXWQTO_exports);
|
37
|
+
var import_chunk_XIOP5B57 = require("./chunk-XIOP5B57.js");
|
38
38
|
var import_chunk_WXRVYSYN = require("./chunk-WXRVYSYN.js");
|
39
39
|
var import_chunk_4VNS5WPM = require("./chunk-4VNS5WPM.js");
|
40
40
|
var import_prisma_schema_wasm = __toESM(require("@prisma/prisma-schema-wasm"));
|
@@ -46,6 +46,6 @@ var wasm_exports = {};
|
|
46
46
|
});
|
47
47
|
var globalWithPanicRegistry = globalThis;
|
48
48
|
globalWithPanicRegistry.PRISMA_WASM_PANIC_REGISTRY = new import_chunk_WXRVYSYN.WasmPanicRegistry();
|
49
|
-
var { dependencies } = (0,
|
49
|
+
var { dependencies } = (0, import_chunk_XIOP5B57.require_package)();
|
50
50
|
var prismaSchemaWasmVersion = dependencies["@prisma/prisma-schema-wasm"];
|
51
51
|
var schemaEngineWasmVersion = dependencies["@prisma/schema-engine-wasm"];
|
@@ -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_LXKHQK77_exports = {};
|
20
|
+
__export(chunk_LXKHQK77_exports, {
|
21
21
|
version: () => version
|
22
22
|
});
|
23
|
-
module.exports = __toCommonJS(
|
24
|
-
var
|
25
|
-
var packageJson = (0,
|
23
|
+
module.exports = __toCommonJS(chunk_LXKHQK77_exports);
|
24
|
+
var import_chunk_XIOP5B57 = require("./chunk-XIOP5B57.js");
|
25
|
+
var packageJson = (0, import_chunk_XIOP5B57.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_MTCC42S3_exports = {};
|
20
|
+
__export(chunk_MTCC42S3_exports, {
|
21
21
|
addVersionDetailsToErrorMessage: () => addVersionDetailsToErrorMessage
|
22
22
|
});
|
23
|
-
module.exports = __toCommonJS(
|
24
|
-
var
|
23
|
+
module.exports = __toCommonJS(chunk_MTCC42S3_exports);
|
24
|
+
var import_chunk_HSV7FNBA = require("./chunk-HSV7FNBA.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_HSV7FNBA.version]];
|
28
28
|
return `${message}
|
29
29
|
|
30
30
|
${(0, import_chunk_QN6PSQY7.formatTable)(rows)}`;
|