@cool-digital-solutions/interferir-models 1.0.54 → 1.0.55

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.
@@ -153,6 +153,7 @@ const instantResearchSchema = new mongoose_1.Schema({
153
153
  sfSubCategories: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'SFSubCategory' }],
154
154
  sfTags: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'SFTag' }],
155
155
  isBriefCompleted: { type: Boolean, default: false },
156
+ privForUsers: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'User' }],
156
157
  createdBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
157
158
  updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
158
159
  updatedDate: { type: Number, index: -1 },
@@ -182,6 +182,7 @@ export interface IInstantResearch extends BaseSchema {
182
182
  focusAreas: FocusArea[];
183
183
  foamTrees: FoamTree[];
184
184
  isBriefCompleted: boolean;
185
+ privForUsers: Types.ObjectId[];
185
186
  }
186
187
  export interface IInstantResearchModel extends BaseModel<IInstantResearch> {
187
188
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cool-digital-solutions/interferir-models",
3
- "version": "1.0.54",
3
+ "version": "1.0.55",
4
4
  "main": "./dist/index.js",
5
5
  "files": [
6
6
  "dist/**/*"