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: boolean;
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?: any;
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?: any;
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?: any;
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: Boolean },
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c2-clinical",
3
- "version": "1.0.69",
3
+ "version": "1.0.71",
4
4
  "description": "Biblioteca Typescript para API NodeJS",
5
5
  "repository": "https://github.com/cabralsilva/c2-clinical.git",
6
6
  "author": "Daniel Cabral <cabralconsultoriaemsoftware@gmail.com>",