@pgsql/transform 17.5.2 → 17.6.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.
- package/13/enums.d.ts +1 -1
- package/13/types.d.ts +1 -1
- package/17/enums.d.ts +1 -1
- package/17/types.d.ts +1 -1
- package/README.md +14 -1
- package/package.json +3 -3
package/13/enums.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This file was automatically generated by pg-proto-parser@1.
|
|
2
|
+
* This file was automatically generated by pg-proto-parser@1.29.0.
|
|
3
3
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source proto file,
|
|
4
4
|
* and run the pg-proto-parser generate command to regenerate this file.
|
|
5
5
|
*/
|
package/13/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This file was automatically generated by pg-proto-parser@1.
|
|
2
|
+
* This file was automatically generated by pg-proto-parser@1.29.0.
|
|
3
3
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source proto file,
|
|
4
4
|
* and run the pg-proto-parser generate command to regenerate this file.
|
|
5
5
|
*/
|
package/17/enums.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This file was automatically generated by pg-proto-parser@1.
|
|
2
|
+
* This file was automatically generated by pg-proto-parser@1.29.0.
|
|
3
3
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source proto file,
|
|
4
4
|
* and run the pg-proto-parser generate command to regenerate this file.
|
|
5
5
|
*/
|
package/17/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This file was automatically generated by pg-proto-parser@1.
|
|
2
|
+
* This file was automatically generated by pg-proto-parser@1.29.0.
|
|
3
3
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source proto file,
|
|
4
4
|
* and run the pg-proto-parser generate command to regenerate this file.
|
|
5
5
|
*/
|
package/README.md
CHANGED
|
@@ -16,6 +16,19 @@
|
|
|
16
16
|
|
|
17
17
|
`@pgsql/types` is a TypeScript library providing type definitions for PostgreSQL AST nodes, primarily used in conjunction with [`pgsql-parser`](https://github.com/launchql/pgsql-parser). It offers a comprehensive and type-safe way to interact with the AST nodes generated by PostgreSQL query parsing.
|
|
18
18
|
|
|
19
|
+
## Related
|
|
19
20
|
|
|
21
|
+
* [pgsql-parser](https://www.npmjs.com/package/pgsql-parser): The real PostgreSQL parser for Node.js, providing symmetric parsing and deparsing of SQL statements with actual PostgreSQL parser integration.
|
|
22
|
+
* [pgsql-deparser](https://www.npmjs.com/package/pgsql-deparser): A streamlined tool designed for converting PostgreSQL ASTs back into SQL queries, focusing solely on deparser functionality to complement `pgsql-parser`.
|
|
23
|
+
* [@pgsql/parser](https://www.npmjs.com/package/@pgsql/parser): Multi-version PostgreSQL parser with dynamic version selection at runtime, supporting PostgreSQL 15, 16, and 17 in a single package.
|
|
24
|
+
* [@pgsql/types](https://www.npmjs.com/package/@pgsql/types): Offers TypeScript type definitions for PostgreSQL AST nodes, facilitating type-safe construction, analysis, and manipulation of ASTs.
|
|
25
|
+
* [@pgsql/enums](https://www.npmjs.com/package/@pgsql/enums): Provides TypeScript enum definitions for PostgreSQL constants, enabling type-safe usage of PostgreSQL enums and constants in your applications.
|
|
26
|
+
* [@pgsql/utils](https://www.npmjs.com/package/@pgsql/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.
|
|
27
|
+
* [pg-proto-parser](https://www.npmjs.com/package/pg-proto-parser): A TypeScript tool that parses PostgreSQL Protocol Buffers definitions to generate TypeScript interfaces, utility functions, and JSON mappings for enums.
|
|
28
|
+
* [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.
|
|
20
29
|
|
|
21
|
-
|
|
30
|
+
## Disclaimer
|
|
31
|
+
|
|
32
|
+
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
|
|
33
|
+
|
|
34
|
+
No developer or entity involved in creating Software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the Software code or Software CLI, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pgsql/transform",
|
|
3
|
-
"version": "17.
|
|
3
|
+
"version": "17.6.0",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "Transform PostgreSQL AST types for pgsql-parser",
|
|
6
6
|
"main": "index.js",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"test:watch": "jest --watch"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"pg-proto-parser": "^1.
|
|
34
|
+
"pg-proto-parser": "^1.29.0"
|
|
35
35
|
},
|
|
36
36
|
"keywords": [],
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "e0f9b0579328f4206c315d499e0e2045d3b8f845"
|
|
38
38
|
}
|