Skip to content

Commit 8b52a04

Browse files
committed
Updated dependencies, cleanup
1 parent dbf5c97 commit 8b52a04

15 files changed

+5439
-18587
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [0.24.0] - 2023-04-10
5+
### Fixed
6+
- Upgraded dependencies
7+
- Fixed issue with Cancelable promise
8+
- Fixed issue with escaping reserved keywords in schema names
9+
### Added
10+
- Added `--postfixModels` option
11+
412
## [0.23.0] - 2022-06-02
513
### Fixed
614
- Upgraded dependencies

README.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
[![NPM][npm-image]][npm-url]
44
[![License][license-image]][license-url]
55
[![Coverage][coverage-image]][coverage-url]
6-
[![Quality][quality-image]][quality-url]
7-
[![Code Climate][climate-image]][climate-url]
86
[![Downloads][downloads-image]][downloads-url]
97
[![Build][build-image]][build-url]
108

@@ -14,7 +12,7 @@
1412
- Frontend ❤️ OpenAPI, but we do not want to use JAVA codegen in our builds
1513
- Quick, lightweight, robust and framework-agnostic 🚀
1614
- Supports generation of TypeScript clients
17-
- Supports generations of Fetch, [Node-Fetch](#node-fetch-support), [Axios](#axios-support), [Angular](#angular-support) and XHR http clients
15+
- Supports generations of Fetch, Node-Fetch, Axios, Angular and XHR http clients
1816
- Supports OpenAPI specification v2.0 and v3.0
1917
- Supports JSON and YAML files for input
2018
- Supports generation through CLI, Node.js and NPX
@@ -86,10 +84,6 @@ Support
8684
[license-image]: http://img.shields.io/npm/l/openapi-typescript-codegen.svg
8785
[coverage-url]: https://codecov.io/gh/ferdikoomen/openapi-typescript-codegen
8886
[coverage-image]: https://img.shields.io/codecov/c/github/ferdikoomen/openapi-typescript-codegen.svg
89-
[quality-url]: https://lgtm.com/projects/g/ferdikoomen/openapi-typescript-codegen
90-
[quality-image]: https://img.shields.io/lgtm/grade/javascript/g/ferdikoomen/openapi-typescript-codegen.svg
91-
[climate-url]: https://codeclimate.com/github/ferdikoomen/openapi-typescript-codegen
92-
[climate-image]: https://img.shields.io/codeclimate/maintainability/ferdikoomen/openapi-typescript-codegen.svg
9387
[downloads-url]: http://npm-stat.com/charts.html?package=openapi-typescript-codegen
9488
[downloads-image]: http://img.shields.io/npm/dm/openapi-typescript-codegen.svg
9589
[build-url]: https://circleci.com/gh/ferdikoomen/openapi-typescript-codegen/tree/master

bin/index.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ const params = program
2121
.option('--exportModels <value>', 'Write models to disk', true)
2222
.option('--exportSchemas <value>', 'Write schemas to disk', false)
2323
.option('--indent <value>', 'Indentation options [4, 2, tabs]', '4')
24-
.option('--postfix <value>', 'Deprecated: Use --postfixServices instead. Service name postfix', 'Service')
2524
.option('--postfixServices <value>', 'Service name postfix', 'Service')
2625
.option('--postfixModels <value>', 'Model name postfix')
2726
.option('--request <value>', 'Path to custom request file')
@@ -43,7 +42,7 @@ if (OpenAPI) {
4342
exportModels: JSON.parse(params.exportModels) === true,
4443
exportSchemas: JSON.parse(params.exportSchemas) === true,
4544
indent: params.indent,
46-
postfixServices: params.postfixServices ?? params.postfix,
45+
postfixServices: params.postfixServices,
4746
postfixModels: params.postfixModels,
4847
request: params.request,
4948
})

docs/angular-support.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ If you want to generate the Angular based client then you can specify `--client
99
The Angular client has been tested with the following versions:
1010

1111
```
12-
"@angular/common": "14.0.x",
13-
"@angular/core": "14.0.x",
12+
"@angular/common": "15.0.x",
13+
"@angular/core": "15.0.x",
1414
"rxjs": "7.5.x",
1515
```
1616

0 commit comments

Comments
 (0)