@prisma/client-common 6.19.0-integration-next.15 → 6.19.0-integration-next.16
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/client-config.d.ts +0 -12
- package/package.json +6 -6
package/dist/client-config.d.ts
CHANGED
|
@@ -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.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/client-common",
|
|
3
|
-
"version": "6.19.0-integration-next.
|
|
3
|
+
"version": "6.19.0-integration-next.16",
|
|
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-next.
|
|
28
|
-
"@prisma/
|
|
29
|
-
"@prisma/
|
|
30
|
-
"@prisma/driver-adapter-utils": "6.19.0-integration-next.
|
|
31
|
-
"@prisma/
|
|
27
|
+
"@prisma/client-engine-runtime": "6.19.0-integration-next.16",
|
|
28
|
+
"@prisma/dmmf": "6.19.0-integration-next.16",
|
|
29
|
+
"@prisma/generator": "6.19.0-integration-next.16",
|
|
30
|
+
"@prisma/driver-adapter-utils": "6.19.0-integration-next.16",
|
|
31
|
+
"@prisma/internals": "6.19.0-integration-next.16"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"dist"
|