gemcap-be-common 1.4.73 → 1.4.74
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.
package/models/Prospect.model.js
CHANGED
package/models/Prospect.model.ts
CHANGED
|
@@ -534,6 +534,7 @@ export interface IProspectContact {
|
|
|
534
534
|
}
|
|
535
535
|
|
|
536
536
|
export interface IProspect extends IProspectBase, IProspectExternalNew {
|
|
537
|
+
isLocked: boolean;
|
|
537
538
|
probability: number;
|
|
538
539
|
businessDescription: string;
|
|
539
540
|
comments: string;
|
|
@@ -729,6 +730,9 @@ const ProspectInfoSchema = {
|
|
|
729
730
|
|
|
730
731
|
export const ProspectSchema = new mongoose.Schema<IProspect, ProspectModel>(
|
|
731
732
|
{
|
|
733
|
+
isLocked: {
|
|
734
|
+
type: Boolean,
|
|
735
|
+
},
|
|
732
736
|
isDeclined: {
|
|
733
737
|
type: Boolean,
|
|
734
738
|
},
|