prisma 6.9.0 → 6.10.0-dev.10

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.
@@ -255,6 +255,7 @@ declare type ComputedFieldsMap = {
255
255
  declare type ConnectionInfo = {
256
256
  schemaName?: string;
257
257
  maxBindValues?: number;
258
+ supportsRelationJoins: boolean;
258
259
  };
259
260
 
260
261
  declare type ConnectorType = 'mysql' | 'mongodb' | 'sqlite' | 'postgresql' | 'postgres' | 'prisma+postgres' | 'sqlserver' | 'cockroachdb';
@@ -1153,10 +1154,22 @@ declare type Error_2 = {
1153
1154
  column?: string;
1154
1155
  } | {
1155
1156
  kind: 'UniqueConstraintViolation';
1156
- fields: string[];
1157
+ constraint?: {
1158
+ fields: string[];
1159
+ } | {
1160
+ index: string;
1161
+ } | {
1162
+ foreignKey: {};
1163
+ };
1157
1164
  } | {
1158
1165
  kind: 'NullConstraintViolation';
1159
- fields: string[];
1166
+ constraint?: {
1167
+ fields: string[];
1168
+ } | {
1169
+ index: string;
1170
+ } | {
1171
+ foreignKey: {};
1172
+ };
1160
1173
  } | {
1161
1174
  kind: 'ForeignKeyConstraintViolation';
1162
1175
  constraint?: {
@@ -1189,6 +1202,11 @@ declare type Error_2 = {
1189
1202
  } | {
1190
1203
  kind: 'TooManyConnections';
1191
1204
  cause: string;
1205
+ } | {
1206
+ kind: 'ValueOutOfRange';
1207
+ cause: string;
1208
+ } | {
1209
+ kind: 'MissingFullTextSearchIndex';
1192
1210
  } | {
1193
1211
  kind: 'SocketTimeout';
1194
1212
  } | {
@@ -2383,7 +2401,7 @@ export declare const objectEnumValues: {
2383
2401
  };
2384
2402
  };
2385
2403
 
2386
- declare const officialPrismaAdapters: readonly ["@prisma/adapter-planetscale", "@prisma/adapter-neon", "@prisma/adapter-libsql", "@prisma/adapter-d1", "@prisma/adapter-pg", "@prisma/adapter-pg-worker"];
2404
+ declare const officialPrismaAdapters: readonly ["@prisma/adapter-planetscale", "@prisma/adapter-neon", "@prisma/adapter-libsql", "@prisma/adapter-d1", "@prisma/adapter-pg"];
2387
2405
 
2388
2406
  export declare type Omission = Record<string, boolean | Skip>;
2389
2407