prisma 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/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 +23 -5
- package/prisma-client/runtime/client.d.ts +23 -5
- package/prisma-client/runtime/client.js +11 -11
- package/prisma-client/runtime/client.mjs +11 -11
- package/prisma-client/runtime/edge-esm.js +9 -9
- package/prisma-client/runtime/edge.d.ts +23 -5
- package/prisma-client/runtime/edge.js +9 -9
- package/prisma-client/runtime/library.d.mts +23 -5
- package/prisma-client/runtime/library.d.ts +23 -5
- 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 +23 -5
- package/prisma-client/runtime/react-native.js +2 -2
- package/prisma-client/scripts/default-index.js +3 -3
@@ -209,7 +209,7 @@ declare const ColumnTypeEnum: {
|
|
209
209
|
|
210
210
|
declare type CompactedBatchResponse = {
|
211
211
|
type: 'compacted';
|
212
|
-
plan:
|
212
|
+
plan: {};
|
213
213
|
arguments: Record<string, {}>[];
|
214
214
|
nestedSelection: string[];
|
215
215
|
keys: string[];
|
@@ -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
|
|
@@ -2699,7 +2717,7 @@ declare interface Queryable<Query, Result> extends AdapterInfo {
|
|
2699
2717
|
}
|
2700
2718
|
|
2701
2719
|
declare type QueryCompiler = {
|
2702
|
-
compile(request: string):
|
2720
|
+
compile(request: string): {};
|
2703
2721
|
compileBatch(batchRequest: string): BatchResponse;
|
2704
2722
|
};
|
2705
2723
|
|