@bnsights/bbsf-admin-portal 1.0.4 → 1.0.8
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/bnsights-bbsf-admin-portal-1.0.8.tgz +0 -0
- package/bundles/bnsights-bbsf-admin-portal.umd.js +8335 -3660
- package/bundles/bnsights-bbsf-admin-portal.umd.js.map +1 -1
- package/esm2015/lib/Pages/ActiveDirectories/active-directory-add/active-directory-add.component.js +2 -2
- package/esm2015/lib/Pages/account/account-routing.module.js +9 -1
- package/esm2015/lib/Pages/account/account.component.js +15 -6
- package/esm2015/lib/Pages/account/account.module.js +19 -8
- package/esm2015/lib/Pages/account/activation/activation.component.js +91 -0
- package/esm2015/lib/Pages/account/forgot-password/forgot-password.component.js +54 -0
- package/esm2015/lib/Pages/account/rest-password/rest-password.component.js +89 -0
- package/esm2015/lib/Pages/account/upload-license/upload-license.component.js +70 -0
- package/esm2015/lib/Pages/configurations/configuration/configuration.component.js +203 -184
- package/esm2015/lib/Pages/core/authentication/auth.guard.js +10 -4
- package/esm2015/lib/Pages/core/authentication/auth.service.js +1 -2
- package/esm2015/lib/Pages/departments/department/department.component.js +12 -9
- package/esm2015/lib/Pages/departments/department-info/department-info.component.js +1 -1
- package/esm2015/lib/Pages/departments/departments.module.js +6 -4
- package/esm2015/lib/Pages/helpCenter/help-center/help-center.component.js +9 -9
- package/esm2015/lib/Pages/helpCenter/help-center-secondlevel/help-center-secondlevel.component.js +9 -9
- package/esm2015/lib/Pages/helpCenter/help-center-thirdlevel/help-center-thirdlevel.component.js +9 -9
- package/esm2015/lib/Pages/home/home.component.js +2 -2
- package/esm2015/lib/Pages/impersonation-rules/impersonation-rules/impersonation-rules.component.js +1 -1
- package/esm2015/lib/Pages/jobs/jobs/jobs.component.js +1 -1
- package/esm2015/lib/Pages/localizations/localizations.component.js +10 -11
- package/esm2015/lib/Pages/lookups/lookup/lookup.component.js +10 -10
- package/esm2015/lib/Pages/lookups/lookup-group/lookup-group.component.js +5 -5
- package/esm2015/lib/Pages/lookups/lookup-item/lookup-item.component.js +5 -5
- package/esm2015/lib/Pages/notifications/add/add.component.js +11 -13
- package/esm2015/lib/Pages/notifications/edit/edit.component.js +11 -13
- package/esm2015/lib/Pages/notifications/master-layouts/master-layouts.component.js +1 -1
- package/esm2015/lib/Pages/notifications/template-info/template-info.component.js +5 -5
- package/esm2015/lib/Pages/notifications/templates/templates.component.js +9 -9
- package/esm2015/lib/Pages/providers/provider/provider.component.js +2 -1
- package/esm2015/lib/Pages/publicHolidays/public-holiday/public-holiday.component.js +78 -84
- package/esm2015/lib/Pages/roles/permission-set-info/permission-set-info.component.js +1 -1
- package/esm2015/lib/Pages/roles/permissions/permissions.component.js +5 -5
- package/esm2015/lib/Pages/roles/permissionsets/permissionsets.component.js +5 -5
- package/esm2015/lib/Pages/sectors/department-info/department-info.component.js +1 -1
- package/esm2015/lib/Pages/sectors/sector/sector.component.js +5 -5
- package/esm2015/lib/Pages/sectors/sector-info/sector-info.component.js +1 -1
- package/esm2015/lib/Pages/shared/Enums/ConditionRHSType.js +6 -0
- package/esm2015/lib/Pages/shared/Enums/ConfigurationScope.js +8 -0
- package/esm2015/lib/Pages/shared/Enums/ConfigurationType.js +8 -0
- package/esm2015/lib/Pages/shared/Enums/ConfigurationValueSource.js +6 -0
- package/esm2015/lib/Pages/shared/Enums/WFActivityType.js +12 -0
- package/esm2015/lib/Pages/shared/Enums/WFVariableDataType.js +14 -0
- package/esm2015/lib/Pages/shared/Services/AccountService.service.js +41 -0
- package/esm2015/lib/Pages/shared/Services/DepartmentService.service.js +1 -1
- package/esm2015/lib/Pages/shared/Services/WorkFlowVersionService.service.js +24 -0
- package/esm2015/lib/Pages/shared/Services/WorkflowActivityService.service.js +32 -5
- package/esm2015/lib/Pages/shared/Services/WorkflowInstanceService.service.js +24 -0
- package/esm2015/lib/Pages/shared/Services/WorkflowLogVariablesService.service.js +24 -0
- package/esm2015/lib/Pages/shared/Services/WorkflowService.service.js +12 -4
- package/esm2015/lib/Pages/shared/Services/WorkflowVariablesService.service.js +12 -6
- package/esm2015/lib/Pages/shared/models/AccountModels/forgotPasswordModel.js +6 -0
- package/esm2015/lib/Pages/shared/models/DepartmentModels/DepartmentModel.js +3 -2
- package/esm2015/lib/Pages/shared/models/UserModels/ActivationModel.js +3 -0
- package/esm2015/lib/Pages/shared/models/WorkflowModels/WFActivityVariablesModel.js +8 -0
- package/esm2015/lib/Pages/users/users.component.js +7 -6
- package/esm2015/lib/Pages/workflows/activity/workflow-activity-add/workflow-activity-add.component.js +535 -0
- package/esm2015/lib/Pages/workflows/activity/workflow-activity-edit/workflow-activity-edit.component.js +852 -0
- package/esm2015/lib/Pages/workflows/instance-info/instance-info.component.js +309 -0
- package/esm2015/lib/Pages/workflows/tabs/tabs.component.js +611 -430
- package/esm2015/lib/Pages/workflows/version-info/version-info.component.js +143 -0
- package/esm2015/lib/Pages/workflows/workflow/workflow.component.js +136 -148
- package/esm2015/lib/Pages/workflows/workflows-routing.module.js +9 -1
- package/esm2015/lib/Pages/workflows/workflows.module.js +7 -3
- package/esm2015/lib/masterlayout.component.js +1 -2
- package/esm2015/lib/masterlayout.module.js +2 -4
- package/esm2015/public-api.js +2 -1
- package/fesm2015/bnsights-bbsf-admin-portal.js +7678 -3098
- package/fesm2015/bnsights-bbsf-admin-portal.js.map +1 -1
- package/lib/Pages/account/account.component.d.ts +5 -1
- package/lib/Pages/account/account.module.d.ts +11 -6
- package/lib/Pages/account/activation/activation.component.d.ts +32 -0
- package/lib/Pages/account/forgot-password/forgot-password.component.d.ts +23 -0
- package/lib/Pages/account/rest-password/rest-password.component.d.ts +32 -0
- package/lib/Pages/account/upload-license/upload-license.component.d.ts +25 -0
- package/lib/Pages/configurations/configuration/configuration.component.d.ts +12 -8
- package/lib/Pages/core/authentication/auth.guard.d.ts +1 -0
- package/lib/Pages/departments/department/department.component.d.ts +3 -2
- package/lib/Pages/departments/department-info/department-info.component.d.ts +1 -1
- package/lib/Pages/helpCenter/help-center/help-center.component.d.ts +1 -1
- package/lib/Pages/helpCenter/help-center-secondlevel/help-center-secondlevel.component.d.ts +1 -1
- package/lib/Pages/helpCenter/help-center-thirdlevel/help-center-thirdlevel.component.d.ts +1 -1
- package/lib/Pages/impersonation-rules/impersonation-rules/impersonation-rules.component.d.ts +1 -1
- package/lib/Pages/jobs/jobs/jobs.component.d.ts +6 -6
- package/lib/Pages/localizations/localizations.component.d.ts +1 -1
- package/lib/Pages/lookups/lookup/lookup.component.d.ts +1 -1
- package/lib/Pages/lookups/lookup-group/lookup-group.component.d.ts +1 -1
- package/lib/Pages/lookups/lookup-item/lookup-item.component.d.ts +1 -1
- package/lib/Pages/notifications/master-layouts/master-layouts.component.d.ts +1 -1
- package/lib/Pages/notifications/templates/templates.component.d.ts +1 -1
- package/lib/Pages/providers/provider/provider.component.d.ts +1 -1
- package/lib/Pages/publicHolidays/public-holiday/public-holiday.component.d.ts +12 -15
- package/lib/Pages/roles/permission-set-info/permission-set-info.component.d.ts +1 -1
- package/lib/Pages/roles/permissions/permissions.component.d.ts +1 -1
- package/lib/Pages/roles/permissionsets/permissionsets.component.d.ts +1 -1
- package/lib/Pages/sectors/department-info/department-info.component.d.ts +1 -1
- package/lib/Pages/sectors/sector/sector.component.d.ts +1 -1
- package/lib/Pages/sectors/sector-info/sector-info.component.d.ts +1 -1
- package/lib/Pages/shared/Enums/ConditionRHSType.d.ts +4 -0
- package/lib/Pages/shared/Enums/ConfigurationScope.d.ts +5 -0
- package/lib/Pages/shared/Enums/ConfigurationType.d.ts +6 -0
- package/lib/Pages/shared/Enums/ConfigurationValueSource.d.ts +4 -0
- package/lib/Pages/shared/Enums/WFActivityType.d.ts +10 -0
- package/lib/Pages/shared/Enums/WFVariableDataType.d.ts +12 -0
- package/lib/Pages/shared/Services/AccountService.service.d.ts +17 -0
- package/lib/Pages/shared/Services/ActiveDirectoryService.service.d.ts +8 -8
- package/lib/Pages/shared/Services/ConfigurationsService.service.d.ts +7 -7
- package/lib/Pages/shared/Services/DepartmentService.service.d.ts +7 -7
- package/lib/Pages/shared/Services/EmailHeaderAndFooterTemplateService.Service.d.ts +5 -5
- package/lib/Pages/shared/Services/HelpCenterService.service.d.ts +8 -8
- package/lib/Pages/shared/Services/ImpersonationRuleService.service.d.ts +5 -5
- package/lib/Pages/shared/Services/JobsService.service.d.ts +1 -1
- package/lib/Pages/shared/Services/LicenseService.service.d.ts +2 -2
- package/lib/Pages/shared/Services/LogsService.d.ts +1 -1
- package/lib/Pages/shared/Services/LookupGroupsService.service.d.ts +4 -4
- package/lib/Pages/shared/Services/LookupService.service.d.ts +14 -14
- package/lib/Pages/shared/Services/PermissionSetService.service.d.ts +8 -8
- package/lib/Pages/shared/Services/PermissionsService.service.d.ts +5 -5
- package/lib/Pages/shared/Services/PublicHolidayService.service.d.ts +6 -6
- package/lib/Pages/shared/Services/SectorService.service.d.ts +7 -7
- package/lib/Pages/shared/Services/TemplateService.service.d.ts +20 -20
- package/lib/Pages/shared/Services/WorkFlowVersionService.service.d.ts +10 -0
- package/lib/Pages/shared/Services/WorkflowActivityService.service.d.ts +9 -3
- package/lib/Pages/shared/Services/WorkflowInstanceService.service.d.ts +10 -0
- package/lib/Pages/shared/Services/WorkflowLogVariablesService.service.d.ts +10 -0
- package/lib/Pages/shared/Services/WorkflowService.service.d.ts +5 -3
- package/lib/Pages/shared/Services/WorkflowVariablesService.service.d.ts +5 -4
- package/lib/Pages/shared/Services/localizationsService.service .d.ts +12 -12
- package/lib/Pages/shared/Services/provider.service.d.ts +10 -10
- package/lib/Pages/shared/Services/userService.service.d.ts +14 -14
- package/lib/Pages/shared/models/AccountModels/forgotPasswordModel.d.ts +3 -0
- package/lib/Pages/shared/models/DepartmentModels/DepartmentModel.d.ts +9 -8
- package/lib/Pages/shared/models/UserModels/ActivationModel.d.ts +10 -0
- package/lib/Pages/shared/models/WorkflowModels/WFActivityVariablesModel.d.ts +13 -0
- package/lib/Pages/users/users.component.d.ts +1 -1
- package/lib/Pages/workflows/activity/workflow-activity-add/workflow-activity-add.component.d.ts +77 -0
- package/lib/Pages/workflows/activity/workflow-activity-edit/workflow-activity-edit.component.d.ts +83 -0
- package/lib/Pages/workflows/instance-info/instance-info.component.d.ts +81 -0
- package/lib/Pages/workflows/tabs/tabs.component.d.ts +73 -80
- package/lib/Pages/workflows/version-info/version-info.component.d.ts +41 -0
- package/lib/Pages/workflows/workflow/workflow.component.d.ts +26 -29
- package/lib/Pages/workflows/workflows.module.d.ts +19 -15
- package/package.json +5 -3
- package/public-api.d.ts +1 -0
- package/src/lib/assets/sass/core/components/_variables.scss +1 -1
- package/src/lib/assets/sass/custom-styles-rtl.scss +5 -0
- package/src/lib/assets/sass/custom-styles.scss +38 -0
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import { StylesBundleService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class AccountComponent implements OnInit {
|
|
4
|
-
|
|
5
|
+
private utilityService;
|
|
6
|
+
private stylesBundleService;
|
|
7
|
+
constructor(utilityService: UtilityService, stylesBundleService: StylesBundleService);
|
|
5
8
|
ngOnInit(): void;
|
|
9
|
+
loadUI(): void;
|
|
6
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<AccountComponent, never>;
|
|
7
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<AccountComponent, "app-account", never, {}, {}, never, never>;
|
|
8
12
|
}
|
|
@@ -2,13 +2,18 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./login/login.component";
|
|
3
3
|
import * as i2 from "./register/register.component";
|
|
4
4
|
import * as i3 from "./account.component";
|
|
5
|
-
import * as i4 from "
|
|
6
|
-
import * as i5 from "
|
|
7
|
-
import * as i6 from "./
|
|
8
|
-
import * as i7 from "
|
|
9
|
-
import * as i8 from "@angular/
|
|
5
|
+
import * as i4 from "./forgot-password/forgot-password.component";
|
|
6
|
+
import * as i5 from "./rest-password/rest-password.component";
|
|
7
|
+
import * as i6 from "./activation/activation.component";
|
|
8
|
+
import * as i7 from "./upload-license/upload-license.component";
|
|
9
|
+
import * as i8 from "@angular/common";
|
|
10
|
+
import * as i9 from "@angular/router";
|
|
11
|
+
import * as i10 from "./account-routing.module";
|
|
12
|
+
import * as i11 from "../shared/shared.module";
|
|
13
|
+
import * as i12 from "@angular/forms";
|
|
14
|
+
import * as i13 from "@bnsights/bbsf-controls";
|
|
10
15
|
export declare class AccountModule {
|
|
11
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<AccountModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AccountModule, [typeof i1.LoginComponent, typeof i2.RegisterComponent, typeof i3.AccountComponent], [typeof
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AccountModule, [typeof i1.LoginComponent, typeof i2.RegisterComponent, typeof i3.AccountComponent, typeof i4.ForgotPasswordComponent, typeof i5.RestPasswordComponent, typeof i6.ActivationComponent, typeof i7.UploadLicenseComponent], [typeof i8.CommonModule, typeof i9.RouterModule, typeof i10.AccountRoutingModule, typeof i11.SharedModule, typeof i12.FormsModule, typeof i12.ReactiveFormsModule, typeof i13.BBSFControlsModule], never>;
|
|
13
18
|
static ɵinj: i0.ɵɵInjectorDeclaration<AccountModule>;
|
|
14
19
|
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
+
import { CustomValidation, FormOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
5
|
+
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
|
+
import { Observable } from 'rxjs';
|
|
7
|
+
import { ActivationModel } from '../../shared/models/UserModels/ActivationModel';
|
|
8
|
+
import { AccountService } from '../../shared/Services/AccountService.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class ActivationComponent implements OnInit {
|
|
11
|
+
private activatedRoute;
|
|
12
|
+
private accountService;
|
|
13
|
+
utilityService: UtilityService;
|
|
14
|
+
private router;
|
|
15
|
+
Token: string;
|
|
16
|
+
ActivationModel: ActivationModel;
|
|
17
|
+
ErrorMessage: string;
|
|
18
|
+
UserName: string;
|
|
19
|
+
activateForm: FormGroup;
|
|
20
|
+
activateFormOptions: FormOptions;
|
|
21
|
+
password: TextBoxOptions;
|
|
22
|
+
confirmPassword: TextBoxOptions;
|
|
23
|
+
customValidation: CustomValidation;
|
|
24
|
+
isModelLoaded: boolean;
|
|
25
|
+
constructor(activatedRoute: ActivatedRoute, accountService: AccountService, utilityService: UtilityService, router: Router);
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
getActivateModel: () => any[];
|
|
28
|
+
getActivateFunction: (model: any) => Observable<any>;
|
|
29
|
+
onSuccessHandler: (result: any) => void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActivationComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActivationComponent, "lib-activation", never, {}, {}, never, never>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import { FormOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
5
|
+
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
|
+
import { Observable } from 'rxjs';
|
|
7
|
+
import { AccountService } from '../../shared/Services/AccountService.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class ForgotPasswordComponent implements OnInit {
|
|
10
|
+
utilityService: UtilityService;
|
|
11
|
+
private accountService;
|
|
12
|
+
private router;
|
|
13
|
+
forgotForm: FormGroup;
|
|
14
|
+
forgotFormOptions: FormOptions;
|
|
15
|
+
email: TextBoxOptions;
|
|
16
|
+
constructor(utilityService: UtilityService, accountService: AccountService, router: Router);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
getForgotModel: () => any[];
|
|
19
|
+
getForgotFunction: (email: any) => Observable<any>;
|
|
20
|
+
onSuccessHandler: (result: any) => void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ForgotPasswordComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ForgotPasswordComponent, "lib-forgot-password", never, {}, {}, never, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import { ActivatedRoute } from '@angular/router';
|
|
5
|
+
import { CustomValidation, FormOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
6
|
+
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
7
|
+
import { Observable } from 'rxjs';
|
|
8
|
+
import { ActivationModel } from '../../shared/models/UserModels/ActivationModel';
|
|
9
|
+
import { AccountService } from '../../shared/Services/AccountService.service';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class RestPasswordComponent implements OnInit {
|
|
12
|
+
private activatedRoute;
|
|
13
|
+
private accountService;
|
|
14
|
+
utilityService: UtilityService;
|
|
15
|
+
private router;
|
|
16
|
+
Token: string;
|
|
17
|
+
ActivationModel: ActivationModel;
|
|
18
|
+
ErrorMessage: string;
|
|
19
|
+
restForm: FormGroup;
|
|
20
|
+
restFormOptions: FormOptions;
|
|
21
|
+
password: TextBoxOptions;
|
|
22
|
+
confirmPassword: TextBoxOptions;
|
|
23
|
+
customValidation: CustomValidation;
|
|
24
|
+
isModelLoaded: boolean;
|
|
25
|
+
constructor(activatedRoute: ActivatedRoute, accountService: AccountService, utilityService: UtilityService, router: Router);
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
getRestModel: () => any[];
|
|
28
|
+
getRestFunction: (model: any) => Observable<any>;
|
|
29
|
+
onSuccessHandler: (result: any) => void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RestPasswordComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RestPasswordComponent, "lib-rest-password", never, {}, {}, never, never>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import { FileUploadOptions, FormOptions } from '@bnsights/bbsf-controls';
|
|
5
|
+
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
|
+
import { Observable } from 'rxjs';
|
|
7
|
+
import { AccountService } from '../../shared/Services/AccountService.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class UploadLicenseComponent implements OnInit {
|
|
10
|
+
private accountService;
|
|
11
|
+
utilityService: UtilityService;
|
|
12
|
+
private router;
|
|
13
|
+
ErrorMessage: string;
|
|
14
|
+
uploadFileForm: FormGroup;
|
|
15
|
+
uploadFileFormOptions: FormOptions;
|
|
16
|
+
licenseFileInput: FileUploadOptions;
|
|
17
|
+
constructor(accountService: AccountService, utilityService: UtilityService, router: Router);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
getAddLicenseModel: () => any[];
|
|
20
|
+
getAddLicenseFunction: (Model: any) => Observable<any>;
|
|
21
|
+
onSuccessHandler: (result: any) => void;
|
|
22
|
+
onErrorHandler: (err: any) => void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UploadLicenseComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UploadLicenseComponent, "lib-upload-license", never, {}, {}, never, never>;
|
|
25
|
+
}
|
|
@@ -28,7 +28,7 @@ export declare class ConfigurationComponent implements OnInit {
|
|
|
28
28
|
clientSidePagingResult: any[];
|
|
29
29
|
ConfigurationPaging: PagingOptions;
|
|
30
30
|
IsFilterLoaded: boolean;
|
|
31
|
-
pagingElement: PagingComponent
|
|
31
|
+
pagingElement: PagingComponent<any>;
|
|
32
32
|
ScopesList: any[];
|
|
33
33
|
PermissionList: any[];
|
|
34
34
|
UsersList: any[];
|
|
@@ -45,6 +45,8 @@ export declare class ConfigurationComponent implements OnInit {
|
|
|
45
45
|
ShowDropDownSource: boolean;
|
|
46
46
|
ShowLookupItemsList: boolean;
|
|
47
47
|
ShowSourceFunctionData: boolean;
|
|
48
|
+
showFunctionNotFoundError: boolean;
|
|
49
|
+
sourceFunctionDataNotLoaded: boolean;
|
|
48
50
|
AddConfigurationForm: FormGroup;
|
|
49
51
|
AddConfigurationFormOptions: FormOptions;
|
|
50
52
|
Key: TextBoxOptions;
|
|
@@ -84,9 +86,9 @@ export declare class ConfigurationComponent implements OnInit {
|
|
|
84
86
|
EditSourceFuncDefaultValue: DropdownOptions;
|
|
85
87
|
ConfigurationId: number;
|
|
86
88
|
ConfigurationValueType: number;
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
89
|
+
EditConfigurationScopeID: number;
|
|
90
|
+
EditConfigurationTypeID: number;
|
|
91
|
+
EditConfigurationDDLSourceID: number;
|
|
90
92
|
deleteConfigurationId: string;
|
|
91
93
|
DeleteConfirmationOptions: ConfirmationModalOptions;
|
|
92
94
|
deleteControlLoaded: boolean;
|
|
@@ -97,18 +99,20 @@ export declare class ConfigurationComponent implements OnInit {
|
|
|
97
99
|
setConfigurationListResult(result: any): void;
|
|
98
100
|
searchClientSide(searchValue: any): void;
|
|
99
101
|
showAddConfigurationModal(AddConfigurationModal: any): void;
|
|
102
|
+
ChangeTypeValue(key: any): void;
|
|
103
|
+
ChangeSource(key: any): void;
|
|
104
|
+
removeFormControls(): void;
|
|
105
|
+
ChangeLookup(key: any): void;
|
|
100
106
|
getAddConfigurationModel: () => any[];
|
|
101
107
|
getAddConfigurationFunction: (AddModel: any) => Observable<any>;
|
|
102
108
|
showEditConfigurationModal(configurationId: number, configurationIDEnc: string, EditConfigurationModal: any): void;
|
|
103
109
|
getEditConfigurationModel: () => any[];
|
|
104
110
|
getEditConfigurationFunction: (EditModel: any) => Observable<any>;
|
|
105
|
-
ChangeScopeValue(key: any): void;
|
|
106
|
-
ChangeTypeValue(key: any): void;
|
|
107
|
-
ChangeSource(key: any): void;
|
|
108
|
-
ChangeLookup(key: any): void;
|
|
109
111
|
ChangeEditLookup(key: any): void;
|
|
112
|
+
ChangeScopeValue(key: any): void;
|
|
110
113
|
resetConfigurationFlags(): void;
|
|
111
114
|
SearchForFunction(isAdd?: boolean): void;
|
|
115
|
+
changeSourceFunction(): void;
|
|
112
116
|
showDeleteConfigurationModal(configurationID: string): void;
|
|
113
117
|
deleteConfiguration: (id: string) => Observable<any>;
|
|
114
118
|
ngOnDestroy(): void;
|
|
@@ -5,6 +5,7 @@ export declare class AuthGuard implements CanActivate {
|
|
|
5
5
|
private router;
|
|
6
6
|
private authService;
|
|
7
7
|
allowedPermission: number[];
|
|
8
|
+
homeURL: string;
|
|
8
9
|
constructor(router: Router, authService: AuthService);
|
|
9
10
|
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Promise<boolean>;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuthGuard, never>;
|
|
@@ -2,6 +2,7 @@ import { OnInit, OnDestroy } from '@angular/core';
|
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
3
|
import { FilterItem, MultiLingualTextBoxOptions, PagingOptions, TextBoxOptions, FormOptions, ConfirmationModalOptions } from '@bnsights/bbsf-controls';
|
|
4
4
|
import { DepartmentService } from '../../shared/Services/DepartmentService.service';
|
|
5
|
+
import { DepartmentModel } from '../../shared/models/DepartmentModels/DepartmentModel';
|
|
5
6
|
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
6
7
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
7
8
|
import { AuthService, EnvironmentService, UtilityService, RequestHandlerService } from '@bnsights/bbsf-utilities';
|
|
@@ -26,7 +27,7 @@ export declare class DepartmentComponent implements OnInit, OnDestroy {
|
|
|
26
27
|
DepartmentPaging: PagingOptions;
|
|
27
28
|
DepartmentPagingResult: any[];
|
|
28
29
|
DepartmentFilteredList: any[];
|
|
29
|
-
pagingElement: PagingComponent
|
|
30
|
+
pagingElement: PagingComponent<DepartmentModel>;
|
|
30
31
|
AddDepartmentForm: FormGroup;
|
|
31
32
|
AddDepartmentFormOptions: FormOptions;
|
|
32
33
|
AddName: MultiLingualTextBoxOptions;
|
|
@@ -43,7 +44,7 @@ export declare class DepartmentComponent implements OnInit, OnDestroy {
|
|
|
43
44
|
constructor(environmentService: EnvironmentService, departmentService: DepartmentService, modalService: NgbModal, authService: AuthService, utilityService: UtilityService, pageInfoService: PageInfoService, requestHandlerService: RequestHandlerService);
|
|
44
45
|
ngOnInit(): void;
|
|
45
46
|
initializePage(): void;
|
|
46
|
-
setDepartmentListResult(result:
|
|
47
|
+
setDepartmentListResult(result: DepartmentModel[]): void;
|
|
47
48
|
showAddDepartmentModal(addDepartmentModal: any): void;
|
|
48
49
|
getAddDepartmentModel: () => any[];
|
|
49
50
|
getAddDepartmentFunction: (AddModel: any) => Observable<any>;
|
|
@@ -31,7 +31,7 @@ export declare class DepartmentInfoComponent implements OnInit, OnDestroy {
|
|
|
31
31
|
UserDepartmentPaging: PagingOptions;
|
|
32
32
|
UserDepartmentPagingResult: any[];
|
|
33
33
|
FilteredUserDepartmentPagingResult: any[];
|
|
34
|
-
pagingElement: PagingComponent
|
|
34
|
+
pagingElement: PagingComponent<any>;
|
|
35
35
|
AddUsersToDepartmentForm: FormGroup;
|
|
36
36
|
AddUserToDepartmentFormOptions: FormOptions;
|
|
37
37
|
UserAutoComplete: TagsInputOptions;
|
|
@@ -26,7 +26,7 @@ export declare class HelpCenterComponent implements OnInit {
|
|
|
26
26
|
clientSidePagingResult: any[];
|
|
27
27
|
HelpCenterPaging: PagingOptions;
|
|
28
28
|
IsFilterLoaded: boolean;
|
|
29
|
-
pagingElement: PagingComponent
|
|
29
|
+
pagingElement: PagingComponent<any>;
|
|
30
30
|
PermissionSetsList: any[];
|
|
31
31
|
AddHelpCenterForm: FormGroup;
|
|
32
32
|
AddHelpCenterFormOptions: FormOptions;
|
|
@@ -32,7 +32,7 @@ export declare class HelpCenterSecondlevelComponent implements OnInit {
|
|
|
32
32
|
clientSidePagingResult: any[];
|
|
33
33
|
HelpCenterPaging: PagingOptions;
|
|
34
34
|
IsFilterLoaded: boolean;
|
|
35
|
-
pagingElement: PagingComponent
|
|
35
|
+
pagingElement: PagingComponent<any>;
|
|
36
36
|
AddHelpCenterForm: FormGroup;
|
|
37
37
|
AddHelpCenterFormOptions: FormOptions;
|
|
38
38
|
AddTitle: MultiLingualTextBoxOptions;
|
|
@@ -32,7 +32,7 @@ export declare class HelpCenterThirdlevelComponent implements OnInit {
|
|
|
32
32
|
HelpCenterPagingResult: any[];
|
|
33
33
|
clientSidePagingResult: any[];
|
|
34
34
|
IsFilterLoaded: boolean;
|
|
35
|
-
pagingElement: PagingComponent
|
|
35
|
+
pagingElement: PagingComponent<any>;
|
|
36
36
|
AddHelpCenterForm: FormGroup;
|
|
37
37
|
AddHelpCenterFormOptions: FormOptions;
|
|
38
38
|
AddTitle: MultiLingualTextBoxOptions;
|
package/lib/Pages/impersonation-rules/impersonation-rules/impersonation-rules.component.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export declare class ImpersonationRulesComponent implements OnInit {
|
|
|
27
27
|
clientSidePagingResult: any[];
|
|
28
28
|
ImpersonationPaging: PagingOptions;
|
|
29
29
|
IsFilterLoaded: boolean;
|
|
30
|
-
pagingElement: PagingComponent
|
|
30
|
+
pagingElement: PagingComponent<any>;
|
|
31
31
|
PermissionSetList: any[];
|
|
32
32
|
ParticipantTypeList: any[];
|
|
33
33
|
AddImpersonationForm: FormGroup;
|
|
@@ -25,32 +25,32 @@ export declare class JobsComponent implements OnInit, OnDestroy {
|
|
|
25
25
|
enqueuedPaging: PagingOptions;
|
|
26
26
|
enqueuedTextInputFilter: FilterItem;
|
|
27
27
|
isEnqueuedFilterLoaded: boolean;
|
|
28
|
-
enqueuedInput: PagingComponent
|
|
28
|
+
enqueuedInput: PagingComponent<any>;
|
|
29
29
|
scheduledForm: FormGroup;
|
|
30
30
|
scheduledPagingResult: any[];
|
|
31
31
|
scheduledPaging: PagingOptions;
|
|
32
32
|
isScheduledFilterLoaded: boolean;
|
|
33
|
-
scheduledInput: PagingComponent
|
|
33
|
+
scheduledInput: PagingComponent<any>;
|
|
34
34
|
processingForm: FormGroup;
|
|
35
35
|
processingPagingResult: any[];
|
|
36
36
|
processingPaging: PagingOptions;
|
|
37
37
|
isProcessingFilterLoaded: boolean;
|
|
38
|
-
processingInput: PagingComponent
|
|
38
|
+
processingInput: PagingComponent<any>;
|
|
39
39
|
succeededForm: FormGroup;
|
|
40
40
|
succeededPagingResult: any[];
|
|
41
41
|
succeededPaging: PagingOptions;
|
|
42
42
|
isSucceededFilterLoaded: boolean;
|
|
43
|
-
succeededInput: PagingComponent
|
|
43
|
+
succeededInput: PagingComponent<any>;
|
|
44
44
|
failedForm: FormGroup;
|
|
45
45
|
failedPagingResult: any[];
|
|
46
46
|
failedPaging: PagingOptions;
|
|
47
47
|
isFailedFilterLoaded: boolean;
|
|
48
|
-
failedInput: PagingComponent
|
|
48
|
+
failedInput: PagingComponent<any>;
|
|
49
49
|
deletedForm: FormGroup;
|
|
50
50
|
deletedPagingResult: any[];
|
|
51
51
|
deletedPaging: PagingOptions;
|
|
52
52
|
isDeletedFilterLoaded: boolean;
|
|
53
|
-
deletedInput: PagingComponent
|
|
53
|
+
deletedInput: PagingComponent<any>;
|
|
54
54
|
constructor(pageInfoService: PageInfoService, utilityService: UtilityService, environmentService: EnvironmentService, jobsService: JobsService, requestHandlerService: RequestHandlerService);
|
|
55
55
|
ngOnInit(): void;
|
|
56
56
|
setEnqueuedListResult(result: any): void;
|
|
@@ -35,7 +35,7 @@ export declare class LocalizationsComponent implements OnInit, OnDestroy {
|
|
|
35
35
|
resourceSetFilter: FilterItem;
|
|
36
36
|
textInputFilter: FilterItem;
|
|
37
37
|
isFilterLoaded: boolean;
|
|
38
|
-
pagingElement: PagingComponent
|
|
38
|
+
pagingElement: PagingComponent<any>;
|
|
39
39
|
addResourceForm: FormGroup;
|
|
40
40
|
addResourceFormOptions: FormOptions;
|
|
41
41
|
resourceSet: AutocompleteOptions;
|
|
@@ -33,7 +33,7 @@ export declare class LookupComponent implements OnInit, OnDestroy {
|
|
|
33
33
|
lookupGroupFilter: FilterItem;
|
|
34
34
|
textInputFilter: FilterItem;
|
|
35
35
|
isFilterLoaded: boolean;
|
|
36
|
-
pagingElement: PagingComponent
|
|
36
|
+
pagingElement: PagingComponent<any>;
|
|
37
37
|
addLookupForm: FormGroup;
|
|
38
38
|
addLookupFormOptions: FormOptions;
|
|
39
39
|
multiLingualName: MultiLingualTextBoxOptions;
|
|
@@ -25,7 +25,7 @@ export declare class LookupGroupComponent implements OnInit, OnDestroy {
|
|
|
25
25
|
textInputFilter: FilterItem;
|
|
26
26
|
isFilterLoaded: boolean;
|
|
27
27
|
productionMode: boolean;
|
|
28
|
-
pagingElement: PagingComponent
|
|
28
|
+
pagingElement: PagingComponent<any>;
|
|
29
29
|
addLookupGroupForm: FormGroup;
|
|
30
30
|
addLookupGroupFormOptions: FormOptions;
|
|
31
31
|
multiLingualName: MultiLingualTextBoxOptions;
|
|
@@ -36,7 +36,7 @@ export declare class LookupItemComponent implements OnInit, OnDestroy {
|
|
|
36
36
|
textInputFilter: FilterItem;
|
|
37
37
|
lookupIdInputFilter: FilterItem;
|
|
38
38
|
isFilterLoaded: boolean;
|
|
39
|
-
pagingElement: PagingComponent
|
|
39
|
+
pagingElement: PagingComponent<any>;
|
|
40
40
|
addLookupItemForm: FormGroup;
|
|
41
41
|
addLookupItemFormOptions: FormOptions;
|
|
42
42
|
addLookupId: number;
|
|
@@ -30,7 +30,7 @@ export declare class MasterLayoutsComponent implements OnInit {
|
|
|
30
30
|
clientSidePagingResult: any[];
|
|
31
31
|
EmailHeaderAndFooterTemplatePaging: PagingOptions;
|
|
32
32
|
IsFilterLoaded: boolean;
|
|
33
|
-
pagingElement: PagingComponent
|
|
33
|
+
pagingElement: PagingComponent<any>;
|
|
34
34
|
deleteEmailHeaderAndFooterTemplateId: string;
|
|
35
35
|
DeleteConfirmationOptions: ConfirmationModalOptions;
|
|
36
36
|
deleteControlLoaded: boolean;
|
|
@@ -35,7 +35,7 @@ export declare class TemplatesComponent implements OnInit {
|
|
|
35
35
|
TemplatePaging: PagingOptions;
|
|
36
36
|
IsFilterLoaded: boolean;
|
|
37
37
|
IsFilterDataLoaded: boolean;
|
|
38
|
-
pagingElement: PagingComponent
|
|
38
|
+
pagingElement: PagingComponent<any>;
|
|
39
39
|
CategoryList: any[];
|
|
40
40
|
TypeList: any[];
|
|
41
41
|
SelectedTemplateList: any[];
|
|
@@ -31,7 +31,7 @@ export declare class ProviderComponent implements OnInit {
|
|
|
31
31
|
ProviderPaging: PagingOptions;
|
|
32
32
|
ProviderPagingResult: any[];
|
|
33
33
|
clientSidePagingResult: any[];
|
|
34
|
-
pagingElement: PagingComponent
|
|
34
|
+
pagingElement: PagingComponent<any>;
|
|
35
35
|
ProviderTypesFilterList: any[];
|
|
36
36
|
SortingFilterList: any[];
|
|
37
37
|
TypesList: any[];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import { CheckBoxOptions, ConfirmationModalOptions, DropdownOptions, FilterItem, FormOptions, MultiLingualTextBoxOptions, PagingOptions,
|
|
3
|
+
import { CheckBoxOptions, ConfirmationModalOptions, DropdownOptions, FilterItem, FormOptions, MultiLingualTextAreaOptions, MultiLingualTextBoxOptions, PagingOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
4
4
|
import { PublicHolidayService } from '../../shared/Services/PublicHolidayService.service';
|
|
5
5
|
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
6
6
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
@@ -30,28 +30,25 @@ export declare class PublicHolidayComponent implements OnInit {
|
|
|
30
30
|
PublicHolidayPaging: PagingOptions;
|
|
31
31
|
TextInputFilter: FilterItem;
|
|
32
32
|
IsFilterLoaded: boolean;
|
|
33
|
-
pagingElement: PagingComponent
|
|
33
|
+
pagingElement: PagingComponent<any>;
|
|
34
34
|
AddPublicHolidayForm: FormGroup;
|
|
35
35
|
AddPublicHolidayFormOptions: FormOptions;
|
|
36
36
|
AddName: MultiLingualTextBoxOptions;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
IsActive: CheckBoxOptions;
|
|
37
|
+
AddDescription: MultiLingualTextAreaOptions;
|
|
38
|
+
AddCountryOptions: DropdownOptions;
|
|
39
|
+
AddMonthOptions: DropdownOptions;
|
|
40
|
+
AddDayOptions: DropdownOptions;
|
|
41
|
+
AddSysName: TextBoxOptions;
|
|
42
|
+
AddIsActive: CheckBoxOptions;
|
|
44
43
|
EditPublicHolidayForm: FormGroup;
|
|
45
44
|
EditPublicHolidayFormOptions: FormOptions;
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
EditDescriptionInArabic: TextAreaOptions;
|
|
45
|
+
EditName: MultiLingualTextBoxOptions;
|
|
46
|
+
EditDescription: MultiLingualTextAreaOptions;
|
|
49
47
|
EditCountryOptions: DropdownOptions;
|
|
50
48
|
EditMonthOptions: DropdownOptions;
|
|
51
49
|
EditDayOptions: DropdownOptions;
|
|
52
50
|
EditSysName: TextBoxOptions;
|
|
53
51
|
EditIsActive: CheckBoxOptions;
|
|
54
|
-
IsEditPublicHolidayModelLoaded: boolean;
|
|
55
52
|
PublicHolidayId: number;
|
|
56
53
|
deletePublicHolidayId: string;
|
|
57
54
|
DeleteConfirmationOptions: ConfirmationModalOptions;
|
|
@@ -62,10 +59,10 @@ export declare class PublicHolidayComponent implements OnInit {
|
|
|
62
59
|
initializePage(): void;
|
|
63
60
|
setPublicHolidayListResult(result: any): void;
|
|
64
61
|
searchClientSide(searchValue: any): void;
|
|
65
|
-
showAddPublicHolidayModal(
|
|
62
|
+
showAddPublicHolidayModal(addPublicHolidayModal: any): void;
|
|
66
63
|
getAddPublicHolidayModel: () => any[];
|
|
67
64
|
getAddPublicHolidayFunction: (AddModel: any) => Observable<any>;
|
|
68
|
-
showEditPublicHolidayModal(publicHolidayID: number,
|
|
65
|
+
showEditPublicHolidayModal(publicHolidayID: number, publicHolidayIDEnc: any, editPublicHolidayModal: any): void;
|
|
69
66
|
getEditPublicHolidayModel: () => any[];
|
|
70
67
|
getEditPublicHolidayFunction: (EditModel: any) => Observable<any>;
|
|
71
68
|
showDeletePublicHolidayModal(publicHolidayIdEnc: any): void;
|
|
@@ -33,7 +33,7 @@ export declare class PermissionSetInfoComponent implements OnInit, OnDestroy {
|
|
|
33
33
|
textInputFilter: FilterItem;
|
|
34
34
|
permissionSetIdTextInputFilter: FilterItem;
|
|
35
35
|
isFilterLoaded: boolean;
|
|
36
|
-
pagingElement: PagingComponent
|
|
36
|
+
pagingElement: PagingComponent<any>;
|
|
37
37
|
addUsersToPermissionSetForm: FormGroup;
|
|
38
38
|
addUsersToPermissionSetFormOptions: FormOptions;
|
|
39
39
|
userAutoComplete: TagsInputOptions;
|
|
@@ -28,7 +28,7 @@ export declare class PermissionsComponent implements OnInit {
|
|
|
28
28
|
permissionsPaging: PagingOptions;
|
|
29
29
|
textInputFilter: FilterItem;
|
|
30
30
|
isFilterLoaded: boolean;
|
|
31
|
-
pagingElement: PagingComponent
|
|
31
|
+
pagingElement: PagingComponent<any>;
|
|
32
32
|
addPermissionForm: FormGroup;
|
|
33
33
|
addPermissionFormOptions: FormOptions;
|
|
34
34
|
multiLingualName: MultiLingualTextBoxOptions;
|
|
@@ -29,7 +29,7 @@ export declare class PermissionsetsComponent implements OnInit, OnDestroy {
|
|
|
29
29
|
permissionSetPaging: PagingOptions;
|
|
30
30
|
textInputFilter: FilterItem;
|
|
31
31
|
isFilterLoaded: boolean;
|
|
32
|
-
pagingElement: PagingComponent
|
|
32
|
+
pagingElement: PagingComponent<any>;
|
|
33
33
|
addPermissionSetForm: FormGroup;
|
|
34
34
|
addPermissionSetFormOptions: FormOptions;
|
|
35
35
|
multiLingualName: MultiLingualTextBoxOptions;
|
|
@@ -34,7 +34,7 @@ export declare class DepartmentInfoComponent implements OnInit, OnDestroy {
|
|
|
34
34
|
textInputFilter: FilterItem;
|
|
35
35
|
departmentIdTextInputFilter: FilterItem;
|
|
36
36
|
isFilterLoaded: boolean;
|
|
37
|
-
pagingElement: PagingComponent
|
|
37
|
+
pagingElement: PagingComponent<any>;
|
|
38
38
|
addUsersToDepartmentForm: FormGroup;
|
|
39
39
|
addUserToDepartmentFormOptions: FormOptions;
|
|
40
40
|
userAutoComplete: TagsInputOptions;
|
|
@@ -27,7 +27,7 @@ export declare class SectorComponent implements OnInit, OnDestroy {
|
|
|
27
27
|
SectorPaging: PagingOptions;
|
|
28
28
|
TextInputFilter: FilterItem;
|
|
29
29
|
IsFilterLoaded: boolean;
|
|
30
|
-
pagingElement: PagingComponent
|
|
30
|
+
pagingElement: PagingComponent<any>;
|
|
31
31
|
AddSectorForm: FormGroup;
|
|
32
32
|
AddSectorFormOptions: FormOptions;
|
|
33
33
|
MultiLingualName: MultiLingualTextBoxOptions;
|
|
@@ -33,7 +33,7 @@ export declare class SectorInfoComponent implements OnInit, OnDestroy {
|
|
|
33
33
|
textInputFilter: FilterItem;
|
|
34
34
|
sectorIdTextInputFilter: FilterItem;
|
|
35
35
|
isFilterLoaded: boolean;
|
|
36
|
-
pagingElement: PagingComponent
|
|
36
|
+
pagingElement: PagingComponent<any>;
|
|
37
37
|
addDepartmentToSectorForm: FormGroup;
|
|
38
38
|
addDepartmentToSectorFormOptions: FormOptions;
|
|
39
39
|
departmentAutoComplete: TagsInputOptions;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare enum WFVariableDataType {
|
|
2
|
+
SingleLine = 23001,
|
|
3
|
+
MultiLine = 23002,
|
|
4
|
+
SingleSelection = 23003,
|
|
5
|
+
MultiSelection = 23004,
|
|
6
|
+
TrueFalse = 23005,
|
|
7
|
+
Number = 23006,
|
|
8
|
+
Date = 23007,
|
|
9
|
+
IdentifierKey = 23008,
|
|
10
|
+
Attachment = 23011,
|
|
11
|
+
DynamicUserIDList = 23012
|
|
12
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { RequestHandlerService } from "@bnsights/bbsf-utilities";
|
|
2
|
+
import { LicenseModel } from "../models/LicenseModel/LicenseModel";
|
|
3
|
+
import { ActivationModel } from "../models/UserModels/ActivationModel";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AccountService {
|
|
6
|
+
private http;
|
|
7
|
+
ApiUrl: string;
|
|
8
|
+
constructor(http: RequestHandlerService);
|
|
9
|
+
forgotPassword(email: string): import("rxjs").Observable<unknown>;
|
|
10
|
+
getResetPassword(id: string): import("rxjs").Observable<unknown>;
|
|
11
|
+
resetPassword(model: ActivationModel): import("rxjs").Observable<unknown>;
|
|
12
|
+
getActivation(id: string): import("rxjs").Observable<unknown>;
|
|
13
|
+
activate(model: ActivationModel): import("rxjs").Observable<unknown>;
|
|
14
|
+
uploadLicense(File: LicenseModel): import("rxjs").Observable<unknown>;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccountService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AccountService>;
|
|
17
|
+
}
|
|
@@ -5,14 +5,14 @@ export declare class ActiveDirectoryService {
|
|
|
5
5
|
private http;
|
|
6
6
|
ApiUrl: string;
|
|
7
7
|
constructor(http: RequestHandlerService);
|
|
8
|
-
AddActiveDirectory(AddModel: ActiveDirectoryAddEditModel): import("rxjs").Observable<
|
|
9
|
-
GetEditActiveDirectory(id: string): import("rxjs").Observable<
|
|
10
|
-
EditActiveDirectory(EditModel: ActiveDirectoryAddEditModel): import("rxjs").Observable<
|
|
11
|
-
DeleteActiveDirectory(id: string): import("rxjs").Observable<
|
|
12
|
-
Loaddropdowns(): import("rxjs").Observable<
|
|
13
|
-
RunADSynchronization(id: string): import("rxjs").Observable<
|
|
14
|
-
GetLastRunLogs(id: string): import("rxjs").Observable<
|
|
15
|
-
CheckValidationandGetData(model: ActiveDirectoryAddEditModel): import("rxjs").Observable<
|
|
8
|
+
AddActiveDirectory(AddModel: ActiveDirectoryAddEditModel): import("rxjs").Observable<unknown>;
|
|
9
|
+
GetEditActiveDirectory(id: string): import("rxjs").Observable<unknown>;
|
|
10
|
+
EditActiveDirectory(EditModel: ActiveDirectoryAddEditModel): import("rxjs").Observable<unknown>;
|
|
11
|
+
DeleteActiveDirectory(id: string): import("rxjs").Observable<unknown>;
|
|
12
|
+
Loaddropdowns(): import("rxjs").Observable<unknown>;
|
|
13
|
+
RunADSynchronization(id: string): import("rxjs").Observable<unknown>;
|
|
14
|
+
GetLastRunLogs(id: string): import("rxjs").Observable<unknown>;
|
|
15
|
+
CheckValidationandGetData(model: ActiveDirectoryAddEditModel): import("rxjs").Observable<unknown>;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActiveDirectoryService, never>;
|
|
17
17
|
static ɵprov: i0.ɵɵInjectableDeclaration<ActiveDirectoryService>;
|
|
18
18
|
}
|