@prisma/config 6.10.0-dev.1 → 6.10.0-dev.11
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/index.d.ts +21 -3
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ export declare type ConfigFromFile = {
|
|
|
68
68
|
declare type ConnectionInfo = {
|
|
69
69
|
schemaName?: string;
|
|
70
70
|
maxBindValues?: number;
|
|
71
|
+
supportsRelationJoins: boolean;
|
|
71
72
|
};
|
|
72
73
|
|
|
73
74
|
/**
|
|
@@ -107,10 +108,22 @@ declare type Error_2 = {
|
|
|
107
108
|
column?: string;
|
|
108
109
|
} | {
|
|
109
110
|
kind: 'UniqueConstraintViolation';
|
|
110
|
-
|
|
111
|
+
constraint?: {
|
|
112
|
+
fields: string[];
|
|
113
|
+
} | {
|
|
114
|
+
index: string;
|
|
115
|
+
} | {
|
|
116
|
+
foreignKey: {};
|
|
117
|
+
};
|
|
111
118
|
} | {
|
|
112
119
|
kind: 'NullConstraintViolation';
|
|
113
|
-
|
|
120
|
+
constraint?: {
|
|
121
|
+
fields: string[];
|
|
122
|
+
} | {
|
|
123
|
+
index: string;
|
|
124
|
+
} | {
|
|
125
|
+
foreignKey: {};
|
|
126
|
+
};
|
|
114
127
|
} | {
|
|
115
128
|
kind: 'ForeignKeyConstraintViolation';
|
|
116
129
|
constraint?: {
|
|
@@ -143,6 +156,11 @@ declare type Error_2 = {
|
|
|
143
156
|
} | {
|
|
144
157
|
kind: 'TooManyConnections';
|
|
145
158
|
cause: string;
|
|
159
|
+
} | {
|
|
160
|
+
kind: 'ValueOutOfRange';
|
|
161
|
+
cause: string;
|
|
162
|
+
} | {
|
|
163
|
+
kind: 'MissingFullTextSearchIndex';
|
|
146
164
|
} | {
|
|
147
165
|
kind: 'SocketTimeout';
|
|
148
166
|
} | {
|
|
@@ -218,7 +236,7 @@ declare type LoadConfigFromFileInput = {
|
|
|
218
236
|
configRoot?: string;
|
|
219
237
|
};
|
|
220
238
|
|
|
221
|
-
declare const officialPrismaAdapters: readonly ["@prisma/adapter-planetscale", "@prisma/adapter-neon", "@prisma/adapter-libsql", "@prisma/adapter-d1", "@prisma/adapter-pg"
|
|
239
|
+
declare const officialPrismaAdapters: readonly ["@prisma/adapter-planetscale", "@prisma/adapter-neon", "@prisma/adapter-libsql", "@prisma/adapter-d1", "@prisma/adapter-pg"];
|
|
222
240
|
|
|
223
241
|
declare const PRISMA_CONFIG_INTERNAL_BRAND: unique symbol;
|
|
224
242
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/config",
|
|
3
|
-
"version": "6.10.0-dev.
|
|
3
|
+
"version": "6.10.0-dev.11",
|
|
4
4
|
"description": "Internal package used to define and read Prisma configuration files",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"jest": "29.7.0",
|
|
22
22
|
"jest-junit": "16.0.0",
|
|
23
23
|
"cross-env": "7.0.3",
|
|
24
|
-
"@prisma/
|
|
25
|
-
"@prisma/
|
|
24
|
+
"@prisma/driver-adapter-utils": "6.10.0-dev.11",
|
|
25
|
+
"@prisma/get-platform": "6.10.0-dev.11"
|
|
26
26
|
},
|
|
27
27
|
"files": [
|
|
28
28
|
"dist"
|