@igo2/auth 19.0.3 → 20.0.0-next.2
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.
- package/environment/index.d.ts +9 -5
- package/facebook/index.d.ts +25 -5
- package/fesm2022/igo2-auth-facebook.mjs +11 -14
- package/fesm2022/igo2-auth-facebook.mjs.map +1 -1
- package/fesm2022/igo2-auth-form.mjs +20 -27
- package/fesm2022/igo2-auth-form.mjs.map +1 -1
- package/fesm2022/igo2-auth-google.mjs +13 -17
- package/fesm2022/igo2-auth-google.mjs.map +1 -1
- package/fesm2022/igo2-auth-internal.mjs +18 -22
- package/fesm2022/igo2-auth-internal.mjs.map +1 -1
- package/fesm2022/igo2-auth-microsoft.mjs +44 -73
- package/fesm2022/igo2-auth-microsoft.mjs.map +1 -1
- package/fesm2022/igo2-auth-monitoring.mjs +10 -19
- package/fesm2022/igo2-auth-monitoring.mjs.map +1 -1
- package/fesm2022/igo2-auth.mjs +67 -103
- package/fesm2022/igo2-auth.mjs.map +1 -1
- package/form/index.d.ts +71 -5
- package/google/index.d.ts +32 -5
- package/index.d.ts +188 -5
- package/internal/index.d.ts +23 -5
- package/microsoft/index.d.ts +86 -5
- package/monitoring/index.d.ts +19 -5
- package/package.json +12 -12
- package/environment/environment.interface.d.ts +0 -6
- package/environment/public_api.d.ts +0 -1
- package/facebook/auth-facebook/auth-facebook.component.d.ts +0 -18
- package/facebook/public_api.d.ts +0 -2
- package/facebook/shared/auth-facebook.interface.d.ts +0 -4
- package/facebook/shared/index.d.ts +0 -1
- package/form/auth-form/auth-form.component.d.ts +0 -41
- package/form/auth-form.module.d.ts +0 -20
- package/form/public_api.d.ts +0 -3
- package/form/shared/auth-form.interface.d.ts +0 -9
- package/form/shared/index.d.ts +0 -1
- package/google/auth-google/auth-google.component.d.ts +0 -25
- package/google/public_api.d.ts +0 -2
- package/google/shared/auth-google.interface.d.ts +0 -5
- package/google/shared/index.d.ts +0 -1
- package/internal/auth-intern/auth-intern.component.d.ts +0 -21
- package/internal/public_api.d.ts +0 -1
- package/lib/auth.provider.d.ts +0 -3
- package/lib/shared/admin.guard.d.ts +0 -13
- package/lib/shared/auth-storage.interface.d.ts +0 -4
- package/lib/shared/auth-storage.service.d.ts +0 -18
- package/lib/shared/auth.guard.d.ts +0 -13
- package/lib/shared/auth.interceptor.d.ts +0 -25
- package/lib/shared/auth.interface.d.ts +0 -45
- package/lib/shared/auth.service.d.ts +0 -49
- package/lib/shared/index.d.ts +0 -11
- package/lib/shared/logged.guard.d.ts +0 -13
- package/lib/shared/profils.guard.d.ts +0 -13
- package/lib/shared/token.interface.d.ts +0 -5
- package/lib/shared/token.service.d.ts +0 -16
- package/microsoft/auth-microsoft/auth-microsoft.component.d.ts +0 -25
- package/microsoft/auth-microsoft.provider.d.ts +0 -12
- package/microsoft/auth-microsoftb2c/auth-microsoftb2c.component.d.ts +0 -25
- package/microsoft/auth-microsoftb2c/auth-msalBroadcastServiceb2c.service.d.ts +0 -15
- package/microsoft/auth-microsoftb2c/auth-msalServiceb2c.service.d.ts +0 -33
- package/microsoft/public_api.d.ts +0 -4
- package/microsoft/shared/auth-microsoft.interface.d.ts +0 -32
- package/microsoft/shared/index.d.ts +0 -1
- package/monitoring/auth-monitoring/auth-monitoring.provider.d.ts +0 -3
- package/monitoring/auth-monitoring/auth-monitoring.service.d.ts +0 -15
- package/monitoring/public_api.d.ts +0 -2
- package/public_api.d.ts +0 -2
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { Provider } from '@angular/core';
|
|
2
|
-
import { BaseUser } from '@igo2/core/user';
|
|
3
|
-
export interface User extends BaseUser {
|
|
4
|
-
source?: string;
|
|
5
|
-
sourceId?: string;
|
|
6
|
-
locale?: string;
|
|
7
|
-
isExpired?: boolean;
|
|
8
|
-
isAdmin?: boolean;
|
|
9
|
-
defaultContextId?: string;
|
|
10
|
-
}
|
|
11
|
-
export interface IInfosUser {
|
|
12
|
-
tokenId: string;
|
|
13
|
-
}
|
|
14
|
-
export interface AuthOptions {
|
|
15
|
-
url?: string;
|
|
16
|
-
tokenKey?: string;
|
|
17
|
-
allowAnonymous?: boolean;
|
|
18
|
-
loginRoute?: string;
|
|
19
|
-
logoutRoute?: string;
|
|
20
|
-
homeRoute?: string;
|
|
21
|
-
trustHosts?: string[];
|
|
22
|
-
profilsGuard?: string[];
|
|
23
|
-
hostsWithCredentials?: WithCredentialsOptions[];
|
|
24
|
-
hostsByKey?: AuthByKeyOptions[];
|
|
25
|
-
intern?: AuthInternOptions;
|
|
26
|
-
}
|
|
27
|
-
export interface AuthByKeyOptions {
|
|
28
|
-
domainRegFilters?: string;
|
|
29
|
-
keyProperty?: string;
|
|
30
|
-
keyValue?: string;
|
|
31
|
-
}
|
|
32
|
-
export interface WithCredentialsOptions {
|
|
33
|
-
withCredentials?: boolean;
|
|
34
|
-
domainRegFilters?: string;
|
|
35
|
-
}
|
|
36
|
-
export interface AuthInternOptions {
|
|
37
|
-
enabled?: boolean;
|
|
38
|
-
}
|
|
39
|
-
export interface AuthFeature<KindT extends AuthFeatureKind> {
|
|
40
|
-
kind: KindT;
|
|
41
|
-
providers: Provider[];
|
|
42
|
-
}
|
|
43
|
-
export declare enum AuthFeatureKind {
|
|
44
|
-
Microsoft = 0
|
|
45
|
-
}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Router } from '@angular/router';
|
|
3
|
-
import { ConfigService } from '@igo2/core/config';
|
|
4
|
-
import { LanguageService } from '@igo2/core/language';
|
|
5
|
-
import { MessageService } from '@igo2/core/message';
|
|
6
|
-
import { BehaviorSubject, Observable } from 'rxjs';
|
|
7
|
-
import { IInfosUser, User } from './auth.interface';
|
|
8
|
-
import { IgoJwtPayload } from './token.interface';
|
|
9
|
-
import { TokenService } from './token.service';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class AuthService {
|
|
12
|
-
private http;
|
|
13
|
-
private tokenService;
|
|
14
|
-
private config;
|
|
15
|
-
private languageService;
|
|
16
|
-
private messageService;
|
|
17
|
-
private router;
|
|
18
|
-
authenticate$: BehaviorSubject<boolean>;
|
|
19
|
-
logged$: BehaviorSubject<boolean>;
|
|
20
|
-
redirectUrl: string;
|
|
21
|
-
languageForce: boolean;
|
|
22
|
-
private anonymous;
|
|
23
|
-
private authOptions;
|
|
24
|
-
get hasAuthService(): boolean;
|
|
25
|
-
get user(): User | null;
|
|
26
|
-
constructor(http: HttpClient, tokenService: TokenService, config: ConfigService, languageService: LanguageService, messageService: MessageService, router: Router);
|
|
27
|
-
login(username: string, password: string): Observable<void>;
|
|
28
|
-
loginWithToken(token: string, type: string, infosUser?: IInfosUser): Observable<void>;
|
|
29
|
-
loginAnonymous(): Observable<boolean>;
|
|
30
|
-
refresh(): Observable<void>;
|
|
31
|
-
logout(): Observable<boolean>;
|
|
32
|
-
isAuthenticated(): boolean;
|
|
33
|
-
getToken(): string;
|
|
34
|
-
decodeToken(): IgoJwtPayload | null;
|
|
35
|
-
goToRedirectUrl(): void;
|
|
36
|
-
getUserInfo(): Observable<User>;
|
|
37
|
-
getProfils(): Observable<{
|
|
38
|
-
profils: string[];
|
|
39
|
-
}>;
|
|
40
|
-
updateUser(user: User): Observable<User>;
|
|
41
|
-
private encodePassword;
|
|
42
|
-
get logged(): boolean;
|
|
43
|
-
get isAnonymous(): boolean;
|
|
44
|
-
get authenticated(): boolean;
|
|
45
|
-
get isAdmin(): boolean;
|
|
46
|
-
private loginCall;
|
|
47
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, [null, null, null, null, null, { optional: true; }]>;
|
|
48
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
|
|
49
|
-
}
|
package/lib/shared/index.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export * from './token.service';
|
|
2
|
-
export * from './token.interface';
|
|
3
|
-
export * from './auth.service';
|
|
4
|
-
export * from './auth-storage.service';
|
|
5
|
-
export * from './auth-storage.interface';
|
|
6
|
-
export * from './auth.interface';
|
|
7
|
-
export * from './auth.interceptor';
|
|
8
|
-
export * from './logged.guard';
|
|
9
|
-
export * from './auth.guard';
|
|
10
|
-
export * from './admin.guard';
|
|
11
|
-
export * from './profils.guard';
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { ActivatedRouteSnapshot, Router, RouterStateSnapshot } from '@angular/router';
|
|
2
|
-
import { ConfigService } from '@igo2/core/config';
|
|
3
|
-
import { AuthService } from './auth.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class LoggedGuard {
|
|
6
|
-
private authService;
|
|
7
|
-
private config;
|
|
8
|
-
private router;
|
|
9
|
-
constructor(authService: AuthService, config: ConfigService, router: Router);
|
|
10
|
-
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoggedGuard, never>;
|
|
12
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LoggedGuard>;
|
|
13
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { ActivatedRouteSnapshot, Router, RouterStateSnapshot } from '@angular/router';
|
|
2
|
-
import { ConfigService } from '@igo2/core/config';
|
|
3
|
-
import { AuthService } from './auth.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class ProfilsGuard {
|
|
6
|
-
private authService;
|
|
7
|
-
private config;
|
|
8
|
-
private router;
|
|
9
|
-
constructor(authService: AuthService, config: ConfigService, router: Router);
|
|
10
|
-
canActivate(_route: ActivatedRouteSnapshot, state: RouterStateSnapshot): import("rxjs").Observable<boolean>;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProfilsGuard, never>;
|
|
12
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ProfilsGuard>;
|
|
13
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { Injector } from '@angular/core';
|
|
2
|
-
import { IgoJwtPayload } from './token.interface';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class TokenService {
|
|
5
|
-
private injector;
|
|
6
|
-
private options?;
|
|
7
|
-
private tokenKey;
|
|
8
|
-
constructor(injector: Injector);
|
|
9
|
-
set(token: string): void;
|
|
10
|
-
remove(): void;
|
|
11
|
-
get(): string;
|
|
12
|
-
decode(): IgoJwtPayload | null;
|
|
13
|
-
isExpired(): boolean;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TokenService, never>;
|
|
15
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<TokenService>;
|
|
16
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { ApplicationRef, EventEmitter } from '@angular/core';
|
|
2
|
-
import { AuthService } from '@igo2/auth';
|
|
3
|
-
import { IconSvg } from '@igo2/common/icon';
|
|
4
|
-
import { ConfigService } from '@igo2/core/config';
|
|
5
|
-
import { MsalService } from '@azure/msal-angular';
|
|
6
|
-
import { MSPMsalGuardConfiguration } from '../shared/auth-microsoft.interface';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class AuthMicrosoftComponent {
|
|
9
|
-
private authService;
|
|
10
|
-
private config;
|
|
11
|
-
private appRef;
|
|
12
|
-
private msalService;
|
|
13
|
-
private msalGuardConfig;
|
|
14
|
-
private options?;
|
|
15
|
-
private readonly _destroying$;
|
|
16
|
-
login: EventEmitter<boolean>;
|
|
17
|
-
private broadcastService;
|
|
18
|
-
svgIcon: IconSvg;
|
|
19
|
-
constructor(authService: AuthService, config: ConfigService, appRef: ApplicationRef, msalService: MsalService, msalGuardConfig: MSPMsalGuardConfiguration[]);
|
|
20
|
-
loginMicrosoft(): void;
|
|
21
|
-
private checkAccount;
|
|
22
|
-
private getConf;
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuthMicrosoftComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AuthMicrosoftComponent, "igo-auth-microsoft", never, {}, { "login": "login"; }, never, never, true, never>;
|
|
25
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { AuthFeature, AuthFeatureKind } from '@igo2/auth';
|
|
2
|
-
import { ConfigService } from '@igo2/core/config';
|
|
3
|
-
import { PublicClientApplication } from '@azure/msal-browser';
|
|
4
|
-
import { AuthMicrosoftComponent } from './auth-microsoft/auth-microsoft.component';
|
|
5
|
-
import { AuthMicrosoftb2cComponent } from './auth-microsoftb2c/auth-microsoftb2c.component';
|
|
6
|
-
import { MSPMsalGuardConfiguration } from './shared/auth-microsoft.interface';
|
|
7
|
-
export declare const AUTH_MICROSOFT_DIRECTIVES: readonly [typeof AuthMicrosoftComponent, typeof AuthMicrosoftb2cComponent];
|
|
8
|
-
export declare function MSALConfigFactory(config: ConfigService): PublicClientApplication;
|
|
9
|
-
export declare function MSALConfigFactoryb2c(config: ConfigService): PublicClientApplication;
|
|
10
|
-
export declare function MSALAngularConfigFactory(): MSPMsalGuardConfiguration;
|
|
11
|
-
export declare function MSALAngularConfigFactoryb2c(config: ConfigService): MSPMsalGuardConfiguration;
|
|
12
|
-
export declare function withMicrosoftSupport(type?: string): AuthFeature<AuthFeatureKind.Microsoft>;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { ApplicationRef, EventEmitter } from '@angular/core';
|
|
2
|
-
import { AuthService } from '@igo2/auth';
|
|
3
|
-
import { IconSvg } from '@igo2/common/icon';
|
|
4
|
-
import { ConfigService } from '@igo2/core/config';
|
|
5
|
-
import { MSPMsalGuardConfiguration } from '../shared/auth-microsoft.interface';
|
|
6
|
-
import { MsalServiceb2c } from './auth-msalServiceb2c.service';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class AuthMicrosoftb2cComponent {
|
|
9
|
-
private authService;
|
|
10
|
-
private config;
|
|
11
|
-
private appRef;
|
|
12
|
-
private msalService;
|
|
13
|
-
private msalGuardConfig;
|
|
14
|
-
private options;
|
|
15
|
-
private readonly _destroying$;
|
|
16
|
-
login: EventEmitter<boolean>;
|
|
17
|
-
private broadcastService;
|
|
18
|
-
svgIcon: IconSvg;
|
|
19
|
-
constructor(authService: AuthService, config: ConfigService, appRef: ApplicationRef, msalService: MsalServiceb2c, msalGuardConfig: MSPMsalGuardConfiguration[]);
|
|
20
|
-
loginMicrosoftb2c(): void;
|
|
21
|
-
private checkAccount;
|
|
22
|
-
private getConf;
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuthMicrosoftb2cComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AuthMicrosoftb2cComponent, "igo-auth-microsoftb2c", never, {}, { "login": "login"; }, never, never, true, never>;
|
|
25
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { EventMessage, IPublicClientApplication, InteractionStatus } from '@azure/msal-browser';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { MsalServiceb2c } from './auth-msalServiceb2c.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class MsalBroadcastServiceb2c {
|
|
6
|
-
private msalInstance;
|
|
7
|
-
private authService;
|
|
8
|
-
private _msalSubject;
|
|
9
|
-
msalSubject$: Observable<EventMessage>;
|
|
10
|
-
private _inProgress;
|
|
11
|
-
inProgress$: Observable<InteractionStatus>;
|
|
12
|
-
constructor(msalInstance: IPublicClientApplication, authService: MsalServiceb2c);
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MsalBroadcastServiceb2c, never>;
|
|
14
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<MsalBroadcastServiceb2c>;
|
|
15
|
-
}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { Location } from '@angular/common';
|
|
2
|
-
import { IMsalService } from '@azure/msal-angular';
|
|
3
|
-
import { AuthenticationResult, EndSessionPopupRequest, EndSessionRequest, IPublicClientApplication, Logger, PopupRequest, RedirectRequest, SilentRequest, SsoSilentRequest } from '@azure/msal-browser';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class MsalServiceb2c implements IMsalService {
|
|
7
|
-
instance: IPublicClientApplication;
|
|
8
|
-
private location;
|
|
9
|
-
private redirectHash;
|
|
10
|
-
private logger;
|
|
11
|
-
private name;
|
|
12
|
-
private version;
|
|
13
|
-
constructor(instance: IPublicClientApplication, location: Location);
|
|
14
|
-
initialize(): Observable<void>;
|
|
15
|
-
acquireTokenPopup(request: PopupRequest): Observable<AuthenticationResult>;
|
|
16
|
-
acquireTokenRedirect(request: RedirectRequest): Observable<void>;
|
|
17
|
-
acquireTokenSilent(silentRequest: SilentRequest): Observable<AuthenticationResult>;
|
|
18
|
-
handleRedirectObservable(hash?: string): Observable<AuthenticationResult>;
|
|
19
|
-
loginPopup(request?: PopupRequest): Observable<AuthenticationResult>;
|
|
20
|
-
loginRedirect(request?: RedirectRequest): Observable<void>;
|
|
21
|
-
logout(logoutRequest?: EndSessionRequest): Observable<void>;
|
|
22
|
-
logoutRedirect(logoutRequest?: EndSessionRequest): Observable<void>;
|
|
23
|
-
logoutPopup(logoutRequest?: EndSessionPopupRequest): Observable<void>;
|
|
24
|
-
ssoSilent(request: SsoSilentRequest): Observable<AuthenticationResult>;
|
|
25
|
-
/**
|
|
26
|
-
* Gets logger for msal-angular.
|
|
27
|
-
* If no logger set, returns logger instance created with same options as msal-browser
|
|
28
|
-
*/
|
|
29
|
-
getLogger(): Logger;
|
|
30
|
-
setLogger(logger: Logger): void;
|
|
31
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MsalServiceb2c, never>;
|
|
32
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<MsalServiceb2c>;
|
|
33
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import type { MsalGuardConfiguration } from '@azure/msal-angular';
|
|
2
|
-
import type { BrowserAuthOptions } from '@azure/msal-browser';
|
|
3
|
-
export interface AuthMicrosoftOptions extends BrowserAuthOptions {
|
|
4
|
-
enabled?: boolean;
|
|
5
|
-
}
|
|
6
|
-
export interface AuthMicrosoftb2cOptions {
|
|
7
|
-
enabled?: boolean;
|
|
8
|
-
browserAuthOptions?: BrowserAuthOptions;
|
|
9
|
-
options?: AuthMicrosoftb2cOptionsOptions;
|
|
10
|
-
scopes?: string[];
|
|
11
|
-
}
|
|
12
|
-
export interface AuthMicrosoftb2cOptionsOptions {
|
|
13
|
-
names: AuthMicrosoftb2cOptionsNames;
|
|
14
|
-
authorities: AuthMicrosoftb2cOptionsAuthorities;
|
|
15
|
-
authorityDomain: string[];
|
|
16
|
-
}
|
|
17
|
-
export interface AuthMicrosoftb2cOptionsNames {
|
|
18
|
-
signUpSignIn: string;
|
|
19
|
-
forgotPassword: string;
|
|
20
|
-
editProfile: string;
|
|
21
|
-
}
|
|
22
|
-
export interface AuthMicrosoftb2cOptionsAuthorities {
|
|
23
|
-
signUpSignIn: AuthMicrosoftb2cOptionsAuthority;
|
|
24
|
-
forgotPassword: AuthMicrosoftb2cOptionsAuthority;
|
|
25
|
-
editProfile: AuthMicrosoftb2cOptionsAuthority;
|
|
26
|
-
}
|
|
27
|
-
export interface AuthMicrosoftb2cOptionsAuthority {
|
|
28
|
-
authority: string;
|
|
29
|
-
}
|
|
30
|
-
export interface MSPMsalGuardConfiguration extends MsalGuardConfiguration {
|
|
31
|
-
type: string;
|
|
32
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './auth-microsoft.interface';
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { Injector } from '@angular/core';
|
|
2
|
-
import { AuthService } from '@igo2/auth';
|
|
3
|
-
import { ConfigService } from '@igo2/core/config';
|
|
4
|
-
import { AnyMonitoringOptions } from '@igo2/core/monitoring';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class AuthMonitoringService {
|
|
7
|
-
private configService;
|
|
8
|
-
private monitoringOptions;
|
|
9
|
-
private injector;
|
|
10
|
-
authService?: AuthService;
|
|
11
|
-
constructor(configService: ConfigService, monitoringOptions: AnyMonitoringOptions | null, injector: Injector);
|
|
12
|
-
private _identifyUser;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuthMonitoringService, [null, { optional: true; }, null]>;
|
|
14
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<AuthMonitoringService>;
|
|
15
|
-
}
|
package/public_api.d.ts
DELETED