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.
- package/build/index.js +824 -824
- package/build/prisma_schema_build_bg.wasm +0 -0
- package/build/schema_engine_bg.wasm +0 -0
- package/package.json +14 -14
- package/prisma-client/generator-build/index.js +11 -13
- package/prisma-client/package.json +4 -6
- package/prisma-client/runtime/binary.js +5 -5
- package/prisma-client/runtime/binary.mjs +5 -5
- package/prisma-client/runtime/client.d.mts +21 -3
- package/prisma-client/runtime/client.d.ts +21 -3
- package/prisma-client/runtime/client.js +30 -30
- package/prisma-client/runtime/client.mjs +30 -30
- package/prisma-client/runtime/edge-esm.js +9 -9
- package/prisma-client/runtime/edge.d.ts +21 -3
- package/prisma-client/runtime/edge.js +9 -9
- package/prisma-client/runtime/library.d.mts +21 -3
- package/prisma-client/runtime/library.d.ts +21 -3
- package/prisma-client/runtime/library.js +2 -2
- package/prisma-client/runtime/library.mjs +2 -2
- package/prisma-client/runtime/query_engine_bg.mysql.js +2 -2
- package/prisma-client/runtime/query_engine_bg.mysql.mjs +1 -1
- package/prisma-client/runtime/query_engine_bg.postgresql.js +2 -2
- package/prisma-client/runtime/query_engine_bg.postgresql.mjs +1 -1
- package/prisma-client/runtime/query_engine_bg.sqlite.js +2 -2
- package/prisma-client/runtime/query_engine_bg.sqlite.mjs +1 -1
- package/prisma-client/runtime/react-native.d.ts +21 -3
- package/prisma-client/runtime/react-native.js +2 -2
- package/prisma-client/scripts/default-index.js +3 -3
@@ -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
|
-
|
1157
|
+
constraint?: {
|
1158
|
+
fields: string[];
|
1159
|
+
} | {
|
1160
|
+
index: string;
|
1161
|
+
} | {
|
1162
|
+
foreignKey: {};
|
1163
|
+
};
|
1157
1164
|
} | {
|
1158
1165
|
kind: 'NullConstraintViolation';
|
1159
|
-
|
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"
|
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
|
|
@@ -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
|
-
|
1157
|
+
constraint?: {
|
1158
|
+
fields: string[];
|
1159
|
+
} | {
|
1160
|
+
index: string;
|
1161
|
+
} | {
|
1162
|
+
foreignKey: {};
|
1163
|
+
};
|
1157
1164
|
} | {
|
1158
1165
|
kind: 'NullConstraintViolation';
|
1159
|
-
|
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"
|
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
|
|