@ronin/compiler 0.17.22-leo-ron-1140-experimental-433 → 0.17.22-leo-ron-1140-experimental-434

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/dist/index.d.ts CHANGED
@@ -5,9 +5,9 @@ declare const DML_QUERY_TYPES_WRITE: readonly ["set", "add", "remove"];
5
5
  /** Query types used for interacting with data. */
6
6
  declare const DML_QUERY_TYPES: readonly ["get", "count", "set", "add", "remove"];
7
7
  /** Query types used for interacting with the database schema. */
8
- declare const DDL_QUERY_TYPES: readonly ["create", "alter", "drop"];
8
+ declare const DDL_QUERY_TYPES: readonly ["list", "create", "alter", "drop"];
9
9
  /** All query types. */
10
- declare const QUERY_TYPES: readonly ["get", "count", "set", "add", "remove", "create", "alter", "drop"];
10
+ declare const QUERY_TYPES: readonly ["get", "count", "set", "add", "remove", "list", "create", "alter", "drop"];
11
11
  /**
12
12
  * A list of placeholders that can be located inside queries after those queries were
13
13
  * serialized into JSON objects.
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ var DML_QUERY_TYPES = [
5
5
  ...DML_QUERY_TYPES_READ,
6
6
  ...DML_QUERY_TYPES_WRITE
7
7
  ];
8
- var DDL_QUERY_TYPES = ["create", "alter", "drop"];
8
+ var DDL_QUERY_TYPES = ["list", "create", "alter", "drop"];
9
9
  var QUERY_TYPES = [...DML_QUERY_TYPES, ...DDL_QUERY_TYPES];
10
10
  var QUERY_SYMBOLS = {
11
11
  // Represents a sub query.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ronin/compiler",
3
- "version": "0.17.22-leo-ron-1140-experimental-433",
3
+ "version": "0.17.22-leo-ron-1140-experimental-434",
4
4
  "type": "module",
5
5
  "description": "Compiles RONIN queries to SQL statements.",
6
6
  "publishConfig": {