gemcap-be-common 1.5.146 → 1.5.148

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.
@@ -81,6 +81,9 @@ export interface IFile {
81
81
  fileId?: string;
82
82
  };
83
83
  }
84
+ export type TFileShort = Pick<IFile, 'filename' | 'mimeType' | 'size'> & {
85
+ _id: string;
86
+ };
84
87
  export type TFileDoc = mongoose.HydratedDocument<IFile>;
85
88
  export interface IFileLean extends IFile {
86
89
  _id: mongoose.Types.ObjectId;
@@ -74,6 +74,10 @@ export interface IFile {
74
74
  };
75
75
  }
76
76
 
77
+ export type TFileShort = Pick<IFile, 'filename' | 'mimeType' | 'size'> & {
78
+ _id: string;
79
+ }
80
+
77
81
  export type TFileDoc = mongoose.HydratedDocument<IFile>;
78
82
 
79
83
  export interface IFileLean extends IFile {
@@ -322,7 +322,7 @@ const externalProspectInitialInfo = () => ({
322
322
  {
323
323
  _id: (0, main_helper_1.getUUID)(),
324
324
  _sharepointFolder: EProspectFileGroups.financialsBankInformation_historicalFinancials,
325
- title: 'Prior 2 years and YTD Income Statement & Balance Sheet in Excel Format',
325
+ title: 'Income Statement & Balance Sheet for current year, and prior 2 years on monthly basis in Excel format' //, 'Prior 2 years and YTD Income Statement & Balance Sheet in Excel Format',
326
326
  },
327
327
  {
328
328
  _id: (0, main_helper_1.getUUID)(),
@@ -419,7 +419,7 @@ export const externalProspectInitialInfo = (): IProspectExternalNew => ({
419
419
  {
420
420
  _id: getUUID(),
421
421
  _sharepointFolder: EProspectFileGroups.financialsBankInformation_historicalFinancials,
422
- title: 'Prior 2 years and YTD Income Statement & Balance Sheet in Excel Format',
422
+ title: 'Income Statement & Balance Sheet for current year, and prior 2 years on monthly basis in Excel format' //, 'Prior 2 years and YTD Income Statement & Balance Sheet in Excel Format',
423
423
  },
424
424
  {
425
425
  _id: getUUID(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.5.146",
3
+ "version": "1.5.148",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {