@dxs-ts/eveli-ide 2.0.35 → 2.0.36
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 +505 -8
- package/dist/index.d.ts +186 -311
- package/dist/index.js +42221 -41384
- package/dist/trace.json +16 -3
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -33,9 +33,10 @@ import { RouterHistory } from '@tanstack/history';
|
|
|
33
33
|
import { SearchParams } from './routes/secured.$locale.worker';
|
|
34
34
|
import { StencilRouteSearchParams } from '../stencil-routes/index.ts';
|
|
35
35
|
import { StyledComponent } from '../../../node_modules/@emotion/styled';
|
|
36
|
-
import { SvgIconProps } from '@mui/material
|
|
36
|
+
import { SvgIconProps } from '@mui/material';
|
|
37
37
|
import { SvgIconTypeMap } from '@mui/material';
|
|
38
38
|
import { SxProps } from '@mui/material';
|
|
39
|
+
import { TagomiRouteSearchParams } from '../tagomi-routes/index.ts';
|
|
39
40
|
import { Theme } from '@mui/material';
|
|
40
41
|
import { ThemeOptions } from '@mui/material';
|
|
41
42
|
import { TreeItem2Props } from '@mui/x-tree-view';
|
|
@@ -44,8 +45,6 @@ import { TypographyVariantsOptions } from '@mui/material';
|
|
|
44
45
|
import { VersionEntity } from '../eveli-api/fetch/worker.rest.api.version.get';
|
|
45
46
|
import { WrenchRouteSearchParams } from '../wrench-routes/index.ts';
|
|
46
47
|
|
|
47
|
-
export declare const ApiColorHex: Record<TaskApi_2.Colors, string>;
|
|
48
|
-
|
|
49
48
|
export declare namespace BatchApi {
|
|
50
49
|
}
|
|
51
50
|
|
|
@@ -123,15 +122,13 @@ export declare namespace BatchApi {
|
|
|
123
122
|
createdAt: string;
|
|
124
123
|
updatedAt: string | undefined;
|
|
125
124
|
valueStructured: {
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
successCount: number | undefined;
|
|
134
|
-
};
|
|
125
|
+
cheapId: string | undefined;
|
|
126
|
+
maxCost: number | undefined;
|
|
127
|
+
minCost: number | undefined;
|
|
128
|
+
stepName: string | undefined;
|
|
129
|
+
failCount: number | undefined;
|
|
130
|
+
expensiveId: string | undefined;
|
|
131
|
+
successCount: number | undefined;
|
|
135
132
|
} | undefined;
|
|
136
133
|
}
|
|
137
134
|
}
|
|
@@ -311,10 +308,6 @@ export declare interface DeleteDialogProps {
|
|
|
311
308
|
config: DialobAdminConfig;
|
|
312
309
|
}
|
|
313
310
|
|
|
314
|
-
export declare const dialob_messages: {
|
|
315
|
-
[key: string]: any;
|
|
316
|
-
};
|
|
317
|
-
|
|
318
311
|
export declare interface DialobAdminConfig {
|
|
319
312
|
dialobApiUrl: string;
|
|
320
313
|
setLoginRequired: () => void;
|
|
@@ -341,7 +334,7 @@ export declare interface DialobDashboardFetchProviderProps {
|
|
|
341
334
|
fetch?: FetchAuthFunction;
|
|
342
335
|
}
|
|
343
336
|
|
|
344
|
-
export declare const DialobDashboardSmart: default_2.FC
|
|
337
|
+
export declare const DialobDashboardSmart: default_2.FC;
|
|
345
338
|
|
|
346
339
|
export declare const DialobDashboardStateContext: default_2.Context<DashboardStateContextType>;
|
|
347
340
|
|
|
@@ -652,6 +645,7 @@ export declare const EveliFeatureMapping: {
|
|
|
652
645
|
LOGIN_BUTTON: (given: TenantFeature[]) => boolean;
|
|
653
646
|
STENCIL_ENABLED: (given: TenantFeature[]) => boolean;
|
|
654
647
|
WRENCH_ENABLED: (given: TenantFeature[]) => boolean;
|
|
648
|
+
TAGOMI_ENABLED: (given: TenantFeature[]) => boolean;
|
|
655
649
|
PUBLICATION_UPDATE: (given: TenantFeature[]) => boolean;
|
|
656
650
|
STENCIL_LOCALE_FILTER: (given: TenantFeature[]) => boolean;
|
|
657
651
|
DIALOB_ENABLED: (given: TenantFeature[]) => boolean;
|
|
@@ -815,6 +809,7 @@ declare const EveliPermissionMapping: {
|
|
|
815
809
|
NAV_TO_USER_PROFILE: (input: IamApi.UserPermission) => boolean;
|
|
816
810
|
NAV_TO_BATCHES: (input: IamApi.UserPermission) => boolean;
|
|
817
811
|
NAV_TO_HEALTH: (input: IamApi.UserPermission) => boolean;
|
|
812
|
+
NAV_TO_TAGOMI: (input: IamApi.UserPermission) => boolean;
|
|
818
813
|
CREATE_TASK: (input: IamApi.UserPermission) => boolean;
|
|
819
814
|
CREATE_STENCIL_ASSET: (input: IamApi.UserPermission) => boolean;
|
|
820
815
|
CREATE_WRENCH_ASSET: (input: IamApi.UserPermission) => boolean;
|
|
@@ -1088,6 +1083,7 @@ declare interface FileRoutesByFullPath {
|
|
|
1088
1083
|
'/secured/$locale/assets/forms': typeof SecuredLocaleAssetsFormsIndexRoute;
|
|
1089
1084
|
'/secured/$locale/assets/migrate': typeof SecuredLocaleAssetsMigrateIndexRoute;
|
|
1090
1085
|
'/secured/$locale/assets/stencil': typeof SecuredLocaleAssetsStencilIndexRoute;
|
|
1086
|
+
'/secured/$locale/assets/tagomi': typeof SecuredLocaleAssetsTagomiIndexRoute;
|
|
1091
1087
|
'/secured/$locale/assets/wrench': typeof SecuredLocaleAssetsWrenchIndexRoute;
|
|
1092
1088
|
'/secured/$locale/worker/batches/': typeof SecuredLocaleWorkerBatchesIndexRoute;
|
|
1093
1089
|
'/secured/$locale/worker/dashboard': typeof SecuredLocaleWorkerDashboardIndexRoute;
|
|
@@ -1125,6 +1121,7 @@ declare interface FileRoutesById {
|
|
|
1125
1121
|
'/secured/$locale/assets/forms/': typeof SecuredLocaleAssetsFormsIndexRoute;
|
|
1126
1122
|
'/secured/$locale/assets/migrate/': typeof SecuredLocaleAssetsMigrateIndexRoute;
|
|
1127
1123
|
'/secured/$locale/assets/stencil/': typeof SecuredLocaleAssetsStencilIndexRoute;
|
|
1124
|
+
'/secured/$locale/assets/tagomi/': typeof SecuredLocaleAssetsTagomiIndexRoute;
|
|
1128
1125
|
'/secured/$locale/assets/wrench/': typeof SecuredLocaleAssetsWrenchIndexRoute;
|
|
1129
1126
|
'/secured/$locale/worker/batches/': typeof SecuredLocaleWorkerBatchesIndexRoute;
|
|
1130
1127
|
'/secured/$locale/worker/dashboard/': typeof SecuredLocaleWorkerDashboardIndexRoute;
|
|
@@ -1158,6 +1155,7 @@ declare interface FileRoutesByTo {
|
|
|
1158
1155
|
'/secured/$locale/assets/forms': typeof SecuredLocaleAssetsFormsIndexRoute;
|
|
1159
1156
|
'/secured/$locale/assets/migrate': typeof SecuredLocaleAssetsMigrateIndexRoute;
|
|
1160
1157
|
'/secured/$locale/assets/stencil': typeof SecuredLocaleAssetsStencilIndexRoute;
|
|
1158
|
+
'/secured/$locale/assets/tagomi': typeof SecuredLocaleAssetsTagomiIndexRoute;
|
|
1161
1159
|
'/secured/$locale/assets/wrench': typeof SecuredLocaleAssetsWrenchIndexRoute;
|
|
1162
1160
|
'/secured/$locale/worker/batches': typeof SecuredLocaleWorkerBatchesIndexRoute;
|
|
1163
1161
|
'/secured/$locale/worker/dashboard': typeof SecuredLocaleWorkerDashboardIndexRoute;
|
|
@@ -1181,10 +1179,10 @@ declare interface FileRoutesByTo {
|
|
|
1181
1179
|
|
|
1182
1180
|
export declare interface FileRouteTypes {
|
|
1183
1181
|
fileRoutesByFullPath: FileRoutesByFullPath;
|
|
1184
|
-
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/tasks/$taskId/review' | '/secured/$locale/worker/batches/$batchId/steps/$stepId';
|
|
1182
|
+
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/tagomi' | '/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/tasks/$taskId/review' | '/secured/$locale/worker/batches/$batchId/steps/$stepId';
|
|
1185
1183
|
fileRoutesByTo: FileRoutesByTo;
|
|
1186
|
-
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/tasks/$taskId/review' | '/secured/$locale/worker/batches/$batchId/steps/$stepId';
|
|
1187
|
-
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/tasks/$taskId/review/' | '/secured/$locale/worker/batches/$batchId/steps/$stepId/';
|
|
1184
|
+
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/tagomi' | '/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/tasks/$taskId/review' | '/secured/$locale/worker/batches/$batchId/steps/$stepId';
|
|
1185
|
+
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/tagomi/' | '/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/tasks/$taskId/review/' | '/secured/$locale/worker/batches/$batchId/steps/$stepId/';
|
|
1188
1186
|
fileRoutesById: FileRoutesById;
|
|
1189
1187
|
}
|
|
1190
1188
|
|
|
@@ -1247,8 +1245,6 @@ export declare interface FormTagOptions {
|
|
|
1247
1245
|
updateLabels: (label: any, action: LabelAction) => Promise<void>;
|
|
1248
1246
|
}
|
|
1249
1247
|
|
|
1250
|
-
export declare const getContrastText: (hex: string) => string;
|
|
1251
|
-
|
|
1252
1248
|
export declare const getHeaders: (config: DialobAdminConfig) => Record<string, string>;
|
|
1253
1249
|
|
|
1254
1250
|
export declare const handleRejection: (ex: any, setTechnicalError: any) => void;
|
|
@@ -1287,7 +1283,7 @@ export declare namespace IamApi {
|
|
|
1287
1283
|
}
|
|
1288
1284
|
|
|
1289
1285
|
export declare namespace IamApi {
|
|
1290
|
-
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';
|
|
1286
|
+
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' | 'TAGOMI_EDIT';
|
|
1291
1287
|
export interface User {
|
|
1292
1288
|
userId: string;
|
|
1293
1289
|
name: string;
|
|
@@ -1551,6 +1547,7 @@ export declare const messages: {
|
|
|
1551
1547
|
'error.dataAccess': string;
|
|
1552
1548
|
'error.statusOpenError': string;
|
|
1553
1549
|
'error.workflowCreation': string;
|
|
1550
|
+
'error.invalidFormName': string;
|
|
1554
1551
|
'table.body.editRow.deleteMessage': string;
|
|
1555
1552
|
'workflowTable.title': string;
|
|
1556
1553
|
'workflowTableHeader.name': string;
|
|
@@ -1685,6 +1682,7 @@ export declare const messages: {
|
|
|
1685
1682
|
description: string;
|
|
1686
1683
|
name: string;
|
|
1687
1684
|
download: string;
|
|
1685
|
+
'download.all': string;
|
|
1688
1686
|
status: string;
|
|
1689
1687
|
created: string;
|
|
1690
1688
|
remove: string;
|
|
@@ -1700,6 +1698,21 @@ export declare const messages: {
|
|
|
1700
1698
|
'search.templates': string;
|
|
1701
1699
|
'search.flows': string;
|
|
1702
1700
|
'search.decisions': string;
|
|
1701
|
+
'adminUI.formConfiguration.label': string;
|
|
1702
|
+
'adminUI.formConfiguration.lastSaved': string;
|
|
1703
|
+
'adminUI.formConfiguration.latestTagDate': string;
|
|
1704
|
+
'adminUI.formConfiguration.latestTagName': string;
|
|
1705
|
+
'adminUI.formConfiguration.labels': string;
|
|
1706
|
+
'adminUI.dialog.formName': string;
|
|
1707
|
+
'adminUI.dialog.formLabel': string;
|
|
1708
|
+
'adminUI.dialog.emptyTitle': string;
|
|
1709
|
+
'adminUI.dialog.heading': string;
|
|
1710
|
+
'adminUI.dialog.deleteQuestion': string;
|
|
1711
|
+
'adminUI.table.tooltip.add': string;
|
|
1712
|
+
'adminUI.table.tooltip.edit': string;
|
|
1713
|
+
'adminUI.table.tooltip.copy': string;
|
|
1714
|
+
'adminUI.table.tooltip.delete': string;
|
|
1715
|
+
'adminUI.table.tooltip.download': string;
|
|
1703
1716
|
'activities.article.title': string;
|
|
1704
1717
|
'activities.article.desc': string;
|
|
1705
1718
|
'activities.locale.title': string;
|
|
@@ -1720,6 +1733,9 @@ export declare const messages: {
|
|
|
1720
1733
|
'dialog.about.title': string;
|
|
1721
1734
|
'dialog.about.preamble': string;
|
|
1722
1735
|
'dialog.about.trademark': string;
|
|
1736
|
+
'heading.copyDialog': string;
|
|
1737
|
+
'heading.addDialog': string;
|
|
1738
|
+
'heading.deleteDialog': string;
|
|
1723
1739
|
templates: string;
|
|
1724
1740
|
'template.name': string;
|
|
1725
1741
|
'template.name.desc': string;
|
|
@@ -1937,6 +1953,8 @@ export declare const messages: {
|
|
|
1937
1953
|
'activities.debug.view': string;
|
|
1938
1954
|
'activities.assets.saveSuccess': string;
|
|
1939
1955
|
flows: string;
|
|
1956
|
+
'upload.json': string;
|
|
1957
|
+
'upload.csv': string;
|
|
1940
1958
|
'migrations.title': string;
|
|
1941
1959
|
'migrations.create': string;
|
|
1942
1960
|
'migrations.select': string;
|
|
@@ -2248,14 +2266,63 @@ export declare const messages: {
|
|
|
2248
2266
|
'taskTable.button.archive.confirm': string;
|
|
2249
2267
|
'taskTable.confirmArchive.title': string;
|
|
2250
2268
|
'taskTable.title': string;
|
|
2251
|
-
'taskTable.colToolItem.LOW': string;
|
|
2252
|
-
'taskTable.colToolItem.NORMAL': string;
|
|
2253
|
-
'taskTable.colToolItem.HIGH': string;
|
|
2254
2269
|
'eveli.batches.batchView.averageRunTime': string;
|
|
2255
2270
|
'eveli.batches.batchView.averageRunTime.ms': string;
|
|
2256
2271
|
'taskcard.style.COMPACT': string;
|
|
2257
2272
|
'taskcard.style.DEFAULT': string;
|
|
2258
2273
|
'taskcard.style.LARGE': string;
|
|
2274
|
+
'toolbar.tagomi': string;
|
|
2275
|
+
'tagomi.services.searchAll': string;
|
|
2276
|
+
'tagomi.main.services.all': string;
|
|
2277
|
+
'tagomi.templates.templateTab': string;
|
|
2278
|
+
'tagomi.services.title': string;
|
|
2279
|
+
'tagomi.services.desc': string;
|
|
2280
|
+
'tagomi.service.create': string;
|
|
2281
|
+
'tagomi.locales.title': string;
|
|
2282
|
+
'tagomi.locales.desc': string;
|
|
2283
|
+
'tagomi.locale.create': string;
|
|
2284
|
+
'tagomi.templates.title': string;
|
|
2285
|
+
'tagomi.templates.desc': string;
|
|
2286
|
+
'tagomi.template.create': string;
|
|
2287
|
+
'tagomi.service.options.edit': string;
|
|
2288
|
+
'tagomi.service.options.delete': string;
|
|
2289
|
+
'tagomi.service.options.templates.create': string;
|
|
2290
|
+
'tagomi.service.options.template.changeLocale': string;
|
|
2291
|
+
'tagomi.service.options.template.delete': string;
|
|
2292
|
+
'tagomi.service.create.dialog.title': string;
|
|
2293
|
+
'tagomi.service.create.dialog.serviceName': string;
|
|
2294
|
+
'tagomi.service.create.dialog.orchestratorName': string;
|
|
2295
|
+
'tagomi.service.edit.dialog.title': string;
|
|
2296
|
+
'tagomi.service.edit.dialog.name': string;
|
|
2297
|
+
'tagomi.service.edit.dialog.orchestratorName': string;
|
|
2298
|
+
'tagomi.template.edit.currentlyEditing.language1': string;
|
|
2299
|
+
'tagomi.template.edit.language1': string;
|
|
2300
|
+
'tagomi.template.change.dialog.title': string;
|
|
2301
|
+
'tagomi.template.change.dialog.desc': string;
|
|
2302
|
+
'tagomi.template.change.dialog.selectOrigin': string;
|
|
2303
|
+
'tagomi.template.change.dialog.selectTarget': string;
|
|
2304
|
+
'tagomi.template.change.dialog.noTemplates': string;
|
|
2305
|
+
'tagomi.template.change.dialog.noLocales': string;
|
|
2306
|
+
'tagomi.template.delete.dialog.title': string;
|
|
2307
|
+
'tagomi.template.delete.dialog.desc': string;
|
|
2308
|
+
'tagomi.template.delete.dialog.selectTemplate': string;
|
|
2309
|
+
'tagomi.template.editor.title': string;
|
|
2310
|
+
'tagomi.template.editor.serviceName': string;
|
|
2311
|
+
'tagomi.template.editor.localeLabel': string;
|
|
2312
|
+
'tagomi.button.delete.dialog.template': string;
|
|
2313
|
+
'tagomi.template.delete.dialog.noTemplates.helperText': string;
|
|
2314
|
+
'tagomi.template.create.dialog.title': string;
|
|
2315
|
+
'tagomi.template.create.dialog.desc': string;
|
|
2316
|
+
'tagomi.template.create.dialog.service.name': string;
|
|
2317
|
+
'tagomi.template.create.dialog.localeLabel.select': string;
|
|
2318
|
+
'tagomi.template.create.dialog.noLocales': string;
|
|
2319
|
+
'tagomi.service.delete.dialog.title': string;
|
|
2320
|
+
'tagomi.service.delete.dialog.desc': string;
|
|
2321
|
+
'tagomi.service.delete.dialog.button': string;
|
|
2322
|
+
'snack.template.savedMessage': string;
|
|
2323
|
+
'snack.service.deletedMessage': string;
|
|
2324
|
+
'tagomi.locale.select.alreadyDefined': string;
|
|
2325
|
+
'tagomi.locale.label.editLocaleValue': string;
|
|
2259
2326
|
};
|
|
2260
2327
|
fi: {
|
|
2261
2328
|
'document.title': string;
|
|
@@ -2409,6 +2476,7 @@ export declare const messages: {
|
|
|
2409
2476
|
'error.dataAccess': string;
|
|
2410
2477
|
'error.statusOpenError': string;
|
|
2411
2478
|
'error.workflowCreation': string;
|
|
2479
|
+
'error.invalidFormName': string;
|
|
2412
2480
|
'table.body.editRow.deleteMessage': string;
|
|
2413
2481
|
'workflowTable.title': string;
|
|
2414
2482
|
'workflowTableHeader.name': string;
|
|
@@ -2543,6 +2611,7 @@ export declare const messages: {
|
|
|
2543
2611
|
description: string;
|
|
2544
2612
|
name: string;
|
|
2545
2613
|
download: string;
|
|
2614
|
+
'download.all': string;
|
|
2546
2615
|
status: string;
|
|
2547
2616
|
created: string;
|
|
2548
2617
|
remove: string;
|
|
@@ -2558,6 +2627,21 @@ export declare const messages: {
|
|
|
2558
2627
|
'search.templates': string;
|
|
2559
2628
|
'search.flows': string;
|
|
2560
2629
|
'search.decisions': string;
|
|
2630
|
+
'adminUI.formConfiguration.label': string;
|
|
2631
|
+
'adminUI.formConfiguration.lastSaved': string;
|
|
2632
|
+
'adminUI.formConfiguration.latestTagDate': string;
|
|
2633
|
+
'adminUI.formConfiguration.latestTagName': string;
|
|
2634
|
+
'adminUI.formConfiguration.labels': string;
|
|
2635
|
+
'adminUI.dialog.formName': string;
|
|
2636
|
+
'adminUI.dialog.formLabel': string;
|
|
2637
|
+
'adminUI.dialog.emptyTitle': string;
|
|
2638
|
+
'adminUI.dialog.heading': string;
|
|
2639
|
+
'adminUI.dialog.deleteQuestion': string;
|
|
2640
|
+
'adminUI.table.tooltip.add': string;
|
|
2641
|
+
'adminUI.table.tooltip.edit': string;
|
|
2642
|
+
'adminUI.table.tooltip.copy': string;
|
|
2643
|
+
'adminUI.table.tooltip.delete': string;
|
|
2644
|
+
'adminUI.table.tooltip.download': string;
|
|
2561
2645
|
'activities.article.title': string;
|
|
2562
2646
|
'activities.article.desc': string;
|
|
2563
2647
|
'activities.locale.title': string;
|
|
@@ -2572,11 +2656,15 @@ export declare const messages: {
|
|
|
2572
2656
|
'migration.create': string;
|
|
2573
2657
|
'activities.migration.desc': string;
|
|
2574
2658
|
'activities.templates.title': string;
|
|
2659
|
+
'activities.templates.desc': string;
|
|
2575
2660
|
'activities.version.composer': string;
|
|
2576
2661
|
'activities.version.core': string;
|
|
2577
2662
|
'dialog.about.title': string;
|
|
2578
2663
|
'dialog.about.preamble': string;
|
|
2579
2664
|
'dialog.about.trademark': string;
|
|
2665
|
+
'heading.copyDialog': string;
|
|
2666
|
+
'heading.addDialog': string;
|
|
2667
|
+
'heading.deleteDialog': string;
|
|
2580
2668
|
templates: string;
|
|
2581
2669
|
'template.name': string;
|
|
2582
2670
|
'template.name.desc': string;
|
|
@@ -2741,6 +2829,7 @@ export declare const messages: {
|
|
|
2741
2829
|
'newpage.article.info': string;
|
|
2742
2830
|
'page.create': string;
|
|
2743
2831
|
'page.delete.dialog.title': string;
|
|
2832
|
+
'page.delete.description': string;
|
|
2744
2833
|
'pages.add': string;
|
|
2745
2834
|
'pages.change': string;
|
|
2746
2835
|
'pages.select.locale': string;
|
|
@@ -2793,6 +2882,8 @@ export declare const messages: {
|
|
|
2793
2882
|
'activities.debug.view': string;
|
|
2794
2883
|
'activities.assets.saveSuccess': string;
|
|
2795
2884
|
flows: string;
|
|
2885
|
+
'upload.json': string;
|
|
2886
|
+
'upload.csv': string;
|
|
2796
2887
|
'migrations.title': string;
|
|
2797
2888
|
'migrations.create': string;
|
|
2798
2889
|
'migrations.select': string;
|
|
@@ -3104,14 +3195,12 @@ export declare const messages: {
|
|
|
3104
3195
|
'taskTable.button.archive.confirm': string;
|
|
3105
3196
|
'taskTable.confirmArchive.title': string;
|
|
3106
3197
|
'taskTable.title': string;
|
|
3107
|
-
'taskTable.colToolItem.LOW': string;
|
|
3108
|
-
'taskTable.colToolItem.NORMAL': string;
|
|
3109
|
-
'taskTable.colToolItem.HIGH': string;
|
|
3110
3198
|
'eveli.batches.batchView.averageRunTime': string;
|
|
3111
3199
|
'eveli.batches.batchView.averageRunTime.ms': string;
|
|
3112
3200
|
'taskcard.style.COMPACT': string;
|
|
3113
3201
|
'taskcard.style.DEFAULT': string;
|
|
3114
3202
|
'taskcard.style.LARGE': string;
|
|
3203
|
+
'tagomi.template.create.dialog.noLocales': string;
|
|
3115
3204
|
};
|
|
3116
3205
|
sv: {
|
|
3117
3206
|
'document.title': string;
|
|
@@ -3265,6 +3354,7 @@ export declare const messages: {
|
|
|
3265
3354
|
'error.dataAccess': string;
|
|
3266
3355
|
'error.statusOpenError': string;
|
|
3267
3356
|
'error.workflowCreation': string;
|
|
3357
|
+
'error.invalidFormName': string;
|
|
3268
3358
|
'table.body.editRow.deleteMessage': string;
|
|
3269
3359
|
'workflowTable.title': string;
|
|
3270
3360
|
'workflowTableHeader.name': string;
|
|
@@ -3399,6 +3489,7 @@ export declare const messages: {
|
|
|
3399
3489
|
description: string;
|
|
3400
3490
|
name: string;
|
|
3401
3491
|
download: string;
|
|
3492
|
+
'download.all': string;
|
|
3402
3493
|
status: string;
|
|
3403
3494
|
created: string;
|
|
3404
3495
|
remove: string;
|
|
@@ -3414,6 +3505,21 @@ export declare const messages: {
|
|
|
3414
3505
|
'search.templates': string;
|
|
3415
3506
|
'search.flows': string;
|
|
3416
3507
|
'search.decisions': string;
|
|
3508
|
+
'adminUI.formConfiguration.label': string;
|
|
3509
|
+
'adminUI.formConfiguration.lastSaved': string;
|
|
3510
|
+
'adminUI.formConfiguration.latestTagDate': string;
|
|
3511
|
+
'adminUI.formConfiguration.latestTagName': string;
|
|
3512
|
+
'adminUI.formConfiguration.labels': string;
|
|
3513
|
+
'adminUI.dialog.formName': string;
|
|
3514
|
+
'adminUI.dialog.formLabel': string;
|
|
3515
|
+
'adminUI.dialog.emptyTitle': string;
|
|
3516
|
+
'adminUI.dialog.heading': string;
|
|
3517
|
+
'adminUI.dialog.deleteQuestion': string;
|
|
3518
|
+
'adminUI.table.tooltip.add': string;
|
|
3519
|
+
'adminUI.table.tooltip.edit': string;
|
|
3520
|
+
'adminUI.table.tooltip.copy': string;
|
|
3521
|
+
'adminUI.table.tooltip.delete': string;
|
|
3522
|
+
'adminUI.table.tooltip.download': string;
|
|
3417
3523
|
'activities.article.title': string;
|
|
3418
3524
|
'activities.article.desc': string;
|
|
3419
3525
|
'activities.locale.title': string;
|
|
@@ -3434,6 +3540,9 @@ export declare const messages: {
|
|
|
3434
3540
|
'dialog.about.title': string;
|
|
3435
3541
|
'dialog.about.preamble': string;
|
|
3436
3542
|
'dialog.about.trademark': string;
|
|
3543
|
+
'heading.copyDialog': string;
|
|
3544
|
+
'heading.addDialog': string;
|
|
3545
|
+
'heading.deleteDialog': string;
|
|
3437
3546
|
templates: string;
|
|
3438
3547
|
'template.name': string;
|
|
3439
3548
|
'template.name.desc': string;
|
|
@@ -3651,6 +3760,8 @@ export declare const messages: {
|
|
|
3651
3760
|
'activities.debug.view': string;
|
|
3652
3761
|
'activities.assets.saveSuccess': string;
|
|
3653
3762
|
flows: string;
|
|
3763
|
+
'upload.json': string;
|
|
3764
|
+
'upload.csv': string;
|
|
3654
3765
|
'migrations.title': string;
|
|
3655
3766
|
'migrations.create': string;
|
|
3656
3767
|
'migrations.select': string;
|
|
@@ -3962,9 +4073,6 @@ export declare const messages: {
|
|
|
3962
4073
|
'taskTable.button.archive.confirm': string;
|
|
3963
4074
|
'taskTable.confirmArchive.title': string;
|
|
3964
4075
|
'taskTable.title': string;
|
|
3965
|
-
'taskTable.colToolItem.LOW': string;
|
|
3966
|
-
'taskTable.colToolItem.NORMAL': string;
|
|
3967
|
-
'taskTable.colToolItem.HIGH': string;
|
|
3968
4076
|
'eveli.batches.batchView.averageRunTime': string;
|
|
3969
4077
|
'eveli.batches.batchView.averageRunTime.ms': string;
|
|
3970
4078
|
'taskcard.style.COMPACT': string;
|
|
@@ -3991,8 +4099,6 @@ export declare type OverrideProps<T> = {
|
|
|
3991
4099
|
children?: React.ReactNode | undefined;
|
|
3992
4100
|
};
|
|
3993
4101
|
|
|
3994
|
-
export declare const PriorityHex: Record<TaskApi_2.TaskPriority, string>;
|
|
3995
|
-
|
|
3996
4102
|
export declare namespace ProcExecutionApi {
|
|
3997
4103
|
}
|
|
3998
4104
|
|
|
@@ -4516,6 +4622,16 @@ declare class RootFileFetch_2 {
|
|
|
4516
4622
|
}, {}, {
|
|
4517
4623
|
getReleaseContent: (releaseId: StencilApi.ReleaseId) => Promise<{}>;
|
|
4518
4624
|
}>;
|
|
4625
|
+
} | {
|
|
4626
|
+
id: "worker/rest/api/assets/tagomi.GET";
|
|
4627
|
+
path: "worker/rest/api/assets/tagomi";
|
|
4628
|
+
method: "GET";
|
|
4629
|
+
params: {};
|
|
4630
|
+
hook: HookImpl<"worker/rest/api/assets/tagomi.GET", Hook<{}, {
|
|
4631
|
+
backend: TagomiApi.Backend;
|
|
4632
|
+
}>, "worker/rest/api/assets/tagomi", "GET", {}, {}, {
|
|
4633
|
+
backend: TagomiApi.Backend;
|
|
4634
|
+
}>;
|
|
4519
4635
|
} | {
|
|
4520
4636
|
id: "worker/rest/api/assets/workflows/$workflowId.PUT";
|
|
4521
4637
|
path: "worker/rest/api/assets/workflows/$workflowId";
|
|
@@ -5234,6 +5350,7 @@ declare interface SecuredLocaleAssetsRouteChildren {
|
|
|
5234
5350
|
SecuredLocaleAssetsFormsIndexRoute: typeof SecuredLocaleAssetsFormsIndexRoute;
|
|
5235
5351
|
SecuredLocaleAssetsMigrateIndexRoute: typeof SecuredLocaleAssetsMigrateIndexRoute;
|
|
5236
5352
|
SecuredLocaleAssetsStencilIndexRoute: typeof SecuredLocaleAssetsStencilIndexRoute;
|
|
5353
|
+
SecuredLocaleAssetsTagomiIndexRoute: typeof SecuredLocaleAssetsTagomiIndexRoute;
|
|
5237
5354
|
SecuredLocaleAssetsWrenchIndexRoute: typeof SecuredLocaleAssetsWrenchIndexRoute;
|
|
5238
5355
|
}
|
|
5239
5356
|
|
|
@@ -5243,6 +5360,8 @@ declare const SecuredLocaleAssetsRouteWithChildren: Route<Route<RootRoute<undefi
|
|
|
5243
5360
|
|
|
5244
5361
|
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>;
|
|
5245
5362
|
|
|
5363
|
+
declare const SecuredLocaleAssetsTagomiIndexRoute: 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>, "/tagomi", "/secured/$locale/assets/tagomi", "/secured/$locale/assets/tagomi/", "/secured/$locale/assets/tagomi/", (search: Record<string, unknown>) => TagomiRouteSearchParams, ResolveParams<"/tagomi">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>;
|
|
5364
|
+
|
|
5246
5365
|
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>;
|
|
5247
5366
|
|
|
5248
5367
|
declare const SecuredLocaleIndexRoute: 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>, "/", "/secured/$locale/", "/secured/$locale/", "/secured/$locale/", undefined, ResolveParams<"/">, AnyContext, AnyContext, AnyContext, {}, undefined, unknown, unknown>;
|
|
@@ -5374,8 +5493,6 @@ export declare interface SpinnerProps {
|
|
|
5374
5493
|
customHeight?: string;
|
|
5375
5494
|
}
|
|
5376
5495
|
|
|
5377
|
-
export declare const StatusHex: Record<TaskApi_2.TaskStatus, string>;
|
|
5378
|
-
|
|
5379
5496
|
declare interface StyledInputFieldProps<T> {
|
|
5380
5497
|
label: string;
|
|
5381
5498
|
disabled?: boolean;
|
|
@@ -5460,256 +5577,7 @@ export declare interface TagTableRowProps {
|
|
|
5460
5577
|
onOpenForm?: (formId: string) => void;
|
|
5461
5578
|
}
|
|
5462
5579
|
|
|
5463
|
-
declare
|
|
5464
|
-
enum Colors {
|
|
5465
|
-
RED = 1,
|
|
5466
|
-
BLUE = 2,
|
|
5467
|
-
GREEN = 3,
|
|
5468
|
-
YELLOW = 4,
|
|
5469
|
-
GREY = 5
|
|
5470
|
-
}
|
|
5471
|
-
type ColorMap = {
|
|
5472
|
-
[status: string]: Colors;
|
|
5473
|
-
};
|
|
5474
|
-
enum CommentSource {
|
|
5475
|
-
FRONTDESK = "FRONTDESK",
|
|
5476
|
-
PORTAL = "PORTAL"
|
|
5477
|
-
}
|
|
5478
|
-
enum TaskPriority {
|
|
5479
|
-
LOW = "LOW",
|
|
5480
|
-
NORMAL = "NORMAL",
|
|
5481
|
-
HIGH = "HIGH"
|
|
5482
|
-
}
|
|
5483
|
-
const task_priority_messages: {
|
|
5484
|
-
LOW: {
|
|
5485
|
-
id: string;
|
|
5486
|
-
defaultMessage: string;
|
|
5487
|
-
};
|
|
5488
|
-
NORMAL: {
|
|
5489
|
-
id: string;
|
|
5490
|
-
defaultMessage: string;
|
|
5491
|
-
};
|
|
5492
|
-
HIGH: {
|
|
5493
|
-
id: string;
|
|
5494
|
-
defaultMessage: string;
|
|
5495
|
-
};
|
|
5496
|
-
};
|
|
5497
|
-
const task_priority_colors: ColorMap;
|
|
5498
|
-
enum TaskStatus {
|
|
5499
|
-
NEW = "NEW",
|
|
5500
|
-
OPEN = "OPEN",
|
|
5501
|
-
COMPLETED = "COMPLETED",
|
|
5502
|
-
REJECTED = "REJECTED",
|
|
5503
|
-
TRANSFERRED = "TRANSFERRED",
|
|
5504
|
-
DELEGATED = "DELEGATED",
|
|
5505
|
-
WAITING = "WAITING"
|
|
5506
|
-
}
|
|
5507
|
-
const task_status_messages: {
|
|
5508
|
-
NEW: {
|
|
5509
|
-
id: string;
|
|
5510
|
-
defaultMessage: string;
|
|
5511
|
-
};
|
|
5512
|
-
OPEN: {
|
|
5513
|
-
id: string;
|
|
5514
|
-
defaultMessage: string;
|
|
5515
|
-
};
|
|
5516
|
-
COMPLETED: {
|
|
5517
|
-
id: string;
|
|
5518
|
-
defaultMessage: string;
|
|
5519
|
-
};
|
|
5520
|
-
REJECTED: {
|
|
5521
|
-
id: string;
|
|
5522
|
-
defaultMessage: string;
|
|
5523
|
-
};
|
|
5524
|
-
TRANSFERRED: {
|
|
5525
|
-
id: string;
|
|
5526
|
-
defaultMessage: string;
|
|
5527
|
-
};
|
|
5528
|
-
DELEGATED: {
|
|
5529
|
-
id: string;
|
|
5530
|
-
defaultMessage: string;
|
|
5531
|
-
};
|
|
5532
|
-
WAITING: {
|
|
5533
|
-
id: string;
|
|
5534
|
-
defaultMessage: string;
|
|
5535
|
-
};
|
|
5536
|
-
};
|
|
5537
|
-
const task_status_colors: ColorMap;
|
|
5538
|
-
}
|
|
5539
|
-
|
|
5540
|
-
declare namespace TaskApi_2 {
|
|
5541
|
-
interface Attachment {
|
|
5542
|
-
name: string;
|
|
5543
|
-
status: 'OK' | 'QUARANTINED' | 'UPLOADED';
|
|
5544
|
-
created: Date;
|
|
5545
|
-
updated: Date;
|
|
5546
|
-
size: number;
|
|
5547
|
-
}
|
|
5548
|
-
interface AttachmentUploadResponse {
|
|
5549
|
-
putRequestUrl: string;
|
|
5550
|
-
}
|
|
5551
|
-
interface Comment {
|
|
5552
|
-
id: number;
|
|
5553
|
-
userName: string;
|
|
5554
|
-
created: string;
|
|
5555
|
-
commentText: string;
|
|
5556
|
-
replyToId?: number | null;
|
|
5557
|
-
__parent?: Comment;
|
|
5558
|
-
__children?: Comment[];
|
|
5559
|
-
external?: boolean;
|
|
5560
|
-
source?: CommentSource;
|
|
5561
|
-
}
|
|
5562
|
-
type TaskLink = {
|
|
5563
|
-
id?: number;
|
|
5564
|
-
linkKey: string;
|
|
5565
|
-
linkAddress: string;
|
|
5566
|
-
};
|
|
5567
|
-
interface Task {
|
|
5568
|
-
id: string;
|
|
5569
|
-
taskRef?: string;
|
|
5570
|
-
version?: number;
|
|
5571
|
-
created?: Date;
|
|
5572
|
-
updated?: Date;
|
|
5573
|
-
completed?: Date;
|
|
5574
|
-
assignedUser?: string;
|
|
5575
|
-
assignedUserEmail?: string;
|
|
5576
|
-
updaterId?: string;
|
|
5577
|
-
dueDate?: Date;
|
|
5578
|
-
status?: TaskStatus;
|
|
5579
|
-
subject?: string;
|
|
5580
|
-
description?: string;
|
|
5581
|
-
priority?: TaskPriority;
|
|
5582
|
-
additionalInfo?: string;
|
|
5583
|
-
transferredId?: string | undefined;
|
|
5584
|
-
transferredProps?: object | undefined;
|
|
5585
|
-
priorityIntl?: string;
|
|
5586
|
-
statusIntl?: string;
|
|
5587
|
-
features?: TaskFeatureType[];
|
|
5588
|
-
keyWords?: string[];
|
|
5589
|
-
taskLinks?: TaskLink[];
|
|
5590
|
-
statusCode?: number;
|
|
5591
|
-
priorityCode?: number;
|
|
5592
|
-
clientIdentificator?: string | null;
|
|
5593
|
-
assignedRoles?: string[] | null;
|
|
5594
|
-
comments: Comment[];
|
|
5595
|
-
questionnaireId?: string | undefined;
|
|
5596
|
-
customerAssignments: TaskCustomerAssignment[];
|
|
5597
|
-
}
|
|
5598
|
-
interface TaskCustomerAssignment {
|
|
5599
|
-
id: string;
|
|
5600
|
-
serviceName: string;
|
|
5601
|
-
description: string;
|
|
5602
|
-
locale: string;
|
|
5603
|
-
externalId: string;
|
|
5604
|
-
created: Date;
|
|
5605
|
-
status: 'NEW' | 'OPEN' | 'COMPLETED' | 'CANCELLED';
|
|
5606
|
-
questionnaireId?: string;
|
|
5607
|
-
processId?: string;
|
|
5608
|
-
}
|
|
5609
|
-
type TaskFeatureType = 'feedback' | 'transfer' | 'anon' | 'assignable';
|
|
5610
|
-
interface TransferTaskCommand {
|
|
5611
|
-
transferTitle: string;
|
|
5612
|
-
}
|
|
5613
|
-
interface CreateTaskCustomerAssignmentCommand {
|
|
5614
|
-
serviceId: string;
|
|
5615
|
-
taskId: string;
|
|
5616
|
-
taskVersion?: string;
|
|
5617
|
-
}
|
|
5618
|
-
interface TaskDasboard {
|
|
5619
|
-
events: GrimMissionAttributeEvent[];
|
|
5620
|
-
}
|
|
5621
|
-
interface GrimMissionAttributeEvent {
|
|
5622
|
-
eventDate: string | undefined;
|
|
5623
|
-
eventCount: number;
|
|
5624
|
-
eventType: GrimMissionAttributeEventType;
|
|
5625
|
-
eventSubType: string | undefined;
|
|
5626
|
-
attributeValue: string;
|
|
5627
|
-
}
|
|
5628
|
-
interface User {
|
|
5629
|
-
userName: string;
|
|
5630
|
-
userEmail: string;
|
|
5631
|
-
}
|
|
5632
|
-
interface Role {
|
|
5633
|
-
id: string;
|
|
5634
|
-
groupName: string;
|
|
5635
|
-
}
|
|
5636
|
-
type TaskAuditEntryType = 'DIFF' | 'MQ' | 'FLOW' | 'VIEWER';
|
|
5637
|
-
interface TaskViewer {
|
|
5638
|
-
id: string;
|
|
5639
|
-
updatedAt: string;
|
|
5640
|
-
usedBy: string;
|
|
5641
|
-
}
|
|
5642
|
-
interface TaskCommit {
|
|
5643
|
-
commitId: string;
|
|
5644
|
-
createdAt: string;
|
|
5645
|
-
commitAuthor: string;
|
|
5646
|
-
commitMessage: string;
|
|
5647
|
-
}
|
|
5648
|
-
interface TaskAuditLog {
|
|
5649
|
-
id: string;
|
|
5650
|
-
flow: TaskAuditEntryProcess | undefined;
|
|
5651
|
-
mq: TaskAuditEntryMq | undefined;
|
|
5652
|
-
access: TaskAuditEntryAccess;
|
|
5653
|
-
}
|
|
5654
|
-
interface TaskAuditEntryProcess {
|
|
5655
|
-
processInstance: any;
|
|
5656
|
-
processFlowLog: object | undefined;
|
|
5657
|
-
processFormLog: object | undefined;
|
|
5658
|
-
type: 'FLOW';
|
|
5659
|
-
}
|
|
5660
|
-
interface TaskAuditEntryMq {
|
|
5661
|
-
deliveries: Record<string, TaskAuditQueueDelivery>;
|
|
5662
|
-
bindings: Record<string, TaskAuditQueueBinding>;
|
|
5663
|
-
queueMessages: Record<string, TaskAuditQueueMessage>;
|
|
5664
|
-
queues: Record<string, TaskAuditQueue>;
|
|
5665
|
-
queueConsumers: Record<string, any>;
|
|
5666
|
-
channels: Record<string, any>;
|
|
5667
|
-
type: 'MQ';
|
|
5668
|
-
}
|
|
5669
|
-
interface TaskAuditQueue {
|
|
5670
|
-
queueName: string;
|
|
5671
|
-
}
|
|
5672
|
-
interface TaskAuditQueueDelivery {
|
|
5673
|
-
queueId: string;
|
|
5674
|
-
}
|
|
5675
|
-
interface TaskAuditQueueBinding {
|
|
5676
|
-
id: string;
|
|
5677
|
-
}
|
|
5678
|
-
interface TaskAuditQueueMessage {
|
|
5679
|
-
id: string;
|
|
5680
|
-
}
|
|
5681
|
-
interface TaskAuditQueueMessage {
|
|
5682
|
-
routingKey: string;
|
|
5683
|
-
bodyType: string;
|
|
5684
|
-
bodyValue: object;
|
|
5685
|
-
createdAt: string;
|
|
5686
|
-
}
|
|
5687
|
-
interface TaskAuditEntryDiff {
|
|
5688
|
-
value: Record<string, any>;
|
|
5689
|
-
type: 'DIFF';
|
|
5690
|
-
}
|
|
5691
|
-
interface TaskAuditEntryAccess {
|
|
5692
|
-
value: TaskViewer[];
|
|
5693
|
-
commits: Record<string, TaskCommit>;
|
|
5694
|
-
commitTrees: Record<string, any>;
|
|
5695
|
-
type: 'VIEWER';
|
|
5696
|
-
}
|
|
5697
|
-
type GrimMissionAttributeEventType = ('STATUS' | 'PRIORITY' | 'STATUS_DATE' | 'OVERDUE' | 'ROLE' | 'QUESTIONNAIRE');
|
|
5698
|
-
interface TaskPdfRequest {
|
|
5699
|
-
taskId: string;
|
|
5700
|
-
fields: ('CUSTOMER_NAME' | 'CUSTOMER_SSN' | 'EXTERNAL_COMMENTS')[];
|
|
5701
|
-
}
|
|
5702
|
-
interface FormAssignment {
|
|
5703
|
-
id: string;
|
|
5704
|
-
locale: string;
|
|
5705
|
-
serviceName: string;
|
|
5706
|
-
formId: string;
|
|
5707
|
-
formName: string;
|
|
5708
|
-
formTag: string;
|
|
5709
|
-
}
|
|
5710
|
-
}
|
|
5711
|
-
|
|
5712
|
-
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"];
|
|
5580
|
+
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", "tagomi"];
|
|
5713
5581
|
|
|
5714
5582
|
export declare interface TenantConfig {
|
|
5715
5583
|
features: TenantFeature[];
|
|
@@ -6068,30 +5936,6 @@ declare module '@tanstack/react-router' {
|
|
|
6068
5936
|
}
|
|
6069
5937
|
|
|
6070
5938
|
|
|
6071
|
-
declare module '@mui/material' {
|
|
6072
|
-
interface Components<Theme = unknown> extends EveliComponents<Theme> {
|
|
6073
|
-
}
|
|
6074
|
-
}
|
|
6075
|
-
|
|
6076
|
-
|
|
6077
|
-
declare module '@mui/material/Button' {
|
|
6078
|
-
interface ButtonPropsVariantOverrides {
|
|
6079
|
-
explorerInactive: true;
|
|
6080
|
-
explorerActive: true;
|
|
6081
|
-
}
|
|
6082
|
-
}
|
|
6083
|
-
|
|
6084
|
-
|
|
6085
|
-
declare module 'react' {
|
|
6086
|
-
interface CSSProperties {
|
|
6087
|
-
'--tree-view-text-color'?: string;
|
|
6088
|
-
'--tree-view-color'?: string;
|
|
6089
|
-
'--tree-view-bg-color'?: string;
|
|
6090
|
-
'--tree-view-hover-color'?: string;
|
|
6091
|
-
}
|
|
6092
|
-
}
|
|
6093
|
-
|
|
6094
|
-
|
|
6095
5939
|
declare module '@tanstack/react-router' {
|
|
6096
5940
|
interface FileRoutesByPath {
|
|
6097
5941
|
'/': {
|
|
@@ -6234,6 +6078,13 @@ declare module '@tanstack/react-router' {
|
|
|
6234
6078
|
preLoaderRoute: typeof SecuredLocaleAssetsWrenchIndexRouteImport;
|
|
6235
6079
|
parentRoute: typeof SecuredLocaleAssetsRoute;
|
|
6236
6080
|
};
|
|
6081
|
+
'/secured/$locale/assets/tagomi/': {
|
|
6082
|
+
id: '/secured/$locale/assets/tagomi/';
|
|
6083
|
+
path: '/tagomi';
|
|
6084
|
+
fullPath: '/secured/$locale/assets/tagomi';
|
|
6085
|
+
preLoaderRoute: typeof SecuredLocaleAssetsTagomiIndexRouteImport;
|
|
6086
|
+
parentRoute: typeof SecuredLocaleAssetsRoute;
|
|
6087
|
+
};
|
|
6237
6088
|
'/secured/$locale/assets/stencil/': {
|
|
6238
6089
|
id: '/secured/$locale/assets/stencil/';
|
|
6239
6090
|
path: '/stencil';
|
|
@@ -6335,9 +6186,33 @@ declare module '@mui/material' {
|
|
|
6335
6186
|
}
|
|
6336
6187
|
|
|
6337
6188
|
|
|
6189
|
+
declare module '@mui/material/Button' {
|
|
6190
|
+
interface ButtonPropsVariantOverrides {
|
|
6191
|
+
explorerInactive: true;
|
|
6192
|
+
explorerActive: true;
|
|
6193
|
+
}
|
|
6194
|
+
}
|
|
6195
|
+
|
|
6196
|
+
|
|
6197
|
+
declare module 'react' {
|
|
6198
|
+
interface CSSProperties {
|
|
6199
|
+
'--tree-view-text-color'?: string;
|
|
6200
|
+
'--tree-view-color'?: string;
|
|
6201
|
+
'--tree-view-bg-color'?: string;
|
|
6202
|
+
'--tree-view-hover-color'?: string;
|
|
6203
|
+
}
|
|
6204
|
+
}
|
|
6205
|
+
|
|
6206
|
+
|
|
6207
|
+
declare module '@mui/material' {
|
|
6208
|
+
interface Components<Theme = unknown> extends EveliComponents<Theme> {
|
|
6209
|
+
}
|
|
6210
|
+
}
|
|
6211
|
+
|
|
6212
|
+
|
|
6338
6213
|
declare module "@tanstack/react-table" {
|
|
6339
6214
|
interface ColumnMeta<TData extends RowData, TValue> {
|
|
6340
6215
|
enableSelection?: boolean;
|
|
6341
|
-
|
|
6216
|
+
isDate?: boolean;
|
|
6342
6217
|
}
|
|
6343
6218
|
}
|