@cool-digital-solutions/interferir-models 1.3.20 → 1.3.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.
|
@@ -12,9 +12,9 @@ const aiTaskResearchManagerOutputPresentationSubmissionSchema = new mongoose_1.S
|
|
|
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_presentation_submission_type_1.AiTaskResearchManagerOutputPresentationSubmissionStatus) },
|
|
14
14
|
process: { value: { type: Number }, text: { type: String, default: '' }, finishDate: { type: Number } },
|
|
15
|
-
paramOptions: {
|
|
15
|
+
paramOptions: { pageNumbers: [{ minPage: { type: Number }, maxPage: { type: Number } }], scopes: [{ type: String }] },
|
|
16
16
|
params: {
|
|
17
|
-
|
|
17
|
+
pageNumber: { type: Number, required: false },
|
|
18
18
|
scopes: [{ type: String }],
|
|
19
19
|
additionalScope: { type: String },
|
|
20
20
|
name: { type: String },
|
|
@@ -232,6 +232,7 @@ const companySchema = new mongoose_1.Schema({
|
|
|
232
232
|
aiContext: { type: String, default: '' },
|
|
233
233
|
aiHrContext: { type: String, default: '' },
|
|
234
234
|
creationSource: [{ type: Object }],
|
|
235
|
+
customerPerspective: { type: String, default: '' },
|
|
235
236
|
createdBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
|
|
236
237
|
updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
|
|
237
238
|
updatedDate: { type: Number },
|
|
@@ -30,12 +30,12 @@ interface Process {
|
|
|
30
30
|
text: string;
|
|
31
31
|
finishDate: number;
|
|
32
32
|
}
|
|
33
|
-
interface
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
interface PageNumber {
|
|
34
|
+
minPage: number;
|
|
35
|
+
maxPage: number;
|
|
36
36
|
}
|
|
37
37
|
interface ParamOptions {
|
|
38
|
-
|
|
38
|
+
pageNumbers: PageNumber[];
|
|
39
39
|
scopes: string[];
|
|
40
40
|
}
|
|
41
41
|
export declare enum AiTaskResearchManagerOutputPresentationSubmissionStatus {
|
|
@@ -51,7 +51,7 @@ export interface IAiTaskResearchManagerOutputPresentationSubmission extends Base
|
|
|
51
51
|
process: Process;
|
|
52
52
|
paramOptions: ParamOptions;
|
|
53
53
|
params: {
|
|
54
|
-
|
|
54
|
+
pageNumber: number;
|
|
55
55
|
scopes: string[];
|
|
56
56
|
additionalScope: string;
|
|
57
57
|
name: string;
|