gemcap-be-common 1.3.125 → 1.3.126
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/package.json
CHANGED
|
@@ -45,7 +45,7 @@ export declare class ComplianceBorrowersService {
|
|
|
45
45
|
};
|
|
46
46
|
};
|
|
47
47
|
getFullComplianceBorrowerById(complianceBorrowerId: any): Promise<any>;
|
|
48
|
-
getAllBorrowersShortened(userAccess: any): Promise<(Pick<IComplianceBorrowerDocument, "
|
|
48
|
+
getAllBorrowersShortened(userAccess: any): Promise<(Pick<IComplianceBorrowerDocument, "borrower" | "fundingStatus" | "items"> | {
|
|
49
49
|
items: {
|
|
50
50
|
instances: any[];
|
|
51
51
|
item: import("../models/ComplianceItem.model").IComplianceItemDocument;
|
|
@@ -415,7 +415,7 @@ class LoanPaymentsService {
|
|
|
415
415
|
borrowerTitle: borrower.name,
|
|
416
416
|
totalDue: dueAmounts.total,
|
|
417
417
|
productTotals: dueAmounts.productTotals,
|
|
418
|
-
|
|
418
|
+
revolverBalance: dueAmounts.revolverBalance,
|
|
419
419
|
termBalance: dueAmounts.termBalance,
|
|
420
420
|
};
|
|
421
421
|
}));
|
|
@@ -462,7 +462,7 @@ export class LoanPaymentsService {
|
|
|
462
462
|
borrowerTitle: borrower.name,
|
|
463
463
|
totalDue: dueAmounts.total,
|
|
464
464
|
productTotals: dueAmounts.productTotals,
|
|
465
|
-
|
|
465
|
+
revolverBalance: dueAmounts.revolverBalance,
|
|
466
466
|
termBalance: dueAmounts.termBalance,
|
|
467
467
|
};
|
|
468
468
|
}),
|