gemcap-be-common 1.4.50 → 1.4.51
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.
|
@@ -86,6 +86,7 @@ export declare const sharepointFoldersDictionary: {
|
|
|
86
86
|
readonly financialsBankStatements: "05. Financials and Bank Statements";
|
|
87
87
|
readonly historicalFinancials: "a. Historical Financials";
|
|
88
88
|
readonly projections: "b. Projections";
|
|
89
|
+
readonly bankStatements: "c. Bank Statements";
|
|
89
90
|
readonly accountsPayables: "d. Accounts Payables";
|
|
90
91
|
readonly currentDebt: "e. Current Debt";
|
|
91
92
|
readonly majorContracts: "06. Major Contracts";
|
package/models/Prospect.model.js
CHANGED
|
@@ -110,6 +110,7 @@ exports.sharepointFoldersDictionary = {
|
|
|
110
110
|
// > Underwriting > 01. Due Diligence > 05. Financials and Bank Statements
|
|
111
111
|
historicalFinancials: 'a. Historical Financials',
|
|
112
112
|
projections: 'b. Projections',
|
|
113
|
+
bankStatements: 'c. Bank Statements',
|
|
113
114
|
accountsPayables: 'd. Accounts Payables',
|
|
114
115
|
currentDebt: 'e. Current Debt',
|
|
115
116
|
// > Underwriting > 01. Due Diligence
|
package/models/Prospect.model.ts
CHANGED
|
@@ -121,6 +121,7 @@ export const sharepointFoldersDictionary = {
|
|
|
121
121
|
// > Underwriting > 01. Due Diligence > 05. Financials and Bank Statements
|
|
122
122
|
historicalFinancials: 'a. Historical Financials',
|
|
123
123
|
projections: 'b. Projections',
|
|
124
|
+
bankStatements: 'c. Bank Statements',
|
|
124
125
|
accountsPayables: 'd. Accounts Payables',
|
|
125
126
|
currentDebt: 'e. Current Debt',
|
|
126
127
|
|