@dxs-ts/eveli-ide 2.0.52 → 2.0.53
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 +613 -17
- package/dist/index.d.ts +334 -10
- package/dist/index.js +39987 -39376
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -662,6 +662,7 @@ export declare const EveliFeatureMapping: {
|
|
|
662
662
|
SMART_TASK: (given: TenantFeature[]) => boolean;
|
|
663
663
|
SMART_TASK_AUDIT: (given: TenantFeature[]) => boolean;
|
|
664
664
|
BATCHES: (given: TenantFeature[]) => boolean;
|
|
665
|
+
AI_ASSISTANT: (given: TenantFeature[]) => boolean;
|
|
665
666
|
};
|
|
666
667
|
|
|
667
668
|
export declare type EveliFeatureType = keyof typeof EveliFeatureMapping;
|
|
@@ -945,6 +946,16 @@ export declare const EveliUserActivity: default_2.FC;
|
|
|
945
946
|
export declare const extractDate: (dateString: string | Date) => Date | null;
|
|
946
947
|
|
|
947
948
|
declare namespace FeedbackApi_2 {
|
|
949
|
+
enum Colors {
|
|
950
|
+
RED = 1,
|
|
951
|
+
GREEN = 2,
|
|
952
|
+
YELLOW = 3,
|
|
953
|
+
GREY = 4
|
|
954
|
+
}
|
|
955
|
+
type ColorMap = {
|
|
956
|
+
[status: string]: Colors;
|
|
957
|
+
};
|
|
958
|
+
const sentiment_colors: ColorMap;
|
|
948
959
|
}
|
|
949
960
|
|
|
950
961
|
declare namespace FeedbackApi_2 {
|
|
@@ -956,6 +967,7 @@ declare namespace FeedbackApi_2 {
|
|
|
956
967
|
type ReplyId = string;
|
|
957
968
|
type CategoryId = string;
|
|
958
969
|
type CustomerId = string;
|
|
970
|
+
type SentimentPolarity = 'positive' | 'negative' | 'neutral' | 'mixed' | 'unknown';
|
|
959
971
|
interface FeedbackTopic {
|
|
960
972
|
main: FeedbackTopicItem[];
|
|
961
973
|
sub: FeedbackTopicItem[];
|
|
@@ -1045,6 +1057,53 @@ declare namespace FeedbackApi_2 {
|
|
|
1045
1057
|
replyIdOrCategoryId: string;
|
|
1046
1058
|
rating: number | undefined;
|
|
1047
1059
|
}
|
|
1060
|
+
interface SentimentAndSubcategory {
|
|
1061
|
+
sentiment: Sentiment;
|
|
1062
|
+
subcategory: Subcategory;
|
|
1063
|
+
}
|
|
1064
|
+
interface Sentiment {
|
|
1065
|
+
id: string;
|
|
1066
|
+
sentiment: SentimentPolarity;
|
|
1067
|
+
confidence: number;
|
|
1068
|
+
sentences: SentimentSentence[];
|
|
1069
|
+
timestamp: string;
|
|
1070
|
+
modelVersion: string;
|
|
1071
|
+
modelId: string;
|
|
1072
|
+
}
|
|
1073
|
+
interface SentimentSentence {
|
|
1074
|
+
text: string;
|
|
1075
|
+
sentiment: SentimentPolarity;
|
|
1076
|
+
scores: Record<string, number>;
|
|
1077
|
+
}
|
|
1078
|
+
interface Subcategory {
|
|
1079
|
+
id: string;
|
|
1080
|
+
subcategory: string;
|
|
1081
|
+
confidence: number;
|
|
1082
|
+
matches: string[];
|
|
1083
|
+
scores: Record<string, number>;
|
|
1084
|
+
timestamp: string;
|
|
1085
|
+
modelVersion: string;
|
|
1086
|
+
modelId: string;
|
|
1087
|
+
}
|
|
1088
|
+
interface SimilarFeedback {
|
|
1089
|
+
id: string;
|
|
1090
|
+
timestamp: string;
|
|
1091
|
+
modelVersion: string;
|
|
1092
|
+
modelId: string;
|
|
1093
|
+
entries: ProcessedFeedbackItem[];
|
|
1094
|
+
}
|
|
1095
|
+
interface ProcessedFeedbackItem {
|
|
1096
|
+
id: string;
|
|
1097
|
+
language: string;
|
|
1098
|
+
text: string;
|
|
1099
|
+
similarities: Similarity[];
|
|
1100
|
+
}
|
|
1101
|
+
interface Similarity {
|
|
1102
|
+
id: string;
|
|
1103
|
+
similarityScore: number;
|
|
1104
|
+
text: string;
|
|
1105
|
+
language: string;
|
|
1106
|
+
}
|
|
1048
1107
|
}
|
|
1049
1108
|
|
|
1050
1109
|
declare interface FeedbackBackend {
|
|
@@ -1056,6 +1115,8 @@ declare interface FeedbackBackend {
|
|
|
1056
1115
|
getOneFeedback: (taskId: FeedbackApi_2.TaskId) => Promise<FeedbackApi_2.Feedback | undefined>;
|
|
1057
1116
|
isTaskFeedbackEnabled: (taskId: FeedbackApi_2.TaskId) => Promise<true | false>;
|
|
1058
1117
|
deleteOneFeedback: (taskId: FeedbackApi_2.TaskId) => Promise<FeedbackApi_2.Feedback>;
|
|
1118
|
+
getFeedbackSentimentAndSubcategory: (feedbackId: string) => Promise<FeedbackApi_2.SentimentAndSubcategory | undefined>;
|
|
1119
|
+
getSimilarFeedback: (feedbackId: string) => Promise<FeedbackApi_2.SimilarFeedback | undefined>;
|
|
1059
1120
|
}
|
|
1060
1121
|
|
|
1061
1122
|
export declare type FetchAuthFunction = typeof window.fetch;
|
|
@@ -1618,7 +1679,6 @@ export declare const messages: {
|
|
|
1618
1679
|
'task.role.assignedAllUsers': string;
|
|
1619
1680
|
'task.roles.none': string;
|
|
1620
1681
|
'task.assignees.none': string;
|
|
1621
|
-
'task.feedback.published': string;
|
|
1622
1682
|
'confirm.close.title': string;
|
|
1623
1683
|
'confirm.unsavedChanges': string;
|
|
1624
1684
|
'task.statistics.statusCount': string;
|
|
@@ -1679,6 +1739,9 @@ export declare const messages: {
|
|
|
1679
1739
|
'publicationsTable.addButton': string;
|
|
1680
1740
|
'publicationsTable.exportButton': string;
|
|
1681
1741
|
'publicationsTable.uploadButton': string;
|
|
1742
|
+
'publications.liveDate': string;
|
|
1743
|
+
'publications.upload': string;
|
|
1744
|
+
'publications.dialog.upload.description': string;
|
|
1682
1745
|
'publications.external': string;
|
|
1683
1746
|
'publications.changeStatus': string;
|
|
1684
1747
|
'publications.currentStatus': string;
|
|
@@ -1811,9 +1874,7 @@ export declare const messages: {
|
|
|
1811
1874
|
'services.anonmode.tooltip': string;
|
|
1812
1875
|
'services.flowName': string;
|
|
1813
1876
|
'services.formName': string;
|
|
1814
|
-
'services.formName.description': string;
|
|
1815
1877
|
'services.formTag': string;
|
|
1816
|
-
'services.formTag.description': string;
|
|
1817
1878
|
'services.startdate': string;
|
|
1818
1879
|
'services.startdate.description': string;
|
|
1819
1880
|
'services.enddate': string;
|
|
@@ -2265,6 +2326,9 @@ export declare const messages: {
|
|
|
2265
2326
|
'eveli.userProfile.userPermissions': string;
|
|
2266
2327
|
'eveli.userProfile.editDetails': string;
|
|
2267
2328
|
'eveli.userProfile.currentDetails': string;
|
|
2329
|
+
'eveli.userProfile.tenantConfig': string;
|
|
2330
|
+
'eveli.userProfile.tenantConfig.select': string;
|
|
2331
|
+
'eveli.userProfile.tenantConfig.select.title': string;
|
|
2268
2332
|
'eveli.userProfile.tenantConfig.select.LOGIN_BUTTON': string;
|
|
2269
2333
|
'eveli.userProfile.tenantConfig.select.external-deployment': string;
|
|
2270
2334
|
'eveli.userProfile.tenantConfig.select.external-deployment.desc': string;
|
|
@@ -2294,6 +2358,12 @@ export declare const messages: {
|
|
|
2294
2358
|
'eveli.userProfile.tenantConfig.select.smart_task_audit.desc': string;
|
|
2295
2359
|
'eveli.userProfile.tenantConfig.select.visual_accommodation': string;
|
|
2296
2360
|
'eveli.userProfile.tenantConfig.select.visual_accommodation.desc': string;
|
|
2361
|
+
'eveli.userProfile.tenantConfig.select.dialob_dashboard_smart': string;
|
|
2362
|
+
'eveli.userProfile.tenantConfig.select.dialob_dashboard_smart.desc': string;
|
|
2363
|
+
'eveli.userProfile.tenantConfig.select.tagomi': string;
|
|
2364
|
+
'eveli.userProfile.tenantConfig.select.tagomi.desc': string;
|
|
2365
|
+
'eveli.userProfile.tenantConfig.select.contract': string;
|
|
2366
|
+
'eveli.userProfile.tenantConfig.select.contract.desc': string;
|
|
2297
2367
|
'taskTable.col.header.priority': string;
|
|
2298
2368
|
'taskTable.col.header.subject': string;
|
|
2299
2369
|
'taskTable.col.header.addInfo': string;
|
|
@@ -2391,6 +2461,7 @@ export declare const messages: {
|
|
|
2391
2461
|
'task.feedback.none': string;
|
|
2392
2462
|
'task.feedback.title': string;
|
|
2393
2463
|
'task.feedback.detailedResponse': string;
|
|
2464
|
+
'task.feedback.published': string;
|
|
2394
2465
|
'task.feedback.notPublished': string;
|
|
2395
2466
|
'task.attachments': string;
|
|
2396
2467
|
'task.button.uploadFile': string;
|
|
@@ -2404,6 +2475,11 @@ export declare const messages: {
|
|
|
2404
2475
|
'task.notes.newNote': string;
|
|
2405
2476
|
'task.status.percComplete': string;
|
|
2406
2477
|
'task.priorityAndStatusEdit': string;
|
|
2478
|
+
'taskcard.button.viewForm': string;
|
|
2479
|
+
'task.keywords.internal': string;
|
|
2480
|
+
'task.keywords.customerCreated': string;
|
|
2481
|
+
'task.keywords.protected': string;
|
|
2482
|
+
'task.keywords.normal': string;
|
|
2407
2483
|
'toolbar.tagomi': string;
|
|
2408
2484
|
'tagomi.services.searchAll': string;
|
|
2409
2485
|
'tagomi.main.services.all': string;
|
|
@@ -2479,6 +2555,7 @@ export declare const messages: {
|
|
|
2479
2555
|
'contractTable.col.header.policyholder': string;
|
|
2480
2556
|
'contract.composer.contract.edit': string;
|
|
2481
2557
|
'contractcard.edit': string;
|
|
2558
|
+
'contractcard.product.title': string;
|
|
2482
2559
|
'contractcard.contractMain.title': string;
|
|
2483
2560
|
'contractcard.contractDetails.title': string;
|
|
2484
2561
|
'contractcard.contractParties.title': string;
|
|
@@ -2553,6 +2630,9 @@ export declare const messages: {
|
|
|
2553
2630
|
'contractcard.body.investmentPlans.invPlanAllocation.allocationName': string;
|
|
2554
2631
|
'contractcard.body.investmentPlans.invPlanAllocation.allocationPercentage': string;
|
|
2555
2632
|
'contractcard.body.investmentPlans.invPlanAllocation.allocationStatus': string;
|
|
2633
|
+
'contractcard.body.product.description.ruleCode': string;
|
|
2634
|
+
'contractcard.body.product.description.ruleText': string;
|
|
2635
|
+
'contractcard.product.description.view': string;
|
|
2556
2636
|
'contractcard.transitives.createdAt': string;
|
|
2557
2637
|
'contractcard.transitives.updatedAt': string;
|
|
2558
2638
|
'contractcard.transitives.updatedTreeAt': string;
|
|
@@ -2629,6 +2709,9 @@ export declare const messages: {
|
|
|
2629
2709
|
'task.transfer.create.files': string;
|
|
2630
2710
|
'task.transfer.button.transfer': string;
|
|
2631
2711
|
'task.transfer.button.retransfer': string;
|
|
2712
|
+
'task.assigneesAndRolesEdit': string;
|
|
2713
|
+
'task.assignee': string;
|
|
2714
|
+
'task.assignedRoles': string;
|
|
2632
2715
|
internalComments: string;
|
|
2633
2716
|
externalComments: string;
|
|
2634
2717
|
'comment.store': string;
|
|
@@ -2763,7 +2846,8 @@ export declare const messages: {
|
|
|
2763
2846
|
CustomerCreated: string;
|
|
2764
2847
|
Internal: string;
|
|
2765
2848
|
'task.role.assignedAllUsers': string;
|
|
2766
|
-
'task.
|
|
2849
|
+
'task.roles.none': string;
|
|
2850
|
+
'task.assignees.none': string;
|
|
2767
2851
|
'confirm.close.title': string;
|
|
2768
2852
|
'confirm.unsavedChanges': string;
|
|
2769
2853
|
'task.statistics.statusCount': string;
|
|
@@ -2824,6 +2908,9 @@ export declare const messages: {
|
|
|
2824
2908
|
'publicationsTable.addButton': string;
|
|
2825
2909
|
'publicationsTable.exportButton': string;
|
|
2826
2910
|
'publicationsTable.uploadButton': string;
|
|
2911
|
+
'publications.liveDate': string;
|
|
2912
|
+
'publications.upload': string;
|
|
2913
|
+
'publications.dialog.upload.description': string;
|
|
2827
2914
|
'publications.external': string;
|
|
2828
2915
|
'publications.changeStatus': string;
|
|
2829
2916
|
'publications.currentStatus': string;
|
|
@@ -2956,9 +3043,7 @@ export declare const messages: {
|
|
|
2956
3043
|
'services.anonmode.tooltip': string;
|
|
2957
3044
|
'services.flowName': string;
|
|
2958
3045
|
'services.formName': string;
|
|
2959
|
-
'services.formName.description': string;
|
|
2960
3046
|
'services.formTag': string;
|
|
2961
|
-
'services.formTag.description': string;
|
|
2962
3047
|
'services.startdate': string;
|
|
2963
3048
|
'services.startdate.description': string;
|
|
2964
3049
|
'services.enddate': string;
|
|
@@ -2994,6 +3079,7 @@ export declare const messages: {
|
|
|
2994
3079
|
'snack.migration.createdMessage': string;
|
|
2995
3080
|
'toolbar.save': string;
|
|
2996
3081
|
'toolbar.stencil': string;
|
|
3082
|
+
'toolbar.contracts': string;
|
|
2997
3083
|
'toolbar.wrench': string;
|
|
2998
3084
|
'toolbar.menu': string;
|
|
2999
3085
|
'toolbar.help': string;
|
|
@@ -3409,6 +3495,9 @@ export declare const messages: {
|
|
|
3409
3495
|
'eveli.userProfile.userPermissions': string;
|
|
3410
3496
|
'eveli.userProfile.editDetails': string;
|
|
3411
3497
|
'eveli.userProfile.currentDetails': string;
|
|
3498
|
+
'eveli.userProfile.tenantConfig': string;
|
|
3499
|
+
'eveli.userProfile.tenantConfig.select': string;
|
|
3500
|
+
'eveli.userProfile.tenantConfig.select.title': string;
|
|
3412
3501
|
'eveli.userProfile.tenantConfig.select.LOGIN_BUTTON': string;
|
|
3413
3502
|
'eveli.userProfile.tenantConfig.select.external-deployment': string;
|
|
3414
3503
|
'eveli.userProfile.tenantConfig.select.external-deployment.desc': string;
|
|
@@ -3438,6 +3527,12 @@ export declare const messages: {
|
|
|
3438
3527
|
'eveli.userProfile.tenantConfig.select.smart_task_audit.desc': string;
|
|
3439
3528
|
'eveli.userProfile.tenantConfig.select.visual_accommodation': string;
|
|
3440
3529
|
'eveli.userProfile.tenantConfig.select.visual_accommodation.desc': string;
|
|
3530
|
+
'eveli.userProfile.tenantConfig.select.dialob_dashboard_smart': string;
|
|
3531
|
+
'eveli.userProfile.tenantConfig.select.dialob_dashboard_smart.desc': string;
|
|
3532
|
+
'eveli.userProfile.tenantConfig.select.tagomi': string;
|
|
3533
|
+
'eveli.userProfile.tenantConfig.select.tagomi.desc': string;
|
|
3534
|
+
'eveli.userProfile.tenantConfig.select.contract': string;
|
|
3535
|
+
'eveli.userProfile.tenantConfig.select.contract.desc': string;
|
|
3441
3536
|
'taskTable.col.header.priority': string;
|
|
3442
3537
|
'taskTable.col.header.subject': string;
|
|
3443
3538
|
'taskTable.col.header.addInfo': string;
|
|
@@ -3461,7 +3556,99 @@ export declare const messages: {
|
|
|
3461
3556
|
'taskcard.style.COMPACT': string;
|
|
3462
3557
|
'taskcard.style.DEFAULT': string;
|
|
3463
3558
|
'taskcard.style.LARGE': string;
|
|
3559
|
+
'taskcard.title.rolesAndAssignees': string;
|
|
3560
|
+
'taskcard.title.customerMessages': string;
|
|
3561
|
+
'taskcard.title.notes': string;
|
|
3562
|
+
'taskcard.title.statusAndPriority': string;
|
|
3563
|
+
'taskcard.title.formReview': string;
|
|
3564
|
+
'taskcard.title.history': string;
|
|
3565
|
+
'taskcard.title.taskRefId': string;
|
|
3566
|
+
'taskcard.title.assignable': string;
|
|
3567
|
+
'taskcard.title.customerFeedback': string;
|
|
3568
|
+
'taskcard.title.files': string;
|
|
3569
|
+
'taskcard.body.roles': string;
|
|
3570
|
+
'taskcard.body.assignee': string;
|
|
3571
|
+
'taskcard.body.lastEditedBy': string;
|
|
3572
|
+
'taskcard.body.lastEditedDate': string;
|
|
3573
|
+
'taskcard.body.dueDate': string;
|
|
3574
|
+
'taskcard.body.customerName': string;
|
|
3575
|
+
'taskcard.body.subject': string;
|
|
3576
|
+
'taskcard.body.additionalInfo': string;
|
|
3577
|
+
'taskcard.body.form.formName': string;
|
|
3578
|
+
'taskcard.body.form.submittedDate': string;
|
|
3579
|
+
'taskcard.body.form.canPublishFeedback': string;
|
|
3580
|
+
'taskcard.body.form.representative': string;
|
|
3581
|
+
'taskcard.body.task.status': string;
|
|
3582
|
+
'taskcard.body.task.priority': string;
|
|
3583
|
+
'taskcard.title.audit.viewers': string;
|
|
3584
|
+
'taskcard.title.audit.commits': string;
|
|
3585
|
+
'taskcard.title.audit.queues': string;
|
|
3586
|
+
'taskcard.title.audit.processes': string;
|
|
3587
|
+
'taskcard.title.audit.flow': string;
|
|
3588
|
+
'taskcard.title.audit.queueMessages': string;
|
|
3589
|
+
'taskcard.title.audit.queueBindings': string;
|
|
3590
|
+
'taskcard.title.audit.queueDeliveries': string;
|
|
3591
|
+
'task.audit.commits.commitBody.title': string;
|
|
3592
|
+
'task.audit.commits.author': string;
|
|
3593
|
+
'task.audit.commits.message': string;
|
|
3594
|
+
'task.audit.commits.commitBody': string;
|
|
3595
|
+
'task.audit.commits.createdAt': string;
|
|
3596
|
+
'task.audit.process.type': string;
|
|
3597
|
+
'task.audit.process.value': string;
|
|
3598
|
+
'task.audit.process.createdAt': string;
|
|
3599
|
+
'task.audit.processes.None': string;
|
|
3600
|
+
'task.audit.queue.name': string;
|
|
3601
|
+
'task.audit.queue.createdBy': string;
|
|
3602
|
+
'task.audit.queue.comment': string;
|
|
3603
|
+
'task.audit.queue.createdAt': string;
|
|
3604
|
+
'task.audit.queueBindings.createdBy': string;
|
|
3605
|
+
'task.audit.queueBindings.status': string;
|
|
3606
|
+
'task.audit.queueBindings.comment': string;
|
|
3607
|
+
'task.audit.queueBindings.createdAt': string;
|
|
3608
|
+
'task.audit.queueDeliveries.queueName': string;
|
|
3609
|
+
'task.audit.queueBindings.attempts': string;
|
|
3610
|
+
'task.audit.queueMessages.routingKey': string;
|
|
3611
|
+
'task.audit.queueMessages.bodyType': string;
|
|
3612
|
+
'task.audit.queueMessages.bodyValue': string;
|
|
3613
|
+
'task.audit.queueMessages.createdAt': string;
|
|
3614
|
+
'task.audit.viewers.usedBy': string;
|
|
3615
|
+
'task.audit.viewers.updatedAt': string;
|
|
3616
|
+
'task.composer.error.subject.required': string;
|
|
3617
|
+
'task.composer.create': string;
|
|
3618
|
+
'task.composer.dueDate': string;
|
|
3619
|
+
'task.composer.clientName': string;
|
|
3620
|
+
'task.composer.subject': string;
|
|
3621
|
+
'task.composer.field.required': string;
|
|
3622
|
+
'task.composer.description': string;
|
|
3623
|
+
'task.composer.additionalInfo': string;
|
|
3624
|
+
'task.composer.roles': string;
|
|
3625
|
+
'task.composer.assignee': string;
|
|
3626
|
+
'task.composer.priority': string;
|
|
3627
|
+
'task.composer.status': string;
|
|
3628
|
+
'task.composer.task.edit': string;
|
|
3629
|
+
'task.customerFeedback': string;
|
|
3464
3630
|
'task.feedback.none': string;
|
|
3631
|
+
'task.feedback.title': string;
|
|
3632
|
+
'task.feedback.detailedResponse': string;
|
|
3633
|
+
'task.feedback.published': string;
|
|
3634
|
+
'task.feedback.notPublished': string;
|
|
3635
|
+
'task.attachments': string;
|
|
3636
|
+
'task.button.uploadFile': string;
|
|
3637
|
+
'task.file.fileName': string;
|
|
3638
|
+
'task.file.uploadDate': string;
|
|
3639
|
+
'task.files.none': string;
|
|
3640
|
+
'task.customerMessages.user.message.wroteOn': string;
|
|
3641
|
+
'task.notes.edit': string;
|
|
3642
|
+
'task.notes.history': string;
|
|
3643
|
+
'task.notes.none': string;
|
|
3644
|
+
'task.notes.newNote': string;
|
|
3645
|
+
'task.status.percComplete': string;
|
|
3646
|
+
'task.priorityAndStatusEdit': string;
|
|
3647
|
+
'taskcard.button.viewForm': string;
|
|
3648
|
+
'task.keywords.internal': string;
|
|
3649
|
+
'task.keywords.customerCreated': string;
|
|
3650
|
+
'task.keywords.protected': string;
|
|
3651
|
+
'task.keywords.normal': string;
|
|
3465
3652
|
'toolbar.tagomi': string;
|
|
3466
3653
|
'tagomi.services.searchAll': string;
|
|
3467
3654
|
'tagomi.main.services.all': string;
|
|
@@ -3687,6 +3874,9 @@ export declare const messages: {
|
|
|
3687
3874
|
'task.transfer.create.files': string;
|
|
3688
3875
|
'task.transfer.button.transfer': string;
|
|
3689
3876
|
'task.transfer.button.retransfer': string;
|
|
3877
|
+
'task.assigneesAndRolesEdit': string;
|
|
3878
|
+
'task.assignee': string;
|
|
3879
|
+
'task.assignedRoles': string;
|
|
3690
3880
|
internalComments: string;
|
|
3691
3881
|
externalComments: string;
|
|
3692
3882
|
'comment.store': string;
|
|
@@ -3821,7 +4011,8 @@ export declare const messages: {
|
|
|
3821
4011
|
CustomerCreated: string;
|
|
3822
4012
|
Internal: string;
|
|
3823
4013
|
'task.role.assignedAllUsers': string;
|
|
3824
|
-
'task.
|
|
4014
|
+
'task.roles.none': string;
|
|
4015
|
+
'task.assignees.none': string;
|
|
3825
4016
|
'confirm.close.title': string;
|
|
3826
4017
|
'confirm.unsavedChanges': string;
|
|
3827
4018
|
'task.statistics.statusCount': string;
|
|
@@ -3882,6 +4073,9 @@ export declare const messages: {
|
|
|
3882
4073
|
'publicationsTable.addButton': string;
|
|
3883
4074
|
'publicationsTable.exportButton': string;
|
|
3884
4075
|
'publicationsTable.uploadButton': string;
|
|
4076
|
+
'publications.liveDate': string;
|
|
4077
|
+
'publications.upload': string;
|
|
4078
|
+
'publications.dialog.upload.description': string;
|
|
3885
4079
|
'publications.external': string;
|
|
3886
4080
|
'publications.changeStatus': string;
|
|
3887
4081
|
'publications.currentStatus': string;
|
|
@@ -4014,9 +4208,7 @@ export declare const messages: {
|
|
|
4014
4208
|
'services.anonmode.tooltip': string;
|
|
4015
4209
|
'services.flowName': string;
|
|
4016
4210
|
'services.formName': string;
|
|
4017
|
-
'services.formName.description': string;
|
|
4018
4211
|
'services.formTag': string;
|
|
4019
|
-
'services.formTag.description': string;
|
|
4020
4212
|
'services.startdate': string;
|
|
4021
4213
|
'services.startdate.description': string;
|
|
4022
4214
|
'services.enddate': string;
|
|
@@ -4052,6 +4244,7 @@ export declare const messages: {
|
|
|
4052
4244
|
'snack.migration.createdMessage': string;
|
|
4053
4245
|
'toolbar.save': string;
|
|
4054
4246
|
'toolbar.stencil': string;
|
|
4247
|
+
'toolbar.contracts': string;
|
|
4055
4248
|
'toolbar.wrench': string;
|
|
4056
4249
|
'toolbar.menu': string;
|
|
4057
4250
|
'toolbar.help': string;
|
|
@@ -4467,6 +4660,9 @@ export declare const messages: {
|
|
|
4467
4660
|
'eveli.userProfile.userPermissions': string;
|
|
4468
4661
|
'eveli.userProfile.editDetails': string;
|
|
4469
4662
|
'eveli.userProfile.currentDetails': string;
|
|
4663
|
+
'eveli.userProfile.tenantConfig': string;
|
|
4664
|
+
'eveli.userProfile.tenantConfig.select': string;
|
|
4665
|
+
'eveli.userProfile.tenantConfig.select.title': string;
|
|
4470
4666
|
'eveli.userProfile.tenantConfig.select.LOGIN_BUTTON': string;
|
|
4471
4667
|
'eveli.userProfile.tenantConfig.select.external-deployment': string;
|
|
4472
4668
|
'eveli.userProfile.tenantConfig.select.external-deployment.desc': string;
|
|
@@ -4496,6 +4692,12 @@ export declare const messages: {
|
|
|
4496
4692
|
'eveli.userProfile.tenantConfig.select.smart_task_audit.desc': string;
|
|
4497
4693
|
'eveli.userProfile.tenantConfig.select.visual_accommodation': string;
|
|
4498
4694
|
'eveli.userProfile.tenantConfig.select.visual_accommodation.desc': string;
|
|
4695
|
+
'eveli.userProfile.tenantConfig.select.dialob_dashboard_smart': string;
|
|
4696
|
+
'eveli.userProfile.tenantConfig.select.dialob_dashboard_smart.desc': string;
|
|
4697
|
+
'eveli.userProfile.tenantConfig.select.tagomi': string;
|
|
4698
|
+
'eveli.userProfile.tenantConfig.select.tagomi.desc': string;
|
|
4699
|
+
'eveli.userProfile.tenantConfig.select.contract': string;
|
|
4700
|
+
'eveli.userProfile.tenantConfig.select.contract.desc': string;
|
|
4499
4701
|
'taskTable.col.header.priority': string;
|
|
4500
4702
|
'taskTable.col.header.subject': string;
|
|
4501
4703
|
'taskTable.col.header.addInfo': string;
|
|
@@ -4519,7 +4721,99 @@ export declare const messages: {
|
|
|
4519
4721
|
'taskcard.style.COMPACT': string;
|
|
4520
4722
|
'taskcard.style.DEFAULT': string;
|
|
4521
4723
|
'taskcard.style.LARGE': string;
|
|
4724
|
+
'taskcard.title.rolesAndAssignees': string;
|
|
4725
|
+
'taskcard.title.customerMessages': string;
|
|
4726
|
+
'taskcard.title.notes': string;
|
|
4727
|
+
'taskcard.title.statusAndPriority': string;
|
|
4728
|
+
'taskcard.title.formReview': string;
|
|
4729
|
+
'taskcard.title.history': string;
|
|
4730
|
+
'taskcard.title.taskRefId': string;
|
|
4731
|
+
'taskcard.title.assignable': string;
|
|
4732
|
+
'taskcard.title.customerFeedback': string;
|
|
4733
|
+
'taskcard.title.files': string;
|
|
4734
|
+
'taskcard.body.roles': string;
|
|
4735
|
+
'taskcard.body.assignee': string;
|
|
4736
|
+
'taskcard.body.lastEditedBy': string;
|
|
4737
|
+
'taskcard.body.lastEditedDate': string;
|
|
4738
|
+
'taskcard.body.dueDate': string;
|
|
4739
|
+
'taskcard.body.customerName': string;
|
|
4740
|
+
'taskcard.body.subject': string;
|
|
4741
|
+
'taskcard.body.additionalInfo': string;
|
|
4742
|
+
'taskcard.body.form.formName': string;
|
|
4743
|
+
'taskcard.body.form.submittedDate': string;
|
|
4744
|
+
'taskcard.body.form.canPublishFeedback': string;
|
|
4745
|
+
'taskcard.body.form.representative': string;
|
|
4746
|
+
'taskcard.body.task.status': string;
|
|
4747
|
+
'taskcard.body.task.priority': string;
|
|
4748
|
+
'taskcard.title.audit.viewers': string;
|
|
4749
|
+
'taskcard.title.audit.commits': string;
|
|
4750
|
+
'taskcard.title.audit.queues': string;
|
|
4751
|
+
'taskcard.title.audit.processes': string;
|
|
4752
|
+
'taskcard.title.audit.flow': string;
|
|
4753
|
+
'taskcard.title.audit.queueMessages': string;
|
|
4754
|
+
'taskcard.title.audit.queueBindings': string;
|
|
4755
|
+
'taskcard.title.audit.queueDeliveries': string;
|
|
4756
|
+
'task.audit.commits.commitBody.title': string;
|
|
4757
|
+
'task.audit.commits.author': string;
|
|
4758
|
+
'task.audit.commits.message': string;
|
|
4759
|
+
'task.audit.commits.commitBody': string;
|
|
4760
|
+
'task.audit.commits.createdAt': string;
|
|
4761
|
+
'task.audit.process.type': string;
|
|
4762
|
+
'task.audit.process.value': string;
|
|
4763
|
+
'task.audit.process.createdAt': string;
|
|
4764
|
+
'task.audit.processes.None': string;
|
|
4765
|
+
'task.audit.queue.name': string;
|
|
4766
|
+
'task.audit.queue.createdBy': string;
|
|
4767
|
+
'task.audit.queue.comment': string;
|
|
4768
|
+
'task.audit.queue.createdAt': string;
|
|
4769
|
+
'task.audit.queueBindings.createdBy': string;
|
|
4770
|
+
'task.audit.queueBindings.status': string;
|
|
4771
|
+
'task.audit.queueBindings.comment': string;
|
|
4772
|
+
'task.audit.queueBindings.createdAt': string;
|
|
4773
|
+
'task.audit.queueDeliveries.queueName': string;
|
|
4774
|
+
'task.audit.queueBindings.attempts': string;
|
|
4775
|
+
'task.audit.queueMessages.routingKey': string;
|
|
4776
|
+
'task.audit.queueMessages.bodyType': string;
|
|
4777
|
+
'task.audit.queueMessages.bodyValue': string;
|
|
4778
|
+
'task.audit.queueMessages.createdAt': string;
|
|
4779
|
+
'task.audit.viewers.usedBy': string;
|
|
4780
|
+
'task.audit.viewers.updatedAt': string;
|
|
4781
|
+
'task.composer.error.subject.required': string;
|
|
4782
|
+
'task.composer.create': string;
|
|
4783
|
+
'task.composer.dueDate': string;
|
|
4784
|
+
'task.composer.clientName': string;
|
|
4785
|
+
'task.composer.subject': string;
|
|
4786
|
+
'task.composer.field.required': string;
|
|
4787
|
+
'task.composer.description': string;
|
|
4788
|
+
'task.composer.additionalInfo': string;
|
|
4789
|
+
'task.composer.roles': string;
|
|
4790
|
+
'task.composer.assignee': string;
|
|
4791
|
+
'task.composer.priority': string;
|
|
4792
|
+
'task.composer.status': string;
|
|
4793
|
+
'task.composer.task.edit': string;
|
|
4794
|
+
'task.customerFeedback': string;
|
|
4522
4795
|
'task.feedback.none': string;
|
|
4796
|
+
'task.feedback.title': string;
|
|
4797
|
+
'task.feedback.detailedResponse': string;
|
|
4798
|
+
'task.feedback.published': string;
|
|
4799
|
+
'task.feedback.notPublished': string;
|
|
4800
|
+
'task.attachments': string;
|
|
4801
|
+
'task.button.uploadFile': string;
|
|
4802
|
+
'task.file.fileName': string;
|
|
4803
|
+
'task.file.uploadDate': string;
|
|
4804
|
+
'task.files.none': string;
|
|
4805
|
+
'task.customerMessages.user.message.wroteOn': string;
|
|
4806
|
+
'task.notes.edit': string;
|
|
4807
|
+
'task.notes.history': string;
|
|
4808
|
+
'task.notes.none': string;
|
|
4809
|
+
'task.notes.newNote': string;
|
|
4810
|
+
'task.status.percComplete': string;
|
|
4811
|
+
'task.priorityAndStatusEdit': string;
|
|
4812
|
+
'taskcard.button.viewForm': string;
|
|
4813
|
+
'task.keywords.internal': string;
|
|
4814
|
+
'task.keywords.customerCreated': string;
|
|
4815
|
+
'task.keywords.protected': string;
|
|
4816
|
+
'task.keywords.normal': string;
|
|
4523
4817
|
'toolbar.tagomi': string;
|
|
4524
4818
|
'tagomi.services.searchAll': string;
|
|
4525
4819
|
'tagomi.main.services.all': string;
|
|
@@ -5519,6 +5813,34 @@ declare class RootFileFetch_2 {
|
|
|
5519
5813
|
modifyOneFeedback: (taskId: FeedbackApi.TaskId, body: FeedbackApi.ModifyOneFeedbackCommand) => Promise<FeedbackApi.Feedback>;
|
|
5520
5814
|
rankOneFeedback: (taskId: FeedbackApi.TaskId, body: FeedbackApi.UpsertFeedbackRankingCommand) => Promise<FeedbackApi.Feedback>;
|
|
5521
5815
|
}>;
|
|
5816
|
+
} | {
|
|
5817
|
+
id: "worker/rest/api/feedback/$feedbackId/sentiment-and-subcategory.GET";
|
|
5818
|
+
path: "worker/rest/api/feedback/$feedbackId/sentiment-and-subcategory";
|
|
5819
|
+
method: "GET";
|
|
5820
|
+
params: {
|
|
5821
|
+
feedbackId: string;
|
|
5822
|
+
};
|
|
5823
|
+
hook: HookImpl<"worker/rest/api/feedback/$feedbackId/sentiment-and-subcategory.GET", Hook<{}, {
|
|
5824
|
+
getFeedbackSentimentAndSubcategory: (feedbackId: string) => Promise<FeedbackApi.SentimentAndSubcategory | undefined>;
|
|
5825
|
+
}>, "worker/rest/api/feedback/$feedbackId/sentiment-and-subcategory", "GET", {
|
|
5826
|
+
feedbackId: string;
|
|
5827
|
+
}, {}, {
|
|
5828
|
+
getFeedbackSentimentAndSubcategory: (feedbackId: string) => Promise<FeedbackApi.SentimentAndSubcategory | undefined>;
|
|
5829
|
+
}>;
|
|
5830
|
+
} | {
|
|
5831
|
+
id: "worker/rest/api/feedback/$feedbackId/similar.GET";
|
|
5832
|
+
path: "worker/rest/api/feedback/$feedbackId/similar";
|
|
5833
|
+
method: "GET";
|
|
5834
|
+
params: {
|
|
5835
|
+
feedbackId: string;
|
|
5836
|
+
};
|
|
5837
|
+
hook: HookImpl<"worker/rest/api/feedback/$feedbackId/similar.GET", Hook<{}, {
|
|
5838
|
+
getSimilarFeedback: (feedbackId: string) => Promise<FeedbackApi.SimilarFeedback | undefined>;
|
|
5839
|
+
}>, "worker/rest/api/feedback/$feedbackId/similar", "GET", {
|
|
5840
|
+
feedbackId: string;
|
|
5841
|
+
}, {}, {
|
|
5842
|
+
getSimilarFeedback: (feedbackId: string) => Promise<FeedbackApi.SimilarFeedback | undefined>;
|
|
5843
|
+
}>;
|
|
5522
5844
|
} | {
|
|
5523
5845
|
id: "worker/rest/api/feedback/$feedbackId/templates.GET";
|
|
5524
5846
|
path: "worker/rest/api/feedback/$feedbackId/templates";
|
|
@@ -5802,10 +6124,12 @@ declare class RootFileFetch_2 {
|
|
|
5802
6124
|
};
|
|
5803
6125
|
hook: HookImpl<"worker/rest/api/tasks/$taskId/review-actions.GET", Hook<{}, {
|
|
5804
6126
|
fetchReviewActionsGet: (sessionId: string) => Promise<Response>;
|
|
6127
|
+
fetchReviewActionsPost: (sessionId: string, actions: any[], rev: number) => Promise<Response>;
|
|
5805
6128
|
}>, "worker/rest/api/tasks/$taskId/review-actions", "GET", {
|
|
5806
6129
|
taskId: string;
|
|
5807
6130
|
}, {}, {
|
|
5808
6131
|
fetchReviewActionsGet: (sessionId: string) => Promise<Response>;
|
|
6132
|
+
fetchReviewActionsPost: (sessionId: string, actions: any[], rev: number) => Promise<Response>;
|
|
5809
6133
|
}>;
|
|
5810
6134
|
} | {
|
|
5811
6135
|
id: "worker/rest/api/tasks/$taskId/reviews.GET";
|
|
@@ -6198,7 +6522,7 @@ export declare interface TagTableRowProps {
|
|
|
6198
6522
|
onOpenForm?: (formId: string) => void;
|
|
6199
6523
|
}
|
|
6200
6524
|
|
|
6201
|
-
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", "contract"];
|
|
6525
|
+
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", "contract", "ai-assistant"];
|
|
6202
6526
|
|
|
6203
6527
|
export declare interface TenantConfig {
|
|
6204
6528
|
features: TenantFeature[];
|