gemcap-be-common 1.5.148 → 1.5.149

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.
@@ -83,6 +83,8 @@ export interface IFile {
83
83
  }
84
84
  export type TFileShort = Pick<IFile, 'filename' | 'mimeType' | 'size'> & {
85
85
  _id: string;
86
+ uploadedAt?: Date;
87
+ uploadedBy?: string;
86
88
  };
87
89
  export type TFileDoc = mongoose.HydratedDocument<IFile>;
88
90
  export interface IFileLean extends IFile {
@@ -76,6 +76,8 @@ export interface IFile {
76
76
 
77
77
  export type TFileShort = Pick<IFile, 'filename' | 'mimeType' | 'size'> & {
78
78
  _id: string;
79
+ uploadedAt?: Date;
80
+ uploadedBy?: string;
79
81
  }
80
82
 
81
83
  export type TFileDoc = mongoose.HydratedDocument<IFile>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.5.148",
3
+ "version": "1.5.149",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {