introspectron 2.1.1 โ 2.1.2
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/README.md +1 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -76,6 +76,7 @@ psql testdb -f ./seed.sql
|
|
|
76
76
|
* [@pgsql/types](https://github.com/launchql/pgsql-parser/tree/main/packages/types): **๐ Type definitions** for PostgreSQL AST nodes in TypeScript.
|
|
77
77
|
* [@pgsql/utils](https://github.com/launchql/pgsql-parser/tree/main/packages/utils): **๐ ๏ธ AST utilities** for constructing and transforming PostgreSQL syntax trees.
|
|
78
78
|
* [launchql/pg-ast](https://github.com/launchql/launchql/tree/main/packages/pg-ast): **๐ Low-level AST tools** and transformations for Postgres query structures.
|
|
79
|
+
* [launchql/pg-proto-parser](https://github.com/launchql/pg-proto-parser): **๐ฆ Protobuf parser** for parsing PostgreSQL Protocol Buffers definitions to generate TypeScript interfaces, utility functions, and JSON mappings for enums.
|
|
79
80
|
* [launchql/pg-query-context](https://github.com/launchql/launchql/tree/main/packages/pg-query-context): **๐ Session context injection** to add session-local context (e.g., `SET LOCAL`) into queriesโideal for setting `role`, `jwt.claims`, and other session settings.
|
|
80
81
|
|
|
81
82
|
### ๐ API & Dev Tools
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "introspectron",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "introspect your Postgres database and generate an SDK",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"main": "index.js",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"graphql-tag": "2.12.5"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "213912ee7e39ca3d755029b8cd5e3b548324c13f"
|
|
36
36
|
}
|