- Adding new version

This commit is contained in:
Ferdi Koomen 2022-01-28 17:42:45 +01:00
parent 8d5e458c08
commit 944dc4a409
2 changed files with 20 additions and 15 deletions

View File

@ -1,6 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.
## [0.18.0] - 2021-01-28
### Added
- Angular client generation!
- Updated documentation with more examples and better descriptions
## [0.17.0] - 2021-01-26
### Fixed
- Shorthand notation for properties passed through constructor

View File

@ -44,21 +44,21 @@ export class AppComponent {
) {
(window as any).api = {
OpenAPI,
CollectionFormatService: collectionFormatService,
ComplexService: complexService,
DefaultService: defaultService,
DefaultsService: defaultsService,
DuplicateService: duplicateService,
ErrorService: errorService,
HeaderService: headerService,
MultipleTags1Service: multipleTags1Service,
MultipleTags2Service: multipleTags2Service,
MultipleTags3Service: multipleTags3Service,
NoContentService: noContentService,
ParametersService: parametersService,
ResponseService: responseService,
SimpleService: simpleService,
TypesService: typesService,
CollectionFormatService: this.collectionFormatService,
ComplexService: this.complexService,
DefaultService: this.defaultService,
DefaultsService: this.defaultsService,
DuplicateService: this.duplicateService,
ErrorService: this.errorService,
HeaderService: this.headerService,
MultipleTags1Service: this.multipleTags1Service,
MultipleTags2Service: this.multipleTags2Service,
MultipleTags3Service: this.multipleTags3Service,
NoContentService: this.noContentService,
ParametersService: this.parametersService,
ResponseService: this.responseService,
SimpleService: this.simpleService,
TypesService: this.typesService,
};
}
}