@sleekify/sleekify-fastify 1.2.3 → 1.2.5
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
|
@@ -25,6 +25,7 @@ Your API documentation will both match the OpenAPI specification's schema and be
|
|
|
25
25
|
<br/><sub>_src/v1/users.ts_</sub>
|
|
26
26
|
```TypeScript
|
|
27
27
|
import { type FastifyReply, type FastifyRequest } from 'fastify';
|
|
28
|
+
import { DELETE, GET, Path, POST, PUT, Schema } from '@sleekify/sleekify';
|
|
28
29
|
|
|
29
30
|
@Path('/v1/users')
|
|
30
31
|
export class UsersResource {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sleekify/sleekify-fastify",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
4
4
|
"description": "A TypeScript decorator driven approach for developing Fastify web applications.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "tsc",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"typescript": "^5.1.6"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@sleekify/sleekify": "^1.2.
|
|
54
|
+
"@sleekify/sleekify": "^1.2.5",
|
|
55
55
|
"@types/node": "^20.4.5",
|
|
56
56
|
"fastify": "^5.0.0",
|
|
57
57
|
"fastify-openapi-glue": "^4.7.1",
|