gemcap-be-common 1.5.166 → 1.5.168
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/models/Borrower.model.d.ts +4 -0
- package/models/Borrower.model.js +4 -0
- package/models/Borrower.model.ts +5 -1
- package/models/ProductBroker.model.d.ts +23 -13
- package/models/ProductBroker.model.js +12 -0
- package/models/ProductBroker.model.ts +17 -1
- package/package.json +1 -1
- package/services/borrowers.service.d.ts +2 -2
- package/services/brokers.service.js +2 -0
- package/services/brokers.service.ts +2 -0
- package/services/loan-transactions.service.d.ts +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -40,6 +40,7 @@ export interface IBorrower {
|
|
|
40
40
|
accrualStatus: boolean;
|
|
41
41
|
accrueToReserve: boolean;
|
|
42
42
|
accrueToReserveAppliedFrom: Date | null;
|
|
43
|
+
reserveCodeCompanyId: mongoose.Types.ObjectId | null;
|
|
43
44
|
reserveCodeId: mongoose.Types.ObjectId | null;
|
|
44
45
|
organizationId: mongoose.Types.ObjectId;
|
|
45
46
|
schemas: IMapSchema[];
|
|
@@ -77,6 +78,7 @@ export declare const BorrowerSchema: mongoose.Schema<any, mongoose.Model<any, an
|
|
|
77
78
|
organizationId?: mongoose.Types.ObjectId;
|
|
78
79
|
reserveCodeId?: mongoose.Types.ObjectId;
|
|
79
80
|
accrueToReserveAppliedFrom?: Date;
|
|
81
|
+
reserveCodeCompanyId?: mongoose.Types.ObjectId;
|
|
80
82
|
schemas?: mongoose.Types.DocumentArray<{
|
|
81
83
|
name: string;
|
|
82
84
|
type: string;
|
|
@@ -99,6 +101,7 @@ export declare const BorrowerSchema: mongoose.Schema<any, mongoose.Model<any, an
|
|
|
99
101
|
organizationId?: mongoose.Types.ObjectId;
|
|
100
102
|
reserveCodeId?: mongoose.Types.ObjectId;
|
|
101
103
|
accrueToReserveAppliedFrom?: Date;
|
|
104
|
+
reserveCodeCompanyId?: mongoose.Types.ObjectId;
|
|
102
105
|
schemas?: mongoose.Types.DocumentArray<{
|
|
103
106
|
name: string;
|
|
104
107
|
type: string;
|
|
@@ -121,6 +124,7 @@ export declare const BorrowerSchema: mongoose.Schema<any, mongoose.Model<any, an
|
|
|
121
124
|
organizationId?: mongoose.Types.ObjectId;
|
|
122
125
|
reserveCodeId?: mongoose.Types.ObjectId;
|
|
123
126
|
accrueToReserveAppliedFrom?: Date;
|
|
127
|
+
reserveCodeCompanyId?: mongoose.Types.ObjectId;
|
|
124
128
|
schemas?: mongoose.Types.DocumentArray<{
|
|
125
129
|
name: string;
|
|
126
130
|
type: string;
|
package/models/Borrower.model.js
CHANGED
|
@@ -38,6 +38,10 @@ exports.BorrowerSchema = new mongoose_1.default.Schema({
|
|
|
38
38
|
accrueToReserveAppliedFrom: {
|
|
39
39
|
type: Date,
|
|
40
40
|
},
|
|
41
|
+
reserveCodeCompanyId: {
|
|
42
|
+
type: mongoose_1.default.Schema.Types.ObjectId,
|
|
43
|
+
ref: _models_1.MODEL_NAMES.companies,
|
|
44
|
+
},
|
|
41
45
|
reserveCodeId: {
|
|
42
46
|
type: mongoose_1.default.Schema.Types.ObjectId,
|
|
43
47
|
ref: _models_1.MODEL_NAMES.quickbooksAccounts,
|
package/models/Borrower.model.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import mongoose, { Document, Model } from 'mongoose';
|
|
2
2
|
import { MODEL_NAMES } from './_models';
|
|
3
|
-
import { IOrganization } from './Organization.model';
|
|
4
3
|
|
|
5
4
|
const mongooseLeanId = require('gemcap-be-common/plugins/id.plugin');
|
|
6
5
|
|
|
@@ -23,6 +22,7 @@ export interface IBorrower {
|
|
|
23
22
|
accrualStatus: boolean;
|
|
24
23
|
accrueToReserve: boolean;
|
|
25
24
|
accrueToReserveAppliedFrom: Date | null;
|
|
25
|
+
reserveCodeCompanyId: mongoose.Types.ObjectId | null;
|
|
26
26
|
reserveCodeId: mongoose.Types.ObjectId | null;
|
|
27
27
|
organizationId: mongoose.Types.ObjectId;
|
|
28
28
|
schemas: IMapSchema[];
|
|
@@ -82,6 +82,10 @@ export const BorrowerSchema = new mongoose.Schema(
|
|
|
82
82
|
accrueToReserveAppliedFrom: {
|
|
83
83
|
type: Date,
|
|
84
84
|
},
|
|
85
|
+
reserveCodeCompanyId: {
|
|
86
|
+
type: mongoose.Schema.Types.ObjectId,
|
|
87
|
+
ref: MODEL_NAMES.companies,
|
|
88
|
+
},
|
|
85
89
|
reserveCodeId: {
|
|
86
90
|
type: mongoose.Schema.Types.ObjectId,
|
|
87
91
|
ref: MODEL_NAMES.quickbooksAccounts,
|
|
@@ -33,7 +33,9 @@ export interface IProductBroker {
|
|
|
33
33
|
active: boolean;
|
|
34
34
|
loanBrokerId: mongoose.Types.ObjectId;
|
|
35
35
|
BSCode: string;
|
|
36
|
+
BSCodeId: mongoose.Types.ObjectId;
|
|
36
37
|
PLCode: string;
|
|
38
|
+
PLCodeId: mongoose.Types.ObjectId;
|
|
37
39
|
productId: mongoose.Types.ObjectId;
|
|
38
40
|
baseInterestTotal: number;
|
|
39
41
|
interestShare: number;
|
|
@@ -46,11 +48,13 @@ export interface IProductBrokerLean extends IProductBroker {
|
|
|
46
48
|
createdAt: Date;
|
|
47
49
|
updatedAt: Date;
|
|
48
50
|
}
|
|
49
|
-
export interface IProductBrokerPlain extends Omit<IProductBroker, 'borrowerId' | 'loanBrokerId' | 'productId'> {
|
|
51
|
+
export interface IProductBrokerPlain extends Omit<IProductBroker, 'borrowerId' | 'loanBrokerId' | 'productId' | 'BSCodeId' | 'PLCodeId'> {
|
|
50
52
|
_id: string;
|
|
51
53
|
borrowerId: string;
|
|
52
54
|
loanBrokerId: string;
|
|
53
55
|
productId: string;
|
|
56
|
+
BSCodeId: string;
|
|
57
|
+
PLCodeId: string;
|
|
54
58
|
}
|
|
55
59
|
export interface IProductBrokerDocWithLoanBroker extends TProductBrokerDoc {
|
|
56
60
|
loanBroker: ILoanBrokerLean;
|
|
@@ -63,14 +67,16 @@ export declare const ProductBrokerSchema: mongoose.Schema<any, mongoose.Model<an
|
|
|
63
67
|
createdAt: NativeDate;
|
|
64
68
|
updatedAt: NativeDate;
|
|
65
69
|
} & {
|
|
66
|
-
|
|
67
|
-
productId: mongoose.Types.ObjectId;
|
|
70
|
+
uiId: string;
|
|
68
71
|
order: number;
|
|
72
|
+
borrowerId: mongoose.Types.ObjectId;
|
|
69
73
|
active: boolean;
|
|
70
|
-
PLCode: string;
|
|
71
|
-
uiId: string;
|
|
72
74
|
loanBrokerId: mongoose.Types.ObjectId;
|
|
73
75
|
BSCode: string;
|
|
76
|
+
BSCodeId: mongoose.Types.ObjectId;
|
|
77
|
+
PLCode: string;
|
|
78
|
+
PLCodeId: mongoose.Types.ObjectId;
|
|
79
|
+
productId: mongoose.Types.ObjectId;
|
|
74
80
|
baseInterestTotal: number;
|
|
75
81
|
interestShare: number;
|
|
76
82
|
adminShare: number;
|
|
@@ -80,14 +86,16 @@ export declare const ProductBrokerSchema: mongoose.Schema<any, mongoose.Model<an
|
|
|
80
86
|
createdAt: NativeDate;
|
|
81
87
|
updatedAt: NativeDate;
|
|
82
88
|
} & {
|
|
83
|
-
|
|
84
|
-
productId: mongoose.Types.ObjectId;
|
|
89
|
+
uiId: string;
|
|
85
90
|
order: number;
|
|
91
|
+
borrowerId: mongoose.Types.ObjectId;
|
|
86
92
|
active: boolean;
|
|
87
|
-
PLCode: string;
|
|
88
|
-
uiId: string;
|
|
89
93
|
loanBrokerId: mongoose.Types.ObjectId;
|
|
90
94
|
BSCode: string;
|
|
95
|
+
BSCodeId: mongoose.Types.ObjectId;
|
|
96
|
+
PLCode: string;
|
|
97
|
+
PLCodeId: mongoose.Types.ObjectId;
|
|
98
|
+
productId: mongoose.Types.ObjectId;
|
|
91
99
|
baseInterestTotal: number;
|
|
92
100
|
interestShare: number;
|
|
93
101
|
adminShare: number;
|
|
@@ -97,14 +105,16 @@ export declare const ProductBrokerSchema: mongoose.Schema<any, mongoose.Model<an
|
|
|
97
105
|
createdAt: NativeDate;
|
|
98
106
|
updatedAt: NativeDate;
|
|
99
107
|
} & {
|
|
100
|
-
|
|
101
|
-
productId: mongoose.Types.ObjectId;
|
|
108
|
+
uiId: string;
|
|
102
109
|
order: number;
|
|
110
|
+
borrowerId: mongoose.Types.ObjectId;
|
|
103
111
|
active: boolean;
|
|
104
|
-
PLCode: string;
|
|
105
|
-
uiId: string;
|
|
106
112
|
loanBrokerId: mongoose.Types.ObjectId;
|
|
107
113
|
BSCode: string;
|
|
114
|
+
BSCodeId: mongoose.Types.ObjectId;
|
|
115
|
+
PLCode: string;
|
|
116
|
+
PLCodeId: mongoose.Types.ObjectId;
|
|
117
|
+
productId: mongoose.Types.ObjectId;
|
|
108
118
|
baseInterestTotal: number;
|
|
109
119
|
interestShare: number;
|
|
110
120
|
adminShare: number;
|
|
@@ -15,7 +15,9 @@ exports.ProductBrokerValidationSchema = joi_1.default.object({
|
|
|
15
15
|
active: joi_1.default.boolean().required(),
|
|
16
16
|
loanBrokerId: joi_1.default.string().required(),
|
|
17
17
|
BSCode: joi_1.default.string().required(),
|
|
18
|
+
BSCodeId: joi_1.default.string().required(),
|
|
18
19
|
PLCode: joi_1.default.string().required(),
|
|
20
|
+
PLCodeId: joi_1.default.string().required(),
|
|
19
21
|
productId: joi_1.default.string().required(),
|
|
20
22
|
baseInterestTotal: joi_1.default.number().required(),
|
|
21
23
|
interestShare: joi_1.default.number().required(),
|
|
@@ -51,11 +53,21 @@ exports.ProductBrokerSchema = new mongoose_1.default.Schema({
|
|
|
51
53
|
required: true,
|
|
52
54
|
trim: true,
|
|
53
55
|
},
|
|
56
|
+
BSCodeId: {
|
|
57
|
+
type: mongoose_1.default.Schema.Types.ObjectId,
|
|
58
|
+
ref: _models_1.MODEL_NAMES.quickbooksAccounts,
|
|
59
|
+
required: true,
|
|
60
|
+
},
|
|
54
61
|
PLCode: {
|
|
55
62
|
type: String,
|
|
56
63
|
required: true,
|
|
57
64
|
trim: true,
|
|
58
65
|
},
|
|
66
|
+
PLCodeId: {
|
|
67
|
+
type: mongoose_1.default.Schema.Types.ObjectId,
|
|
68
|
+
ref: _models_1.MODEL_NAMES.quickbooksAccounts,
|
|
69
|
+
required: true,
|
|
70
|
+
},
|
|
59
71
|
productId: {
|
|
60
72
|
type: mongoose_1.default.Schema.Types.ObjectId,
|
|
61
73
|
ref: _models_1.MODEL_NAMES.loanProducts,
|
|
@@ -12,7 +12,9 @@ export const ProductBrokerValidationSchema = Joi.object({
|
|
|
12
12
|
active: Joi.boolean().required(),
|
|
13
13
|
loanBrokerId: Joi.string().required(),
|
|
14
14
|
BSCode: Joi.string().required(),
|
|
15
|
+
BSCodeId: Joi.string().required(),
|
|
15
16
|
PLCode: Joi.string().required(),
|
|
17
|
+
PLCodeId: Joi.string().required(),
|
|
16
18
|
productId: Joi.string().required(),
|
|
17
19
|
baseInterestTotal: Joi.number().required(),
|
|
18
20
|
interestShare: Joi.number().required(),
|
|
@@ -27,7 +29,9 @@ export interface IProductBroker {
|
|
|
27
29
|
active: boolean;
|
|
28
30
|
loanBrokerId: mongoose.Types.ObjectId;
|
|
29
31
|
BSCode: string;
|
|
32
|
+
BSCodeId: mongoose.Types.ObjectId;
|
|
30
33
|
PLCode: string;
|
|
34
|
+
PLCodeId: mongoose.Types.ObjectId;
|
|
31
35
|
productId: mongoose.Types.ObjectId;
|
|
32
36
|
baseInterestTotal: number;
|
|
33
37
|
interestShare: number;
|
|
@@ -43,11 +47,13 @@ export interface IProductBrokerLean extends IProductBroker {
|
|
|
43
47
|
updatedAt: Date;
|
|
44
48
|
}
|
|
45
49
|
|
|
46
|
-
export interface IProductBrokerPlain extends Omit<IProductBroker, 'borrowerId' | 'loanBrokerId' | 'productId'> {
|
|
50
|
+
export interface IProductBrokerPlain extends Omit<IProductBroker, 'borrowerId' | 'loanBrokerId' | 'productId' | 'BSCodeId' | 'PLCodeId'> {
|
|
47
51
|
_id: string;
|
|
48
52
|
borrowerId: string;
|
|
49
53
|
loanBrokerId: string;
|
|
50
54
|
productId: string;
|
|
55
|
+
BSCodeId: string;
|
|
56
|
+
PLCodeId: string;
|
|
51
57
|
}
|
|
52
58
|
|
|
53
59
|
export interface IProductBrokerDocWithLoanBroker extends TProductBrokerDoc {
|
|
@@ -88,11 +94,21 @@ export const ProductBrokerSchema = new mongoose.Schema(
|
|
|
88
94
|
required: true,
|
|
89
95
|
trim: true,
|
|
90
96
|
},
|
|
97
|
+
BSCodeId: {
|
|
98
|
+
type: mongoose.Schema.Types.ObjectId,
|
|
99
|
+
ref: MODEL_NAMES.quickbooksAccounts,
|
|
100
|
+
required: true,
|
|
101
|
+
},
|
|
91
102
|
PLCode: {
|
|
92
103
|
type: String,
|
|
93
104
|
required: true,
|
|
94
105
|
trim: true,
|
|
95
106
|
},
|
|
107
|
+
PLCodeId: {
|
|
108
|
+
type: mongoose.Schema.Types.ObjectId,
|
|
109
|
+
ref: MODEL_NAMES.quickbooksAccounts,
|
|
110
|
+
required: true,
|
|
111
|
+
},
|
|
96
112
|
productId: {
|
|
97
113
|
type: mongoose.Schema.Types.ObjectId,
|
|
98
114
|
ref: MODEL_NAMES.loanProducts,
|
package/package.json
CHANGED
|
@@ -84,10 +84,10 @@ export declare class BorrowerService {
|
|
|
84
84
|
getBorrowerCodesMap(): Promise<Map<string, string>>;
|
|
85
85
|
getBorrowerStatementDetails(borrowers: IBorrowerDoc[]): Promise<{
|
|
86
86
|
[x: string]: {
|
|
87
|
-
SELECTED_PERIOD?: boolean;
|
|
88
87
|
ENTIRE_LOAN?: boolean;
|
|
89
|
-
|
|
88
|
+
SELECTED_PERIOD?: boolean;
|
|
90
89
|
CURRENT_MONTH?: boolean;
|
|
90
|
+
LAST_MONTH?: boolean;
|
|
91
91
|
TERM_LOAN?: boolean;
|
|
92
92
|
};
|
|
93
93
|
}>;
|
|
@@ -164,7 +164,7 @@ export declare class LoanTransactionsService {
|
|
|
164
164
|
getTransactionReport(transactionIds: string[], borrowerId: string, effectiveDate: Date): Promise<{
|
|
165
165
|
transactionIdsToMark: string[];
|
|
166
166
|
transactions: {
|
|
167
|
-
[x: string]: (string | number |
|
|
167
|
+
[x: string]: (string | number | string[] | Date)[];
|
|
168
168
|
}[];
|
|
169
169
|
}>;
|
|
170
170
|
getBorrowerIdsForFile(transactionFileId: string): Promise<{
|