gemcap-be-common 1.4.41 → 1.4.42

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.
@@ -30,7 +30,75 @@ import { TDictionary } from '../helpers/main.helper';
30
30
  import { ICRMProspectInfoNote } from './ProspectInfoNote.model';
31
31
  import { IProspectFile } from './ProspectFile.model';
32
32
  export declare const prospectFieldsDictionary: TDictionary;
33
- export declare const sharepointFoldersDictionary: Record<string, string>;
33
+ export declare const sharepointFoldersDictionary: {
34
+ readonly confidential: "Confidential - Personal Information";
35
+ readonly confidentialDeclined: "Declined";
36
+ readonly legal: "Legal";
37
+ readonly portfolio: "Portfolio";
38
+ readonly underwriting: "Underwriting";
39
+ readonly drafts: "Drafts";
40
+ readonly finalDocuments: "Final Documents";
41
+ readonly APReports: "01. AP Reports";
42
+ readonly ARReports: "02. AR Reports";
43
+ readonly borrowingBaseCertificatesAndBackup: "03. Borrowing Base Certificates and Backup";
44
+ readonly financials: "04. Financials";
45
+ readonly inventory: "05. Inventory";
46
+ readonly machineryEquipment: "06. Machinery & Equipment";
47
+ readonly taxes: "07. Taxes";
48
+ readonly insurance: "08. Insurance";
49
+ readonly fieldExams: "09. Field Exams";
50
+ readonly payments: "10. Payments";
51
+ readonly interestStatements: "11. Interest Statements";
52
+ readonly leasesRealEstate: "12. Leases & Real Estate";
53
+ readonly agreementsContracts: "13. Agreements & Contracts";
54
+ readonly liensLitigation: "14. Liens & Litigation";
55
+ readonly verifications: "15. Verifications";
56
+ readonly onlineBankingInstructions: "16. Online Banking Instructions";
57
+ readonly compliance: "17. Compliance";
58
+ readonly portfolio_other: "18. Other";
59
+ readonly dueDiligence: "01. Due Diligence";
60
+ readonly loi: "02. LOI";
61
+ readonly loanMemoApprovals: "03. Loan Memo & Approvals";
62
+ readonly loiTemplates: "zz Templates";
63
+ readonly loanMemo: "01. Loan Memo";
64
+ readonly dataTablesWorkings: "02. Data, Tables & Workings";
65
+ readonly approvalEmails: "03. Approval Emails";
66
+ readonly templatesSamples: "zz Templates and Samples";
67
+ readonly corporateDocuments: "01. Corporate Documents";
68
+ readonly organizationDocumentsGoodStandings: "a. Organization Documents and Good Standings";
69
+ readonly disclosureSchedule: "b. Disclosure Schedule";
70
+ readonly corporateDocuments_insurance: "c. Insurance";
71
+ readonly ownership: "d. Ownership";
72
+ readonly officersManagersStaff: "e. Officers, Managers, Staff";
73
+ readonly lienLitigationSearchesTaxes: "02. Lien & Litigation Searches and Taxes";
74
+ readonly lienLitigationSearch: "a. Lien & Litigation Search";
75
+ readonly disclosedLitigations: "b. Disclosed Litigations";
76
+ readonly payrollTaxStatementsProofOfPayment: "c. Payroll Tax Statements & Proof of Payment";
77
+ readonly incomeTaxReturns: "d. Income Tax Returns";
78
+ readonly personalPropertyTaxStatementsProofOfPayment: "e. Personal Property Tax Statements and Proof of Payment";
79
+ readonly KYC: "03. KYC";
80
+ readonly collateral: "04. Collateral";
81
+ readonly collateral_inventory: "a. Inventory";
82
+ readonly receivables: "b. Receivables";
83
+ readonly equipment: "c. Equipment";
84
+ readonly fieldExamAppraisals: "d. Field Exam & Appraisals";
85
+ readonly borrowingBases: "e. Borrowing Bases";
86
+ readonly financialsBankStatements: "05. Financials and Bank Statements";
87
+ readonly historicalFinancials: "a. Historical Financials";
88
+ readonly projections: "b. Projections";
89
+ readonly accountsPayables: "d. Accounts Payables";
90
+ readonly currentDebt: "e. Current Debt";
91
+ readonly majorContracts: "06. Major Contracts";
92
+ readonly leases: "a. Leases";
93
+ readonly it: "b. IT";
94
+ readonly majorContracts_other: "c. Other";
95
+ readonly intellectualProperty: "07. Intellectual Property";
96
+ readonly fieldExamRequests: "08. Field Exam Requests";
97
+ readonly customerVendorLists: "09. Customer & Vendor Lists";
98
+ readonly other: "10. Other";
99
+ readonly standardEmailAttachments: "zz Standard Email Attachments";
100
+ readonly underwriting_templates: "zz Templates";
101
+ };
34
102
  declare enum EProspectPriority {
35
103
  LOW = "LOW",
36
104
  MEDIUM = "MEDIUM",
@@ -39,7 +39,7 @@ export const prospectFieldsDictionary: TDictionary = {
39
39
  comments: 'Comments',
40
40
  };
41
41
 
42
- export const sharepointFoldersDictionary: Record<string, string> = {
42
+ export const sharepointFoldersDictionary = {
43
43
  confidential: 'Confidential - Personal Information',
44
44
  confidentialDeclined: 'Declined',
45
45
 
@@ -146,7 +146,11 @@ export const sharepointFoldersDictionary: Record<string, string> = {
146
146
  // > Underwriting > 01. Due Diligence
147
147
  standardEmailAttachments: 'zz Standard Email Attachments',
148
148
  underwriting_templates: 'zz Templates',
149
- };
149
+ } as const;
150
+
151
+ export type TSharepointFolderKey = keyof typeof sharepointFoldersDictionary;
152
+ export type TSharepointFolderValue = typeof sharepointFoldersDictionary[TSharepointFolderKey];
153
+ export type TSharepointFolder = typeof sharepointFoldersDictionary[TSharepointFolderKey];
150
154
 
151
155
  enum EProspectPriority {
152
156
  LOW = 'LOW',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.4.41",
3
+ "version": "1.4.42",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {