@nestia/core 1.2.0-dev.20230503 → 1.2.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 +7 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -10,7 +10,10 @@
|
|
|
10
10
|
Nestia is a set of helper libraries for NestJS, supporting below features:
|
|
11
11
|
|
|
12
12
|
- `@nestia/core`: super-fast decorators
|
|
13
|
-
- `@nestia/sdk
|
|
13
|
+
- `@nestia/sdk`
|
|
14
|
+
- SDK generator for clients
|
|
15
|
+
- Swagger generator evolved than ever
|
|
16
|
+
- Automatic E2E test functions generator
|
|
14
17
|
- `nestia`: just CLI (command line interface) tool
|
|
15
18
|
|
|
16
19
|
> **Note**
|
|
@@ -50,6 +53,7 @@ Check out the document in the [website](https://nestia.io/docs/):
|
|
|
50
53
|
- [TypedBody](https://nestia.io/docs/core/TypedBody/)
|
|
51
54
|
- [TypedParam](https://nestia.io/docs/core/TypedParam/)
|
|
52
55
|
- [TypedQuery](https://nestia.io/docs/core/TypedRoute/)
|
|
53
|
-
-
|
|
56
|
+
- Generators
|
|
54
57
|
- [SDK Library](https://nestia.io/docs/sdk/sdk/)
|
|
55
|
-
- [Swagger Documents](https://nestia.io/docs/sdk/swagger/)
|
|
58
|
+
- [Swagger Documents](https://nestia.io/docs/sdk/swagger/)
|
|
59
|
+
- [E2E Functions](https://nestia.io/docs/sdk/e2e/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nestia/core",
|
|
3
|
-
"version": "1.2.0
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Super-fast validation decorators of NestJS",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"homepage": "https://github.com/samchon/nestia",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@nestia/fetcher": "^1.
|
|
36
|
+
"@nestia/fetcher": "^1.2.0",
|
|
37
37
|
"@nestjs/common": ">= 7.0.1",
|
|
38
38
|
"@nestjs/core": ">= 7.0.1",
|
|
39
39
|
"@nestjs/platform-express": ">= 7.0.1",
|