@prisma/query-compiler-wasm 7.1.0-3.d9cee0d5892b6ac19222fb0ef2384cc3d5efd043 → 7.1.0-5.ab17e348034e9823a063101c707b39f4ba1e6dd4
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/cockroachdb/query_compiler_bg.wasm +0 -0
- package/mysql/query_compiler.d.ts +2 -2
- package/mysql/query_compiler_bg.wasm +0 -0
- package/package.json +1 -1
- package/postgresql/query_compiler.d.ts +2 -2
- package/postgresql/query_compiler_bg.wasm +0 -0
- package/sqlite/query_compiler_bg.wasm +0 -0
- package/sqlserver/query_compiler.d.ts +2 -2
- package/sqlserver/query_compiler_bg.wasm +0 -0
|
Binary file
|
|
@@ -6,14 +6,14 @@ export interface JsCompileError {
|
|
|
6
6
|
meta: Value | undefined;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
export type BatchResponse = { type: "multi"; plans: Expression[] } | { type: "compacted"; plan: Expression; arguments: Record<string, ArgumentValue>[]; nestedSelection: string[]; keys: string[]; expectNonEmpty: boolean };
|
|
10
|
-
|
|
11
9
|
export interface QueryCompilerParams {
|
|
12
10
|
datamodel: string;
|
|
13
11
|
provider: AdapterProvider;
|
|
14
12
|
connectionInfo: JsConnectionInfo;
|
|
15
13
|
}
|
|
16
14
|
|
|
15
|
+
export type BatchResponse = { type: "multi"; plans: Expression[] } | { type: "compacted"; plan: Expression; arguments: Record<string, ArgumentValue>[]; nestedSelection: string[]; keys: string[]; expectNonEmpty: boolean };
|
|
16
|
+
|
|
17
17
|
export class QueryCompiler {
|
|
18
18
|
free(): void;
|
|
19
19
|
[Symbol.dispose](): void;
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
export type BatchResponse = { type: "multi"; plans: Expression[] } | { type: "compacted"; plan: Expression; arguments: Record<string, ArgumentValue>[]; nestedSelection: string[]; keys: string[]; expectNonEmpty: boolean };
|
|
4
|
-
|
|
5
3
|
export interface JsCompileError {
|
|
6
4
|
message: string;
|
|
7
5
|
code: string | undefined;
|
|
@@ -14,6 +12,8 @@ export interface QueryCompilerParams {
|
|
|
14
12
|
connectionInfo: JsConnectionInfo;
|
|
15
13
|
}
|
|
16
14
|
|
|
15
|
+
export type BatchResponse = { type: "multi"; plans: Expression[] } | { type: "compacted"; plan: Expression; arguments: Record<string, ArgumentValue>[]; nestedSelection: string[]; keys: string[]; expectNonEmpty: boolean };
|
|
16
|
+
|
|
17
17
|
export class QueryCompiler {
|
|
18
18
|
free(): void;
|
|
19
19
|
[Symbol.dispose](): void;
|
|
Binary file
|
|
Binary file
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
export type BatchResponse = { type: "multi"; plans: Expression[] } | { type: "compacted"; plan: Expression; arguments: Record<string, ArgumentValue>[]; nestedSelection: string[]; keys: string[]; expectNonEmpty: boolean };
|
|
4
|
-
|
|
5
3
|
export interface JsCompileError {
|
|
6
4
|
message: string;
|
|
7
5
|
code: string | undefined;
|
|
@@ -14,6 +12,8 @@ export interface QueryCompilerParams {
|
|
|
14
12
|
connectionInfo: JsConnectionInfo;
|
|
15
13
|
}
|
|
16
14
|
|
|
15
|
+
export type BatchResponse = { type: "multi"; plans: Expression[] } | { type: "compacted"; plan: Expression; arguments: Record<string, ArgumentValue>[]; nestedSelection: string[]; keys: string[]; expectNonEmpty: boolean };
|
|
16
|
+
|
|
17
17
|
export class QueryCompiler {
|
|
18
18
|
free(): void;
|
|
19
19
|
[Symbol.dispose](): void;
|
|
Binary file
|