adb-shared 6.0.31 → 6.0.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,6 +6,7 @@ export interface AdbUserServiceConfig {
6
6
  scope?: string;
7
7
  responseType?: string;
8
8
  idleTime?: number;
9
+ autoLogin?: boolean;
9
10
  postLogoutUrl?: string;
10
11
  overrideIssuer?: boolean;
11
12
  log?: boolean;
@@ -14,6 +15,7 @@ export declare const ADB_USER_SERVICE_CONFIG: InjectionToken<AdbUserServiceConfi
14
15
  export declare const DEFAULT_ADB_USER_SERVICE_CONFIG: {
15
16
  scope: string;
16
17
  idleTime: number;
18
+ autoLogin: boolean;
17
19
  response_type: string;
18
20
  overrideIssuer: boolean;
19
21
  log: boolean;
@@ -14,7 +14,7 @@ export declare class AdbUserService implements OnDestroy {
14
14
  intervalId: any;
15
15
  hasEmitted: boolean;
16
16
  constructor(config: AdbUserServiceConfig, http: HttpClient, router: Router);
17
- init(): void;
17
+ init(autoLogin?: boolean): void;
18
18
  startMainLoop(): void;
19
19
  login(): void;
20
20
  logout(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adb-shared",
3
- "version": "6.0.31",
3
+ "version": "6.0.33",
4
4
  "author": "ADB",
5
5
  "license": "ISC",
6
6
  "peerDependencies": {