@rxap/plugin-nestjs 20.2.0-dev.10 → 20.2.0-dev.11
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/CHANGELOG.md +6 -0
- package/README.md +105 -105
- package/package.json +5 -5
- package/src/generators/dynamic-configuration-module/schema.json +9 -4
- package/src/generators/feature-microservice/schema.json +25 -18
- package/src/generators/frontend-microservice/schema.json +28 -20
- package/src/generators/health-indicator/schema.json +8 -4
- package/src/generators/health-indicator-init/schema.json +5 -2
- package/src/generators/init/schema.json +10 -5
- package/src/generators/init-application/schema.json +41 -26
- package/src/generators/init-library/schema.json +13 -7
- package/src/generators/jwt/schema.json +12 -2
- package/src/generators/microservice/schema.json +102 -28
- package/src/generators/open-api/schema.json +12 -2
- package/src/generators/sentry/schema.json +19 -4
- package/src/generators/swagger/schema.json +16 -3
- package/src/generators/validator/schema.json +11 -2
|
@@ -10,15 +10,28 @@
|
|
|
10
10
|
"$default": {
|
|
11
11
|
"$source": "projectName"
|
|
12
12
|
},
|
|
13
|
-
"x-prompt": "Which project should be initialized?"
|
|
13
|
+
"x-prompt": "Which project should be initialized with Swagger support?",
|
|
14
|
+
"examples": [
|
|
15
|
+
"my-api"
|
|
16
|
+
]
|
|
14
17
|
},
|
|
15
18
|
"overwrite": {
|
|
16
|
-
"type": "boolean"
|
|
19
|
+
"type": "boolean",
|
|
20
|
+
"description": "Whether to overwrite existing files.",
|
|
21
|
+
"default": false,
|
|
22
|
+
"examples": [
|
|
23
|
+
true,
|
|
24
|
+
false
|
|
25
|
+
]
|
|
17
26
|
},
|
|
18
27
|
"standalone": {
|
|
19
28
|
"type": "boolean",
|
|
20
29
|
"default": false,
|
|
21
|
-
"description": "Whether the
|
|
30
|
+
"description": "Whether the NestJS service should be standalone.",
|
|
31
|
+
"examples": [
|
|
32
|
+
true,
|
|
33
|
+
false
|
|
34
|
+
]
|
|
22
35
|
}
|
|
23
36
|
},
|
|
24
37
|
"required": [
|
|
@@ -10,10 +10,19 @@
|
|
|
10
10
|
"$default": {
|
|
11
11
|
"$source": "projectName"
|
|
12
12
|
},
|
|
13
|
-
"x-prompt": "Which project should be
|
|
13
|
+
"x-prompt": "Which project should be extended with validation support?",
|
|
14
|
+
"examples": [
|
|
15
|
+
"my-api"
|
|
16
|
+
]
|
|
14
17
|
},
|
|
15
18
|
"overwrite": {
|
|
16
|
-
"type": "boolean"
|
|
19
|
+
"type": "boolean",
|
|
20
|
+
"description": "Whether to overwrite existing files.",
|
|
21
|
+
"default": false,
|
|
22
|
+
"examples": [
|
|
23
|
+
true,
|
|
24
|
+
false
|
|
25
|
+
]
|
|
17
26
|
}
|
|
18
27
|
},
|
|
19
28
|
"required": [
|