@cool-digital-solutions/interferir-models 1.3.67 → 1.3.68

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.
@@ -58,6 +58,7 @@ const sparkUseCaseSchema = new mongoose_1.Schema({
58
58
  ],
59
59
  },
60
60
  ],
61
+ portiaArticles: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'PortiaArticle' }],
61
62
  aiTaskResearchManagerOutputs: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'AiTaskResearchManagerOutput' }],
62
63
  sfIndustries: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'Industry' }],
63
64
  sfTechnologies: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'Technology' }],
@@ -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 { IUser, ISpark, ICompany, ITheme, IUseCase, IIndustry, ITechnology, ISFSubCategory, ISFCategory, ISFTag, IAiTaskResearchManagerOutput } from './';
26
+ import { IUser, ISpark, ICompany, ITheme, IUseCase, IIndustry, ITechnology, ISFSubCategory, ISFCategory, ISFTag, IAiTaskResearchManagerOutput, IPortiaArticle } from './';
27
27
  import { SparkPriorityList } from './spark.type';
28
28
  import { BaseModel, BaseSchema, ContentStatus } from '../config';
29
29
  export declare enum SparkUseCaseStatusList {
@@ -95,6 +95,7 @@ export interface ISparkUseCase extends BaseSchema {
95
95
  fromEmptySparkUseCase: boolean;
96
96
  projectLocation: string[];
97
97
  aiTaskResearchManagerOutputs: Types.ObjectId[] | IAiTaskResearchManagerOutput[];
98
+ portiaArticles: Types.ObjectId[] | IPortiaArticle[];
98
99
  source: Source;
99
100
  }
100
101
  export interface ISparkUseCaseModel extends BaseModel<ISparkUseCase> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cool-digital-solutions/interferir-models",
3
- "version": "1.3.67",
3
+ "version": "1.3.68",
4
4
  "main": "./dist/index.js",
5
5
  "files": [
6
6
  "dist/**/*"