Skip to content

Commit 944dc4a

Browse files
committed
- Adding new version
1 parent 8d5e458 commit 944dc4a

File tree

2 files changed

+20
-15
lines changed

2 files changed

+20
-15
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [0.18.0] - 2021-01-28
5+
### Added
6+
- Angular client generation!
7+
- Updated documentation with more examples and better descriptions
8+
49
## [0.17.0] - 2021-01-26
510
### Fixed
611
- Shorthand notation for properties passed through constructor

test/e2e/assets/main-angular.ts

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -44,21 +44,21 @@ export class AppComponent {
4444
) {
4545
(window as any).api = {
4646
OpenAPI,
47-
CollectionFormatService: collectionFormatService,
48-
ComplexService: complexService,
49-
DefaultService: defaultService,
50-
DefaultsService: defaultsService,
51-
DuplicateService: duplicateService,
52-
ErrorService: errorService,
53-
HeaderService: headerService,
54-
MultipleTags1Service: multipleTags1Service,
55-
MultipleTags2Service: multipleTags2Service,
56-
MultipleTags3Service: multipleTags3Service,
57-
NoContentService: noContentService,
58-
ParametersService: parametersService,
59-
ResponseService: responseService,
60-
SimpleService: simpleService,
61-
TypesService: typesService,
47+
CollectionFormatService: this.collectionFormatService,
48+
ComplexService: this.complexService,
49+
DefaultService: this.defaultService,
50+
DefaultsService: this.defaultsService,
51+
DuplicateService: this.duplicateService,
52+
ErrorService: this.errorService,
53+
HeaderService: this.headerService,
54+
MultipleTags1Service: this.multipleTags1Service,
55+
MultipleTags2Service: this.multipleTags2Service,
56+
MultipleTags3Service: this.multipleTags3Service,
57+
NoContentService: this.noContentService,
58+
ParametersService: this.parametersService,
59+
ResponseService: this.responseService,
60+
SimpleService: this.simpleService,
61+
TypesService: this.typesService,
6262
};
6363
}
6464
}

0 commit comments

Comments
 (0)