gemcap-be-common 1.4.126 → 1.4.128

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.
@@ -26,7 +26,7 @@ import mongoose, { Model } from 'mongoose';
26
26
  export interface IFinancialSpreadingSummary {
27
27
  borrowerId: mongoose.Types.ObjectId;
28
28
  rawData: string;
29
- result: string;
29
+ summary: string;
30
30
  }
31
31
  export interface IFinancialSpreadingSummaryDoc extends IFinancialSpreadingSummary, Document {
32
32
  _id: mongoose.Types.ObjectId;
@@ -15,7 +15,7 @@ exports.FinancialSpreadingSummarySchema = new mongoose_1.default.Schema({
15
15
  rawData: {
16
16
  type: mongoose_1.default.Schema.Types.Mixed,
17
17
  },
18
- result: {
18
+ summary: {
19
19
  type: String,
20
20
  },
21
21
  }, {
@@ -5,7 +5,7 @@ import { MODEL_NAMES } from './_models';
5
5
  export interface IFinancialSpreadingSummary {
6
6
  borrowerId: mongoose.Types.ObjectId;
7
7
  rawData: string;
8
- result: string;
8
+ summary: string;
9
9
  }
10
10
 
11
11
  export interface IFinancialSpreadingSummaryDoc extends IFinancialSpreadingSummary, Document {
@@ -39,7 +39,7 @@ export const FinancialSpreadingSummarySchema = new mongoose.Schema<IFinancialSpr
39
39
  rawData: {
40
40
  type: mongoose.Schema.Types.Mixed,
41
41
  },
42
- result: {
42
+ summary: {
43
43
  type: String,
44
44
  },
45
45
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.4.126",
3
+ "version": "1.4.128",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -479,9 +479,9 @@ class PdfService {
479
479
  }
480
480
  const bankAccounts = {
481
481
  'Black Feather': [
482
- [{ text: 'Bank name' }, { text: 'Chase' }],
483
- [{ text: 'ABA' }, { text: '322271627' }],
484
- [{ text: 'Account' }, { text: '80009785264' }],
482
+ [{ text: 'Bank name' }, { text: 'BMO N.A' }],
483
+ [{ text: 'ABA' }, { text: '071000288' }],
484
+ [{ text: 'Account' }, { text: '1841261' }],
485
485
  ],
486
486
  'GemCap': [
487
487
  [{ text: 'Bank name' }, { text: 'CIBC Bank USA' }],
@@ -493,7 +493,7 @@ class PdfService {
493
493
  const paymentInstruction = [
494
494
  [{ text: 'Please remit payment to', fillColor: '#44464b', color: 'white' }, { text: '', fillColor: '#44464b' }],
495
495
  ...bankAccounts[organization.name],
496
- [{ text: 'Account name' }, { text: `${this.config.title} Solutions Master Concentration` }],
496
+ [{ text: 'Account name' }, { text: `${this.config.title} Funding AssetCo LLC Collection Account` }],
497
497
  [{ text: 'Reference' }, { text: `${borrower.code} - STATEMENT PAYMENT` }],
498
498
  [{ text: 'The reference is required to ensure timely settlement of your account.', color: 'red' }, {}],
499
499
  ];
@@ -569,9 +569,9 @@ export class PdfService {
569
569
 
570
570
  const bankAccounts = {
571
571
  'Black Feather': [
572
- [{ text: 'Bank name' }, { text: 'Chase' }],
573
- [{ text: 'ABA' }, { text: '322271627' }],
574
- [{ text: 'Account' }, { text: '80009785264' }],
572
+ [{ text: 'Bank name' }, { text: 'BMO N.A' }],
573
+ [{ text: 'ABA' }, { text: '071000288' }],
574
+ [{ text: 'Account' }, { text: '1841261' }],
575
575
  ],
576
576
  'GemCap': [
577
577
  [{ text: 'Bank name' }, { text: 'CIBC Bank USA' }],
@@ -584,7 +584,7 @@ export class PdfService {
584
584
  const paymentInstruction = [
585
585
  [{ text: 'Please remit payment to', fillColor: '#44464b', color: 'white' }, { text: '', fillColor: '#44464b' }],
586
586
  ...bankAccounts[organization.name],
587
- [{ text: 'Account name' }, { text: `${this.config.title} Solutions Master Concentration` }],
587
+ [{ text: 'Account name' }, { text: `${this.config.title} Funding AssetCo LLC Collection Account` }],
588
588
  [{ text: 'Reference' }, { text: `${borrower.code} - STATEMENT PAYMENT` }],
589
589
  [{ text: 'The reference is required to ensure timely settlement of your account.', color: 'red' }, {}],
590
590
  ];