pgsql-deparser 13.14.0 → 13.15.0

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 +5 -6
package/README.md CHANGED
@@ -89,7 +89,7 @@ Our latest is built with `13-latest` branch from libpg_query
89
89
 
90
90
  * [pgsql-parser](https://github.com/launchql/pgsql-parser): The real PostgreSQL parser for Node.js, providing symmetric parsing and deparsing of SQL statements with actual PostgreSQL parser integration.
91
91
  * [pgsql-deparser](https://github.com/launchql/pgsql-parser/tree/main/packages/deparser): A streamlined tool designed for converting PostgreSQL ASTs back into SQL queries, focusing solely on deparser functionality to complement `pgsql-parser`.
92
- * [pgsql-enums](https://github.com/launchql/pgsql-parser/tree/main/packages/enums-json): A utility package offering easy access to PostgreSQL enumeration types in JSON format, aiding in string and integer conversions of enums used within ASTs to compliment `pgsql-parser`
92
+ * [pgsql-enums](https://github.com/launchql/pgsql-parser/tree/main/packages/pgsql-enums): A utility package offering easy access to PostgreSQL enumeration types in JSON format, aiding in string and integer conversions of enums used within ASTs to compliment `pgsql-parser`
93
93
  * [@pgsql/enums](https://github.com/launchql/pgsql-parser/tree/main/packages/enums): Provides PostgreSQL AST enums in TypeScript, enhancing type safety and usability in projects interacting with PostgreSQL AST nodes.
94
94
  * [@pgsql/types](https://github.com/launchql/pgsql-parser/tree/main/packages/types): Offers TypeScript type definitions for PostgreSQL AST nodes, facilitating type-safe construction, analysis, and manipulation of ASTs.
95
95
  * [@pgsql/utils](https://github.com/launchql/pgsql-parser/tree/main/packages/utils): A comprehensive utility library for PostgreSQL, offering type-safe AST node creation and enum value conversions, simplifying the construction and manipulation of PostgreSQL ASTs.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pgsql-deparser",
3
- "version": "13.14.0",
3
+ "version": "13.15.0",
4
4
  "description": "PostgreSQL AST Deparser",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/launchql/pgsql-parser",
@@ -74,7 +74,7 @@
74
74
  "esprima": "4.0.1",
75
75
  "glob": "8.0.3",
76
76
  "jest": "^29.7.0",
77
- "pgsql-parser": "^13.15.0",
77
+ "pgsql-parser": "^13.16.0",
78
78
  "prettier": "^2.8.7",
79
79
  "rimraf": "5.0.5",
80
80
  "ts-jest": "^29.1.0",
@@ -82,9 +82,8 @@
82
82
  "typescript": "^5.0.4"
83
83
  },
84
84
  "dependencies": {
85
- "@pgsql/types": "^13.8.0",
85
+ "@pgsql/types": "^13.9.0",
86
86
  "dotty": "^0.1.0",
87
- "pgsql-enums": "^13.9.0"
88
- },
89
- "gitHead": "1358b34422c45c2111dc0b1764155a720ab7fd73"
87
+ "pgsql-enums": "^13.10.0"
88
+ }
90
89
  }