@nestia/core 4.5.0-dev.20241218-2 → 4.5.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/LICENSE +21 -21
- package/README.md +87 -87
- package/lib/decorators/HumanRoute.d.ts +16 -0
- package/lib/decorators/HumanRoute.js +25 -0
- package/lib/decorators/HumanRoute.js.map +1 -0
- package/lib/module.d.ts +1 -0
- package/lib/module.js +1 -0
- package/lib/module.js.map +1 -1
- package/package.json +6 -6
- package/src/adaptors/WebSocketAdaptor.ts +426 -426
- package/src/decorators/DynamicModule.ts +43 -43
- package/src/decorators/EncryptedBody.ts +101 -101
- package/src/decorators/EncryptedController.ts +38 -38
- package/src/decorators/EncryptedModule.ts +100 -100
- package/src/decorators/EncryptedRoute.ts +219 -219
- package/src/decorators/HumanRoute.ts +22 -0
- package/src/decorators/NoTransformConfigurationError.ts +32 -32
- package/src/decorators/PlainBody.ts +79 -79
- package/src/decorators/SwaggerCustomizer.ts +115 -115
- package/src/decorators/SwaggerExample.ts +100 -100
- package/src/decorators/TypedBody.ts +59 -59
- package/src/decorators/TypedException.ts +128 -128
- package/src/decorators/TypedFormData.ts +195 -195
- package/src/decorators/TypedHeaders.ts +64 -64
- package/src/decorators/TypedParam.ts +77 -77
- package/src/decorators/TypedQuery.ts +245 -245
- package/src/decorators/TypedRoute.ts +214 -214
- package/src/decorators/WebSocketRoute.ts +242 -242
- package/src/decorators/internal/EncryptedConstant.ts +4 -4
- package/src/decorators/internal/IWebSocketRouteReflect.ts +23 -23
- package/src/decorators/internal/NoTransformConfigureError.ts +2 -2
- package/src/decorators/internal/get_path_and_querify.ts +108 -108
- package/src/decorators/internal/get_path_and_stringify.ts +122 -122
- package/src/decorators/internal/get_text_body.ts +20 -20
- package/src/decorators/internal/headers_to_object.ts +13 -13
- package/src/decorators/internal/is_request_body_undefined.ts +14 -14
- package/src/decorators/internal/load_controller.ts +49 -49
- package/src/decorators/internal/route_error.ts +45 -45
- package/src/decorators/internal/validate_request_body.ts +74 -74
- package/src/decorators/internal/validate_request_form_data.ts +77 -77
- package/src/decorators/internal/validate_request_headers.ts +86 -86
- package/src/decorators/internal/validate_request_query.ts +74 -74
- package/src/index.ts +5 -5
- package/src/module.ts +22 -21
- package/src/options/INestiaTransformOptions.ts +38 -38
- package/src/options/INestiaTransformProject.ts +8 -8
- package/src/options/IRequestBodyValidator.ts +20 -20
- package/src/options/IRequestFormDataProps.ts +27 -27
- package/src/options/IRequestHeadersValidator.ts +22 -22
- package/src/options/IRequestQueryValidator.ts +20 -20
- package/src/options/IResponseBodyQuerifier.ts +25 -25
- package/src/options/IResponseBodyStringifier.ts +30 -30
- package/src/programmers/PlainBodyProgrammer.ts +70 -70
- package/src/programmers/TypedBodyProgrammer.ts +142 -142
- package/src/programmers/TypedFormDataBodyProgrammer.ts +118 -118
- package/src/programmers/TypedHeadersProgrammer.ts +63 -63
- package/src/programmers/TypedParamProgrammer.ts +33 -33
- package/src/programmers/TypedQueryBodyProgrammer.ts +112 -112
- package/src/programmers/TypedQueryProgrammer.ts +114 -114
- package/src/programmers/TypedQueryRouteProgrammer.ts +105 -105
- package/src/programmers/TypedRouteProgrammer.ts +94 -94
- package/src/programmers/http/HttpAssertQuerifyProgrammer.ts +72 -72
- package/src/programmers/http/HttpIsQuerifyProgrammer.ts +75 -75
- package/src/programmers/http/HttpQuerifyProgrammer.ts +108 -108
- package/src/programmers/http/HttpValidateQuerifyProgrammer.ts +76 -76
- package/src/programmers/internal/CoreMetadataUtil.ts +21 -21
- package/src/transform.ts +35 -35
- package/src/transformers/FileTransformer.ts +110 -110
- package/src/transformers/MethodTransformer.ts +103 -103
- package/src/transformers/NodeTransformer.ts +23 -23
- package/src/transformers/ParameterDecoratorTransformer.ts +143 -143
- package/src/transformers/ParameterTransformer.ts +57 -57
- package/src/transformers/TypedRouteTransformer.ts +85 -85
- package/src/transformers/WebSocketRouteTransformer.ts +120 -120
- package/src/typings/Creator.ts +3 -3
- package/src/typings/get-function-location.d.ts +7 -7
- package/src/utils/ArrayUtil.ts +7 -7
- package/src/utils/ExceptionManager.ts +112 -112
- package/src/utils/Singleton.ts +20 -20
- package/src/utils/SourceFinder.ts +57 -57
- package/src/utils/VersioningStrategy.ts +27 -27
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2022 Jeongho Nam
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 Jeongho Nam
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,87 +1,87 @@
|
|
|
1
|
-
# Nestia
|
|
2
|
-

