gemcap-be-common 1.5.98 → 1.5.99

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.
@@ -64,8 +64,10 @@ export interface IProspectFileLean extends IProspectFile {
64
64
  createdAt: Date;
65
65
  updatedAt: Date;
66
66
  }
67
- export interface IProspectFilePlain extends IProspectFile {
67
+ export interface IProspectFilePlain extends Omit<IProspectFile, 'prospectId' | 'auditorId'> {
68
68
  _id: string;
69
+ prospectId: string;
70
+ auditorId: string;
69
71
  createdAt: Date;
70
72
  updatedAt: Date;
71
73
  }
@@ -42,8 +42,10 @@ export interface IProspectFileLean extends IProspectFile {
42
42
  updatedAt: Date;
43
43
  }
44
44
 
45
- export interface IProspectFilePlain extends IProspectFile {
45
+ export interface IProspectFilePlain extends Omit<IProspectFile, 'prospectId' | 'auditorId'> {
46
46
  _id: string;
47
+ prospectId: string;
48
+ auditorId: string;
47
49
  createdAt: Date;
48
50
  updatedAt: Date;
49
51
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.5.98",
3
+ "version": "1.5.99",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {