gemcap-be-common 1.4.127 → 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.
package/package.json
CHANGED
package/services/pdf.service.js
CHANGED
|
@@ -479,9 +479,9 @@ class PdfService {
|
|
|
479
479
|
}
|
|
480
480
|
const bankAccounts = {
|
|
481
481
|
'Black Feather': [
|
|
482
|
-
[{ text: 'Bank name' }, { text: '
|
|
483
|
-
[{ text: 'ABA' }, { text: '
|
|
484
|
-
[{ text: 'Account' }, { text: '
|
|
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}
|
|
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
|
];
|
package/services/pdf.service.ts
CHANGED
|
@@ -569,9 +569,9 @@ export class PdfService {
|
|
|
569
569
|
|
|
570
570
|
const bankAccounts = {
|
|
571
571
|
'Black Feather': [
|
|
572
|
-
[{ text: 'Bank name' }, { text: '
|
|
573
|
-
[{ text: 'ABA' }, { text: '
|
|
574
|
-
[{ text: 'Account' }, { text: '
|
|
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}
|
|
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
|
];
|