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