@prisma/client-common 6.19.0-integration-feat-remove-binary-engine.1 → 6.19.0-integration-engines-6-19-0-7-next-44e0881a477328a478a36acec141ddc4630ec61e.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/QueryEngine.d.ts +1 -0
- package/dist/client-config.d.ts +10 -0
- package/package.json +6 -6
package/dist/QueryEngine.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export type QueryEngineInstance = {
|
|
|
34
34
|
commitTransaction(id: string, traceHeaders: string, requestId: string): Promise<string>;
|
|
35
35
|
rollbackTransaction(id: string, traceHeaders: string, requestId: string): Promise<string>;
|
|
36
36
|
metrics?(options: string): Promise<string>;
|
|
37
|
+
applyPendingMigrations?(): Promise<void>;
|
|
37
38
|
trace(requestId: string): Promise<string | null>;
|
|
38
39
|
};
|
|
39
40
|
export interface QueryEngineConstructor {
|
package/dist/client-config.d.ts
CHANGED
|
@@ -44,6 +44,11 @@ export type GetPrismaClientConfig = {
|
|
|
44
44
|
url: EnvValue;
|
|
45
45
|
};
|
|
46
46
|
};
|
|
47
|
+
/**
|
|
48
|
+
* The string hash that was produced for a given schema
|
|
49
|
+
* @remarks only used for the purpose of data proxy
|
|
50
|
+
*/
|
|
51
|
+
inlineSchemaHash: string;
|
|
47
52
|
/**
|
|
48
53
|
* A marker to indicate that the client was not generated via `prisma
|
|
49
54
|
* generate` but was generated via `generate --postinstall` script instead.
|
|
@@ -64,6 +69,11 @@ export type GetPrismaClientConfig = {
|
|
|
64
69
|
* in the current working directory. This usually means it has been bundled.
|
|
65
70
|
*/
|
|
66
71
|
isBundled?: boolean;
|
|
72
|
+
/**
|
|
73
|
+
* A boolean that is `false` when the client was generated with --no-engine. At
|
|
74
|
+
* runtime, this means the client will be bound to be using the Data Proxy.
|
|
75
|
+
*/
|
|
76
|
+
copyEngine?: boolean;
|
|
67
77
|
/**
|
|
68
78
|
* Optional wasm loading configuration
|
|
69
79
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/client-common",
|
|
3
|
-
"version": "6.19.0-integration-
|
|
3
|
+
"version": "6.19.0-integration-engines-6-19-0-7-next-44e0881a477328a478a36acec141ddc4630ec61e.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",
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
},
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@prisma/client-engine-runtime": "6.19.0-integration-
|
|
28
|
-
"@prisma/dmmf": "6.19.0-integration-
|
|
29
|
-
"@prisma/
|
|
30
|
-
"@prisma/
|
|
31
|
-
"@prisma/
|
|
27
|
+
"@prisma/client-engine-runtime": "6.19.0-integration-engines-6-19-0-7-next-44e0881a477328a478a36acec141ddc4630ec61e.1",
|
|
28
|
+
"@prisma/dmmf": "6.19.0-integration-engines-6-19-0-7-next-44e0881a477328a478a36acec141ddc4630ec61e.1",
|
|
29
|
+
"@prisma/generator": "6.19.0-integration-engines-6-19-0-7-next-44e0881a477328a478a36acec141ddc4630ec61e.1",
|
|
30
|
+
"@prisma/internals": "6.19.0-integration-engines-6-19-0-7-next-44e0881a477328a478a36acec141ddc4630ec61e.1",
|
|
31
|
+
"@prisma/driver-adapter-utils": "6.19.0-integration-engines-6-19-0-7-next-44e0881a477328a478a36acec141ddc4630ec61e.1"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"dist"
|