@bnsights/bbsf-admin-portal 1.0.7 → 1.0.11
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.11.tgz +0 -0
- package/bundles/bnsights-bbsf-admin-portal.umd.js +9643 -4461
- package/bundles/bnsights-bbsf-admin-portal.umd.js.map +1 -1
- package/esm2015/lib/Pages/ActiveDirectories/active-directory/active-directory.component.js +316 -258
- package/esm2015/lib/Pages/ActiveDirectories/active-directory-add/active-directory-add.component.js +367 -222
- package/esm2015/lib/Pages/ActiveDirectories/active-directory.module.js +16 -4
- package/esm2015/lib/Pages/_layout/components/aside/aside-menu/aside-menu.component.js +2 -2
- package/esm2015/lib/Pages/_layout/components/aside/aside.component.js +12 -8
- package/esm2015/lib/Pages/_layout/components/topbar/topbar.component.js +5 -7
- package/esm2015/lib/Pages/anonymouslayout/activation/activation.component.js +92 -0
- package/esm2015/lib/Pages/anonymouslayout/anonymouslayout-routing.module.js +35 -0
- package/esm2015/lib/Pages/anonymouslayout/anonymouslayout.component.js +50 -0
- package/esm2015/lib/Pages/anonymouslayout/anonymouslayout.module.js +75 -0
- package/esm2015/lib/Pages/anonymouslayout/forgot-password/forgot-password.component.js +55 -0
- package/esm2015/lib/Pages/anonymouslayout/login/login.component.js +26 -0
- package/esm2015/lib/Pages/anonymouslayout/rest-password/rest-password.component.js +90 -0
- package/esm2015/lib/Pages/anonymouslayout/upload-license/upload-license.component.js +71 -0
- package/esm2015/lib/Pages/configurations/configuration/configuration.component.js +32 -15
- package/esm2015/lib/Pages/core/authentication/admin.guard.js +17 -0
- package/esm2015/lib/Pages/core/authentication/auth.guard.js +10 -5
- package/esm2015/lib/Pages/core/authentication/auth.service.js +1 -2
- package/esm2015/lib/Pages/departments/department/department.component.js +9 -8
- package/esm2015/lib/Pages/helpCenter/help-center/help-center.component.js +3 -3
- package/esm2015/lib/Pages/helpCenter/help-center-secondlevel/help-center-secondlevel.component.js +3 -3
- package/esm2015/lib/Pages/home/home.component.js +3 -3
- package/esm2015/lib/Pages/localizations/localizations.component.js +22 -6
- package/esm2015/lib/Pages/lookups/lookup/lookup.component.js +3 -3
- package/esm2015/lib/Pages/notifications/add/add.component.js +1 -3
- package/esm2015/lib/Pages/notifications/edit/edit.component.js +1 -3
- package/esm2015/lib/Pages/notifications/template-info/template-info.component.js +2 -2
- package/esm2015/lib/Pages/notifications/templates/templates.component.js +3 -3
- package/esm2015/lib/Pages/publicHolidays/public-holiday/public-holiday.component.js +76 -82
- package/esm2015/lib/Pages/shared/Enums/ADType.js +6 -0
- package/esm2015/lib/Pages/shared/Enums/ADWindowsType.js +6 -0
- package/esm2015/lib/Pages/shared/Enums/ConditionRHSType.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 +26 -1
- package/esm2015/lib/Pages/shared/Services/ActiveDirectoryService.service.js +18 -18
- package/esm2015/lib/Pages/shared/Services/AnonymousLayoutService.service.js +29 -0
- package/esm2015/lib/Pages/shared/Services/ConfigurationsService.service.js +2 -2
- package/esm2015/lib/Pages/shared/Services/DepartmentService.service.js +3 -3
- package/esm2015/lib/Pages/shared/Services/GlobalErrorHandler.service.js +1 -14
- package/esm2015/lib/Pages/shared/Services/HelpCenterService.service.js +2 -2
- package/esm2015/lib/Pages/shared/Services/HttpErrorInterceptor.service.js +1 -1
- package/esm2015/lib/Pages/shared/Services/LookupService.service.js +2 -2
- package/esm2015/lib/Pages/shared/Services/PermissionSetService.service.js +2 -2
- package/esm2015/lib/Pages/shared/Services/SectorService.service.js +3 -3
- 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/Services/localizationsService.service .js +6 -3
- package/esm2015/lib/Pages/shared/Services/provider.service.js +3 -3
- package/esm2015/lib/Pages/shared/Services/userService.service.js +3 -3
- package/esm2015/lib/Pages/shared/models/ADModels/ActiveDirectoryAddEditModel.js +1 -1
- package/esm2015/lib/Pages/shared/models/ConfigurationModels/ConfigurationModel.js +1 -1
- package/esm2015/lib/Pages/shared/models/DepartmentModels/DepartmentModel.js +28 -4
- 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/shared/models/user.registration.js +1 -1
- package/esm2015/lib/Pages/shared/stylesbundle.service.js +3 -3
- package/esm2015/lib/Pages/users/users.component.js +2 -2
- 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-routing.module.js +4 -4
- package/esm2015/lib/masterlayout.component.js +2 -2
- package/esm2015/lib/masterlayout.module.js +26 -7
- package/esm2015/public-api.js +4 -5
- package/fesm2015/bnsights-bbsf-admin-portal.js +15248 -10155
- package/fesm2015/bnsights-bbsf-admin-portal.js.map +1 -1
- package/lib/Pages/ActiveDirectories/active-directory/active-directory.component.d.ts +65 -56
- package/lib/Pages/ActiveDirectories/active-directory-add/active-directory-add.component.d.ts +70 -43
- package/lib/Pages/ActiveDirectories/active-directory.module.d.ts +4 -1
- package/lib/Pages/_layout/components/aside/aside.component.d.ts +4 -1
- package/lib/Pages/_layout/components/topbar/topbar.component.d.ts +2 -1
- package/lib/Pages/anonymouslayout/activation/activation.component.d.ts +32 -0
- package/lib/Pages/anonymouslayout/anonymouslayout-routing.module.d.ts +7 -0
- package/lib/Pages/anonymouslayout/anonymouslayout.component.d.ts +21 -0
- package/lib/Pages/anonymouslayout/anonymouslayout.module.d.ts +19 -0
- package/lib/Pages/{account → anonymouslayout}/forgot-password/forgot-password.component.d.ts +4 -1
- package/lib/Pages/{account → anonymouslayout}/login/login.component.d.ts +3 -2
- package/lib/Pages/anonymouslayout/rest-password/rest-password.component.d.ts +32 -0
- package/lib/Pages/anonymouslayout/upload-license/upload-license.component.d.ts +25 -0
- package/lib/Pages/configurations/configuration/configuration.component.d.ts +2 -0
- package/lib/Pages/core/authentication/admin.guard.d.ts +9 -0
- package/lib/Pages/localizations/localizations.component.d.ts +1 -0
- package/lib/Pages/publicHolidays/public-holiday/public-holiday.component.d.ts +11 -14
- package/lib/Pages/shared/Enums/ADType.d.ts +4 -0
- package/lib/Pages/shared/Enums/ADWindowsType.d.ts +4 -0
- package/lib/Pages/shared/Enums/ConditionRHSType.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 +8 -0
- package/lib/Pages/shared/Services/ActiveDirectoryService.service.d.ts +9 -9
- package/lib/Pages/shared/Services/AnonymousLayoutService.service.d.ts +17 -0
- 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 +1 -0
- package/lib/Pages/shared/models/ADModels/ActiveDirectoryAddEditModel.d.ts +11 -6
- package/lib/Pages/shared/models/ConfigurationModels/ConfigurationModel.d.ts +1 -0
- package/lib/Pages/shared/models/DepartmentModels/DepartmentModel.d.ts +8 -9
- 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/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/lib/masterlayout.module.d.ts +2 -2
- package/package.json +5 -3
- package/public-api.d.ts +3 -4
- package/src/lib/assets/css/anonymousBundle-Dark-RTL.css +4 -0
- package/src/lib/assets/css/anonymousBundle-Dark.css +4 -0
- package/src/lib/assets/css/anonymousBundle-light-RTL.css +4 -0
- package/src/lib/assets/css/anonymousBundle-light.css +18 -0
- package/src/lib/assets/css/login.css +74671 -0
- package/src/lib/assets/sass/custom-styles-rtl.scss +13 -3
- package/src/lib/assets/sass/custom-styles.scss +38 -11
- package/bnsights-bbsf-admin-portal-1.0.7.tgz +0 -0
- package/esm2015/lib/Pages/account/account-routing.module.js +0 -28
- package/esm2015/lib/Pages/account/account.component.js +0 -27
- package/esm2015/lib/Pages/account/account.module.js +0 -56
- package/esm2015/lib/Pages/account/forgot-password/forgot-password.component.js +0 -48
- package/esm2015/lib/Pages/account/login/login.component.js +0 -25
- package/esm2015/lib/Pages/account/register/register.component.js +0 -48
- package/lib/Pages/account/account-routing.module.d.ts +0 -7
- package/lib/Pages/account/account.component.d.ts +0 -12
- package/lib/Pages/account/account.module.d.ts +0 -16
- package/lib/Pages/account/register/register.component.d.ts +0 -21
|
@@ -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
|
+
}
|
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
import { RequestHandlerService } from "@bnsights/bbsf-utilities";
|
|
2
|
+
import { LicenseModel } from "../models/LicenseModel/LicenseModel";
|
|
3
|
+
import { ActivationModel } from "../models/UserModels/ActivationModel";
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
5
|
export declare class AccountService {
|
|
4
6
|
private http;
|
|
5
7
|
ApiUrl: string;
|
|
6
8
|
constructor(http: RequestHandlerService);
|
|
7
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
|
+
UpdateLanguageCookieAnonymous(langKey: string): import("rxjs").Observable<unknown>;
|
|
8
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<AccountService, never>;
|
|
9
17
|
static ɵprov: i0.ɵɵInjectableDeclaration<AccountService>;
|
|
10
18
|
}
|
|
@@ -3,16 +3,16 @@ import { RequestHandlerService } from "@bnsights/bbsf-utilities";
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ActiveDirectoryService {
|
|
5
5
|
private http;
|
|
6
|
-
|
|
6
|
+
apiUrl: string;
|
|
7
7
|
constructor(http: RequestHandlerService);
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Router } from "@angular/router";
|
|
2
|
+
import { AuthService, RequestHandlerService, StylesBundleService } from "@bnsights/bbsf-utilities";
|
|
3
|
+
import { TranslateService } from "@ngx-translate/core";
|
|
4
|
+
import { AccountService } from "./AccountService.service";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AnonymousLayoutService {
|
|
7
|
+
private accountService;
|
|
8
|
+
private router;
|
|
9
|
+
private http;
|
|
10
|
+
private authService;
|
|
11
|
+
private stylesBundleService;
|
|
12
|
+
private translate;
|
|
13
|
+
constructor(accountService: AccountService, router: Router, http: RequestHandlerService, authService: AuthService, stylesBundleService: StylesBundleService, translate: TranslateService);
|
|
14
|
+
switchAnonymousLayoutLanguage(lang: string, bundleEnglishName: string, bundleArabicName: string, theme?: string): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnonymousLayoutService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AnonymousLayoutService>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { RequestHandlerService } from "@bnsights/bbsf-utilities";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class WorkflowVersionService {
|
|
4
|
+
private http;
|
|
5
|
+
ApiUrl: string;
|
|
6
|
+
constructor(http: RequestHandlerService);
|
|
7
|
+
getDetails(id: string): import("rxjs").Observable<unknown>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowVersionService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WorkflowVersionService>;
|
|
10
|
+
}
|
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
import { RequestHandlerService } from "@bnsights/bbsf-utilities";
|
|
2
2
|
import { WFActivityModel } from "../models/WorkflowModels/WFActivityModel";
|
|
3
|
+
import { WFActivityVariablesModel } from "../models/WorkflowModels/WFActivityVariablesModel";
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class WorkflowActivityService {
|
|
5
6
|
private http;
|
|
6
7
|
ApiUrl: string;
|
|
7
8
|
constructor(http: RequestHandlerService);
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
loadAddDropdowns(): import("rxjs").Observable<unknown>;
|
|
10
|
+
getActivityOutcomes(versionID: number, activityType: number): import("rxjs").Observable<unknown>;
|
|
11
|
+
addWorkflowActivity(AddModel: WFActivityModel): import("rxjs").Observable<unknown>;
|
|
12
|
+
getEditWorkFlowActivityData(id: string): import("rxjs").Observable<unknown>;
|
|
13
|
+
editActivity(EditModel: WFActivityModel): import("rxjs").Observable<unknown>;
|
|
14
|
+
editPublishedActivity(EditModel: WFActivityModel): import("rxjs").Observable<unknown>;
|
|
15
|
+
getActivityWFVariables(versionID: number, activityID: number): import("rxjs").Observable<unknown>;
|
|
16
|
+
addActivityWFVariables(model: WFActivityVariablesModel): import("rxjs").Observable<unknown>;
|
|
11
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowActivityService, never>;
|
|
12
18
|
static ɵprov: i0.ɵɵInjectableDeclaration<WorkflowActivityService>;
|
|
13
19
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { RequestHandlerService } from "@bnsights/bbsf-utilities";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class WorkflowInstanceService {
|
|
4
|
+
private http;
|
|
5
|
+
ApiUrl: string;
|
|
6
|
+
constructor(http: RequestHandlerService);
|
|
7
|
+
getDetails(id: string): import("rxjs").Observable<unknown>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowInstanceService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WorkflowInstanceService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { RequestHandlerService } from "@bnsights/bbsf-utilities";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class WorkflowLogVariablesService {
|
|
4
|
+
private http;
|
|
5
|
+
ApiUrl: string;
|
|
6
|
+
constructor(http: RequestHandlerService);
|
|
7
|
+
getLogVariables(id: string): import("rxjs").Observable<unknown>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowLogVariablesService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WorkflowLogVariablesService>;
|
|
10
|
+
}
|
|
@@ -5,9 +5,11 @@ export declare class WorkflowService {
|
|
|
5
5
|
private http;
|
|
6
6
|
ApiUrl: string;
|
|
7
7
|
constructor(http: RequestHandlerService);
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
addWorkflow(AddModel: WFCreationModel): import("rxjs").Observable<unknown>;
|
|
9
|
+
getEditWorkFlowData(id: string): import("rxjs").Observable<unknown>;
|
|
10
|
+
editWorkflow(EditModel: WFCreationModel): import("rxjs").Observable<unknown>;
|
|
11
|
+
getDetails(Id: string): import("rxjs").Observable<unknown>;
|
|
12
|
+
publishWorkFlow(id: string): import("rxjs").Observable<unknown>;
|
|
11
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowService, never>;
|
|
12
14
|
static ɵprov: i0.ɵɵInjectableDeclaration<WorkflowService>;
|
|
13
15
|
}
|
|
@@ -5,10 +5,11 @@ export declare class WorkflowVariablesService {
|
|
|
5
5
|
private http;
|
|
6
6
|
ApiUrl: string;
|
|
7
7
|
constructor(http: RequestHandlerService);
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
loadAddDropdowns(): import("rxjs").Observable<unknown>;
|
|
9
|
+
addVariable(AddModel: WFVariableModel): import("rxjs").Observable<unknown>;
|
|
10
|
+
getEditWorkFlowVariableData(id: string): import("rxjs").Observable<unknown>;
|
|
11
|
+
editVariable(EditModel: WFVariableModel): import("rxjs").Observable<unknown>;
|
|
12
|
+
deleteVariable(id: number): import("rxjs").Observable<unknown>;
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowVariablesService, never>;
|
|
13
14
|
static ɵprov: i0.ɵɵInjectableDeclaration<WorkflowVariablesService>;
|
|
14
15
|
}
|
|
@@ -9,6 +9,7 @@ export declare class localizationsService {
|
|
|
9
9
|
constructor(http: RequestHandlerService);
|
|
10
10
|
loadDropdown(): import("rxjs").Observable<unknown>;
|
|
11
11
|
getResource(resourceSet: string, resourceId: string): import("rxjs").Observable<unknown>;
|
|
12
|
+
generateBBSFResourceClass(): import("rxjs").Observable<unknown>;
|
|
12
13
|
addResource(AddResourceModel: EditResourceModel): import("rxjs").Observable<unknown>;
|
|
13
14
|
editResource(EditResourceModel: EditResourceModel): import("rxjs").Observable<unknown>;
|
|
14
15
|
restResourceToFactoryDefault(EditResourceModel: EditResourceModel): import("rxjs").Observable<unknown>;
|
|
@@ -1,21 +1,26 @@
|
|
|
1
1
|
import { ADMappingModel } from "./ADMappingModel";
|
|
2
2
|
export declare class ActiveDirectoryAddEditModel {
|
|
3
3
|
ID: number;
|
|
4
|
-
|
|
4
|
+
ADTypeItemID: number;
|
|
5
|
+
ADTypeName: string;
|
|
5
6
|
ValidationError_Duplicates: string;
|
|
6
7
|
IsExistsCurrentDomain: boolean;
|
|
7
|
-
Domain: string;
|
|
8
8
|
ConnectionName: string;
|
|
9
9
|
PermissionSetID: number;
|
|
10
|
-
ADConnectionTypeItemID: number;
|
|
11
|
-
Identifier: string;
|
|
12
|
-
SamAccount: string;
|
|
13
|
-
Password: string;
|
|
14
10
|
ShowBuiltInGroups: boolean;
|
|
15
11
|
ImagesFileProviderName: string;
|
|
16
12
|
LangKey: string;
|
|
17
13
|
MarkAsInactive: boolean;
|
|
18
14
|
WelcomeTemplateID: number;
|
|
19
15
|
AddToDailyJob: boolean;
|
|
16
|
+
Domain: string;
|
|
17
|
+
Identifier: string;
|
|
18
|
+
SamAccount: string;
|
|
19
|
+
Password: string;
|
|
20
|
+
ADWindowsTypeItemID: number;
|
|
21
|
+
ADConnectionWindowsTypeItemName: string;
|
|
22
|
+
TenantID: string;
|
|
23
|
+
ClientID: string;
|
|
24
|
+
ClientSecret: string;
|
|
20
25
|
ADMappings: ADMappingModel[];
|
|
21
26
|
}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { EnglishArabicDTO } from "@bnsights/bbsf-controls";
|
|
2
2
|
export declare class DepartmentModel {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
test: string;
|
|
3
|
+
id: number;
|
|
4
|
+
sectorId?: number;
|
|
5
|
+
idEncrypted: string;
|
|
6
|
+
departmentNameDTO: EnglishArabicDTO;
|
|
7
|
+
departmentName: string;
|
|
8
|
+
sectorName: string;
|
|
9
|
+
usersCount: number;
|
|
10
|
+
samAccount: string;
|
|
12
11
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare class WFActivityVariablesModel {
|
|
2
|
+
activityVariableDTOs: WFActivityVariableDTO[];
|
|
3
|
+
ActivityID: number;
|
|
4
|
+
}
|
|
5
|
+
export declare class WFActivityVariableDTO {
|
|
6
|
+
ID: number;
|
|
7
|
+
ActivityID: number;
|
|
8
|
+
VariableName: string;
|
|
9
|
+
IsMandatory: boolean;
|
|
10
|
+
IsEnabled: boolean;
|
|
11
|
+
IsVisible: boolean;
|
|
12
|
+
IsSystem: boolean;
|
|
13
|
+
}
|
package/lib/Pages/workflows/activity/workflow-activity-add/workflow-activity-add.component.d.ts
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
+
import { DropdownOptions, FormOptions, MultiLingualTextAreaOptions, MultiLingualTextBoxOptions, TextBoxOptions, ToggleSlideOptions } from '@bnsights/bbsf-controls';
|
|
5
|
+
import { BBSFTranslateService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
|
+
import { Observable } from 'rxjs';
|
|
7
|
+
import { PageInfoService } from '../../../../../public-api';
|
|
8
|
+
import { WorkflowActivityService } from '../../../shared/Services/WorkflowActivityService.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class WorkflowActivityAddComponent implements OnInit {
|
|
11
|
+
private workflowActivityService;
|
|
12
|
+
utilityService: UtilityService;
|
|
13
|
+
private activatedRoute;
|
|
14
|
+
private pageInfoService;
|
|
15
|
+
private router;
|
|
16
|
+
private requestHandlerService;
|
|
17
|
+
private bbsfTranslateService;
|
|
18
|
+
isAddFormLoaded: boolean;
|
|
19
|
+
versionID: number;
|
|
20
|
+
addworkflowActivityForm: FormGroup;
|
|
21
|
+
addworkflowActivityFormOptions: FormOptions;
|
|
22
|
+
name: MultiLingualTextBoxOptions;
|
|
23
|
+
sysName: TextBoxOptions;
|
|
24
|
+
activityType: DropdownOptions;
|
|
25
|
+
canAddOutcome: boolean;
|
|
26
|
+
ActivityTypeList: any[];
|
|
27
|
+
showParticipantContainer: boolean;
|
|
28
|
+
showParticipantPermssionSet: boolean;
|
|
29
|
+
participantTypes: DropdownOptions;
|
|
30
|
+
participantPermissionSet: DropdownOptions;
|
|
31
|
+
showDynamicControls: boolean;
|
|
32
|
+
dynamicTaskName: MultiLingualTextBoxOptions;
|
|
33
|
+
dynamicTaskDescription: MultiLingualTextAreaOptions;
|
|
34
|
+
dynamicTaskURL: TextBoxOptions;
|
|
35
|
+
dynamicTaskType: DropdownOptions;
|
|
36
|
+
dynamicCanComplete: ToggleSlideOptions;
|
|
37
|
+
showStaticControls: boolean;
|
|
38
|
+
staticOutcomeName: MultiLingualTextBoxOptions;
|
|
39
|
+
staticOutcomeSysName: TextBoxOptions;
|
|
40
|
+
staticOutcomeNextActivity: DropdownOptions;
|
|
41
|
+
staticOutcomeCanAddComment: ToggleSlideOptions;
|
|
42
|
+
showConditionControls: boolean;
|
|
43
|
+
conditionLHSDropDown: DropdownOptions;
|
|
44
|
+
conditionsDropDown: DropdownOptions;
|
|
45
|
+
conditionRHSTypeDropDown: DropdownOptions;
|
|
46
|
+
conditionRHSDropDown: DropdownOptions;
|
|
47
|
+
conditionRHSValue: TextBoxOptions;
|
|
48
|
+
showConditionRHSWFVariable: boolean;
|
|
49
|
+
outcomesOptions: any[];
|
|
50
|
+
outcomesCount: number;
|
|
51
|
+
showOutcomesContainer: boolean;
|
|
52
|
+
taskTypeList: any[];
|
|
53
|
+
participantTypeList: any[];
|
|
54
|
+
participantDataList: any[];
|
|
55
|
+
nextActivityList: any[];
|
|
56
|
+
conditionLHSWFVariableList: any[];
|
|
57
|
+
conditionRHSWFVariableList: any[];
|
|
58
|
+
conditionRHSTypeList: any[];
|
|
59
|
+
conditionList: any[];
|
|
60
|
+
constructor(workflowActivityService: WorkflowActivityService, utilityService: UtilityService, activatedRoute: ActivatedRoute, pageInfoService: PageInfoService, router: Router, requestHandlerService: RequestHandlerService, bbsfTranslateService: BBSFTranslateService);
|
|
61
|
+
ngOnInit(): Promise<void>;
|
|
62
|
+
initializePage(): void;
|
|
63
|
+
getAddWFActivityModel: () => any[];
|
|
64
|
+
getAddWFActivityFunction: (AddModel: any) => Observable<any>;
|
|
65
|
+
onAddSuccess: (result: any) => void;
|
|
66
|
+
getActivityOutcomesOptions(outComes: any[]): (number | any[])[];
|
|
67
|
+
addWFActivityOutcome(): void;
|
|
68
|
+
deleteOutcome(deletedOutcome: any): void;
|
|
69
|
+
activityTypeOnChange(activityType: any): void;
|
|
70
|
+
conditionRHSTypeOnChange(type: any): void;
|
|
71
|
+
participantTypeOnChange(participantType: any): void;
|
|
72
|
+
resetAllActivityTypeControls(): void;
|
|
73
|
+
cancelAdd(): void;
|
|
74
|
+
ngOnDestroy(): void;
|
|
75
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowActivityAddComponent, never>;
|
|
76
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowActivityAddComponent, "lib-workflow-activity-add", never, {}, {}, never, never>;
|
|
77
|
+
}
|
package/lib/Pages/workflows/activity/workflow-activity-edit/workflow-activity-edit.component.d.ts
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
+
import { DropdownOptions, FormOptions, MultiLingualTextAreaOptions, MultiLingualTextBoxOptions, TextBoxOptions, ToggleSlideOptions } from '@bnsights/bbsf-controls';
|
|
5
|
+
import { BBSFTranslateService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
|
+
import { Observable } from 'rxjs';
|
|
7
|
+
import { PageInfoService } from '../../../../../public-api';
|
|
8
|
+
import { WorkflowActivityService } from '../../../shared/Services/WorkflowActivityService.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class WorkflowActivityEditComponent implements OnInit {
|
|
11
|
+
private workflowActivityService;
|
|
12
|
+
private pageInfoService;
|
|
13
|
+
utilityService: UtilityService;
|
|
14
|
+
private activatedRoute;
|
|
15
|
+
private router;
|
|
16
|
+
private requestHandlerService;
|
|
17
|
+
private bbsfTranslateService;
|
|
18
|
+
isEditFormLoaded: boolean;
|
|
19
|
+
versionID: number;
|
|
20
|
+
activityID: number;
|
|
21
|
+
activityIDEnc: string;
|
|
22
|
+
activityModel: any;
|
|
23
|
+
isPublished: boolean;
|
|
24
|
+
editworkflowActivityForm: FormGroup;
|
|
25
|
+
editworkflowActivityFormOptions: FormOptions;
|
|
26
|
+
name: MultiLingualTextBoxOptions;
|
|
27
|
+
canAddOutcome: boolean;
|
|
28
|
+
activityTypeID: number;
|
|
29
|
+
showActivityType: boolean;
|
|
30
|
+
sysName: TextBoxOptions;
|
|
31
|
+
activityType: DropdownOptions;
|
|
32
|
+
showParticipantContainer: boolean;
|
|
33
|
+
showParticipantPermssionSet: boolean;
|
|
34
|
+
participantTypes: DropdownOptions;
|
|
35
|
+
participantPermissionSet: DropdownOptions;
|
|
36
|
+
showDynamicControls: boolean;
|
|
37
|
+
dynamicTaskName: MultiLingualTextBoxOptions;
|
|
38
|
+
dynamicTaskDescription: MultiLingualTextAreaOptions;
|
|
39
|
+
dynamicTaskURL: TextBoxOptions;
|
|
40
|
+
dynamicTaskType: DropdownOptions;
|
|
41
|
+
dynamicCanComplete: ToggleSlideOptions;
|
|
42
|
+
showStaticControls: boolean;
|
|
43
|
+
staticOutcomeName: MultiLingualTextBoxOptions;
|
|
44
|
+
staticOutcomeSysName: TextBoxOptions;
|
|
45
|
+
staticOutcomeNextActivity: DropdownOptions;
|
|
46
|
+
staticOutcomeCanAddComment: ToggleSlideOptions;
|
|
47
|
+
showConditionControls: boolean;
|
|
48
|
+
conditionLHSDropDown: DropdownOptions;
|
|
49
|
+
conditionsDropDown: DropdownOptions;
|
|
50
|
+
conditionRHSTypeDropDown: DropdownOptions;
|
|
51
|
+
conditionRHSDropDown: DropdownOptions;
|
|
52
|
+
conditionRHSValue: TextBoxOptions;
|
|
53
|
+
showConditionRHSWFVariable: boolean;
|
|
54
|
+
ActivityTypeList: any[];
|
|
55
|
+
outcomesOptions: any[];
|
|
56
|
+
outcomesCount: number;
|
|
57
|
+
showOutcomesContainer: boolean;
|
|
58
|
+
taskTypeList: any[];
|
|
59
|
+
participantTypeList: any[];
|
|
60
|
+
participantDataList: any[];
|
|
61
|
+
nextActivityList: any[];
|
|
62
|
+
conditionLHSWFVariableList: any[];
|
|
63
|
+
conditionRHSWFVariableList: any[];
|
|
64
|
+
conditionRHSTypeList: any[];
|
|
65
|
+
conditionList: any[];
|
|
66
|
+
constructor(workflowActivityService: WorkflowActivityService, pageInfoService: PageInfoService, utilityService: UtilityService, activatedRoute: ActivatedRoute, router: Router, requestHandlerService: RequestHandlerService, bbsfTranslateService: BBSFTranslateService);
|
|
67
|
+
ngOnInit(): Promise<void>;
|
|
68
|
+
initializePage(): void;
|
|
69
|
+
getEditWFActivityModel: () => any[];
|
|
70
|
+
getEditWFActivityFunction: (editModel: any) => Observable<any>;
|
|
71
|
+
onEditSuccess: (result: any) => void;
|
|
72
|
+
getActivityOutcomesOptions(outComes: any[], isPublished: boolean): (number | any[])[];
|
|
73
|
+
addWFActivityOutcome(): void;
|
|
74
|
+
deleteOutcome(deletedOutcome: any): void;
|
|
75
|
+
activityTypeOnChange(activityType: any): void;
|
|
76
|
+
conditionRHSTypeOnChange(type: any): void;
|
|
77
|
+
participantTypeOnChange(participantType: any): void;
|
|
78
|
+
resetAllActivityTypeControls(): void;
|
|
79
|
+
cancelEdit(): void;
|
|
80
|
+
ngOnDestroy(): void;
|
|
81
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowActivityEditComponent, never>;
|
|
82
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowActivityEditComponent, "lib-workflow-activity-edit", never, {}, {}, never, never>;
|
|
83
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { ActivatedRoute } from '@angular/router';
|
|
4
|
+
import { FilterItem, MultiLingualTextBoxOptions, PagingOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
5
|
+
import { AuthService, BBSFTranslateService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
|
+
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
7
|
+
import { PageInfoService } from '../../../../public-api';
|
|
8
|
+
import { WorkflowInstanceService } from '../../shared/Services/WorkflowInstanceService.service';
|
|
9
|
+
import { WorkflowLogVariablesService } from '../../shared/Services/WorkflowLogVariablesService.service';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class InstanceInfoComponent implements OnInit {
|
|
12
|
+
private authService;
|
|
13
|
+
private workFlowInstanceService;
|
|
14
|
+
private activatedRoute;
|
|
15
|
+
private pageInfoService;
|
|
16
|
+
private bbsfTranslateService;
|
|
17
|
+
utilityService: UtilityService;
|
|
18
|
+
private wfLogVariablesService;
|
|
19
|
+
private modalService;
|
|
20
|
+
private requestHandlerService;
|
|
21
|
+
detailsForm: FormGroup;
|
|
22
|
+
instanceDetails: any;
|
|
23
|
+
instanceID: string;
|
|
24
|
+
instanceName: MultiLingualTextBoxOptions;
|
|
25
|
+
instanceCreator: TextBoxOptions;
|
|
26
|
+
instanceStatus: TextBoxOptions;
|
|
27
|
+
showInstanceDetails: boolean;
|
|
28
|
+
workFlowVariablesApiUrl: string;
|
|
29
|
+
workflowVariablesForm: FormGroup;
|
|
30
|
+
variablesInstanceIdTextBox: TextBoxOptions;
|
|
31
|
+
variableInstanceIdFilter: FilterItem;
|
|
32
|
+
searchVariablesTextBox: TextBoxOptions;
|
|
33
|
+
variablesTextInputFilter: FilterItem;
|
|
34
|
+
workFlowVariablesPagingResult: any[];
|
|
35
|
+
WorkflowVariablesPaging: PagingOptions;
|
|
36
|
+
isWFVariablesFilterLoaded: boolean;
|
|
37
|
+
workFlowTasksApiUrl: string;
|
|
38
|
+
tasksForm: FormGroup;
|
|
39
|
+
searchTasksTextBox: TextBoxOptions;
|
|
40
|
+
taskTextInputFilter: FilterItem;
|
|
41
|
+
taskInstanceIdTextBox: TextBoxOptions;
|
|
42
|
+
taskInstanceIdFilter: FilterItem;
|
|
43
|
+
tasksPagingResult: any[];
|
|
44
|
+
WorkflowTasksPaging: PagingOptions;
|
|
45
|
+
isWFTasksFilterLoaded: boolean;
|
|
46
|
+
workFlowErrorsApiUrl: string;
|
|
47
|
+
errorsForm: FormGroup;
|
|
48
|
+
searchErrorsTextBox: TextBoxOptions;
|
|
49
|
+
errorTextInputFilter: FilterItem;
|
|
50
|
+
errorInstanceIdTextBox: TextBoxOptions;
|
|
51
|
+
errorInstanceIdFilter: FilterItem;
|
|
52
|
+
errorsPagingResult: any[];
|
|
53
|
+
WorkflowErrorsPaging: PagingOptions;
|
|
54
|
+
isWFErrorsFilterLoaded: boolean;
|
|
55
|
+
workFlowLogsApiUrl: string;
|
|
56
|
+
logsForm: FormGroup;
|
|
57
|
+
searchLogsTextBox: TextBoxOptions;
|
|
58
|
+
logTextInputFilter: FilterItem;
|
|
59
|
+
logInstanceIdTextBox: TextBoxOptions;
|
|
60
|
+
logInstanceIdFilter: FilterItem;
|
|
61
|
+
logsPagingResult: any[];
|
|
62
|
+
WorkflowLogsPaging: PagingOptions;
|
|
63
|
+
isWFLogsFilterLoaded: boolean;
|
|
64
|
+
logVariablesPagingResult: any[];
|
|
65
|
+
logID: string;
|
|
66
|
+
constructor(authService: AuthService, workFlowInstanceService: WorkflowInstanceService, activatedRoute: ActivatedRoute, pageInfoService: PageInfoService, bbsfTranslateService: BBSFTranslateService, utilityService: UtilityService, wfLogVariablesService: WorkflowLogVariablesService, modalService: NgbModal, requestHandlerService: RequestHandlerService);
|
|
67
|
+
ngOnInit(): Promise<void>;
|
|
68
|
+
getDetails(): void;
|
|
69
|
+
initializeWFVariables(): void;
|
|
70
|
+
setWorkflowVariablesListResult(result: any): void;
|
|
71
|
+
initializeTasks(): void;
|
|
72
|
+
setWorkflowTasksListResult(result: any): void;
|
|
73
|
+
initializeErrors(): void;
|
|
74
|
+
setWorkflowErrorsListResult(result: any): void;
|
|
75
|
+
initializeLogs(): void;
|
|
76
|
+
setWorkflowLogsListResult(result: any): void;
|
|
77
|
+
showLogVariables(logID: string, logVariablesModal: any): void;
|
|
78
|
+
ngOnDestroy(): void;
|
|
79
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InstanceInfoComponent, never>;
|
|
80
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InstanceInfoComponent, "lib-instance-info", never, {}, {}, never, never>;
|
|
81
|
+
}
|