@prisma/client-common 6.19.0-integration-engines-6-19-0-3-next-b6daa0b16d0aedf495932cae9d00728357899ae0.1 → 6.19.0-integration-next.6

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.
@@ -34,7 +34,6 @@ 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>;
38
37
  trace(requestId: string): Promise<string | null>;
39
38
  };
40
39
  export interface QueryEngineConstructor {
@@ -44,11 +44,6 @@ 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;
52
47
  /**
53
48
  * A marker to indicate that the client was not generated via `prisma
54
49
  * generate` but was generated via `generate --postinstall` script instead.
@@ -69,11 +64,6 @@ export type GetPrismaClientConfig = {
69
64
  * in the current working directory. This usually means it has been bundled.
70
65
  */
71
66
  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;
77
67
  /**
78
68
  * Optional wasm loading configuration
79
69
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/client-common",
3
- "version": "6.19.0-integration-engines-6-19-0-3-next-b6daa0b16d0aedf495932cae9d00728357899ae0.1",
3
+ "version": "6.19.0-integration-next.6",
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-engines-6-19-0-3-next-b6daa0b16d0aedf495932cae9d00728357899ae0.1",
28
- "@prisma/driver-adapter-utils": "6.19.0-integration-engines-6-19-0-3-next-b6daa0b16d0aedf495932cae9d00728357899ae0.1",
29
- "@prisma/dmmf": "6.19.0-integration-engines-6-19-0-3-next-b6daa0b16d0aedf495932cae9d00728357899ae0.1",
30
- "@prisma/generator": "6.19.0-integration-engines-6-19-0-3-next-b6daa0b16d0aedf495932cae9d00728357899ae0.1",
31
- "@prisma/internals": "6.19.0-integration-engines-6-19-0-3-next-b6daa0b16d0aedf495932cae9d00728357899ae0.1"
27
+ "@prisma/client-engine-runtime": "6.19.0-integration-next.6",
28
+ "@prisma/generator": "6.19.0-integration-next.6",
29
+ "@prisma/dmmf": "6.19.0-integration-next.6",
30
+ "@prisma/internals": "6.19.0-integration-next.6",
31
+ "@prisma/driver-adapter-utils": "6.19.0-integration-next.6"
32
32
  },
33
33
  "files": [
34
34
  "dist"