gemcap-be-common 1.3.95 → 1.3.97
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.
|
@@ -141,6 +141,10 @@ export declare const prospectFileGroupsMap: {
|
|
|
141
141
|
listOfManagers: string;
|
|
142
142
|
listOfShareholders: string;
|
|
143
143
|
listOfOfficers: string;
|
|
144
|
+
itSystems: string;
|
|
145
|
+
insuranceBrokers: string;
|
|
146
|
+
accountsReceivablesExtra: string;
|
|
147
|
+
inventoryInformation: string;
|
|
144
148
|
};
|
|
145
149
|
export declare const NO_ROW_ID = "__no_row__";
|
|
146
150
|
export declare const initialFileGroups: () => {};
|
|
@@ -207,7 +211,7 @@ export interface IProspectWithId extends IProspect {
|
|
|
207
211
|
}
|
|
208
212
|
export type IProspectExternal = Pick<IProspectWithId, 'info' | 'isLocked' | 'status' | '_id'> & {
|
|
209
213
|
auditorFiles: IProspectFile[];
|
|
210
|
-
|
|
214
|
+
files: IProspectFile[];
|
|
211
215
|
};
|
|
212
216
|
export type IProspectExternalAuditors = Pick<IProspectWithId, 'info' | 'isLocked'> & {
|
|
213
217
|
files: IProspectFile[];
|
package/models/Prospect.model.js
CHANGED
|
@@ -98,6 +98,10 @@ exports.prospectFileGroups = [
|
|
|
98
98
|
ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.listOfManagers,
|
|
99
99
|
ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.listOfShareholders,
|
|
100
100
|
ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.listOfOfficers,
|
|
101
|
+
ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.itSystems,
|
|
102
|
+
ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.insuranceBrokers,
|
|
103
|
+
ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.accountsReceivablesExtra,
|
|
104
|
+
ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.inventoryInformation,
|
|
101
105
|
];
|
|
102
106
|
exports.prospectFileGroupsMap = {
|
|
103
107
|
[EProspectFileGroups.borrowingBase]: 'Borrowing Base',
|
|
@@ -117,6 +121,10 @@ exports.prospectFileGroupsMap = {
|
|
|
117
121
|
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.listOfManagers]: 'List Of Managers',
|
|
118
122
|
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.listOfShareholders]: 'List Of Shareholders',
|
|
119
123
|
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.listOfOfficers]: 'List Of Officers',
|
|
124
|
+
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.itSystems]: 'IT Systems',
|
|
125
|
+
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.insuranceBrokers]: 'Insurance Brokers',
|
|
126
|
+
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.accountsReceivablesExtra]: 'Accounts Receivables Extra',
|
|
127
|
+
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.inventoryInformation]: 'Inventory Information',
|
|
120
128
|
};
|
|
121
129
|
exports.NO_ROW_ID = '__no_row__';
|
|
122
130
|
const initialFileGroups = () => exports.prospectFileGroups.reduce((acc, g) => {
|
package/models/Prospect.model.ts
CHANGED
|
@@ -162,6 +162,10 @@ export const prospectFileGroups: string[] = [
|
|
|
162
162
|
ExternalProspectStageTwoTables.listOfManagers,
|
|
163
163
|
ExternalProspectStageTwoTables.listOfShareholders,
|
|
164
164
|
ExternalProspectStageTwoTables.listOfOfficers,
|
|
165
|
+
ExternalProspectStageTwoTables.itSystems,
|
|
166
|
+
ExternalProspectStageTwoTables.insuranceBrokers,
|
|
167
|
+
ExternalProspectStageTwoTables.accountsReceivablesExtra,
|
|
168
|
+
ExternalProspectStageTwoTables.inventoryInformation,
|
|
165
169
|
];
|
|
166
170
|
|
|
167
171
|
export const prospectFileGroupsMap = {
|
|
@@ -183,6 +187,10 @@ export const prospectFileGroupsMap = {
|
|
|
183
187
|
[ExternalProspectStageTwoTables.listOfManagers]: 'List Of Managers',
|
|
184
188
|
[ExternalProspectStageTwoTables.listOfShareholders]: 'List Of Shareholders',
|
|
185
189
|
[ExternalProspectStageTwoTables.listOfOfficers]: 'List Of Officers',
|
|
190
|
+
[ExternalProspectStageTwoTables.itSystems]: 'IT Systems',
|
|
191
|
+
[ExternalProspectStageTwoTables.insuranceBrokers]: 'Insurance Brokers',
|
|
192
|
+
[ExternalProspectStageTwoTables.accountsReceivablesExtra]: 'Accounts Receivables Extra',
|
|
193
|
+
[ExternalProspectStageTwoTables.inventoryInformation]: 'Inventory Information',
|
|
186
194
|
};
|
|
187
195
|
|
|
188
196
|
export const NO_ROW_ID = '__no_row__';
|
|
@@ -396,7 +404,7 @@ export interface IProspectWithId extends IProspect {
|
|
|
396
404
|
|
|
397
405
|
export type IProspectExternal =
|
|
398
406
|
Pick<IProspectWithId, 'info' | 'isLocked' | 'status' | '_id'>
|
|
399
|
-
& { auditorFiles: IProspectFile[],
|
|
407
|
+
& { auditorFiles: IProspectFile[], files: IProspectFile[] }
|
|
400
408
|
|
|
401
409
|
export type IProspectExternalAuditors = Pick<IProspectWithId, 'info' | 'isLocked'> & {
|
|
402
410
|
files: IProspectFile[];
|