Skip to content

Commit b4f0e7d

Browse files
Fixes aot build
1 parent 8217340 commit b4f0e7d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [2.0.3] - 2020-02-06
910
## [2.0.2] - 2020-02-06
1011
### Fixed
1112
- Injection Error

projects/ng-oidc-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng-oidc-client",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"main": "index.js",
55
"description": "An Angular package wrapping oidc-client library to manage authentication with OpenID Connect (OIDC) and OAuth2 in a reactive way using NgRx.",
66
"author": "Alexandru Gogan & David Turner",

projects/ng-oidc-client/src/lib/facades/oidc.facade.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import { User as OidcUser } from 'oidc-client';
44
import { Observable } from 'rxjs';
55
import { filter, take } from 'rxjs/operators';
66
import { OidcActions } from '../actions';
7-
import { Config, OidcEvent, OIDC_CONFIG, RequestArugments } from '../models';
7+
import { Config, OIDC_CONFIG } from '../models/config.model';
8+
import { OidcEvent, RequestArugments } from '../models';
89
import { toSerializedUser } from '../oidc.utils';
910
import { ErrorState, OidcState } from '../reducers';
1011
import { OidcSelectors } from '../selectors';

0 commit comments

Comments
 (0)