digicust_types 1.8.386 → 1.8.388
Sign up to get free protection for your applications and to get access to all the features.
@@ -508,6 +508,7 @@ export interface ExecutionStrategy {
|
|
508
508
|
submission?: Submission;
|
509
509
|
doNotSendUploadNotification?: boolean;
|
510
510
|
doNotSendProcessedNotification?: boolean;
|
511
|
+
ruleSystem?: "default" | "chained";
|
511
512
|
events?: Event[];
|
512
513
|
rules?: Rule[];
|
513
514
|
userInputTemplates?: UserInputTemplate[];
|
@@ -18,7 +18,8 @@ export declare enum Permissions {
|
|
18
18
|
ViewMasterData = "view-master-data",
|
19
19
|
EditMasterData = "edit-master-data",
|
20
20
|
ViewExecutionStrategy = "view-execution-strategy",
|
21
|
-
EditExecutionStrategy = "edit-execution-strategy"
|
21
|
+
EditExecutionStrategy = "edit-execution-strategy",
|
22
|
+
ViewStatistics = "view-statistics"
|
22
23
|
}
|
23
24
|
export interface MembershipModel {
|
24
25
|
id?: string;
|
@@ -25,4 +25,5 @@ var Permissions;
|
|
25
25
|
Permissions["EditMasterData"] = "edit-master-data";
|
26
26
|
Permissions["ViewExecutionStrategy"] = "view-execution-strategy";
|
27
27
|
Permissions["EditExecutionStrategy"] = "edit-execution-strategy";
|
28
|
+
Permissions["ViewStatistics"] = "view-statistics";
|
28
29
|
})(Permissions || (exports.Permissions = Permissions = {}));
|