gemcap-be-common 1.5.110 → 1.5.111
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.
|
@@ -49,6 +49,17 @@ export interface IProspectSharepoint {
|
|
|
49
49
|
syncStatus: ESharepointSyncStatus;
|
|
50
50
|
parentId: string;
|
|
51
51
|
}
|
|
52
|
+
export interface IProspectSharepointLean extends IProspectSharepoint {
|
|
53
|
+
_id: mongoose.Types.ObjectId;
|
|
54
|
+
createdAt: Date;
|
|
55
|
+
updatedAt: Date;
|
|
56
|
+
}
|
|
57
|
+
export interface IProspectSharepointPlain extends Omit<IProspectSharepoint, 'prospectId'> {
|
|
58
|
+
_id: string;
|
|
59
|
+
prospectId: string;
|
|
60
|
+
createdAt: Date;
|
|
61
|
+
updatedAt: Date;
|
|
62
|
+
}
|
|
52
63
|
export type TProspectSharepointModel = Model<IProspectSharepoint>;
|
|
53
64
|
export interface IProspectSharepointDoc extends IProspectSharepoint, Document {
|
|
54
65
|
}
|
|
@@ -27,6 +27,19 @@ export interface IProspectSharepoint {
|
|
|
27
27
|
parentId: string;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
+
export interface IProspectSharepointLean extends IProspectSharepoint {
|
|
31
|
+
_id: mongoose.Types.ObjectId;
|
|
32
|
+
createdAt: Date;
|
|
33
|
+
updatedAt: Date;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export interface IProspectSharepointPlain extends Omit<IProspectSharepoint, 'prospectId'> {
|
|
37
|
+
_id: string;
|
|
38
|
+
prospectId: string;
|
|
39
|
+
createdAt: Date;
|
|
40
|
+
updatedAt: Date;
|
|
41
|
+
}
|
|
42
|
+
|
|
30
43
|
export type TProspectSharepointModel = Model<IProspectSharepoint>;
|
|
31
44
|
|
|
32
45
|
export interface IProspectSharepointDoc extends IProspectSharepoint, Document {
|