@malloydata/malloy 0.0.8 → 0.0.9-dev221123175817
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/README.md +5 -5
- package/dist/lang/ast/ast-main.d.ts +2 -2
- package/package.json +3 -3
- package/dist/lang/lib/Malloy/MalloyListener.d.ts +0 -2026
- package/dist/lang/lib/Malloy/MalloyListener.js +0 -4
- package/dist/lang/lib/Malloy/MalloyVisitor.d.ts +0 -1276
- package/dist/lang/lib/Malloy/MalloyVisitor.js +0 -4
- package/dist/md5.d.ts +0 -1
- package/dist/md5.js +0 -30
package/README.md
CHANGED
|
@@ -29,12 +29,12 @@ The `@malloydata/malloy` is basically a compiler that takes a few things as inpu
|
|
|
29
29
|
|
|
30
30
|
In practice, much of this loop is handled by various database plugins:
|
|
31
31
|
|
|
32
|
-
- [DuckDB](https://github.com/
|
|
33
|
-
- [BigQuery](https://github.com/
|
|
34
|
-
- [Postgres](https://github.com/
|
|
32
|
+
- [DuckDB](https://github.com/malloydata/malloy/tree/main/packages/malloy-db-duckdb)
|
|
33
|
+
- [BigQuery](https://github.com/malloydata/malloy/tree/main/packages/malloy-db-bigquery)
|
|
34
|
+
- [Postgres](https://github.com/malloydata/malloy/tree/main/packages/malloy-db-postgres)
|
|
35
35
|
|
|
36
36
|
## Do you have any examples?
|
|
37
37
|
|
|
38
|
-
You can find a (very) simple example of writing a CLI for executing Malloy queries [here](https://github.com/
|
|
38
|
+
You can find a (very) simple example of writing a CLI for executing Malloy queries [here](https://github.com/malloydata/malloy/tree/main/demo/malloy-demo-bq-cli)
|
|
39
39
|
|
|
40
|
-
A more realistic and complex use case - we use these libraries to power our VSCode Extension. Some examples can be found [here](https://github.com/
|
|
40
|
+
A more realistic and complex use case - we use these libraries to power our VSCode Extension. Some examples can be found [here](https://github.com/malloydata/malloy/tree/main/vscode-extension/src/extension/commands)
|
|
@@ -303,9 +303,9 @@ export declare class WildcardFieldReference extends MalloyElement {
|
|
|
303
303
|
}
|
|
304
304
|
export declare class OrderBy extends MalloyElement {
|
|
305
305
|
readonly field: number | FieldName;
|
|
306
|
-
readonly dir?: "
|
|
306
|
+
readonly dir?: "asc" | "desc" | undefined;
|
|
307
307
|
elementType: string;
|
|
308
|
-
constructor(field: number | FieldName, dir?: "
|
|
308
|
+
constructor(field: number | FieldName, dir?: "asc" | "desc" | undefined);
|
|
309
309
|
get modelField(): string | number;
|
|
310
310
|
getOrderBy(_fs: FieldSpace): model.OrderBy;
|
|
311
311
|
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/malloy",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9-dev221123175817",
|
|
4
4
|
"license": "GPL-2.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
-
"homepage": "https://github.com/
|
|
7
|
+
"homepage": "https://github.com/malloydata/malloy#readme",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/
|
|
10
|
+
"url": "https://github.com/malloydata/malloy"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
13
|
"test": "jest --config=../../jest.config.js",
|