gemcap-be-common 1.4.34 → 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.
|
@@ -139,6 +139,7 @@ export declare enum EProspectFileGroups {
|
|
|
139
139
|
websites = "websites",
|
|
140
140
|
perfectionCertificate = "perfectionCertificate",
|
|
141
141
|
other = "other",
|
|
142
|
+
fieldAppraisal = "fieldAppraisal",
|
|
142
143
|
confidential = "confidential",
|
|
143
144
|
confidentialPersonalFinancial = "confidentialPersonalFinancial",
|
|
144
145
|
confidentialDriverLicenses = "confidentialDriverLicenses",
|
|
@@ -157,6 +158,7 @@ export declare const prospectFileGroupsMap: {
|
|
|
157
158
|
majorContracts: string;
|
|
158
159
|
payrollRegister: string;
|
|
159
160
|
litigationSummary: string;
|
|
161
|
+
fieldAppraisal: string;
|
|
160
162
|
confidential: string;
|
|
161
163
|
confidentialPersonalFinancial: string;
|
|
162
164
|
confidentialDriverLicenses: string;
|
package/models/Prospect.model.js
CHANGED
|
@@ -94,6 +94,7 @@ var EProspectFileGroups;
|
|
|
94
94
|
EProspectFileGroups["websites"] = "websites";
|
|
95
95
|
EProspectFileGroups["perfectionCertificate"] = "perfectionCertificate";
|
|
96
96
|
EProspectFileGroups["other"] = "other";
|
|
97
|
+
EProspectFileGroups["fieldAppraisal"] = "fieldAppraisal";
|
|
97
98
|
EProspectFileGroups["confidential"] = "confidential";
|
|
98
99
|
EProspectFileGroups["confidentialPersonalFinancial"] = "confidentialPersonalFinancial";
|
|
99
100
|
EProspectFileGroups["confidentialDriverLicenses"] = "confidentialDriverLicenses";
|
|
@@ -121,6 +122,7 @@ exports.prospectFileGroups = [
|
|
|
121
122
|
EProspectFileGroups.confidentialPersonalFinancial,
|
|
122
123
|
EProspectFileGroups.confidentialDriverLicenses,
|
|
123
124
|
EProspectFileGroups.confidentialReferences,
|
|
125
|
+
EProspectFileGroups.fieldAppraisal,
|
|
124
126
|
ProspectInfoStageOne_model_1.ExternalProspectStageOneTables.detailsOfCurrentDebt,
|
|
125
127
|
ProspectInfoStageOne_model_1.ExternalProspectStageOneTables.litigation,
|
|
126
128
|
ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.financialInformation,
|
|
@@ -150,6 +152,7 @@ exports.prospectFileGroupsMap = {
|
|
|
150
152
|
[EProspectFileGroups.majorContracts]: 'Major Contracts',
|
|
151
153
|
[EProspectFileGroups.payrollRegister]: 'Payroll Register',
|
|
152
154
|
[EProspectFileGroups.litigationSummary]: 'Litigation Summary',
|
|
155
|
+
[EProspectFileGroups.fieldAppraisal]: 'Field Appraisal or Audit Requests',
|
|
153
156
|
[EProspectFileGroups.confidential]: 'Confidential',
|
|
154
157
|
[EProspectFileGroups.confidentialPersonalFinancial]: 'Personal Financial Statements',
|
|
155
158
|
[EProspectFileGroups.confidentialDriverLicenses]: 'Driver Licenses',
|
package/models/Prospect.model.ts
CHANGED
|
@@ -159,6 +159,7 @@ export enum EProspectFileGroups {
|
|
|
159
159
|
websites = 'websites',
|
|
160
160
|
perfectionCertificate = 'perfectionCertificate',
|
|
161
161
|
other = 'other',
|
|
162
|
+
fieldAppraisal = 'fieldAppraisal',
|
|
162
163
|
|
|
163
164
|
confidential = 'confidential',
|
|
164
165
|
confidentialPersonalFinancial = 'confidentialPersonalFinancial',
|
|
@@ -190,6 +191,7 @@ export const prospectFileGroups: string[] = [
|
|
|
190
191
|
EProspectFileGroups.confidentialPersonalFinancial,
|
|
191
192
|
EProspectFileGroups.confidentialDriverLicenses,
|
|
192
193
|
EProspectFileGroups.confidentialReferences,
|
|
194
|
+
EProspectFileGroups.fieldAppraisal,
|
|
193
195
|
|
|
194
196
|
ExternalProspectStageOneTables.detailsOfCurrentDebt,
|
|
195
197
|
ExternalProspectStageOneTables.litigation,
|
|
@@ -221,6 +223,7 @@ export const prospectFileGroupsMap = {
|
|
|
221
223
|
[EProspectFileGroups.majorContracts]: 'Major Contracts',
|
|
222
224
|
[EProspectFileGroups.payrollRegister]: 'Payroll Register',
|
|
223
225
|
[EProspectFileGroups.litigationSummary]: 'Litigation Summary',
|
|
226
|
+
[EProspectFileGroups.fieldAppraisal]: 'Field Appraisal or Audit Requests',
|
|
224
227
|
|
|
225
228
|
[EProspectFileGroups.confidential]: 'Confidential',
|
|
226
229
|
[EProspectFileGroups.confidentialPersonalFinancial]: 'Personal Financial Statements',
|