@prisma/client-common 6.20.0-integration-merge-release-workflows.2 → 6.20.0-integration-feat-prisma-7-config.2

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.
@@ -33,8 +33,6 @@ export type QueryEngineInstance = {
33
33
  startTransaction(options: string, traceHeaders: string, requestId: string): Promise<string>;
34
34
  commitTransaction(id: string, traceHeaders: string, requestId: string): Promise<string>;
35
35
  rollbackTransaction(id: string, traceHeaders: string, requestId: string): Promise<string>;
36
- metrics?(options: string): Promise<string>;
37
- applyPendingMigrations?(): Promise<void>;
38
36
  trace(requestId: string): Promise<string | null>;
39
37
  };
40
38
  export interface QueryEngineConstructor {
@@ -1,5 +1,4 @@
1
1
  import { ActiveConnectorType, EnvValue, GeneratorConfig } from '@prisma/generator';
2
- import { LoadedEnv } from '@prisma/internals';
3
2
  import { CompilerWasmLoadingConfig } from './QueryCompiler';
4
3
  import { EngineWasmLoadingConfig } from './QueryEngine';
5
4
  import { RuntimeDataModel } from './runtimeDataModel';
@@ -11,10 +10,6 @@ import { RuntimeDataModel } from './runtimeDataModel';
11
10
  export type GetPrismaClientConfig = {
12
11
  runtimeDataModel: RuntimeDataModel;
13
12
  generator?: GeneratorConfig;
14
- relativeEnvPaths?: {
15
- rootEnvPath?: string | null;
16
- schemaEnvPath?: string | null;
17
- };
18
13
  relativePath: string;
19
14
  dirname: string;
20
15
  clientVersion: string;
@@ -26,13 +21,6 @@ export type GetPrismaClientConfig = {
26
21
  * @remarks only used for the purpose of data proxy
27
22
  */
28
23
  inlineSchema: string;
29
- /**
30
- * A special env object just for the data proxy edge runtime.
31
- * Allows bundlers to inject their own env variables (Vercel).
32
- * Allows platforms to declare global variables as env (Workers).
33
- * @remarks only used for the purpose of data proxy
34
- */
35
- injectableEdgeEnv?: () => LoadedEnv;
36
24
  /**
37
25
  * The contents of the datasource url saved in a string.
38
26
  * This can either be an env var name or connection string.
@@ -44,11 +32,6 @@ export type GetPrismaClientConfig = {
44
32
  url: EnvValue;
45
33
  };
46
34
  };
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
35
  /**
53
36
  * A marker to indicate that the client was not generated via `prisma
54
37
  * generate` but was generated via `generate --postinstall` script instead.
@@ -69,11 +52,6 @@ export type GetPrismaClientConfig = {
69
52
  * in the current working directory. This usually means it has been bundled.
70
53
  */
71
54
  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
55
  /**
78
56
  * Optional wasm loading configuration
79
57
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/client-common",
3
- "version": "6.20.0-integration-merge-release-workflows.2",
3
+ "version": "6.20.0-integration-feat-prisma-7-config.2",
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.20.0-integration-merge-release-workflows.2",
28
- "@prisma/dmmf": "6.20.0-integration-merge-release-workflows.2",
29
- "@prisma/generator": "6.20.0-integration-merge-release-workflows.2",
30
- "@prisma/internals": "6.20.0-integration-merge-release-workflows.2",
31
- "@prisma/driver-adapter-utils": "6.20.0-integration-merge-release-workflows.2"
27
+ "@prisma/client-engine-runtime": "6.20.0-integration-feat-prisma-7-config.2",
28
+ "@prisma/dmmf": "6.20.0-integration-feat-prisma-7-config.2",
29
+ "@prisma/driver-adapter-utils": "6.20.0-integration-feat-prisma-7-config.2",
30
+ "@prisma/generator": "6.20.0-integration-feat-prisma-7-config.2",
31
+ "@prisma/internals": "6.20.0-integration-feat-prisma-7-config.2"
32
32
  },
33
33
  "files": [
34
34
  "dist"