@dxs-ts/eveli-ide 2.0.35 → 2.0.37
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 +352 -9
- package/dist/index.d.ts +191 -311
- package/dist/index.js +40522 -39481
- 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,23 @@ 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.dialog.form.addFormLabel.title': string;
|
|
1712
|
+
'adminUI.dialog.form.addFormLabel.desc': string;
|
|
1713
|
+
'adminUI.table.tooltip.add': string;
|
|
1714
|
+
'adminUI.table.tooltip.edit': string;
|
|
1715
|
+
'adminUI.table.tooltip.copy': string;
|
|
1716
|
+
'adminUI.table.tooltip.delete': string;
|
|
1717
|
+
'adminUI.table.tooltip.download': string;
|
|
1703
1718
|
'activities.article.title': string;
|
|
1704
1719
|
'activities.article.desc': string;
|
|
1705
1720
|
'activities.locale.title': string;
|
|
@@ -1720,6 +1735,9 @@ export declare const messages: {
|
|
|
1720
1735
|
'dialog.about.title': string;
|
|
1721
1736
|
'dialog.about.preamble': string;
|
|
1722
1737
|
'dialog.about.trademark': string;
|
|
1738
|
+
'heading.copyDialog': string;
|
|
1739
|
+
'heading.addDialog': string;
|
|
1740
|
+
'heading.deleteDialog': string;
|
|
1723
1741
|
templates: string;
|
|
1724
1742
|
'template.name': string;
|
|
1725
1743
|
'template.name.desc': string;
|
|
@@ -1937,6 +1955,8 @@ export declare const messages: {
|
|
|
1937
1955
|
'activities.debug.view': string;
|
|
1938
1956
|
'activities.assets.saveSuccess': string;
|
|
1939
1957
|
flows: string;
|
|
1958
|
+
'upload.json': string;
|
|
1959
|
+
'upload.csv': string;
|
|
1940
1960
|
'migrations.title': string;
|
|
1941
1961
|
'migrations.create': string;
|
|
1942
1962
|
'migrations.select': string;
|
|
@@ -2183,6 +2203,7 @@ export declare const messages: {
|
|
|
2183
2203
|
'eveli.table.clearFilters': string;
|
|
2184
2204
|
'eveli.table.drawer.buttons.savedFiltersButton': string;
|
|
2185
2205
|
'eveli.table.saveasdefault': string;
|
|
2206
|
+
'eveli.table.defaultSettings': string;
|
|
2186
2207
|
'eveli.table.saveas': string;
|
|
2187
2208
|
'eveli.error.general': string;
|
|
2188
2209
|
'eveli.error.notFound': string;
|
|
@@ -2248,14 +2269,63 @@ export declare const messages: {
|
|
|
2248
2269
|
'taskTable.button.archive.confirm': string;
|
|
2249
2270
|
'taskTable.confirmArchive.title': string;
|
|
2250
2271
|
'taskTable.title': string;
|
|
2251
|
-
'taskTable.colToolItem.LOW': string;
|
|
2252
|
-
'taskTable.colToolItem.NORMAL': string;
|
|
2253
|
-
'taskTable.colToolItem.HIGH': string;
|
|
2254
2272
|
'eveli.batches.batchView.averageRunTime': string;
|
|
2255
2273
|
'eveli.batches.batchView.averageRunTime.ms': string;
|
|
2256
2274
|
'taskcard.style.COMPACT': string;
|
|
2257
2275
|
'taskcard.style.DEFAULT': string;
|
|
2258
2276
|
'taskcard.style.LARGE': string;
|
|
2277
|
+
'toolbar.tagomi': string;
|
|
2278
|
+
'tagomi.services.searchAll': string;
|
|
2279
|
+
'tagomi.main.services.all': string;
|
|
2280
|
+
'tagomi.templates.templateTab': string;
|
|
2281
|
+
'tagomi.services.title': string;
|
|
2282
|
+
'tagomi.services.desc': string;
|
|
2283
|
+
'tagomi.service.create': string;
|
|
2284
|
+
'tagomi.locales.title': string;
|
|
2285
|
+
'tagomi.locales.desc': string;
|
|
2286
|
+
'tagomi.locale.create': string;
|
|
2287
|
+
'tagomi.templates.title': string;
|
|
2288
|
+
'tagomi.templates.desc': string;
|
|
2289
|
+
'tagomi.template.create': string;
|
|
2290
|
+
'tagomi.service.options.edit': string;
|
|
2291
|
+
'tagomi.service.options.delete': string;
|
|
2292
|
+
'tagomi.service.options.templates.create': string;
|
|
2293
|
+
'tagomi.service.options.template.changeLocale': string;
|
|
2294
|
+
'tagomi.service.options.template.delete': string;
|
|
2295
|
+
'tagomi.service.create.dialog.title': string;
|
|
2296
|
+
'tagomi.service.create.dialog.serviceName': string;
|
|
2297
|
+
'tagomi.service.create.dialog.orchestratorName': string;
|
|
2298
|
+
'tagomi.service.edit.dialog.title': string;
|
|
2299
|
+
'tagomi.service.edit.dialog.name': string;
|
|
2300
|
+
'tagomi.service.edit.dialog.orchestratorName': string;
|
|
2301
|
+
'tagomi.template.edit.currentlyEditing.language1': string;
|
|
2302
|
+
'tagomi.template.edit.language1': string;
|
|
2303
|
+
'tagomi.template.change.dialog.title': string;
|
|
2304
|
+
'tagomi.template.change.dialog.desc': string;
|
|
2305
|
+
'tagomi.template.change.dialog.selectOrigin': string;
|
|
2306
|
+
'tagomi.template.change.dialog.selectTarget': string;
|
|
2307
|
+
'tagomi.template.change.dialog.noTemplates': string;
|
|
2308
|
+
'tagomi.template.change.dialog.noLocales': string;
|
|
2309
|
+
'tagomi.template.delete.dialog.title': string;
|
|
2310
|
+
'tagomi.template.delete.dialog.desc': string;
|
|
2311
|
+
'tagomi.template.delete.dialog.selectTemplate': string;
|
|
2312
|
+
'tagomi.template.editor.title': string;
|
|
2313
|
+
'tagomi.template.editor.serviceName': string;
|
|
2314
|
+
'tagomi.template.editor.localeLabel': string;
|
|
2315
|
+
'tagomi.button.delete.dialog.template': string;
|
|
2316
|
+
'tagomi.template.delete.dialog.noTemplates.helperText': string;
|
|
2317
|
+
'tagomi.template.create.dialog.title': string;
|
|
2318
|
+
'tagomi.template.create.dialog.desc': string;
|
|
2319
|
+
'tagomi.template.create.dialog.service.name': string;
|
|
2320
|
+
'tagomi.template.create.dialog.localeLabel.select': string;
|
|
2321
|
+
'tagomi.template.create.dialog.noLocales': string;
|
|
2322
|
+
'tagomi.service.delete.dialog.title': string;
|
|
2323
|
+
'tagomi.service.delete.dialog.desc': string;
|
|
2324
|
+
'tagomi.service.delete.dialog.button': string;
|
|
2325
|
+
'snack.template.savedMessage': string;
|
|
2326
|
+
'snack.service.deletedMessage': string;
|
|
2327
|
+
'tagomi.locale.select.alreadyDefined': string;
|
|
2328
|
+
'tagomi.locale.label.editLocaleValue': string;
|
|
2259
2329
|
};
|
|
2260
2330
|
fi: {
|
|
2261
2331
|
'document.title': string;
|
|
@@ -2409,6 +2479,7 @@ export declare const messages: {
|
|
|
2409
2479
|
'error.dataAccess': string;
|
|
2410
2480
|
'error.statusOpenError': string;
|
|
2411
2481
|
'error.workflowCreation': string;
|
|
2482
|
+
'error.invalidFormName': string;
|
|
2412
2483
|
'table.body.editRow.deleteMessage': string;
|
|
2413
2484
|
'workflowTable.title': string;
|
|
2414
2485
|
'workflowTableHeader.name': string;
|
|
@@ -2543,6 +2614,7 @@ export declare const messages: {
|
|
|
2543
2614
|
description: string;
|
|
2544
2615
|
name: string;
|
|
2545
2616
|
download: string;
|
|
2617
|
+
'download.all': string;
|
|
2546
2618
|
status: string;
|
|
2547
2619
|
created: string;
|
|
2548
2620
|
remove: string;
|
|
@@ -2558,6 +2630,21 @@ export declare const messages: {
|
|
|
2558
2630
|
'search.templates': string;
|
|
2559
2631
|
'search.flows': string;
|
|
2560
2632
|
'search.decisions': string;
|
|
2633
|
+
'adminUI.formConfiguration.label': string;
|
|
2634
|
+
'adminUI.formConfiguration.lastSaved': string;
|
|
2635
|
+
'adminUI.formConfiguration.latestTagDate': string;
|
|
2636
|
+
'adminUI.formConfiguration.latestTagName': string;
|
|
2637
|
+
'adminUI.formConfiguration.labels': string;
|
|
2638
|
+
'adminUI.dialog.formName': string;
|
|
2639
|
+
'adminUI.dialog.formLabel': string;
|
|
2640
|
+
'adminUI.dialog.emptyTitle': string;
|
|
2641
|
+
'adminUI.dialog.heading': string;
|
|
2642
|
+
'adminUI.dialog.deleteQuestion': string;
|
|
2643
|
+
'adminUI.table.tooltip.add': string;
|
|
2644
|
+
'adminUI.table.tooltip.edit': string;
|
|
2645
|
+
'adminUI.table.tooltip.copy': string;
|
|
2646
|
+
'adminUI.table.tooltip.delete': string;
|
|
2647
|
+
'adminUI.table.tooltip.download': string;
|
|
2561
2648
|
'activities.article.title': string;
|
|
2562
2649
|
'activities.article.desc': string;
|
|
2563
2650
|
'activities.locale.title': string;
|
|
@@ -2572,11 +2659,15 @@ export declare const messages: {
|
|
|
2572
2659
|
'migration.create': string;
|
|
2573
2660
|
'activities.migration.desc': string;
|
|
2574
2661
|
'activities.templates.title': string;
|
|
2662
|
+
'activities.templates.desc': string;
|
|
2575
2663
|
'activities.version.composer': string;
|
|
2576
2664
|
'activities.version.core': string;
|
|
2577
2665
|
'dialog.about.title': string;
|
|
2578
2666
|
'dialog.about.preamble': string;
|
|
2579
2667
|
'dialog.about.trademark': string;
|
|
2668
|
+
'heading.copyDialog': string;
|
|
2669
|
+
'heading.addDialog': string;
|
|
2670
|
+
'heading.deleteDialog': string;
|
|
2580
2671
|
templates: string;
|
|
2581
2672
|
'template.name': string;
|
|
2582
2673
|
'template.name.desc': string;
|
|
@@ -2741,6 +2832,7 @@ export declare const messages: {
|
|
|
2741
2832
|
'newpage.article.info': string;
|
|
2742
2833
|
'page.create': string;
|
|
2743
2834
|
'page.delete.dialog.title': string;
|
|
2835
|
+
'page.delete.description': string;
|
|
2744
2836
|
'pages.add': string;
|
|
2745
2837
|
'pages.change': string;
|
|
2746
2838
|
'pages.select.locale': string;
|
|
@@ -2793,6 +2885,8 @@ export declare const messages: {
|
|
|
2793
2885
|
'activities.debug.view': string;
|
|
2794
2886
|
'activities.assets.saveSuccess': string;
|
|
2795
2887
|
flows: string;
|
|
2888
|
+
'upload.json': string;
|
|
2889
|
+
'upload.csv': string;
|
|
2796
2890
|
'migrations.title': string;
|
|
2797
2891
|
'migrations.create': string;
|
|
2798
2892
|
'migrations.select': string;
|
|
@@ -3039,6 +3133,7 @@ export declare const messages: {
|
|
|
3039
3133
|
'eveli.table.clearFilters': string;
|
|
3040
3134
|
'eveli.table.drawer.buttons.savedFiltersButton': string;
|
|
3041
3135
|
'eveli.table.saveasdefault': string;
|
|
3136
|
+
'eveli.table.defaultSettings': string;
|
|
3042
3137
|
'eveli.table.saveas': string;
|
|
3043
3138
|
'eveli.error.general': string;
|
|
3044
3139
|
'eveli.error.notFound': string;
|
|
@@ -3104,14 +3199,12 @@ export declare const messages: {
|
|
|
3104
3199
|
'taskTable.button.archive.confirm': string;
|
|
3105
3200
|
'taskTable.confirmArchive.title': string;
|
|
3106
3201
|
'taskTable.title': string;
|
|
3107
|
-
'taskTable.colToolItem.LOW': string;
|
|
3108
|
-
'taskTable.colToolItem.NORMAL': string;
|
|
3109
|
-
'taskTable.colToolItem.HIGH': string;
|
|
3110
3202
|
'eveli.batches.batchView.averageRunTime': string;
|
|
3111
3203
|
'eveli.batches.batchView.averageRunTime.ms': string;
|
|
3112
3204
|
'taskcard.style.COMPACT': string;
|
|
3113
3205
|
'taskcard.style.DEFAULT': string;
|
|
3114
3206
|
'taskcard.style.LARGE': string;
|
|
3207
|
+
'tagomi.template.create.dialog.noLocales': string;
|
|
3115
3208
|
};
|
|
3116
3209
|
sv: {
|
|
3117
3210
|
'document.title': string;
|
|
@@ -3265,6 +3358,7 @@ export declare const messages: {
|
|
|
3265
3358
|
'error.dataAccess': string;
|
|
3266
3359
|
'error.statusOpenError': string;
|
|
3267
3360
|
'error.workflowCreation': string;
|
|
3361
|
+
'error.invalidFormName': string;
|
|
3268
3362
|
'table.body.editRow.deleteMessage': string;
|
|
3269
3363
|
'workflowTable.title': string;
|
|
3270
3364
|
'workflowTableHeader.name': string;
|
|
@@ -3399,6 +3493,7 @@ export declare const messages: {
|
|
|
3399
3493
|
description: string;
|
|
3400
3494
|
name: string;
|
|
3401
3495
|
download: string;
|
|
3496
|
+
'download.all': string;
|
|
3402
3497
|
status: string;
|
|
3403
3498
|
created: string;
|
|
3404
3499
|
remove: string;
|
|
@@ -3414,6 +3509,21 @@ export declare const messages: {
|
|
|
3414
3509
|
'search.templates': string;
|
|
3415
3510
|
'search.flows': string;
|
|
3416
3511
|
'search.decisions': string;
|
|
3512
|
+
'adminUI.formConfiguration.label': string;
|
|
3513
|
+
'adminUI.formConfiguration.lastSaved': string;
|
|
3514
|
+
'adminUI.formConfiguration.latestTagDate': string;
|
|
3515
|
+
'adminUI.formConfiguration.latestTagName': string;
|
|
3516
|
+
'adminUI.formConfiguration.labels': string;
|
|
3517
|
+
'adminUI.dialog.formName': string;
|
|
3518
|
+
'adminUI.dialog.formLabel': string;
|
|
3519
|
+
'adminUI.dialog.emptyTitle': string;
|
|
3520
|
+
'adminUI.dialog.heading': string;
|
|
3521
|
+
'adminUI.dialog.deleteQuestion': string;
|
|
3522
|
+
'adminUI.table.tooltip.add': string;
|
|
3523
|
+
'adminUI.table.tooltip.edit': string;
|
|
3524
|
+
'adminUI.table.tooltip.copy': string;
|
|
3525
|
+
'adminUI.table.tooltip.delete': string;
|
|
3526
|
+
'adminUI.table.tooltip.download': string;
|
|
3417
3527
|
'activities.article.title': string;
|
|
3418
3528
|
'activities.article.desc': string;
|
|
3419
3529
|
'activities.locale.title': string;
|
|
@@ -3434,6 +3544,9 @@ export declare const messages: {
|
|
|
3434
3544
|
'dialog.about.title': string;
|
|
3435
3545
|
'dialog.about.preamble': string;
|
|
3436
3546
|
'dialog.about.trademark': string;
|
|
3547
|
+
'heading.copyDialog': string;
|
|
3548
|
+
'heading.addDialog': string;
|
|
3549
|
+
'heading.deleteDialog': string;
|
|
3437
3550
|
templates: string;
|
|
3438
3551
|
'template.name': string;
|
|
3439
3552
|
'template.name.desc': string;
|
|
@@ -3651,6 +3764,8 @@ export declare const messages: {
|
|
|
3651
3764
|
'activities.debug.view': string;
|
|
3652
3765
|
'activities.assets.saveSuccess': string;
|
|
3653
3766
|
flows: string;
|
|
3767
|
+
'upload.json': string;
|
|
3768
|
+
'upload.csv': string;
|
|
3654
3769
|
'migrations.title': string;
|
|
3655
3770
|
'migrations.create': string;
|
|
3656
3771
|
'migrations.select': string;
|
|
@@ -3897,6 +4012,7 @@ export declare const messages: {
|
|
|
3897
4012
|
'eveli.table.clearFilters': string;
|
|
3898
4013
|
'eveli.table.drawer.buttons.savedFiltersButton': string;
|
|
3899
4014
|
'eveli.table.saveasdefault': string;
|
|
4015
|
+
'eveli.table.defaultSettings': string;
|
|
3900
4016
|
'eveli.table.saveas': string;
|
|
3901
4017
|
'eveli.error.general': string;
|
|
3902
4018
|
'eveli.error.notFound': string;
|
|
@@ -3962,9 +4078,6 @@ export declare const messages: {
|
|
|
3962
4078
|
'taskTable.button.archive.confirm': string;
|
|
3963
4079
|
'taskTable.confirmArchive.title': string;
|
|
3964
4080
|
'taskTable.title': string;
|
|
3965
|
-
'taskTable.colToolItem.LOW': string;
|
|
3966
|
-
'taskTable.colToolItem.NORMAL': string;
|
|
3967
|
-
'taskTable.colToolItem.HIGH': string;
|
|
3968
4081
|
'eveli.batches.batchView.averageRunTime': string;
|
|
3969
4082
|
'eveli.batches.batchView.averageRunTime.ms': string;
|
|
3970
4083
|
'taskcard.style.COMPACT': string;
|
|
@@ -3991,8 +4104,6 @@ export declare type OverrideProps<T> = {
|
|
|
3991
4104
|
children?: React.ReactNode | undefined;
|
|
3992
4105
|
};
|
|
3993
4106
|
|
|
3994
|
-
export declare const PriorityHex: Record<TaskApi_2.TaskPriority, string>;
|
|
3995
|
-
|
|
3996
4107
|
export declare namespace ProcExecutionApi {
|
|
3997
4108
|
}
|
|
3998
4109
|
|
|
@@ -4516,6 +4627,16 @@ declare class RootFileFetch_2 {
|
|
|
4516
4627
|
}, {}, {
|
|
4517
4628
|
getReleaseContent: (releaseId: StencilApi.ReleaseId) => Promise<{}>;
|
|
4518
4629
|
}>;
|
|
4630
|
+
} | {
|
|
4631
|
+
id: "worker/rest/api/assets/tagomi.GET";
|
|
4632
|
+
path: "worker/rest/api/assets/tagomi";
|
|
4633
|
+
method: "GET";
|
|
4634
|
+
params: {};
|
|
4635
|
+
hook: HookImpl<"worker/rest/api/assets/tagomi.GET", Hook<{}, {
|
|
4636
|
+
backend: TagomiApi.Backend;
|
|
4637
|
+
}>, "worker/rest/api/assets/tagomi", "GET", {}, {}, {
|
|
4638
|
+
backend: TagomiApi.Backend;
|
|
4639
|
+
}>;
|
|
4519
4640
|
} | {
|
|
4520
4641
|
id: "worker/rest/api/assets/workflows/$workflowId.PUT";
|
|
4521
4642
|
path: "worker/rest/api/assets/workflows/$workflowId";
|
|
@@ -5234,6 +5355,7 @@ declare interface SecuredLocaleAssetsRouteChildren {
|
|
|
5234
5355
|
SecuredLocaleAssetsFormsIndexRoute: typeof SecuredLocaleAssetsFormsIndexRoute;
|
|
5235
5356
|
SecuredLocaleAssetsMigrateIndexRoute: typeof SecuredLocaleAssetsMigrateIndexRoute;
|
|
5236
5357
|
SecuredLocaleAssetsStencilIndexRoute: typeof SecuredLocaleAssetsStencilIndexRoute;
|
|
5358
|
+
SecuredLocaleAssetsTagomiIndexRoute: typeof SecuredLocaleAssetsTagomiIndexRoute;
|
|
5237
5359
|
SecuredLocaleAssetsWrenchIndexRoute: typeof SecuredLocaleAssetsWrenchIndexRoute;
|
|
5238
5360
|
}
|
|
5239
5361
|
|
|
@@ -5243,6 +5365,8 @@ declare const SecuredLocaleAssetsRouteWithChildren: Route<Route<RootRoute<undefi
|
|
|
5243
5365
|
|
|
5244
5366
|
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
5367
|
|
|
5368
|
+
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>;
|
|
5369
|
+
|
|
5246
5370
|
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
5371
|
|
|
5248
5372
|
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 +5498,6 @@ export declare interface SpinnerProps {
|
|
|
5374
5498
|
customHeight?: string;
|
|
5375
5499
|
}
|
|
5376
5500
|
|
|
5377
|
-
export declare const StatusHex: Record<TaskApi_2.TaskStatus, string>;
|
|
5378
|
-
|
|
5379
5501
|
declare interface StyledInputFieldProps<T> {
|
|
5380
5502
|
label: string;
|
|
5381
5503
|
disabled?: boolean;
|
|
@@ -5460,256 +5582,7 @@ export declare interface TagTableRowProps {
|
|
|
5460
5582
|
onOpenForm?: (formId: string) => void;
|
|
5461
5583
|
}
|
|
5462
5584
|
|
|
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"];
|
|
5585
|
+
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
5586
|
|
|
5714
5587
|
export declare interface TenantConfig {
|
|
5715
5588
|
features: TenantFeature[];
|
|
@@ -6068,30 +5941,6 @@ declare module '@tanstack/react-router' {
|
|
|
6068
5941
|
}
|
|
6069
5942
|
|
|
6070
5943
|
|
|
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
5944
|
declare module '@tanstack/react-router' {
|
|
6096
5945
|
interface FileRoutesByPath {
|
|
6097
5946
|
'/': {
|
|
@@ -6234,6 +6083,13 @@ declare module '@tanstack/react-router' {
|
|
|
6234
6083
|
preLoaderRoute: typeof SecuredLocaleAssetsWrenchIndexRouteImport;
|
|
6235
6084
|
parentRoute: typeof SecuredLocaleAssetsRoute;
|
|
6236
6085
|
};
|
|
6086
|
+
'/secured/$locale/assets/tagomi/': {
|
|
6087
|
+
id: '/secured/$locale/assets/tagomi/';
|
|
6088
|
+
path: '/tagomi';
|
|
6089
|
+
fullPath: '/secured/$locale/assets/tagomi';
|
|
6090
|
+
preLoaderRoute: typeof SecuredLocaleAssetsTagomiIndexRouteImport;
|
|
6091
|
+
parentRoute: typeof SecuredLocaleAssetsRoute;
|
|
6092
|
+
};
|
|
6237
6093
|
'/secured/$locale/assets/stencil/': {
|
|
6238
6094
|
id: '/secured/$locale/assets/stencil/';
|
|
6239
6095
|
path: '/stencil';
|
|
@@ -6335,9 +6191,33 @@ declare module '@mui/material' {
|
|
|
6335
6191
|
}
|
|
6336
6192
|
|
|
6337
6193
|
|
|
6194
|
+
declare module '@mui/material/Button' {
|
|
6195
|
+
interface ButtonPropsVariantOverrides {
|
|
6196
|
+
explorerInactive: true;
|
|
6197
|
+
explorerActive: true;
|
|
6198
|
+
}
|
|
6199
|
+
}
|
|
6200
|
+
|
|
6201
|
+
|
|
6202
|
+
declare module 'react' {
|
|
6203
|
+
interface CSSProperties {
|
|
6204
|
+
'--tree-view-text-color'?: string;
|
|
6205
|
+
'--tree-view-color'?: string;
|
|
6206
|
+
'--tree-view-bg-color'?: string;
|
|
6207
|
+
'--tree-view-hover-color'?: string;
|
|
6208
|
+
}
|
|
6209
|
+
}
|
|
6210
|
+
|
|
6211
|
+
|
|
6212
|
+
declare module '@mui/material' {
|
|
6213
|
+
interface Components<Theme = unknown> extends EveliComponents<Theme> {
|
|
6214
|
+
}
|
|
6215
|
+
}
|
|
6216
|
+
|
|
6217
|
+
|
|
6338
6218
|
declare module "@tanstack/react-table" {
|
|
6339
6219
|
interface ColumnMeta<TData extends RowData, TValue> {
|
|
6340
6220
|
enableSelection?: boolean;
|
|
6341
|
-
|
|
6221
|
+
isDate?: boolean;
|
|
6342
6222
|
}
|
|
6343
6223
|
}
|