@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.
@@ -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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cleardu/types",
3
- "version": "1.0.93",
3
+ "version": "1.0.95",
4
4
  "description": "Nest - modern, fast, powerful node.js web framework (@aws)",
5
5
  "author": "Kamil Mysliwiec",
6
6
  "license": "MIT",