|
|
3
|
-
|
|
4
|
-
[](https://github.com/samchon/nestia/blob/master/LICENSE)
|
|
5
|
-
[](https://www.npmjs.com/package/@nestia/fetcher)
|
|
6
|
-
[](https://www.npmjs.com/package/@nestia/fetcher)
|
|
7
|
-
[](https://github.com/samchon/nestia/actions?query=workflow%3Abuild)
|
|
8
|
-
[](https://nestia.io/docs/)
|
|
9
|
-
[](https://discord.gg/E94XhzrUCZ)
|
|
10
|
-
|
|
11
|
-
Nestia is a set of helper libraries for NestJS, supporting below features:
|
|
12
|
-
|
|
13
|
-
- `@nestia/core`:
|
|
14
|
-
- Super-fast/easy decorators
|
|
15
|
-
- Advanced WebSocket routes
|
|
16
|
-
- `@nestia/sdk`:
|
|
17
|
-
- Swagger generator evolved than ever
|
|
18
|
-
- SDK library generator for clients
|
|
19
|
-
- Mockup Simulator for client applications
|
|
20
|
-
- Automatic E2E test functions generator
|
|
21
|
-
- `@nestia/e2e`: Test program utilizing e2e test functions
|
|
22
|
-
- `@nestia/benchmark`: Benchmark program using e2e test functions
|
|
23
|
-
- `@nestia/migrate`: OpenAPI generator from Swagger to NestJS/SDK
|
|
24
|
-
- `@nestia/editor`: Swagger-UI with Online TypeScript Editor
|
|
25
|
-
- `nestia`: Just CLI (command line interface) tool
|
|
26
|
-
|
|
27
|
-
> [!NOTE]
|
|
28
|
-
>
|
|
29
|
-
> - **Only one line** required, with pure TypeScript type
|
|
30
|
-
> - Enhance performance **30x** up
|
|
31
|
-
> - Runtime validator is **20,000x faster** than `class-validator`
|
|
32
|
-
> - JSON serialization is **200x faster** than `class-transformer`
|
|
33
|
-
> - Software Development Kit
|
|
34
|
-
> - Collection of typed `fetch` functions with DTO structures like [tRPC](https://trpc.io/)
|
|
35
|
-
> - Mockup simulator means embedded backend simulator in the SDK
|
|
36
|
-
> - similar with [msw](https://mswjs.io/), but fully automated
|
|
37
|
-
|
|
38
|
-

|
|
39
|
-
|
|
40
|
-
> Left is NestJS server code, and right is client (frontend) code utilizing SDK
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
## Sponsors and Backers
|
|
46
|
-
Thanks for your support.
|
|
47
|
-
|
|
48
|
-
Your donation would encourage `nestia` development.
|
|
49
|
-
|
|
50
|
-
[](https://opencollective.com/nestia)
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
## Guide Documents
|
|
56
|
-
Check out the document in the [website](https://nestia.io/docs/):
|
|
57
|
-
|
|
58
|
-
### 🏠 Home
|
|
59
|
-
- [Introduction](https://nestia.io/docs/)
|
|
60
|
-
- [Setup](https://nestia.io/docs/setup/)
|
|
61
|
-
- [Pure TypeScript](https://nestia.io/docs/pure)
|
|
62
|
-
|
|
63
|
-
### 📖 Features
|
|
64
|
-
- 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
|
-
- [TypedHeaders](https://nestia.io/docs/core/TypedHeaders/)
|
|
71
|
-
- [TypedException](https://nestia.io/docs/core/TypedException/)
|
|
72
|
-
- Generators
|
|
73
|
-
- [Swagger Documents](https://nestia.io/docs/sdk/swagger/)
|
|
74
|
-
- [Software Development Kit](https://nestia.io/docs/sdk/sdk/)
|
|
75
|
-
- [E2E Functions](https://nestia.io/docs/sdk/e2e/)
|
|
76
|
-
- [Mockup Simulator](https://nestia.io/docs/sdk/simulator/)
|
|
77
|
-
- E2E Testing
|
|
78
|
-
- [Why E2E Test?](https://nestia.io/docs/e2e/why/)
|
|
79
|
-
- [Test Program Development](https://nestia.io/docs/e2e/development/)
|
|
80
|
-
- [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
|
-
|
|
84
|
-
### 🔗 Appendix
|
|
85
|
-
- [API Documents](https://nestia.io/api)
|
|
86
|
-
- [⇲ Benchmark Result](https://github.com/samchon/nestia/tree/master/benchmark/results/11th%20Gen%20Intel(R)%20Core(TM)%20i5-1135G7%20%40%202.40GHz)
|
|
87
|
-
- [⇲ `dev.to` Articles](https://dev.to/samchon/series/22751)
|
|
1
|
+
# Nestia
|
|
2
|
+

|
|
3
|
+
|
|
4
|
+
[](https://github.com/samchon/nestia/blob/master/LICENSE)
|
|
5
|
+
[](https://www.npmjs.com/package/@nestia/fetcher)
|
|
6
|
+
[](https://www.npmjs.com/package/@nestia/fetcher)
|
|
7
|
+
[](https://github.com/samchon/nestia/actions?query=workflow%3Abuild)
|
|
8
|
+
[](https://nestia.io/docs/)
|
|
9
|
+
[](https://discord.gg/E94XhzrUCZ)
|
|
10
|
+
|
|
11
|
+
Nestia is a set of helper libraries for NestJS, supporting below features:
|
|
12
|
+
|
|
13
|
+
- `@nestia/core`:
|
|
14
|
+
- Super-fast/easy decorators
|
|
15
|
+
- Advanced WebSocket routes
|
|
16
|
+
- `@nestia/sdk`:
|
|
17
|
+
- Swagger generator evolved than ever
|
|
18
|
+
- SDK library generator for clients
|
|
19
|
+
- Mockup Simulator for client applications
|
|
20
|
+
- Automatic E2E test functions generator
|
|
21
|
+
- `@nestia/e2e`: Test program utilizing e2e test functions
|
|
22
|
+
- `@nestia/benchmark`: Benchmark program using e2e test functions
|
|
23
|
+
- `@nestia/migrate`: OpenAPI generator from Swagger to NestJS/SDK
|
|
24
|
+
- `@nestia/editor`: Swagger-UI with Online TypeScript Editor
|
|
25
|
+
- `nestia`: Just CLI (command line interface) tool
|
|
26
|
+
|
|
27
|
+
> [!NOTE]
|
|
28
|
+
>
|
|
29
|
+
> - **Only one line** required, with pure TypeScript type
|
|
30
|
+
> - Enhance performance **30x** up
|
|
31
|
+
> - Runtime validator is **20,000x faster** than `class-validator`
|
|
32
|
+
> - JSON serialization is **200x faster** than `class-transformer`
|
|
33
|
+
> - Software Development Kit
|
|
34
|
+
> - Collection of typed `fetch` functions with DTO structures like [tRPC](https://trpc.io/)
|
|
35
|
+
> - Mockup simulator means embedded backend simulator in the SDK
|
|
36
|
+
> - similar with [msw](https://mswjs.io/), but fully automated
|
|
37
|
+
|
|
38
|
+

|
|
39
|
+
|
|
40
|
+
> Left is NestJS server code, and right is client (frontend) code utilizing SDK
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
## Sponsors and Backers
|
|
46
|
+
Thanks for your support.
|
|
47
|
+
|
|
48
|
+
Your donation would encourage `nestia` development.
|
|
49
|
+
|
|
50
|
+
[](https://opencollective.com/nestia)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
## Guide Documents
|
|
56
|
+
Check out the document in the [website](https://nestia.io/docs/):
|
|
57
|
+
|
|
58
|
+
### 🏠 Home
|
|
59
|
+
- [Introduction](https://nestia.io/docs/)
|
|
60
|
+
- [Setup](https://nestia.io/docs/setup/)
|
|
61
|
+
- [Pure TypeScript](https://nestia.io/docs/pure)
|
|
62
|
+
|
|
63
|
+
### 📖 Features
|
|
64
|
+
- 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
|
+
- [TypedHeaders](https://nestia.io/docs/core/TypedHeaders/)
|
|
71
|
+
- [TypedException](https://nestia.io/docs/core/TypedException/)
|
|
72
|
+
- Generators
|
|
73
|
+
- [Swagger Documents](https://nestia.io/docs/sdk/swagger/)
|
|
74
|
+
- [Software Development Kit](https://nestia.io/docs/sdk/sdk/)
|
|
75
|
+
- [E2E Functions](https://nestia.io/docs/sdk/e2e/)
|
|
76
|
+
- [Mockup Simulator](https://nestia.io/docs/sdk/simulator/)
|
|
77
|
+
- E2E Testing
|
|
78
|
+
- [Why E2E Test?](https://nestia.io/docs/e2e/why/)
|
|
79
|
+
- [Test Program Development](https://nestia.io/docs/e2e/development/)
|
|
80
|
+
- [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
|
+
|
|
84
|
+
### 🔗 Appendix
|
|
85
|
+
- [API Documents](https://nestia.io/api)
|
|
86
|
+
- [⇲ Benchmark Result](https://github.com/samchon/nestia/tree/master/benchmark/results/11th%20Gen%20Intel(R)%20Core(TM)%20i5-1135G7%20%40%202.40GHz)
|
|
87
|
+
- [⇲ `dev.to` Articles](https://dev.to/samchon/series/22751)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Human only API marking.
|
|
3
|
+
*
|
|
4
|
+
* This decorator marks the API for human only, so that LLM function calling
|
|
5
|
+
* schema composer (of [`@samchon/openapi`](https://github.com/samchon/openapi))
|
|
6
|
+
* excludes the API.
|
|
7
|
+
*
|
|
8
|
+
* In other words, if you adjust the `@HumanRoute()` decorator to the API,
|
|
9
|
+
* the API never participates in the LLM function calling. When calling the
|
|
10
|
+
* {@link HttpLlm.application} function, matched {@link IHttpLlmFunction} data
|
|
11
|
+
* never be composed.
|
|
12
|
+
*
|
|
13
|
+
* @returns Method decorator
|
|
14
|
+
* @author Jeongho Nam - https://github.com/samchon
|
|
15
|
+
*/
|
|
16
|
+
export declare function HumanRoute(): MethodDecorator;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.HumanRoute = HumanRoute;
|
|
4
|
+
const SwaggerCustomizer_1 = require("./SwaggerCustomizer");
|
|
5
|
+
/**
|
|
6
|
+
* Human only API marking.
|
|
7
|
+
*
|
|
8
|
+
* This decorator marks the API for human only, so that LLM function calling
|
|
9
|
+
* schema composer (of [`@samchon/openapi`](https://github.com/samchon/openapi))
|
|
10
|
+
* excludes the API.
|
|
11
|
+
*
|
|
12
|
+
* In other words, if you adjust the `@HumanRoute()` decorator to the API,
|
|
13
|
+
* the API never participates in the LLM function calling. When calling the
|
|
14
|
+
* {@link HttpLlm.application} function, matched {@link IHttpLlmFunction} data
|
|
15
|
+
* never be composed.
|
|
16
|
+
*
|
|
17
|
+
* @returns Method decorator
|
|
18
|
+
* @author Jeongho Nam - https://github.com/samchon
|
|
19
|
+
*/
|
|
20
|
+
function HumanRoute() {
|
|
21
|
+
return (0, SwaggerCustomizer_1.SwaggerCustomizer)((props) => {
|
|
22
|
+
props.route["x-samchon-human"] = true;
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=HumanRoute.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HumanRoute.js","sourceRoot":"","sources":["../../src/decorators/HumanRoute.ts"],"names":[],"mappings":";;AAiBA,gCAIC;AArBD,2DAAwD;AAExD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,UAAU;IACxB,OAAO,IAAA,qCAAiB,EAAC,CAAC,KAAK,EAAE,EAAE;QACjC,KAAK,CAAC,KAAK,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC;IACxC,CAAC,CAAC,CAAC;AACL,CAAC"}
|
package/lib/module.d.ts
CHANGED
package/lib/module.js
CHANGED
|
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./decorators/DynamicModule"), exports);
|
|
18
18
|
__exportStar(require("./utils/ExceptionManager"), exports);
|
|
19
|
+
__exportStar(require("./decorators/HumanRoute"), exports);
|
|
19
20
|
__exportStar(require("./decorators/TypedRoute"), exports);
|
|
20
21
|
__exportStar(require("./decorators/TypedBody"), exports);
|
|
21
22
|
__exportStar(require("./decorators/TypedQuery"), exports);
|
package/lib/module.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.js","sourceRoot":"","sources":["../src/module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA2C;AAC3C,2DAAyC;AAEzC,0DAAwC;AACxC,yDAAuC;AACvC,0DAAwC;AACxC,8DAA4C;AAC5C,4DAA0C;AAC1C,6DAA2C;AAC3C,0DAAwC;AAExC,mEAAiD;AACjD,8DAA4C;AAC5C,6DAA2C;AAC3C,+DAA6C;AAC7C,yDAAuC;AACvC,iEAA+C;AAC/C,8DAA4C;AAE5C,8DAA4C;AAC5C,8DAA4C"}
|
|
1
|
+
{"version":3,"file":"module.js","sourceRoot":"","sources":["../src/module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA2C;AAC3C,2DAAyC;AAEzC,0DAAwC;AACxC,0DAAwC;AACxC,yDAAuC;AACvC,0DAAwC;AACxC,8DAA4C;AAC5C,4DAA0C;AAC1C,6DAA2C;AAC3C,0DAAwC;AAExC,mEAAiD;AACjD,8DAA4C;AAC5C,6DAA2C;AAC3C,+DAA6C;AAC7C,yDAAuC;AACvC,iEAA+C;AAC/C,8DAA4C;AAE5C,8DAA4C;AAC5C,8DAA4C"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nestia/core",
|
|
3
|
-
"version": "4.5.0
|
|
3
|
+
"version": "4.5.0",
|
|
4
4
|
"description": "Super-fast validation decorators of NestJS",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
},
|
|
37
37
|
"homepage": "https://nestia.io",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@nestia/fetcher": "^4.5.0
|
|
39
|
+
"@nestia/fetcher": "^4.5.0",
|
|
40
40
|
"@nestjs/common": ">=7.0.1",
|
|
41
41
|
"@nestjs/core": ">=7.0.1",
|
|
42
|
-
"@samchon/openapi": "^2.3.0
|
|
42
|
+
"@samchon/openapi": "^2.3.0",
|
|
43
43
|
"detect-ts-node": "^1.0.5",
|
|
44
44
|
"get-function-location": "^2.0.0",
|
|
45
45
|
"glob": "^7.2.0",
|
|
@@ -48,16 +48,16 @@
|
|
|
48
48
|
"reflect-metadata": ">=0.1.12",
|
|
49
49
|
"rxjs": ">=6.0.3",
|
|
50
50
|
"tgrid": "^1.1.0",
|
|
51
|
-
"typia": "^7.5.0
|
|
51
|
+
"typia": "^7.5.0",
|
|
52
52
|
"ws": "^7.5.3"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@nestia/fetcher": ">=4.5.0
|
|
55
|
+
"@nestia/fetcher": ">=4.5.0",
|
|
56
56
|
"@nestjs/common": ">=7.0.1",
|
|
57
57
|
"@nestjs/core": ">=7.0.1",
|
|
58
58
|
"reflect-metadata": ">=0.1.12",
|
|
59
59
|
"rxjs": ">=6.0.3",
|
|
60
|
-
"typia": ">=7.5.0
|
|
60
|
+
"typia": ">=7.5.0 <8.0.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@nestjs/common": "^10.4.13",
|