@dxs-ts/eveli-ide 2.0.51 → 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 +627 -7
- package/dist/index.d.ts +349 -11
- package/dist/index.js +40020 -39400
- 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;
|
|
@@ -822,6 +823,7 @@ declare const EveliPermissionMapping: {
|
|
|
822
823
|
DELETE_TASK: (input: IamApi.UserPermission) => boolean;
|
|
823
824
|
DELETE_STENCIL_ASSET: (input: IamApi.UserPermission) => boolean;
|
|
824
825
|
TASK_REOPEN: (input: IamApi.UserPermission) => boolean;
|
|
826
|
+
TASK_RETRANSFER: (input: IamApi.UserPermission) => boolean;
|
|
825
827
|
NAV_TO_TABLES_V2: (input: IamApi.UserPermission) => boolean;
|
|
826
828
|
};
|
|
827
829
|
|
|
@@ -944,6 +946,16 @@ export declare const EveliUserActivity: default_2.FC;
|
|
|
944
946
|
export declare const extractDate: (dateString: string | Date) => Date | null;
|
|
945
947
|
|
|
946
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;
|
|
947
959
|
}
|
|
948
960
|
|
|
949
961
|
declare namespace FeedbackApi_2 {
|
|
@@ -955,6 +967,7 @@ declare namespace FeedbackApi_2 {
|
|
|
955
967
|
type ReplyId = string;
|
|
956
968
|
type CategoryId = string;
|
|
957
969
|
type CustomerId = string;
|
|
970
|
+
type SentimentPolarity = 'positive' | 'negative' | 'neutral' | 'mixed' | 'unknown';
|
|
958
971
|
interface FeedbackTopic {
|
|
959
972
|
main: FeedbackTopicItem[];
|
|
960
973
|
sub: FeedbackTopicItem[];
|
|
@@ -1044,6 +1057,53 @@ declare namespace FeedbackApi_2 {
|
|
|
1044
1057
|
replyIdOrCategoryId: string;
|
|
1045
1058
|
rating: number | undefined;
|
|
1046
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
|
+
}
|
|
1047
1107
|
}
|
|
1048
1108
|
|
|
1049
1109
|
declare interface FeedbackBackend {
|
|
@@ -1055,6 +1115,8 @@ declare interface FeedbackBackend {
|
|
|
1055
1115
|
getOneFeedback: (taskId: FeedbackApi_2.TaskId) => Promise<FeedbackApi_2.Feedback | undefined>;
|
|
1056
1116
|
isTaskFeedbackEnabled: (taskId: FeedbackApi_2.TaskId) => Promise<true | false>;
|
|
1057
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>;
|
|
1058
1120
|
}
|
|
1059
1121
|
|
|
1060
1122
|
export declare type FetchAuthFunction = typeof window.fetch;
|
|
@@ -1295,7 +1357,7 @@ export declare namespace IamApi {
|
|
|
1295
1357
|
}
|
|
1296
1358
|
|
|
1297
1359
|
export declare namespace IamApi {
|
|
1298
|
-
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' | 'CONTRACT_EDIT';
|
|
1360
|
+
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' | 'CONTRACT_EDIT' | 'TASK_RETRANSFER';
|
|
1299
1361
|
export interface User {
|
|
1300
1362
|
userId: string;
|
|
1301
1363
|
name: string;
|
|
@@ -1617,7 +1679,6 @@ export declare const messages: {
|
|
|
1617
1679
|
'task.role.assignedAllUsers': string;
|
|
1618
1680
|
'task.roles.none': string;
|
|
1619
1681
|
'task.assignees.none': string;
|
|
1620
|
-
'task.feedback.published': string;
|
|
1621
1682
|
'confirm.close.title': string;
|
|
1622
1683
|
'confirm.unsavedChanges': string;
|
|
1623
1684
|
'task.statistics.statusCount': string;
|
|
@@ -1678,6 +1739,9 @@ export declare const messages: {
|
|
|
1678
1739
|
'publicationsTable.addButton': string;
|
|
1679
1740
|
'publicationsTable.exportButton': string;
|
|
1680
1741
|
'publicationsTable.uploadButton': string;
|
|
1742
|
+
'publications.liveDate': string;
|
|
1743
|
+
'publications.upload': string;
|
|
1744
|
+
'publications.dialog.upload.description': string;
|
|
1681
1745
|
'publications.external': string;
|
|
1682
1746
|
'publications.changeStatus': string;
|
|
1683
1747
|
'publications.currentStatus': string;
|
|
@@ -1810,9 +1874,7 @@ export declare const messages: {
|
|
|
1810
1874
|
'services.anonmode.tooltip': string;
|
|
1811
1875
|
'services.flowName': string;
|
|
1812
1876
|
'services.formName': string;
|
|
1813
|
-
'services.formName.description': string;
|
|
1814
1877
|
'services.formTag': string;
|
|
1815
|
-
'services.formTag.description': string;
|
|
1816
1878
|
'services.startdate': string;
|
|
1817
1879
|
'services.startdate.description': string;
|
|
1818
1880
|
'services.enddate': string;
|
|
@@ -2264,6 +2326,9 @@ export declare const messages: {
|
|
|
2264
2326
|
'eveli.userProfile.userPermissions': string;
|
|
2265
2327
|
'eveli.userProfile.editDetails': string;
|
|
2266
2328
|
'eveli.userProfile.currentDetails': string;
|
|
2329
|
+
'eveli.userProfile.tenantConfig': string;
|
|
2330
|
+
'eveli.userProfile.tenantConfig.select': string;
|
|
2331
|
+
'eveli.userProfile.tenantConfig.select.title': string;
|
|
2267
2332
|
'eveli.userProfile.tenantConfig.select.LOGIN_BUTTON': string;
|
|
2268
2333
|
'eveli.userProfile.tenantConfig.select.external-deployment': string;
|
|
2269
2334
|
'eveli.userProfile.tenantConfig.select.external-deployment.desc': string;
|
|
@@ -2293,6 +2358,12 @@ export declare const messages: {
|
|
|
2293
2358
|
'eveli.userProfile.tenantConfig.select.smart_task_audit.desc': string;
|
|
2294
2359
|
'eveli.userProfile.tenantConfig.select.visual_accommodation': string;
|
|
2295
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;
|
|
2296
2367
|
'taskTable.col.header.priority': string;
|
|
2297
2368
|
'taskTable.col.header.subject': string;
|
|
2298
2369
|
'taskTable.col.header.addInfo': string;
|
|
@@ -2320,6 +2391,7 @@ export declare const messages: {
|
|
|
2320
2391
|
'taskcard.title.customerMessages': string;
|
|
2321
2392
|
'taskcard.title.notes': string;
|
|
2322
2393
|
'taskcard.title.statusAndPriority': string;
|
|
2394
|
+
'taskcard.title.formReview': string;
|
|
2323
2395
|
'taskcard.title.history': string;
|
|
2324
2396
|
'taskcard.title.taskRefId': string;
|
|
2325
2397
|
'taskcard.title.assignable': string;
|
|
@@ -2389,7 +2461,25 @@ export declare const messages: {
|
|
|
2389
2461
|
'task.feedback.none': string;
|
|
2390
2462
|
'task.feedback.title': string;
|
|
2391
2463
|
'task.feedback.detailedResponse': string;
|
|
2464
|
+
'task.feedback.published': string;
|
|
2392
2465
|
'task.feedback.notPublished': string;
|
|
2466
|
+
'task.attachments': string;
|
|
2467
|
+
'task.button.uploadFile': string;
|
|
2468
|
+
'task.file.fileName': string;
|
|
2469
|
+
'task.file.uploadDate': string;
|
|
2470
|
+
'task.files.none': string;
|
|
2471
|
+
'task.customerMessages.user.message.wroteOn': string;
|
|
2472
|
+
'task.notes.edit': string;
|
|
2473
|
+
'task.notes.history': string;
|
|
2474
|
+
'task.notes.none': string;
|
|
2475
|
+
'task.notes.newNote': string;
|
|
2476
|
+
'task.status.percComplete': string;
|
|
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;
|
|
2393
2483
|
'toolbar.tagomi': string;
|
|
2394
2484
|
'tagomi.services.searchAll': string;
|
|
2395
2485
|
'tagomi.main.services.all': string;
|
|
@@ -2465,6 +2555,7 @@ export declare const messages: {
|
|
|
2465
2555
|
'contractTable.col.header.policyholder': string;
|
|
2466
2556
|
'contract.composer.contract.edit': string;
|
|
2467
2557
|
'contractcard.edit': string;
|
|
2558
|
+
'contractcard.product.title': string;
|
|
2468
2559
|
'contractcard.contractMain.title': string;
|
|
2469
2560
|
'contractcard.contractDetails.title': string;
|
|
2470
2561
|
'contractcard.contractParties.title': string;
|
|
@@ -2539,6 +2630,9 @@ export declare const messages: {
|
|
|
2539
2630
|
'contractcard.body.investmentPlans.invPlanAllocation.allocationName': string;
|
|
2540
2631
|
'contractcard.body.investmentPlans.invPlanAllocation.allocationPercentage': string;
|
|
2541
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;
|
|
2542
2636
|
'contractcard.transitives.createdAt': string;
|
|
2543
2637
|
'contractcard.transitives.updatedAt': string;
|
|
2544
2638
|
'contractcard.transitives.updatedTreeAt': string;
|
|
@@ -2615,6 +2709,9 @@ export declare const messages: {
|
|
|
2615
2709
|
'task.transfer.create.files': string;
|
|
2616
2710
|
'task.transfer.button.transfer': string;
|
|
2617
2711
|
'task.transfer.button.retransfer': string;
|
|
2712
|
+
'task.assigneesAndRolesEdit': string;
|
|
2713
|
+
'task.assignee': string;
|
|
2714
|
+
'task.assignedRoles': string;
|
|
2618
2715
|
internalComments: string;
|
|
2619
2716
|
externalComments: string;
|
|
2620
2717
|
'comment.store': string;
|
|
@@ -2749,7 +2846,8 @@ export declare const messages: {
|
|
|
2749
2846
|
CustomerCreated: string;
|
|
2750
2847
|
Internal: string;
|
|
2751
2848
|
'task.role.assignedAllUsers': string;
|
|
2752
|
-
'task.
|
|
2849
|
+
'task.roles.none': string;
|
|
2850
|
+
'task.assignees.none': string;
|
|
2753
2851
|
'confirm.close.title': string;
|
|
2754
2852
|
'confirm.unsavedChanges': string;
|
|
2755
2853
|
'task.statistics.statusCount': string;
|
|
@@ -2810,6 +2908,9 @@ export declare const messages: {
|
|
|
2810
2908
|
'publicationsTable.addButton': string;
|
|
2811
2909
|
'publicationsTable.exportButton': string;
|
|
2812
2910
|
'publicationsTable.uploadButton': string;
|
|
2911
|
+
'publications.liveDate': string;
|
|
2912
|
+
'publications.upload': string;
|
|
2913
|
+
'publications.dialog.upload.description': string;
|
|
2813
2914
|
'publications.external': string;
|
|
2814
2915
|
'publications.changeStatus': string;
|
|
2815
2916
|
'publications.currentStatus': string;
|
|
@@ -2942,9 +3043,7 @@ export declare const messages: {
|
|
|
2942
3043
|
'services.anonmode.tooltip': string;
|
|
2943
3044
|
'services.flowName': string;
|
|
2944
3045
|
'services.formName': string;
|
|
2945
|
-
'services.formName.description': string;
|
|
2946
3046
|
'services.formTag': string;
|
|
2947
|
-
'services.formTag.description': string;
|
|
2948
3047
|
'services.startdate': string;
|
|
2949
3048
|
'services.startdate.description': string;
|
|
2950
3049
|
'services.enddate': string;
|
|
@@ -2980,6 +3079,7 @@ export declare const messages: {
|
|
|
2980
3079
|
'snack.migration.createdMessage': string;
|
|
2981
3080
|
'toolbar.save': string;
|
|
2982
3081
|
'toolbar.stencil': string;
|
|
3082
|
+
'toolbar.contracts': string;
|
|
2983
3083
|
'toolbar.wrench': string;
|
|
2984
3084
|
'toolbar.menu': string;
|
|
2985
3085
|
'toolbar.help': string;
|
|
@@ -3395,6 +3495,9 @@ export declare const messages: {
|
|
|
3395
3495
|
'eveli.userProfile.userPermissions': string;
|
|
3396
3496
|
'eveli.userProfile.editDetails': string;
|
|
3397
3497
|
'eveli.userProfile.currentDetails': string;
|
|
3498
|
+
'eveli.userProfile.tenantConfig': string;
|
|
3499
|
+
'eveli.userProfile.tenantConfig.select': string;
|
|
3500
|
+
'eveli.userProfile.tenantConfig.select.title': string;
|
|
3398
3501
|
'eveli.userProfile.tenantConfig.select.LOGIN_BUTTON': string;
|
|
3399
3502
|
'eveli.userProfile.tenantConfig.select.external-deployment': string;
|
|
3400
3503
|
'eveli.userProfile.tenantConfig.select.external-deployment.desc': string;
|
|
@@ -3424,6 +3527,12 @@ export declare const messages: {
|
|
|
3424
3527
|
'eveli.userProfile.tenantConfig.select.smart_task_audit.desc': string;
|
|
3425
3528
|
'eveli.userProfile.tenantConfig.select.visual_accommodation': string;
|
|
3426
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;
|
|
3427
3536
|
'taskTable.col.header.priority': string;
|
|
3428
3537
|
'taskTable.col.header.subject': string;
|
|
3429
3538
|
'taskTable.col.header.addInfo': string;
|
|
@@ -3447,7 +3556,99 @@ export declare const messages: {
|
|
|
3447
3556
|
'taskcard.style.COMPACT': string;
|
|
3448
3557
|
'taskcard.style.DEFAULT': string;
|
|
3449
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;
|
|
3450
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;
|
|
3451
3652
|
'toolbar.tagomi': string;
|
|
3452
3653
|
'tagomi.services.searchAll': string;
|
|
3453
3654
|
'tagomi.main.services.all': string;
|
|
@@ -3673,6 +3874,9 @@ export declare const messages: {
|
|
|
3673
3874
|
'task.transfer.create.files': string;
|
|
3674
3875
|
'task.transfer.button.transfer': string;
|
|
3675
3876
|
'task.transfer.button.retransfer': string;
|
|
3877
|
+
'task.assigneesAndRolesEdit': string;
|
|
3878
|
+
'task.assignee': string;
|
|
3879
|
+
'task.assignedRoles': string;
|
|
3676
3880
|
internalComments: string;
|
|
3677
3881
|
externalComments: string;
|
|
3678
3882
|
'comment.store': string;
|
|
@@ -3807,7 +4011,8 @@ export declare const messages: {
|
|
|
3807
4011
|
CustomerCreated: string;
|
|
3808
4012
|
Internal: string;
|
|
3809
4013
|
'task.role.assignedAllUsers': string;
|
|
3810
|
-
'task.
|
|
4014
|
+
'task.roles.none': string;
|
|
4015
|
+
'task.assignees.none': string;
|
|
3811
4016
|
'confirm.close.title': string;
|
|
3812
4017
|
'confirm.unsavedChanges': string;
|
|
3813
4018
|
'task.statistics.statusCount': string;
|
|
@@ -3868,6 +4073,9 @@ export declare const messages: {
|
|
|
3868
4073
|
'publicationsTable.addButton': string;
|
|
3869
4074
|
'publicationsTable.exportButton': string;
|
|
3870
4075
|
'publicationsTable.uploadButton': string;
|
|
4076
|
+
'publications.liveDate': string;
|
|
4077
|
+
'publications.upload': string;
|
|
4078
|
+
'publications.dialog.upload.description': string;
|
|
3871
4079
|
'publications.external': string;
|
|
3872
4080
|
'publications.changeStatus': string;
|
|
3873
4081
|
'publications.currentStatus': string;
|
|
@@ -4000,9 +4208,7 @@ export declare const messages: {
|
|
|
4000
4208
|
'services.anonmode.tooltip': string;
|
|
4001
4209
|
'services.flowName': string;
|
|
4002
4210
|
'services.formName': string;
|
|
4003
|
-
'services.formName.description': string;
|
|
4004
4211
|
'services.formTag': string;
|
|
4005
|
-
'services.formTag.description': string;
|
|
4006
4212
|
'services.startdate': string;
|
|
4007
4213
|
'services.startdate.description': string;
|
|
4008
4214
|
'services.enddate': string;
|
|
@@ -4038,6 +4244,7 @@ export declare const messages: {
|
|
|
4038
4244
|
'snack.migration.createdMessage': string;
|
|
4039
4245
|
'toolbar.save': string;
|
|
4040
4246
|
'toolbar.stencil': string;
|
|
4247
|
+
'toolbar.contracts': string;
|
|
4041
4248
|
'toolbar.wrench': string;
|
|
4042
4249
|
'toolbar.menu': string;
|
|
4043
4250
|
'toolbar.help': string;
|
|
@@ -4453,6 +4660,9 @@ export declare const messages: {
|
|
|
4453
4660
|
'eveli.userProfile.userPermissions': string;
|
|
4454
4661
|
'eveli.userProfile.editDetails': string;
|
|
4455
4662
|
'eveli.userProfile.currentDetails': string;
|
|
4663
|
+
'eveli.userProfile.tenantConfig': string;
|
|
4664
|
+
'eveli.userProfile.tenantConfig.select': string;
|
|
4665
|
+
'eveli.userProfile.tenantConfig.select.title': string;
|
|
4456
4666
|
'eveli.userProfile.tenantConfig.select.LOGIN_BUTTON': string;
|
|
4457
4667
|
'eveli.userProfile.tenantConfig.select.external-deployment': string;
|
|
4458
4668
|
'eveli.userProfile.tenantConfig.select.external-deployment.desc': string;
|
|
@@ -4482,6 +4692,12 @@ export declare const messages: {
|
|
|
4482
4692
|
'eveli.userProfile.tenantConfig.select.smart_task_audit.desc': string;
|
|
4483
4693
|
'eveli.userProfile.tenantConfig.select.visual_accommodation': string;
|
|
4484
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;
|
|
4485
4701
|
'taskTable.col.header.priority': string;
|
|
4486
4702
|
'taskTable.col.header.subject': string;
|
|
4487
4703
|
'taskTable.col.header.addInfo': string;
|
|
@@ -4505,7 +4721,99 @@ export declare const messages: {
|
|
|
4505
4721
|
'taskcard.style.COMPACT': string;
|
|
4506
4722
|
'taskcard.style.DEFAULT': string;
|
|
4507
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;
|
|
4508
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;
|
|
4509
4817
|
'toolbar.tagomi': string;
|
|
4510
4818
|
'tagomi.services.searchAll': string;
|
|
4511
4819
|
'tagomi.main.services.all': string;
|
|
@@ -5505,6 +5813,34 @@ declare class RootFileFetch_2 {
|
|
|
5505
5813
|
modifyOneFeedback: (taskId: FeedbackApi.TaskId, body: FeedbackApi.ModifyOneFeedbackCommand) => Promise<FeedbackApi.Feedback>;
|
|
5506
5814
|
rankOneFeedback: (taskId: FeedbackApi.TaskId, body: FeedbackApi.UpsertFeedbackRankingCommand) => Promise<FeedbackApi.Feedback>;
|
|
5507
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
|
+
}>;
|
|
5508
5844
|
} | {
|
|
5509
5845
|
id: "worker/rest/api/feedback/$feedbackId/templates.GET";
|
|
5510
5846
|
path: "worker/rest/api/feedback/$feedbackId/templates";
|
|
@@ -5788,10 +6124,12 @@ declare class RootFileFetch_2 {
|
|
|
5788
6124
|
};
|
|
5789
6125
|
hook: HookImpl<"worker/rest/api/tasks/$taskId/review-actions.GET", Hook<{}, {
|
|
5790
6126
|
fetchReviewActionsGet: (sessionId: string) => Promise<Response>;
|
|
6127
|
+
fetchReviewActionsPost: (sessionId: string, actions: any[], rev: number) => Promise<Response>;
|
|
5791
6128
|
}>, "worker/rest/api/tasks/$taskId/review-actions", "GET", {
|
|
5792
6129
|
taskId: string;
|
|
5793
6130
|
}, {}, {
|
|
5794
6131
|
fetchReviewActionsGet: (sessionId: string) => Promise<Response>;
|
|
6132
|
+
fetchReviewActionsPost: (sessionId: string, actions: any[], rev: number) => Promise<Response>;
|
|
5795
6133
|
}>;
|
|
5796
6134
|
} | {
|
|
5797
6135
|
id: "worker/rest/api/tasks/$taskId/reviews.GET";
|
|
@@ -6184,7 +6522,7 @@ export declare interface TagTableRowProps {
|
|
|
6184
6522
|
onOpenForm?: (formId: string) => void;
|
|
6185
6523
|
}
|
|
6186
6524
|
|
|
6187
|
-
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"];
|
|
6188
6526
|
|
|
6189
6527
|
export declare interface TenantConfig {
|
|
6190
6528
|
features: TenantFeature[];
|