apitally 0.17.3 → 0.18.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 +2 -5
- package/dist/fastify/index.cjs +54 -28
- package/dist/fastify/index.cjs.map +1 -1
- package/dist/fastify/index.js +54 -28
- package/dist/fastify/index.js.map +1 -1
- package/dist/fastify/plugin.cjs +56 -28
- package/dist/fastify/plugin.cjs.map +1 -1
- package/dist/fastify/plugin.d.cts +3 -1
- package/dist/fastify/plugin.d.ts +3 -1
- package/dist/fastify/plugin.js +55 -28
- package/dist/fastify/plugin.js.map +1 -1
- package/dist/h3/index.cjs +4 -4
- package/dist/h3/index.cjs.map +1 -1
- package/dist/h3/index.js +4 -4
- package/dist/h3/index.js.map +1 -1
- package/dist/h3/plugin.cjs +4 -4
- package/dist/h3/plugin.cjs.map +1 -1
- package/dist/h3/plugin.js +4 -4
- package/dist/h3/plugin.js.map +1 -1
- package/dist/nestjs/index.cjs +1517 -1137
- package/dist/nestjs/index.cjs.map +1 -1
- package/dist/nestjs/index.d.cts +4 -6
- package/dist/nestjs/index.d.ts +4 -6
- package/dist/nestjs/index.js +1501 -1119
- package/dist/nestjs/index.js.map +1 -1
- package/package.json +12 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apitally",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"description": "Simple API monitoring & analytics for REST APIs built with Express, Fastify, Hono, H3, Koa, and NestJS.",
|
|
5
5
|
"author": "Apitally <hello@apitally.io>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -179,10 +179,11 @@
|
|
|
179
179
|
},
|
|
180
180
|
"peerDependencies": {
|
|
181
181
|
"@adonisjs/core": "^6",
|
|
182
|
-
"@nestjs/common": "^
|
|
183
|
-
"@nestjs/core": "^
|
|
184
|
-
"@nestjs/platform-express": "^
|
|
185
|
-
"@
|
|
182
|
+
"@nestjs/common": "^9 || ^10 || ^11",
|
|
183
|
+
"@nestjs/core": "^9 || ^10 || ^11",
|
|
184
|
+
"@nestjs/platform-express": "^9 || ^10 || ^11",
|
|
185
|
+
"@nestjs/platform-fastify": "^9 || ^10 || ^11",
|
|
186
|
+
"@sentry/node": "^8.1.0 || ^9 || ^10",
|
|
186
187
|
"express": "^4 || ^5",
|
|
187
188
|
"fastify": "^3 || ^4 || ^5",
|
|
188
189
|
"fastify-plugin": "^3 || ^4 || ^5",
|
|
@@ -203,6 +204,9 @@
|
|
|
203
204
|
"@nestjs/platform-express": {
|
|
204
205
|
"optional": true
|
|
205
206
|
},
|
|
207
|
+
"@nestjs/platform-fastify": {
|
|
208
|
+
"optional": true
|
|
209
|
+
},
|
|
206
210
|
"@sentry/node": {
|
|
207
211
|
"optional": true
|
|
208
212
|
},
|
|
@@ -233,12 +237,13 @@
|
|
|
233
237
|
"@nestjs/common": "^11.0.0",
|
|
234
238
|
"@nestjs/core": "^11.0.0",
|
|
235
239
|
"@nestjs/platform-express": "^11.0.0",
|
|
240
|
+
"@nestjs/platform-fastify": "^11.0.0",
|
|
236
241
|
"@nestjs/testing": "^11.0.0",
|
|
237
242
|
"@sentry/node": "^9.0.0",
|
|
238
243
|
"@swc/core": "^1.3.104",
|
|
239
244
|
"@types/async-lock": "^1.4.2",
|
|
240
245
|
"@types/express": "^5.0.3",
|
|
241
|
-
"@types/koa": "^
|
|
246
|
+
"@types/koa": "^3.0.0",
|
|
242
247
|
"@types/koa__router": "^12.0.4",
|
|
243
248
|
"@types/koa-bodyparser": "^4.3.12",
|
|
244
249
|
"@types/koa-route": "^3.2.8",
|
|
@@ -256,7 +261,7 @@
|
|
|
256
261
|
"fastify": "^5.0.0",
|
|
257
262
|
"fastify-plugin": "^5.0.1",
|
|
258
263
|
"globals": "^16.2.0",
|
|
259
|
-
"h3": "2.0.0-beta.
|
|
264
|
+
"h3": "2.0.0-beta.3",
|
|
260
265
|
"hono": "^4.6.5",
|
|
261
266
|
"koa": "^3.0.0",
|
|
262
267
|
"koa-bodyparser": "^4.4.1",
|