prisma 6.10.0-dev.10 → 6.10.0-dev.12
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 +408 -408
- package/build/schema_engine_bg.wasm +0 -0
- package/package.json +14 -14
- package/prisma-client/generator-build/index.js +11 -11
- package/prisma-client/package.json +4 -4
- package/prisma-client/runtime/binary.js +3 -3
- package/prisma-client/runtime/binary.mjs +3 -3
- package/prisma-client/runtime/client.d.mts +2 -2
- package/prisma-client/runtime/client.d.ts +2 -2
- package/prisma-client/runtime/client.js +11 -11
- package/prisma-client/runtime/client.mjs +11 -11
- package/prisma-client/runtime/edge-esm.js +3 -3
- package/prisma-client/runtime/edge.d.ts +2 -2
- package/prisma-client/runtime/edge.js +3 -3
- package/prisma-client/runtime/library.d.mts +2 -2
- package/prisma-client/runtime/library.d.ts +2 -2
- 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 +2 -2
- 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[];
|
@@ -2717,7 +2717,7 @@ declare interface Queryable<Query, Result> extends AdapterInfo {
|
|
2717
2717
|
}
|
2718
2718
|
|
2719
2719
|
declare type QueryCompiler = {
|
2720
|
-
compile(request: string):
|
2720
|
+
compile(request: string): {};
|
2721
2721
|
compileBatch(batchRequest: string): BatchResponse;
|
2722
2722
|
};
|
2723
2723
|
|
@@ -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[];
|
@@ -2717,7 +2717,7 @@ declare interface Queryable<Query, Result> extends AdapterInfo {
|
|
2717
2717
|
}
|
2718
2718
|
|
2719
2719
|
declare type QueryCompiler = {
|
2720
|
-
compile(request: string):
|
2720
|
+
compile(request: string): {};
|
2721
2721
|
compileBatch(batchRequest: string): BatchResponse;
|
2722
2722
|
};
|
2723
2723
|
|