@dxs-ts/eveli-ide 2.0.30 → 2.0.32
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 +16 -34
- package/dist/index.d.ts +277 -0
- package/dist/index.js +21005 -20688
- package/dist/trace.json +2 -0
- package/package.json +2 -1
package/dist/gitlog.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"libraryName": "@dxs-ts/eveli-ide",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.32",
|
|
4
4
|
"generatedFiles": [
|
|
5
5
|
{
|
|
6
6
|
"name": "index.css",
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
},
|
|
9
9
|
{
|
|
10
10
|
"name": "index.d.ts",
|
|
11
|
-
"size":
|
|
11
|
+
"size": 286210
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
14
|
"name": "index.js",
|
|
15
|
-
"size":
|
|
15
|
+
"size": 3839471
|
|
16
16
|
}
|
|
17
17
|
],
|
|
18
18
|
"internalDependencies": [
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"@mui/x-tree-view": "7.29.1",
|
|
51
51
|
"@tanstack/react-query": "5.83.0",
|
|
52
52
|
"@tanstack/react-router": "1.130.2",
|
|
53
|
+
"@tanstack/react-store": "0.7.7",
|
|
53
54
|
"@tanstack/react-table": "8.21.3",
|
|
54
55
|
"@uiw/react-md-editor": "4.0.8",
|
|
55
56
|
"@xyflow/react": "12.8.2",
|
|
@@ -72,43 +73,24 @@
|
|
|
72
73
|
},
|
|
73
74
|
"moduleLogs": [
|
|
74
75
|
{
|
|
75
|
-
"hash": "
|
|
76
|
-
"date": "2025-10-
|
|
76
|
+
"hash": "aacc8b40a73f5d59b9eea9419a558961e6a2b6ea",
|
|
77
|
+
"date": "2025-10-03 18:19:32 +0300",
|
|
77
78
|
"author": "Vahur Krouverk",
|
|
78
|
-
"comment": "
|
|
79
|
-
"issueId": "",
|
|
79
|
+
"comment": "Issue #562 fix to avoid undefined props usage in dialob component rendering",
|
|
80
|
+
"issueId": "562",
|
|
80
81
|
"modules": [
|
|
81
|
-
"@dxs-ts/
|
|
82
|
-
]
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"hash": "c4407839b213f9993f3e10e72a2e653124b58242",
|
|
86
|
-
"date": "2025-10-01 12:13:51 +0300",
|
|
87
|
-
"author": "Olev Mutso",
|
|
88
|
-
"comment": "tagomi storage",
|
|
89
|
-
"issueId": "",
|
|
90
|
-
"modules": [
|
|
91
|
-
"backend"
|
|
82
|
+
"@dxs-ts/gamut-form"
|
|
92
83
|
]
|
|
93
84
|
},
|
|
94
85
|
{
|
|
95
|
-
"hash": "
|
|
96
|
-
"date": "2025-10-
|
|
97
|
-
"author": "
|
|
98
|
-
"comment": "
|
|
99
|
-
"issueId": "",
|
|
86
|
+
"hash": "b33d877abc4bc7ee1c119971653cf43760d01de5",
|
|
87
|
+
"date": "2025-10-03 16:59:39 +0300",
|
|
88
|
+
"author": "Kaur Terasmaa",
|
|
89
|
+
"comment": "#550 refactor(theme): centralize task status/priority colors and align composer v2 & table indicators",
|
|
90
|
+
"issueId": "550",
|
|
100
91
|
"modules": [
|
|
101
|
-
"
|
|
102
|
-
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"hash": "b7db0290726e64083fc3ca2026bfb9198fc91aba",
|
|
106
|
-
"date": "2025-10-01 10:55:04 +0300",
|
|
107
|
-
"author": "Olev Mutso",
|
|
108
|
-
"comment": "tagomi storage",
|
|
109
|
-
"issueId": "",
|
|
110
|
-
"modules": [
|
|
111
|
-
"backend"
|
|
92
|
+
"@dxs-ts/eveli-primitives",
|
|
93
|
+
"@dxs-ts/task-composer-v2"
|
|
112
94
|
]
|
|
113
95
|
}
|
|
114
96
|
]
|
package/dist/index.d.ts
CHANGED
|
@@ -44,6 +44,8 @@ import { TypographyVariantsOptions } from '@mui/material';
|
|
|
44
44
|
import { VersionEntity } from '../eveli-api/fetch/worker.rest.api.version.get';
|
|
45
45
|
import { WrenchRouteSearchParams } from '../wrench-routes/index.ts';
|
|
46
46
|
|
|
47
|
+
export declare const ApiColorHex: Record<TaskApi_2.Colors, string>;
|
|
48
|
+
|
|
47
49
|
export declare namespace BatchApi {
|
|
48
50
|
}
|
|
49
51
|
|
|
@@ -1245,6 +1247,8 @@ export declare interface FormTagOptions {
|
|
|
1245
1247
|
updateLabels: (label: any, action: LabelAction) => Promise<void>;
|
|
1246
1248
|
}
|
|
1247
1249
|
|
|
1250
|
+
export declare const getContrastText: (hex: string) => string;
|
|
1251
|
+
|
|
1248
1252
|
export declare const getHeaders: (config: DialobAdminConfig) => Record<string, string>;
|
|
1249
1253
|
|
|
1250
1254
|
export declare const handleRejection: (ex: any, setTechnicalError: any) => void;
|
|
@@ -2169,6 +2173,10 @@ export declare const messages: {
|
|
|
2169
2173
|
'eveli.table.drawer.title.filters': string;
|
|
2170
2174
|
'eveli.table.drawer.title.saved-filters': string;
|
|
2171
2175
|
'eveli.table.drawer.title.export-data': string;
|
|
2176
|
+
'eveli.table.clearFilters': string;
|
|
2177
|
+
'eveli.table.drawer.buttons.savedFiltersButton': string;
|
|
2178
|
+
'eveli.table.saveasdefault': string;
|
|
2179
|
+
'eveli.table.saveas': string;
|
|
2172
2180
|
'eveli.error.general': string;
|
|
2173
2181
|
'eveli.error.notFound': string;
|
|
2174
2182
|
'eveli.error.backToHome': string;
|
|
@@ -2225,6 +2233,12 @@ export declare const messages: {
|
|
|
2225
2233
|
'taskTable.col.header.due': string;
|
|
2226
2234
|
'taskTable.col.header.created': string;
|
|
2227
2235
|
'taskTable.col.header.archive': string;
|
|
2236
|
+
'taskTable.button.archive.confirm': string;
|
|
2237
|
+
'taskTable.confirmArchive.title': string;
|
|
2238
|
+
'taskTable.title': string;
|
|
2239
|
+
'taskTable.colToolItem.LOW': string;
|
|
2240
|
+
'taskTable.colToolItem.NORMAL': string;
|
|
2241
|
+
'taskTable.colToolItem.HIGH': string;
|
|
2228
2242
|
'eveli.batches.batchView.averageRunTime': string;
|
|
2229
2243
|
'eveli.batches.batchView.averageRunTime.ms': string;
|
|
2230
2244
|
'taskcard.style.COMPACT': string;
|
|
@@ -3001,6 +3015,10 @@ export declare const messages: {
|
|
|
3001
3015
|
'eveli.table.drawer.title.filters': string;
|
|
3002
3016
|
'eveli.table.drawer.title.saved-filters': string;
|
|
3003
3017
|
'eveli.table.drawer.title.export-data': string;
|
|
3018
|
+
'eveli.table.clearFilters': string;
|
|
3019
|
+
'eveli.table.drawer.buttons.savedFiltersButton': string;
|
|
3020
|
+
'eveli.table.saveasdefault': string;
|
|
3021
|
+
'eveli.table.saveas': string;
|
|
3004
3022
|
'eveli.error.general': string;
|
|
3005
3023
|
'eveli.error.notFound': string;
|
|
3006
3024
|
'eveli.error.backToHome': string;
|
|
@@ -3057,6 +3075,8 @@ export declare const messages: {
|
|
|
3057
3075
|
'taskTable.col.header.due': string;
|
|
3058
3076
|
'taskTable.col.header.created': string;
|
|
3059
3077
|
'taskTable.col.header.archive': string;
|
|
3078
|
+
'taskTable.button.archive.confirm': string;
|
|
3079
|
+
'taskTable.colToolItem.LOW': string;
|
|
3060
3080
|
'eveli.batches.batchView.averageRunTime': string;
|
|
3061
3081
|
'eveli.batches.batchView.averageRunTime.ms': string;
|
|
3062
3082
|
'taskcard.style.COMPACT': string;
|
|
@@ -3837,6 +3857,10 @@ export declare const messages: {
|
|
|
3837
3857
|
'eveli.table.drawer.title.filters': string;
|
|
3838
3858
|
'eveli.table.drawer.title.saved-filters': string;
|
|
3839
3859
|
'eveli.table.drawer.title.export-data': string;
|
|
3860
|
+
'eveli.table.clearFilters': string;
|
|
3861
|
+
'eveli.table.drawer.buttons.savedFiltersButton': string;
|
|
3862
|
+
'eveli.table.saveasdefault': string;
|
|
3863
|
+
'eveli.table.saveas': string;
|
|
3840
3864
|
'eveli.error.general': string;
|
|
3841
3865
|
'eveli.error.notFound': string;
|
|
3842
3866
|
'eveli.error.backToHome': string;
|
|
@@ -3919,6 +3943,8 @@ export declare type OverrideProps<T> = {
|
|
|
3919
3943
|
children?: React.ReactNode | undefined;
|
|
3920
3944
|
};
|
|
3921
3945
|
|
|
3946
|
+
export declare const PriorityHex: Record<TaskApi_2.TaskPriority, string>;
|
|
3947
|
+
|
|
3922
3948
|
export declare namespace ProcExecutionApi {
|
|
3923
3949
|
}
|
|
3924
3950
|
|
|
@@ -5300,6 +5326,8 @@ export declare interface SpinnerProps {
|
|
|
5300
5326
|
customHeight?: string;
|
|
5301
5327
|
}
|
|
5302
5328
|
|
|
5329
|
+
export declare const StatusHex: Record<TaskApi_2.TaskStatus, string>;
|
|
5330
|
+
|
|
5303
5331
|
declare interface StyledInputFieldProps<T> {
|
|
5304
5332
|
label: string;
|
|
5305
5333
|
disabled?: boolean;
|
|
@@ -5384,6 +5412,255 @@ export declare interface TagTableRowProps {
|
|
|
5384
5412
|
onOpenForm?: (formId: string) => void;
|
|
5385
5413
|
}
|
|
5386
5414
|
|
|
5415
|
+
declare namespace TaskApi_2 {
|
|
5416
|
+
enum Colors {
|
|
5417
|
+
RED = 1,
|
|
5418
|
+
BLUE = 2,
|
|
5419
|
+
GREEN = 3,
|
|
5420
|
+
YELLOW = 4,
|
|
5421
|
+
GREY = 5
|
|
5422
|
+
}
|
|
5423
|
+
type ColorMap = {
|
|
5424
|
+
[status: string]: Colors;
|
|
5425
|
+
};
|
|
5426
|
+
enum CommentSource {
|
|
5427
|
+
FRONTDESK = "FRONTDESK",
|
|
5428
|
+
PORTAL = "PORTAL"
|
|
5429
|
+
}
|
|
5430
|
+
enum TaskPriority {
|
|
5431
|
+
LOW = "LOW",
|
|
5432
|
+
NORMAL = "NORMAL",
|
|
5433
|
+
HIGH = "HIGH"
|
|
5434
|
+
}
|
|
5435
|
+
const task_priority_messages: {
|
|
5436
|
+
LOW: {
|
|
5437
|
+
id: string;
|
|
5438
|
+
defaultMessage: string;
|
|
5439
|
+
};
|
|
5440
|
+
NORMAL: {
|
|
5441
|
+
id: string;
|
|
5442
|
+
defaultMessage: string;
|
|
5443
|
+
};
|
|
5444
|
+
HIGH: {
|
|
5445
|
+
id: string;
|
|
5446
|
+
defaultMessage: string;
|
|
5447
|
+
};
|
|
5448
|
+
};
|
|
5449
|
+
const task_priority_colors: ColorMap;
|
|
5450
|
+
enum TaskStatus {
|
|
5451
|
+
NEW = "NEW",
|
|
5452
|
+
OPEN = "OPEN",
|
|
5453
|
+
COMPLETED = "COMPLETED",
|
|
5454
|
+
REJECTED = "REJECTED",
|
|
5455
|
+
TRANSFERRED = "TRANSFERRED",
|
|
5456
|
+
DELEGATED = "DELEGATED",
|
|
5457
|
+
WAITING = "WAITING"
|
|
5458
|
+
}
|
|
5459
|
+
const task_status_messages: {
|
|
5460
|
+
NEW: {
|
|
5461
|
+
id: string;
|
|
5462
|
+
defaultMessage: string;
|
|
5463
|
+
};
|
|
5464
|
+
OPEN: {
|
|
5465
|
+
id: string;
|
|
5466
|
+
defaultMessage: string;
|
|
5467
|
+
};
|
|
5468
|
+
COMPLETED: {
|
|
5469
|
+
id: string;
|
|
5470
|
+
defaultMessage: string;
|
|
5471
|
+
};
|
|
5472
|
+
REJECTED: {
|
|
5473
|
+
id: string;
|
|
5474
|
+
defaultMessage: string;
|
|
5475
|
+
};
|
|
5476
|
+
TRANSFERRED: {
|
|
5477
|
+
id: string;
|
|
5478
|
+
defaultMessage: string;
|
|
5479
|
+
};
|
|
5480
|
+
DELEGATED: {
|
|
5481
|
+
id: string;
|
|
5482
|
+
defaultMessage: string;
|
|
5483
|
+
};
|
|
5484
|
+
WAITING: {
|
|
5485
|
+
id: string;
|
|
5486
|
+
defaultMessage: string;
|
|
5487
|
+
};
|
|
5488
|
+
};
|
|
5489
|
+
const task_status_colors: ColorMap;
|
|
5490
|
+
}
|
|
5491
|
+
|
|
5492
|
+
declare namespace TaskApi_2 {
|
|
5493
|
+
interface Attachment {
|
|
5494
|
+
name: string;
|
|
5495
|
+
status: 'OK' | 'QUARANTINED' | 'UPLOADED';
|
|
5496
|
+
created: Date;
|
|
5497
|
+
updated: Date;
|
|
5498
|
+
size: number;
|
|
5499
|
+
}
|
|
5500
|
+
interface AttachmentUploadResponse {
|
|
5501
|
+
putRequestUrl: string;
|
|
5502
|
+
}
|
|
5503
|
+
interface Comment {
|
|
5504
|
+
id: number;
|
|
5505
|
+
userName: string;
|
|
5506
|
+
created: string;
|
|
5507
|
+
commentText: string;
|
|
5508
|
+
replyToId?: number | null;
|
|
5509
|
+
__parent?: Comment;
|
|
5510
|
+
__children?: Comment[];
|
|
5511
|
+
external?: boolean;
|
|
5512
|
+
source?: CommentSource;
|
|
5513
|
+
}
|
|
5514
|
+
type TaskLink = {
|
|
5515
|
+
id?: number;
|
|
5516
|
+
linkKey: string;
|
|
5517
|
+
linkAddress: string;
|
|
5518
|
+
};
|
|
5519
|
+
interface Task {
|
|
5520
|
+
id: string;
|
|
5521
|
+
taskRef?: string;
|
|
5522
|
+
version?: number;
|
|
5523
|
+
created?: Date;
|
|
5524
|
+
updated?: Date;
|
|
5525
|
+
completed?: Date;
|
|
5526
|
+
assignedUser?: string;
|
|
5527
|
+
assignedUserEmail?: string;
|
|
5528
|
+
updaterId?: string;
|
|
5529
|
+
dueDate?: Date;
|
|
5530
|
+
status?: TaskStatus;
|
|
5531
|
+
subject?: string;
|
|
5532
|
+
description?: string;
|
|
5533
|
+
priority?: TaskPriority;
|
|
5534
|
+
additionalInfo?: string;
|
|
5535
|
+
transferredId?: string | undefined;
|
|
5536
|
+
transferredProps?: object | undefined;
|
|
5537
|
+
priorityIntl?: string;
|
|
5538
|
+
statusIntl?: string;
|
|
5539
|
+
features?: TaskFeatureType[];
|
|
5540
|
+
keyWords?: string[];
|
|
5541
|
+
taskLinks?: TaskLink[];
|
|
5542
|
+
statusCode?: number;
|
|
5543
|
+
priorityCode?: number;
|
|
5544
|
+
clientIdentificator?: string | null;
|
|
5545
|
+
assignedRoles?: string[] | null;
|
|
5546
|
+
comments: Comment[];
|
|
5547
|
+
questionnaireId?: string | undefined;
|
|
5548
|
+
customerAssignments: TaskCustomerAssignment[];
|
|
5549
|
+
}
|
|
5550
|
+
interface TaskCustomerAssignment {
|
|
5551
|
+
id: string;
|
|
5552
|
+
serviceName: string;
|
|
5553
|
+
description: string;
|
|
5554
|
+
locale: string;
|
|
5555
|
+
externalId: string;
|
|
5556
|
+
created: Date;
|
|
5557
|
+
status: 'NEW' | 'OPEN' | 'COMPLETED' | 'CANCELLED';
|
|
5558
|
+
questionnaireId?: string;
|
|
5559
|
+
processId?: string;
|
|
5560
|
+
}
|
|
5561
|
+
type TaskFeatureType = 'feedback' | 'transfer' | 'anon' | 'assignable';
|
|
5562
|
+
interface TransferTaskCommand {
|
|
5563
|
+
transferTitle: string;
|
|
5564
|
+
}
|
|
5565
|
+
interface CreateTaskCustomerAssignmentCommand {
|
|
5566
|
+
serviceId: string;
|
|
5567
|
+
taskId: string;
|
|
5568
|
+
taskVersion?: string;
|
|
5569
|
+
}
|
|
5570
|
+
interface TaskDasboard {
|
|
5571
|
+
events: GrimMissionAttributeEvent[];
|
|
5572
|
+
}
|
|
5573
|
+
interface GrimMissionAttributeEvent {
|
|
5574
|
+
eventDate: string | undefined;
|
|
5575
|
+
eventCount: number;
|
|
5576
|
+
eventType: GrimMissionAttributeEventType;
|
|
5577
|
+
eventSubType: string | undefined;
|
|
5578
|
+
attributeValue: string;
|
|
5579
|
+
}
|
|
5580
|
+
interface User {
|
|
5581
|
+
userName: string;
|
|
5582
|
+
userEmail: string;
|
|
5583
|
+
}
|
|
5584
|
+
interface Role {
|
|
5585
|
+
id: string;
|
|
5586
|
+
groupName: string;
|
|
5587
|
+
}
|
|
5588
|
+
type TaskAuditEntryType = 'DIFF' | 'MQ' | 'FLOW' | 'VIEWER';
|
|
5589
|
+
interface TaskViewer {
|
|
5590
|
+
id: string;
|
|
5591
|
+
updatedAt: string;
|
|
5592
|
+
usedBy: string;
|
|
5593
|
+
}
|
|
5594
|
+
interface TaskCommit {
|
|
5595
|
+
commitId: string;
|
|
5596
|
+
createdAt: string;
|
|
5597
|
+
commitAuthor: string;
|
|
5598
|
+
commitMessage: string;
|
|
5599
|
+
}
|
|
5600
|
+
interface TaskAuditLog {
|
|
5601
|
+
id: string;
|
|
5602
|
+
flow: TaskAuditEntryProcess | undefined;
|
|
5603
|
+
mq: TaskAuditEntryMq | undefined;
|
|
5604
|
+
access: TaskAuditEntryAccess;
|
|
5605
|
+
}
|
|
5606
|
+
interface TaskAuditEntryProcess {
|
|
5607
|
+
processInstance: any;
|
|
5608
|
+
processFlowLog: object | undefined;
|
|
5609
|
+
processFormLog: object | undefined;
|
|
5610
|
+
type: 'FLOW';
|
|
5611
|
+
}
|
|
5612
|
+
interface TaskAuditEntryMq {
|
|
5613
|
+
deliveries: Record<string, TaskAuditQueueDelivery>;
|
|
5614
|
+
bindings: Record<string, TaskAuditQueueBinding>;
|
|
5615
|
+
queueMessages: Record<string, TaskAuditQueueMessage>;
|
|
5616
|
+
queues: Record<string, TaskAuditQueue>;
|
|
5617
|
+
queueConsumers: Record<string, any>;
|
|
5618
|
+
channels: Record<string, any>;
|
|
5619
|
+
type: 'MQ';
|
|
5620
|
+
}
|
|
5621
|
+
interface TaskAuditQueue {
|
|
5622
|
+
queueName: string;
|
|
5623
|
+
}
|
|
5624
|
+
interface TaskAuditQueueDelivery {
|
|
5625
|
+
queueId: string;
|
|
5626
|
+
}
|
|
5627
|
+
interface TaskAuditQueueBinding {
|
|
5628
|
+
id: string;
|
|
5629
|
+
}
|
|
5630
|
+
interface TaskAuditQueueMessage {
|
|
5631
|
+
id: string;
|
|
5632
|
+
}
|
|
5633
|
+
interface TaskAuditQueueMessage {
|
|
5634
|
+
routingKey: string;
|
|
5635
|
+
bodyType: string;
|
|
5636
|
+
bodyValue: object;
|
|
5637
|
+
createdAt: string;
|
|
5638
|
+
}
|
|
5639
|
+
interface TaskAuditEntryDiff {
|
|
5640
|
+
value: Record<string, any>;
|
|
5641
|
+
type: 'DIFF';
|
|
5642
|
+
}
|
|
5643
|
+
interface TaskAuditEntryAccess {
|
|
5644
|
+
value: TaskViewer[];
|
|
5645
|
+
commits: Record<string, TaskCommit>;
|
|
5646
|
+
commitTrees: Record<string, any>;
|
|
5647
|
+
type: 'VIEWER';
|
|
5648
|
+
}
|
|
5649
|
+
type GrimMissionAttributeEventType = ('STATUS' | 'PRIORITY' | 'STATUS_DATE' | 'OVERDUE' | 'ROLE' | 'QUESTIONNAIRE');
|
|
5650
|
+
interface TaskPdfRequest {
|
|
5651
|
+
taskId: string;
|
|
5652
|
+
fields: ('CUSTOMER_NAME' | 'CUSTOMER_SSN' | 'EXTERNAL_COMMENTS')[];
|
|
5653
|
+
}
|
|
5654
|
+
interface FormAssignment {
|
|
5655
|
+
id: string;
|
|
5656
|
+
locale: string;
|
|
5657
|
+
serviceName: string;
|
|
5658
|
+
formId: string;
|
|
5659
|
+
formName: string;
|
|
5660
|
+
formTag: string;
|
|
5661
|
+
}
|
|
5662
|
+
}
|
|
5663
|
+
|
|
5387
5664
|
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"];
|
|
5388
5665
|
|
|
5389
5666
|
export declare interface TenantConfig {
|