@cool-digital-solutions/interferir-models 1.3.81 → 1.3.82

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.
@@ -60,6 +60,7 @@ const useCaseSchema = new mongoose_1.Schema({
60
60
  },
61
61
  publishDate: { type: Number, default: 0 },
62
62
  aiTaskResearchManagerOutputs: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'AiTaskResearchManagerOutput' }],
63
+ aiTaskCurationManagerOutputs: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'AiTaskCurationManagerOutput' }],
63
64
  sourcePublishDate: { type: Number, default: null },
64
65
  createdBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
65
66
  createdDate: Number,
@@ -23,7 +23,7 @@
23
23
  /// <reference types="mongoose/types/virtuals" />
24
24
  /// <reference types="mongoose/types/inferschematype" />
25
25
  import { Types } from 'mongoose';
26
- import { ITheme, ISFTag, ISFSubCategory, ISFCategory, ITechnology, IProblem, IIndustry, ICompany, IUser, ISparkUseCase, IAiTaskResearchManagerOutput } from './';
26
+ import { ITheme, ISFTag, ISFSubCategory, ISFCategory, ITechnology, IProblem, IIndustry, ICompany, IUser, ISparkUseCase, IAiTaskResearchManagerOutput, IAiTaskCurationManagerOutput } from './';
27
27
  import { BaseModel, BaseSchema, ContentDraftStatus, ContentStatus } from '../config';
28
28
  interface Source {
29
29
  url: string;
@@ -70,6 +70,7 @@ export interface IUseCase extends BaseSchema {
70
70
  externalParameter: ExternalParameter;
71
71
  publishDate?: number;
72
72
  aiTaskResearchManagerOutputs?: Types.ObjectId[] | IAiTaskResearchManagerOutput[];
73
+ aiTaskCurationManagerOutputs?: Types.ObjectId[] | IAiTaskCurationManagerOutput[];
73
74
  sourcePublishDate?: number;
74
75
  }
75
76
  export interface IUseCaseModel extends BaseModel<IUseCase> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cool-digital-solutions/interferir-models",
3
- "version": "1.3.81",
3
+ "version": "1.3.82",
4
4
  "main": "./dist/index.js",
5
5
  "files": [
6
6
  "dist/**/*"