@annalib/anna-cognito-lib 2.2.4 → 2.2.5
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/esm2020/lib/components/duo-sso-login/duo-sso-login.component.mjs +1 -4
- package/esm2020/lib/config/auth-service.token.mjs +1 -1
- package/esm2020/lib/constants/loginConstant.mjs +2 -1
- package/esm2020/lib/services/auth.service.mjs +2 -4
- package/fesm2015/annalib-anna-cognito-lib.mjs +2 -6
- package/fesm2015/annalib-anna-cognito-lib.mjs.map +1 -1
- package/fesm2020/annalib-anna-cognito-lib.mjs +2 -6
- package/fesm2020/annalib-anna-cognito-lib.mjs.map +1 -1
- package/lib/components/duo-sso-login/duo-sso-login.component.d.ts +0 -1
- package/lib/config/auth-service.token.d.ts +0 -1
- package/lib/constants/loginConstant.d.ts +1 -0
- package/lib/services/auth.service.d.ts +0 -1
- package/package.json +1 -2
|
@@ -9,7 +9,6 @@ export declare class DuoSsoLoginComponent {
|
|
|
9
9
|
constructor(authService: AnnaLibAuthService, consumingProjectConfigService: IConfigService);
|
|
10
10
|
ngOnInit(): void;
|
|
11
11
|
signInWithSSO(): void;
|
|
12
|
-
signInWithCognito(): void;
|
|
13
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<DuoSsoLoginComponent, never>;
|
|
14
13
|
static ɵcmp: i0.ɵɵComponentDeclaration<DuoSsoLoginComponent, "anna-cognito-lib-duo-sso-login", never, {}, {}, never, never, false, never>;
|
|
15
14
|
}
|
|
@@ -39,6 +39,7 @@ export declare class LoginConstant {
|
|
|
39
39
|
static readonly forgortPasswordPageUrl = "/forgot-password";
|
|
40
40
|
static readonly verifyAndSetNewPasswordUrl = "/verify-and-set-new-password";
|
|
41
41
|
static readonly loginPageUrl = "/login";
|
|
42
|
+
static readonly coPilotloginPageUrl = "/co-pilot-login";
|
|
42
43
|
static readonly welcomeScrreenUrl = "/welcome-screen";
|
|
43
44
|
static readonly homePageUrl = "/dashboard";
|
|
44
45
|
static readonly stationSettingUrl = "/station-settings";
|
|
@@ -41,7 +41,6 @@ export declare class AnnaLibAuthService {
|
|
|
41
41
|
verifyCode(confirmationCode: string, newPassword: string): Promise<void>;
|
|
42
42
|
forgotPasswordError(err: any, noOfAttempts: number): string;
|
|
43
43
|
signInWithDuo(): void;
|
|
44
|
-
signInWithCognito(): void;
|
|
45
44
|
handleSignOut(): Promise<void>;
|
|
46
45
|
expiryAllExistingCurrentSession(username: string, newPassword: string): void;
|
|
47
46
|
setUserDetails(): void;
|
package/package.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@annalib/anna-cognito-lib",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.5",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^15.2.9",
|
|
6
6
|
"@angular/core": "^15.2.9",
|
|
7
7
|
"@mdi/font": "^5.9.55",
|
|
8
8
|
"@ng-bootstrap/ng-bootstrap": "^14.1.1",
|
|
9
9
|
"@types/node": "^12.11.1",
|
|
10
|
-
"@aws-amplify/ui-angular": "^5.0.2",
|
|
11
10
|
"aws-amplify": "^6.0.4",
|
|
12
11
|
"bootstrap": "^5.2.3",
|
|
13
12
|
"ngx-toastr": "^15.2.2"
|