You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/generators/typescript-nestjs-server.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,14 +40,14 @@ These options may be applied as additional-properties (cli) or configOptions (pl
40
40
|nullSafeAdditionalProps|Set to make additional properties types declare that their indexer may return undefined||false|
41
41
|paramNaming|Naming convention for parameters: 'camelCase', 'PascalCase', 'snake_case' and 'original', which keeps the original name||camelCase|
42
42
|prependFormOrBodyParameters|Add form or body parameters to the beginning of the parameter list.||false|
43
-
|rxjsVersion|The version of RxJS compatible with Angular (see ngVersion option).||null|
43
+
|rxjsVersion|The version of RxJS.||null|
44
44
|snapshot|When setting this property to true, the version will be suffixed with -SNAPSHOT.yyyyMMddHHmm||false|
45
45
|sortModelPropertiesByRequiredFlag|Sort model properties to place required parameters before optional parameters.||true|
46
46
|sortParamsByRequiredFlag|Sort method arguments to place required parameters before optional parameters.||true|
47
47
|stringEnums|Generate string enums instead of objects for enum values.||false|
48
48
|supportsES6|Generate code that conforms to ES6.||false|
49
49
|taggedUnions|Use discriminators to create tagged unions instead of extending interfaces.||false|
50
-
|tsVersion|The version of typescript compatible with Angular (see ngVersion option).||null|
50
+
|tsVersion|The version of typescript.||null|
51
51
|useSingleRequestParameter|Setting this property to true will generate functions with a single argument containing all API endpoint parameters instead of one argument per parameter.||false|
Copy file name to clipboardExpand all lines: modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/TypeScriptNestjsServerCodegen.java
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -120,8 +120,8 @@ public TypeScriptNestjsServerCodegen() {
120
120
this.cliOptions.add(newCliOption(FILE_NAMING, "Naming convention for the output files: 'camelCase', 'kebab-case'.").defaultValue(this.fileNaming));
this.cliOptions.add(newCliOption(USE_SINGLE_REQUEST_PARAMETER, "Setting this property to true will generate functions with a single argument containing all API endpoint parameters instead of one argument per parameter.").defaultValue(Boolean.FALSE.toString()));
123
-
this.cliOptions.add(newCliOption(TS_VERSION, "The version of typescript compatible with Angular (see ngVersion option)."));
124
-
this.cliOptions.add(newCliOption(RXJS_VERSION, "The version of RxJS compatible with Angular (see ngVersion option)."));
123
+
this.cliOptions.add(newCliOption(TS_VERSION, "The version of typescript."));
124
+
this.cliOptions.add(newCliOption(RXJS_VERSION, "The version of RxJS."));
0 commit comments