@bnsights/bbsf-admin-portal 1.1.39 → 1.1.41
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/README.md +16 -3
- package/esm2022/lib/Pages/authentication/auth-callback/auth-callback.component.mjs +30 -7
- package/esm2022/lib/Pages/authentication/authentication.component.mjs +12 -7
- package/esm2022/lib/Pages/shared/Services/AccountService.service.mjs +1 -1
- package/esm2022/lib/Pages/shared/models/UserModels/IdentityModel.mjs +8 -1
- package/fesm2022/bnsights-bbsf-admin-portal.mjs +38 -11
- package/fesm2022/bnsights-bbsf-admin-portal.mjs.map +1 -1
- package/lib/Pages/authentication/authentication.component.d.ts +4 -1
- package/lib/Pages/shared/Services/AccountService.service.d.ts +2 -1
- package/lib/Pages/shared/models/UserModels/IdentityModel.d.ts +5 -0
- package/package.json +3 -3
- package/bnsights-bbsf-admin-portal-1.1.39.tgz +0 -0
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import { AppearanceConfigurationService } from '@bnsights/bbsf-utilities';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class AuthenticationComponent implements OnInit {
|
|
4
|
-
|
|
5
|
+
private appearanceConfigurationService;
|
|
6
|
+
logo: string;
|
|
7
|
+
constructor(appearanceConfigurationService: AppearanceConfigurationService);
|
|
5
8
|
ngOnInit(): void;
|
|
6
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticationComponent, never>;
|
|
7
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<AuthenticationComponent, "app-authentication", never, {}, {}, never, never, false, never>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { RequestHandlerService } from "@bnsights/bbsf-utilities";
|
|
2
2
|
import { LicenseModel } from "../models/LicenseModel/LicenseModel";
|
|
3
3
|
import { ActivationModel } from "../models/UserModels/ActivationModel";
|
|
4
|
+
import { UAEPassLoginResultModel } from "../models/UserModels/IdentityModel";
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class AccountService {
|
|
6
7
|
private http;
|
|
@@ -15,7 +16,7 @@ export declare class AccountService {
|
|
|
15
16
|
uploadLicense(File: LicenseModel): import("rxjs").Observable<unknown>;
|
|
16
17
|
UpdateLanguageCookieAnonymous(langKey: string): import("rxjs").Observable<unknown>;
|
|
17
18
|
login(model: any): import("rxjs").Observable<unknown>;
|
|
18
|
-
UAEPassLogin(model: any): import("rxjs").Observable<
|
|
19
|
+
UAEPassLogin(model: any): import("rxjs").Observable<UAEPassLoginResultModel>;
|
|
19
20
|
loginWithWindowsAuthentication(): import("rxjs").Observable<unknown>;
|
|
20
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<AccountService, never>;
|
|
21
22
|
static ɵprov: i0.ɵɵInjectableDeclaration<AccountService>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bnsights/bbsf-admin-portal",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.41",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/animations": "^17.0.5",
|
|
6
6
|
"@angular/cdk": "^17.0.2",
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"@angular/router": "^17.0.5"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@bnsights/bbsf-utilities": "^1.0.
|
|
16
|
-
"@bnsights/bbsf-controls": "^1.0.
|
|
15
|
+
"@bnsights/bbsf-utilities": "^1.0.55",
|
|
16
|
+
"@bnsights/bbsf-controls": "^1.0.142",
|
|
17
17
|
"@amcharts/amcharts5": "^5.6.2",
|
|
18
18
|
"@fortawesome/fontawesome-free": "^5.15.2",
|
|
19
19
|
"@kronscht/ng-wizard": "^1.4.3",
|
|
Binary file
|