@nestia/sdk 3.1.1 → 3.1.2-dev.20240505

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.
Files changed (2) hide show
  1. package/README.md +6 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -10,14 +10,16 @@
10
10
 
11
11
  Nestia is a set of helper libraries for NestJS, supporting below features:
12
12
 
13
- - `@nestia/core`: Super-fast decorators
13
+ - `@nestia/core`:
14
+ - Super-fast/easy decorators
15
+ - Advanced WebSocket routes
14
16
  - `@nestia/sdk`:
15
17
  - Swagger generator evolved than ever
16
18
  - SDK library generator for clients
17
19
  - Mockup Simulator for client applications
18
20
  - Automatic E2E test functions generator
19
- - `@nestia/migrate`: Migration from Swagger to NestJS
20
- - `@nestia/editor`: Online TypeScript Swagger Editor
21
+ - `@nestia/migrate`: OpenAPI generator from Swagger to NestJS
22
+ - `@nestia/editor`: Swagger-UI with Online TypeScript Editor
21
23
  - `nestia`: Just CLI (command line interface) tool
22
24
 
23
25
  > **Note**
@@ -58,6 +60,7 @@ Check out the document in the [website](https://nestia.io/docs/):
58
60
 
59
61
  ### 📖 Features
60
62
  - Core Library
63
+ - [WebSocketRoute](https://nestia.io/docs/core/WebSocketRoute)
61
64
  - [TypedRoute](https://nestia.io/docs/core/TypedRoute/)
62
65
  - [TypedBody](https://nestia.io/docs/core/TypedBody/)
63
66
  - [TypedParam](https://nestia.io/docs/core/TypedParam/)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestia/sdk",
3
- "version": "3.1.1",
3
+ "version": "3.1.2-dev.20240505",
4
4
  "description": "Nestia SDK and Swagger generator",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "homepage": "https://nestia.io",
34
34
  "dependencies": {
35
- "@nestia/fetcher": "^3.1.1",
35
+ "@nestia/fetcher": "^3.1.2-dev.20240505",
36
36
  "@samchon/openapi": "^0.1.21",
37
37
  "cli": "^1.0.1",
38
38
  "get-function-location": "^2.0.0",
@@ -46,7 +46,7 @@
46
46
  "typia": "^6.0.3"
47
47
  },
48
48
  "peerDependencies": {
49
- "@nestia/fetcher": ">=3.1.1",
49
+ "@nestia/fetcher": ">=3.1.2-dev.20240505",
50
50
  "@nestjs/common": ">=7.0.1",
51
51
  "@nestjs/core": ">=7.0.1",
52
52
  "reflect-metadata": ">=0.1.12",