prisma 6.7.0-integration-push-qwtnrmswnvqm.1 → 6.8.0-dev.1
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 +599 -584
- package/build/prisma_schema_build_bg.wasm +0 -0
- package/build/schema_engine_bg.wasm +0 -0
- package/package.json +14 -14
- package/preinstall/index.js +4 -4
- package/prisma-client/generator-build/index.js +53 -20
- package/prisma-client/package.json +5 -5
- package/prisma-client/runtime/binary.js +56 -56
- package/prisma-client/runtime/binary.mjs +56 -56
- package/prisma-client/runtime/client.d.mts +3 -3
- package/prisma-client/runtime/client.d.ts +3 -3
- package/prisma-client/runtime/client.js +28 -28
- package/prisma-client/runtime/client.mjs +30 -30
- package/prisma-client/runtime/edge-esm.js +15 -15
- package/prisma-client/runtime/edge.d.ts +3 -3
- package/prisma-client/runtime/edge.js +15 -15
- package/prisma-client/runtime/library.d.mts +3 -3
- package/prisma-client/runtime/library.d.ts +3 -3
- package/prisma-client/runtime/library.js +37 -37
- package/prisma-client/runtime/library.mjs +40 -40
- 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 +3 -3
- package/prisma-client/runtime/react-native.js +22 -22
- package/prisma-client/scripts/default-index.js +3 -3
@@ -210,7 +210,7 @@ declare const ColumnTypeEnum: {
|
|
210
210
|
declare type CompactedBatchResponse = {
|
211
211
|
type: 'compacted';
|
212
212
|
plan: object;
|
213
|
-
arguments:
|
213
|
+
arguments: Record<string, {}>[];
|
214
214
|
nestedSelection: string[];
|
215
215
|
keys: string[];
|
216
216
|
expectNonEmpty: boolean;
|
@@ -2688,8 +2688,8 @@ declare interface Queryable<Query, Result> extends AdapterInfo {
|
|
2688
2688
|
}
|
2689
2689
|
|
2690
2690
|
declare type QueryCompiler = {
|
2691
|
-
compile(request: string):
|
2692
|
-
compileBatch(batchRequest: string):
|
2691
|
+
compile(request: string): string;
|
2692
|
+
compileBatch(batchRequest: string): BatchResponse;
|
2693
2693
|
};
|
2694
2694
|
|
2695
2695
|
declare interface QueryCompilerConstructor {
|