@nestia/core 4.5.0-dev.20241218 → 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.
Files changed (81) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +87 -87
  3. package/lib/decorators/HumanRoute.d.ts +16 -0
  4. package/lib/decorators/HumanRoute.js +25 -0
  5. package/lib/decorators/HumanRoute.js.map +1 -0
  6. package/lib/module.d.ts +1 -0
  7. package/lib/module.js +1 -0
  8. package/lib/module.js.map +1 -1
  9. package/package.json +6 -6
  10. package/src/adaptors/WebSocketAdaptor.ts +426 -426
  11. package/src/decorators/DynamicModule.ts +43 -43
  12. package/src/decorators/EncryptedBody.ts +101 -101
  13. package/src/decorators/EncryptedController.ts +38 -38
  14. package/src/decorators/EncryptedModule.ts +100 -100
  15. package/src/decorators/EncryptedRoute.ts +219 -219
  16. package/src/decorators/HumanRoute.ts +22 -0
  17. package/src/decorators/NoTransformConfigurationError.ts +32 -32
  18. package/src/decorators/PlainBody.ts +79 -79
  19. package/src/decorators/SwaggerCustomizer.ts +115 -115
  20. package/src/decorators/SwaggerExample.ts +100 -100
  21. package/src/decorators/TypedBody.ts +59 -59
  22. package/src/decorators/TypedException.ts +128 -128
  23. package/src/decorators/TypedFormData.ts +195 -195
  24. package/src/decorators/TypedHeaders.ts +64 -64
  25. package/src/decorators/TypedParam.ts +77 -77
  26. package/src/decorators/TypedQuery.ts +245 -245
  27. package/src/decorators/TypedRoute.ts +214 -214
  28. package/src/decorators/WebSocketRoute.ts +242 -242
  29. package/src/decorators/internal/EncryptedConstant.ts +4 -4
  30. package/src/decorators/internal/IWebSocketRouteReflect.ts +23 -23
  31. package/src/decorators/internal/NoTransformConfigureError.ts +2 -2
  32. package/src/decorators/internal/get_path_and_querify.ts +108 -108
  33. package/src/decorators/internal/get_path_and_stringify.ts +122 -122
  34. package/src/decorators/internal/get_text_body.ts +20 -20
  35. package/src/decorators/internal/headers_to_object.ts +13 -13
  36. package/src/decorators/internal/is_request_body_undefined.ts +14 -14
  37. package/src/decorators/internal/load_controller.ts +49 -49
  38. package/src/decorators/internal/route_error.ts +45 -45
  39. package/src/decorators/internal/validate_request_body.ts +74 -74
  40. package/src/decorators/internal/validate_request_form_data.ts +77 -77
  41. package/src/decorators/internal/validate_request_headers.ts +86 -86
  42. package/src/decorators/internal/validate_request_query.ts +74 -74
  43. package/src/index.ts +5 -5
  44. package/src/module.ts +22 -21
  45. package/src/options/INestiaTransformOptions.ts +38 -38
  46. package/src/options/INestiaTransformProject.ts +8 -8
  47. package/src/options/IRequestBodyValidator.ts +20 -20
  48. package/src/options/IRequestFormDataProps.ts +27 -27
  49. package/src/options/IRequestHeadersValidator.ts +22 -22
  50. package/src/options/IRequestQueryValidator.ts +20 -20
  51. package/src/options/IResponseBodyQuerifier.ts +25 -25
  52. package/src/options/IResponseBodyStringifier.ts +30 -30
  53. package/src/programmers/PlainBodyProgrammer.ts +70 -70
  54. package/src/programmers/TypedBodyProgrammer.ts +142 -142
  55. package/src/programmers/TypedFormDataBodyProgrammer.ts +118 -118
  56. package/src/programmers/TypedHeadersProgrammer.ts +63 -63
  57. package/src/programmers/TypedParamProgrammer.ts +33 -33
  58. package/src/programmers/TypedQueryBodyProgrammer.ts +112 -112
  59. package/src/programmers/TypedQueryProgrammer.ts +114 -114
  60. package/src/programmers/TypedQueryRouteProgrammer.ts +105 -105
  61. package/src/programmers/TypedRouteProgrammer.ts +94 -94
  62. package/src/programmers/http/HttpAssertQuerifyProgrammer.ts +72 -72
  63. package/src/programmers/http/HttpIsQuerifyProgrammer.ts +75 -75
  64. package/src/programmers/http/HttpQuerifyProgrammer.ts +108 -108
  65. package/src/programmers/http/HttpValidateQuerifyProgrammer.ts +76 -76
  66. package/src/programmers/internal/CoreMetadataUtil.ts +21 -21
  67. package/src/transform.ts +35 -35
  68. package/src/transformers/FileTransformer.ts +110 -110
  69. package/src/transformers/MethodTransformer.ts +103 -103
  70. package/src/transformers/NodeTransformer.ts +23 -23
  71. package/src/transformers/ParameterDecoratorTransformer.ts +143 -143
  72. package/src/transformers/ParameterTransformer.ts +57 -57
  73. package/src/transformers/TypedRouteTransformer.ts +85 -85
  74. package/src/transformers/WebSocketRouteTransformer.ts +120 -120
  75. package/src/typings/Creator.ts +3 -3
  76. package/src/typings/get-function-location.d.ts +7 -7
  77. package/src/utils/ArrayUtil.ts +7 -7
  78. package/src/utils/ExceptionManager.ts +112 -112
  79. package/src/utils/Singleton.ts +20 -20
  80. package/src/utils/SourceFinder.ts +57 -57
  81. 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
+ };