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-angular.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
52
52
|stringEnums|Generate string enums instead of objects for enum values.||false|
53
53
|supportsES6|Generate code that conforms to ES6.||false|
54
54
|taggedUnions|Use discriminators to create tagged unions instead of extending interfaces.||false|
55
-
|typescriptVersion|The version of typescript compatible with Angular (see ngVersion option).||null|
55
+
|tsVersion|The version of typescript compatible with Angular (see ngVersion option).||null|
56
56
|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|
57
57
|useSquareBracketsInArrayNames|Setting this property to true will add brackets to array attribute names, e.g. my_values[].||false|
58
58
|withInterfaces|Setting this property to true will generate interfaces next to the default class implementations.||false|
Copy file name to clipboardExpand all lines: modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/TypeScriptAngularClientCodegen.java
this.cliOptions.add(newCliOption(QUERY_PARAM_OBJECT_FORMAT, "The format for query param objects: 'dot', 'json', 'key'.").defaultValue(this.queryParamObjectFormat.name()));
152
152
this.cliOptions.add(CliOption.newBoolean(USE_SQUARE_BRACKETS_IN_ARRAY_NAMES, "Setting this property to true will add brackets to array attribute names, e.g. my_values[].", false));
153
-
this.cliOptions.add(newCliOption(TYPESCRIPT_VERSION, "The version of typescript compatible with Angular (see ngVersion option)."));
153
+
this.cliOptions.add(newCliOption(TS_VERSION, "The version of typescript compatible with Angular (see ngVersion option)."));
154
154
this.cliOptions.add(newCliOption(RXJS_VERSION, "The version of RxJS compatible with Angular (see ngVersion option)."));
155
155
this.cliOptions.add(newCliOption(NGPACKAGR_VERSION, "The version of ng-packagr compatible with Angular (see ngVersion option)."));
156
156
this.cliOptions.add(newCliOption(ZONEJS_VERSION, "The version of zone.js compatible with Angular (see ngVersion option)."));
Copy file name to clipboardExpand all lines: modules/openapi-generator/src/test/java/org/openapitools/codegen/options/TypeScriptAngularClientOptionsProvider.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ public class TypeScriptAngularClientOptionsProvider implements TypeScriptSharedC
0 commit comments