prisma 6.11.0-dev.30 → 6.11.0-dev.32
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 +9 -8
- package/package.json +14 -14
- package/prisma-client/generator-build/index.js +2 -2
- package/prisma-client/package.json +1 -1
- package/prisma-client/runtime/binary.js +2 -2
- package/prisma-client/runtime/binary.mjs +2 -2
- package/prisma-client/runtime/client.d.mts +1 -0
- package/prisma-client/runtime/client.d.ts +1 -0
- package/prisma-client/runtime/client.js +20 -20
- package/prisma-client/runtime/client.mjs +18 -18
- package/prisma-client/runtime/edge-esm.js +2 -2
- package/prisma-client/runtime/edge.d.ts +1 -0
- package/prisma-client/runtime/edge.js +2 -2
- package/prisma-client/runtime/library.d.mts +1 -0
- package/prisma-client/runtime/library.d.ts +1 -0
- package/prisma-client/runtime/library.js +2 -2
- package/prisma-client/runtime/library.mjs +2 -2
- package/prisma-client/runtime/react-native.d.ts +1 -0
- package/prisma-client/runtime/react-native.js +2 -2
- package/prisma-client/scripts/default-index.js +1 -1
@@ -2729,6 +2729,7 @@ declare interface Queryable<Query, Result> extends AdapterInfo {
|
|
2729
2729
|
declare type QueryCompiler = {
|
2730
2730
|
compile(request: string): {};
|
2731
2731
|
compileBatch(batchRequest: string): BatchResponse;
|
2732
|
+
free(): void;
|
2732
2733
|
};
|
2733
2734
|
|
2734
2735
|
declare interface QueryCompilerConstructor {
|
@@ -2729,6 +2729,7 @@ declare interface Queryable<Query, Result> extends AdapterInfo {
|
|
2729
2729
|
declare type QueryCompiler = {
|
2730
2730
|
compile(request: string): {};
|
2731
2731
|
compileBatch(batchRequest: string): BatchResponse;
|
2732
|
+
free(): void;
|
2732
2733
|
};
|
2733
2734
|
|
2734
2735
|
declare interface QueryCompilerConstructor {
|