c2-clinical 1.0.91 → 1.0.93
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.
|
@@ -56,6 +56,8 @@ export interface IFormUnit extends IDefault {
|
|
|
56
56
|
measurementUnit: string;
|
|
57
57
|
options: IQuestionOption[];
|
|
58
58
|
formulaToAnswer: string;
|
|
59
|
+
formulaToReferenceValue: string;
|
|
60
|
+
formulaToClassification: string;
|
|
59
61
|
formulaToEnable: string;
|
|
60
62
|
validations: IValidationQuestion[];
|
|
61
63
|
active: boolean;
|
|
@@ -286,6 +288,8 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
286
288
|
typeButtonAction?: string | null | undefined;
|
|
287
289
|
measurementUnit?: string | null | undefined;
|
|
288
290
|
formulaToAnswer?: string | null | undefined;
|
|
291
|
+
formulaToReferenceValue?: string | null | undefined;
|
|
292
|
+
formulaToClassification?: string | null | undefined;
|
|
289
293
|
codeEnableFreeText?: string | null | undefined;
|
|
290
294
|
labelFreeText?: string | null | undefined;
|
|
291
295
|
graphicData?: any;
|
|
@@ -400,6 +404,8 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
400
404
|
typeButtonAction?: string | null | undefined;
|
|
401
405
|
measurementUnit?: string | null | undefined;
|
|
402
406
|
formulaToAnswer?: string | null | undefined;
|
|
407
|
+
formulaToReferenceValue?: string | null | undefined;
|
|
408
|
+
formulaToClassification?: string | null | undefined;
|
|
403
409
|
codeEnableFreeText?: string | null | undefined;
|
|
404
410
|
labelFreeText?: string | null | undefined;
|
|
405
411
|
graphicData?: any;
|
|
@@ -514,6 +520,8 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
514
520
|
typeButtonAction?: string | null | undefined;
|
|
515
521
|
measurementUnit?: string | null | undefined;
|
|
516
522
|
formulaToAnswer?: string | null | undefined;
|
|
523
|
+
formulaToReferenceValue?: string | null | undefined;
|
|
524
|
+
formulaToClassification?: string | null | undefined;
|
|
517
525
|
codeEnableFreeText?: string | null | undefined;
|
|
518
526
|
labelFreeText?: string | null | undefined;
|
|
519
527
|
graphicData?: any;
|
|
@@ -54,6 +54,8 @@ exports.FormUnitSchema = new mongoose_1.Schema({
|
|
|
54
54
|
measurementUnit: { type: String },
|
|
55
55
|
options: { type: [exports.QuestionOptionSchema] },
|
|
56
56
|
formulaToAnswer: { type: String },
|
|
57
|
+
formulaToReferenceValue: { type: String },
|
|
58
|
+
formulaToClassification: { type: String },
|
|
57
59
|
formulaToEnable: { type: String, default: "true" },
|
|
58
60
|
validations: { type: [exports.ValidationSchema] },
|
|
59
61
|
active: { type: Boolean, required: true, default: true }, //perguntas que nao serão consideradas ao realizar qualquer operacao
|
package/package.json
CHANGED