@cool-digital-solutions/interferir-models 1.2.20 → 1.2.22

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.
@@ -24,6 +24,7 @@ const aiTaskOutlineSchema = new mongoose_1.Schema({
24
24
  reasoning: { type: String, required: true },
25
25
  isEditable: { type: Boolean, default: true },
26
26
  isDeletable: { type: Boolean, default: true },
27
+ sectionType: { type: String, default: '' },
27
28
  createdBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
28
29
  updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
29
30
  updatedDate: Number,
@@ -13,6 +13,7 @@ const aiTaskResearchManagerOutputSchema = new mongoose_1.Schema({
13
13
  order: { type: Number },
14
14
  parentId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'AiTaskResearchManagerOutput', default: null },
15
15
  references: [{ type: Object }],
16
+ sectionType: { type: String, default: '' },
16
17
  createdBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
17
18
  updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
18
19
  updatedDate: Number,
@@ -38,6 +38,7 @@ export interface IAiTaskOutline extends BaseSchema {
38
38
  reasoning: string;
39
39
  isEditable: boolean;
40
40
  isDeletable: boolean;
41
+ sectionType: string;
41
42
  }
42
43
  export interface IAiTaskOutlineModel extends BaseModel<IAiTaskOutline> {
43
44
  }
@@ -32,6 +32,7 @@ export interface IAiTaskResearchManagerOutput extends BaseSchema {
32
32
  order: number;
33
33
  parentId: Types.ObjectId | IAiTaskResearchManagerOutput;
34
34
  references: object[];
35
+ sectionType: string;
35
36
  }
36
37
  export interface IAiTaskResearchManagerOutputModel extends BaseModel<IAiTaskResearchManagerOutput> {
37
38
  }
@@ -56,7 +56,9 @@ export declare enum Key {
56
56
  SENT_TO_ENTRAMIND_DAYS = "sent_to_entramind_days",
57
57
  MINUTE = "minute",
58
58
  RESEARCH_BETA = "research_beta",
59
- RESEARCH_PROD = "research_prod"
59
+ RESEARCH_PROD = "research_prod",
60
+ EXPERIENCE_BETA = "experience_beta",
61
+ EXPERIENCE_PROD = "experience_prod"
60
62
  }
61
63
  export interface IGeneralConfig extends BaseSchema {
62
64
  generalConfigSub: Types.ObjectId | IGeneralConfigSub;
@@ -36,4 +36,6 @@ var Key;
36
36
  Key["MINUTE"] = "minute";
37
37
  Key["RESEARCH_BETA"] = "research_beta";
38
38
  Key["RESEARCH_PROD"] = "research_prod";
39
+ Key["EXPERIENCE_BETA"] = "experience_beta";
40
+ Key["EXPERIENCE_PROD"] = "experience_prod";
39
41
  })(Key || (exports.Key = Key = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cool-digital-solutions/interferir-models",
3
- "version": "1.2.20",
3
+ "version": "1.2.22",
4
4
  "main": "./dist/index.js",
5
5
  "files": [
6
6
  "dist/**/*"