@prisma/generator 6.19.0-integration-next.6 → 6.19.0-integration-feat-remove-binary-engine.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/configuration.d.ts +1 -4
- package/package.json +2 -2
package/dist/configuration.d.ts
CHANGED
|
@@ -46,9 +46,6 @@ export type BinaryPaths = {
|
|
|
46
46
|
schemaEngine?: {
|
|
47
47
|
[binaryTarget: string]: string;
|
|
48
48
|
};
|
|
49
|
-
queryEngine?: {
|
|
50
|
-
[binaryTarget: string]: string;
|
|
51
|
-
};
|
|
52
49
|
libqueryEngine?: {
|
|
53
50
|
[binaryTarget: string]: string;
|
|
54
51
|
};
|
|
@@ -73,7 +70,7 @@ export type GeneratorOptions = {
|
|
|
73
70
|
envPaths?: EnvPaths;
|
|
74
71
|
typedSql?: SqlQueryOutput[];
|
|
75
72
|
};
|
|
76
|
-
export type EngineType = '
|
|
73
|
+
export type EngineType = 'libqueryEngine' | 'schemaEngine';
|
|
77
74
|
export type GeneratorManifest = {
|
|
78
75
|
prettyName?: string;
|
|
79
76
|
defaultOutput?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/generator",
|
|
3
|
-
"version": "6.19.0-integration-
|
|
3
|
+
"version": "6.19.0-integration-feat-remove-binary-engine.1",
|
|
4
4
|
"description": "This package is intended for Prisma's internal use",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"vitest": "3.2.4",
|
|
28
|
-
"@prisma/dmmf": "6.19.0-integration-
|
|
28
|
+
"@prisma/dmmf": "6.19.0-integration-feat-remove-binary-engine.1"
|
|
29
29
|
},
|
|
30
30
|
"files": [
|
|
31
31
|
"dist"
|