pgsql-parser 13.8.1 → 13.8.3

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -139,7 +139,7 @@ Our latest is built with `13-latest` branch from libpg_query
139
139
  * [@pgsql/types](https://github.com/launchql/pgsql-parser/tree/master/packages/types): Offers TypeScript type definitions for PostgreSQL AST nodes, facilitating type-safe construction, analysis, and manipulation of ASTs.
140
140
  * [@pgsql/utils](https://github.com/launchql/pgsql-parser/tree/master/packages/utils): A utility library for working with PostgreSQL AST node enumerations in a type-safe way, easing enum name and value conversions.
141
141
  * [pg-proto-parser](https://github.com/launchql/pg-proto-parser): A TypeScript tool that parses PostgreSQL Protocol Buffers definitions to generate TypeScript interfaces, utility functions, and JSON mappings for enums.
142
- * [libpg-query-node](https://github.com/launchql/libpg-query-node): The real PostgreSQL parser exposed for Node.js, used primarily in `pgsql-parser` for parsing and deparsing SQL queries.
142
+ * [libpg-query](https://github.com/launchql/libpg-query-node): The real PostgreSQL parser exposed for Node.js, used primarily in `pgsql-parser` for parsing and deparsing SQL queries.
143
143
 
144
144
  Thanks @lfittl for building the core `libpg_query` suite:
145
145
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pgsql-parser",
3
- "version": "13.8.1",
3
+ "version": "13.8.3",
4
4
  "description": "The real PostgreSQL query parser",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/launchql/pgsql-parser",
@@ -86,8 +86,8 @@
86
86
  "dependencies": {
87
87
  "libpg-query": "13.3.2",
88
88
  "minimist": "^1.2.6",
89
- "pgsql-deparser": "^13.7.1",
90
- "pgsql-enums": "^13.3.1"
89
+ "pgsql-deparser": "^13.7.3",
90
+ "pgsql-enums": "^13.3.3"
91
91
  },
92
- "gitHead": "ac077a65935d537e10d78a8495f5c5f0393e45c4"
92
+ "gitHead": "c9af3d391d3766e0d352d09ad54f89705db2f6e6"
93
93
  }