@cool-digital-solutions/interferir-models 1.3.8 → 1.3.10
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/dist/schemas/ai-task-research-manager-output-summary-submission.schema.js +3 -3
- package/dist/types/ai-task-research-manager-output-summary-submission.type.d.ts +3 -3
- package/dist/types/ai-task-research-manager-output-summary.type.d.ts +1 -1
- package/dist/types/ai-task-research-manager-output-summary.type.js +1 -1
- package/package.json +1 -1
|
@@ -12,10 +12,10 @@ const aiTaskResearchManagerOutputSummarySubmissionSchema = new mongoose_1.Schema
|
|
|
12
12
|
aiTask: { type: mongoose_1.Schema.Types.ObjectId, ref: 'AiTask', required: true },
|
|
13
13
|
status: { type: String, enum: Object.values(ai_task_research_manager_output_summary_submission_type_1.AiTaskResearchManagerOutputSummarySubmissionStatus) },
|
|
14
14
|
process: [{ value: { type: Number }, text: { type: String, default: '' }, finishDate: { type: Number } }],
|
|
15
|
-
paramOptions: {
|
|
15
|
+
paramOptions: { readingTimes: [{ minTime: { type: Number }, maxTime: { type: Number } }], scopes: [{ type: String }] },
|
|
16
16
|
params: {
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
readingTime: { minTime: { type: Number }, maxTime: { type: Number } },
|
|
18
|
+
scopes: [{ type: String }],
|
|
19
19
|
additionalScope: { type: String },
|
|
20
20
|
name: { type: String },
|
|
21
21
|
},
|
|
@@ -35,8 +35,8 @@ interface TimeBracket {
|
|
|
35
35
|
maxTime: number;
|
|
36
36
|
}
|
|
37
37
|
interface ParamOptions {
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
readingTimes: TimeBracket[];
|
|
39
|
+
scopes: string[];
|
|
40
40
|
}
|
|
41
41
|
export declare enum AiTaskResearchManagerOutputSummarySubmissionStatus {
|
|
42
42
|
CREATED = "created",
|
|
@@ -51,7 +51,7 @@ export interface IAiTaskResearchManagerOutputSummarySubmission extends BaseSchem
|
|
|
51
51
|
process: Process[];
|
|
52
52
|
paramOptions: ParamOptions;
|
|
53
53
|
params: {
|
|
54
|
-
|
|
54
|
+
readingTime: TimeBracket;
|
|
55
55
|
scopes: string[];
|
|
56
56
|
additionalScope: string;
|
|
57
57
|
name: string;
|
|
@@ -31,7 +31,7 @@ interface Reference {
|
|
|
31
31
|
}
|
|
32
32
|
export declare enum SectionType {
|
|
33
33
|
DEFAULT = "default",
|
|
34
|
-
|
|
34
|
+
TOP_USE_CASES = "topUseCases"
|
|
35
35
|
}
|
|
36
36
|
export interface IAiTaskResearchManagerOutputSummary extends BaseSchema {
|
|
37
37
|
aiTask: Types.ObjectId | IAiTask;
|