@prisma/client-common 6.19.0-integration-next.5 → 6.19.0-integration-engines-6-19-0-2-push-qtpkxwkvolmz-33c9120129ea6df44eaf652b4de9bedd817e3190.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 +5 -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.
|
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-2-push-qtpkxwkvolmz-33c9120129ea6df44eaf652b4de9bedd817e3190.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/
|
|
29
|
-
"@prisma/
|
|
30
|
-
"@prisma/
|
|
31
|
-
"@prisma/
|
|
27
|
+
"@prisma/client-engine-runtime": "6.19.0-integration-engines-6-19-0-2-push-qtpkxwkvolmz-33c9120129ea6df44eaf652b4de9bedd817e3190.1",
|
|
28
|
+
"@prisma/driver-adapter-utils": "6.19.0-integration-engines-6-19-0-2-push-qtpkxwkvolmz-33c9120129ea6df44eaf652b4de9bedd817e3190.1",
|
|
29
|
+
"@prisma/generator": "6.19.0-integration-engines-6-19-0-2-push-qtpkxwkvolmz-33c9120129ea6df44eaf652b4de9bedd817e3190.1",
|
|
30
|
+
"@prisma/dmmf": "6.19.0-integration-engines-6-19-0-2-push-qtpkxwkvolmz-33c9120129ea6df44eaf652b4de9bedd817e3190.1",
|
|
31
|
+
"@prisma/internals": "6.19.0-integration-engines-6-19-0-2-push-qtpkxwkvolmz-33c9120129ea6df44eaf652b4de9bedd817e3190.1"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"dist"
|