@cleardu/types 1.0.93 → 1.0.94
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
|
@@ -63,6 +63,8 @@ export interface ILoans extends DatabaseObject {
|
|
|
63
63
|
loanTags?: ITags[];
|
|
64
64
|
client?: IClients;
|
|
65
65
|
loanPortfolio?: IPortfolios;
|
|
66
|
+
}
|
|
67
|
+
export interface ILoanMapingUser extends ILoans {
|
|
66
68
|
loanUsers?: ILoanUsers[];
|
|
67
69
|
}
|
|
68
70
|
export interface ILoanUsers {
|
|
@@ -108,3 +110,21 @@ export interface DialerData {
|
|
|
108
110
|
uId: string;
|
|
109
111
|
agentId?: string;
|
|
110
112
|
}
|
|
113
|
+
export interface ILoanActivityHistoryPayload {
|
|
114
|
+
loanId: number;
|
|
115
|
+
fromDate?: string;
|
|
116
|
+
toDate?: string;
|
|
117
|
+
page: number;
|
|
118
|
+
size: number;
|
|
119
|
+
q: string;
|
|
120
|
+
}
|
|
121
|
+
export interface IActivityHistory {
|
|
122
|
+
loanId: number;
|
|
123
|
+
clientBorrowerId: string;
|
|
124
|
+
action: string;
|
|
125
|
+
status: string;
|
|
126
|
+
disposition: string;
|
|
127
|
+
type: string;
|
|
128
|
+
referenceId: number;
|
|
129
|
+
createdBy: number;
|
|
130
|
+
}
|
|
@@ -64,6 +64,8 @@ export interface ILoans extends DatabaseObject {
|
|
|
64
64
|
loanTags?: ITags[];
|
|
65
65
|
client?: IClients;
|
|
66
66
|
loanPortfolio?: IPortfolios;
|
|
67
|
+
}
|
|
68
|
+
export interface ILoanMapingUser extends ILoans {
|
|
67
69
|
loanUsers?: ILoanUsers[];
|
|
68
70
|
}
|
|
69
71
|
|
|
@@ -115,3 +117,22 @@ export interface DialerData {
|
|
|
115
117
|
uId: string;
|
|
116
118
|
agentId?: string; // Optional field, only added for 'Progressive' campaigns
|
|
117
119
|
}
|
|
120
|
+
|
|
121
|
+
export interface ILoanActivityHistoryPayload {
|
|
122
|
+
loanId: number;
|
|
123
|
+
fromDate?: string;
|
|
124
|
+
toDate?: string;
|
|
125
|
+
page: number;
|
|
126
|
+
size: number;
|
|
127
|
+
q: string;
|
|
128
|
+
}
|
|
129
|
+
export interface IActivityHistory {
|
|
130
|
+
loanId: number;
|
|
131
|
+
clientBorrowerId: string;
|
|
132
|
+
action: string;
|
|
133
|
+
status: string;
|
|
134
|
+
disposition: string;
|
|
135
|
+
type: string;
|
|
136
|
+
referenceId: number;
|
|
137
|
+
createdBy: number;
|
|
138
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DatabaseObject } from '../baseObject';
|
|
2
|
+
export interface ILoansActivityHistory extends DatabaseObject {
|
|
3
|
+
loanId: number;
|
|
4
|
+
clientBorrowerId: string;
|
|
5
|
+
action: string;
|
|
6
|
+
status: string;
|
|
7
|
+
disposition: string;
|
|
8
|
+
type?: string;
|
|
9
|
+
referenceId: number;
|
|
10
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { DatabaseObject } from '../baseObject';
|
|
2
|
+
|
|
3
|
+
export interface ILoansActivityHistory extends DatabaseObject {
|
|
4
|
+
loanId: number;
|
|
5
|
+
clientBorrowerId: string;
|
|
6
|
+
action: string;
|
|
7
|
+
status: string;
|
|
8
|
+
disposition: string;
|
|
9
|
+
type?: string;
|
|
10
|
+
referenceId: number;
|
|
11
|
+
}
|