@prisma/query-compiler-wasm 7.2.0-4.0c8ef2ce45c83248ab3df073180d5eda9e8be7a3 → 7.3.0-2.feat-fast-and-small-builds-db36bef8bdd7cc913dc1ed662d6523beef129326
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_fast.js +5 -0
- package/cockroachdb/query_compiler_fast_bg.wasm +0 -0
- package/mysql/query_compiler_fast.js +5 -0
- package/mysql/query_compiler_fast_bg.wasm +0 -0
- package/package.json +1 -1
- package/postgresql/query_compiler_fast.js +5 -0
- package/postgresql/query_compiler_fast_bg.wasm +0 -0
- package/sqlite/query_compiler_fast.d.ts +23 -0
- package/sqlite/query_compiler_fast.js +5 -0
- package/sqlite/query_compiler_fast_bg.wasm +0 -0
- package/sqlserver/query_compiler_fast.js +5 -0
- package/sqlserver/query_compiler_fast_bg.wasm +0 -0
- package/cockroachdb/query_compiler.js +0 -5
- package/cockroachdb/query_compiler_bg.wasm +0 -0
- package/mysql/query_compiler.js +0 -5
- package/mysql/query_compiler_bg.wasm +0 -0
- package/postgresql/query_compiler.js +0 -5
- package/postgresql/query_compiler_bg.wasm +0 -0
- package/sqlite/query_compiler.js +0 -5
- package/sqlite/query_compiler_bg.wasm +0 -0
- package/sqlserver/query_compiler.d.ts +0 -23
- package/sqlserver/query_compiler.js +0 -5
- package/sqlserver/query_compiler_bg.wasm +0 -0
- package/{mysql/query_compiler.d.ts → cockroachdb/query_compiler_fast.d.ts} +0 -0
- package/cockroachdb/{query_compiler_bg.js → query_compiler_fast_bg.js} +0 -0
- package/cockroachdb/{query_compiler_bg.wasm.d.ts → query_compiler_fast_bg.wasm.d.ts} +0 -0
- package/{cockroachdb/query_compiler.d.ts → mysql/query_compiler_fast.d.ts} +6 -6
- /package/mysql/{query_compiler_bg.js → query_compiler_fast_bg.js} +0 -0
- /package/mysql/{query_compiler_bg.wasm.d.ts → query_compiler_fast_bg.wasm.d.ts} +0 -0
- /package/postgresql/{query_compiler.d.ts → query_compiler_fast.d.ts} +0 -0
- /package/postgresql/{query_compiler_bg.js → query_compiler_fast_bg.js} +0 -0
- /package/postgresql/{query_compiler_bg.wasm.d.ts → query_compiler_fast_bg.wasm.d.ts} +0 -0
- /package/sqlite/{query_compiler_bg.js → query_compiler_fast_bg.js} +0 -0
- /package/sqlite/{query_compiler_bg.wasm.d.ts → query_compiler_fast_bg.wasm.d.ts} +0 -0
- /package/{sqlite/query_compiler.d.ts → sqlserver/query_compiler_fast.d.ts} +0 -0
- /package/sqlserver/{query_compiler_bg.js → query_compiler_fast_bg.js} +0 -0
- /package/sqlserver/{query_compiler_bg.wasm.d.ts → query_compiler_fast_bg.wasm.d.ts} +0 -0
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
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
|
+
export interface JsCompileError {
|
|
12
|
+
message: string;
|
|
13
|
+
code: string | undefined;
|
|
14
|
+
meta: Value | undefined;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export class QueryCompiler {
|
|
18
|
+
free(): void;
|
|
19
|
+
[Symbol.dispose](): void;
|
|
20
|
+
compileBatch(request: string): any;
|
|
21
|
+
constructor(params: QueryCompilerParams);
|
|
22
|
+
compile(request: string): any;
|
|
23
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/mysql/query_compiler.js
DELETED
|
Binary file
|
|
Binary file
|
package/sqlite/query_compiler.js
DELETED
|
Binary file
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
export interface JsCompileError {
|
|
4
|
-
message: string;
|
|
5
|
-
code: string | undefined;
|
|
6
|
-
meta: Value | undefined;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
export interface QueryCompilerParams {
|
|
10
|
-
datamodel: string;
|
|
11
|
-
provider: AdapterProvider;
|
|
12
|
-
connectionInfo: JsConnectionInfo;
|
|
13
|
-
}
|
|
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
|
-
export class QueryCompiler {
|
|
18
|
-
free(): void;
|
|
19
|
-
[Symbol.dispose](): void;
|
|
20
|
-
compileBatch(request: string): any;
|
|
21
|
-
constructor(params: QueryCompilerParams);
|
|
22
|
-
compile(request: string): any;
|
|
23
|
-
}
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
export type BatchResponse = { type: "multi"; plans: Expression[] } | { type: "compacted"; plan: Expression; arguments: Record<string, ArgumentValue>[]; nestedSelection: string[]; keys: string[]; expectNonEmpty: boolean };
|
|
4
4
|
|
|
5
|
-
export interface QueryCompilerParams {
|
|
6
|
-
datamodel: string;
|
|
7
|
-
provider: AdapterProvider;
|
|
8
|
-
connectionInfo: JsConnectionInfo;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
5
|
export interface JsCompileError {
|
|
12
6
|
message: string;
|
|
13
7
|
code: string | undefined;
|
|
14
8
|
meta: Value | undefined;
|
|
15
9
|
}
|
|
16
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;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|