bq2cst 0.5.4 → 0.5.6

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/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2018 dr666m1 <skndr666m1@gmail.com>
1
+ Copyright (c) 2018 kitta65 <skndr666m1@gmail.com>
2
2
 
3
3
  Permission is hereby granted, free of charge, to any
4
4
  person obtaining a copy of this software and associated
package/README.md CHANGED
@@ -1,19 +1,23 @@
1
1
  # bq2cst
2
- Parse standard SQL, which is a dialect of [BigQuery](https://cloud.google.com/bigquery), into a concrete syntax tree.
2
+
3
+ Parse GoogleSQL, which is a dialect of [BigQuery](https://cloud.google.com/bigquery), into a concrete syntax tree.
3
4
 
4
5
  > [!WARNING]
5
- > This parser is designed to be used via [prettier-plugin-bq](https://github.com/dr666m1/prettier-plugin-bq).
6
+ > This parser is designed to be used via [prettier-plugin-bq](https://github.com/kitta65/prettier-plugin-bq).
6
7
 
7
8
  ## Features
8
- - forcused on standard SQL (in other words, other SQL dialects are out of scope)
9
+
10
+ - forcused on GoogleSQL (in other words, other SQL dialects are out of scope)
9
11
  - developed in Rust, using [wasm-pack](https://github.com/rustwasm/wasm-pack)
10
12
 
11
13
  ## Install
14
+
12
15
  ```shell
13
16
  npm install bq2cst
14
17
  ```
15
18
 
16
19
  ## Usage
20
+
17
21
  ```javascript
18
22
  const parser = require("bq2cst");
19
23
  parser.parse("SELECT 1;")
package/bq2cst.d.ts CHANGED
@@ -667,6 +667,7 @@ export type CreateIndexStatement = XXXStatement & {
667
667
  on: NodeChild;
668
668
  tablename: NodeChild;
669
669
  column_group: NodeChild;
670
+ storing?: NodeChild;
670
671
  options?: NodeChild;
671
672
  };
672
673
  };
package/bq2cst_bg.wasm CHANGED
Binary file
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "collaborators": [
4
4
  "kitta65 <skndr666m1@gmail.com>"
5
5
  ],
6
- "version": "0.5.4",
6
+ "version": "0.5.6",
7
7
  "license": "MIT",
8
8
  "files": [
9
9
  "bq2cst_bg.wasm",