@nestia/migrate 4.6.1 → 5.0.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 +22 -17
- package/lib/MigrateApplication.js +746 -718
- package/lib/MigrateApplication.js.map +1 -1
- package/lib/bundles/NEST_TEMPLATE.js +28 -8
- package/lib/bundles/NEST_TEMPLATE.js.map +1 -1
- package/lib/bundles/SDK_TEMPLATE.js +1 -1
- package/lib/index.mjs +767 -725
- package/lib/index.mjs.map +1 -1
- package/lib/programmers/MigrateApiNamespaceProgrammer.js +6 -6
- package/lib/programmers/MigrateApiNamespaceProgrammer.js.map +1 -1
- package/lib/programmers/{MigrateApiSimulatationProgrammer.d.ts → MigrateApiSimulationProgrammer.d.ts} +1 -1
- package/lib/programmers/{MigrateApiSimulatationProgrammer.js → MigrateApiSimulationProgrammer.js} +7 -7
- package/lib/programmers/MigrateApiSimulationProgrammer.js.map +1 -0
- package/package.json +5 -5
- package/src/MigrateApplication.ts +3 -3
- package/src/bundles/NEST_TEMPLATE.ts +28 -8
- package/src/bundles/SDK_TEMPLATE.ts +1 -1
- package/src/executable/bundle.js +1 -1
- package/src/programmers/MigrateApiNamespaceProgrammer.ts +7 -7
- package/src/programmers/{MigrateApiSimulatationProgrammer.ts → MigrateApiSimulationProgrammer.ts} +1 -1
- package/lib/programmers/MigrateApiSimulatationProgrammer.js.map +0 -1
package/README.md
CHANGED
@@ -5,7 +5,8 @@
|
|
5
5
|
[](https://www.npmjs.com/package/@nestia/fetcher)
|
6
6
|
[](https://www.npmjs.com/package/@nestia/fetcher)
|
7
7
|
[](https://github.com/samchon/nestia/actions?query=workflow%3Abuild)
|
8
|
-
[](https://nestia.io/docs/)
|
9
|
+
[](https://gurubase.io/g/nestia)
|
9
10
|
[](https://discord.gg/E94XhzrUCZ)
|
10
11
|
|
11
12
|
Nestia is a set of helper libraries for NestJS, supporting below features:
|
@@ -14,14 +15,14 @@ Nestia is a set of helper libraries for NestJS, supporting below features:
|
|
14
15
|
- Super-fast/easy decorators
|
15
16
|
- Advanced WebSocket routes
|
16
17
|
- `@nestia/sdk`:
|
17
|
-
- Swagger generator evolved than ever
|
18
|
+
- Swagger generator, more evolved than ever
|
18
19
|
- SDK library generator for clients
|
19
20
|
- Mockup Simulator for client applications
|
20
21
|
- Automatic E2E test functions generator
|
21
22
|
- `@nestia/e2e`: Test program utilizing e2e test functions
|
22
23
|
- `@nestia/benchmark`: Benchmark program using e2e test functions
|
23
|
-
- `@nestia/migrate`: OpenAPI generator from Swagger to NestJS/SDK
|
24
24
|
- `@nestia/editor`: Swagger-UI with Online TypeScript Editor
|
25
|
+
- `@agentica`: Agentic AI library specialized in LLM function calling
|
25
26
|
- `nestia`: Just CLI (command line interface) tool
|
26
27
|
|
27
28
|
> [!NOTE]
|
@@ -62,24 +63,28 @@ Check out the document in the [website](https://nestia.io/docs/):
|
|
62
63
|
|
63
64
|
### 📖 Features
|
64
65
|
- Core Library
|
65
|
-
- [WebSocketRoute](https://nestia.io/docs/core/WebSocketRoute)
|
66
|
-
- [TypedRoute](https://nestia.io/docs/core/TypedRoute/)
|
67
|
-
- [TypedBody](https://nestia.io/docs/core/TypedBody/)
|
68
|
-
- [TypedParam](https://nestia.io/docs/core/TypedParam/)
|
69
|
-
- [TypedQuery](https://nestia.io/docs/core/TypedQuery/)
|
70
|
-
- [
|
71
|
-
- [
|
72
|
-
|
73
|
-
|
74
|
-
- [
|
75
|
-
- [
|
76
|
-
- [
|
66
|
+
- [`@WebSocketRoute`](https://nestia.io/docs/core/WebSocketRoute)
|
67
|
+
- [`@TypedRoute`](https://nestia.io/docs/core/TypedRoute/)
|
68
|
+
- [**`@TypedBody`**](https://nestia.io/docs/core/TypedBody/)
|
69
|
+
- [`@TypedParam`](https://nestia.io/docs/core/TypedParam/)
|
70
|
+
- [`@TypedQuery`](https://nestia.io/docs/core/TypedQuery/)
|
71
|
+
- [`@TypedFormData`](https://nestia.io/docs/core/TypedFormData/)
|
72
|
+
- [`@TypedHeaders`](https://nestia.io/docs/core/TypedHeaders/)
|
73
|
+
- [`@TypedException`](https://nestia.io/docs/core/TypedException/)
|
74
|
+
- Software Development Kit
|
75
|
+
- [SDK Builder](https://nestia.io/docs/sdk/)
|
76
|
+
- [Mockup Simulator](https://nestia.io/docs/sdk/simulate/)
|
77
|
+
- [E2E Test Functions](https://nestia.io/docs/sdk/e2e/)
|
78
|
+
- [Distribution](https://nestia.io/docs/sdk/distribute/)
|
79
|
+
- Swagger Document
|
80
|
+
- [Swagger Builder](https://nestia.io/docs/swagger/)
|
81
|
+
- [**AI Chatbot Development**](https://nestia.io/docs/swagger/chat/)
|
82
|
+
- [Cloud Swagger Editor](https://nestia.io/docs/swagger/editor/)
|
83
|
+
- [Documentation Strategy](https://nestia.io/docs/swagger/strategy/)
|
77
84
|
- E2E Testing
|
78
85
|
- [Why E2E Test?](https://nestia.io/docs/e2e/why/)
|
79
86
|
- [Test Program Development](https://nestia.io/docs/e2e/development/)
|
80
87
|
- [Performance Benchmark](https://nestia.io/docs/e2e/benchmark/)
|
81
|
-
- [Swagger to NestJS](https://nestia.io/docs/migrate/)
|
82
|
-
- [TypeScript Swagger Editor](https://nestia.io/docs/editor/)
|
83
88
|
|
84
89
|
### 🔗 Appendix
|
85
90
|
- [API Documents](https://nestia.io/api)
|