c2-clinical 1.0.69 → 1.0.71
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.
|
@@ -55,7 +55,7 @@ export interface IFormUnit extends IDefault {
|
|
|
55
55
|
show: boolean;
|
|
56
56
|
readOnly: boolean;
|
|
57
57
|
required: boolean;
|
|
58
|
-
codeEnableFreeText:
|
|
58
|
+
codeEnableFreeText: string;
|
|
59
59
|
graphicData: any;
|
|
60
60
|
requestGraphicData: IRequestGraphicData[];
|
|
61
61
|
children?: IFormUnit[];
|
|
@@ -270,7 +270,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
270
270
|
typeButtonAction?: string | null | undefined;
|
|
271
271
|
measurementUnit?: string | null | undefined;
|
|
272
272
|
formulaToAnswer?: string | null | undefined;
|
|
273
|
-
codeEnableFreeText?:
|
|
273
|
+
codeEnableFreeText?: string | null | undefined;
|
|
274
274
|
graphicData?: any;
|
|
275
275
|
modalConfig?: any;
|
|
276
276
|
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{} & {
|
|
@@ -380,7 +380,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
380
380
|
typeButtonAction?: string | null | undefined;
|
|
381
381
|
measurementUnit?: string | null | undefined;
|
|
382
382
|
formulaToAnswer?: string | null | undefined;
|
|
383
|
-
codeEnableFreeText?:
|
|
383
|
+
codeEnableFreeText?: string | null | undefined;
|
|
384
384
|
graphicData?: any;
|
|
385
385
|
modalConfig?: any;
|
|
386
386
|
}>, {}> & import("mongoose").FlatRecord<{} & {
|
|
@@ -490,7 +490,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
|
|
|
490
490
|
typeButtonAction?: string | null | undefined;
|
|
491
491
|
measurementUnit?: string | null | undefined;
|
|
492
492
|
formulaToAnswer?: string | null | undefined;
|
|
493
|
-
codeEnableFreeText?:
|
|
493
|
+
codeEnableFreeText?: string | null | undefined;
|
|
494
494
|
graphicData?: any;
|
|
495
495
|
modalConfig?: any;
|
|
496
496
|
}> & {
|
|
@@ -61,7 +61,7 @@ exports.FormUnitSchema = new mongoose_1.Schema({
|
|
|
61
61
|
readOnly: { type: Boolean, default: false },
|
|
62
62
|
required: { type: Boolean, default: false },
|
|
63
63
|
//DADOS PARA PERGUNTAS CHOICE_SINGLE E CHOICE_MULTIPLE
|
|
64
|
-
codeEnableFreeText: { type:
|
|
64
|
+
codeEnableFreeText: { type: String },
|
|
65
65
|
//DADOS PARA GRAFICOS
|
|
66
66
|
graphicData: { type: mongoose_1.Schema.Types.Mixed },
|
|
67
67
|
requestGraphicData: { type: [exports.RequestGraphicDataSchema] },
|
package/package.json
CHANGED