@cleardu/types 1.0.175 → 1.0.177

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.
@@ -22,12 +22,27 @@ export declare enum UserTypeEnum {
22
22
  internal = "internal",
23
23
  external = "external"
24
24
  }
25
- export declare enum RoleTypeEnum {
26
- Agent = "agent",
27
- TeamLead = "teamlead",
28
- Admin = "admin",
29
- Manager = "manager"
30
- }
25
+ export declare const RoleTypeEnum: {
26
+ readonly Admin: {
27
+ readonly name: "admin";
28
+ readonly order: 1;
29
+ };
30
+ readonly Manager: {
31
+ readonly name: "manager";
32
+ readonly order: 2;
33
+ };
34
+ readonly TeamLead: {
35
+ readonly name: "teamlead";
36
+ readonly order: 3;
37
+ };
38
+ readonly Agent: {
39
+ readonly name: "agent";
40
+ readonly order: 4;
41
+ };
42
+ };
43
+ export declare const RoleNames: ("agent" | "admin" | "manager" | "teamlead")[];
44
+ export type RoleTypeEnum = (typeof RoleNames)[number];
45
+ export declare const HIERARCHY_ROLES: RoleTypeEnum[];
31
46
  export declare enum CampaignTypeEnum {
32
47
  Predictive = "predictive",
33
48
  Progressive = "progressive"
@@ -89,7 +104,6 @@ export declare const userModules: {
89
104
  AgentActivity: number;
90
105
  AgentProductivity: number;
91
106
  AgentLiveStatus: number;
92
- Settlements: number;
93
107
  Files: number;
94
108
  Dispositions: number;
95
109
  CampaignMapping: number;
@@ -97,7 +111,6 @@ export declare const userModules: {
97
111
  Breaks: number;
98
112
  Dropdown: number;
99
113
  };
100
- export declare const HIERARCHY_ROLES: RoleTypeEnum[];
101
114
  export declare const dispoSubDispo: {
102
115
  dispositions: {
103
116
  PTP: number;
@@ -433,7 +446,7 @@ export declare const Constants: {
433
446
  DESCRIPTION: string;
434
447
  MODULE_ID: number;
435
448
  };
436
- GET: {
449
+ EDIT: {
437
450
  TITLE: string;
438
451
  SLUG: string;
439
452
  DESCRIPTION: string;
@@ -727,7 +740,7 @@ export declare const Constants: {
727
740
  DESCRIPTION: string;
728
741
  MODULE_ID: number;
729
742
  };
730
- GET: {
743
+ EDIT: {
731
744
  TITLE: string;
732
745
  SLUG: string;
733
746
  DESCRIPTION: string;
@@ -848,64 +861,6 @@ export declare const Constants: {
848
861
  DESCRIPTION: string;
849
862
  MODULE_ID: number;
850
863
  };
851
- };
852
- FILE: {
853
- LIST: {
854
- FILE: {
855
- TITLE: string;
856
- SLUG: string;
857
- DESCRIPTION: string;
858
- MODULE_ID: number;
859
- };
860
- ATTACHMENT: {
861
- TITLE: string;
862
- SLUG: string;
863
- DESCRIPTION: string;
864
- MODULE_ID: number;
865
- };
866
- };
867
- UPLOAD: {
868
- BORROWER: {
869
- TITLE: string;
870
- SLUG: string;
871
- DESCRIPTION: string;
872
- MODULE_ID: number;
873
- };
874
- BORROWER_REASSIGN: {
875
- TITLE: string;
876
- SLUG: string;
877
- DESCRIPTION: string;
878
- MODULE_ID: number;
879
- };
880
- PAYMENT: {
881
- TITLE: string;
882
- SLUG: string;
883
- DESCRIPTION: string;
884
- MODULE_ID: number;
885
- };
886
- ATTACHMENTS: {
887
- TITLE: string;
888
- SLUG: string;
889
- DESCRIPTION: string;
890
- MODULE_ID: number;
891
- };
892
- COMMUNICATIONS: {
893
- TITLE: string;
894
- SLUG: string;
895
- DESCRIPTION: string;
896
- MODULE_ID: number;
897
- };
898
- };
899
- REMOVE: {
900
- ATTACHMENTS: {
901
- TITLE: string;
902
- SLUG: string;
903
- DESCRIPTION: string;
904
- MODULE_ID: number;
905
- };
906
- };
907
- };
908
- SETTLEMENTS: {
909
864
  INITIATE: {
910
865
  TITLE: string;
911
866
  SLUG: string;
@@ -918,24 +873,12 @@ export declare const Constants: {
918
873
  DESCRIPTION: string;
919
874
  MODULE_ID: number;
920
875
  };
921
- LIST: {
922
- TITLE: string;
923
- SLUG: string;
924
- DESCRIPTION: string;
925
- MODULE_ID: number;
926
- };
927
876
  UPDATE: {
928
877
  TITLE: string;
929
878
  SLUG: string;
930
879
  DESCRIPTION: string;
931
880
  MODULE_ID: number;
932
881
  };
933
- EXPORT: {
934
- TITLE: string;
935
- SLUG: string;
936
- DESCRIPTION: string;
937
- MODULE_ID: number;
938
- };
939
882
  TIMELINE: {
940
883
  TITLE: string;
941
884
  SLUG: string;
@@ -1009,6 +952,76 @@ export declare const Constants: {
1009
952
  MODULE_ID: number;
1010
953
  };
1011
954
  };
955
+ COMMUNICATION_TRACKER: {
956
+ LIST: {
957
+ TITLE: string;
958
+ SLUG: string;
959
+ DESCRIPTION: string;
960
+ MODULE_ID: number;
961
+ };
962
+ EXPORT: {
963
+ TITLE: string;
964
+ SLUG: string;
965
+ DESCRIPTION: string;
966
+ MODULE_ID: number;
967
+ };
968
+ };
969
+ FILE: {
970
+ LIST: {
971
+ FILE: {
972
+ TITLE: string;
973
+ SLUG: string;
974
+ DESCRIPTION: string;
975
+ MODULE_ID: number;
976
+ };
977
+ ATTACHMENT: {
978
+ TITLE: string;
979
+ SLUG: string;
980
+ DESCRIPTION: string;
981
+ MODULE_ID: number;
982
+ };
983
+ };
984
+ UPLOAD: {
985
+ BORROWER: {
986
+ TITLE: string;
987
+ SLUG: string;
988
+ DESCRIPTION: string;
989
+ MODULE_ID: number;
990
+ };
991
+ BORROWER_REASSIGN: {
992
+ TITLE: string;
993
+ SLUG: string;
994
+ DESCRIPTION: string;
995
+ MODULE_ID: number;
996
+ };
997
+ PAYMENT: {
998
+ TITLE: string;
999
+ SLUG: string;
1000
+ DESCRIPTION: string;
1001
+ MODULE_ID: number;
1002
+ };
1003
+ ATTACHMENTS: {
1004
+ TITLE: string;
1005
+ SLUG: string;
1006
+ DESCRIPTION: string;
1007
+ MODULE_ID: number;
1008
+ };
1009
+ COMMUNICATIONS: {
1010
+ TITLE: string;
1011
+ SLUG: string;
1012
+ DESCRIPTION: string;
1013
+ MODULE_ID: number;
1014
+ };
1015
+ };
1016
+ REMOVE: {
1017
+ ATTACHMENTS: {
1018
+ TITLE: string;
1019
+ SLUG: string;
1020
+ DESCRIPTION: string;
1021
+ MODULE_ID: number;
1022
+ };
1023
+ };
1024
+ };
1012
1025
  DROPDOWN: {
1013
1026
  CLIENT: {
1014
1027
  TITLE: string;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.IVRCallStatus = exports.WhatsappButtonTypes = exports.whatsAppStatus = exports.smsStatus = exports.messageDirection = exports.languageCodes = exports.templateTypes = exports.CallStatus = exports.RecordType = exports.FileUploadConfig = exports.validateTableCols = exports.Constants = exports.PorvidersType = exports.JobTypeEnum = exports.ParticipantTypeEnum = exports.dispoSubDispo = exports.HIERARCHY_ROLES = exports.userModules = exports.SettlementStatus = exports.Disp_CategoryTypeEnum = exports.JobStatusEnum = exports.CallDirectionEnum = exports.DispositionTypeEnum = exports.GenderTypeEnum = exports.CampaignTypeEnum = exports.RoleTypeEnum = exports.UserTypeEnum = exports.ActInactiveEnumType = exports.Services = void 0;
3
+ exports.IVRCallStatus = exports.WhatsappButtonTypes = exports.whatsAppStatus = exports.smsStatus = exports.messageDirection = exports.languageCodes = exports.templateTypes = exports.CallStatus = exports.RecordType = exports.FileUploadConfig = exports.validateTableCols = exports.Constants = exports.PorvidersType = exports.JobTypeEnum = exports.ParticipantTypeEnum = exports.dispoSubDispo = exports.userModules = exports.SettlementStatus = exports.Disp_CategoryTypeEnum = exports.JobStatusEnum = exports.CallDirectionEnum = exports.DispositionTypeEnum = exports.GenderTypeEnum = exports.CampaignTypeEnum = exports.HIERARCHY_ROLES = exports.RoleNames = exports.RoleTypeEnum = exports.UserTypeEnum = exports.ActInactiveEnumType = exports.Services = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  tslib_1.__exportStar(require("./brokerMessages"), exports);
6
6
  exports.Services = {
@@ -29,13 +29,17 @@ var UserTypeEnum;
29
29
  // vendor = 'vendor',
30
30
  UserTypeEnum["external"] = "external";
31
31
  })(UserTypeEnum || (exports.UserTypeEnum = UserTypeEnum = {}));
32
- var RoleTypeEnum;
33
- (function (RoleTypeEnum) {
34
- RoleTypeEnum["Agent"] = "agent";
35
- RoleTypeEnum["TeamLead"] = "teamlead";
36
- RoleTypeEnum["Admin"] = "admin";
37
- RoleTypeEnum["Manager"] = "manager";
38
- })(RoleTypeEnum || (exports.RoleTypeEnum = RoleTypeEnum = {}));
32
+ exports.RoleTypeEnum = {
33
+ Admin: { name: 'admin', order: 1 },
34
+ Manager: { name: 'manager', order: 2 },
35
+ TeamLead: { name: 'teamlead', order: 3 },
36
+ Agent: { name: 'agent', order: 4 },
37
+ };
38
+ exports.RoleNames = Object.values(exports.RoleTypeEnum).map(role => role.name);
39
+ exports.HIERARCHY_ROLES = [
40
+ exports.RoleTypeEnum.TeamLead.name,
41
+ exports.RoleTypeEnum.Manager.name,
42
+ ];
39
43
  var CampaignTypeEnum;
40
44
  (function (CampaignTypeEnum) {
41
45
  CampaignTypeEnum["Predictive"] = "predictive";
@@ -104,21 +108,19 @@ exports.userModules = {
104
108
  AgentActivity: 15,
105
109
  AgentProductivity: 16,
106
110
  AgentLiveStatus: 17,
107
- Settlements: 18,
108
- Files: 19,
109
- Dispositions: 20,
110
- CampaignMapping: 21,
111
- Centers: 22,
112
- Breaks: 23,
113
- Dropdown: 24,
114
- // Templates: 25,
115
- // Merchants: 26,
116
- // PaymentModes: 27,
117
- // AuditLog: 28,
118
- // LiveChat: 29,
119
- // DailyTask: 30
111
+ Files: 18,
112
+ Dispositions: 19,
113
+ CampaignMapping: 20,
114
+ Centers: 21,
115
+ Breaks: 22,
116
+ Dropdown: 23,
117
+ // Templates: 24,
118
+ // Merchants: 25,
119
+ // PaymentModes: 26,
120
+ // AuditLog: 27,
121
+ // LiveChat: 28,
122
+ // DailyTask: 29
120
123
  };
121
- exports.HIERARCHY_ROLES = [RoleTypeEnum.TeamLead, RoleTypeEnum.Manager];
122
124
  exports.dispoSubDispo = {
123
125
  dispositions: {
124
126
  PTP: 1,
@@ -455,10 +457,10 @@ exports.Constants = {
455
457
  DESCRIPTION: 'Add Payment account',
456
458
  MODULE_ID: exports.userModules.Clients,
457
459
  },
458
- GET: {
459
- TITLE: 'Get Payment account',
460
- SLUG: 'get_payment_account',
461
- DESCRIPTION: 'Get Payment account',
460
+ EDIT: {
461
+ TITLE: 'Edit Payment account',
462
+ SLUG: 'edit_payment_account',
463
+ DESCRIPTION: 'Edit Payment account',
462
464
  MODULE_ID: exports.userModules.Clients,
463
465
  },
464
466
  LIST: {
@@ -527,14 +529,14 @@ exports.Constants = {
527
529
  },
528
530
  CAMPAIGN_MAPPING: {
529
531
  ASSIGN_USER: {
530
- TITLE: 'Campaign User Mapping',
532
+ TITLE: 'Assign Campaign to User',
531
533
  SLUG: 'map_campaign_user',
532
534
  DESCRIPTION: 'Campaign User Mapping',
533
535
  MODULE_ID: exports.userModules.CampaignMapping,
534
536
  },
535
537
  LIST: {
536
- TITLE: 'List Campaign User',
537
- SLUG: 'map_campaign_user',
538
+ TITLE: 'List Campaign User Mapping',
539
+ SLUG: 'list_campaign_user',
538
540
  DESCRIPTION: 'List Campaign User',
539
541
  MODULE_ID: exports.userModules.CampaignMapping,
540
542
  },
@@ -749,9 +751,9 @@ exports.Constants = {
749
751
  DESCRIPTION: 'Generate Payment link',
750
752
  MODULE_ID: exports.userModules.Borrowers,
751
753
  },
752
- GET: {
753
- TITLE: 'Get Payment Link',
754
- SLUG: 'get_code',
754
+ EDIT: {
755
+ TITLE: 'Edit Payment Link',
756
+ SLUG: 'edit_code',
755
757
  DESCRIPTION: 'Get Payment Link',
756
758
  MODULE_ID: exports.userModules.Borrowers,
757
759
  },
@@ -808,7 +810,7 @@ exports.Constants = {
808
810
  TITLE: 'List Agent Live Status',
809
811
  SLUG: 'list_agent_live_status',
810
812
  DESCRIPTION: 'List Agent Live Status',
811
- MODULE_ID: exports.userModules.AgentActivity,
813
+ MODULE_ID: exports.userModules.AgentLiveStatus,
812
814
  },
813
815
  },
814
816
  AGENT_PRODUCTIVITY: {
@@ -866,169 +868,169 @@ exports.Constants = {
866
868
  },
867
869
  EXPORT: {
868
870
  TITLE: 'Export Settlement Tracker',
869
- SLUG: 'export_settlements',
871
+ SLUG: 'export_settlements_tracker',
870
872
  DESCRIPTION: 'Export Settlement',
871
873
  MODULE_ID: exports.userModules.SettlementsTracker,
872
874
  },
873
- },
874
- FILE: {
875
- LIST: {
876
- FILE: {
877
- TITLE: 'View File listing',
878
- SLUG: 'view_file_listing',
879
- DESCRIPTION: 'View File listing',
880
- MODULE_ID: exports.userModules.Files,
881
- },
882
- ATTACHMENT: {
883
- TITLE: 'View Other documents/Attachments',
884
- SLUG: 'view_attachments_file',
885
- DESCRIPTION: 'View Other documents/Attachments',
886
- MODULE_ID: exports.userModules.Files,
887
- },
888
- },
889
- UPLOAD: {
890
- BORROWER: {
891
- TITLE: 'Upload Borrowers File',
892
- SLUG: 'upload_borrower_file',
893
- DESCRIPTION: 'Upload Borrowers File',
894
- MODULE_ID: exports.userModules.Files,
895
- },
896
- BORROWER_REASSIGN: {
897
- TITLE: 'Upload Borrowers Reassign File',
898
- SLUG: 'upload_borrower_reassign_file',
899
- DESCRIPTION: 'Upload Borrowers Reassign File',
900
- MODULE_ID: exports.userModules.Files,
901
- },
902
- PAYMENT: {
903
- TITLE: 'Upload Payments File',
904
- SLUG: 'upload_payments_file',
905
- DESCRIPTION: 'Upload Payments File',
906
- MODULE_ID: exports.userModules.Files,
907
- },
908
- ATTACHMENTS: {
909
- TITLE: 'Upload Other documents/Attachments',
910
- SLUG: 'upload_attachments_file',
911
- DESCRIPTION: 'Upload Other documents/Attachments',
912
- MODULE_ID: exports.userModules.Files,
913
- },
914
- COMMUNICATIONS: {
915
- TITLE: 'Upload Communications File',
916
- SLUG: 'upload_communications_file',
917
- DESCRIPTION: 'Upload Communications File',
918
- MODULE_ID: exports.userModules.Files,
919
- },
920
- },
921
- REMOVE: {
922
- ATTACHMENTS: {
923
- TITLE: 'Remove Other documents/Attachments',
924
- SLUG: 'remove_attachments_file',
925
- DESCRIPTION: 'Remove Other documents/Attachments',
926
- MODULE_ID: exports.userModules.Files,
927
- },
928
- },
929
- },
930
- SETTLEMENTS: {
931
875
  INITIATE: {
932
876
  TITLE: 'Initiate Settlements',
933
877
  SLUG: 'add_settlements',
934
878
  DESCRIPTION: 'Initiate Settlements',
935
- MODULE_ID: exports.userModules.Settlements,
879
+ MODULE_ID: exports.userModules.SettlementsTracker,
936
880
  },
937
881
  EDIT: {
938
882
  TITLE: 'Edit Settlements',
939
883
  SLUG: 'edit_settlements',
940
884
  DESCRIPTION: 'Edit/Get Settlements',
941
- MODULE_ID: exports.userModules.Settlements,
942
- },
943
- LIST: {
944
- TITLE: 'List Settlements',
945
- SLUG: 'list_settlements',
946
- DESCRIPTION: 'List Settlements',
947
- MODULE_ID: exports.userModules.Settlements,
885
+ MODULE_ID: exports.userModules.SettlementsTracker,
948
886
  },
949
887
  UPDATE: {
950
888
  TITLE: 'Update Settlements',
951
889
  SLUG: 'update_settlements',
952
890
  DESCRIPTION: 'Update Settlements',
953
- MODULE_ID: exports.userModules.Settlements,
954
- },
955
- EXPORT: {
956
- TITLE: 'Export Settlements',
957
- SLUG: 'export_settlements',
958
- DESCRIPTION: 'Export Settlements',
959
- MODULE_ID: exports.userModules.Settlements,
891
+ MODULE_ID: exports.userModules.SettlementsTracker,
960
892
  },
961
893
  TIMELINE: {
962
894
  TITLE: 'Settlement Timeline',
963
895
  SLUG: 'settlement_timeline',
964
896
  DESCRIPTION: 'Settlement Timeline',
965
- MODULE_ID: exports.userModules.Settlements,
897
+ MODULE_ID: exports.userModules.SettlementsTracker,
966
898
  },
967
899
  HISTORY: {
968
900
  TITLE: 'Settlement History',
969
901
  SLUG: 'settlement_history',
970
902
  DESCRIPTION: 'Settlement History',
971
- MODULE_ID: exports.userModules.Settlements,
903
+ MODULE_ID: exports.userModules.SettlementsTracker,
972
904
  },
973
905
  RAISE_QUERY: {
974
906
  TITLE: 'Settlement Raise Query',
975
907
  SLUG: 'settlement_raise_query',
976
908
  DESCRIPTION: 'Settlement Raise Query',
977
- MODULE_ID: exports.userModules.Settlements,
909
+ MODULE_ID: exports.userModules.SettlementsTracker,
978
910
  },
979
911
  LIST_RAISE_QUERY: {
980
912
  TITLE: 'List Settlement Raise Query',
981
913
  SLUG: 'list_settlement_raise_query',
982
914
  DESCRIPTION: 'List Settlement Raise Query',
983
- MODULE_ID: exports.userModules.Settlements,
915
+ MODULE_ID: exports.userModules.SettlementsTracker,
984
916
  },
985
917
  SEND_RAISE_QUERY_CLIENT: {
986
918
  TITLE: 'Send Settlement Raise Query To Client',
987
919
  SLUG: 'settlement_raise_query_client',
988
920
  DESCRIPTION: 'Send Settlement Raise Query To Client',
989
- MODULE_ID: exports.userModules.Settlements,
921
+ MODULE_ID: exports.userModules.SettlementsTracker,
990
922
  },
991
923
  VALIDATE: {
992
924
  TITLE: 'Validate Settlement',
993
925
  SLUG: 'validate_settlement',
994
926
  DESCRIPTION: 'Validate Settlement',
995
- MODULE_ID: exports.userModules.Settlements,
927
+ MODULE_ID: exports.userModules.SettlementsTracker,
996
928
  },
997
929
  SEND_TO_CLIENT: {
998
930
  TITLE: 'Send Settlement To Client',
999
931
  SLUG: 'settlement_send_to_client',
1000
932
  DESCRIPTION: 'Send Settlement To Client',
1001
- MODULE_ID: exports.userModules.Settlements,
933
+ MODULE_ID: exports.userModules.SettlementsTracker,
1002
934
  },
1003
935
  SEND_EMAIL: {
1004
936
  TITLE: 'Send Settlement Email',
1005
937
  SLUG: 'send_settlement_email',
1006
938
  DESCRIPTION: 'Send Settlement Email',
1007
- MODULE_ID: exports.userModules.Settlements,
939
+ MODULE_ID: exports.userModules.SettlementsTracker,
1008
940
  },
1009
941
  APPROVE_REJECT: {
1010
942
  TITLE: 'Approve/Reject Settlement',
1011
943
  SLUG: 'approve_reject_settlement',
1012
944
  DESCRIPTION: 'Approve/Reject Settlement',
1013
- MODULE_ID: exports.userModules.Settlements,
945
+ MODULE_ID: exports.userModules.SettlementsTracker,
1014
946
  },
1015
947
  AMOUNT_UPDATE: {
1016
948
  TITLE: 'Update Settlement Amount',
1017
949
  SLUG: 'update_settlement_amount',
1018
950
  DESCRIPTION: 'Update Settlement Amount',
1019
- MODULE_ID: exports.userModules.Settlements,
951
+ MODULE_ID: exports.userModules.SettlementsTracker,
1020
952
  },
1021
953
  REOPEN: {
1022
954
  TITLE: 'Reopen Settlement',
1023
955
  SLUG: 'reopen_settlement',
1024
956
  DESCRIPTION: 'Reopen Settlement',
1025
- MODULE_ID: exports.userModules.Settlements,
957
+ MODULE_ID: exports.userModules.SettlementsTracker,
1026
958
  },
1027
959
  CLIENT_TIMELINE: {
1028
960
  TITLE: 'View Client Settlement Timeline',
1029
961
  SLUG: 'view_client_settlement_timeline',
1030
962
  DESCRIPTION: 'View Client Settlement Timeline',
1031
- MODULE_ID: exports.userModules.Settlements,
963
+ MODULE_ID: exports.userModules.SettlementsTracker,
964
+ },
965
+ },
966
+ COMMUNICATION_TRACKER: {
967
+ LIST: {
968
+ TITLE: 'Communication Tracker',
969
+ SLUG: 'list_communication_tracker',
970
+ DESCRIPTION: 'List Communication Tracker',
971
+ MODULE_ID: exports.userModules.CommunicationTracker,
972
+ },
973
+ EXPORT: {
974
+ TITLE: 'Export Communication Tracker',
975
+ SLUG: 'export_communication_tracker',
976
+ DESCRIPTION: 'Export Communication Tracker',
977
+ MODULE_ID: exports.userModules.CommunicationTracker,
978
+ },
979
+ },
980
+ FILE: {
981
+ LIST: {
982
+ FILE: {
983
+ TITLE: 'View File listing',
984
+ SLUG: 'view_file_listing',
985
+ DESCRIPTION: 'View File listing',
986
+ MODULE_ID: exports.userModules.Files,
987
+ },
988
+ ATTACHMENT: {
989
+ TITLE: 'View Other documents/Attachments',
990
+ SLUG: 'view_attachments_file',
991
+ DESCRIPTION: 'View Other documents/Attachments',
992
+ MODULE_ID: exports.userModules.Files,
993
+ },
994
+ },
995
+ UPLOAD: {
996
+ BORROWER: {
997
+ TITLE: 'Upload Borrowers File',
998
+ SLUG: 'upload_borrower_file',
999
+ DESCRIPTION: 'Upload Borrowers File',
1000
+ MODULE_ID: exports.userModules.Files,
1001
+ },
1002
+ BORROWER_REASSIGN: {
1003
+ TITLE: 'Upload Borrowers Reassign File',
1004
+ SLUG: 'upload_borrower_reassign_file',
1005
+ DESCRIPTION: 'Upload Borrowers Reassign File',
1006
+ MODULE_ID: exports.userModules.Files,
1007
+ },
1008
+ PAYMENT: {
1009
+ TITLE: 'Upload Payments File',
1010
+ SLUG: 'upload_payments_file',
1011
+ DESCRIPTION: 'Upload Payments File',
1012
+ MODULE_ID: exports.userModules.Files,
1013
+ },
1014
+ ATTACHMENTS: {
1015
+ TITLE: 'Upload Other documents/Attachments',
1016
+ SLUG: 'upload_attachments_file',
1017
+ DESCRIPTION: 'Upload Other documents/Attachments',
1018
+ MODULE_ID: exports.userModules.Files,
1019
+ },
1020
+ COMMUNICATIONS: {
1021
+ TITLE: 'Upload Communications File',
1022
+ SLUG: 'upload_communications_file',
1023
+ DESCRIPTION: 'Upload Communications File',
1024
+ MODULE_ID: exports.userModules.Files,
1025
+ },
1026
+ },
1027
+ REMOVE: {
1028
+ ATTACHMENTS: {
1029
+ TITLE: 'Remove Other documents/Attachments',
1030
+ SLUG: 'remove_attachments_file',
1031
+ DESCRIPTION: 'Remove Other documents/Attachments',
1032
+ MODULE_ID: exports.userModules.Files,
1033
+ },
1032
1034
  },
1033
1035
  },
1034
1036
  DROPDOWN: {