@osovitny/anatoly 3.16.29 → 3.16.31
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/esm2022/lib/iam/iam-pages.module.mjs +5 -1
- package/esm2022/lib/iam/iam.module.mjs +16 -10
- package/fesm2022/osovitny-anatoly.mjs +16 -8
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/iam/iam-pages.module.d.ts +3 -3
- package/lib/iam/iam-pages.routes.d.ts +1 -1
- package/lib/iam/iam.module.d.ts +4 -28
- package/package.json +1 -1
|
@@ -3,10 +3,10 @@ import * as i1 from "./pages/signin.page";
|
|
|
3
3
|
import * as i2 from "./pages/signup.page";
|
|
4
4
|
import * as i3 from "./pages/signout.page";
|
|
5
5
|
import * as i4 from "@angular/common";
|
|
6
|
-
import * as i5 from "@angular/
|
|
7
|
-
import * as i6 from "@angular/
|
|
6
|
+
import * as i5 from "@angular/router";
|
|
7
|
+
import * as i6 from "@angular/common/http";
|
|
8
8
|
export declare class AnatolyIAMPagesModule {
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnatolyIAMPagesModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AnatolyIAMPagesModule, [typeof i1.SignInPage, typeof i2.SignUpPage, typeof i3.SignOutPage], [typeof i4.CommonModule, typeof i5.
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AnatolyIAMPagesModule, [typeof i1.SignInPage, typeof i2.SignUpPage, typeof i3.SignOutPage], [typeof i4.CommonModule, typeof i5.RouterModule, typeof i6.HttpClientModule, typeof i5.RouterModule], never>;
|
|
11
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<AnatolyIAMPagesModule>;
|
|
12
12
|
}
|
|
@@ -3,4 +3,4 @@ import { SignInPage } from "./pages/signin.page";
|
|
|
3
3
|
import { SignOutPage } from "./pages/signout.page";
|
|
4
4
|
import { SignUpPage } from "./pages/signup.page";
|
|
5
5
|
export declare const IAMRouterModule: import("@angular/core").ModuleWithProviders<RouterModule>;
|
|
6
|
-
export declare const PAGES: (typeof
|
|
6
|
+
export declare const PAGES: (typeof SignInPage | typeof SignOutPage | typeof SignUpPage)[];
|
package/lib/iam/iam.module.d.ts
CHANGED
|
@@ -1,34 +1,10 @@
|
|
|
1
|
-
import { MsalBroadcastService, MsalInterceptor, MsalService } from '@azure/msal-angular';
|
|
2
|
-
import { MSALGuardConfigFactory, MSALInstanceFactory, MSALInterceptorConfigFactory } from './configs';
|
|
3
|
-
import { AuthenticationGuard, AdminGuard } from './guards';
|
|
4
|
-
import { AuthService } from './services/auth.service';
|
|
5
1
|
import * as i0 from "@angular/core";
|
|
6
2
|
import * as i1 from "@angular/common";
|
|
7
|
-
import * as i2 from "@angular/
|
|
8
|
-
import * as i3 from "@
|
|
9
|
-
|
|
10
|
-
provide: import("@angular/core").InjectionToken<import("@angular/common/http").HttpInterceptor[]>;
|
|
11
|
-
useClass: typeof MsalInterceptor;
|
|
12
|
-
multi: boolean;
|
|
13
|
-
useFactory?: undefined;
|
|
14
|
-
} | {
|
|
15
|
-
provide: import("@angular/core").InjectionToken<string>;
|
|
16
|
-
useFactory: typeof MSALInterceptorConfigFactory;
|
|
17
|
-
useClass?: undefined;
|
|
18
|
-
multi?: undefined;
|
|
19
|
-
} | {
|
|
20
|
-
provide: import("@angular/core").InjectionToken<string>;
|
|
21
|
-
useFactory: typeof MSALGuardConfigFactory;
|
|
22
|
-
useClass?: undefined;
|
|
23
|
-
multi?: undefined;
|
|
24
|
-
} | {
|
|
25
|
-
provide: import("@angular/core").InjectionToken<string>;
|
|
26
|
-
useFactory: typeof MSALInstanceFactory;
|
|
27
|
-
useClass?: undefined;
|
|
28
|
-
multi?: undefined;
|
|
29
|
-
})[];
|
|
3
|
+
import * as i2 from "@angular/router";
|
|
4
|
+
import * as i3 from "@angular/common/http";
|
|
5
|
+
import * as i4 from "@azure/msal-angular";
|
|
30
6
|
export declare class AnatolyIAMModule {
|
|
31
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnatolyIAMModule, never>;
|
|
32
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AnatolyIAMModule, never, [typeof i1.CommonModule, typeof i2.
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AnatolyIAMModule, never, [typeof i1.CommonModule, typeof i2.RouterModule, typeof i3.HttpClientModule, typeof i4.MsalModule], never>;
|
|
33
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<AnatolyIAMModule>;
|
|
34
10
|
}
|