gemcap-be-common 1.3.54 → 1.3.56
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.
|
@@ -127,6 +127,8 @@ export declare const prospectFileGroupsMap: {
|
|
|
127
127
|
financialInformation: string;
|
|
128
128
|
accountsReceivables: string;
|
|
129
129
|
inventoryInformationFiles: string;
|
|
130
|
+
addressesOfOffices: string;
|
|
131
|
+
addressesOfWarehouses: string;
|
|
130
132
|
equipment: string;
|
|
131
133
|
};
|
|
132
134
|
export declare const NO_ROW_ID = "__no_row__";
|
package/models/Prospect.model.js
CHANGED
|
@@ -82,6 +82,8 @@ exports.prospectFileGroups = [
|
|
|
82
82
|
ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.accountsReceivables,
|
|
83
83
|
ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.inventoryInformationFiles,
|
|
84
84
|
ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.equipment,
|
|
85
|
+
ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.addressesOfOffices,
|
|
86
|
+
ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.addressesOfWarehouses,
|
|
85
87
|
];
|
|
86
88
|
exports.prospectFileGroupsMap = {
|
|
87
89
|
[EProspectFileGroups.borrowingBase]: 'Borrowing Base',
|
|
@@ -95,6 +97,8 @@ exports.prospectFileGroupsMap = {
|
|
|
95
97
|
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.financialInformation]: 'Financial Information',
|
|
96
98
|
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.accountsReceivables]: 'Accounts Receivables',
|
|
97
99
|
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.inventoryInformationFiles]: 'Inventory Information Files',
|
|
100
|
+
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.addressesOfOffices]: 'Addresses Of Offices',
|
|
101
|
+
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.addressesOfWarehouses]: 'Addresses Of Warehouses',
|
|
98
102
|
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.equipment]: 'Equipment',
|
|
99
103
|
};
|
|
100
104
|
exports.NO_ROW_ID = '__no_row__';
|
package/models/Prospect.model.ts
CHANGED
|
@@ -145,6 +145,8 @@ export const prospectFileGroups: string[] = [
|
|
|
145
145
|
ExternalProspectStageTwoTables.accountsReceivables,
|
|
146
146
|
ExternalProspectStageTwoTables.inventoryInformationFiles,
|
|
147
147
|
ExternalProspectStageTwoTables.equipment,
|
|
148
|
+
ExternalProspectStageTwoTables.addressesOfOffices,
|
|
149
|
+
ExternalProspectStageTwoTables.addressesOfWarehouses,
|
|
148
150
|
];
|
|
149
151
|
|
|
150
152
|
export const prospectFileGroupsMap = {
|
|
@@ -160,6 +162,8 @@ export const prospectFileGroupsMap = {
|
|
|
160
162
|
[ExternalProspectStageTwoTables.financialInformation]: 'Financial Information',
|
|
161
163
|
[ExternalProspectStageTwoTables.accountsReceivables]: 'Accounts Receivables',
|
|
162
164
|
[ExternalProspectStageTwoTables.inventoryInformationFiles]: 'Inventory Information Files',
|
|
165
|
+
[ExternalProspectStageTwoTables.addressesOfOffices]: 'Addresses Of Offices',
|
|
166
|
+
[ExternalProspectStageTwoTables.addressesOfWarehouses]: 'Addresses Of Warehouses',
|
|
163
167
|
[ExternalProspectStageTwoTables.equipment]: 'Equipment',
|
|
164
168
|
};
|
|
165
169
|
|