@cleardu/types 1.0.93 → 1.0.95
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/constants/brokerMessages/index.d.ts +6 -0
- package/constants/brokerMessages/index.js +8 -2
- package/constants/brokerMessages/index.ts +8 -2
- package/constants/index.d.ts +2 -1
- package/constants/index.js +35 -34
- package/constants/index.ts +119 -118
- package/interfaces/loans/index.d.ts +20 -0
- package/interfaces/loans/index.ts +21 -0
- package/interfaces/loansActivityHistory/index.d.ts +10 -0
- package/interfaces/loansActivityHistory/index.js +2 -0
- package/interfaces/loansActivityHistory/index.ts +11 -0
- package/package.json +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
|
@@ -60,6 +60,7 @@ export declare const BrokerMessages: {
|
|
|
60
60
|
FIND_ALL_CAMPAIGN_USER: string;
|
|
61
61
|
MIGRATE_CAMPAIGN: string;
|
|
62
62
|
MIGRATE_CAMPAIGN_USER: string;
|
|
63
|
+
FIND_CAMPAIGN_USER_MAPPING: string;
|
|
63
64
|
};
|
|
64
65
|
DIALER: {
|
|
65
66
|
LOGIN: string;
|
|
@@ -106,6 +107,7 @@ export declare const BrokerMessages: {
|
|
|
106
107
|
LOAN: {
|
|
107
108
|
FIND_ALL: string;
|
|
108
109
|
FIND_ONE: string;
|
|
110
|
+
FIND_LOAN_BY_BORROWER_ID: string;
|
|
109
111
|
TAGS: {
|
|
110
112
|
CREATE: string;
|
|
111
113
|
REMOVE: string;
|
|
@@ -113,6 +115,10 @@ export declare const BrokerMessages: {
|
|
|
113
115
|
LOAN_HISTORY: {
|
|
114
116
|
FIND_All: string;
|
|
115
117
|
};
|
|
118
|
+
LOAN_ACTIVITY_HISTORY: {
|
|
119
|
+
FIND_All: string;
|
|
120
|
+
CREATE: string;
|
|
121
|
+
};
|
|
116
122
|
};
|
|
117
123
|
MIGRATE_BORROWER_STATS: string;
|
|
118
124
|
ACTIVITY_HISTORY: {
|
|
@@ -18,7 +18,7 @@ exports.BrokerMessages = {
|
|
|
18
18
|
HIERARCHY: 'USER-HIERARCHY',
|
|
19
19
|
REVERSE_HIERARCHY: 'USER-REVERSE-HIERARCHY',
|
|
20
20
|
UPDATE_USER_STATUS: 'UPDATE-USER-STATUS',
|
|
21
|
-
UPDATE_USER_TASK_DETAIL: 'UPDATE_USER_TASK_DETAIL'
|
|
21
|
+
UPDATE_USER_TASK_DETAIL: 'UPDATE_USER_TASK_DETAIL',
|
|
22
22
|
},
|
|
23
23
|
ROLE: {
|
|
24
24
|
CREATE: 'CREATE-ROLE',
|
|
@@ -63,6 +63,7 @@ exports.BrokerMessages = {
|
|
|
63
63
|
FIND_ALL_CAMPAIGN_USER: 'FIND_ALL-CAMPAIGN-USER',
|
|
64
64
|
MIGRATE_CAMPAIGN: 'MIGRATE-CAMPAIGN',
|
|
65
65
|
MIGRATE_CAMPAIGN_USER: 'MIGRATE-CAMPAIGN-USER',
|
|
66
|
+
FIND_CAMPAIGN_USER_MAPPING: 'FIND-CAMPAIGN-USER-MAPPING',
|
|
66
67
|
},
|
|
67
68
|
DIALER: {
|
|
68
69
|
LOGIN: 'dialer-login',
|
|
@@ -109,12 +110,17 @@ exports.BrokerMessages = {
|
|
|
109
110
|
LOAN: {
|
|
110
111
|
FIND_ALL: 'GET-ALL-LOAN-LIST',
|
|
111
112
|
FIND_ONE: 'GET-LOAN-DETAILS',
|
|
113
|
+
FIND_LOAN_BY_BORROWER_ID: 'FIND-LOAN-BY-BORROWER-ID',
|
|
112
114
|
TAGS: {
|
|
113
115
|
CREATE: 'CREATE-TAG',
|
|
114
116
|
REMOVE: 'REMOVE-TAG',
|
|
115
117
|
},
|
|
116
118
|
LOAN_HISTORY: {
|
|
117
|
-
FIND_All: 'GET-
|
|
119
|
+
FIND_All: 'GET-LOAN-HISTORY',
|
|
120
|
+
},
|
|
121
|
+
LOAN_ACTIVITY_HISTORY: {
|
|
122
|
+
FIND_All: 'GET-LOAN-ACTIVITY-HISTORY',
|
|
123
|
+
CREATE: 'CREATE-LOAN-ACTIVITY-HISTORY',
|
|
118
124
|
},
|
|
119
125
|
},
|
|
120
126
|
MIGRATE_BORROWER_STATS: 'MIGRATE-BORROWER-STATS',
|
|
@@ -15,7 +15,7 @@ export const BrokerMessages = {
|
|
|
15
15
|
HIERARCHY: 'USER-HIERARCHY',
|
|
16
16
|
REVERSE_HIERARCHY: 'USER-REVERSE-HIERARCHY',
|
|
17
17
|
UPDATE_USER_STATUS: 'UPDATE-USER-STATUS',
|
|
18
|
-
UPDATE_USER_TASK_DETAIL:'UPDATE_USER_TASK_DETAIL'
|
|
18
|
+
UPDATE_USER_TASK_DETAIL: 'UPDATE_USER_TASK_DETAIL',
|
|
19
19
|
},
|
|
20
20
|
ROLE: {
|
|
21
21
|
CREATE: 'CREATE-ROLE',
|
|
@@ -60,6 +60,7 @@ export const BrokerMessages = {
|
|
|
60
60
|
FIND_ALL_CAMPAIGN_USER: 'FIND_ALL-CAMPAIGN-USER',
|
|
61
61
|
MIGRATE_CAMPAIGN: 'MIGRATE-CAMPAIGN',
|
|
62
62
|
MIGRATE_CAMPAIGN_USER: 'MIGRATE-CAMPAIGN-USER',
|
|
63
|
+
FIND_CAMPAIGN_USER_MAPPING: 'FIND-CAMPAIGN-USER-MAPPING',
|
|
63
64
|
},
|
|
64
65
|
DIALER: {
|
|
65
66
|
LOGIN: 'dialer-login',
|
|
@@ -106,12 +107,17 @@ export const BrokerMessages = {
|
|
|
106
107
|
LOAN: {
|
|
107
108
|
FIND_ALL: 'GET-ALL-LOAN-LIST',
|
|
108
109
|
FIND_ONE: 'GET-LOAN-DETAILS',
|
|
110
|
+
FIND_LOAN_BY_BORROWER_ID: 'FIND-LOAN-BY-BORROWER-ID',
|
|
109
111
|
TAGS: {
|
|
110
112
|
CREATE: 'CREATE-TAG',
|
|
111
113
|
REMOVE: 'REMOVE-TAG',
|
|
112
114
|
},
|
|
113
115
|
LOAN_HISTORY: {
|
|
114
|
-
FIND_All: 'GET-
|
|
116
|
+
FIND_All: 'GET-LOAN-HISTORY',
|
|
117
|
+
},
|
|
118
|
+
LOAN_ACTIVITY_HISTORY: {
|
|
119
|
+
FIND_All: 'GET-LOAN-ACTIVITY-HISTORY',
|
|
120
|
+
CREATE: 'CREATE-LOAN-ACTIVITY-HISTORY',
|
|
115
121
|
},
|
|
116
122
|
},
|
|
117
123
|
MIGRATE_BORROWER_STATS: 'MIGRATE-BORROWER-STATS',
|
package/constants/index.d.ts
CHANGED
package/constants/index.js
CHANGED
|
@@ -102,7 +102,7 @@ exports.userModules = {
|
|
|
102
102
|
Breaks: 30,
|
|
103
103
|
PaymentAccounts: 31,
|
|
104
104
|
PaymentLinks: 32,
|
|
105
|
-
ClientDispositions: 33
|
|
105
|
+
ClientDispositions: 33,
|
|
106
106
|
};
|
|
107
107
|
exports.dispoSubDispo = {
|
|
108
108
|
dispositions: {
|
|
@@ -240,7 +240,7 @@ exports.Constants = {
|
|
|
240
240
|
SLUG: 'list_centers',
|
|
241
241
|
DESCRIPTION: 'List centers',
|
|
242
242
|
MODULE_ID: exports.userModules.Centers,
|
|
243
|
-
}
|
|
243
|
+
},
|
|
244
244
|
},
|
|
245
245
|
DISPOSITIONS: {
|
|
246
246
|
ADD: {
|
|
@@ -272,7 +272,7 @@ exports.Constants = {
|
|
|
272
272
|
SLUG: 'delete_dispositions',
|
|
273
273
|
DESCRIPTION: 'Delete Dispositions',
|
|
274
274
|
MODULE_ID: exports.userModules.Dispositions,
|
|
275
|
-
}
|
|
275
|
+
},
|
|
276
276
|
},
|
|
277
277
|
BREACK: {
|
|
278
278
|
ADD: {
|
|
@@ -304,7 +304,7 @@ exports.Constants = {
|
|
|
304
304
|
SLUG: 'delete_break',
|
|
305
305
|
DESCRIPTION: 'Delete break',
|
|
306
306
|
MODULE_ID: exports.userModules.Breaks,
|
|
307
|
-
}
|
|
307
|
+
},
|
|
308
308
|
},
|
|
309
309
|
SETUP_MASTER: {
|
|
310
310
|
TITLE: 'Setup/Master',
|
|
@@ -342,7 +342,7 @@ exports.Constants = {
|
|
|
342
342
|
SLUG: 'delete_permissions',
|
|
343
343
|
DESCRIPTION: 'Delete Permissions',
|
|
344
344
|
MODULE_ID: exports.userModules.Permissions,
|
|
345
|
-
}
|
|
345
|
+
},
|
|
346
346
|
},
|
|
347
347
|
DASHBOARD: {
|
|
348
348
|
ADMIN_DASHBOARD: {
|
|
@@ -537,8 +537,8 @@ exports.Constants = {
|
|
|
537
537
|
SLUG: 'delete_client_dispositions',
|
|
538
538
|
DESCRIPTION: 'Delete Client Dispositions',
|
|
539
539
|
MODULE_ID: exports.userModules.ClientDispositions,
|
|
540
|
-
}
|
|
541
|
-
}
|
|
540
|
+
},
|
|
541
|
+
},
|
|
542
542
|
},
|
|
543
543
|
CAMPAIGN: {
|
|
544
544
|
LIST: {
|
|
@@ -794,7 +794,7 @@ exports.Constants = {
|
|
|
794
794
|
DESCRIPTION: 'Export Agent Productivity',
|
|
795
795
|
MODULE_ID: exports.userModules.AgentProductivity,
|
|
796
796
|
},
|
|
797
|
-
}
|
|
797
|
+
},
|
|
798
798
|
},
|
|
799
799
|
SETTLEMENTS: {
|
|
800
800
|
ADD: {
|
|
@@ -852,65 +852,65 @@ exports.Constants = {
|
|
|
852
852
|
TITLE: 'Add Payment account',
|
|
853
853
|
SLUG: 'add_payment_account',
|
|
854
854
|
DESCRIPTION: 'Add Payment account',
|
|
855
|
-
MODULE_ID: exports.userModules.PaymentAccounts
|
|
855
|
+
MODULE_ID: exports.userModules.PaymentAccounts,
|
|
856
856
|
},
|
|
857
857
|
GET: {
|
|
858
858
|
TITLE: 'Get Payment account',
|
|
859
859
|
SLUG: 'get_payment_account',
|
|
860
860
|
DESCRIPTION: 'Get Payment account',
|
|
861
|
-
MODULE_ID: exports.userModules.PaymentAccounts
|
|
861
|
+
MODULE_ID: exports.userModules.PaymentAccounts,
|
|
862
862
|
},
|
|
863
863
|
LIST: {
|
|
864
864
|
TITLE: 'Get Payment accounts',
|
|
865
865
|
SLUG: 'get_payment_accounts',
|
|
866
866
|
DESCRIPTION: 'Get Payment accounts',
|
|
867
|
-
MODULE_ID: exports.userModules.PaymentAccounts
|
|
867
|
+
MODULE_ID: exports.userModules.PaymentAccounts,
|
|
868
868
|
},
|
|
869
869
|
UPDATE: {
|
|
870
870
|
TITLE: 'Update Payment account',
|
|
871
871
|
SLUG: 'update_payment_account',
|
|
872
872
|
DESCRIPTION: 'Update Payment account',
|
|
873
|
-
MODULE_ID: exports.userModules.PaymentAccounts
|
|
873
|
+
MODULE_ID: exports.userModules.PaymentAccounts,
|
|
874
874
|
},
|
|
875
875
|
REMOVE: {
|
|
876
876
|
TITLE: 'Delete Payment account',
|
|
877
877
|
SLUG: 'delete_payment_account',
|
|
878
878
|
DESCRIPTION: 'Delete Payment account',
|
|
879
|
-
MODULE_ID: exports.userModules.PaymentAccounts
|
|
880
|
-
}
|
|
879
|
+
MODULE_ID: exports.userModules.PaymentAccounts,
|
|
880
|
+
},
|
|
881
881
|
},
|
|
882
882
|
CODE: {
|
|
883
883
|
ADD: {
|
|
884
884
|
TITLE: 'Add code',
|
|
885
885
|
SLUG: 'add_code',
|
|
886
886
|
DESCRIPTION: 'Add code',
|
|
887
|
-
MODULE_ID: exports.userModules.PaymentLinks
|
|
887
|
+
MODULE_ID: exports.userModules.PaymentLinks,
|
|
888
888
|
},
|
|
889
889
|
GET: {
|
|
890
890
|
TITLE: 'Get code',
|
|
891
891
|
SLUG: 'get_code',
|
|
892
892
|
DESCRIPTION: 'Get code',
|
|
893
|
-
MODULE_ID: exports.userModules.PaymentLinks
|
|
893
|
+
MODULE_ID: exports.userModules.PaymentLinks,
|
|
894
894
|
},
|
|
895
895
|
LIST: {
|
|
896
896
|
TITLE: 'Get code',
|
|
897
897
|
SLUG: 'get_code',
|
|
898
898
|
DESCRIPTION: 'Get code',
|
|
899
|
-
MODULE_ID: exports.userModules.PaymentLinks
|
|
899
|
+
MODULE_ID: exports.userModules.PaymentLinks,
|
|
900
900
|
},
|
|
901
901
|
UPDATE: {
|
|
902
902
|
TITLE: 'Update code',
|
|
903
903
|
SLUG: 'update_code',
|
|
904
904
|
DESCRIPTION: 'Update code',
|
|
905
|
-
MODULE_ID: exports.userModules.PaymentLinks
|
|
905
|
+
MODULE_ID: exports.userModules.PaymentLinks,
|
|
906
906
|
},
|
|
907
907
|
REMOVE: {
|
|
908
908
|
TITLE: 'Delete code',
|
|
909
909
|
SLUG: 'delete_code',
|
|
910
910
|
DESCRIPTION: 'Delete code',
|
|
911
|
-
MODULE_ID: exports.userModules.PaymentLinks
|
|
912
|
-
}
|
|
913
|
-
}
|
|
911
|
+
MODULE_ID: exports.userModules.PaymentLinks,
|
|
912
|
+
},
|
|
913
|
+
},
|
|
914
914
|
},
|
|
915
915
|
LOG: {
|
|
916
916
|
AUDIT: {
|
|
@@ -926,7 +926,7 @@ exports.Constants = {
|
|
|
926
926
|
DESCRIPTION: 'Export AuditLog',
|
|
927
927
|
MODULE_ID: exports.userModules.AuditLog,
|
|
928
928
|
},
|
|
929
|
-
}
|
|
929
|
+
},
|
|
930
930
|
},
|
|
931
931
|
LIVE_CHAT: {
|
|
932
932
|
LIST: {
|
|
@@ -942,13 +942,13 @@ exports.Constants = {
|
|
|
942
942
|
TITLE: 'View File listing',
|
|
943
943
|
SLUG: 'view_file_listing',
|
|
944
944
|
DESCRIPTION: 'View File listing',
|
|
945
|
-
MODULE_ID: exports.userModules.Files
|
|
945
|
+
MODULE_ID: exports.userModules.Files,
|
|
946
946
|
},
|
|
947
947
|
ATTACHMENT: {
|
|
948
948
|
TITLE: 'View Other documents/Attachments',
|
|
949
949
|
SLUG: 'view_attachments_file',
|
|
950
950
|
DESCRIPTION: 'View Other documents/Attachments',
|
|
951
|
-
MODULE_ID: exports.userModules.Files
|
|
951
|
+
MODULE_ID: exports.userModules.Files,
|
|
952
952
|
},
|
|
953
953
|
},
|
|
954
954
|
UPLOAD: {
|
|
@@ -956,19 +956,19 @@ exports.Constants = {
|
|
|
956
956
|
TITLE: 'Upload Borrowers File',
|
|
957
957
|
SLUG: 'upload_borrower_file',
|
|
958
958
|
DESCRIPTION: 'Upload Borrowers File',
|
|
959
|
-
MODULE_ID: exports.userModules.Files
|
|
959
|
+
MODULE_ID: exports.userModules.Files,
|
|
960
960
|
},
|
|
961
961
|
PAYMENT: {
|
|
962
962
|
TITLE: 'Upload Payments File',
|
|
963
963
|
SLUG: 'upload_payments_file',
|
|
964
964
|
DESCRIPTION: 'Upload Payments File',
|
|
965
|
-
MODULE_ID: exports.userModules.Files
|
|
965
|
+
MODULE_ID: exports.userModules.Files,
|
|
966
966
|
},
|
|
967
967
|
ATTACHMENTS: {
|
|
968
968
|
TITLE: 'Upload Other documents/Attachments',
|
|
969
969
|
SLUG: 'upload_attachments_file',
|
|
970
970
|
DESCRIPTION: 'Upload Other documents/Attachments',
|
|
971
|
-
MODULE_ID: exports.userModules.Files
|
|
971
|
+
MODULE_ID: exports.userModules.Files,
|
|
972
972
|
},
|
|
973
973
|
},
|
|
974
974
|
REMOVE: {
|
|
@@ -976,14 +976,14 @@ exports.Constants = {
|
|
|
976
976
|
TITLE: 'Remove Other documents/Attachments',
|
|
977
977
|
SLUG: 'remove_attachments_file',
|
|
978
978
|
DESCRIPTION: 'Remove Other documents/Attachments',
|
|
979
|
-
MODULE_ID: exports.userModules.Files
|
|
979
|
+
MODULE_ID: exports.userModules.Files,
|
|
980
980
|
},
|
|
981
|
-
}
|
|
982
|
-
}
|
|
983
|
-
}
|
|
984
|
-
}
|
|
985
|
-
}
|
|
986
|
-
}
|
|
981
|
+
},
|
|
982
|
+
},
|
|
983
|
+
},
|
|
984
|
+
},
|
|
985
|
+
},
|
|
986
|
+
},
|
|
987
987
|
};
|
|
988
988
|
exports.validateTableCols = {
|
|
989
989
|
userScreen: {
|
|
@@ -1046,4 +1046,5 @@ var RecordType;
|
|
|
1046
1046
|
RecordType["NEW_LOANS"] = "newLoans";
|
|
1047
1047
|
RecordType["MISSING_LOANS"] = "missingLoans";
|
|
1048
1048
|
RecordType["EXIST_LOANS"] = "existLoans";
|
|
1049
|
+
RecordType["LOAN_ID"] = "loansId";
|
|
1049
1050
|
})(RecordType || (exports.RecordType = RecordType = {}));
|