pg-codegen 2.13.0 → 2.13.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 +25 -0
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -97,6 +97,26 @@ export class Users implements Users {
|
|
|
97
97
|
}
|
|
98
98
|
```
|
|
99
99
|
|
|
100
|
+
## Education and Tutorials
|
|
101
|
+
|
|
102
|
+
1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
|
|
103
|
+
Get started with modular databases in minutes. Install prerequisites and deploy your first module.
|
|
104
|
+
|
|
105
|
+
2. 📦 [Modular PostgreSQL Development with Database Packages](https://launchql.com/learn/modular-postgres)
|
|
106
|
+
Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
|
|
107
|
+
|
|
108
|
+
3. ✏️ [Authoring Database Changes](https://launchql.com/learn/authoring-database-changes)
|
|
109
|
+
Master the workflow for adding, organizing, and managing database changes with pgpm.
|
|
110
|
+
|
|
111
|
+
4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://launchql.com/learn/e2e-postgres-testing)
|
|
112
|
+
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
113
|
+
|
|
114
|
+
5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
|
|
115
|
+
TypeScript-native testing for Supabase with modern workflows.
|
|
116
|
+
|
|
117
|
+
6. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
|
|
118
|
+
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
119
|
+
|
|
100
120
|
## Related LaunchQL Tooling
|
|
101
121
|
|
|
102
122
|
### 🧪 Testing
|
|
@@ -138,6 +158,11 @@ export class Users implements Users {
|
|
|
138
158
|
* [@launchql/query-builder](https://github.com/launchql/launchql/tree/main/packages/query-builder): **🏗️ SQL constructor** providing a robust TypeScript-based query builder for dynamic generation of `SELECT`, `INSERT`, `UPDATE`, `DELETE`, and stored procedure calls—supports advanced SQL features like `JOIN`, `GROUP BY`, and schema-qualified queries.
|
|
139
159
|
* [@launchql/query](https://github.com/launchql/launchql/tree/main/packages/query): **🧩 Fluent GraphQL builder** for PostGraphile schemas. ⚡ Schema-aware via introspection, 🧩 composable and ergonomic for building deeply nested queries.
|
|
140
160
|
|
|
161
|
+
## Credits
|
|
162
|
+
|
|
163
|
+
🛠 Built by LaunchQL — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/launchql)
|
|
164
|
+
|
|
165
|
+
|
|
141
166
|
## Disclaimer
|
|
142
167
|
|
|
143
168
|
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pg-codegen",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.2",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostgreSQL Codegen",
|
|
6
6
|
"main": "index.js",
|
|
@@ -41,17 +41,17 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@babel/generator": "^7.26.3",
|
|
43
43
|
"@babel/types": "^7.26.3",
|
|
44
|
-
"@launchql/logger": "^1.1.
|
|
45
|
-
"@launchql/server-utils": "^2.6.
|
|
46
|
-
"@launchql/types": "^2.8.
|
|
44
|
+
"@launchql/logger": "^1.1.6",
|
|
45
|
+
"@launchql/server-utils": "^2.6.2",
|
|
46
|
+
"@launchql/types": "^2.8.1",
|
|
47
47
|
"pg": "^8.16.0",
|
|
48
|
-
"pg-cache": "^1.4.
|
|
49
|
-
"pg-env": "^1.1.
|
|
50
|
-
"pgsql-test": "^2.14.
|
|
48
|
+
"pg-cache": "^1.4.2",
|
|
49
|
+
"pg-env": "^1.1.3",
|
|
50
|
+
"pgsql-test": "^2.14.2"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/babel__generator": "^7.6.8",
|
|
54
54
|
"@types/pg": "^8.15.2"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "25b59a1403d95d86be14bd36c94e5af1689df1c3"
|
|
57
57
|
}
|