@dxs-ts/eveli-ide 2.0.18 → 2.0.20
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/dist/gitlog.json +1412 -16
- package/dist/index.d.ts +164 -1237
- package/dist/index.js +46583 -45844
- package/dist/trace.json +127 -77
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { AnyContext } from '@tanstack/router-core';
|
|
2
2
|
import { Breakpoints } from '@mui/system';
|
|
3
3
|
import { ButtonProps } from '@mui/material';
|
|
4
|
-
import { Column } from '@material-table/core';
|
|
5
|
-
import { ColumnDef } from '@tanstack/react-table';
|
|
6
4
|
import { CommonProps } from '@mui/material/OverridableComponent';
|
|
7
5
|
import { Components } from '@mui/material';
|
|
8
6
|
import { CSSInterpolation } from '@mui/material';
|
|
@@ -16,14 +14,12 @@ import { FormLabelOwnProps } from '@mui/material';
|
|
|
16
14
|
import { HTMLAttributes } from 'react';
|
|
17
15
|
import { InputLabelOwnProps } from '@mui/material';
|
|
18
16
|
import { Interpolation } from '@mui/material';
|
|
19
|
-
import { Localization } from '@material-table/core';
|
|
20
17
|
import { MUIStyledCommonProps } from '@mui/system';
|
|
21
18
|
import { OverridableComponent } from '@mui/material/OverridableComponent';
|
|
22
19
|
import { OverridesStyleRules } from '@mui/material/styles/overrides';
|
|
23
20
|
import { Palette } from '@mui/material';
|
|
24
21
|
import { PaletteOptions } from '@mui/material';
|
|
25
22
|
import { PropsWithChildren } from 'react';
|
|
26
|
-
import { Query } from '@material-table/core';
|
|
27
23
|
import { QueryObserverResult } from '@tanstack/react-query';
|
|
28
24
|
import { QueryResult } from '@material-table/core';
|
|
29
25
|
import * as React_2 from 'react';
|
|
@@ -39,7 +35,6 @@ import { StyledComponent } from '../../../node_modules/@emotion/styled';
|
|
|
39
35
|
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
40
36
|
import { SvgIconTypeMap } from '@mui/material';
|
|
41
37
|
import { SxProps } from '@mui/material';
|
|
42
|
-
import { Table } from '@tanstack/react-table';
|
|
43
38
|
import { Theme } from '@mui/material';
|
|
44
39
|
import { ThemeOptions } from '@mui/material';
|
|
45
40
|
import { TreeItem2Props } from '@mui/x-tree-view';
|
|
@@ -195,8 +190,6 @@ export declare interface CreateDialogProps {
|
|
|
195
190
|
config: DialobAdminConfig;
|
|
196
191
|
}
|
|
197
192
|
|
|
198
|
-
export declare const createMuiTableQueryString: <T extends {}>(query: Query<T>, columns: Column<any>[], dateFields?: string[]) => string;
|
|
199
|
-
|
|
200
193
|
export declare interface CsrfShape {
|
|
201
194
|
key: string;
|
|
202
195
|
value: string;
|
|
@@ -641,6 +634,7 @@ export declare const EveliFeatureMapping: {
|
|
|
641
634
|
PROFILE_ENABLED: (given: TenantFeature[]) => boolean;
|
|
642
635
|
SMART_TABLES: (given: TenantFeature[]) => boolean;
|
|
643
636
|
SMART_TASK: (given: TenantFeature[]) => boolean;
|
|
637
|
+
SMART_TASK_AUDIT: (given: TenantFeature[]) => boolean;
|
|
644
638
|
BATCHES: (given: TenantFeature[]) => boolean;
|
|
645
639
|
};
|
|
646
640
|
|
|
@@ -666,6 +660,31 @@ export declare interface EveliFlexHiddenProps {
|
|
|
666
660
|
|
|
667
661
|
export declare type EveliFlexProps = (EveliFlexHeaderProps | EveliFlexBodyProps | EveliFlexHiddenProps);
|
|
668
662
|
|
|
663
|
+
export declare interface EveliHealthTaskActivity {
|
|
664
|
+
id: string;
|
|
665
|
+
createdAt: string;
|
|
666
|
+
targetId: string;
|
|
667
|
+
targetIdType: string;
|
|
668
|
+
taskRef: string;
|
|
669
|
+
type: UserActivityType;
|
|
670
|
+
usedFor: string;
|
|
671
|
+
userName: string;
|
|
672
|
+
diagnosis?: string;
|
|
673
|
+
diagnosisDescription?: string;
|
|
674
|
+
customerId?: string;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
export declare interface EveliHealthUserActivity {
|
|
678
|
+
id: string;
|
|
679
|
+
createdAt: string;
|
|
680
|
+
targetId: string;
|
|
681
|
+
targetIdType: string;
|
|
682
|
+
taskRef: string;
|
|
683
|
+
type: UserActivityType;
|
|
684
|
+
usedFor: string;
|
|
685
|
+
userName: string;
|
|
686
|
+
}
|
|
687
|
+
|
|
669
688
|
export declare const EveliLayout: default_2.FC<EveliLayoutProps>;
|
|
670
689
|
|
|
671
690
|
export declare interface EveliLayoutClasses {
|
|
@@ -762,7 +781,9 @@ declare const EveliPermissionMapping: {
|
|
|
762
781
|
NAV_TO_WRENCH_DEBUG: (input: IamApi.UserPermission) => boolean;
|
|
763
782
|
NAV_TO_WRENCH_COMPARE: (input: IamApi.UserPermission) => boolean;
|
|
764
783
|
NAV_TO_WRENCH_RELEASES: (input: IamApi.UserPermission) => boolean;
|
|
784
|
+
NAV_TO_USER_PROFILE: (input: IamApi.UserPermission) => boolean;
|
|
765
785
|
NAV_TO_BATCHES: (input: IamApi.UserPermission) => boolean;
|
|
786
|
+
NAV_TO_HEALTH: (input: IamApi.UserPermission) => boolean;
|
|
766
787
|
CREATE_TASK: (input: IamApi.UserPermission) => boolean;
|
|
767
788
|
CREATE_STENCIL_ASSET: (input: IamApi.UserPermission) => boolean;
|
|
768
789
|
CREATE_WRENCH_ASSET: (input: IamApi.UserPermission) => boolean;
|
|
@@ -793,8 +814,6 @@ export declare interface EveliSearchProps {
|
|
|
793
814
|
children: default_2.ReactNode;
|
|
794
815
|
}
|
|
795
816
|
|
|
796
|
-
export declare const EveliServices: default_2.FC<{}>;
|
|
797
|
-
|
|
798
817
|
export declare const EveliShell: default_2.FC<EveliShellProps>;
|
|
799
818
|
|
|
800
819
|
export declare interface EveliShellClasses {
|
|
@@ -869,105 +888,12 @@ export declare interface EveliShellToolbarHeightOptions {
|
|
|
869
888
|
xl: number;
|
|
870
889
|
}
|
|
871
890
|
|
|
872
|
-
export declare const
|
|
873
|
-
|
|
874
|
-
export declare interface EveliTaskAttachmentsProps {
|
|
875
|
-
taskId: string;
|
|
876
|
-
readonly: boolean;
|
|
877
|
-
attachments: TaskApi.Attachment[];
|
|
878
|
-
setAttachments: default_2.Dispatch<default_2.SetStateAction<TaskApi.Attachment[]>>;
|
|
879
|
-
}
|
|
880
|
-
|
|
881
|
-
export declare const EveliTaskComments: default_2.FC<EveliTaskCommentsProps>;
|
|
882
|
-
|
|
883
|
-
export declare type EveliTaskCommentsProps = {
|
|
884
|
-
task: TaskApi.Task;
|
|
885
|
-
isExternalThread: boolean;
|
|
886
|
-
reload: () => void;
|
|
887
|
-
};
|
|
888
|
-
|
|
889
|
-
export declare const EveliTaskComposer: default_2.FC<EveliTaskComposerProps>;
|
|
890
|
-
|
|
891
|
-
export declare type EveliTaskComposerProps = {
|
|
892
|
-
taskId?: string;
|
|
893
|
-
};
|
|
894
|
-
|
|
895
|
-
export declare const EveliTaskDashboard: default_2.FC<{
|
|
896
|
-
taskId: string;
|
|
897
|
-
}>;
|
|
898
|
-
|
|
899
|
-
export declare const EveliTaskDashboardContext: default_2.Context<any>;
|
|
900
|
-
|
|
901
|
-
export declare const EveliTaskDashboardContextProvider: default_2.FC<{
|
|
902
|
-
taskId: string;
|
|
903
|
-
children: default_2.ReactElement;
|
|
904
|
-
}>;
|
|
905
|
-
|
|
906
|
-
declare interface EveliTaskDashboardContextType {
|
|
907
|
-
task: TaskApi.Task;
|
|
908
|
-
saveTask(changes: Partial<TaskApi.Task>): Promise<TaskApi.Task>;
|
|
909
|
-
saveCustomerComment(changes: {
|
|
910
|
-
commentText: string;
|
|
911
|
-
}): Promise<TaskApi.Task>;
|
|
912
|
-
saveTaskNote(changes: {
|
|
913
|
-
commentText: string;
|
|
914
|
-
}): Promise<TaskApi.Task>;
|
|
915
|
-
isTaskChanged(changes: Partial<TaskApi.Task>): boolean;
|
|
916
|
-
}
|
|
917
|
-
|
|
918
|
-
export declare const EveliTaskFeature: default_2.FC<{
|
|
919
|
-
children: default_2.ReactNode;
|
|
920
|
-
id: EveliTaskFeatureType;
|
|
921
|
-
}>;
|
|
891
|
+
export declare const EveliSpinner: default_2.FC;
|
|
922
892
|
|
|
923
|
-
export declare const
|
|
924
|
-
|
|
925
|
-
export declare interface EveliTaskFeatureContextType {
|
|
926
|
-
features: TaskApi.TaskFeatureType[];
|
|
927
|
-
}
|
|
928
|
-
|
|
929
|
-
declare const EveliTaskFeatureMapping: {
|
|
930
|
-
TASK_FEEDBACK: (input: TaskApi.TaskFeatureType[]) => boolean;
|
|
931
|
-
TASK_TRANSFER: (input: TaskApi.TaskFeatureType[]) => boolean;
|
|
932
|
-
CRM_MESSAGES: (input: TaskApi.TaskFeatureType[]) => boolean;
|
|
933
|
-
};
|
|
934
|
-
|
|
935
|
-
export declare const EveliTaskFeatureProvider: default_2.FC<EveliTaskFeatureProviderProps>;
|
|
936
|
-
|
|
937
|
-
export declare interface EveliTaskFeatureProviderProps {
|
|
938
|
-
children: default_2.ReactNode;
|
|
939
|
-
options: {
|
|
940
|
-
features?: TaskApi.TaskFeatureType[];
|
|
941
|
-
} | undefined | null;
|
|
942
|
-
}
|
|
943
|
-
|
|
944
|
-
export declare type EveliTaskFeatureType = keyof typeof EveliTaskFeatureMapping;
|
|
945
|
-
|
|
946
|
-
export declare const EveliTasks: default_2.FC;
|
|
947
|
-
|
|
948
|
-
export declare const EveliTasksTable: default_2.FC;
|
|
893
|
+
export declare const EveliTaskActivity: default_2.FC;
|
|
949
894
|
|
|
950
895
|
export declare const EveliTaskStats: default_2.FC;
|
|
951
896
|
|
|
952
|
-
export declare const EveliTaskTableContext: default_2.Context<TableState>;
|
|
953
|
-
|
|
954
|
-
export declare const EveliTaskTableProvider: default_2.FC<{
|
|
955
|
-
children: default_2.ReactNode;
|
|
956
|
-
}>;
|
|
957
|
-
|
|
958
|
-
export declare const EveliTaskTransfer: default_2.FC<EveliTaskTransferProps>;
|
|
959
|
-
|
|
960
|
-
export declare interface EveliTaskTransferProps {
|
|
961
|
-
task: TaskApi.Task;
|
|
962
|
-
onTransferComplete: () => void;
|
|
963
|
-
}
|
|
964
|
-
|
|
965
|
-
export declare const EveliTaskTransferStatusIndicator: default_2.FC<EveliTaskTransferStatusIndicatorProps>;
|
|
966
|
-
|
|
967
|
-
export declare interface EveliTaskTransferStatusIndicatorProps {
|
|
968
|
-
task: TaskApi.Task;
|
|
969
|
-
}
|
|
970
|
-
|
|
971
897
|
export declare const EveliTenantFeatureEnabled: default_2.FC<{
|
|
972
898
|
children: default_2.ReactNode;
|
|
973
899
|
id: EveliFeatureType;
|
|
@@ -983,34 +909,31 @@ export declare const eveliTheme: {
|
|
|
983
909
|
shadows: string[];
|
|
984
910
|
};
|
|
985
911
|
|
|
986
|
-
export declare const
|
|
987
|
-
|
|
988
|
-
export declare const FeedbackAllTasks: default_2.FC<FeedbackAllTasksProps>;
|
|
912
|
+
export declare const EveliUserActivity: default_2.FC;
|
|
989
913
|
|
|
990
|
-
declare
|
|
991
|
-
}
|
|
914
|
+
export declare const extractDate: (dateString: string | Date) => Date | null;
|
|
992
915
|
|
|
993
|
-
|
|
916
|
+
declare namespace FeedbackApi_2 {
|
|
994
917
|
}
|
|
995
918
|
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
919
|
+
declare namespace FeedbackApi_2 {
|
|
920
|
+
type ProcessId = string;
|
|
921
|
+
type UserId = string;
|
|
922
|
+
type FeedbackId = string;
|
|
923
|
+
type SourceId = string;
|
|
924
|
+
type TaskId = string;
|
|
925
|
+
type ReplyId = string;
|
|
926
|
+
type CategoryId = string;
|
|
927
|
+
type CustomerId = string;
|
|
928
|
+
interface FeedbackTopic {
|
|
1006
929
|
main: FeedbackTopicItem[];
|
|
1007
930
|
sub: FeedbackTopicItem[];
|
|
1008
931
|
}
|
|
1009
|
-
|
|
932
|
+
interface FeedbackTopicItem {
|
|
1010
933
|
labelKey: string;
|
|
1011
934
|
labelValue: string;
|
|
1012
935
|
}
|
|
1013
|
-
|
|
936
|
+
interface FeedbackContent {
|
|
1014
937
|
origin: string;
|
|
1015
938
|
customerTitle: string | undefined;
|
|
1016
939
|
labelKey: string;
|
|
@@ -1025,7 +948,7 @@ export declare namespace FeedbackApi {
|
|
|
1025
948
|
question: string | undefined;
|
|
1026
949
|
};
|
|
1027
950
|
}
|
|
1028
|
-
|
|
951
|
+
interface Feedback extends FeedbackContent {
|
|
1029
952
|
id: FeedbackId;
|
|
1030
953
|
sourceId: SourceId;
|
|
1031
954
|
replyText: string;
|
|
@@ -1035,7 +958,7 @@ export declare namespace FeedbackApi {
|
|
|
1035
958
|
thumbsUpCount: number;
|
|
1036
959
|
thumbsDownCount: number;
|
|
1037
960
|
}
|
|
1038
|
-
|
|
961
|
+
interface FeedbackTemplate extends FeedbackContent {
|
|
1039
962
|
processId: ProcessId;
|
|
1040
963
|
taskId: TaskId;
|
|
1041
964
|
userId: UserId;
|
|
@@ -1047,14 +970,14 @@ export declare namespace FeedbackApi {
|
|
|
1047
970
|
};
|
|
1048
971
|
};
|
|
1049
972
|
}
|
|
1050
|
-
|
|
973
|
+
interface FeedbackRating {
|
|
1051
974
|
id: string;
|
|
1052
975
|
replyId: ReplyId | undefined;
|
|
1053
976
|
categoryId: CategoryId;
|
|
1054
977
|
customerId: string;
|
|
1055
978
|
rating: number;
|
|
1056
979
|
}
|
|
1057
|
-
|
|
980
|
+
interface CreateFeedbackCommand {
|
|
1058
981
|
processId: ProcessId;
|
|
1059
982
|
taskId: TaskId;
|
|
1060
983
|
userId: UserId;
|
|
@@ -1074,9 +997,9 @@ export declare namespace FeedbackApi {
|
|
|
1074
997
|
subLabelValue?: string | undefined;
|
|
1075
998
|
customerTitle: string | undefined;
|
|
1076
999
|
}
|
|
1077
|
-
|
|
1000
|
+
interface ModifyOneFeedbackCommand {
|
|
1078
1001
|
}
|
|
1079
|
-
|
|
1002
|
+
interface ModifyOneFeedbackReplyCommand extends ModifyOneFeedbackCommand {
|
|
1080
1003
|
id: string;
|
|
1081
1004
|
commandType: 'MODIFY_ONE_FEEDBACK_REPLY';
|
|
1082
1005
|
reply: string;
|
|
@@ -1087,30 +1010,21 @@ export declare namespace FeedbackApi {
|
|
|
1087
1010
|
subLabelValue?: string | undefined;
|
|
1088
1011
|
customerTitle: string;
|
|
1089
1012
|
}
|
|
1090
|
-
|
|
1013
|
+
interface UpsertFeedbackRankingCommand extends ModifyOneFeedbackCommand {
|
|
1091
1014
|
replyIdOrCategoryId: string;
|
|
1092
1015
|
rating: number | undefined;
|
|
1093
1016
|
}
|
|
1094
1017
|
}
|
|
1095
1018
|
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
isTaskFeedbackEnabled: (taskId: FeedbackApi.TaskId) => Promise<true | false>;
|
|
1106
|
-
deleteOneFeedback: (taskId: FeedbackApi.TaskId) => Promise<FeedbackApi.Feedback>;
|
|
1107
|
-
getFeedbackTopics: (templateOrFeedback: FeedbackApi.FeedbackContent) => Promise<FeedbackApi.FeedbackTopic>;
|
|
1108
|
-
}
|
|
1109
|
-
|
|
1110
|
-
export declare const FeedbackProvider: default_2.FC<FeedbackProviderProps>;
|
|
1111
|
-
|
|
1112
|
-
export declare interface FeedbackProviderProps {
|
|
1113
|
-
children: default_2.ReactNode;
|
|
1019
|
+
declare interface FeedbackBackend {
|
|
1020
|
+
getOneTemplate: (taskId: FeedbackApi_2.TaskId) => Promise<FeedbackApi_2.FeedbackTemplate>;
|
|
1021
|
+
createOneFeedback: (taskId: FeedbackApi_2.TaskId, body: FeedbackApi_2.CreateFeedbackCommand) => Promise<FeedbackApi_2.Feedback>;
|
|
1022
|
+
modifyOneFeedback: (taskId: FeedbackApi_2.TaskId, body: FeedbackApi_2.ModifyOneFeedbackCommand) => Promise<FeedbackApi_2.Feedback>;
|
|
1023
|
+
rankOneFeedback: (taskId: FeedbackApi_2.TaskId, body: FeedbackApi_2.UpsertFeedbackRankingCommand) => Promise<FeedbackApi_2.Feedback>;
|
|
1024
|
+
findAllFeedback: () => Promise<FeedbackApi_2.Feedback[]>;
|
|
1025
|
+
getOneFeedback: (taskId: FeedbackApi_2.TaskId) => Promise<FeedbackApi_2.Feedback | undefined>;
|
|
1026
|
+
isTaskFeedbackEnabled: (taskId: FeedbackApi_2.TaskId) => Promise<true | false>;
|
|
1027
|
+
deleteOneFeedback: (taskId: FeedbackApi_2.TaskId) => Promise<FeedbackApi_2.Feedback>;
|
|
1114
1028
|
}
|
|
1115
1029
|
|
|
1116
1030
|
export declare type FetchAuthFunction = typeof window.fetch;
|
|
@@ -1142,7 +1056,6 @@ declare interface FileRoutesByFullPath {
|
|
|
1142
1056
|
'/secured/$locale/assets/forms/$formId': typeof SecuredLocaleAssetsFormsFormIdRoute;
|
|
1143
1057
|
'/secured/$locale/assets/forms': typeof SecuredLocaleAssetsFormsIndexRoute;
|
|
1144
1058
|
'/secured/$locale/assets/migrate': typeof SecuredLocaleAssetsMigrateIndexRoute;
|
|
1145
|
-
'/secured/$locale/assets/services': typeof SecuredLocaleAssetsServicesIndexRoute;
|
|
1146
1059
|
'/secured/$locale/assets/stencil': typeof SecuredLocaleAssetsStencilIndexRoute;
|
|
1147
1060
|
'/secured/$locale/assets/wrench': typeof SecuredLocaleAssetsWrenchIndexRoute;
|
|
1148
1061
|
'/secured/$locale/worker/batches/': typeof SecuredLocaleWorkerBatchesIndexRoute;
|
|
@@ -1151,7 +1064,9 @@ declare interface FileRoutesByFullPath {
|
|
|
1151
1064
|
'/secured/$locale/worker/help': typeof SecuredLocaleWorkerHelpIndexRoute;
|
|
1152
1065
|
'/secured/$locale/worker/monitoring': typeof SecuredLocaleWorkerMonitoringIndexRoute;
|
|
1153
1066
|
'/secured/$locale/worker/queues': typeof SecuredLocaleWorkerQueuesIndexRoute;
|
|
1067
|
+
'/secured/$locale/worker/task-activity': typeof SecuredLocaleWorkerTaskActivityIndexRoute;
|
|
1154
1068
|
'/secured/$locale/worker/tasks/': typeof SecuredLocaleWorkerTasksIndexRoute;
|
|
1069
|
+
'/secured/$locale/worker/user-activity': typeof SecuredLocaleWorkerUserActivityIndexRoute;
|
|
1155
1070
|
'/secured/$locale/worker/batches/$batchId': typeof SecuredLocaleWorkerBatchesBatchIdIndexRoute;
|
|
1156
1071
|
'/secured/$locale/worker/batches/create': typeof SecuredLocaleWorkerBatchesCreateIndexRoute;
|
|
1157
1072
|
'/secured/$locale/worker/feedback/$feedbackId': typeof SecuredLocaleWorkerFeedbackFeedbackIdIndexRoute;
|
|
@@ -1177,7 +1092,6 @@ declare interface FileRoutesById {
|
|
|
1177
1092
|
'/secured/$locale/assets/forms/$formId': typeof SecuredLocaleAssetsFormsFormIdRoute;
|
|
1178
1093
|
'/secured/$locale/assets/forms/': typeof SecuredLocaleAssetsFormsIndexRoute;
|
|
1179
1094
|
'/secured/$locale/assets/migrate/': typeof SecuredLocaleAssetsMigrateIndexRoute;
|
|
1180
|
-
'/secured/$locale/assets/services/': typeof SecuredLocaleAssetsServicesIndexRoute;
|
|
1181
1095
|
'/secured/$locale/assets/stencil/': typeof SecuredLocaleAssetsStencilIndexRoute;
|
|
1182
1096
|
'/secured/$locale/assets/wrench/': typeof SecuredLocaleAssetsWrenchIndexRoute;
|
|
1183
1097
|
'/secured/$locale/worker/batches/': typeof SecuredLocaleWorkerBatchesIndexRoute;
|
|
@@ -1186,7 +1100,9 @@ declare interface FileRoutesById {
|
|
|
1186
1100
|
'/secured/$locale/worker/help/': typeof SecuredLocaleWorkerHelpIndexRoute;
|
|
1187
1101
|
'/secured/$locale/worker/monitoring/': typeof SecuredLocaleWorkerMonitoringIndexRoute;
|
|
1188
1102
|
'/secured/$locale/worker/queues/': typeof SecuredLocaleWorkerQueuesIndexRoute;
|
|
1103
|
+
'/secured/$locale/worker/task-activity/': typeof SecuredLocaleWorkerTaskActivityIndexRoute;
|
|
1189
1104
|
'/secured/$locale/worker/tasks/': typeof SecuredLocaleWorkerTasksIndexRoute;
|
|
1105
|
+
'/secured/$locale/worker/user-activity/': typeof SecuredLocaleWorkerUserActivityIndexRoute;
|
|
1190
1106
|
'/secured/$locale/worker/batches/$batchId/': typeof SecuredLocaleWorkerBatchesBatchIdIndexRoute;
|
|
1191
1107
|
'/secured/$locale/worker/batches/create/': typeof SecuredLocaleWorkerBatchesCreateIndexRoute;
|
|
1192
1108
|
'/secured/$locale/worker/feedback/$feedbackId/': typeof SecuredLocaleWorkerFeedbackFeedbackIdIndexRoute;
|
|
@@ -1208,7 +1124,6 @@ declare interface FileRoutesByTo {
|
|
|
1208
1124
|
'/secured/$locale/assets/forms/$formId': typeof SecuredLocaleAssetsFormsFormIdRoute;
|
|
1209
1125
|
'/secured/$locale/assets/forms': typeof SecuredLocaleAssetsFormsIndexRoute;
|
|
1210
1126
|
'/secured/$locale/assets/migrate': typeof SecuredLocaleAssetsMigrateIndexRoute;
|
|
1211
|
-
'/secured/$locale/assets/services': typeof SecuredLocaleAssetsServicesIndexRoute;
|
|
1212
1127
|
'/secured/$locale/assets/stencil': typeof SecuredLocaleAssetsStencilIndexRoute;
|
|
1213
1128
|
'/secured/$locale/assets/wrench': typeof SecuredLocaleAssetsWrenchIndexRoute;
|
|
1214
1129
|
'/secured/$locale/worker/batches': typeof SecuredLocaleWorkerBatchesIndexRoute;
|
|
@@ -1217,7 +1132,9 @@ declare interface FileRoutesByTo {
|
|
|
1217
1132
|
'/secured/$locale/worker/help': typeof SecuredLocaleWorkerHelpIndexRoute;
|
|
1218
1133
|
'/secured/$locale/worker/monitoring': typeof SecuredLocaleWorkerMonitoringIndexRoute;
|
|
1219
1134
|
'/secured/$locale/worker/queues': typeof SecuredLocaleWorkerQueuesIndexRoute;
|
|
1135
|
+
'/secured/$locale/worker/task-activity': typeof SecuredLocaleWorkerTaskActivityIndexRoute;
|
|
1220
1136
|
'/secured/$locale/worker/tasks': typeof SecuredLocaleWorkerTasksIndexRoute;
|
|
1137
|
+
'/secured/$locale/worker/user-activity': typeof SecuredLocaleWorkerUserActivityIndexRoute;
|
|
1221
1138
|
'/secured/$locale/worker/batches/$batchId': typeof SecuredLocaleWorkerBatchesBatchIdIndexRoute;
|
|
1222
1139
|
'/secured/$locale/worker/batches/create': typeof SecuredLocaleWorkerBatchesCreateIndexRoute;
|
|
1223
1140
|
'/secured/$locale/worker/feedback/$feedbackId': typeof SecuredLocaleWorkerFeedbackFeedbackIdIndexRoute;
|
|
@@ -1230,10 +1147,10 @@ declare interface FileRoutesByTo {
|
|
|
1230
1147
|
|
|
1231
1148
|
export declare interface FileRouteTypes {
|
|
1232
1149
|
fileRoutesByFullPath: FileRoutesByFullPath;
|
|
1233
|
-
fullPaths: '/' | '/secured/$locale' | '/public/$locale/auth' | '/secured/$locale/assets' | '/secured/$locale/worker' | '/secured/$locale/' | '/secured/$locale/worker/batches' | '/secured/$locale/worker/profile' | '/secured/$locale/worker/tasks' | '/secured/$locale/publications' | '/secured/$locale/assets/forms/$formId' | '/secured/$locale/assets/forms' | '/secured/$locale/assets/migrate' | '/secured/$locale/assets/
|
|
1150
|
+
fullPaths: '/' | '/secured/$locale' | '/public/$locale/auth' | '/secured/$locale/assets' | '/secured/$locale/worker' | '/secured/$locale/' | '/secured/$locale/worker/batches' | '/secured/$locale/worker/profile' | '/secured/$locale/worker/tasks' | '/secured/$locale/publications' | '/secured/$locale/assets/forms/$formId' | '/secured/$locale/assets/forms' | '/secured/$locale/assets/migrate' | '/secured/$locale/assets/stencil' | '/secured/$locale/assets/wrench' | '/secured/$locale/worker/batches/' | '/secured/$locale/worker/dashboard' | '/secured/$locale/worker/feedback' | '/secured/$locale/worker/help' | '/secured/$locale/worker/monitoring' | '/secured/$locale/worker/queues' | '/secured/$locale/worker/task-activity' | '/secured/$locale/worker/tasks/' | '/secured/$locale/worker/user-activity' | '/secured/$locale/worker/batches/$batchId' | '/secured/$locale/worker/batches/create' | '/secured/$locale/worker/feedback/$feedbackId' | '/secured/$locale/worker/queues/deliveries' | '/secured/$locale/worker/queues/messages' | '/secured/$locale/worker/tasks/$taskId' | '/secured/$locale/worker/tasks/create' | '/secured/$locale/worker/batches/$batchId/steps/$stepId';
|
|
1234
1151
|
fileRoutesByTo: FileRoutesByTo;
|
|
1235
|
-
to: '/' | '/public/$locale/auth' | '/secured/$locale/assets' | '/secured/$locale/worker' | '/secured/$locale' | '/secured/$locale/worker/profile' | '/secured/$locale/publications' | '/secured/$locale/assets/forms/$formId' | '/secured/$locale/assets/forms' | '/secured/$locale/assets/migrate' | '/secured/$locale/assets/
|
|
1236
|
-
id: '__root__' | '/' | '/secured/$locale' | '/public/$locale/auth' | '/secured/$locale/assets' | '/secured/$locale/worker' | '/secured/$locale/' | '/secured/$locale/worker/batches' | '/secured/$locale/worker/profile' | '/secured/$locale/worker/tasks' | '/secured/$locale/publications/' | '/secured/$locale/assets/forms/$formId' | '/secured/$locale/assets/forms/' | '/secured/$locale/assets/migrate/' | '/secured/$locale/assets/
|
|
1152
|
+
to: '/' | '/public/$locale/auth' | '/secured/$locale/assets' | '/secured/$locale/worker' | '/secured/$locale' | '/secured/$locale/worker/profile' | '/secured/$locale/publications' | '/secured/$locale/assets/forms/$formId' | '/secured/$locale/assets/forms' | '/secured/$locale/assets/migrate' | '/secured/$locale/assets/stencil' | '/secured/$locale/assets/wrench' | '/secured/$locale/worker/batches' | '/secured/$locale/worker/dashboard' | '/secured/$locale/worker/feedback' | '/secured/$locale/worker/help' | '/secured/$locale/worker/monitoring' | '/secured/$locale/worker/queues' | '/secured/$locale/worker/task-activity' | '/secured/$locale/worker/tasks' | '/secured/$locale/worker/user-activity' | '/secured/$locale/worker/batches/$batchId' | '/secured/$locale/worker/batches/create' | '/secured/$locale/worker/feedback/$feedbackId' | '/secured/$locale/worker/queues/deliveries' | '/secured/$locale/worker/queues/messages' | '/secured/$locale/worker/tasks/$taskId' | '/secured/$locale/worker/tasks/create' | '/secured/$locale/worker/batches/$batchId/steps/$stepId';
|
|
1153
|
+
id: '__root__' | '/' | '/secured/$locale' | '/public/$locale/auth' | '/secured/$locale/assets' | '/secured/$locale/worker' | '/secured/$locale/' | '/secured/$locale/worker/batches' | '/secured/$locale/worker/profile' | '/secured/$locale/worker/tasks' | '/secured/$locale/publications/' | '/secured/$locale/assets/forms/$formId' | '/secured/$locale/assets/forms/' | '/secured/$locale/assets/migrate/' | '/secured/$locale/assets/stencil/' | '/secured/$locale/assets/wrench/' | '/secured/$locale/worker/batches/' | '/secured/$locale/worker/dashboard/' | '/secured/$locale/worker/feedback/' | '/secured/$locale/worker/help/' | '/secured/$locale/worker/monitoring/' | '/secured/$locale/worker/queues/' | '/secured/$locale/worker/task-activity/' | '/secured/$locale/worker/tasks/' | '/secured/$locale/worker/user-activity/' | '/secured/$locale/worker/batches/$batchId/' | '/secured/$locale/worker/batches/create/' | '/secured/$locale/worker/feedback/$feedbackId/' | '/secured/$locale/worker/queues/deliveries/' | '/secured/$locale/worker/queues/messages/' | '/secured/$locale/worker/tasks/$taskId/' | '/secured/$locale/worker/tasks/create/' | '/secured/$locale/worker/batches/$batchId/steps/$stepId/';
|
|
1237
1154
|
fileRoutesById: FileRoutesById;
|
|
1238
1155
|
}
|
|
1239
1156
|
|
|
@@ -1334,7 +1251,7 @@ export declare namespace IamApi {
|
|
|
1334
1251
|
}
|
|
1335
1252
|
|
|
1336
1253
|
export declare namespace IamApi {
|
|
1337
|
-
export type UserPermission = 'WRENCH_VIEW' | 'WRENCH_EDIT' | 'STENCIL_VIEW' | 'STENCIL_EDIT' | 'TASK_ALL_VIEW' | 'TASK_ALL_EDIT' | 'TASK_ALL_DELETE' | 'TASK_GROUP_VIEW' | 'TASK_GROUP_EDIT' | 'RELEASE_VIEW' | 'RELEASE_EDIT' | 'DEPLOYMENT_VIEW' | 'DEPLOYMENT_EDIT' | 'DASHBOARD_VIEW' | 'FEEDBACK_VIEW' | 'FEEBACK_EDIT' | 'DIALOB_VIEW' | 'DIALOB_EDIT' | 'TABLES_V2' | 'BATCH_VIEW' | 'BATCH_EDIT' | 'TASK_REOPEN';
|
|
1254
|
+
export type UserPermission = 'WRENCH_VIEW' | 'WRENCH_EDIT' | 'STENCIL_VIEW' | 'STENCIL_EDIT' | 'TASK_ALL_VIEW' | 'TASK_ALL_EDIT' | 'TASK_ALL_DELETE' | 'TASK_GROUP_VIEW' | 'TASK_GROUP_EDIT' | 'RELEASE_VIEW' | 'RELEASE_EDIT' | 'DEPLOYMENT_VIEW' | 'DEPLOYMENT_EDIT' | 'DASHBOARD_VIEW' | 'FEEDBACK_VIEW' | 'FEEBACK_EDIT' | 'DIALOB_VIEW' | 'DIALOB_EDIT' | 'TABLES_V2' | 'BATCH_VIEW' | 'BATCH_EDIT' | 'TASK_REOPEN' | 'USER_PROFILE_EDIT' | 'HEALTH_VIEW';
|
|
1338
1255
|
export interface User {
|
|
1339
1256
|
userId: string;
|
|
1340
1257
|
name: string;
|
|
@@ -1399,7 +1316,7 @@ declare const IndexRoute: Route<RootRoute<undefined, {}, AnyContext, AnyContext,
|
|
|
1399
1316
|
|
|
1400
1317
|
export declare const InputLabel: StyledComponent<InputLabelOwnProps & Pick<FormLabelOwnProps, "color" | "filled"> & CommonProps & Omit<Omit<default_2.DetailedHTMLProps<default_2.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "ref"> & {
|
|
1401
1318
|
ref?: ((instance: HTMLLabelElement | null) => void | default_2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof default_2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | default_2.RefObject<HTMLLabelElement> | null | undefined;
|
|
1402
|
-
}, "children" | "
|
|
1319
|
+
}, "children" | "size" | "style" | "className" | "color" | "margin" | "filled" | "disabled" | "sx" | "required" | "classes" | "variant" | "error" | "focused" | "disableAnimation" | "shrink"> & MUIStyledCommonProps<Theme>, {}, {}>;
|
|
1403
1320
|
|
|
1404
1321
|
export declare enum LabelAction {
|
|
1405
1322
|
ADD = "ADD",
|
|
@@ -1448,28 +1365,14 @@ export declare const mapIamRole: (role?: string | null) => string;
|
|
|
1448
1365
|
export declare const messages: {
|
|
1449
1366
|
en: {
|
|
1450
1367
|
'document.title': string;
|
|
1451
|
-
'booleanValue.true': string;
|
|
1452
|
-
'booleanValue.false': string;
|
|
1453
1368
|
'eveli.textSeparatorColon': string;
|
|
1454
1369
|
'eveli.noValueIndicator': string;
|
|
1455
1370
|
'eveli.permissions.none.title': string;
|
|
1456
1371
|
'eveli.permissions.none.desc1': string;
|
|
1457
1372
|
'eveli.permissions.none.desc2': string;
|
|
1458
1373
|
'tasksView.title': string;
|
|
1459
|
-
'tasksTableHeader.taskName': string;
|
|
1460
|
-
'tasksTableHeader.category': string;
|
|
1461
|
-
'tasksTableHeader.status': string;
|
|
1462
|
-
'tasksTableHeader.dueDate': string;
|
|
1463
|
-
'tasksTableHeader.priority': string;
|
|
1464
|
-
'tasksTableHeader.assigned': string;
|
|
1465
|
-
'tasksTableAction.editTask': string;
|
|
1466
|
-
'tasksTableAction.deleteTask': string;
|
|
1467
|
-
'taskPriority.low': string;
|
|
1468
|
-
'taskPriority.normal': string;
|
|
1469
|
-
'taskPriority.high': string;
|
|
1470
1374
|
'taskDialog.priority': string;
|
|
1471
1375
|
'taskDialog.subject': string;
|
|
1472
|
-
'taskDialog.description': string;
|
|
1473
1376
|
'taskDialog.dueDate': string;
|
|
1474
1377
|
'taskDialog.assignedTo': string;
|
|
1475
1378
|
'taskDialog.assignedUser': string;
|
|
@@ -1481,7 +1384,6 @@ export declare const messages: {
|
|
|
1481
1384
|
'task.priority.low': string;
|
|
1482
1385
|
'task.priority.normal': string;
|
|
1483
1386
|
'task.priority.high': string;
|
|
1484
|
-
'task.status.new': string;
|
|
1485
1387
|
'task.dueDate': string;
|
|
1486
1388
|
'task.customerMessages': string;
|
|
1487
1389
|
'task.edit': string;
|
|
@@ -1489,6 +1391,7 @@ export declare const messages: {
|
|
|
1489
1391
|
'task.subject': string;
|
|
1490
1392
|
'task.additionalInfo': string;
|
|
1491
1393
|
'task.metaData': string;
|
|
1394
|
+
'task.status.new': string;
|
|
1492
1395
|
'task.status.open': string;
|
|
1493
1396
|
'task.status.completed': string;
|
|
1494
1397
|
'task.status.rejected': string;
|
|
@@ -1496,24 +1399,19 @@ export declare const messages: {
|
|
|
1496
1399
|
'task.status.delegated': string;
|
|
1497
1400
|
'task.status.waiting': string;
|
|
1498
1401
|
'task.form.review': string;
|
|
1499
|
-
'task.form.feedback.manage': string;
|
|
1500
|
-
'task.form.feedback.updated': string;
|
|
1501
1402
|
'task.created': string;
|
|
1502
1403
|
'task.updated': string;
|
|
1503
|
-
comments: string;
|
|
1504
1404
|
'task.comments.external.createTask': string;
|
|
1505
1405
|
'task.comments.internal.createTask': string;
|
|
1506
1406
|
'task.attachments.createTask': string;
|
|
1507
1407
|
'task.comments.external.added': string;
|
|
1508
1408
|
'task.feedback.publishedSaved': string;
|
|
1509
|
-
'task.comments.internal.added': string;
|
|
1510
1409
|
internalComments: string;
|
|
1511
1410
|
externalComments: string;
|
|
1512
1411
|
'comment.store': string;
|
|
1513
1412
|
'comment.add': string;
|
|
1514
1413
|
'comment.addInternal': string;
|
|
1515
1414
|
'comment.addExternal': string;
|
|
1516
|
-
'comment.reply': string;
|
|
1517
1415
|
'taskButton.addTask': string;
|
|
1518
1416
|
'taskButton.refresh': string;
|
|
1519
1417
|
'taskButton.accept': string;
|
|
@@ -1521,9 +1419,6 @@ export declare const messages: {
|
|
|
1521
1419
|
'table.body.emptyDataSourceMessage': string;
|
|
1522
1420
|
'table.body.filterRow.filterTooltip': string;
|
|
1523
1421
|
'table.body.deleteTooltip': string;
|
|
1524
|
-
'table.body.editRow.deleteText': string;
|
|
1525
|
-
'table.body.editRow.cancelTask': string;
|
|
1526
|
-
'table.body.editRow.saveTask': string;
|
|
1527
1422
|
'table.header.actions': string;
|
|
1528
1423
|
'table.pagination.labelDisplayedRows': string;
|
|
1529
1424
|
'table.pagination.labelRowsPerPage': string;
|
|
@@ -1534,62 +1429,41 @@ export declare const messages: {
|
|
|
1534
1429
|
'table.toolbar.search': string;
|
|
1535
1430
|
'table.toolbar.showColumnsTitle': string;
|
|
1536
1431
|
'table.toolbar.addRemoveColumns': string;
|
|
1537
|
-
'taskLink.title': string;
|
|
1538
|
-
'taskLink.button.open': string;
|
|
1539
1432
|
'taskLink.pdf.open': string;
|
|
1540
|
-
'explorer.title': string;
|
|
1541
1433
|
'explorer.login': string;
|
|
1542
1434
|
'locale.fi': string;
|
|
1543
1435
|
'locale.sv': string;
|
|
1544
1436
|
'locale.en': string;
|
|
1545
|
-
'app.logout': string;
|
|
1546
|
-
'app.login': string;
|
|
1547
|
-
'app.feedback': string;
|
|
1548
1437
|
'main.articles.all': string;
|
|
1549
1438
|
'main.links.all': string;
|
|
1550
1439
|
'main.services.all': string;
|
|
1551
1440
|
'main.flows.all': string;
|
|
1552
1441
|
'main.debug': string;
|
|
1553
|
-
'main.compare': string;
|
|
1554
1442
|
'main.decisions.all': string;
|
|
1555
1443
|
'menu.dashboard': string;
|
|
1556
1444
|
'menu.profile': string;
|
|
1557
1445
|
'menu.tasks': string;
|
|
1558
|
-
'menu.evaluations': string;
|
|
1559
1446
|
'menu.forms': string;
|
|
1560
1447
|
'menu.queues': string;
|
|
1561
|
-
'menu.users': string;
|
|
1562
1448
|
'menu.help': string;
|
|
1563
|
-
'menu.flow': string;
|
|
1564
1449
|
'menu.processes': string;
|
|
1565
|
-
'menu.reports': string;
|
|
1566
|
-
'menu.workflows': string;
|
|
1567
1450
|
'menu.logout': string;
|
|
1568
|
-
'menu.workflowTags': string;
|
|
1569
1451
|
'menu.publications': string;
|
|
1570
1452
|
'menu.services': string;
|
|
1571
|
-
'menu.content': string;
|
|
1572
|
-
'menu.calendar': string;
|
|
1573
1453
|
'menu.feedback': string;
|
|
1574
1454
|
'menu.compose': string;
|
|
1575
|
-
'menu.pages': string;
|
|
1576
1455
|
'menu.articles': string;
|
|
1577
1456
|
'menu.links': string;
|
|
1578
1457
|
'menu.locales': string;
|
|
1579
|
-
'menu.migrations': string;
|
|
1580
1458
|
'menu.templates': string;
|
|
1581
1459
|
'menu.flows': string;
|
|
1582
1460
|
'menu.decisions': string;
|
|
1583
1461
|
'menu.debug': string;
|
|
1584
1462
|
'menu.releases': string;
|
|
1585
1463
|
'menu.compare': string;
|
|
1586
|
-
'front.intro.title': string;
|
|
1587
|
-
'profile.title': string;
|
|
1588
1464
|
'profile.user.name': string;
|
|
1589
1465
|
'profile.user.email': string;
|
|
1590
1466
|
'profile.user.role': string;
|
|
1591
|
-
'profile.user.phone': string;
|
|
1592
|
-
'profile.app.version': string;
|
|
1593
1467
|
'button.cancel': string;
|
|
1594
1468
|
'button.confirmDelete': string;
|
|
1595
1469
|
'button.delete': string;
|
|
@@ -1597,17 +1471,12 @@ export declare const messages: {
|
|
|
1597
1471
|
'button.delete.link': string;
|
|
1598
1472
|
'button.delete.article': string;
|
|
1599
1473
|
'button.delete.page': string;
|
|
1600
|
-
'button.unpublish': string;
|
|
1601
1474
|
'button.update': string;
|
|
1602
1475
|
'button.publish': string;
|
|
1603
1476
|
'button.accept': string;
|
|
1604
|
-
'button.edit': string;
|
|
1605
1477
|
'button.close': string;
|
|
1606
|
-
'button.reject': string;
|
|
1607
|
-
'button.send': string;
|
|
1608
1478
|
'button.save': string;
|
|
1609
1479
|
'button.dismiss': string;
|
|
1610
|
-
'button.editRoles': string;
|
|
1611
1480
|
'button.select': string;
|
|
1612
1481
|
'button.startBatch': string;
|
|
1613
1482
|
'error.minTextLength': string;
|
|
@@ -1622,15 +1491,12 @@ export declare const messages: {
|
|
|
1622
1491
|
'error.dataAccess': string;
|
|
1623
1492
|
'error.statusOpenError': string;
|
|
1624
1493
|
'error.workflowCreation': string;
|
|
1625
|
-
'table.body.addTooltip': string;
|
|
1626
|
-
'table.body.editTooltip': string;
|
|
1627
1494
|
'table.body.editRow.deleteMessage': string;
|
|
1628
1495
|
'workflowTable.title': string;
|
|
1629
1496
|
'workflowTableHeader.name': string;
|
|
1630
1497
|
'workflowTableHeader.formName': string;
|
|
1631
1498
|
'workflowTableHeader.flowName': string;
|
|
1632
1499
|
'workflowTableHeader.updated': string;
|
|
1633
|
-
'workflowTable.addButton': string;
|
|
1634
1500
|
'workflowTable.editButton': string;
|
|
1635
1501
|
'workflow.dialogTitle': string;
|
|
1636
1502
|
'workflow.name': string;
|
|
@@ -1639,7 +1505,6 @@ export declare const messages: {
|
|
|
1639
1505
|
'workflow.flowName': string;
|
|
1640
1506
|
'processTable.title': string;
|
|
1641
1507
|
'processTableHeader.workflow': string;
|
|
1642
|
-
'processTableHeader.user': string;
|
|
1643
1508
|
'processTableHeader.status': string;
|
|
1644
1509
|
'processTableHeader.created': string;
|
|
1645
1510
|
'processTableHeader.questionnaireId': string;
|
|
@@ -1651,18 +1516,7 @@ export declare const messages: {
|
|
|
1651
1516
|
'process.status.WAITING': string;
|
|
1652
1517
|
'process.status.COMPLETED': string;
|
|
1653
1518
|
'process.status.REJECTED': string;
|
|
1654
|
-
'comment.button': string;
|
|
1655
|
-
'comment.title': string;
|
|
1656
|
-
'comment.form.email': string;
|
|
1657
|
-
'comment.form.feedbackType': string;
|
|
1658
|
-
'comment.form.body': string;
|
|
1659
|
-
'comment.type.general': string;
|
|
1660
|
-
'comment.type.propose': string;
|
|
1661
|
-
'comment.type.contact': string;
|
|
1662
|
-
'comment.submitted.success': string;
|
|
1663
|
-
'comment.submitted.failure': string;
|
|
1664
1519
|
'spoTasksTableHeader.taskName': string;
|
|
1665
|
-
'spoTasksTableHeader.category': string;
|
|
1666
1520
|
'spoTasksTableHeader.status': string;
|
|
1667
1521
|
'spoTasksTableHeader.priority': string;
|
|
1668
1522
|
'spoTasksTableHeader.dueDate': string;
|
|
@@ -1672,13 +1526,9 @@ export declare const messages: {
|
|
|
1672
1526
|
'spoTasksTableHeader.clientName': string;
|
|
1673
1527
|
'spoTasksTableHeader.additionalInfo': string;
|
|
1674
1528
|
'taskDialog.clientIdentificator': string;
|
|
1675
|
-
'taskDialog.assignedUserEmail': string;
|
|
1676
|
-
'task.editRoles': string;
|
|
1677
|
-
Questionnaire: string;
|
|
1678
1529
|
Manual: string;
|
|
1679
1530
|
Protected: string;
|
|
1680
1531
|
Normal: string;
|
|
1681
|
-
Represented: string;
|
|
1682
1532
|
CustomerCreated: string;
|
|
1683
1533
|
Internal: string;
|
|
1684
1534
|
'task.role.assignedAllUsers': string;
|
|
@@ -1689,31 +1539,16 @@ export declare const messages: {
|
|
|
1689
1539
|
'task.statistics.priorityCount': string;
|
|
1690
1540
|
'task.statistics.daily': string;
|
|
1691
1541
|
'task.statistics.overdue': string;
|
|
1692
|
-
'feedback.button': string;
|
|
1693
|
-
'feedback.thanks': string;
|
|
1694
1542
|
'feedback.create.title': string;
|
|
1695
|
-
'feedback.title': string;
|
|
1696
1543
|
'feedback.update.title': string;
|
|
1697
|
-
'feedback.description': string;
|
|
1698
|
-
'feedback.name': string;
|
|
1699
|
-
'feedback.sendScreenshot': string;
|
|
1700
|
-
'feedback.close': string;
|
|
1701
|
-
'feedback.send': string;
|
|
1702
1544
|
'feedback.taskReferenceId': string;
|
|
1703
1545
|
'feedback.taskReferenceId.short': string;
|
|
1704
|
-
'feedback.taskId': string;
|
|
1705
1546
|
'feedback.mainCategory': string;
|
|
1706
1547
|
'feedback.subCategory': string;
|
|
1707
1548
|
'feedback.feedbackValue': string;
|
|
1708
1549
|
'feedback.customerTitle': string;
|
|
1709
1550
|
'feedback.myReply': string;
|
|
1710
|
-
'feedback.noFeedback.info1': string;
|
|
1711
|
-
'feedback.noFeedback.info2': string;
|
|
1712
|
-
'feedback.customerFeedback': string;
|
|
1713
1551
|
'feedback.customerApprovals': string;
|
|
1714
|
-
'feedback.sourceTaskId': string;
|
|
1715
|
-
'feedback.formName': string;
|
|
1716
|
-
'feedback.dateReceived': string;
|
|
1717
1552
|
'feedback.createdBy': string;
|
|
1718
1553
|
'feedback.updatedBy': string;
|
|
1719
1554
|
'feedback.updated': string;
|
|
@@ -1736,7 +1571,6 @@ export declare const messages: {
|
|
|
1736
1571
|
'help.title': string;
|
|
1737
1572
|
'attachmentView.title': string;
|
|
1738
1573
|
'attachmentTableHeader.size': string;
|
|
1739
|
-
'attachmentTableHeader.updated': string;
|
|
1740
1574
|
'attachmentTableHeader.created': string;
|
|
1741
1575
|
'attachmentTableHeader.name': string;
|
|
1742
1576
|
'attachmentButton.addAttachment': string;
|
|
@@ -1747,29 +1581,13 @@ export declare const messages: {
|
|
|
1747
1581
|
'attachment.delete.confirmTitle': string;
|
|
1748
1582
|
'attachment.delete.confirmText': string;
|
|
1749
1583
|
'attachment.deleteFailed': string;
|
|
1750
|
-
'workflowReleaseTable.title': string;
|
|
1751
|
-
'workflowReleaseTableHeader.name': string;
|
|
1752
|
-
'workflowReleaseTableHeader.description': string;
|
|
1753
|
-
'workflowReleaseTableHeader.updatedBy': string;
|
|
1754
|
-
'workflowReleaseTableHeader.updated': string;
|
|
1755
|
-
'workflowReleaseTable.addButton': string;
|
|
1756
|
-
'workflowReleaseTable.viewButton': string;
|
|
1757
|
-
'workflowReleaseTable.exportButton': string;
|
|
1758
|
-
'workflowRelease.dialogTitle': string;
|
|
1759
|
-
'workflowRelease.name': string;
|
|
1760
|
-
'workflowRelease.description': string;
|
|
1761
|
-
'workflowRelease.releaseCreationFailed': string;
|
|
1762
1584
|
'publicationsTable.title': string;
|
|
1763
1585
|
'publicationsTableHeader.name': string;
|
|
1764
1586
|
'publicationsTableHeader.description': string;
|
|
1765
1587
|
'publicationsTableHeader.createdBy': string;
|
|
1766
1588
|
'publicationsTableHeader.created': string;
|
|
1767
|
-
'publicationsTableHeader.contentTag': string;
|
|
1768
|
-
'publicationsTableHeader.workflowTag': string;
|
|
1769
|
-
'publicationsTableHeader.wrenchTag': string;
|
|
1770
1589
|
'publicationsTableHeader.liveDate': string;
|
|
1771
1590
|
'publicationsTable.addButton': string;
|
|
1772
|
-
'publicationsTable.viewButton': string;
|
|
1773
1591
|
'publicationsTable.exportButton': string;
|
|
1774
1592
|
'publicationsTable.uploadButton': string;
|
|
1775
1593
|
'publications.external': string;
|
|
@@ -1787,48 +1605,25 @@ export declare const messages: {
|
|
|
1787
1605
|
'publications.downloadFailed': string;
|
|
1788
1606
|
'publications.tagCreationFailed': string;
|
|
1789
1607
|
'publications.uploadDialogTitle': string;
|
|
1790
|
-
'dialobForms.dialog.heading': string;
|
|
1791
|
-
'dialobForms.table.tooltip.add': string;
|
|
1792
|
-
'dialobForms.table.label': string;
|
|
1793
|
-
'dialobForms.table.created': string;
|
|
1794
|
-
'dialobForms.table.lastSaved': string;
|
|
1795
|
-
'dialobForms.table.tooltip.edit': string;
|
|
1796
|
-
'dialobForms.dialog.emptyTitle': string;
|
|
1797
|
-
'dialobForms.table.tooltip.copy': string;
|
|
1798
|
-
'dialobForms.table.tooltip.delete': string;
|
|
1799
1608
|
'dialobForm.saveFailed': string;
|
|
1800
1609
|
'dialobForm.downloadFailed': string;
|
|
1801
1610
|
'dialobForm.deleteFailed': string;
|
|
1802
|
-
'dialobForm.heading.copyDialog': string;
|
|
1803
|
-
'dialobForm.heading.addDialog': string;
|
|
1804
|
-
'dialobForm.dialog.formName': string;
|
|
1805
|
-
'dialobForm.dialog.formLabel': string;
|
|
1806
|
-
'dialobForm.error.invalidFormName': string;
|
|
1807
|
-
'dialobForm.dialog.deleteQuestion': string;
|
|
1808
|
-
'dialobForm.heading.deleteDialog': string;
|
|
1809
1611
|
'dialobForm.review.title': string;
|
|
1810
1612
|
'feedback.notenabled': string;
|
|
1811
1613
|
pages: string;
|
|
1812
1614
|
articles: string;
|
|
1813
1615
|
locale: string;
|
|
1814
1616
|
locales: string;
|
|
1815
|
-
tag: string;
|
|
1816
1617
|
links: string;
|
|
1817
1618
|
releases: string;
|
|
1818
1619
|
options: string;
|
|
1819
1620
|
value: string;
|
|
1820
1621
|
date: string;
|
|
1821
|
-
order: string;
|
|
1822
1622
|
description: string;
|
|
1823
1623
|
name: string;
|
|
1824
|
-
delete: string;
|
|
1825
1624
|
download: string;
|
|
1826
|
-
disable: string;
|
|
1827
1625
|
status: string;
|
|
1828
1626
|
created: string;
|
|
1829
|
-
modified: string;
|
|
1830
|
-
rename: string;
|
|
1831
|
-
reorder: string;
|
|
1832
1627
|
remove: string;
|
|
1833
1628
|
'site.content.empty': string;
|
|
1834
1629
|
'composer.select.article': string;
|
|
@@ -1842,8 +1637,6 @@ export declare const messages: {
|
|
|
1842
1637
|
'search.templates': string;
|
|
1843
1638
|
'search.flows': string;
|
|
1844
1639
|
'search.decisions': string;
|
|
1845
|
-
'activities.title': string;
|
|
1846
|
-
'activities.desc': string;
|
|
1847
1640
|
'activities.article.title': string;
|
|
1848
1641
|
'activities.article.desc': string;
|
|
1849
1642
|
'activities.locale.title': string;
|
|
@@ -1887,7 +1680,6 @@ export declare const messages: {
|
|
|
1887
1680
|
'services.change': string;
|
|
1888
1681
|
'services.edit': string;
|
|
1889
1682
|
'services.technicalname': string;
|
|
1890
|
-
'services.technicalname.description': string;
|
|
1891
1683
|
'services.selected': string;
|
|
1892
1684
|
'services.modeselect.title': string;
|
|
1893
1685
|
'services.modeselect.label': string;
|
|
@@ -1904,7 +1696,6 @@ export declare const messages: {
|
|
|
1904
1696
|
'services.anonmode.label': string;
|
|
1905
1697
|
'services.anonmode.tooltip': string;
|
|
1906
1698
|
'services.flowName': string;
|
|
1907
|
-
'services.flowName.description': string;
|
|
1908
1699
|
'services.formName': string;
|
|
1909
1700
|
'services.formName.description': string;
|
|
1910
1701
|
'services.formTag': string;
|
|
@@ -1925,16 +1716,10 @@ export declare const messages: {
|
|
|
1925
1716
|
'snack.link.createdMessage': string;
|
|
1926
1717
|
'snack.link.deletedMessage': string;
|
|
1927
1718
|
'snack.link.editedMessage': string;
|
|
1928
|
-
'snack.link.addedMessage': string;
|
|
1929
|
-
'snack.link.removedMessage': string;
|
|
1930
1719
|
'snack.workflow.createdMessage': string;
|
|
1931
1720
|
'snack.workflow.deletedMessage': string;
|
|
1932
1721
|
'snack.workflow.editedMessage': string;
|
|
1933
|
-
'snack.workflow.addedMessage': string;
|
|
1934
|
-
'snack.workflow.removedMessage': string;
|
|
1935
1722
|
'snack.locale.createdMessage': string;
|
|
1936
|
-
'snack.locale.deletedMessage': string;
|
|
1937
|
-
'snack.locale.editedMessage': string;
|
|
1938
1723
|
'snack.locale.enabled': string;
|
|
1939
1724
|
'snack.locale.disabled': string;
|
|
1940
1725
|
'snack.template.createdMessage': string;
|
|
@@ -1943,13 +1728,11 @@ export declare const messages: {
|
|
|
1943
1728
|
'snack.release.createdMessage': string;
|
|
1944
1729
|
'snack.release.deletedMessage': string;
|
|
1945
1730
|
'snack.migration.createdMessage': string;
|
|
1946
|
-
'toolbar.search': string;
|
|
1947
1731
|
'toolbar.save': string;
|
|
1948
1732
|
'toolbar.stencil': string;
|
|
1949
1733
|
'toolbar.wrench': string;
|
|
1950
1734
|
'toolbar.menu': string;
|
|
1951
1735
|
'toolbar.help': string;
|
|
1952
|
-
'toolbar.services': string;
|
|
1953
1736
|
'toolbar.import': string;
|
|
1954
1737
|
'toolbar.tasks': string;
|
|
1955
1738
|
'toolbar.about': string;
|
|
@@ -1970,11 +1753,8 @@ export declare const messages: {
|
|
|
1970
1753
|
'transferlist.noItemsSelected': string;
|
|
1971
1754
|
'transferlist.search': string;
|
|
1972
1755
|
'transferlist.noSearchResults': string;
|
|
1973
|
-
'explorer.tabs.search': string;
|
|
1974
|
-
'explorer.tabs.articles': string;
|
|
1975
1756
|
'explorer.tabs.links': string;
|
|
1976
1757
|
'explorer.tabs.services': string;
|
|
1977
|
-
imports: string;
|
|
1978
1758
|
'imports.select': string;
|
|
1979
1759
|
'imports.import.action': string;
|
|
1980
1760
|
'article.order': string;
|
|
@@ -1991,46 +1771,29 @@ export declare const messages: {
|
|
|
1991
1771
|
'article.delete.description': string;
|
|
1992
1772
|
'article.edit.title': string;
|
|
1993
1773
|
'article.edit.parent': string;
|
|
1994
|
-
'article.edit.orderhelper': string;
|
|
1995
1774
|
'article.devmode.helper': string;
|
|
1996
1775
|
'article.devmode': string;
|
|
1997
1776
|
articleservices: string;
|
|
1998
1777
|
articlelinks: string;
|
|
1999
1778
|
'article.composer.orderhelper': string;
|
|
2000
1779
|
'article.timestamps.title': string;
|
|
2001
|
-
allarticles: string;
|
|
2002
|
-
'allarticles.individual': string;
|
|
2003
|
-
'add.allarticles.link.help': string;
|
|
2004
|
-
'add.allarticles.service.help': string;
|
|
2005
1780
|
'button.create': string;
|
|
2006
1781
|
'button.add': string;
|
|
2007
1782
|
'button.disable': string;
|
|
2008
1783
|
'button.enable': string;
|
|
2009
|
-
'button.remove': string;
|
|
2010
1784
|
'button.apply': string;
|
|
2011
|
-
'button.releasegraph': string;
|
|
2012
1785
|
'button.view.all.locales': string;
|
|
2013
1786
|
'button.view.all.releases': string;
|
|
2014
1787
|
'button.view.all.templates': string;
|
|
2015
|
-
'links.message': string;
|
|
2016
1788
|
'links.searchAll': string;
|
|
2017
|
-
'link.article.add.title': string;
|
|
2018
1789
|
'link.article.select': string;
|
|
2019
1790
|
'link.type': string;
|
|
2020
|
-
'link.url': string;
|
|
2021
|
-
'link.locale.all': string;
|
|
2022
1791
|
'link.content': string;
|
|
2023
1792
|
'link.composer.title': string;
|
|
2024
|
-
'link.composer.descriptionlabel': string;
|
|
2025
|
-
'link.composer.descriptionhelper': string;
|
|
2026
1793
|
'link.composer.valuehelper': string;
|
|
2027
1794
|
'link.edit.title': string;
|
|
2028
1795
|
'link.delete.title': string;
|
|
2029
1796
|
'link.delete': string;
|
|
2030
|
-
'link.removepage.title': string;
|
|
2031
|
-
'link.removepage': string;
|
|
2032
|
-
'link.options': string;
|
|
2033
|
-
'link.options.add': string;
|
|
2034
1797
|
'resource.edit.links': string;
|
|
2035
1798
|
'links.change': string;
|
|
2036
1799
|
'link.create': string;
|
|
@@ -2056,7 +1819,6 @@ export declare const messages: {
|
|
|
2056
1819
|
'page.create': string;
|
|
2057
1820
|
'page.delete.dialog.title': string;
|
|
2058
1821
|
'page.delete.description': string;
|
|
2059
|
-
'pages.save': string;
|
|
2060
1822
|
'pages.add': string;
|
|
2061
1823
|
'pages.change': string;
|
|
2062
1824
|
'pages.select.locale': string;
|
|
@@ -2071,8 +1833,6 @@ export declare const messages: {
|
|
|
2071
1833
|
'pages.devmode.helper': string;
|
|
2072
1834
|
'pages.devmode': string;
|
|
2073
1835
|
'pages.delete': string;
|
|
2074
|
-
'pages.delete.message': string;
|
|
2075
|
-
'pages.options': string;
|
|
2076
1836
|
'pages.edit.selectpage': string;
|
|
2077
1837
|
'pages.edit.selectTargetLocale': string;
|
|
2078
1838
|
'release.create': string;
|
|
@@ -2091,14 +1851,8 @@ export declare const messages: {
|
|
|
2091
1851
|
'buttons.apply': string;
|
|
2092
1852
|
'buttons.delete': string;
|
|
2093
1853
|
'buttons.copy': string;
|
|
2094
|
-
'buttons.reset': string;
|
|
2095
1854
|
'button.compose': string;
|
|
2096
1855
|
'buttons.download': string;
|
|
2097
|
-
'content.loading': string;
|
|
2098
|
-
'explorer.tabs.flows': string;
|
|
2099
|
-
'explorer.tabs.decisions': string;
|
|
2100
|
-
'explorer.active.branch': string;
|
|
2101
|
-
'explorer.active.branch.default': string;
|
|
2102
1856
|
'activities.flows.title': string;
|
|
2103
1857
|
'activities.flows.desc': string;
|
|
2104
1858
|
'activities.decisions.title': string;
|
|
@@ -2109,17 +1863,13 @@ export declare const messages: {
|
|
|
2109
1863
|
'activities.releases.desc': string;
|
|
2110
1864
|
'activities.releases.desc.additional': string;
|
|
2111
1865
|
'activities.releases.view': string;
|
|
2112
|
-
'activities.releases.graph': string;
|
|
2113
1866
|
'activities.compare.title': string;
|
|
2114
1867
|
'activities.compare.desc': string;
|
|
2115
1868
|
'activities.compare.view': string;
|
|
2116
|
-
'activities.templates.view': string;
|
|
2117
1869
|
'activities.debug.title': string;
|
|
2118
1870
|
'activities.debug.desc': string;
|
|
2119
1871
|
'activities.debug.view': string;
|
|
2120
1872
|
'activities.assets.saveSuccess': string;
|
|
2121
|
-
'programs.error.title': string;
|
|
2122
|
-
'programs.warning.title': string;
|
|
2123
1873
|
flows: string;
|
|
2124
1874
|
'migrations.title': string;
|
|
2125
1875
|
'migrations.create': string;
|
|
@@ -2144,7 +1894,6 @@ export declare const messages: {
|
|
|
2144
1894
|
'flows.autocomplete.task.selectType': string;
|
|
2145
1895
|
'flows.autocomplete.task.searchHelper': string;
|
|
2146
1896
|
'flows.autocomplete.task.searchResults': string;
|
|
2147
|
-
'flows.autocomplete.task': string;
|
|
2148
1897
|
'flows.autocomplete.task.snackbar.created': string;
|
|
2149
1898
|
'flows.autocomplete.task.snackbar.creating': string;
|
|
2150
1899
|
'flows.graph.show': string;
|
|
@@ -2178,7 +1927,6 @@ export declare const messages: {
|
|
|
2178
1927
|
'decisions.type.row': string;
|
|
2179
1928
|
'decisions.type.column': string;
|
|
2180
1929
|
'decisions.table.hitpolicy': string;
|
|
2181
|
-
'decisions.table.options': string;
|
|
2182
1930
|
'decisions.composer.title': string;
|
|
2183
1931
|
'decisions.composer.copyTitle': string;
|
|
2184
1932
|
'decisions.composer.createdMessage': string;
|
|
@@ -2223,9 +1971,6 @@ export declare const messages: {
|
|
|
2223
1971
|
'decisions.cells.newvalue.number.comparisonToRange': string;
|
|
2224
1972
|
'decisions.cells.newvalue.number.rangeStart': string;
|
|
2225
1973
|
'decisions.cells.newvalue.number.rangeEnd': string;
|
|
2226
|
-
'decisions.cells.newvalue.number.value': string;
|
|
2227
|
-
'decisions.cells.newvalue.number.rangeIncluded': string;
|
|
2228
|
-
'decisions.cells.newvalue.number.rangeToComparison': string;
|
|
2229
1974
|
'decisions.cells.newvalue.string.comparisonType': string;
|
|
2230
1975
|
'decisions.cells.newvalue.string.addValue': string;
|
|
2231
1976
|
'decisions.cells.newvalue.string.available': string;
|
|
@@ -2235,9 +1980,7 @@ export declare const messages: {
|
|
|
2235
1980
|
'decisions.valueSet': string;
|
|
2236
1981
|
'decisions.valueSet.description': string;
|
|
2237
1982
|
'decisions.valueSet.add': string;
|
|
2238
|
-
'decisions.valueSet.remove': string;
|
|
2239
1983
|
'decisions.valueSet.current': string;
|
|
2240
|
-
'decisions.valueSet.empty': string;
|
|
2241
1984
|
'dt.header.name': string;
|
|
2242
1985
|
'dt.header.delete': string;
|
|
2243
1986
|
'dt.header.expression': string;
|
|
@@ -2248,30 +1991,6 @@ export declare const messages: {
|
|
|
2248
1991
|
'program.status.UP': string;
|
|
2249
1992
|
'program.status.AST_ERROR': string;
|
|
2250
1993
|
'program.status.PROGRAM_ERROR': string;
|
|
2251
|
-
'package.explorer.flows': string;
|
|
2252
|
-
'package.explorer.servicetasks': string;
|
|
2253
|
-
'package.explorer.decisiontables': string;
|
|
2254
|
-
'dialog.addtype.title': string;
|
|
2255
|
-
'dialog.addtype.button.cancel': string;
|
|
2256
|
-
'dialog.addtype.button.confirm': string;
|
|
2257
|
-
'dialog.addtype.error.unique': string;
|
|
2258
|
-
'dialog.addtype.error.filled': string;
|
|
2259
|
-
'dialog.addtype.input.serviceType': string;
|
|
2260
|
-
'dialog.addtype.input.name': string;
|
|
2261
|
-
'dialog.copyas.title': string;
|
|
2262
|
-
'dialog.copyas.button.cancel': string;
|
|
2263
|
-
'dialog.copyas.button.confirm': string;
|
|
2264
|
-
'dialog.copyas.input.from': string;
|
|
2265
|
-
'dialog.copyas.input.to': string;
|
|
2266
|
-
'dialog.copyas.error.unique': string;
|
|
2267
|
-
'dialog.copyas.error.filled': string;
|
|
2268
|
-
'dialog.save.title': string;
|
|
2269
|
-
'dialog.save.content': string;
|
|
2270
|
-
'dialog.save.errors': string;
|
|
2271
|
-
'dialog.save.button.cancel': string;
|
|
2272
|
-
'dialog.save.button.confirm': string;
|
|
2273
|
-
'release.delete.content': string;
|
|
2274
|
-
'release.delete.error.title': string;
|
|
2275
1994
|
'release.deleted.message': string;
|
|
2276
1995
|
'releases.composer.createdMessage': string;
|
|
2277
1996
|
'releases.view.action': string;
|
|
@@ -2279,16 +1998,6 @@ export declare const messages: {
|
|
|
2279
1998
|
'releases.composer.assetName': string;
|
|
2280
1999
|
'releases.composer.assetDesc': string;
|
|
2281
2000
|
'releases.composer.errorsTitle': string;
|
|
2282
|
-
'releases.table.title': string;
|
|
2283
|
-
'releases.table.column.name': string;
|
|
2284
|
-
'releases.table.column.message': string;
|
|
2285
|
-
'releases.table.column.created': string;
|
|
2286
|
-
'releases.table.name': string;
|
|
2287
|
-
'releases.add.error.unique': string;
|
|
2288
|
-
'releases.add.error.filled': string;
|
|
2289
|
-
'releases.add.input.name': string;
|
|
2290
|
-
'releases.add.input.msg': string;
|
|
2291
|
-
'releases.add.button.create': string;
|
|
2292
2001
|
'releases.button.compare': string;
|
|
2293
2002
|
'releases.button.branch': string;
|
|
2294
2003
|
'releases.button.checkout': string;
|
|
@@ -2299,9 +2008,6 @@ export declare const messages: {
|
|
|
2299
2008
|
'releases.latest.name': string;
|
|
2300
2009
|
'releases.latest.note': string;
|
|
2301
2010
|
'releases.details.title': string;
|
|
2302
|
-
'branch.delete.title': string;
|
|
2303
|
-
'branch.delete.content': string;
|
|
2304
|
-
'branch.delete.error.title': string;
|
|
2305
2011
|
'release.branch.creating': string;
|
|
2306
2012
|
'release.branch.created': string;
|
|
2307
2013
|
'release.branch.deleting': string;
|
|
@@ -2338,14 +2044,9 @@ export declare const messages: {
|
|
|
2338
2044
|
'debug.select.searchResults': string;
|
|
2339
2045
|
'debug.select.confirm': string;
|
|
2340
2046
|
'debug.inputs.format': string;
|
|
2341
|
-
'debug.asset.select.label': string;
|
|
2342
|
-
'debug.asset.select.clear': string;
|
|
2343
|
-
'debug.asset.select.execute': string;
|
|
2344
|
-
'debug.asset.execute.inputs': string;
|
|
2345
2047
|
'debug.asset.execute.errors': string;
|
|
2346
2048
|
'debug.asset.execute.outputs.dt.json': string;
|
|
2347
2049
|
'debug.asset.execute.outputs.dt.rejects': string;
|
|
2348
|
-
'debug.asset.execute.outputs.dt.rejects.order': string;
|
|
2349
2050
|
'debug.asset.execute.outputs.flow.step': string;
|
|
2350
2051
|
'debug.csv.row': string;
|
|
2351
2052
|
'debug.csv.download': string;
|
|
@@ -2360,25 +2061,16 @@ export declare const messages: {
|
|
|
2360
2061
|
'compare.dialog.title': string;
|
|
2361
2062
|
'compare.dialog.line': string;
|
|
2362
2063
|
'compare.dialog.side': string;
|
|
2363
|
-
'menu.feedbackAllTasks': string;
|
|
2364
2064
|
'menu.activities': string;
|
|
2365
2065
|
'feedback.all': string;
|
|
2366
|
-
'feedback.none': string;
|
|
2367
|
-
'feedback.search': string;
|
|
2368
|
-
'feedback.search.placeholder': string;
|
|
2369
|
-
'feedback.search.filter.category': string;
|
|
2370
|
-
'feedback.search.filter.subCategory': string;
|
|
2371
|
-
'feedback.filter.selectNone': string;
|
|
2066
|
+
'task.feedback.none': string;
|
|
2372
2067
|
'queues.all': string;
|
|
2373
2068
|
'consumers.all': string;
|
|
2374
|
-
'queue.config.appId': string;
|
|
2375
2069
|
'queue.config.none': string;
|
|
2376
2070
|
'queue.config.consumerName': string;
|
|
2377
2071
|
'queue.config.routingKey': string;
|
|
2378
2072
|
'queue.config.consumerStatus': string;
|
|
2379
2073
|
'queue.config.comment': string;
|
|
2380
|
-
'queue.config.consumerId': string;
|
|
2381
|
-
'queue.config.qualifiedJavaName': string;
|
|
2382
2074
|
'queue.config.queueName': string;
|
|
2383
2075
|
'queue.config.createdAt': string;
|
|
2384
2076
|
'queue.config.createdBy': string;
|
|
@@ -2396,11 +2088,13 @@ export declare const messages: {
|
|
|
2396
2088
|
'queue.all_messages.status': string;
|
|
2397
2089
|
'queue.all_messages.body': string;
|
|
2398
2090
|
'queue.all_messages.created': string;
|
|
2399
|
-
'menu.messages': string;
|
|
2400
|
-
'menu.deliveries': string;
|
|
2401
2091
|
'explorer.pages': string;
|
|
2402
2092
|
'articles.searchAll': string;
|
|
2403
2093
|
'composer.article.selected': string;
|
|
2094
|
+
'eveli.table.drawer.title.columns': string;
|
|
2095
|
+
'eveli.table.drawer.title.filters': string;
|
|
2096
|
+
'eveli.table.drawer.title.saved-filters': string;
|
|
2097
|
+
'eveli.table.drawer.title.export-data': string;
|
|
2404
2098
|
'eveli.error.general': string;
|
|
2405
2099
|
'eveli.error.notFound': string;
|
|
2406
2100
|
'eveli.error.backToHome': string;
|
|
@@ -2418,7 +2112,6 @@ export declare const messages: {
|
|
|
2418
2112
|
'eveli.userProfile.userPermissions': string;
|
|
2419
2113
|
'eveli.userProfile.editDetails': string;
|
|
2420
2114
|
'eveli.userProfile.currentDetails': string;
|
|
2421
|
-
'eveli.userProfile.userActivity': string;
|
|
2422
2115
|
'eveli.userProfile.tenantConfig.select.LOGIN_BUTTON': string;
|
|
2423
2116
|
'eveli.userProfile.tenantConfig.select.external-deployment': string;
|
|
2424
2117
|
'eveli.userProfile.tenantConfig.select.external-deployment.desc': string;
|
|
@@ -2442,9 +2135,13 @@ export declare const messages: {
|
|
|
2442
2135
|
'eveli.userProfile.tenantConfig.select.stencil_locale_filter.desc': string;
|
|
2443
2136
|
'eveli.userProfile.tenantConfig.select.user_profile': string;
|
|
2444
2137
|
'eveli.userProfile.tenantConfig.select.user_profile.desc': string;
|
|
2138
|
+
'eveli.userProfile.tenantConfig.select.smart_task': string;
|
|
2139
|
+
'eveli.userProfile.tenantConfig.select.smart_task.desc': string;
|
|
2140
|
+
'eveli.userProfile.tenantConfig.select.smart_task_audit': string;
|
|
2141
|
+
'eveli.userProfile.tenantConfig.select.smart_task_audit.desc': string;
|
|
2445
2142
|
'eveli.userProfile.tenantConfig.select.visual_accommodation': string;
|
|
2446
2143
|
'eveli.userProfile.tenantConfig.select.visual_accommodation.desc': string;
|
|
2447
|
-
'eveli.batches.batchView
|
|
2144
|
+
'eveli.batches.batchView.averageRunTime': string;
|
|
2448
2145
|
'eveli.batches.batchView.averageRunTime.ms': string;
|
|
2449
2146
|
'taskcard.style.COMPACT': string;
|
|
2450
2147
|
'taskcard.style.DEFAULT': string;
|
|
@@ -2452,28 +2149,14 @@ export declare const messages: {
|
|
|
2452
2149
|
};
|
|
2453
2150
|
fi: {
|
|
2454
2151
|
'document.title': string;
|
|
2455
|
-
'booleanValue.true': string;
|
|
2456
|
-
'booleanValue.false': string;
|
|
2457
2152
|
'eveli.textSeparatorColon': string;
|
|
2458
2153
|
'eveli.noValueIndicator': string;
|
|
2459
2154
|
'eveli.permissions.none.title': string;
|
|
2460
2155
|
'eveli.permissions.none.desc1': string;
|
|
2461
2156
|
'eveli.permissions.none.desc2': string;
|
|
2462
2157
|
'tasksView.title': string;
|
|
2463
|
-
'tasksTableHeader.taskName': string;
|
|
2464
|
-
'tasksTableHeader.category': string;
|
|
2465
|
-
'tasksTableHeader.status': string;
|
|
2466
|
-
'tasksTableHeader.dueDate': string;
|
|
2467
|
-
'tasksTableHeader.priority': string;
|
|
2468
|
-
'tasksTableHeader.assigned': string;
|
|
2469
|
-
'tasksTableAction.editTask': string;
|
|
2470
|
-
'tasksTableAction.deleteTask': string;
|
|
2471
|
-
'taskPriority.low': string;
|
|
2472
|
-
'taskPriority.normal': string;
|
|
2473
|
-
'taskPriority.high': string;
|
|
2474
2158
|
'taskDialog.priority': string;
|
|
2475
2159
|
'taskDialog.subject': string;
|
|
2476
|
-
'taskDialog.description': string;
|
|
2477
2160
|
'taskDialog.dueDate': string;
|
|
2478
2161
|
'taskDialog.assignedTo': string;
|
|
2479
2162
|
'taskDialog.assignedUser': string;
|
|
@@ -2493,24 +2176,19 @@ export declare const messages: {
|
|
|
2493
2176
|
'task.status.delegated': string;
|
|
2494
2177
|
'task.status.waiting': string;
|
|
2495
2178
|
'task.form.review': string;
|
|
2496
|
-
'task.form.feedback.manage': string;
|
|
2497
|
-
'task.form.feedback.updated': string;
|
|
2498
2179
|
'task.created': string;
|
|
2499
2180
|
'task.updated': string;
|
|
2500
|
-
comments: string;
|
|
2501
2181
|
'task.comments.external.createTask': string;
|
|
2502
2182
|
'task.comments.internal.createTask': string;
|
|
2503
2183
|
'task.attachments.createTask': string;
|
|
2504
2184
|
'task.comments.external.added': string;
|
|
2505
2185
|
'task.feedback.publishedSaved': string;
|
|
2506
|
-
'task.comments.internal.added': string;
|
|
2507
2186
|
internalComments: string;
|
|
2508
2187
|
externalComments: string;
|
|
2509
2188
|
'comment.store': string;
|
|
2510
2189
|
'comment.add': string;
|
|
2511
2190
|
'comment.addInternal': string;
|
|
2512
2191
|
'comment.addExternal': string;
|
|
2513
|
-
'comment.reply': string;
|
|
2514
2192
|
'taskButton.addTask': string;
|
|
2515
2193
|
'taskButton.refresh': string;
|
|
2516
2194
|
'taskButton.accept': string;
|
|
@@ -2518,9 +2196,6 @@ export declare const messages: {
|
|
|
2518
2196
|
'table.body.emptyDataSourceMessage': string;
|
|
2519
2197
|
'table.body.filterRow.filterTooltip': string;
|
|
2520
2198
|
'table.body.deleteTooltip': string;
|
|
2521
|
-
'table.body.editRow.deleteText': string;
|
|
2522
|
-
'table.body.editRow.cancelTask': string;
|
|
2523
|
-
'table.body.editRow.saveTask': string;
|
|
2524
2199
|
'table.header.actions': string;
|
|
2525
2200
|
'table.pagination.labelDisplayedRows': string;
|
|
2526
2201
|
'table.pagination.labelRowsPerPage': string;
|
|
@@ -2531,62 +2206,41 @@ export declare const messages: {
|
|
|
2531
2206
|
'table.toolbar.search': string;
|
|
2532
2207
|
'table.toolbar.showColumnsTitle': string;
|
|
2533
2208
|
'table.toolbar.addRemoveColumns': string;
|
|
2534
|
-
'taskLink.title': string;
|
|
2535
|
-
'taskLink.button.open': string;
|
|
2536
2209
|
'taskLink.pdf.open': string;
|
|
2537
|
-
'explorer.title': string;
|
|
2538
2210
|
'explorer.login': string;
|
|
2539
2211
|
'locale.fi': string;
|
|
2540
2212
|
'locale.sv': string;
|
|
2541
2213
|
'locale.en': string;
|
|
2542
|
-
'app.logout': string;
|
|
2543
|
-
'app.login': string;
|
|
2544
|
-
'app.feedback': string;
|
|
2545
2214
|
'main.articles.all': string;
|
|
2546
2215
|
'main.links.all': string;
|
|
2547
2216
|
'main.services.all': string;
|
|
2548
2217
|
'main.flows.all': string;
|
|
2549
2218
|
'main.debug': string;
|
|
2550
|
-
'main.compare': string;
|
|
2551
2219
|
'main.decisions.all': string;
|
|
2552
2220
|
'menu.dashboard': string;
|
|
2553
2221
|
'menu.profile': string;
|
|
2554
2222
|
'menu.tasks': string;
|
|
2555
|
-
'menu.evaluations': string;
|
|
2556
2223
|
'menu.forms': string;
|
|
2557
2224
|
'menu.queues': string;
|
|
2558
|
-
'menu.users': string;
|
|
2559
2225
|
'menu.help': string;
|
|
2560
|
-
'menu.flow': string;
|
|
2561
2226
|
'menu.processes': string;
|
|
2562
|
-
'menu.reports': string;
|
|
2563
|
-
'menu.workflows': string;
|
|
2564
2227
|
'menu.logout': string;
|
|
2565
|
-
'menu.workflowTags': string;
|
|
2566
2228
|
'menu.publications': string;
|
|
2567
2229
|
'menu.services': string;
|
|
2568
|
-
'menu.content': string;
|
|
2569
|
-
'menu.calendar': string;
|
|
2570
2230
|
'menu.feedback': string;
|
|
2571
2231
|
'menu.compose': string;
|
|
2572
|
-
'menu.pages': string;
|
|
2573
2232
|
'menu.articles': string;
|
|
2574
2233
|
'menu.links': string;
|
|
2575
2234
|
'menu.locales': string;
|
|
2576
|
-
'menu.migrations': string;
|
|
2577
2235
|
'menu.templates': string;
|
|
2578
2236
|
'menu.flows': string;
|
|
2579
2237
|
'menu.decisions': string;
|
|
2580
2238
|
'menu.debug': string;
|
|
2581
2239
|
'menu.releases': string;
|
|
2582
2240
|
'menu.compare': string;
|
|
2583
|
-
'front.intro.title': string;
|
|
2584
|
-
'profile.title': string;
|
|
2585
2241
|
'profile.user.name': string;
|
|
2586
2242
|
'profile.user.email': string;
|
|
2587
2243
|
'profile.user.role': string;
|
|
2588
|
-
'profile.user.phone': string;
|
|
2589
|
-
'profile.app.version': string;
|
|
2590
2244
|
'button.cancel': string;
|
|
2591
2245
|
'button.confirmDelete': string;
|
|
2592
2246
|
'button.delete': string;
|
|
@@ -2594,17 +2248,12 @@ export declare const messages: {
|
|
|
2594
2248
|
'button.delete.link': string;
|
|
2595
2249
|
'button.delete.article': string;
|
|
2596
2250
|
'button.delete.page': string;
|
|
2597
|
-
'button.unpublish': string;
|
|
2598
2251
|
'button.update': string;
|
|
2599
2252
|
'button.publish': string;
|
|
2600
2253
|
'button.accept': string;
|
|
2601
|
-
'button.edit': string;
|
|
2602
2254
|
'button.close': string;
|
|
2603
|
-
'button.reject': string;
|
|
2604
|
-
'button.send': string;
|
|
2605
2255
|
'button.save': string;
|
|
2606
2256
|
'button.dismiss': string;
|
|
2607
|
-
'button.editRoles': string;
|
|
2608
2257
|
'button.select': string;
|
|
2609
2258
|
'button.startBatch': string;
|
|
2610
2259
|
'error.minTextLength': string;
|
|
@@ -2619,15 +2268,12 @@ export declare const messages: {
|
|
|
2619
2268
|
'error.dataAccess': string;
|
|
2620
2269
|
'error.statusOpenError': string;
|
|
2621
2270
|
'error.workflowCreation': string;
|
|
2622
|
-
'table.body.addTooltip': string;
|
|
2623
|
-
'table.body.editTooltip': string;
|
|
2624
2271
|
'table.body.editRow.deleteMessage': string;
|
|
2625
2272
|
'workflowTable.title': string;
|
|
2626
2273
|
'workflowTableHeader.name': string;
|
|
2627
2274
|
'workflowTableHeader.formName': string;
|
|
2628
2275
|
'workflowTableHeader.flowName': string;
|
|
2629
2276
|
'workflowTableHeader.updated': string;
|
|
2630
|
-
'workflowTable.addButton': string;
|
|
2631
2277
|
'workflowTable.editButton': string;
|
|
2632
2278
|
'workflow.dialogTitle': string;
|
|
2633
2279
|
'workflow.name': string;
|
|
@@ -2636,7 +2282,6 @@ export declare const messages: {
|
|
|
2636
2282
|
'workflow.flowName': string;
|
|
2637
2283
|
'processTable.title': string;
|
|
2638
2284
|
'processTableHeader.workflow': string;
|
|
2639
|
-
'processTableHeader.user': string;
|
|
2640
2285
|
'processTableHeader.status': string;
|
|
2641
2286
|
'processTableHeader.created': string;
|
|
2642
2287
|
'processTableHeader.questionnaireId': string;
|
|
@@ -2648,18 +2293,7 @@ export declare const messages: {
|
|
|
2648
2293
|
'process.status.WAITING': string;
|
|
2649
2294
|
'process.status.COMPLETED': string;
|
|
2650
2295
|
'process.status.REJECTED': string;
|
|
2651
|
-
'comment.button': string;
|
|
2652
|
-
'comment.title': string;
|
|
2653
|
-
'comment.form.email': string;
|
|
2654
|
-
'comment.form.feedbackType': string;
|
|
2655
|
-
'comment.form.body': string;
|
|
2656
|
-
'comment.type.general': string;
|
|
2657
|
-
'comment.type.propose': string;
|
|
2658
|
-
'comment.type.contact': string;
|
|
2659
|
-
'comment.submitted.success': string;
|
|
2660
|
-
'comment.submitted.failure': string;
|
|
2661
2296
|
'spoTasksTableHeader.taskName': string;
|
|
2662
|
-
'spoTasksTableHeader.category': string;
|
|
2663
2297
|
'spoTasksTableHeader.status': string;
|
|
2664
2298
|
'spoTasksTableHeader.priority': string;
|
|
2665
2299
|
'spoTasksTableHeader.dueDate': string;
|
|
@@ -2669,13 +2303,9 @@ export declare const messages: {
|
|
|
2669
2303
|
'spoTasksTableHeader.clientName': string;
|
|
2670
2304
|
'spoTasksTableHeader.additionalInfo': string;
|
|
2671
2305
|
'taskDialog.clientIdentificator': string;
|
|
2672
|
-
'taskDialog.assignedUserEmail': string;
|
|
2673
|
-
'task.editRoles': string;
|
|
2674
|
-
Questionnaire: string;
|
|
2675
2306
|
Manual: string;
|
|
2676
2307
|
Protected: string;
|
|
2677
2308
|
Normal: string;
|
|
2678
|
-
Represented: string;
|
|
2679
2309
|
CustomerCreated: string;
|
|
2680
2310
|
Internal: string;
|
|
2681
2311
|
'task.role.assignedAllUsers': string;
|
|
@@ -2686,31 +2316,16 @@ export declare const messages: {
|
|
|
2686
2316
|
'task.statistics.priorityCount': string;
|
|
2687
2317
|
'task.statistics.daily': string;
|
|
2688
2318
|
'task.statistics.overdue': string;
|
|
2689
|
-
'feedback.button': string;
|
|
2690
|
-
'feedback.thanks': string;
|
|
2691
2319
|
'feedback.create.title': string;
|
|
2692
|
-
'feedback.title': string;
|
|
2693
2320
|
'feedback.update.title': string;
|
|
2694
|
-
'feedback.description': string;
|
|
2695
|
-
'feedback.name': string;
|
|
2696
|
-
'feedback.sendScreenshot': string;
|
|
2697
|
-
'feedback.close': string;
|
|
2698
|
-
'feedback.send': string;
|
|
2699
2321
|
'feedback.taskReferenceId': string;
|
|
2700
2322
|
'feedback.taskReferenceId.short': string;
|
|
2701
|
-
'feedback.taskId': string;
|
|
2702
2323
|
'feedback.mainCategory': string;
|
|
2703
2324
|
'feedback.subCategory': string;
|
|
2704
2325
|
'feedback.feedbackValue': string;
|
|
2705
2326
|
'feedback.customerTitle': string;
|
|
2706
2327
|
'feedback.myReply': string;
|
|
2707
|
-
'feedback.noFeedback.info1': string;
|
|
2708
|
-
'feedback.noFeedback.info2': string;
|
|
2709
|
-
'feedback.customerFeedback': string;
|
|
2710
2328
|
'feedback.customerApprovals': string;
|
|
2711
|
-
'feedback.sourceTaskId': string;
|
|
2712
|
-
'feedback.formName': string;
|
|
2713
|
-
'feedback.dateReceived': string;
|
|
2714
2329
|
'feedback.createdBy': string;
|
|
2715
2330
|
'feedback.updatedBy': string;
|
|
2716
2331
|
'feedback.updated': string;
|
|
@@ -2722,7 +2337,6 @@ export declare const messages: {
|
|
|
2722
2337
|
'help.title': string;
|
|
2723
2338
|
'attachmentView.title': string;
|
|
2724
2339
|
'attachmentTableHeader.size': string;
|
|
2725
|
-
'attachmentTableHeader.updated': string;
|
|
2726
2340
|
'attachmentTableHeader.created': string;
|
|
2727
2341
|
'attachmentTableHeader.name': string;
|
|
2728
2342
|
'attachmentButton.addAttachment': string;
|
|
@@ -2733,29 +2347,13 @@ export declare const messages: {
|
|
|
2733
2347
|
'attachment.delete.confirmTitle': string;
|
|
2734
2348
|
'attachment.delete.confirmText': string;
|
|
2735
2349
|
'attachment.deleteFailed': string;
|
|
2736
|
-
'workflowReleaseTable.title': string;
|
|
2737
|
-
'workflowReleaseTableHeader.name': string;
|
|
2738
|
-
'workflowReleaseTableHeader.description': string;
|
|
2739
|
-
'workflowReleaseTableHeader.updatedBy': string;
|
|
2740
|
-
'workflowReleaseTableHeader.updated': string;
|
|
2741
|
-
'workflowReleaseTable.addButton': string;
|
|
2742
|
-
'workflowReleaseTable.viewButton': string;
|
|
2743
|
-
'workflowReleaseTable.exportButton': string;
|
|
2744
|
-
'workflowRelease.dialogTitle': string;
|
|
2745
|
-
'workflowRelease.name': string;
|
|
2746
|
-
'workflowRelease.description': string;
|
|
2747
|
-
'workflowRelease.releaseCreationFailed': string;
|
|
2748
2350
|
'publicationsTable.title': string;
|
|
2749
2351
|
'publicationsTableHeader.name': string;
|
|
2750
2352
|
'publicationsTableHeader.description': string;
|
|
2751
2353
|
'publicationsTableHeader.createdBy': string;
|
|
2752
2354
|
'publicationsTableHeader.created': string;
|
|
2753
|
-
'publicationsTableHeader.contentTag': string;
|
|
2754
|
-
'publicationsTableHeader.workflowTag': string;
|
|
2755
|
-
'publicationsTableHeader.wrenchTag': string;
|
|
2756
2355
|
'publicationsTableHeader.liveDate': string;
|
|
2757
2356
|
'publicationsTable.addButton': string;
|
|
2758
|
-
'publicationsTable.viewButton': string;
|
|
2759
2357
|
'publicationsTable.exportButton': string;
|
|
2760
2358
|
'publicationsTable.uploadButton': string;
|
|
2761
2359
|
'publications.external': string;
|
|
@@ -2773,48 +2371,25 @@ export declare const messages: {
|
|
|
2773
2371
|
'publications.downloadFailed': string;
|
|
2774
2372
|
'publications.tagCreationFailed': string;
|
|
2775
2373
|
'publications.uploadDialogTitle': string;
|
|
2776
|
-
'dialobForms.dialog.heading': string;
|
|
2777
|
-
'dialobForms.table.tooltip.add': string;
|
|
2778
|
-
'dialobForms.table.label': string;
|
|
2779
|
-
'dialobForms.table.created': string;
|
|
2780
|
-
'dialobForms.table.lastSaved': string;
|
|
2781
|
-
'dialobForms.table.tooltip.edit': string;
|
|
2782
|
-
'dialobForms.dialog.emptyTitle': string;
|
|
2783
|
-
'dialobForms.table.tooltip.copy': string;
|
|
2784
|
-
'dialobForms.table.tooltip.delete': string;
|
|
2785
2374
|
'dialobForm.saveFailed': string;
|
|
2786
2375
|
'dialobForm.downloadFailed': string;
|
|
2787
2376
|
'dialobForm.deleteFailed': string;
|
|
2788
|
-
'dialobForm.heading.copyDialog': string;
|
|
2789
|
-
'dialobForm.heading.addDialog': string;
|
|
2790
|
-
'dialobForm.dialog.formName': string;
|
|
2791
|
-
'dialobForm.dialog.formLabel': string;
|
|
2792
|
-
'dialobForm.error.invalidFormName': string;
|
|
2793
|
-
'dialobForm.dialog.deleteQuestion': string;
|
|
2794
|
-
'dialobForm.heading.deleteDialog': string;
|
|
2795
2377
|
'dialobForm.review.title': string;
|
|
2796
2378
|
'feedback.notenabled': string;
|
|
2797
2379
|
pages: string;
|
|
2798
2380
|
articles: string;
|
|
2799
2381
|
locale: string;
|
|
2800
2382
|
locales: string;
|
|
2801
|
-
tag: string;
|
|
2802
2383
|
links: string;
|
|
2803
2384
|
releases: string;
|
|
2804
2385
|
options: string;
|
|
2805
2386
|
value: string;
|
|
2806
2387
|
date: string;
|
|
2807
|
-
order: string;
|
|
2808
2388
|
description: string;
|
|
2809
2389
|
name: string;
|
|
2810
|
-
delete: string;
|
|
2811
2390
|
download: string;
|
|
2812
|
-
disable: string;
|
|
2813
2391
|
status: string;
|
|
2814
2392
|
created: string;
|
|
2815
|
-
modified: string;
|
|
2816
|
-
rename: string;
|
|
2817
|
-
reorder: string;
|
|
2818
2393
|
remove: string;
|
|
2819
2394
|
'composer.select.article': string;
|
|
2820
2395
|
'search.field.label': string;
|
|
@@ -2860,7 +2435,6 @@ export declare const messages: {
|
|
|
2860
2435
|
'services.anonmode.label': string;
|
|
2861
2436
|
'services.anonmode.tooltip': string;
|
|
2862
2437
|
'services.flowName': string;
|
|
2863
|
-
'services.flowName.description': string;
|
|
2864
2438
|
'services.formName': string;
|
|
2865
2439
|
'services.formName.description': string;
|
|
2866
2440
|
'services.formTag': string;
|
|
@@ -2876,13 +2450,11 @@ export declare const messages: {
|
|
|
2876
2450
|
'snack.page.createdMessage': string;
|
|
2877
2451
|
'snack.page.deletedMessage': string;
|
|
2878
2452
|
'snack.page.savedMessage': string;
|
|
2879
|
-
'toolbar.search': string;
|
|
2880
2453
|
'toolbar.save': string;
|
|
2881
2454
|
'toolbar.stencil': string;
|
|
2882
2455
|
'toolbar.wrench': string;
|
|
2883
2456
|
'toolbar.menu': string;
|
|
2884
2457
|
'toolbar.help': string;
|
|
2885
|
-
'toolbar.services': string;
|
|
2886
2458
|
'toolbar.import': string;
|
|
2887
2459
|
'toolbar.tasks': string;
|
|
2888
2460
|
'toolbar.about': string;
|
|
@@ -2899,11 +2471,8 @@ export declare const messages: {
|
|
|
2899
2471
|
'transferlist.noItemsSelected': string;
|
|
2900
2472
|
'transferlist.search': string;
|
|
2901
2473
|
'transferlist.noSearchResults': string;
|
|
2902
|
-
'explorer.tabs.search': string;
|
|
2903
|
-
'explorer.tabs.articles': string;
|
|
2904
2474
|
'explorer.tabs.links': string;
|
|
2905
2475
|
'explorer.tabs.services': string;
|
|
2906
|
-
imports: string;
|
|
2907
2476
|
'imports.select': string;
|
|
2908
2477
|
'imports.import.action': string;
|
|
2909
2478
|
'article.order': string;
|
|
@@ -2919,43 +2488,28 @@ export declare const messages: {
|
|
|
2919
2488
|
'article.delete.description': string;
|
|
2920
2489
|
'article.edit.title': string;
|
|
2921
2490
|
'article.edit.parent': string;
|
|
2922
|
-
'article.edit.orderhelper': string;
|
|
2923
2491
|
'article.devmode.helper': string;
|
|
2924
2492
|
'article.devmode': string;
|
|
2925
2493
|
articleservices: string;
|
|
2926
2494
|
articlelinks: string;
|
|
2927
2495
|
'article.composer.orderhelper': string;
|
|
2928
|
-
allarticles: string;
|
|
2929
|
-
'allarticles.individual': string;
|
|
2930
2496
|
'button.create': string;
|
|
2931
2497
|
'button.add': string;
|
|
2932
2498
|
'button.disable': string;
|
|
2933
2499
|
'button.enable': string;
|
|
2934
|
-
'button.remove': string;
|
|
2935
2500
|
'button.apply': string;
|
|
2936
|
-
'button.releasegraph': string;
|
|
2937
2501
|
'button.view.all.locales': string;
|
|
2938
2502
|
'button.view.all.releases': string;
|
|
2939
2503
|
'button.view.all.templates': string;
|
|
2940
|
-
'links.message': string;
|
|
2941
2504
|
'links.searchAll': string;
|
|
2942
|
-
'link.article.add.title': string;
|
|
2943
2505
|
'link.article.select': string;
|
|
2944
2506
|
'link.type': string;
|
|
2945
|
-
'link.url': string;
|
|
2946
|
-
'link.locale.all': string;
|
|
2947
2507
|
'link.content': string;
|
|
2948
2508
|
'link.composer.title': string;
|
|
2949
|
-
'link.composer.descriptionlabel': string;
|
|
2950
|
-
'link.composer.descriptionhelper': string;
|
|
2951
2509
|
'link.composer.valuehelper': string;
|
|
2952
2510
|
'link.edit.title': string;
|
|
2953
2511
|
'link.delete.title': string;
|
|
2954
2512
|
'link.delete': string;
|
|
2955
|
-
'link.removepage.title': string;
|
|
2956
|
-
'link.removepage': string;
|
|
2957
|
-
'link.options': string;
|
|
2958
|
-
'link.options.add': string;
|
|
2959
2513
|
'resource.edit.links': string;
|
|
2960
2514
|
'links.change': string;
|
|
2961
2515
|
'link.create': string;
|
|
@@ -2978,7 +2532,6 @@ export declare const messages: {
|
|
|
2978
2532
|
'newpage.article.info': string;
|
|
2979
2533
|
'page.create': string;
|
|
2980
2534
|
'page.delete.dialog.title': string;
|
|
2981
|
-
'pages.save': string;
|
|
2982
2535
|
'pages.add': string;
|
|
2983
2536
|
'pages.change': string;
|
|
2984
2537
|
'pages.select.locale': string;
|
|
@@ -2992,8 +2545,6 @@ export declare const messages: {
|
|
|
2992
2545
|
'pages.change.devmode.info': string;
|
|
2993
2546
|
'pages.devmode': string;
|
|
2994
2547
|
'pages.delete': string;
|
|
2995
|
-
'pages.delete.message': string;
|
|
2996
|
-
'pages.options': string;
|
|
2997
2548
|
'pages.edit.selectpage': string;
|
|
2998
2549
|
'pages.edit.selectTargetLocale': string;
|
|
2999
2550
|
'release.create': string;
|
|
@@ -3014,11 +2565,6 @@ export declare const messages: {
|
|
|
3014
2565
|
'buttons.copy': string;
|
|
3015
2566
|
'button.compose': string;
|
|
3016
2567
|
'buttons.download': string;
|
|
3017
|
-
'content.loading': string;
|
|
3018
|
-
'explorer.tabs.flows': string;
|
|
3019
|
-
'explorer.tabs.decisions': string;
|
|
3020
|
-
'explorer.active.branch': string;
|
|
3021
|
-
'explorer.active.branch.default': string;
|
|
3022
2568
|
'activities.flows.title': string;
|
|
3023
2569
|
'activities.flows.desc': string;
|
|
3024
2570
|
'activities.decisions.title': string;
|
|
@@ -3029,17 +2575,13 @@ export declare const messages: {
|
|
|
3029
2575
|
'activities.releases.desc': string;
|
|
3030
2576
|
'activities.releases.desc.additional': string;
|
|
3031
2577
|
'activities.releases.view': string;
|
|
3032
|
-
'activities.releases.graph': string;
|
|
3033
2578
|
'activities.compare.title': string;
|
|
3034
2579
|
'activities.compare.desc': string;
|
|
3035
2580
|
'activities.compare.view': string;
|
|
3036
|
-
'activities.templates.view': string;
|
|
3037
2581
|
'activities.debug.title': string;
|
|
3038
2582
|
'activities.debug.desc': string;
|
|
3039
2583
|
'activities.debug.view': string;
|
|
3040
2584
|
'activities.assets.saveSuccess': string;
|
|
3041
|
-
'programs.error.title': string;
|
|
3042
|
-
'programs.warning.title': string;
|
|
3043
2585
|
flows: string;
|
|
3044
2586
|
'migrations.title': string;
|
|
3045
2587
|
'migrations.create': string;
|
|
@@ -3064,7 +2606,6 @@ export declare const messages: {
|
|
|
3064
2606
|
'flows.autocomplete.task.selectType': string;
|
|
3065
2607
|
'flows.autocomplete.task.searchHelper': string;
|
|
3066
2608
|
'flows.autocomplete.task.searchResults': string;
|
|
3067
|
-
'flows.autocomplete.task': string;
|
|
3068
2609
|
'flows.autocomplete.task.snackbar.created': string;
|
|
3069
2610
|
'flows.autocomplete.task.snackbar.creating': string;
|
|
3070
2611
|
'flows.graph.show': string;
|
|
@@ -3098,7 +2639,6 @@ export declare const messages: {
|
|
|
3098
2639
|
'decisions.type.row': string;
|
|
3099
2640
|
'decisions.type.column': string;
|
|
3100
2641
|
'decisions.table.hitpolicy': string;
|
|
3101
|
-
'decisions.table.options': string;
|
|
3102
2642
|
'decisions.composer.title': string;
|
|
3103
2643
|
'decisions.composer.copyTitle': string;
|
|
3104
2644
|
'decisions.composer.createdMessage': string;
|
|
@@ -3143,9 +2683,6 @@ export declare const messages: {
|
|
|
3143
2683
|
'decisions.cells.newvalue.number.comparisonToRange': string;
|
|
3144
2684
|
'decisions.cells.newvalue.number.rangeStart': string;
|
|
3145
2685
|
'decisions.cells.newvalue.number.rangeEnd': string;
|
|
3146
|
-
'decisions.cells.newvalue.number.value': string;
|
|
3147
|
-
'decisions.cells.newvalue.number.rangeIncluded': string;
|
|
3148
|
-
'decisions.cells.newvalue.number.rangeToComparison': string;
|
|
3149
2686
|
'decisions.cells.newvalue.string.comparisonType': string;
|
|
3150
2687
|
'decisions.cells.newvalue.string.addValue': string;
|
|
3151
2688
|
'decisions.cells.newvalue.string.available': string;
|
|
@@ -3155,9 +2692,7 @@ export declare const messages: {
|
|
|
3155
2692
|
'decisions.valueSet': string;
|
|
3156
2693
|
'decisions.valueSet.description': string;
|
|
3157
2694
|
'decisions.valueSet.add': string;
|
|
3158
|
-
'decisions.valueSet.remove': string;
|
|
3159
2695
|
'decisions.valueSet.current': string;
|
|
3160
|
-
'decisions.valueSet.empty': string;
|
|
3161
2696
|
'dt.header.name': string;
|
|
3162
2697
|
'dt.header.delete': string;
|
|
3163
2698
|
'dt.header.expression': string;
|
|
@@ -3168,30 +2703,6 @@ export declare const messages: {
|
|
|
3168
2703
|
'program.status.UP': string;
|
|
3169
2704
|
'program.status.AST_ERROR': string;
|
|
3170
2705
|
'program.status.PROGRAM_ERROR': string;
|
|
3171
|
-
'package.explorer.flows': string;
|
|
3172
|
-
'package.explorer.servicetasks': string;
|
|
3173
|
-
'package.explorer.decisiontables': string;
|
|
3174
|
-
'dialog.addtype.title': string;
|
|
3175
|
-
'dialog.addtype.button.cancel': string;
|
|
3176
|
-
'dialog.addtype.button.confirm': string;
|
|
3177
|
-
'dialog.addtype.error.unique': string;
|
|
3178
|
-
'dialog.addtype.error.filled': string;
|
|
3179
|
-
'dialog.addtype.input.serviceType': string;
|
|
3180
|
-
'dialog.addtype.input.name': string;
|
|
3181
|
-
'dialog.copyas.title': string;
|
|
3182
|
-
'dialog.copyas.button.cancel': string;
|
|
3183
|
-
'dialog.copyas.button.confirm': string;
|
|
3184
|
-
'dialog.copyas.input.from': string;
|
|
3185
|
-
'dialog.copyas.input.to': string;
|
|
3186
|
-
'dialog.copyas.error.unique': string;
|
|
3187
|
-
'dialog.copyas.error.filled': string;
|
|
3188
|
-
'dialog.save.title': string;
|
|
3189
|
-
'dialog.save.content': string;
|
|
3190
|
-
'dialog.save.errors': string;
|
|
3191
|
-
'dialog.save.button.cancel': string;
|
|
3192
|
-
'dialog.save.button.confirm': string;
|
|
3193
|
-
'release.delete.content': string;
|
|
3194
|
-
'release.delete.error.title': string;
|
|
3195
2706
|
'release.deleted.message': string;
|
|
3196
2707
|
'releases.composer.createdMessage': string;
|
|
3197
2708
|
'releases.view.action': string;
|
|
@@ -3199,16 +2710,6 @@ export declare const messages: {
|
|
|
3199
2710
|
'releases.composer.assetName': string;
|
|
3200
2711
|
'releases.composer.assetDesc': string;
|
|
3201
2712
|
'releases.composer.errorsTitle': string;
|
|
3202
|
-
'releases.table.title': string;
|
|
3203
|
-
'releases.table.column.name': string;
|
|
3204
|
-
'releases.table.column.message': string;
|
|
3205
|
-
'releases.table.column.created': string;
|
|
3206
|
-
'releases.table.name': string;
|
|
3207
|
-
'releases.add.error.unique': string;
|
|
3208
|
-
'releases.add.error.filled': string;
|
|
3209
|
-
'releases.add.input.name': string;
|
|
3210
|
-
'releases.add.input.msg': string;
|
|
3211
|
-
'releases.add.button.create': string;
|
|
3212
2713
|
'releases.button.compare': string;
|
|
3213
2714
|
'releases.button.branch': string;
|
|
3214
2715
|
'releases.button.checkout': string;
|
|
@@ -3219,9 +2720,6 @@ export declare const messages: {
|
|
|
3219
2720
|
'releases.latest.name': string;
|
|
3220
2721
|
'releases.latest.note': string;
|
|
3221
2722
|
'releases.details.title': string;
|
|
3222
|
-
'branch.delete.title': string;
|
|
3223
|
-
'branch.delete.content': string;
|
|
3224
|
-
'branch.delete.error.title': string;
|
|
3225
2723
|
'release.branch.creating': string;
|
|
3226
2724
|
'release.branch.created': string;
|
|
3227
2725
|
'release.branch.deleting': string;
|
|
@@ -3258,14 +2756,9 @@ export declare const messages: {
|
|
|
3258
2756
|
'debug.select.searchResults': string;
|
|
3259
2757
|
'debug.select.confirm': string;
|
|
3260
2758
|
'debug.inputs.format': string;
|
|
3261
|
-
'debug.asset.select.label': string;
|
|
3262
|
-
'debug.asset.select.clear': string;
|
|
3263
|
-
'debug.asset.select.execute': string;
|
|
3264
|
-
'debug.asset.execute.inputs': string;
|
|
3265
2759
|
'debug.asset.execute.errors': string;
|
|
3266
2760
|
'debug.asset.execute.outputs.dt.json': string;
|
|
3267
2761
|
'debug.asset.execute.outputs.dt.rejects': string;
|
|
3268
|
-
'debug.asset.execute.outputs.dt.rejects.order': string;
|
|
3269
2762
|
'debug.asset.execute.outputs.flow.step': string;
|
|
3270
2763
|
'debug.csv.row': string;
|
|
3271
2764
|
'debug.csv.download': string;
|
|
@@ -3280,25 +2773,16 @@ export declare const messages: {
|
|
|
3280
2773
|
'compare.dialog.title': string;
|
|
3281
2774
|
'compare.dialog.line': string;
|
|
3282
2775
|
'compare.dialog.side': string;
|
|
3283
|
-
'menu.feedbackAllTasks': string;
|
|
3284
2776
|
'menu.activities': string;
|
|
3285
2777
|
'feedback.all': string;
|
|
3286
|
-
'feedback.none': string;
|
|
3287
|
-
'feedback.search': string;
|
|
3288
|
-
'feedback.search.placeholder': string;
|
|
3289
|
-
'feedback.search.filter.category': string;
|
|
3290
|
-
'feedback.search.filter.subCategory': string;
|
|
3291
|
-
'feedback.filter.selectNone': string;
|
|
2778
|
+
'task.feedback.none': string;
|
|
3292
2779
|
'queues.all': string;
|
|
3293
2780
|
'consumers.all': string;
|
|
3294
|
-
'queue.config.appId': string;
|
|
3295
2781
|
'queue.config.none': string;
|
|
3296
2782
|
'queue.config.consumerName': string;
|
|
3297
2783
|
'queue.config.routingKey': string;
|
|
3298
2784
|
'queue.config.consumerStatus': string;
|
|
3299
2785
|
'queue.config.comment': string;
|
|
3300
|
-
'queue.config.consumerId': string;
|
|
3301
|
-
'queue.config.qualifiedJavaName': string;
|
|
3302
2786
|
'queue.config.queueName': string;
|
|
3303
2787
|
'queue.config.createdAt': string;
|
|
3304
2788
|
'queue.config.createdBy': string;
|
|
@@ -3316,80 +2800,16 @@ export declare const messages: {
|
|
|
3316
2800
|
'queue.all_messages.status': string;
|
|
3317
2801
|
'queue.all_messages.body': string;
|
|
3318
2802
|
'queue.all_messages.created': string;
|
|
3319
|
-
'menu.messages': string;
|
|
3320
|
-
'menu.deliveries': string;
|
|
3321
|
-
'toolbar.preview': string;
|
|
3322
|
-
'workflow.edit.title': string;
|
|
3323
|
-
'workflow.create': string;
|
|
3324
|
-
'button.view.all.articles': string;
|
|
3325
|
-
'button.view.all.pages': string;
|
|
3326
|
-
'button.view.all.links': string;
|
|
3327
|
-
'button.view.all.workflows': string;
|
|
3328
2803
|
workflows: string;
|
|
3329
|
-
'associations.add': string;
|
|
3330
2804
|
'explorer.pages': string;
|
|
3331
|
-
'explorer.pages.create': string;
|
|
3332
|
-
'explorer.pages.dualview': string;
|
|
3333
|
-
'explorer.locale.empty': string;
|
|
3334
|
-
'articles.message': string;
|
|
3335
|
-
'article.deletepage.title': string;
|
|
3336
|
-
'article.deletepage': string;
|
|
3337
|
-
'article.options': string;
|
|
3338
|
-
'article.addlink': string;
|
|
3339
|
-
'article.links.addremove': string;
|
|
3340
|
-
'article.links': string;
|
|
3341
|
-
'article.links.sitelinks': string;
|
|
3342
|
-
'article.links.remove': string;
|
|
3343
|
-
'article.workflows.addremove': string;
|
|
3344
|
-
'article.workflows': string;
|
|
3345
|
-
'article.workflows.add': string;
|
|
3346
|
-
'article.workflows.remove': string;
|
|
3347
|
-
'article.workflows.siteworkflows': string;
|
|
3348
|
-
'button.view': string;
|
|
3349
|
-
'button.addremove': string;
|
|
3350
|
-
'composer.article.title': string;
|
|
3351
|
-
'composer.article.desc': string;
|
|
3352
|
-
'composer.locale.title': string;
|
|
3353
|
-
'composer.locale.desc': string;
|
|
3354
|
-
'composer.page.title': string;
|
|
3355
|
-
'composer.page.desc': string;
|
|
3356
|
-
'composer.link.title': string;
|
|
3357
|
-
'composer.link.desc': string;
|
|
3358
|
-
'composer.workflow.title': string;
|
|
3359
|
-
'composer.workflow.desc': string;
|
|
3360
|
-
'composer.release.title': string;
|
|
3361
|
-
'composer.release.desc': string;
|
|
3362
|
-
'toolbar.dashboard': string;
|
|
3363
|
-
'dashboard.view.helper': string;
|
|
3364
|
-
'link.associate.title': string;
|
|
3365
|
-
'link.options.edit': string;
|
|
3366
|
-
'link.options.remove': string;
|
|
3367
|
-
'resource.options': string;
|
|
3368
2805
|
'resource.edit.workflows': string;
|
|
3369
|
-
'workflow.associate.title': string;
|
|
3370
|
-
'workflow.composer.title': string;
|
|
3371
|
-
'workflow.composer.name': string;
|
|
3372
|
-
'workflow.technicalname': string;
|
|
3373
|
-
'workflow.composer.select': string;
|
|
3374
|
-
'workflow.composer.helper': string;
|
|
3375
|
-
'workflow.composer.placeholder': string;
|
|
3376
|
-
'workflow.delete.title': string;
|
|
3377
2806
|
'workflow.delete': string;
|
|
3378
|
-
'workflow.removepage.title': string;
|
|
3379
|
-
'workflow.removepage': string;
|
|
3380
|
-
'workflow.options': string;
|
|
3381
|
-
'workflow.add': string;
|
|
3382
2807
|
'workflow.edit': string;
|
|
3383
|
-
'
|
|
3384
|
-
'
|
|
3385
|
-
'
|
|
3386
|
-
'
|
|
3387
|
-
'
|
|
3388
|
-
'toolbar.links': string;
|
|
3389
|
-
'toolbar.workflows': string;
|
|
3390
|
-
'toolbar.releases': string;
|
|
3391
|
-
'toolbar.locales': string;
|
|
3392
|
-
'eveli.batches.batchView..averageRunTime': string;
|
|
2808
|
+
'eveli.table.drawer.title.columns': string;
|
|
2809
|
+
'eveli.table.drawer.title.filters': string;
|
|
2810
|
+
'eveli.table.drawer.title.saved-filters': string;
|
|
2811
|
+
'eveli.table.drawer.title.export-data': string;
|
|
2812
|
+
'eveli.batches.batchView.averageRunTime': string;
|
|
3393
2813
|
'eveli.batches.batchView.averageRunTime.ms': string;
|
|
3394
2814
|
'taskcard.style.COMPACT': string;
|
|
3395
2815
|
'taskcard.style.DEFAULT': string;
|
|
@@ -3397,28 +2817,14 @@ export declare const messages: {
|
|
|
3397
2817
|
};
|
|
3398
2818
|
sv: {
|
|
3399
2819
|
'document.title': string;
|
|
3400
|
-
'booleanValue.true': string;
|
|
3401
|
-
'booleanValue.false': string;
|
|
3402
2820
|
'eveli.textSeparatorColon': string;
|
|
3403
2821
|
'eveli.noValueIndicator': string;
|
|
3404
2822
|
'eveli.permissions.none.title': string;
|
|
3405
2823
|
'eveli.permissions.none.desc1': string;
|
|
3406
2824
|
'eveli.permissions.none.desc2': string;
|
|
3407
2825
|
'tasksView.title': string;
|
|
3408
|
-
'tasksTableHeader.taskName': string;
|
|
3409
|
-
'tasksTableHeader.category': string;
|
|
3410
|
-
'tasksTableHeader.status': string;
|
|
3411
|
-
'tasksTableHeader.dueDate': string;
|
|
3412
|
-
'tasksTableHeader.priority': string;
|
|
3413
|
-
'tasksTableHeader.assigned': string;
|
|
3414
|
-
'tasksTableAction.editTask': string;
|
|
3415
|
-
'tasksTableAction.deleteTask': string;
|
|
3416
|
-
'taskPriority.low': string;
|
|
3417
|
-
'taskPriority.normal': string;
|
|
3418
|
-
'taskPriority.high': string;
|
|
3419
2826
|
'taskDialog.priority': string;
|
|
3420
2827
|
'taskDialog.subject': string;
|
|
3421
|
-
'taskDialog.description': string;
|
|
3422
2828
|
'taskDialog.dueDate': string;
|
|
3423
2829
|
'taskDialog.assignedTo': string;
|
|
3424
2830
|
'taskDialog.assignedUser': string;
|
|
@@ -3438,24 +2844,19 @@ export declare const messages: {
|
|
|
3438
2844
|
'task.status.delegated': string;
|
|
3439
2845
|
'task.status.waiting': string;
|
|
3440
2846
|
'task.form.review': string;
|
|
3441
|
-
'task.form.feedback.manage': string;
|
|
3442
|
-
'task.form.feedback.updated': string;
|
|
3443
2847
|
'task.created': string;
|
|
3444
2848
|
'task.updated': string;
|
|
3445
|
-
comments: string;
|
|
3446
2849
|
'task.comments.external.createTask': string;
|
|
3447
2850
|
'task.comments.internal.createTask': string;
|
|
3448
2851
|
'task.attachments.createTask': string;
|
|
3449
2852
|
'task.comments.external.added': string;
|
|
3450
2853
|
'task.feedback.publishedSaved': string;
|
|
3451
|
-
'task.comments.internal.added': string;
|
|
3452
2854
|
internalComments: string;
|
|
3453
2855
|
externalComments: string;
|
|
3454
2856
|
'comment.store': string;
|
|
3455
2857
|
'comment.add': string;
|
|
3456
2858
|
'comment.addInternal': string;
|
|
3457
2859
|
'comment.addExternal': string;
|
|
3458
|
-
'comment.reply': string;
|
|
3459
2860
|
'taskButton.addTask': string;
|
|
3460
2861
|
'taskButton.refresh': string;
|
|
3461
2862
|
'taskButton.accept': string;
|
|
@@ -3463,9 +2864,6 @@ export declare const messages: {
|
|
|
3463
2864
|
'table.body.emptyDataSourceMessage': string;
|
|
3464
2865
|
'table.body.filterRow.filterTooltip': string;
|
|
3465
2866
|
'table.body.deleteTooltip': string;
|
|
3466
|
-
'table.body.editRow.deleteText': string;
|
|
3467
|
-
'table.body.editRow.cancelTask': string;
|
|
3468
|
-
'table.body.editRow.saveTask': string;
|
|
3469
2867
|
'table.header.actions': string;
|
|
3470
2868
|
'table.pagination.labelDisplayedRows': string;
|
|
3471
2869
|
'table.pagination.labelRowsPerPage': string;
|
|
@@ -3476,62 +2874,41 @@ export declare const messages: {
|
|
|
3476
2874
|
'table.toolbar.search': string;
|
|
3477
2875
|
'table.toolbar.showColumnsTitle': string;
|
|
3478
2876
|
'table.toolbar.addRemoveColumns': string;
|
|
3479
|
-
'taskLink.title': string;
|
|
3480
|
-
'taskLink.button.open': string;
|
|
3481
2877
|
'taskLink.pdf.open': string;
|
|
3482
|
-
'explorer.title': string;
|
|
3483
2878
|
'explorer.login': string;
|
|
3484
2879
|
'locale.fi': string;
|
|
3485
2880
|
'locale.sv': string;
|
|
3486
2881
|
'locale.en': string;
|
|
3487
|
-
'app.logout': string;
|
|
3488
|
-
'app.login': string;
|
|
3489
|
-
'app.feedback': string;
|
|
3490
2882
|
'main.articles.all': string;
|
|
3491
2883
|
'main.links.all': string;
|
|
3492
2884
|
'main.services.all': string;
|
|
3493
2885
|
'main.flows.all': string;
|
|
3494
2886
|
'main.debug': string;
|
|
3495
|
-
'main.compare': string;
|
|
3496
2887
|
'main.decisions.all': string;
|
|
3497
2888
|
'menu.dashboard': string;
|
|
3498
2889
|
'menu.profile': string;
|
|
3499
2890
|
'menu.tasks': string;
|
|
3500
|
-
'menu.evaluations': string;
|
|
3501
2891
|
'menu.forms': string;
|
|
3502
2892
|
'menu.queues': string;
|
|
3503
|
-
'menu.users': string;
|
|
3504
2893
|
'menu.help': string;
|
|
3505
|
-
'menu.flow': string;
|
|
3506
2894
|
'menu.processes': string;
|
|
3507
|
-
'menu.reports': string;
|
|
3508
|
-
'menu.workflows': string;
|
|
3509
2895
|
'menu.logout': string;
|
|
3510
|
-
'menu.workflowTags': string;
|
|
3511
2896
|
'menu.publications': string;
|
|
3512
2897
|
'menu.services': string;
|
|
3513
|
-
'menu.content': string;
|
|
3514
|
-
'menu.calendar': string;
|
|
3515
2898
|
'menu.feedback': string;
|
|
3516
2899
|
'menu.compose': string;
|
|
3517
|
-
'menu.pages': string;
|
|
3518
2900
|
'menu.articles': string;
|
|
3519
2901
|
'menu.links': string;
|
|
3520
2902
|
'menu.locales': string;
|
|
3521
|
-
'menu.migrations': string;
|
|
3522
2903
|
'menu.templates': string;
|
|
3523
2904
|
'menu.flows': string;
|
|
3524
2905
|
'menu.decisions': string;
|
|
3525
2906
|
'menu.debug': string;
|
|
3526
2907
|
'menu.releases': string;
|
|
3527
2908
|
'menu.compare': string;
|
|
3528
|
-
'front.intro.title': string;
|
|
3529
|
-
'profile.title': string;
|
|
3530
2909
|
'profile.user.name': string;
|
|
3531
2910
|
'profile.user.email': string;
|
|
3532
2911
|
'profile.user.role': string;
|
|
3533
|
-
'profile.user.phone': string;
|
|
3534
|
-
'profile.app.version': string;
|
|
3535
2912
|
'button.cancel': string;
|
|
3536
2913
|
'button.confirmDelete': string;
|
|
3537
2914
|
'button.delete': string;
|
|
@@ -3539,17 +2916,12 @@ export declare const messages: {
|
|
|
3539
2916
|
'button.delete.link': string;
|
|
3540
2917
|
'button.delete.article': string;
|
|
3541
2918
|
'button.delete.page': string;
|
|
3542
|
-
'button.unpublish': string;
|
|
3543
2919
|
'button.update': string;
|
|
3544
2920
|
'button.publish': string;
|
|
3545
2921
|
'button.accept': string;
|
|
3546
|
-
'button.edit': string;
|
|
3547
2922
|
'button.close': string;
|
|
3548
|
-
'button.reject': string;
|
|
3549
|
-
'button.send': string;
|
|
3550
2923
|
'button.save': string;
|
|
3551
2924
|
'button.dismiss': string;
|
|
3552
|
-
'button.editRoles': string;
|
|
3553
2925
|
'button.select': string;
|
|
3554
2926
|
'error.minTextLength': string;
|
|
3555
2927
|
'error.maxTextLength': string;
|
|
@@ -3563,15 +2935,12 @@ export declare const messages: {
|
|
|
3563
2935
|
'error.dataAccess': string;
|
|
3564
2936
|
'error.statusOpenError': string;
|
|
3565
2937
|
'error.workflowCreation': string;
|
|
3566
|
-
'table.body.addTooltip': string;
|
|
3567
|
-
'table.body.editTooltip': string;
|
|
3568
2938
|
'table.body.editRow.deleteMessage': string;
|
|
3569
2939
|
'workflowTable.title': string;
|
|
3570
2940
|
'workflowTableHeader.name': string;
|
|
3571
2941
|
'workflowTableHeader.formName': string;
|
|
3572
2942
|
'workflowTableHeader.flowName': string;
|
|
3573
2943
|
'workflowTableHeader.updated': string;
|
|
3574
|
-
'workflowTable.addButton': string;
|
|
3575
2944
|
'workflowTable.editButton': string;
|
|
3576
2945
|
'workflow.dialogTitle': string;
|
|
3577
2946
|
'workflow.name': string;
|
|
@@ -3580,7 +2949,6 @@ export declare const messages: {
|
|
|
3580
2949
|
'workflow.flowName': string;
|
|
3581
2950
|
'processTable.title': string;
|
|
3582
2951
|
'processTableHeader.workflow': string;
|
|
3583
|
-
'processTableHeader.user': string;
|
|
3584
2952
|
'processTableHeader.status': string;
|
|
3585
2953
|
'processTableHeader.created': string;
|
|
3586
2954
|
'processTableHeader.questionnaireId': string;
|
|
@@ -3591,18 +2959,7 @@ export declare const messages: {
|
|
|
3591
2959
|
'process.status.WAITING': string;
|
|
3592
2960
|
'process.status.COMPLETED': string;
|
|
3593
2961
|
'process.status.REJECTED': string;
|
|
3594
|
-
'comment.button': string;
|
|
3595
|
-
'comment.title': string;
|
|
3596
|
-
'comment.form.email': string;
|
|
3597
|
-
'comment.form.feedbackType': string;
|
|
3598
|
-
'comment.form.body': string;
|
|
3599
|
-
'comment.type.general': string;
|
|
3600
|
-
'comment.type.propose': string;
|
|
3601
|
-
'comment.type.contact': string;
|
|
3602
|
-
'comment.submitted.success': string;
|
|
3603
|
-
'comment.submitted.failure': string;
|
|
3604
2962
|
'spoTasksTableHeader.taskName': string;
|
|
3605
|
-
'spoTasksTableHeader.category': string;
|
|
3606
2963
|
'spoTasksTableHeader.status': string;
|
|
3607
2964
|
'spoTasksTableHeader.priority': string;
|
|
3608
2965
|
'spoTasksTableHeader.dueDate': string;
|
|
@@ -3612,13 +2969,9 @@ export declare const messages: {
|
|
|
3612
2969
|
'spoTasksTableHeader.clientName': string;
|
|
3613
2970
|
'spoTasksTableHeader.additionalInfo': string;
|
|
3614
2971
|
'taskDialog.clientIdentificator': string;
|
|
3615
|
-
'taskDialog.assignedUserEmail': string;
|
|
3616
|
-
'task.editRoles': string;
|
|
3617
|
-
Questionnaire: string;
|
|
3618
2972
|
Manual: string;
|
|
3619
2973
|
Protected: string;
|
|
3620
2974
|
Normal: string;
|
|
3621
|
-
Represented: string;
|
|
3622
2975
|
CustomerCreated: string;
|
|
3623
2976
|
Internal: string;
|
|
3624
2977
|
'task.role.assignedAllUsers': string;
|
|
@@ -3629,31 +2982,16 @@ export declare const messages: {
|
|
|
3629
2982
|
'task.statistics.priorityCount': string;
|
|
3630
2983
|
'task.statistics.daily': string;
|
|
3631
2984
|
'task.statistics.overdue': string;
|
|
3632
|
-
'feedback.button': string;
|
|
3633
|
-
'feedback.thanks': string;
|
|
3634
2985
|
'feedback.create.title': string;
|
|
3635
|
-
'feedback.title': string;
|
|
3636
2986
|
'feedback.update.title': string;
|
|
3637
|
-
'feedback.description': string;
|
|
3638
|
-
'feedback.name': string;
|
|
3639
|
-
'feedback.sendScreenshot': string;
|
|
3640
|
-
'feedback.close': string;
|
|
3641
|
-
'feedback.send': string;
|
|
3642
2987
|
'feedback.taskReferenceId': string;
|
|
3643
2988
|
'feedback.taskReferenceId.short': string;
|
|
3644
|
-
'feedback.taskId': string;
|
|
3645
2989
|
'feedback.mainCategory': string;
|
|
3646
2990
|
'feedback.subCategory': string;
|
|
3647
2991
|
'feedback.feedbackValue': string;
|
|
3648
2992
|
'feedback.customerTitle': string;
|
|
3649
2993
|
'feedback.myReply': string;
|
|
3650
|
-
'feedback.noFeedback.info1': string;
|
|
3651
|
-
'feedback.noFeedback.info2': string;
|
|
3652
|
-
'feedback.customerFeedback': string;
|
|
3653
2994
|
'feedback.customerApprovals': string;
|
|
3654
|
-
'feedback.sourceTaskId': string;
|
|
3655
|
-
'feedback.formName': string;
|
|
3656
|
-
'feedback.dateReceived': string;
|
|
3657
2995
|
'feedback.createdBy': string;
|
|
3658
2996
|
'feedback.updatedBy': string;
|
|
3659
2997
|
'feedback.updated': string;
|
|
@@ -3664,7 +3002,6 @@ export declare const messages: {
|
|
|
3664
3002
|
'help.title': string;
|
|
3665
3003
|
'attachmentView.title': string;
|
|
3666
3004
|
'attachmentTableHeader.size': string;
|
|
3667
|
-
'attachmentTableHeader.updated': string;
|
|
3668
3005
|
'attachmentTableHeader.created': string;
|
|
3669
3006
|
'attachmentTableHeader.name': string;
|
|
3670
3007
|
'attachmentButton.addAttachment': string;
|
|
@@ -3675,29 +3012,13 @@ export declare const messages: {
|
|
|
3675
3012
|
'attachment.delete.confirmTitle': string;
|
|
3676
3013
|
'attachment.delete.confirmText': string;
|
|
3677
3014
|
'attachment.deleteFailed': string;
|
|
3678
|
-
'workflowReleaseTable.title': string;
|
|
3679
|
-
'workflowReleaseTableHeader.name': string;
|
|
3680
|
-
'workflowReleaseTableHeader.description': string;
|
|
3681
|
-
'workflowReleaseTableHeader.updatedBy': string;
|
|
3682
|
-
'workflowReleaseTableHeader.updated': string;
|
|
3683
|
-
'workflowReleaseTable.addButton': string;
|
|
3684
|
-
'workflowReleaseTable.viewButton': string;
|
|
3685
|
-
'workflowReleaseTable.exportButton': string;
|
|
3686
|
-
'workflowRelease.dialogTitle': string;
|
|
3687
|
-
'workflowRelease.name': string;
|
|
3688
|
-
'workflowRelease.description': string;
|
|
3689
|
-
'workflowRelease.releaseCreationFailed': string;
|
|
3690
3015
|
'publicationsTable.title': string;
|
|
3691
3016
|
'publicationsTableHeader.name': string;
|
|
3692
3017
|
'publicationsTableHeader.description': string;
|
|
3693
3018
|
'publicationsTableHeader.createdBy': string;
|
|
3694
3019
|
'publicationsTableHeader.created': string;
|
|
3695
|
-
'publicationsTableHeader.contentTag': string;
|
|
3696
|
-
'publicationsTableHeader.workflowTag': string;
|
|
3697
|
-
'publicationsTableHeader.wrenchTag': string;
|
|
3698
3020
|
'publicationsTableHeader.liveDate': string;
|
|
3699
3021
|
'publicationsTable.addButton': string;
|
|
3700
|
-
'publicationsTable.viewButton': string;
|
|
3701
3022
|
'publicationsTable.exportButton': string;
|
|
3702
3023
|
'publicationsTable.uploadButton': string;
|
|
3703
3024
|
'publications.external': string;
|
|
@@ -3715,48 +3036,25 @@ export declare const messages: {
|
|
|
3715
3036
|
'publications.downloadFailed': string;
|
|
3716
3037
|
'publications.tagCreationFailed': string;
|
|
3717
3038
|
'publications.uploadDialogTitle': string;
|
|
3718
|
-
'dialobForms.dialog.heading': string;
|
|
3719
|
-
'dialobForms.table.tooltip.add': string;
|
|
3720
|
-
'dialobForms.table.label': string;
|
|
3721
|
-
'dialobForms.table.created': string;
|
|
3722
|
-
'dialobForms.table.lastSaved': string;
|
|
3723
|
-
'dialobForms.table.tooltip.edit': string;
|
|
3724
|
-
'dialobForms.dialog.emptyTitle': string;
|
|
3725
|
-
'dialobForms.table.tooltip.copy': string;
|
|
3726
|
-
'dialobForms.table.tooltip.delete': string;
|
|
3727
3039
|
'dialobForm.saveFailed': string;
|
|
3728
3040
|
'dialobForm.downloadFailed': string;
|
|
3729
3041
|
'dialobForm.deleteFailed': string;
|
|
3730
|
-
'dialobForm.heading.copyDialog': string;
|
|
3731
|
-
'dialobForm.heading.addDialog': string;
|
|
3732
|
-
'dialobForm.dialog.formName': string;
|
|
3733
|
-
'dialobForm.dialog.formLabel': string;
|
|
3734
|
-
'dialobForm.error.invalidFormName': string;
|
|
3735
|
-
'dialobForm.dialog.deleteQuestion': string;
|
|
3736
|
-
'dialobForm.heading.deleteDialog': string;
|
|
3737
3042
|
'dialobForm.review.title': string;
|
|
3738
3043
|
'feedback.notenabled': string;
|
|
3739
3044
|
pages: string;
|
|
3740
3045
|
articles: string;
|
|
3741
3046
|
locale: string;
|
|
3742
3047
|
locales: string;
|
|
3743
|
-
tag: string;
|
|
3744
3048
|
links: string;
|
|
3745
3049
|
releases: string;
|
|
3746
3050
|
options: string;
|
|
3747
3051
|
value: string;
|
|
3748
3052
|
date: string;
|
|
3749
|
-
order: string;
|
|
3750
3053
|
description: string;
|
|
3751
3054
|
name: string;
|
|
3752
|
-
delete: string;
|
|
3753
3055
|
download: string;
|
|
3754
|
-
disable: string;
|
|
3755
3056
|
status: string;
|
|
3756
3057
|
created: string;
|
|
3757
|
-
modified: string;
|
|
3758
|
-
rename: string;
|
|
3759
|
-
reorder: string;
|
|
3760
3058
|
remove: string;
|
|
3761
3059
|
'site.content.empty': string;
|
|
3762
3060
|
'composer.select.article': string;
|
|
@@ -3770,8 +3068,6 @@ export declare const messages: {
|
|
|
3770
3068
|
'search.templates': string;
|
|
3771
3069
|
'search.flows': string;
|
|
3772
3070
|
'search.decisions': string;
|
|
3773
|
-
'activities.title': string;
|
|
3774
|
-
'activities.desc': string;
|
|
3775
3071
|
'activities.article.title': string;
|
|
3776
3072
|
'activities.article.desc': string;
|
|
3777
3073
|
'activities.locale.title': string;
|
|
@@ -3815,7 +3111,6 @@ export declare const messages: {
|
|
|
3815
3111
|
'services.change': string;
|
|
3816
3112
|
'services.edit': string;
|
|
3817
3113
|
'services.technicalname': string;
|
|
3818
|
-
'services.technicalname.description': string;
|
|
3819
3114
|
'services.selected': string;
|
|
3820
3115
|
'services.modeselect.title': string;
|
|
3821
3116
|
'services.modeselect.label': string;
|
|
@@ -3832,7 +3127,6 @@ export declare const messages: {
|
|
|
3832
3127
|
'services.anonmode.label': string;
|
|
3833
3128
|
'services.anonmode.tooltip': string;
|
|
3834
3129
|
'services.flowName': string;
|
|
3835
|
-
'services.flowName.description': string;
|
|
3836
3130
|
'services.formName': string;
|
|
3837
3131
|
'services.formName.description': string;
|
|
3838
3132
|
'services.formTag': string;
|
|
@@ -3853,16 +3147,10 @@ export declare const messages: {
|
|
|
3853
3147
|
'snack.link.createdMessage': string;
|
|
3854
3148
|
'snack.link.deletedMessage': string;
|
|
3855
3149
|
'snack.link.editedMessage': string;
|
|
3856
|
-
'snack.link.addedMessage': string;
|
|
3857
|
-
'snack.link.removedMessage': string;
|
|
3858
3150
|
'snack.workflow.createdMessage': string;
|
|
3859
3151
|
'snack.workflow.deletedMessage': string;
|
|
3860
3152
|
'snack.workflow.editedMessage': string;
|
|
3861
|
-
'snack.workflow.addedMessage': string;
|
|
3862
|
-
'snack.workflow.removedMessage': string;
|
|
3863
3153
|
'snack.locale.createdMessage': string;
|
|
3864
|
-
'snack.locale.deletedMessage': string;
|
|
3865
|
-
'snack.locale.editedMessage': string;
|
|
3866
3154
|
'snack.locale.enabled': string;
|
|
3867
3155
|
'snack.locale.disabled': string;
|
|
3868
3156
|
'snack.template.createdMessage': string;
|
|
@@ -3871,13 +3159,11 @@ export declare const messages: {
|
|
|
3871
3159
|
'snack.release.createdMessage': string;
|
|
3872
3160
|
'snack.release.deletedMessage': string;
|
|
3873
3161
|
'snack.migration.createdMessage': string;
|
|
3874
|
-
'toolbar.search': string;
|
|
3875
3162
|
'toolbar.save': string;
|
|
3876
3163
|
'toolbar.stencil': string;
|
|
3877
3164
|
'toolbar.wrench': string;
|
|
3878
3165
|
'toolbar.menu': string;
|
|
3879
3166
|
'toolbar.help': string;
|
|
3880
|
-
'toolbar.services': string;
|
|
3881
3167
|
'toolbar.import': string;
|
|
3882
3168
|
'toolbar.tasks': string;
|
|
3883
3169
|
'toolbar.about': string;
|
|
@@ -3897,11 +3183,8 @@ export declare const messages: {
|
|
|
3897
3183
|
'transferlist.noItemsSelected': string;
|
|
3898
3184
|
'transferlist.search': string;
|
|
3899
3185
|
'transferlist.noSearchResults': string;
|
|
3900
|
-
'explorer.tabs.search': string;
|
|
3901
|
-
'explorer.tabs.articles': string;
|
|
3902
3186
|
'explorer.tabs.links': string;
|
|
3903
3187
|
'explorer.tabs.services': string;
|
|
3904
|
-
imports: string;
|
|
3905
3188
|
'imports.select': string;
|
|
3906
3189
|
'imports.import.action': string;
|
|
3907
3190
|
'article.order': string;
|
|
@@ -3918,45 +3201,28 @@ export declare const messages: {
|
|
|
3918
3201
|
'article.delete.description': string;
|
|
3919
3202
|
'article.edit.title': string;
|
|
3920
3203
|
'article.edit.parent': string;
|
|
3921
|
-
'article.edit.orderhelper': string;
|
|
3922
3204
|
'article.devmode.helper': string;
|
|
3923
3205
|
'article.devmode': string;
|
|
3924
3206
|
articleservices: string;
|
|
3925
3207
|
articlelinks: string;
|
|
3926
3208
|
'article.composer.orderhelper': string;
|
|
3927
|
-
allarticles: string;
|
|
3928
|
-
'allarticles.individual': string;
|
|
3929
|
-
'add.allarticles.link.help': string;
|
|
3930
|
-
'add.allarticles.service.help': string;
|
|
3931
3209
|
'button.create': string;
|
|
3932
3210
|
'button.add': string;
|
|
3933
3211
|
'button.disable': string;
|
|
3934
3212
|
'button.enable': string;
|
|
3935
|
-
'button.remove': string;
|
|
3936
3213
|
'button.apply': string;
|
|
3937
|
-
'button.releasegraph': string;
|
|
3938
3214
|
'button.view.all.locales': string;
|
|
3939
3215
|
'button.view.all.releases': string;
|
|
3940
3216
|
'button.view.all.templates': string;
|
|
3941
|
-
'links.message': string;
|
|
3942
3217
|
'links.searchAll': string;
|
|
3943
|
-
'link.article.add.title': string;
|
|
3944
3218
|
'link.article.select': string;
|
|
3945
3219
|
'link.type': string;
|
|
3946
|
-
'link.url': string;
|
|
3947
|
-
'link.locale.all': string;
|
|
3948
3220
|
'link.content': string;
|
|
3949
3221
|
'link.composer.title': string;
|
|
3950
|
-
'link.composer.descriptionlabel': string;
|
|
3951
|
-
'link.composer.descriptionhelper': string;
|
|
3952
3222
|
'link.composer.valuehelper': string;
|
|
3953
3223
|
'link.edit.title': string;
|
|
3954
3224
|
'link.delete.title': string;
|
|
3955
3225
|
'link.delete': string;
|
|
3956
|
-
'link.removepage.title': string;
|
|
3957
|
-
'link.removepage': string;
|
|
3958
|
-
'link.options': string;
|
|
3959
|
-
'link.options.add': string;
|
|
3960
3226
|
'resource.edit.links': string;
|
|
3961
3227
|
'links.change': string;
|
|
3962
3228
|
'link.create': string;
|
|
@@ -3982,7 +3248,6 @@ export declare const messages: {
|
|
|
3982
3248
|
'page.create': string;
|
|
3983
3249
|
'page.delete.dialog.title': string;
|
|
3984
3250
|
'page.delete.description': string;
|
|
3985
|
-
'pages.save': string;
|
|
3986
3251
|
'pages.add': string;
|
|
3987
3252
|
'pages.change': string;
|
|
3988
3253
|
'pages.select.locale': string;
|
|
@@ -3997,8 +3262,6 @@ export declare const messages: {
|
|
|
3997
3262
|
'pages.devmode.helper': string;
|
|
3998
3263
|
'pages.devmode': string;
|
|
3999
3264
|
'pages.delete': string;
|
|
4000
|
-
'pages.delete.message': string;
|
|
4001
|
-
'pages.options': string;
|
|
4002
3265
|
'pages.edit.selectpage': string;
|
|
4003
3266
|
'pages.edit.selectTargetLocale': string;
|
|
4004
3267
|
'release.create': string;
|
|
@@ -4019,11 +3282,6 @@ export declare const messages: {
|
|
|
4019
3282
|
'buttons.copy': string;
|
|
4020
3283
|
'button.compose': string;
|
|
4021
3284
|
'buttons.download': string;
|
|
4022
|
-
'content.loading': string;
|
|
4023
|
-
'explorer.tabs.flows': string;
|
|
4024
|
-
'explorer.tabs.decisions': string;
|
|
4025
|
-
'explorer.active.branch': string;
|
|
4026
|
-
'explorer.active.branch.default': string;
|
|
4027
3285
|
'activities.flows.title': string;
|
|
4028
3286
|
'activities.flows.desc': string;
|
|
4029
3287
|
'activities.decisions.title': string;
|
|
@@ -4034,17 +3292,13 @@ export declare const messages: {
|
|
|
4034
3292
|
'activities.releases.desc': string;
|
|
4035
3293
|
'activities.releases.desc.additional': string;
|
|
4036
3294
|
'activities.releases.view': string;
|
|
4037
|
-
'activities.releases.graph': string;
|
|
4038
3295
|
'activities.compare.title': string;
|
|
4039
3296
|
'activities.compare.desc': string;
|
|
4040
3297
|
'activities.compare.view': string;
|
|
4041
|
-
'activities.templates.view': string;
|
|
4042
3298
|
'activities.debug.title': string;
|
|
4043
3299
|
'activities.debug.desc': string;
|
|
4044
3300
|
'activities.debug.view': string;
|
|
4045
3301
|
'activities.assets.saveSuccess': string;
|
|
4046
|
-
'programs.error.title': string;
|
|
4047
|
-
'programs.warning.title': string;
|
|
4048
3302
|
flows: string;
|
|
4049
3303
|
'migrations.title': string;
|
|
4050
3304
|
'migrations.create': string;
|
|
@@ -4069,7 +3323,6 @@ export declare const messages: {
|
|
|
4069
3323
|
'flows.autocomplete.task.selectType': string;
|
|
4070
3324
|
'flows.autocomplete.task.searchHelper': string;
|
|
4071
3325
|
'flows.autocomplete.task.searchResults': string;
|
|
4072
|
-
'flows.autocomplete.task': string;
|
|
4073
3326
|
'flows.autocomplete.task.snackbar.created': string;
|
|
4074
3327
|
'flows.autocomplete.task.snackbar.creating': string;
|
|
4075
3328
|
'flows.graph.show': string;
|
|
@@ -4103,7 +3356,6 @@ export declare const messages: {
|
|
|
4103
3356
|
'decisions.type.row': string;
|
|
4104
3357
|
'decisions.type.column': string;
|
|
4105
3358
|
'decisions.table.hitpolicy': string;
|
|
4106
|
-
'decisions.table.options': string;
|
|
4107
3359
|
'decisions.composer.title': string;
|
|
4108
3360
|
'decisions.composer.copyTitle': string;
|
|
4109
3361
|
'decisions.composer.createdMessage': string;
|
|
@@ -4148,9 +3400,6 @@ export declare const messages: {
|
|
|
4148
3400
|
'decisions.cells.newvalue.number.comparisonToRange': string;
|
|
4149
3401
|
'decisions.cells.newvalue.number.rangeStart': string;
|
|
4150
3402
|
'decisions.cells.newvalue.number.rangeEnd': string;
|
|
4151
|
-
'decisions.cells.newvalue.number.value': string;
|
|
4152
|
-
'decisions.cells.newvalue.number.rangeIncluded': string;
|
|
4153
|
-
'decisions.cells.newvalue.number.rangeToComparison': string;
|
|
4154
3403
|
'decisions.cells.newvalue.string.comparisonType': string;
|
|
4155
3404
|
'decisions.cells.newvalue.string.addValue': string;
|
|
4156
3405
|
'decisions.cells.newvalue.string.available': string;
|
|
@@ -4160,9 +3409,7 @@ export declare const messages: {
|
|
|
4160
3409
|
'decisions.valueSet': string;
|
|
4161
3410
|
'decisions.valueSet.description': string;
|
|
4162
3411
|
'decisions.valueSet.add': string;
|
|
4163
|
-
'decisions.valueSet.remove': string;
|
|
4164
3412
|
'decisions.valueSet.current': string;
|
|
4165
|
-
'decisions.valueSet.empty': string;
|
|
4166
3413
|
'dt.header.name': string;
|
|
4167
3414
|
'dt.header.delete': string;
|
|
4168
3415
|
'dt.header.expression': string;
|
|
@@ -4173,30 +3420,6 @@ export declare const messages: {
|
|
|
4173
3420
|
'program.status.UP': string;
|
|
4174
3421
|
'program.status.AST_ERROR': string;
|
|
4175
3422
|
'program.status.PROGRAM_ERROR': string;
|
|
4176
|
-
'package.explorer.flows': string;
|
|
4177
|
-
'package.explorer.servicetasks': string;
|
|
4178
|
-
'package.explorer.decisiontables': string;
|
|
4179
|
-
'dialog.addtype.title': string;
|
|
4180
|
-
'dialog.addtype.button.cancel': string;
|
|
4181
|
-
'dialog.addtype.button.confirm': string;
|
|
4182
|
-
'dialog.addtype.error.unique': string;
|
|
4183
|
-
'dialog.addtype.error.filled': string;
|
|
4184
|
-
'dialog.addtype.input.serviceType': string;
|
|
4185
|
-
'dialog.addtype.input.name': string;
|
|
4186
|
-
'dialog.copyas.title': string;
|
|
4187
|
-
'dialog.copyas.button.cancel': string;
|
|
4188
|
-
'dialog.copyas.button.confirm': string;
|
|
4189
|
-
'dialog.copyas.input.from': string;
|
|
4190
|
-
'dialog.copyas.input.to': string;
|
|
4191
|
-
'dialog.copyas.error.unique': string;
|
|
4192
|
-
'dialog.copyas.error.filled': string;
|
|
4193
|
-
'dialog.save.title': string;
|
|
4194
|
-
'dialog.save.content': string;
|
|
4195
|
-
'dialog.save.errors': string;
|
|
4196
|
-
'dialog.save.button.cancel': string;
|
|
4197
|
-
'dialog.save.button.confirm': string;
|
|
4198
|
-
'release.delete.content': string;
|
|
4199
|
-
'release.delete.error.title': string;
|
|
4200
3423
|
'release.deleted.message': string;
|
|
4201
3424
|
'releases.composer.createdMessage': string;
|
|
4202
3425
|
'releases.view.action': string;
|
|
@@ -4204,16 +3427,6 @@ export declare const messages: {
|
|
|
4204
3427
|
'releases.composer.assetName': string;
|
|
4205
3428
|
'releases.composer.assetDesc': string;
|
|
4206
3429
|
'releases.composer.errorsTitle': string;
|
|
4207
|
-
'releases.table.title': string;
|
|
4208
|
-
'releases.table.column.name': string;
|
|
4209
|
-
'releases.table.column.message': string;
|
|
4210
|
-
'releases.table.column.created': string;
|
|
4211
|
-
'releases.table.name': string;
|
|
4212
|
-
'releases.add.error.unique': string;
|
|
4213
|
-
'releases.add.error.filled': string;
|
|
4214
|
-
'releases.add.input.name': string;
|
|
4215
|
-
'releases.add.input.msg': string;
|
|
4216
|
-
'releases.add.button.create': string;
|
|
4217
3430
|
'releases.button.compare': string;
|
|
4218
3431
|
'releases.button.branch': string;
|
|
4219
3432
|
'releases.button.checkout': string;
|
|
@@ -4224,9 +3437,6 @@ export declare const messages: {
|
|
|
4224
3437
|
'releases.latest.name': string;
|
|
4225
3438
|
'releases.latest.note': string;
|
|
4226
3439
|
'releases.details.title': string;
|
|
4227
|
-
'branch.delete.title': string;
|
|
4228
|
-
'branch.delete.content': string;
|
|
4229
|
-
'branch.delete.error.title': string;
|
|
4230
3440
|
'release.branch.creating': string;
|
|
4231
3441
|
'release.branch.created': string;
|
|
4232
3442
|
'release.branch.deleting': string;
|
|
@@ -4263,14 +3473,9 @@ export declare const messages: {
|
|
|
4263
3473
|
'debug.select.searchResults': string;
|
|
4264
3474
|
'debug.select.confirm': string;
|
|
4265
3475
|
'debug.inputs.format': string;
|
|
4266
|
-
'debug.asset.select.label': string;
|
|
4267
|
-
'debug.asset.select.clear': string;
|
|
4268
|
-
'debug.asset.select.execute': string;
|
|
4269
|
-
'debug.asset.execute.inputs': string;
|
|
4270
3476
|
'debug.asset.execute.errors': string;
|
|
4271
3477
|
'debug.asset.execute.outputs.dt.json': string;
|
|
4272
3478
|
'debug.asset.execute.outputs.dt.rejects': string;
|
|
4273
|
-
'debug.asset.execute.outputs.dt.rejects.order': string;
|
|
4274
3479
|
'debug.asset.execute.outputs.flow.step': string;
|
|
4275
3480
|
'debug.csv.row': string;
|
|
4276
3481
|
'debug.csv.download': string;
|
|
@@ -4285,25 +3490,16 @@ export declare const messages: {
|
|
|
4285
3490
|
'compare.dialog.title': string;
|
|
4286
3491
|
'compare.dialog.line': string;
|
|
4287
3492
|
'compare.dialog.side': string;
|
|
4288
|
-
'menu.feedbackAllTasks': string;
|
|
4289
3493
|
'menu.activities': string;
|
|
4290
3494
|
'feedback.all': string;
|
|
4291
|
-
'feedback.none': string;
|
|
4292
|
-
'feedback.search': string;
|
|
4293
|
-
'feedback.search.placeholder': string;
|
|
4294
|
-
'feedback.search.filter.category': string;
|
|
4295
|
-
'feedback.search.filter.subCategory': string;
|
|
4296
|
-
'feedback.filter.selectNone': string;
|
|
3495
|
+
'task.feedback.none': string;
|
|
4297
3496
|
'queues.all': string;
|
|
4298
3497
|
'consumers.all': string;
|
|
4299
|
-
'queue.config.appId': string;
|
|
4300
3498
|
'queue.config.none': string;
|
|
4301
3499
|
'queue.config.consumerName': string;
|
|
4302
3500
|
'queue.config.routingKey': string;
|
|
4303
3501
|
'queue.config.consumerStatus': string;
|
|
4304
3502
|
'queue.config.comment': string;
|
|
4305
|
-
'queue.config.consumerId': string;
|
|
4306
|
-
'queue.config.qualifiedJavaName': string;
|
|
4307
3503
|
'queue.config.queueName': string;
|
|
4308
3504
|
'queue.config.createdAt': string;
|
|
4309
3505
|
'queue.config.createdBy': string;
|
|
@@ -4321,8 +3517,10 @@ export declare const messages: {
|
|
|
4321
3517
|
'queue.all_messages.status': string;
|
|
4322
3518
|
'queue.all_messages.body': string;
|
|
4323
3519
|
'queue.all_messages.created': string;
|
|
4324
|
-
'
|
|
4325
|
-
'
|
|
3520
|
+
'eveli.table.drawer.title.columns': string;
|
|
3521
|
+
'eveli.table.drawer.title.filters': string;
|
|
3522
|
+
'eveli.table.drawer.title.saved-filters': string;
|
|
3523
|
+
'eveli.table.drawer.title.export-data': string;
|
|
4326
3524
|
};
|
|
4327
3525
|
};
|
|
4328
3526
|
|
|
@@ -4344,115 +3542,6 @@ export declare type OverrideProps<T> = {
|
|
|
4344
3542
|
children?: React.ReactNode | undefined;
|
|
4345
3543
|
};
|
|
4346
3544
|
|
|
4347
|
-
export declare namespace PrefsApi {
|
|
4348
|
-
}
|
|
4349
|
-
|
|
4350
|
-
export declare namespace PrefsApi {
|
|
4351
|
-
export interface PrefsRestApi {
|
|
4352
|
-
currentUserProfile(createIfNotDefined?: boolean): Promise<UserProfile>;
|
|
4353
|
-
getUserProfileById(id: string): Promise<UserProfile | undefined>;
|
|
4354
|
-
findAllUserProfiles(): Promise<UserProfile[]>;
|
|
4355
|
-
updateUserProfile(commands: UserProfileUpdateCommand<any>[]): Promise<UserProfile>;
|
|
4356
|
-
updateUiSettings(commands: UpsertUiSettings): Promise<UserProfile>;
|
|
4357
|
-
findUiSettings(settingsId: string): Promise<UiSettings | undefined>;
|
|
4358
|
-
}
|
|
4359
|
-
export type PreferenceId = string;
|
|
4360
|
-
export type DataId = string;
|
|
4361
|
-
export type NotificationType = string;
|
|
4362
|
-
export interface UserDetails {
|
|
4363
|
-
username: string;
|
|
4364
|
-
firstName: string;
|
|
4365
|
-
lastName: string;
|
|
4366
|
-
email: string;
|
|
4367
|
-
}
|
|
4368
|
-
export interface NotificationSetting {
|
|
4369
|
-
enabled: boolean;
|
|
4370
|
-
type: NotificationType;
|
|
4371
|
-
}
|
|
4372
|
-
export interface UiSettingForVisibility {
|
|
4373
|
-
dataId: string;
|
|
4374
|
-
label: string | undefined;
|
|
4375
|
-
enabled: boolean;
|
|
4376
|
-
}
|
|
4377
|
-
export interface UiSettingsForConfig {
|
|
4378
|
-
dataId: string;
|
|
4379
|
-
label: string | undefined;
|
|
4380
|
-
value: string;
|
|
4381
|
-
}
|
|
4382
|
-
export interface UiSettings {
|
|
4383
|
-
id: string | undefined;
|
|
4384
|
-
settingsId: string;
|
|
4385
|
-
userId: string;
|
|
4386
|
-
visibility: UiSettingForVisibility[];
|
|
4387
|
-
config: UiSettingsForConfig[];
|
|
4388
|
-
}
|
|
4389
|
-
export interface UserProfile {
|
|
4390
|
-
id: string;
|
|
4391
|
-
created: string;
|
|
4392
|
-
updated: string;
|
|
4393
|
-
details: UserDetails;
|
|
4394
|
-
notificationSettings: NotificationSetting[];
|
|
4395
|
-
tenantFeatures: string[] | undefined;
|
|
4396
|
-
}
|
|
4397
|
-
export interface UserProfileTransaction {
|
|
4398
|
-
id: string;
|
|
4399
|
-
commands: UserProfileCommand[];
|
|
4400
|
-
}
|
|
4401
|
-
export interface UserProfileCommand {
|
|
4402
|
-
id: string;
|
|
4403
|
-
userId?: string;
|
|
4404
|
-
targetDate?: Date;
|
|
4405
|
-
commandType: UserProfileCommandType;
|
|
4406
|
-
}
|
|
4407
|
-
export type UserProfileCommandType = 'CreateUserProfile' | 'UpsertUserProfile' | 'ChangeUserDetailsFirstName' | 'ChangeUserDetailsLastName' | 'ChangeUserDetailsEmail' | 'ChangeNotificationSetting' | 'ArchiveUserProfile' | 'ChangeTenantFeatures';
|
|
4408
|
-
export interface UserProfileUpdateCommand<T extends UserProfileCommandType> extends UserProfileCommand {
|
|
4409
|
-
commandType: T;
|
|
4410
|
-
}
|
|
4411
|
-
export interface CreateUserProfile extends UserProfileCommand {
|
|
4412
|
-
commandType: 'CreateUserProfile';
|
|
4413
|
-
details: UserDetails;
|
|
4414
|
-
notificationSettings: NotificationSetting[];
|
|
4415
|
-
}
|
|
4416
|
-
export interface UpsertUiSettings {
|
|
4417
|
-
commandType: 'UpsertUiSettings';
|
|
4418
|
-
userId: string;
|
|
4419
|
-
settingsId: string;
|
|
4420
|
-
visibility: UiSettingForVisibility[];
|
|
4421
|
-
config: UiSettingsForConfig[];
|
|
4422
|
-
}
|
|
4423
|
-
export interface UpsertUserProfile extends UserProfileUpdateCommand<'UpsertUserProfile'> {
|
|
4424
|
-
commandType: 'UpsertUserProfile';
|
|
4425
|
-
details: UserDetails;
|
|
4426
|
-
notificationSettings: NotificationSetting[];
|
|
4427
|
-
}
|
|
4428
|
-
export interface ChangeUserDetailsFirstName extends UserProfileUpdateCommand<'ChangeUserDetailsFirstName'> {
|
|
4429
|
-
commandType: 'ChangeUserDetailsFirstName';
|
|
4430
|
-
firstName: string;
|
|
4431
|
-
}
|
|
4432
|
-
export interface ChangeUserDetailsLastName extends UserProfileUpdateCommand<'ChangeUserDetailsLastName'> {
|
|
4433
|
-
commandType: 'ChangeUserDetailsLastName';
|
|
4434
|
-
lastName: string;
|
|
4435
|
-
}
|
|
4436
|
-
export interface ChangeUserDetailsEmail extends UserProfileUpdateCommand<'ChangeUserDetailsEmail'> {
|
|
4437
|
-
commandType: 'ChangeUserDetailsEmail';
|
|
4438
|
-
email: string;
|
|
4439
|
-
}
|
|
4440
|
-
export interface ChangeNotificationSetting extends UserProfileUpdateCommand<'ChangeNotificationSetting'> {
|
|
4441
|
-
commandType: 'ChangeNotificationSetting';
|
|
4442
|
-
notificationSettings: {
|
|
4443
|
-
type: NotificationType;
|
|
4444
|
-
enabled: boolean;
|
|
4445
|
-
}[];
|
|
4446
|
-
}
|
|
4447
|
-
export interface ChangeTenantFeatures extends UserProfileUpdateCommand<'ChangeTenantFeatures'> {
|
|
4448
|
-
commandType: 'ChangeTenantFeatures';
|
|
4449
|
-
tenantFeatures: string[];
|
|
4450
|
-
}
|
|
4451
|
-
export interface ArchiveUserProfile extends UserProfileUpdateCommand<'ArchiveUserProfile'> {
|
|
4452
|
-
commandType: 'ArchiveUserProfile';
|
|
4453
|
-
}
|
|
4454
|
-
}
|
|
4455
|
-
|
|
4456
3545
|
export declare namespace ProcExecutionApi {
|
|
4457
3546
|
}
|
|
4458
3547
|
|
|
@@ -5280,6 +4369,18 @@ declare class RootFileFetch_2 {
|
|
|
5280
4369
|
}>, "worker/rest/api/feedback", "GET", {}, {}, {
|
|
5281
4370
|
findAllFeedback: () => Promise<FeedbackApi.Feedback[]>;
|
|
5282
4371
|
}>;
|
|
4372
|
+
} | {
|
|
4373
|
+
id: "worker/rest/api/health.GET";
|
|
4374
|
+
path: "worker/rest/api/health";
|
|
4375
|
+
method: "GET";
|
|
4376
|
+
params: {};
|
|
4377
|
+
hook: HookImpl<"worker/rest/api/health.GET", Hook<{}, {
|
|
4378
|
+
findAllTaskActivity: () => Promise<EveliHealthTaskActivity_2[]>;
|
|
4379
|
+
findAllUserActivity: () => Promise<EveliHealthUserActivity_2[]>;
|
|
4380
|
+
}>, "worker/rest/api/health", "GET", {}, {}, {
|
|
4381
|
+
findAllTaskActivity: () => Promise<EveliHealthTaskActivity_2[]>;
|
|
4382
|
+
findAllUserActivity: () => Promise<EveliHealthUserActivity_2[]>;
|
|
4383
|
+
}>;
|
|
5283
4384
|
} | {
|
|
5284
4385
|
id: "worker/rest/api/iam/liveness.GET";
|
|
5285
4386
|
path: "worker/rest/api/iam/liveness";
|
|
@@ -5302,9 +4403,9 @@ declare class RootFileFetch_2 {
|
|
|
5302
4403
|
method: "GET";
|
|
5303
4404
|
params: {};
|
|
5304
4405
|
hook: HookImpl<"worker/rest/api/pdf.GET", Hook<{}, {
|
|
5305
|
-
pdfTaskLinkCallback: (questionnaireId: string, taskId: string) =>
|
|
4406
|
+
pdfTaskLinkCallback: (questionnaireId: string, taskId: string) => Promise<string>;
|
|
5306
4407
|
}>, "worker/rest/api/pdf", "GET", {}, {}, {
|
|
5307
|
-
pdfTaskLinkCallback: (questionnaireId: string, taskId: string) =>
|
|
4408
|
+
pdfTaskLinkCallback: (questionnaireId: string, taskId: string) => Promise<string>;
|
|
5308
4409
|
}>;
|
|
5309
4410
|
} | {
|
|
5310
4411
|
id: "worker/rest/api/processes.GET";
|
|
@@ -5312,10 +4413,8 @@ declare class RootFileFetch_2 {
|
|
|
5312
4413
|
method: "GET";
|
|
5313
4414
|
params: {};
|
|
5314
4415
|
hook: HookImpl<"worker/rest/api/processes.GET", Hook<{}, {
|
|
5315
|
-
loadProcesses: (query: Query<ProcExecutionApi.ProcessExecution>, columns: Array<Column<ProcExecutionApi.ProcessExecution>>) => Promise<QueryResult<ProcExecutionApi.ProcessExecution>>;
|
|
5316
4416
|
findLast6Months: () => Promise<ProcExecutionApi.ProcessExecution[]>;
|
|
5317
4417
|
}>, "worker/rest/api/processes", "GET", {}, {}, {
|
|
5318
|
-
loadProcesses: (query: Query<ProcExecutionApi.ProcessExecution>, columns: Array<Column<ProcExecutionApi.ProcessExecution>>) => Promise<QueryResult<ProcExecutionApi.ProcessExecution>>;
|
|
5319
4418
|
findLast6Months: () => Promise<ProcExecutionApi.ProcessExecution[]>;
|
|
5320
4419
|
}>;
|
|
5321
4420
|
} | {
|
|
@@ -5348,6 +4447,20 @@ declare class RootFileFetch_2 {
|
|
|
5348
4447
|
}>, "worker/rest/api/queues/messages", "GET", {}, {}, {
|
|
5349
4448
|
findAllQueueMessages: () => Promise<QueueApi.QueueMessage[]>;
|
|
5350
4449
|
}>;
|
|
4450
|
+
} | {
|
|
4451
|
+
id: "worker/rest/api/tasks/$taskId/audits.GET";
|
|
4452
|
+
path: "worker/rest/api/tasks/$taskId/audits";
|
|
4453
|
+
method: "GET";
|
|
4454
|
+
params: {
|
|
4455
|
+
taskId: string;
|
|
4456
|
+
};
|
|
4457
|
+
hook: HookImpl<"worker/rest/api/tasks/$taskId/audits.GET", Hook<{}, {
|
|
4458
|
+
getOneTaskAudit: (taskId: string) => Promise<TaskApi.TaskAuditLog>;
|
|
4459
|
+
}>, "worker/rest/api/tasks/$taskId/audits", "GET", {
|
|
4460
|
+
taskId: string;
|
|
4461
|
+
}, {}, {
|
|
4462
|
+
getOneTaskAudit: (taskId: string) => Promise<TaskApi.TaskAuditLog>;
|
|
4463
|
+
}>;
|
|
5351
4464
|
} | {
|
|
5352
4465
|
id: "worker/rest/api/tasks/$taskId/comments.GET";
|
|
5353
4466
|
path: "worker/rest/api/tasks/$taskId/comments";
|
|
@@ -5529,10 +4642,7 @@ declare class RootFileFetch_2 {
|
|
|
5529
4642
|
dashboard: () => Promise<TaskApi.TaskDasboard>;
|
|
5530
4643
|
findAll: () => Promise<TaskApi.Task[]>;
|
|
5531
4644
|
getTasks: (page?: number, size?: number) => Promise<QueryResult<TaskApi.Task>>;
|
|
5532
|
-
|
|
5533
|
-
paging: any;
|
|
5534
|
-
setPaging: (paging: any) => void;
|
|
5535
|
-
}) => Promise<{
|
|
4645
|
+
paginateTasks: (query: string) => Promise<{
|
|
5536
4646
|
data: any;
|
|
5537
4647
|
page: any;
|
|
5538
4648
|
totalCount: any;
|
|
@@ -5541,10 +4651,7 @@ declare class RootFileFetch_2 {
|
|
|
5541
4651
|
dashboard: () => Promise<TaskApi.TaskDasboard>;
|
|
5542
4652
|
findAll: () => Promise<TaskApi.Task[]>;
|
|
5543
4653
|
getTasks: (page?: number, size?: number) => Promise<QueryResult<TaskApi.Task>>;
|
|
5544
|
-
|
|
5545
|
-
paging: any;
|
|
5546
|
-
setPaging: (paging: any) => void;
|
|
5547
|
-
}) => Promise<{
|
|
4654
|
+
paginateTasks: (query: string) => Promise<{
|
|
5548
4655
|
data: any;
|
|
5549
4656
|
page: any;
|
|
5550
4657
|
totalCount: any;
|
|
@@ -5556,9 +4663,9 @@ declare class RootFileFetch_2 {
|
|
|
5556
4663
|
method: "POST";
|
|
5557
4664
|
params: {};
|
|
5558
4665
|
hook: HookImpl<"worker/rest/api/tasks.POST", Hook<{}, {
|
|
5559
|
-
createTask: (task: TaskApi.Task) => Promise<TaskApi.Task>;
|
|
4666
|
+
createTask: (task: Partial<TaskApi.Task>) => Promise<TaskApi.Task>;
|
|
5560
4667
|
}>, "worker/rest/api/tasks", "POST", {}, {}, {
|
|
5561
|
-
createTask: (task: TaskApi.Task) => Promise<TaskApi.Task>;
|
|
4668
|
+
createTask: (task: Partial<TaskApi.Task>) => Promise<TaskApi.Task>;
|
|
5562
4669
|
}>;
|
|
5563
4670
|
} | {
|
|
5564
4671
|
id: "worker/rest/api/tasks/unread.GET";
|
|
@@ -5567,8 +4674,10 @@ declare class RootFileFetch_2 {
|
|
|
5567
4674
|
params: {};
|
|
5568
4675
|
hook: HookImpl<"worker/rest/api/tasks/unread.GET", Hook<{}, {
|
|
5569
4676
|
unreadTasks: string[];
|
|
4677
|
+
refetch: () => Promise<any>;
|
|
5570
4678
|
}>, "worker/rest/api/tasks/unread", "GET", {}, {}, {
|
|
5571
4679
|
unreadTasks: string[];
|
|
4680
|
+
refetch: () => Promise<any>;
|
|
5572
4681
|
}>;
|
|
5573
4682
|
} | {
|
|
5574
4683
|
id: "worker/rest/api/tenant-configs.GET";
|
|
@@ -5590,11 +4699,11 @@ declare class RootFileFetch_2 {
|
|
|
5590
4699
|
profileId: string;
|
|
5591
4700
|
};
|
|
5592
4701
|
hook: HookImpl<"worker/rest/api/userprofiles/$profileId.GET", Hook<{}, {
|
|
5593
|
-
restApi:
|
|
4702
|
+
restApi: UserProfileApi.PrefsRestApi;
|
|
5594
4703
|
}>, "worker/rest/api/userprofiles/$profileId", "GET", {
|
|
5595
4704
|
profileId: string;
|
|
5596
4705
|
}, {}, {
|
|
5597
|
-
restApi:
|
|
4706
|
+
restApi: UserProfileApi.PrefsRestApi;
|
|
5598
4707
|
}>;
|
|
5599
4708
|
} | {
|
|
5600
4709
|
id: "worker/rest/api/version.GET";
|
|
@@ -5645,7 +4754,6 @@ declare interface SecuredLocaleAssetsRouteChildren {
|
|
|
5645
4754
|
SecuredLocaleAssetsFormsFormIdRoute: typeof SecuredLocaleAssetsFormsFormIdRoute;
|
|
5646
4755
|
SecuredLocaleAssetsFormsIndexRoute: typeof SecuredLocaleAssetsFormsIndexRoute;
|
|
5647
4756
|
SecuredLocaleAssetsMigrateIndexRoute: typeof SecuredLocaleAssetsMigrateIndexRoute;
|
|
5648
|
-
SecuredLocaleAssetsServicesIndexRoute: typeof SecuredLocaleAssetsServicesIndexRoute;
|
|
5649
4757
|
SecuredLocaleAssetsStencilIndexRoute: typeof SecuredLocaleAssetsStencilIndexRoute;
|
|
5650
4758
|
SecuredLocaleAssetsWrenchIndexRoute: typeof SecuredLocaleAssetsWrenchIndexRoute;
|
|
5651
4759
|
}
|
|
@@ -5654,8 +4762,6 @@ declare const SecuredLocaleAssetsRouteChildren: SecuredLocaleAssetsRouteChildren
|
|
|
5654
4762
|
|
|
5655
4763
|
declare const SecuredLocaleAssetsRouteWithChildren: Route<Route<RootRoute<undefined, {}, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/secured/$locale", "/secured/$locale", "/secured/$locale", "/secured/$locale", undefined, ResolveParams<"/secured/$locale">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/assets", "/secured/$locale/assets", "/secured/$locale/assets", "/secured/$locale/assets", undefined, ResolveParams<"/assets">, AnyContext, AnyContext, AnyContext, {}, undefined, SecuredLocaleAssetsRouteChildren, unknown>;
|
|
5656
4764
|
|
|
5657
|
-
declare const SecuredLocaleAssetsServicesIndexRoute: Route<Route<Route<RootRoute<undefined, {}, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/secured/$locale", "/secured/$locale", "/secured/$locale", "/secured/$locale", undefined, ResolveParams<"/secured/$locale">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/assets", "/secured/$locale/assets", "/secured/$locale/assets", "/secured/$locale/assets", undefined, ResolveParams<"/assets">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/services", "/secured/$locale/assets/services", "/secured/$locale/assets/services/", "/secured/$locale/assets/services/", undefined, ResolveParams<"/services">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>;
|
|
5658
|
-
|
|
5659
4765
|
declare const SecuredLocaleAssetsStencilIndexRoute: Route<Route<Route<RootRoute<undefined, {}, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/secured/$locale", "/secured/$locale", "/secured/$locale", "/secured/$locale", undefined, ResolveParams<"/secured/$locale">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/assets", "/secured/$locale/assets", "/secured/$locale/assets", "/secured/$locale/assets", undefined, ResolveParams<"/assets">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/stencil", "/secured/$locale/assets/stencil", "/secured/$locale/assets/stencil/", "/secured/$locale/assets/stencil/", (search: Record<string, unknown>) => StencilRouteSearchParams, ResolveParams<"/stencil">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>;
|
|
5660
4766
|
|
|
5661
4767
|
declare const SecuredLocaleAssetsWrenchIndexRoute: Route<Route<Route<RootRoute<undefined, {}, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/secured/$locale", "/secured/$locale", "/secured/$locale", "/secured/$locale", undefined, ResolveParams<"/secured/$locale">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/assets", "/secured/$locale/assets", "/secured/$locale/assets", "/secured/$locale/assets", undefined, ResolveParams<"/assets">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/wrench", "/secured/$locale/assets/wrench", "/secured/$locale/assets/wrench/", "/secured/$locale/assets/wrench/", (search: Record<string, unknown>) => WrenchRouteSearchParams, ResolveParams<"/wrench">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>;
|
|
@@ -5721,6 +4827,8 @@ declare interface SecuredLocaleWorkerRouteChildren {
|
|
|
5721
4827
|
SecuredLocaleWorkerHelpIndexRoute: typeof SecuredLocaleWorkerHelpIndexRoute;
|
|
5722
4828
|
SecuredLocaleWorkerMonitoringIndexRoute: typeof SecuredLocaleWorkerMonitoringIndexRoute;
|
|
5723
4829
|
SecuredLocaleWorkerQueuesIndexRoute: typeof SecuredLocaleWorkerQueuesIndexRoute;
|
|
4830
|
+
SecuredLocaleWorkerTaskActivityIndexRoute: typeof SecuredLocaleWorkerTaskActivityIndexRoute;
|
|
4831
|
+
SecuredLocaleWorkerUserActivityIndexRoute: typeof SecuredLocaleWorkerUserActivityIndexRoute;
|
|
5724
4832
|
SecuredLocaleWorkerFeedbackFeedbackIdIndexRoute: typeof SecuredLocaleWorkerFeedbackFeedbackIdIndexRoute;
|
|
5725
4833
|
SecuredLocaleWorkerQueuesDeliveriesIndexRoute: typeof SecuredLocaleWorkerQueuesDeliveriesIndexRoute;
|
|
5726
4834
|
SecuredLocaleWorkerQueuesMessagesIndexRoute: typeof SecuredLocaleWorkerQueuesMessagesIndexRoute;
|
|
@@ -5730,6 +4838,8 @@ declare const SecuredLocaleWorkerRouteChildren: SecuredLocaleWorkerRouteChildren
|
|
|
5730
4838
|
|
|
5731
4839
|
declare const SecuredLocaleWorkerRouteWithChildren: Route<Route<RootRoute<undefined, {}, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/secured/$locale", "/secured/$locale", "/secured/$locale", "/secured/$locale", undefined, ResolveParams<"/secured/$locale">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/worker", "/secured/$locale/worker", "/secured/$locale/worker", "/secured/$locale/worker", undefined, ResolveParams<"/worker">, AnyContext, AnyContext, AnyContext, {}, undefined, SecuredLocaleWorkerRouteChildren, unknown>;
|
|
5732
4840
|
|
|
4841
|
+
declare const SecuredLocaleWorkerTaskActivityIndexRoute: Route<Route<Route<RootRoute<undefined, {}, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/secured/$locale", "/secured/$locale", "/secured/$locale", "/secured/$locale", undefined, ResolveParams<"/secured/$locale">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/worker", "/secured/$locale/worker", "/secured/$locale/worker", "/secured/$locale/worker", undefined, ResolveParams<"/worker">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/task-activity", "/secured/$locale/worker/task-activity", "/secured/$locale/worker/task-activity/", "/secured/$locale/worker/task-activity/", undefined, ResolveParams<"/task-activity">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>;
|
|
4842
|
+
|
|
5733
4843
|
declare const SecuredLocaleWorkerTasksCreateIndexRoute: Route<Route<Route<Route<RootRoute<undefined, {}, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/secured/$locale", "/secured/$locale", "/secured/$locale", "/secured/$locale", undefined, ResolveParams<"/secured/$locale">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/worker", "/secured/$locale/worker", "/secured/$locale/worker", "/secured/$locale/worker", undefined, ResolveParams<"/worker">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/tasks", "/secured/$locale/worker/tasks", "/secured/$locale/worker/tasks", "/secured/$locale/worker/tasks", undefined, ResolveParams<"/tasks">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/create", "/secured/$locale/worker/tasks/create", "/secured/$locale/worker/tasks/create/", "/secured/$locale/worker/tasks/create/", undefined, ResolveParams<"/create">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>;
|
|
5734
4844
|
|
|
5735
4845
|
declare const SecuredLocaleWorkerTasksIndexRoute: Route<Route<Route<Route<RootRoute<undefined, {}, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/secured/$locale", "/secured/$locale", "/secured/$locale", "/secured/$locale", undefined, ResolveParams<"/secured/$locale">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/worker", "/secured/$locale/worker", "/secured/$locale/worker", "/secured/$locale/worker", undefined, ResolveParams<"/worker">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/tasks", "/secured/$locale/worker/tasks", "/secured/$locale/worker/tasks", "/secured/$locale/worker/tasks", undefined, ResolveParams<"/tasks">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/", "/secured/$locale/worker/tasks/", "/secured/$locale/worker/tasks/", "/secured/$locale/worker/tasks/", undefined, ResolveParams<"/">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>;
|
|
@@ -5746,6 +4856,8 @@ declare const SecuredLocaleWorkerTasksRouteWithChildren: Route<Route<Route<RootR
|
|
|
5746
4856
|
|
|
5747
4857
|
declare const SecuredLocaleWorkerTasksTaskIdIndexRoute: Route<Route<Route<Route<RootRoute<undefined, {}, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/secured/$locale", "/secured/$locale", "/secured/$locale", "/secured/$locale", undefined, ResolveParams<"/secured/$locale">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/worker", "/secured/$locale/worker", "/secured/$locale/worker", "/secured/$locale/worker", undefined, ResolveParams<"/worker">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/tasks", "/secured/$locale/worker/tasks", "/secured/$locale/worker/tasks", "/secured/$locale/worker/tasks", undefined, ResolveParams<"/tasks">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/$taskId", "/secured/$locale/worker/tasks/$taskId", "/secured/$locale/worker/tasks/$taskId/", "/secured/$locale/worker/tasks/$taskId/", undefined, ResolveParams<"/$taskId">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>;
|
|
5748
4858
|
|
|
4859
|
+
declare const SecuredLocaleWorkerUserActivityIndexRoute: Route<Route<Route<RootRoute<undefined, {}, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/secured/$locale", "/secured/$locale", "/secured/$locale", "/secured/$locale", undefined, ResolveParams<"/secured/$locale">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/worker", "/secured/$locale/worker", "/secured/$locale/worker", "/secured/$locale/worker", undefined, ResolveParams<"/worker">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>, "/user-activity", "/secured/$locale/worker/user-activity", "/secured/$locale/worker/user-activity/", "/secured/$locale/worker/user-activity/", undefined, ResolveParams<"/user-activity">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>;
|
|
4860
|
+
|
|
5749
4861
|
export declare const Select: default_2.FC<StyledSelectProps<string>>;
|
|
5750
4862
|
|
|
5751
4863
|
export declare const SelectMultiple: default_2.FC<{
|
|
@@ -5780,13 +4892,6 @@ export declare interface SpinnerProps {
|
|
|
5780
4892
|
customHeight?: string;
|
|
5781
4893
|
}
|
|
5782
4894
|
|
|
5783
|
-
export declare const StatusIndicator: default_2.FC<StatusIndicatorProps>;
|
|
5784
|
-
|
|
5785
|
-
declare interface StatusIndicatorProps {
|
|
5786
|
-
size: 'SMALL' | 'LARGE';
|
|
5787
|
-
taskId: string | number;
|
|
5788
|
-
}
|
|
5789
|
-
|
|
5790
4895
|
declare interface StyledInputFieldProps<T> {
|
|
5791
4896
|
label: string;
|
|
5792
4897
|
disabled?: boolean;
|
|
@@ -5858,23 +4963,6 @@ declare type StyledTreeItemProps = TreeItemProps & {
|
|
|
5858
4963
|
|
|
5859
4964
|
export declare const Switch: default_2.FC<StyledSwitchProps>;
|
|
5860
4965
|
|
|
5861
|
-
declare interface TableSlots<DataType extends object> {
|
|
5862
|
-
drawer?: {
|
|
5863
|
-
'export-data'?: default_2.ElementType<{
|
|
5864
|
-
table: Table<DataType>;
|
|
5865
|
-
}>;
|
|
5866
|
-
};
|
|
5867
|
-
}
|
|
5868
|
-
|
|
5869
|
-
declare interface TableState {
|
|
5870
|
-
sort: any;
|
|
5871
|
-
setSort: (sort: any) => void;
|
|
5872
|
-
filters: any;
|
|
5873
|
-
setFilters: (filter: any) => void;
|
|
5874
|
-
paging: any;
|
|
5875
|
-
setPaging: (paging: any) => void;
|
|
5876
|
-
}
|
|
5877
|
-
|
|
5878
4966
|
export declare const TagTableRow: default_2.FC<TagTableRowProps>;
|
|
5879
4967
|
|
|
5880
4968
|
export declare interface TagTableRowProps {
|
|
@@ -5888,156 +4976,7 @@ export declare interface TagTableRowProps {
|
|
|
5888
4976
|
onOpenForm?: (formId: string) => void;
|
|
5889
4977
|
}
|
|
5890
4978
|
|
|
5891
|
-
export declare
|
|
5892
|
-
export enum Colors {
|
|
5893
|
-
RED = 1,
|
|
5894
|
-
BLUE = 2,
|
|
5895
|
-
GREEN = 3,
|
|
5896
|
-
YELLOW = 4,
|
|
5897
|
-
GREY = 5
|
|
5898
|
-
}
|
|
5899
|
-
export type ColorMap = {
|
|
5900
|
-
[status: string]: Colors;
|
|
5901
|
-
};
|
|
5902
|
-
export enum CommentSource {
|
|
5903
|
-
FRONTDESK = "FRONTDESK",
|
|
5904
|
-
PORTAL = "PORTAL"
|
|
5905
|
-
}
|
|
5906
|
-
export enum TaskPriority {
|
|
5907
|
-
LOW = "LOW",
|
|
5908
|
-
NORMAL = "NORMAL",
|
|
5909
|
-
HIGH = "HIGH"
|
|
5910
|
-
}
|
|
5911
|
-
const task_priority_messages: {
|
|
5912
|
-
LOW: {
|
|
5913
|
-
id: string;
|
|
5914
|
-
defaultMessage: string;
|
|
5915
|
-
};
|
|
5916
|
-
NORMAL: {
|
|
5917
|
-
id: string;
|
|
5918
|
-
defaultMessage: string;
|
|
5919
|
-
};
|
|
5920
|
-
HIGH: {
|
|
5921
|
-
id: string;
|
|
5922
|
-
defaultMessage: string;
|
|
5923
|
-
};
|
|
5924
|
-
};
|
|
5925
|
-
const task_priority_colors: ColorMap;
|
|
5926
|
-
export enum TaskStatus {
|
|
5927
|
-
NEW = "NEW",
|
|
5928
|
-
OPEN = "OPEN",
|
|
5929
|
-
COMPLETED = "COMPLETED",
|
|
5930
|
-
REJECTED = "REJECTED",
|
|
5931
|
-
TRANSFERRED = "TRANSFERRED",
|
|
5932
|
-
DELEGATED = "DELEGATED",
|
|
5933
|
-
WAITING = "WAITING"
|
|
5934
|
-
}
|
|
5935
|
-
const task_status_messages: {
|
|
5936
|
-
NEW: {
|
|
5937
|
-
id: string;
|
|
5938
|
-
defaultMessage: string;
|
|
5939
|
-
};
|
|
5940
|
-
OPEN: {
|
|
5941
|
-
id: string;
|
|
5942
|
-
defaultMessage: string;
|
|
5943
|
-
};
|
|
5944
|
-
COMPLETED: {
|
|
5945
|
-
id: string;
|
|
5946
|
-
defaultMessage: string;
|
|
5947
|
-
};
|
|
5948
|
-
REJECTED: {
|
|
5949
|
-
id: string;
|
|
5950
|
-
defaultMessage: string;
|
|
5951
|
-
};
|
|
5952
|
-
TRANSFERRED: {
|
|
5953
|
-
id: string;
|
|
5954
|
-
defaultMessage: string;
|
|
5955
|
-
};
|
|
5956
|
-
DELEGATED: {
|
|
5957
|
-
id: string;
|
|
5958
|
-
defaultMessage: string;
|
|
5959
|
-
};
|
|
5960
|
-
WAITING: {
|
|
5961
|
-
id: string;
|
|
5962
|
-
defaultMessage: string;
|
|
5963
|
-
};
|
|
5964
|
-
};
|
|
5965
|
-
const task_status_colors: ColorMap;
|
|
5966
|
-
}
|
|
5967
|
-
|
|
5968
|
-
export declare namespace TaskApi {
|
|
5969
|
-
export interface Attachment {
|
|
5970
|
-
name: string;
|
|
5971
|
-
status: 'OK' | 'QUARANTINED' | 'UPLOADED';
|
|
5972
|
-
created: Date;
|
|
5973
|
-
updated: Date;
|
|
5974
|
-
size: number;
|
|
5975
|
-
}
|
|
5976
|
-
export interface AttachmentUploadResponse {
|
|
5977
|
-
putRequestUrl: string;
|
|
5978
|
-
}
|
|
5979
|
-
export interface Comment {
|
|
5980
|
-
id: number;
|
|
5981
|
-
userName: string;
|
|
5982
|
-
created: string;
|
|
5983
|
-
commentText: string;
|
|
5984
|
-
replyToId?: number | null;
|
|
5985
|
-
__parent?: Comment;
|
|
5986
|
-
__children?: Comment[];
|
|
5987
|
-
external?: boolean;
|
|
5988
|
-
source?: CommentSource;
|
|
5989
|
-
}
|
|
5990
|
-
export type TaskLink = {
|
|
5991
|
-
id?: number;
|
|
5992
|
-
linkKey: string;
|
|
5993
|
-
linkAddress: string;
|
|
5994
|
-
};
|
|
5995
|
-
export interface Task {
|
|
5996
|
-
id: string;
|
|
5997
|
-
taskRef?: string;
|
|
5998
|
-
version?: number;
|
|
5999
|
-
created?: Date;
|
|
6000
|
-
updated?: Date;
|
|
6001
|
-
completed?: Date;
|
|
6002
|
-
assignedUser?: string;
|
|
6003
|
-
assignedUserEmail?: string;
|
|
6004
|
-
updaterId?: string;
|
|
6005
|
-
dueDate?: Date;
|
|
6006
|
-
status?: TaskStatus;
|
|
6007
|
-
subject?: string;
|
|
6008
|
-
description?: string;
|
|
6009
|
-
priority?: TaskPriority;
|
|
6010
|
-
additionalInfo?: string;
|
|
6011
|
-
transferredId?: string | undefined;
|
|
6012
|
-
transferredProps?: object | undefined;
|
|
6013
|
-
features?: TaskFeatureType[];
|
|
6014
|
-
keyWords?: string[];
|
|
6015
|
-
taskLinks?: TaskLink[];
|
|
6016
|
-
statusCode?: number;
|
|
6017
|
-
priorityCode?: number;
|
|
6018
|
-
clientIdentificator?: string | null;
|
|
6019
|
-
assignedRoles?: string[] | null;
|
|
6020
|
-
comments: Comment[];
|
|
6021
|
-
questionnaireId?: string | undefined;
|
|
6022
|
-
}
|
|
6023
|
-
export type TaskFeatureType = 'feedback' | 'transfer' | 'anon';
|
|
6024
|
-
export interface TransferTaskCommand {
|
|
6025
|
-
transferTitle: string;
|
|
6026
|
-
}
|
|
6027
|
-
export interface TaskDasboard {
|
|
6028
|
-
events: GrimMissionAttributeEvent[];
|
|
6029
|
-
}
|
|
6030
|
-
export interface GrimMissionAttributeEvent {
|
|
6031
|
-
eventDate: string | undefined;
|
|
6032
|
-
eventCount: number;
|
|
6033
|
-
eventType: GrimMissionAttributeEventType;
|
|
6034
|
-
eventSubType: string | undefined;
|
|
6035
|
-
attributeValue: string;
|
|
6036
|
-
}
|
|
6037
|
-
export type GrimMissionAttributeEventType = ('STATUS' | 'PRIORITY' | 'STATUS_DATE' | 'OVERDUE' | 'ROLE' | 'QUESTIONNAIRE');
|
|
6038
|
-
}
|
|
6039
|
-
|
|
6040
|
-
export declare const tenant_features: readonly ["wrench-only", "wrench-disabled", "stencil-disabled", "external-deployment", "smart_tables", "smart_task", "user_profile", "queues-visually-disabled", "feedback-visually-disabled", "stencil_locale_filter", "eveli_publication_only", "visual_accommodation", "dialob_dashboard_smart", "batches"];
|
|
4979
|
+
export declare const tenant_features: readonly ["wrench-only", "wrench-disabled", "stencil-disabled", "external-deployment", "smart_tables", "smart_task", "smart_task_audit", "user_profile", "queues-visually-disabled", "feedback-visually-disabled", "stencil_locale_filter", "eveli_publication_only", "visual_accommodation", "dialob_dashboard_smart", "batches"];
|
|
6041
4980
|
|
|
6042
4981
|
export declare interface TenantConfig {
|
|
6043
4982
|
features: TenantFeature[];
|
|
@@ -6078,15 +5017,6 @@ export declare const TreeItemOption: React_2.FC<{
|
|
|
6078
5017
|
|
|
6079
5018
|
export declare const TreeItemRoot: StyledComponent<TreeItem2Props & React_2.RefAttributes<HTMLLIElement> & MUIStyledCommonProps<Theme>, {}, {}>;
|
|
6080
5019
|
|
|
6081
|
-
export declare const UpsertOneFeedback: default_2.FC<UpsertOneFeedbackProps>;
|
|
6082
|
-
|
|
6083
|
-
declare interface UpsertOneFeedbackProps {
|
|
6084
|
-
taskRef: string;
|
|
6085
|
-
reload: number;
|
|
6086
|
-
onComplete: (upsertedFeedback: FeedbackApi.Feedback) => void;
|
|
6087
|
-
allowDelete?: boolean;
|
|
6088
|
-
}
|
|
6089
|
-
|
|
6090
5020
|
export declare const useAdminBackend: (config: DialobAdminConfig) => {
|
|
6091
5021
|
getAdminFormConfigurationList: () => Promise<Response>;
|
|
6092
5022
|
getAdminFormConfigurationTags: (formId: string) => Promise<Response>;
|
|
@@ -6106,9 +5036,13 @@ export declare const useDialobDashboardState: () => DashboardStateContextType;
|
|
|
6106
5036
|
|
|
6107
5037
|
export declare const useDialobForms: () => DialobFormsContextType;
|
|
6108
5038
|
|
|
5039
|
+
export declare function useEveliPermissions(): {
|
|
5040
|
+
isAccessGranted: (id: EveliPermissionType) => boolean;
|
|
5041
|
+
};
|
|
5042
|
+
|
|
6109
5043
|
export declare const useEveliShell: () => EveliShellContextType;
|
|
6110
5044
|
|
|
6111
|
-
export declare function
|
|
5045
|
+
export declare function useFeedbackBackend(): FeedbackBackend;
|
|
6112
5046
|
|
|
6113
5047
|
export declare const useFetchAuth: () => (url: string, init: RequestInit, config: DialobAdminConfig) => Promise<Response>;
|
|
6114
5048
|
|
|
@@ -6132,15 +5066,11 @@ export declare const useIconbar: () => IconbarContextType;
|
|
|
6132
5066
|
|
|
6133
5067
|
export declare const useLocale: () => LocaleApi.LocaleContextType;
|
|
6134
5068
|
|
|
6135
|
-
export declare function useMaterialTableLabels(): Localization;
|
|
6136
|
-
|
|
6137
5069
|
export declare function useQueue(): QueueContextType;
|
|
6138
5070
|
|
|
6139
|
-
export declare
|
|
6140
|
-
|
|
6141
|
-
export declare const useTaskDashboard: () => EveliTaskDashboardContextType;
|
|
5071
|
+
export declare type UserActivityType = 'ACCESS' | 'CHANGE';
|
|
6142
5072
|
|
|
6143
|
-
export declare
|
|
5073
|
+
export declare const UserProfile: default_2.FC<{}>;
|
|
6144
5074
|
|
|
6145
5075
|
export declare const useTenantConfig: () => TenantConfigContextType;
|
|
6146
5076
|
|
|
@@ -6389,16 +5319,6 @@ export declare class Visitor_UploadFormJson {
|
|
|
6389
5319
|
private handleFailure;
|
|
6390
5320
|
}
|
|
6391
5321
|
|
|
6392
|
-
export declare function WithTableStyles<DataType extends object>(props: {
|
|
6393
|
-
columns: ColumnDef<DataType, unknown>[];
|
|
6394
|
-
data: DataType[];
|
|
6395
|
-
options: {
|
|
6396
|
-
initialPageSize?: number;
|
|
6397
|
-
tableId: string;
|
|
6398
|
-
};
|
|
6399
|
-
slots?: TableSlots<DataType>;
|
|
6400
|
-
}): default_2.ReactNode;
|
|
6401
|
-
|
|
6402
5322
|
export { }
|
|
6403
5323
|
|
|
6404
5324
|
|
|
@@ -6481,6 +5401,13 @@ declare module '@tanstack/react-router' {
|
|
|
6481
5401
|
preLoaderRoute: typeof SecuredLocaleWorkerBatchesRouteImport;
|
|
6482
5402
|
parentRoute: typeof SecuredLocaleWorkerRoute;
|
|
6483
5403
|
};
|
|
5404
|
+
'/secured/$locale/worker/user-activity/': {
|
|
5405
|
+
id: '/secured/$locale/worker/user-activity/';
|
|
5406
|
+
path: '/user-activity';
|
|
5407
|
+
fullPath: '/secured/$locale/worker/user-activity';
|
|
5408
|
+
preLoaderRoute: typeof SecuredLocaleWorkerUserActivityIndexRouteImport;
|
|
5409
|
+
parentRoute: typeof SecuredLocaleWorkerRoute;
|
|
5410
|
+
};
|
|
6484
5411
|
'/secured/$locale/worker/tasks/': {
|
|
6485
5412
|
id: '/secured/$locale/worker/tasks/';
|
|
6486
5413
|
path: '/';
|
|
@@ -6488,6 +5415,13 @@ declare module '@tanstack/react-router' {
|
|
|
6488
5415
|
preLoaderRoute: typeof SecuredLocaleWorkerTasksIndexRouteImport;
|
|
6489
5416
|
parentRoute: typeof SecuredLocaleWorkerTasksRoute;
|
|
6490
5417
|
};
|
|
5418
|
+
'/secured/$locale/worker/task-activity/': {
|
|
5419
|
+
id: '/secured/$locale/worker/task-activity/';
|
|
5420
|
+
path: '/task-activity';
|
|
5421
|
+
fullPath: '/secured/$locale/worker/task-activity';
|
|
5422
|
+
preLoaderRoute: typeof SecuredLocaleWorkerTaskActivityIndexRouteImport;
|
|
5423
|
+
parentRoute: typeof SecuredLocaleWorkerRoute;
|
|
5424
|
+
};
|
|
6491
5425
|
'/secured/$locale/worker/queues/': {
|
|
6492
5426
|
id: '/secured/$locale/worker/queues/';
|
|
6493
5427
|
path: '/queues';
|
|
@@ -6544,13 +5478,6 @@ declare module '@tanstack/react-router' {
|
|
|
6544
5478
|
preLoaderRoute: typeof SecuredLocaleAssetsStencilIndexRouteImport;
|
|
6545
5479
|
parentRoute: typeof SecuredLocaleAssetsRoute;
|
|
6546
5480
|
};
|
|
6547
|
-
'/secured/$locale/assets/services/': {
|
|
6548
|
-
id: '/secured/$locale/assets/services/';
|
|
6549
|
-
path: '/services';
|
|
6550
|
-
fullPath: '/secured/$locale/assets/services';
|
|
6551
|
-
preLoaderRoute: typeof SecuredLocaleAssetsServicesIndexRouteImport;
|
|
6552
|
-
parentRoute: typeof SecuredLocaleAssetsRoute;
|
|
6553
|
-
};
|
|
6554
5481
|
'/secured/$locale/assets/migrate/': {
|
|
6555
5482
|
id: '/secured/$locale/assets/migrate/';
|
|
6556
5483
|
path: '/migrate';
|
|
@@ -6656,15 +5583,15 @@ declare module 'react' {
|
|
|
6656
5583
|
}
|
|
6657
5584
|
|
|
6658
5585
|
|
|
6659
|
-
declare module
|
|
6660
|
-
interface
|
|
6661
|
-
enableSelection?: boolean;
|
|
6662
|
-
enableDateGTE?: boolean;
|
|
5586
|
+
declare module '@mui/material' {
|
|
5587
|
+
interface Components<Theme = unknown> extends EveliComponents<Theme> {
|
|
6663
5588
|
}
|
|
6664
5589
|
}
|
|
6665
5590
|
|
|
6666
5591
|
|
|
6667
|
-
declare module
|
|
6668
|
-
interface
|
|
5592
|
+
declare module "@tanstack/react-table" {
|
|
5593
|
+
interface ColumnMeta<TData extends RowData, TValue> {
|
|
5594
|
+
enableSelection?: boolean;
|
|
5595
|
+
enableDateGTE?: boolean;
|
|
6669
5596
|
}
|
|
6670
5597
|
}
|