gemcap-be-common 1.4.39 → 1.4.40
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.
|
@@ -126,6 +126,9 @@ export declare enum EProspectFileGroups {
|
|
|
126
126
|
ownershipStructure = "ownershipStructure",
|
|
127
127
|
organizationStructure = "organizationStructure",
|
|
128
128
|
financialsBankInformation = "financialsBankInformation",
|
|
129
|
+
historicalFinancials = "historicalFinancials",
|
|
130
|
+
projections = "projections",
|
|
131
|
+
accountsPayables = "accountsPayables",
|
|
129
132
|
collateralSales = "collateralSales",
|
|
130
133
|
taxes = "taxes",
|
|
131
134
|
taxesIncome = "taxesIncome",
|
package/models/Prospect.model.js
CHANGED
|
@@ -171,6 +171,9 @@ var EProspectFileGroups;
|
|
|
171
171
|
EProspectFileGroups["ownershipStructure"] = "ownershipStructure";
|
|
172
172
|
EProspectFileGroups["organizationStructure"] = "organizationStructure";
|
|
173
173
|
EProspectFileGroups["financialsBankInformation"] = "financialsBankInformation";
|
|
174
|
+
EProspectFileGroups["historicalFinancials"] = "historicalFinancials";
|
|
175
|
+
EProspectFileGroups["projections"] = "projections";
|
|
176
|
+
EProspectFileGroups["accountsPayables"] = "accountsPayables";
|
|
174
177
|
EProspectFileGroups["collateralSales"] = "collateralSales";
|
|
175
178
|
EProspectFileGroups["taxes"] = "taxes";
|
|
176
179
|
EProspectFileGroups["taxesIncome"] = "taxesIncome";
|
package/models/Prospect.model.ts
CHANGED
|
@@ -254,6 +254,9 @@ export enum EProspectFileGroups {
|
|
|
254
254
|
ownershipStructure = 'ownershipStructure',
|
|
255
255
|
organizationStructure = 'organizationStructure',
|
|
256
256
|
financialsBankInformation = 'financialsBankInformation',
|
|
257
|
+
historicalFinancials = 'historicalFinancials',
|
|
258
|
+
projections = 'projections',
|
|
259
|
+
accountsPayables = 'accountsPayables',
|
|
257
260
|
collateralSales = 'collateralSales',
|
|
258
261
|
taxes = 'taxes',
|
|
259
262
|
taxesIncome = 'taxesIncome',
|