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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.3.125",
3
+ "version": "1.3.126",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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, "items" | "borrower" | "fundingStatus"> | {
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;
@@ -85,7 +85,7 @@ export declare class LoanPaymentsService {
85
85
  productTotals: {
86
86
  [productId: string]: number;
87
87
  };
88
- balanceRevolver: number;
88
+ revolverBalance: number;
89
89
  termBalance: number;
90
90
  }[];
91
91
  isCalculated: boolean;
@@ -415,7 +415,7 @@ class LoanPaymentsService {
415
415
  borrowerTitle: borrower.name,
416
416
  totalDue: dueAmounts.total,
417
417
  productTotals: dueAmounts.productTotals,
418
- balanceRevolver: dueAmounts.revolverBalance,
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
- balanceRevolver: dueAmounts.revolverBalance,
465
+ revolverBalance: dueAmounts.revolverBalance,
466
466
  termBalance: dueAmounts.termBalance,
467
467
  };
468
468
  }),