tempest-express-sdk 0.26.0 → 0.28.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/README.md +1 -1
- package/dist/{chunk-GLZYNX63.js → chunk-3NS5KVHT.js} +3 -3
- package/dist/{chunk-GLZYNX63.js.map → chunk-3NS5KVHT.js.map} +1 -1
- package/dist/cli.cjs +1 -1
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.cjs +837 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +301 -4
- package/dist/index.d.ts +301 -4
- package/dist/index.js +832 -16
- package/dist/index.js.map +1 -1
- package/package.json +7 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tempest-express-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.28.0",
|
|
4
4
|
"description": "Shared Express/Zod/tempest-db-js building blocks: base schemas, repository, exceptions, pagination, settings and native Swagger + Redoc — the conventions used across Tempest projects, ported from tempest-fastapi-sdk.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
"peerDependencies": {
|
|
65
65
|
"amqplib": "^0.10.0",
|
|
66
66
|
"bcryptjs": "^2.4.3 || ^3.0.0",
|
|
67
|
+
"busboy": "^1.6.0",
|
|
67
68
|
"jsonwebtoken": "^9.0.0",
|
|
68
69
|
"minio": "^8.0.0",
|
|
69
70
|
"nodemailer": "^6.9.0",
|
|
@@ -80,6 +81,9 @@
|
|
|
80
81
|
"bcryptjs": {
|
|
81
82
|
"optional": true
|
|
82
83
|
},
|
|
84
|
+
"busboy": {
|
|
85
|
+
"optional": true
|
|
86
|
+
},
|
|
83
87
|
"jsonwebtoken": {
|
|
84
88
|
"optional": true
|
|
85
89
|
},
|
|
@@ -103,6 +107,7 @@
|
|
|
103
107
|
"@biomejs/biome": "^1.9.0",
|
|
104
108
|
"@types/amqplib": "^0.10.5",
|
|
105
109
|
"@types/bcryptjs": "^2.4.6",
|
|
110
|
+
"@types/busboy": "^1.5.4",
|
|
106
111
|
"@types/express": "^5.0.0",
|
|
107
112
|
"@types/jsonwebtoken": "^9.0.7",
|
|
108
113
|
"@types/node": "^22.10.0",
|
|
@@ -112,6 +117,7 @@
|
|
|
112
117
|
"@types/ws": "^8.5.12",
|
|
113
118
|
"amqplib": "^0.10.4",
|
|
114
119
|
"bcryptjs": "^3.0.2",
|
|
120
|
+
"busboy": "^1.6.0",
|
|
115
121
|
"jsonwebtoken": "^9.0.2",
|
|
116
122
|
"nodemailer": "^6.9.16",
|
|
117
123
|
"redoc": "^2.5.0",
|