gemcap-be-common 1.4.53 → 1.4.54

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.
@@ -23,7 +23,6 @@
23
23
  /// <reference types="mongoose/types/virtuals" />
24
24
  /// <reference types="mongoose/types/inferschematype" />
25
25
  import mongoose, { Model } from 'mongoose';
26
- import { IProspectDoc } from './Prospect.model';
27
26
  export declare enum EProspectFileType {
28
27
  FILE = "FILE",
29
28
  AUDITOR_FILE = "AUDITOR_FILE",
@@ -63,7 +62,7 @@ export interface IProspectFilePlain extends IProspectFile {
63
62
  createdAt: Date;
64
63
  updatedAt: Date;
65
64
  }
66
- export type ProspectFileModel = Model<IProspectDoc>;
65
+ export type ProspectFileModel = Model<IProspectFileDoc>;
67
66
  export declare const ProspectFileSchema: mongoose.Schema<IProspectFileDoc, mongoose.Model<IProspectFileDoc, any, any, any, mongoose.Document<unknown, any, IProspectFileDoc> & IProspectFileDoc & Required<{
68
67
  _id: mongoose.Types.ObjectId;
69
68
  }>, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, IProspectFileDoc, mongoose.Document<unknown, {}, mongoose.FlatRecord<IProspectFileDoc>> & mongoose.FlatRecord<IProspectFileDoc> & Required<{
@@ -1,7 +1,6 @@
1
1
  import mongoose, { Model } from 'mongoose';
2
2
 
3
3
  import { MODEL_NAMES } from './_models';
4
- import { IProspectDoc } from './Prospect.model';
5
4
 
6
5
  export enum EProspectFileType {
7
6
  FILE = 'FILE',
@@ -47,7 +46,7 @@ export interface IProspectFilePlain extends IProspectFile {
47
46
  updatedAt: Date;
48
47
  }
49
48
 
50
- export type ProspectFileModel = Model<IProspectDoc>;
49
+ export type ProspectFileModel = Model<IProspectFileDoc>;
51
50
 
52
51
  export const ProspectFileSchema = new mongoose.Schema<IProspectFileDoc>({
53
52
  isAccepted: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.4.53",
3
+ "version": "1.4.54",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {