@nestia/core 4.6.2 → 5.0.0-dev.20250301

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 (77) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +91 -92
  3. package/lib/programmers/TypedBodyProgrammer.js +4 -4
  4. package/lib/programmers/TypedBodyProgrammer.js.map +1 -1
  5. package/package.json +7 -7
  6. package/src/adaptors/WebSocketAdaptor.ts +429 -429
  7. package/src/decorators/DynamicModule.ts +43 -43
  8. package/src/decorators/EncryptedBody.ts +101 -101
  9. package/src/decorators/EncryptedController.ts +38 -38
  10. package/src/decorators/EncryptedModule.ts +100 -100
  11. package/src/decorators/EncryptedRoute.ts +219 -219
  12. package/src/decorators/HumanRoute.ts +22 -22
  13. package/src/decorators/NoTransformConfigurationError.ts +32 -32
  14. package/src/decorators/PlainBody.ts +79 -79
  15. package/src/decorators/SwaggerCustomizer.ts +115 -115
  16. package/src/decorators/SwaggerExample.ts +100 -100
  17. package/src/decorators/TypedBody.ts +59 -59
  18. package/src/decorators/TypedException.ts +166 -166
  19. package/src/decorators/TypedFormData.ts +195 -195
  20. package/src/decorators/TypedHeaders.ts +64 -64
  21. package/src/decorators/TypedParam.ts +77 -77
  22. package/src/decorators/TypedQuery.ts +245 -245
  23. package/src/decorators/TypedRoute.ts +214 -214
  24. package/src/decorators/WebSocketRoute.ts +242 -242
  25. package/src/decorators/internal/EncryptedConstant.ts +4 -4
  26. package/src/decorators/internal/IWebSocketRouteReflect.ts +23 -23
  27. package/src/decorators/internal/NoTransformConfigureError.ts +2 -2
  28. package/src/decorators/internal/get_path_and_querify.ts +108 -108
  29. package/src/decorators/internal/get_path_and_stringify.ts +122 -122
  30. package/src/decorators/internal/get_text_body.ts +20 -20
  31. package/src/decorators/internal/headers_to_object.ts +13 -13
  32. package/src/decorators/internal/is_request_body_undefined.ts +14 -14
  33. package/src/decorators/internal/load_controller.ts +49 -49
  34. package/src/decorators/internal/route_error.ts +45 -45
  35. package/src/decorators/internal/validate_request_body.ts +74 -74
  36. package/src/decorators/internal/validate_request_form_data.ts +77 -77
  37. package/src/decorators/internal/validate_request_headers.ts +86 -86
  38. package/src/decorators/internal/validate_request_query.ts +74 -74
  39. package/src/index.ts +5 -5
  40. package/src/module.ts +22 -22
  41. package/src/options/INestiaTransformOptions.ts +38 -38
  42. package/src/options/INestiaTransformProject.ts +8 -8
  43. package/src/options/IRequestBodyValidator.ts +20 -20
  44. package/src/options/IRequestFormDataProps.ts +27 -27
  45. package/src/options/IRequestHeadersValidator.ts +22 -22
  46. package/src/options/IRequestQueryValidator.ts +20 -20
  47. package/src/options/IResponseBodyQuerifier.ts +25 -25
  48. package/src/options/IResponseBodyStringifier.ts +30 -30
  49. package/src/programmers/PlainBodyProgrammer.ts +70 -70
  50. package/src/programmers/TypedBodyProgrammer.ts +142 -142
  51. package/src/programmers/TypedFormDataBodyProgrammer.ts +118 -118
  52. package/src/programmers/TypedHeadersProgrammer.ts +63 -63
  53. package/src/programmers/TypedParamProgrammer.ts +33 -33
  54. package/src/programmers/TypedQueryBodyProgrammer.ts +112 -112
  55. package/src/programmers/TypedQueryProgrammer.ts +114 -114
  56. package/src/programmers/TypedQueryRouteProgrammer.ts +105 -105
  57. package/src/programmers/TypedRouteProgrammer.ts +94 -94
  58. package/src/programmers/http/HttpAssertQuerifyProgrammer.ts +72 -72
  59. package/src/programmers/http/HttpIsQuerifyProgrammer.ts +75 -75
  60. package/src/programmers/http/HttpQuerifyProgrammer.ts +108 -108
  61. package/src/programmers/http/HttpValidateQuerifyProgrammer.ts +76 -76
  62. package/src/programmers/internal/CoreMetadataUtil.ts +21 -21
  63. package/src/transform.ts +35 -35
  64. package/src/transformers/FileTransformer.ts +110 -110
  65. package/src/transformers/MethodTransformer.ts +103 -103
  66. package/src/transformers/NodeTransformer.ts +23 -23
  67. package/src/transformers/ParameterDecoratorTransformer.ts +143 -143
  68. package/src/transformers/ParameterTransformer.ts +57 -57
  69. package/src/transformers/TypedRouteTransformer.ts +85 -85
  70. package/src/transformers/WebSocketRouteTransformer.ts +120 -120
  71. package/src/typings/Creator.ts +3 -3
  72. package/src/typings/get-function-location.d.ts +7 -7
  73. package/src/utils/ArrayUtil.ts +7 -7
  74. package/src/utils/ExceptionManager.ts +112 -112
  75. package/src/utils/Singleton.ts +20 -20
  76. package/src/utils/SourceFinder.ts +57 -57
  77. package/src/utils/VersioningStrategy.ts +27 -27
@@ -1,79 +1,79 @@
1
- import {
2
- BadRequestException,
3
- ExecutionContext,
4
- createParamDecorator,
5
- } from "@nestjs/common";
6
- import type express from "express";
7
- import type { FastifyRequest } from "fastify";
8
-
9
- import { get_text_body } from "./internal/get_text_body";
10
- import { is_request_body_undefined } from "./internal/is_request_body_undefined";
11
- import { validate_request_body } from "./internal/validate_request_body";
12
-
13
- /**
14
- * Plain body decorator.
15
- *
16
- * `PlainBody` is a decorator function getting full body text from the HTTP request.
17
- *
18
- * If you adjust the regular {@link Body} decorator function to the body parameter,
19
- * you can't get the full body text because the {@link Body} tries to convert the
20
- * body text to JSON object. Therefore, `@nestia/core` provides this `PlainBody`
21
- * decorator function to get the full body text.
22
- *
23
- * ```typescript
24
- * \@TypedRoute.Post("memo")
25
- * public store
26
- * (
27
- * \@PlainBody() body: string
28
- * ): void;
29
- * ```
30
- *
31
- * @return Parameter decorator
32
- * @author Jeongho Nam - https://github.com/samchon
33
- */
34
- export function PlainBody(): ParameterDecorator;
35
-
36
- /**
37
- * @internal
38
- */
39
- export function PlainBody(
40
- assert?: (input: unknown) => string,
41
- ): ParameterDecorator {
42
- const checker = assert
43
- ? validate_request_body("PlainBody")({
44
- type: "assert",
45
- assert,
46
- })
47
- : null;
48
- return createParamDecorator(async function PlainBody(
49
- _data: any,
50
- context: ExecutionContext,
51
- ) {
52
- const request: express.Request | FastifyRequest = context
53
- .switchToHttp()
54
- .getRequest();
55
- if (
56
- is_request_body_undefined(request) &&
57
- (checker ?? (() => null))(undefined as any) === null
58
- )
59
- return undefined;
60
- else if (!isTextPlain(request.headers["content-type"]))
61
- throw new BadRequestException(`Request body type is not "text/plain".`);
62
- const value: string = await get_text_body(request);
63
- if (checker) {
64
- const error: Error | null = checker(value);
65
- if (error !== null) throw error;
66
- }
67
- return value;
68
- })();
69
- }
70
-
71
- /**
72
- * @internal
73
- */
74
- const isTextPlain = (text?: string): boolean =>
75
- text !== undefined &&
76
- text
77
- .split(";")
78
- .map((str) => str.trim())
79
- .some((str) => str === "text/plain");
1
+ import {
2
+ BadRequestException,
3
+ ExecutionContext,
4
+ createParamDecorator,
5
+ } from "@nestjs/common";
6
+ import type express from "express";
7
+ import type { FastifyRequest } from "fastify";
8
+
9
+ import { get_text_body } from "./internal/get_text_body";
10
+ import { is_request_body_undefined } from "./internal/is_request_body_undefined";
11
+ import { validate_request_body } from "./internal/validate_request_body";
12
+
13
+ /**
14
+ * Plain body decorator.
15
+ *
16
+ * `PlainBody` is a decorator function getting full body text from the HTTP request.
17
+ *
18
+ * If you adjust the regular {@link Body} decorator function to the body parameter,
19
+ * you can't get the full body text because the {@link Body} tries to convert the
20
+ * body text to JSON object. Therefore, `@nestia/core` provides this `PlainBody`
21
+ * decorator function to get the full body text.
22
+ *
23
+ * ```typescript
24
+ * \@TypedRoute.Post("memo")
25
+ * public store
26
+ * (
27
+ * \@PlainBody() body: string
28
+ * ): void;
29
+ * ```
30
+ *
31
+ * @return Parameter decorator
32
+ * @author Jeongho Nam - https://github.com/samchon
33
+ */
34
+ export function PlainBody(): ParameterDecorator;
35
+
36
+ /**
37
+ * @internal
38
+ */
39
+ export function PlainBody(
40
+ assert?: (input: unknown) => string,
41
+ ): ParameterDecorator {
42
+ const checker = assert
43
+ ? validate_request_body("PlainBody")({
44
+ type: "assert",
45
+ assert,
46
+ })
47
+ : null;
48
+ return createParamDecorator(async function PlainBody(
49
+ _data: any,
50
+ context: ExecutionContext,
51
+ ) {
52
+ const request: express.Request | FastifyRequest = context
53
+ .switchToHttp()
54
+ .getRequest();
55
+ if (
56
+ is_request_body_undefined(request) &&
57
+ (checker ?? (() => null))(undefined as any) === null
58
+ )
59
+ return undefined;
60
+ else if (!isTextPlain(request.headers["content-type"]))
61
+ throw new BadRequestException(`Request body type is not "text/plain".`);
62
+ const value: string = await get_text_body(request);
63
+ if (checker) {
64
+ const error: Error | null = checker(value);
65
+ if (error !== null) throw error;
66
+ }
67
+ return value;
68
+ })();
69
+ }
70
+
71
+ /**
72
+ * @internal
73
+ */
74
+ const isTextPlain = (text?: string): boolean =>
75
+ text !== undefined &&
76
+ text
77
+ .split(";")
78
+ .map((str) => str.trim())
79
+ .some((str) => str === "text/plain");
@@ -1,115 +1,115 @@
1
- import { OpenApi } from "@samchon/openapi";
2
-
3
- /**
4
- * Swagger customization decorator.
5
- *
6
- * `SwaggerCustomizer` is a method decorator function which can used for
7
- * customizing the swagger data with `npx nestia swagger` command. Furthermore,
8
- * it is possible to add plugin properties starting with `x-` characters.
9
- *
10
- * In other words, this decorator function does not affect to the runtime,
11
- * but only for the swagger data customization.
12
- *
13
- * @param closure Callback function which can customize the swagger data
14
- * @returns Method decorator
15
- * @author Jeongho Nam - https://github.com/samchon
16
- */
17
- export function SwaggerCustomizer(
18
- closure: (props: SwaggerCustomizer.IProps) => unknown,
19
- ): MethodDecorator {
20
- return function SwaggerCustomizer(
21
- target: Object,
22
- propertyKey: string | symbol,
23
- descriptor: TypedPropertyDescriptor<any>,
24
- ) {
25
- const array: Array<(props: SwaggerCustomizer.IProps) => unknown> = (() => {
26
- if (Reflect.hasMetadata("nestia/SwaggerCustomizer", target, propertyKey))
27
- return Reflect.getMetadata(
28
- "nestia/SwaggerCustomizer",
29
- target,
30
- propertyKey,
31
- );
32
- const array: Array<(props: SwaggerCustomizer.IProps) => unknown> = [];
33
- Reflect.defineMetadata(
34
- "nestia/SwaggerCustomizer",
35
- array,
36
- target,
37
- propertyKey,
38
- );
39
- return array;
40
- })();
41
- array.push(closure);
42
- return descriptor;
43
- };
44
- }
45
- export namespace SwaggerCustomizer {
46
- /**
47
- * Properties for the `SwaggerCustomizer` decorator.
48
- *
49
- * `SwaggerCustomizer.IProps` is a type for the `closure` parameter of the
50
- * `SwaggerCustomizer` decorator. It's a callback function which can customize
51
- * the swagger data.
52
- */
53
- export interface IProps {
54
- /**
55
- * Swagger data.
56
- */
57
- swagger: OpenApi.IDocument;
58
-
59
- /**
60
- * Method of the route.
61
- */
62
- method: string;
63
-
64
- /**
65
- * Path of the route.
66
- */
67
- path: string;
68
-
69
- /**
70
- * Route data.
71
- */
72
- route: OpenApi.IOperation;
73
-
74
- /**
75
- * Get neighbor endpoint data through the controller method.
76
- *
77
- * @param func Controller method to find the neighbor endpoint
78
- * @returns Neighbor endpoint data
79
- */
80
- at(func: Function): ISwaggerEndpoint | undefined;
81
-
82
- /**
83
- * Get neighbor route data.
84
- *
85
- * @param accessor Accessor for getting neighbor route data
86
- * @returns Neighbor route data
87
- */
88
- get(accessor: IAccessor): OpenApi.IOperation | undefined;
89
- }
90
-
91
- /**
92
- * Accessor for getting neighbor route data.
93
- */
94
- export interface IAccessor {
95
- /**
96
- * Path of the neighbor route.
97
- */
98
- path: string;
99
-
100
- /**
101
- * Method of the neighbor route.
102
- */
103
- method: string;
104
- }
105
-
106
- /**
107
- * Endpoint info of the route.
108
- */
109
- export interface ISwaggerEndpoint extends IAccessor {
110
- /**
111
- * Route data.
112
- */
113
- route: OpenApi.IOperation;
114
- }
115
- }
1
+ import { OpenApi } from "@samchon/openapi";
2
+
3
+ /**
4
+ * Swagger customization decorator.
5
+ *
6
+ * `SwaggerCustomizer` is a method decorator function which can used for
7
+ * customizing the swagger data with `npx nestia swagger` command. Furthermore,
8
+ * it is possible to add plugin properties starting with `x-` characters.
9
+ *
10
+ * In other words, this decorator function does not affect to the runtime,
11
+ * but only for the swagger data customization.
12
+ *
13
+ * @param closure Callback function which can customize the swagger data
14
+ * @returns Method decorator
15
+ * @author Jeongho Nam - https://github.com/samchon
16
+ */
17
+ export function SwaggerCustomizer(
18
+ closure: (props: SwaggerCustomizer.IProps) => unknown,
19
+ ): MethodDecorator {
20
+ return function SwaggerCustomizer(
21
+ target: Object,
22
+ propertyKey: string | symbol,
23
+ descriptor: TypedPropertyDescriptor<any>,
24
+ ) {
25
+ const array: Array<(props: SwaggerCustomizer.IProps) => unknown> = (() => {
26
+ if (Reflect.hasMetadata("nestia/SwaggerCustomizer", target, propertyKey))
27
+ return Reflect.getMetadata(
28
+ "nestia/SwaggerCustomizer",
29
+ target,
30
+ propertyKey,
31
+ );
32
+ const array: Array<(props: SwaggerCustomizer.IProps) => unknown> = [];
33
+ Reflect.defineMetadata(
34
+ "nestia/SwaggerCustomizer",
35
+ array,
36
+ target,
37
+ propertyKey,
38
+ );
39
+ return array;
40
+ })();
41
+ array.push(closure);
42
+ return descriptor;
43
+ };
44
+ }
45
+ export namespace SwaggerCustomizer {
46
+ /**
47
+ * Properties for the `SwaggerCustomizer` decorator.
48
+ *
49
+ * `SwaggerCustomizer.IProps` is a type for the `closure` parameter of the
50
+ * `SwaggerCustomizer` decorator. It's a callback function which can customize
51
+ * the swagger data.
52
+ */
53
+ export interface IProps {
54
+ /**
55
+ * Swagger data.
56
+ */
57
+ swagger: OpenApi.IDocument;
58
+
59
+ /**
60
+ * Method of the route.
61
+ */
62
+ method: string;
63
+
64
+ /**
65
+ * Path of the route.
66
+ */
67
+ path: string;
68
+
69
+ /**
70
+ * Route data.
71
+ */
72
+ route: OpenApi.IOperation;
73
+
74
+ /**
75
+ * Get neighbor endpoint data through the controller method.
76
+ *
77
+ * @param func Controller method to find the neighbor endpoint
78
+ * @returns Neighbor endpoint data
79
+ */
80
+ at(func: Function): ISwaggerEndpoint | undefined;
81
+
82
+ /**
83
+ * Get neighbor route data.
84
+ *
85
+ * @param accessor Accessor for getting neighbor route data
86
+ * @returns Neighbor route data
87
+ */
88
+ get(accessor: IAccessor): OpenApi.IOperation | undefined;
89
+ }
90
+
91
+ /**
92
+ * Accessor for getting neighbor route data.
93
+ */
94
+ export interface IAccessor {
95
+ /**
96
+ * Path of the neighbor route.
97
+ */
98
+ path: string;
99
+
100
+ /**
101
+ * Method of the neighbor route.
102
+ */
103
+ method: string;
104
+ }
105
+
106
+ /**
107
+ * Endpoint info of the route.
108
+ */
109
+ export interface ISwaggerEndpoint extends IAccessor {
110
+ /**
111
+ * Route data.
112
+ */
113
+ route: OpenApi.IOperation;
114
+ }
115
+ }
@@ -1,100 +1,100 @@
1
- export namespace SwaggerExample {
2
- export function Response<T>(value: T): MethodDecorator;
3
- export function Response<T>(key: string, value: T): MethodDecorator;
4
- export function Response(...args: any[]): MethodDecorator {
5
- return function SwaggerExampleResponse(
6
- _target: Object,
7
- _propertyKey: string | symbol,
8
- descriptor: TypedPropertyDescriptor<any>,
9
- ): TypedPropertyDescriptor<any> {
10
- emplaceValue(emplaceOfResponse(descriptor))(args);
11
- return descriptor;
12
- };
13
- }
14
-
15
- export function Parameter<T>(value: T): ParameterDecorator;
16
- export function Parameter<T>(key: string, value: T): ParameterDecorator;
17
- export function Parameter(...args: any[]): ParameterDecorator {
18
- return function SwaggerExampleParameter(
19
- target: Object,
20
- propertyKey: string | symbol | undefined,
21
- index: number,
22
- ): void {
23
- emplaceValue(emplaceOfParameter(target, propertyKey ?? "", index))(args);
24
- };
25
- }
26
-
27
- export interface IData<T> {
28
- examples?: Record<string, T>;
29
- example?: T;
30
- index?: number;
31
- }
32
- }
33
-
34
- const emplaceValue =
35
- <T>(data: SwaggerExample.IData<T>) =>
36
- (args: any[]) => {
37
- if (args.length === 1) data.example = args[0];
38
- else {
39
- const key: string = args[0];
40
- const value: T = args[1];
41
- data.examples ??= {};
42
- data.examples[key] = value;
43
- }
44
- };
45
-
46
- const emplaceOfResponse = <T>(
47
- descriptor: TypedPropertyDescriptor<any>,
48
- ): SwaggerExample.IData<T> => {
49
- const oldbie: SwaggerExample.IData<T> | undefined = Reflect.getMetadata(
50
- "nestia/SwaggerExample/Response",
51
- descriptor.value,
52
- );
53
- if (oldbie !== undefined) return oldbie;
54
- const newbie: SwaggerExample.IData<T> = {};
55
- Reflect.defineMetadata(
56
- "nestia/SwaggerExample/Response",
57
- newbie,
58
- descriptor.value,
59
- );
60
- return newbie;
61
- };
62
-
63
- const emplaceOfParameter = (
64
- target: Object,
65
- propertyKey: string | symbol,
66
- index: number,
67
- ): SwaggerExample.IData<any> => {
68
- const array: SwaggerExample.IData<any>[] = emplaceArrayOfParameters(
69
- target,
70
- propertyKey,
71
- );
72
- const oldibe: SwaggerExample.IData<any> | undefined = array.find(
73
- (e) => e.index === index,
74
- );
75
- if (oldibe !== undefined) return oldibe;
76
-
77
- const data: SwaggerExample.IData<any> = { index };
78
- array.push(data);
79
- return data;
80
- };
81
-
82
- const emplaceArrayOfParameters = (
83
- target: Object,
84
- propertyKey: string | symbol,
85
- ): SwaggerExample.IData<any>[] => {
86
- const array: SwaggerExample.IData<any>[] | undefined = Reflect.getMetadata(
87
- "nestia/SwaggerExample/Parameters",
88
- target,
89
- propertyKey,
90
- );
91
- if (array !== undefined) return array;
92
- const newbie: SwaggerExample.IData<any>[] = [];
93
- Reflect.defineMetadata(
94
- "nestia/SwaggerExample/Parameters",
95
- newbie,
96
- target,
97
- propertyKey,
98
- );
99
- return newbie;
100
- };
1
+ export namespace SwaggerExample {
2
+ export function Response<T>(value: T): MethodDecorator;
3
+ export function Response<T>(key: string, value: T): MethodDecorator;
4
+ export function Response(...args: any[]): MethodDecorator {
5
+ return function SwaggerExampleResponse(
6
+ _target: Object,
7
+ _propertyKey: string | symbol,
8
+ descriptor: TypedPropertyDescriptor<any>,
9
+ ): TypedPropertyDescriptor<any> {
10
+ emplaceValue(emplaceOfResponse(descriptor))(args);
11
+ return descriptor;
12
+ };
13
+ }
14
+
15
+ export function Parameter<T>(value: T): ParameterDecorator;
16
+ export function Parameter<T>(key: string, value: T): ParameterDecorator;
17
+ export function Parameter(...args: any[]): ParameterDecorator {
18
+ return function SwaggerExampleParameter(
19
+ target: Object,
20
+ propertyKey: string | symbol | undefined,
21
+ index: number,
22
+ ): void {
23
+ emplaceValue(emplaceOfParameter(target, propertyKey ?? "", index))(args);
24
+ };
25
+ }
26
+
27
+ export interface IData<T> {
28
+ examples?: Record<string, T>;
29
+ example?: T;
30
+ index?: number;
31
+ }
32
+ }
33
+
34
+ const emplaceValue =
35
+ <T>(data: SwaggerExample.IData<T>) =>
36
+ (args: any[]) => {
37
+ if (args.length === 1) data.example = args[0];
38
+ else {
39
+ const key: string = args[0];
40
+ const value: T = args[1];
41
+ data.examples ??= {};
42
+ data.examples[key] = value;
43
+ }
44
+ };
45
+
46
+ const emplaceOfResponse = <T>(
47
+ descriptor: TypedPropertyDescriptor<any>,
48
+ ): SwaggerExample.IData<T> => {
49
+ const oldbie: SwaggerExample.IData<T> | undefined = Reflect.getMetadata(
50
+ "nestia/SwaggerExample/Response",
51
+ descriptor.value,
52
+ );
53
+ if (oldbie !== undefined) return oldbie;
54
+ const newbie: SwaggerExample.IData<T> = {};
55
+ Reflect.defineMetadata(
56
+ "nestia/SwaggerExample/Response",
57
+ newbie,
58
+ descriptor.value,
59
+ );
60
+ return newbie;
61
+ };
62
+
63
+ const emplaceOfParameter = (
64
+ target: Object,
65
+ propertyKey: string | symbol,
66
+ index: number,
67
+ ): SwaggerExample.IData<any> => {
68
+ const array: SwaggerExample.IData<any>[] = emplaceArrayOfParameters(
69
+ target,
70
+ propertyKey,
71
+ );
72
+ const oldibe: SwaggerExample.IData<any> | undefined = array.find(
73
+ (e) => e.index === index,
74
+ );
75
+ if (oldibe !== undefined) return oldibe;
76
+
77
+ const data: SwaggerExample.IData<any> = { index };
78
+ array.push(data);
79
+ return data;
80
+ };
81
+
82
+ const emplaceArrayOfParameters = (
83
+ target: Object,
84
+ propertyKey: string | symbol,
85
+ ): SwaggerExample.IData<any>[] => {
86
+ const array: SwaggerExample.IData<any>[] | undefined = Reflect.getMetadata(
87
+ "nestia/SwaggerExample/Parameters",
88
+ target,
89
+ propertyKey,
90
+ );
91
+ if (array !== undefined) return array;
92
+ const newbie: SwaggerExample.IData<any>[] = [];
93
+ Reflect.defineMetadata(
94
+ "nestia/SwaggerExample/Parameters",
95
+ newbie,
96
+ target,
97
+ propertyKey,
98
+ );
99
+ return newbie;
100
+ };