gemcap-be-common 1.4.49 → 1.4.51
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.
|
@@ -86,6 +86,7 @@ export declare const sharepointFoldersDictionary: {
|
|
|
86
86
|
readonly financialsBankStatements: "05. Financials and Bank Statements";
|
|
87
87
|
readonly historicalFinancials: "a. Historical Financials";
|
|
88
88
|
readonly projections: "b. Projections";
|
|
89
|
+
readonly bankStatements: "c. Bank Statements";
|
|
89
90
|
readonly accountsPayables: "d. Accounts Payables";
|
|
90
91
|
readonly currentDebt: "e. Current Debt";
|
|
91
92
|
readonly majorContracts: "06. Major Contracts";
|
package/models/Prospect.model.js
CHANGED
|
@@ -110,6 +110,7 @@ exports.sharepointFoldersDictionary = {
|
|
|
110
110
|
// > Underwriting > 01. Due Diligence > 05. Financials and Bank Statements
|
|
111
111
|
historicalFinancials: 'a. Historical Financials',
|
|
112
112
|
projections: 'b. Projections',
|
|
113
|
+
bankStatements: 'c. Bank Statements',
|
|
113
114
|
accountsPayables: 'd. Accounts Payables',
|
|
114
115
|
currentDebt: 'e. Current Debt',
|
|
115
116
|
// > Underwriting > 01. Due Diligence
|
|
@@ -319,44 +320,44 @@ const externalProspectInitialInfo = () => ({
|
|
|
319
320
|
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.financialInformation]: [
|
|
320
321
|
{
|
|
321
322
|
_id: (0, main_helper_1.getUUID)(),
|
|
322
|
-
_sharepointFolder:
|
|
323
|
+
_sharepointFolder: EProspectFileGroups.financialsBankInformation_historicalFinancials,
|
|
323
324
|
title: 'Prior 2 years and YTD Income Statement & Balance Sheet in Excel Format',
|
|
324
325
|
},
|
|
325
326
|
{
|
|
326
327
|
_id: (0, main_helper_1.getUUID)(),
|
|
327
|
-
_sharepointFolder:
|
|
328
|
+
_sharepointFolder: EProspectFileGroups.financialsBankInformation_projections,
|
|
328
329
|
title: 'Currently Monthly Projections',
|
|
329
330
|
},
|
|
330
331
|
{
|
|
331
332
|
_id: (0, main_helper_1.getUUID)(),
|
|
332
|
-
_sharepointFolder:
|
|
333
|
+
_sharepointFolder: EProspectFileGroups.financialsBankInformation_bankStatements,
|
|
333
334
|
title: 'Last 3 Month Bank Statements',
|
|
334
335
|
},
|
|
335
336
|
],
|
|
336
337
|
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.accountsReceivables]: [
|
|
337
338
|
{
|
|
338
339
|
_id: (0, main_helper_1.getUUID)(),
|
|
339
|
-
_sharepointFolder:
|
|
340
|
+
_sharepointFolder: EProspectFileGroups.accountsPayables,
|
|
340
341
|
title: 'Excel Format: Current and past 12 months A/P aging report by invoice date',
|
|
341
342
|
},
|
|
342
343
|
{
|
|
343
344
|
_id: (0, main_helper_1.getUUID)(),
|
|
344
|
-
_sharepointFolder:
|
|
345
|
+
_sharepointFolder: EProspectFileGroups.receivables,
|
|
345
346
|
title: 'Excel Format: Current and past 12 months A/R aging report by invoice date',
|
|
346
347
|
},
|
|
347
348
|
{
|
|
348
349
|
_id: (0, main_helper_1.getUUID)(),
|
|
349
|
-
_sharepointFolder:
|
|
350
|
+
_sharepointFolder: EProspectFileGroups.receivables,
|
|
350
351
|
title: 'Excel Format: A/R dilution (write-offs) for the trailing 3 months and 12 months',
|
|
351
352
|
},
|
|
352
353
|
{
|
|
353
354
|
_id: (0, main_helper_1.getUUID)(),
|
|
354
|
-
_sharepointFolder:
|
|
355
|
+
_sharepointFolder: EProspectFileGroups.receivables,
|
|
355
356
|
title: 'Excel Format: Outstanding / held checks list',
|
|
356
357
|
},
|
|
357
358
|
{
|
|
358
359
|
_id: (0, main_helper_1.getUUID)(),
|
|
359
|
-
_sharepointFolder:
|
|
360
|
+
_sharepointFolder: EProspectFileGroups.receivables,
|
|
360
361
|
title: 'Excel Format: Average A/R and A/P turnover in days for the trailing 3 months and 12 months',
|
|
361
362
|
},
|
|
362
363
|
],
|
package/models/Prospect.model.ts
CHANGED
|
@@ -121,6 +121,7 @@ export const sharepointFoldersDictionary = {
|
|
|
121
121
|
// > Underwriting > 01. Due Diligence > 05. Financials and Bank Statements
|
|
122
122
|
historicalFinancials: 'a. Historical Financials',
|
|
123
123
|
projections: 'b. Projections',
|
|
124
|
+
bankStatements: 'c. Bank Statements',
|
|
124
125
|
accountsPayables: 'd. Accounts Payables',
|
|
125
126
|
currentDebt: 'e. Current Debt',
|
|
126
127
|
|
|
@@ -416,44 +417,44 @@ export const externalProspectInitialInfo = (): IProspectExternalNew => ({
|
|
|
416
417
|
[ExternalProspectStageTwoTables.financialInformation]: [
|
|
417
418
|
{
|
|
418
419
|
_id: getUUID(),
|
|
419
|
-
_sharepointFolder:
|
|
420
|
+
_sharepointFolder: EProspectFileGroups.financialsBankInformation_historicalFinancials,
|
|
420
421
|
title: 'Prior 2 years and YTD Income Statement & Balance Sheet in Excel Format',
|
|
421
422
|
},
|
|
422
423
|
{
|
|
423
424
|
_id: getUUID(),
|
|
424
|
-
_sharepointFolder:
|
|
425
|
+
_sharepointFolder: EProspectFileGroups.financialsBankInformation_projections,
|
|
425
426
|
title: 'Currently Monthly Projections',
|
|
426
427
|
},
|
|
427
428
|
{
|
|
428
429
|
_id: getUUID(),
|
|
429
|
-
_sharepointFolder:
|
|
430
|
+
_sharepointFolder: EProspectFileGroups.financialsBankInformation_bankStatements,
|
|
430
431
|
title: 'Last 3 Month Bank Statements',
|
|
431
432
|
},
|
|
432
433
|
],
|
|
433
434
|
[ExternalProspectStageTwoTables.accountsReceivables]: [
|
|
434
435
|
{
|
|
435
436
|
_id: getUUID(),
|
|
436
|
-
_sharepointFolder:
|
|
437
|
+
_sharepointFolder: EProspectFileGroups.accountsPayables,
|
|
437
438
|
title: 'Excel Format: Current and past 12 months A/P aging report by invoice date',
|
|
438
439
|
},
|
|
439
440
|
{
|
|
440
441
|
_id: getUUID(),
|
|
441
|
-
_sharepointFolder:
|
|
442
|
+
_sharepointFolder: EProspectFileGroups.receivables,
|
|
442
443
|
title: 'Excel Format: Current and past 12 months A/R aging report by invoice date',
|
|
443
444
|
},
|
|
444
445
|
{
|
|
445
446
|
_id: getUUID(),
|
|
446
|
-
_sharepointFolder:
|
|
447
|
+
_sharepointFolder: EProspectFileGroups.receivables,
|
|
447
448
|
title: 'Excel Format: A/R dilution (write-offs) for the trailing 3 months and 12 months',
|
|
448
449
|
},
|
|
449
450
|
{
|
|
450
451
|
_id: getUUID(),
|
|
451
|
-
_sharepointFolder:
|
|
452
|
+
_sharepointFolder: EProspectFileGroups.receivables,
|
|
452
453
|
title: 'Excel Format: Outstanding / held checks list',
|
|
453
454
|
},
|
|
454
455
|
{
|
|
455
456
|
_id: getUUID(),
|
|
456
|
-
_sharepointFolder:
|
|
457
|
+
_sharepointFolder: EProspectFileGroups.receivables,
|
|
457
458
|
title: 'Excel Format: Average A/R and A/P turnover in days for the trailing 3 months and 12 months',
|
|
458
459
|
},
|
|
459
460
|
],
|