gemcap-be-common 1.4.33 → 1.4.35
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.
|
@@ -122,6 +122,8 @@ export interface IProspectExternalNew {
|
|
|
122
122
|
export declare enum EProspectFileGroups {
|
|
123
123
|
borrowingBase = "borrowingBase",
|
|
124
124
|
corporateDocuments = "corporateDocuments",
|
|
125
|
+
ownershipStructure = "ownershipStructure",
|
|
126
|
+
organizationStructure = "organizationStructure",
|
|
125
127
|
financialsBankInformation = "financialsBankInformation",
|
|
126
128
|
collateralSales = "collateralSales",
|
|
127
129
|
taxes = "taxes",
|
|
@@ -137,6 +139,7 @@ export declare enum EProspectFileGroups {
|
|
|
137
139
|
websites = "websites",
|
|
138
140
|
perfectionCertificate = "perfectionCertificate",
|
|
139
141
|
other = "other",
|
|
142
|
+
fieldAppraisal = "fieldAppraisal",
|
|
140
143
|
confidential = "confidential",
|
|
141
144
|
confidentialPersonalFinancial = "confidentialPersonalFinancial",
|
|
142
145
|
confidentialDriverLicenses = "confidentialDriverLicenses",
|
|
@@ -155,6 +158,7 @@ export declare const prospectFileGroupsMap: {
|
|
|
155
158
|
majorContracts: string;
|
|
156
159
|
payrollRegister: string;
|
|
157
160
|
litigationSummary: string;
|
|
161
|
+
fieldAppraisal: string;
|
|
158
162
|
confidential: string;
|
|
159
163
|
confidentialPersonalFinancial: string;
|
|
160
164
|
confidentialDriverLicenses: string;
|
package/models/Prospect.model.js
CHANGED
|
@@ -77,6 +77,8 @@ var EProspectFileGroups;
|
|
|
77
77
|
(function (EProspectFileGroups) {
|
|
78
78
|
EProspectFileGroups["borrowingBase"] = "borrowingBase";
|
|
79
79
|
EProspectFileGroups["corporateDocuments"] = "corporateDocuments";
|
|
80
|
+
EProspectFileGroups["ownershipStructure"] = "ownershipStructure";
|
|
81
|
+
EProspectFileGroups["organizationStructure"] = "organizationStructure";
|
|
80
82
|
EProspectFileGroups["financialsBankInformation"] = "financialsBankInformation";
|
|
81
83
|
EProspectFileGroups["collateralSales"] = "collateralSales";
|
|
82
84
|
EProspectFileGroups["taxes"] = "taxes";
|
|
@@ -92,6 +94,7 @@ var EProspectFileGroups;
|
|
|
92
94
|
EProspectFileGroups["websites"] = "websites";
|
|
93
95
|
EProspectFileGroups["perfectionCertificate"] = "perfectionCertificate";
|
|
94
96
|
EProspectFileGroups["other"] = "other";
|
|
97
|
+
EProspectFileGroups["fieldAppraisal"] = "fieldAppraisal";
|
|
95
98
|
EProspectFileGroups["confidential"] = "confidential";
|
|
96
99
|
EProspectFileGroups["confidentialPersonalFinancial"] = "confidentialPersonalFinancial";
|
|
97
100
|
EProspectFileGroups["confidentialDriverLicenses"] = "confidentialDriverLicenses";
|
|
@@ -119,6 +122,7 @@ exports.prospectFileGroups = [
|
|
|
119
122
|
EProspectFileGroups.confidentialPersonalFinancial,
|
|
120
123
|
EProspectFileGroups.confidentialDriverLicenses,
|
|
121
124
|
EProspectFileGroups.confidentialReferences,
|
|
125
|
+
EProspectFileGroups.fieldAppraisal,
|
|
122
126
|
ProspectInfoStageOne_model_1.ExternalProspectStageOneTables.detailsOfCurrentDebt,
|
|
123
127
|
ProspectInfoStageOne_model_1.ExternalProspectStageOneTables.litigation,
|
|
124
128
|
ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.financialInformation,
|
|
@@ -148,6 +152,7 @@ exports.prospectFileGroupsMap = {
|
|
|
148
152
|
[EProspectFileGroups.majorContracts]: 'Major Contracts',
|
|
149
153
|
[EProspectFileGroups.payrollRegister]: 'Payroll Register',
|
|
150
154
|
[EProspectFileGroups.litigationSummary]: 'Litigation Summary',
|
|
155
|
+
[EProspectFileGroups.fieldAppraisal]: 'Field Appraisal or Audit Requests',
|
|
151
156
|
[EProspectFileGroups.confidential]: 'Confidential',
|
|
152
157
|
[EProspectFileGroups.confidentialPersonalFinancial]: 'Personal Financial Statements',
|
|
153
158
|
[EProspectFileGroups.confidentialDriverLicenses]: 'Driver Licenses',
|
package/models/Prospect.model.ts
CHANGED
|
@@ -142,6 +142,8 @@ export interface IProspectExternalNew {
|
|
|
142
142
|
export enum EProspectFileGroups {
|
|
143
143
|
borrowingBase = 'borrowingBase',
|
|
144
144
|
corporateDocuments = 'corporateDocuments',
|
|
145
|
+
ownershipStructure = 'ownershipStructure',
|
|
146
|
+
organizationStructure = 'organizationStructure',
|
|
145
147
|
financialsBankInformation = 'financialsBankInformation',
|
|
146
148
|
collateralSales = 'collateralSales',
|
|
147
149
|
taxes = 'taxes',
|
|
@@ -157,6 +159,7 @@ export enum EProspectFileGroups {
|
|
|
157
159
|
websites = 'websites',
|
|
158
160
|
perfectionCertificate = 'perfectionCertificate',
|
|
159
161
|
other = 'other',
|
|
162
|
+
fieldAppraisal = 'fieldAppraisal',
|
|
160
163
|
|
|
161
164
|
confidential = 'confidential',
|
|
162
165
|
confidentialPersonalFinancial = 'confidentialPersonalFinancial',
|
|
@@ -188,6 +191,7 @@ export const prospectFileGroups: string[] = [
|
|
|
188
191
|
EProspectFileGroups.confidentialPersonalFinancial,
|
|
189
192
|
EProspectFileGroups.confidentialDriverLicenses,
|
|
190
193
|
EProspectFileGroups.confidentialReferences,
|
|
194
|
+
EProspectFileGroups.fieldAppraisal,
|
|
191
195
|
|
|
192
196
|
ExternalProspectStageOneTables.detailsOfCurrentDebt,
|
|
193
197
|
ExternalProspectStageOneTables.litigation,
|
|
@@ -219,6 +223,7 @@ export const prospectFileGroupsMap = {
|
|
|
219
223
|
[EProspectFileGroups.majorContracts]: 'Major Contracts',
|
|
220
224
|
[EProspectFileGroups.payrollRegister]: 'Payroll Register',
|
|
221
225
|
[EProspectFileGroups.litigationSummary]: 'Litigation Summary',
|
|
226
|
+
[EProspectFileGroups.fieldAppraisal]: 'Field Appraisal or Audit Requests',
|
|
222
227
|
|
|
223
228
|
[EProspectFileGroups.confidential]: 'Confidential',
|
|
224
229
|
[EProspectFileGroups.confidentialPersonalFinancial]: 'Personal Financial Statements',
|