c2-clinical 1.0.70 → 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.
@@ -218,7 +218,6 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
218
218
  }>;
219
219
  show: any;
220
220
  readOnly: any;
221
- codeEnableFreeText: string;
222
221
  requestGraphicData: Types.DocumentArray<{
223
222
  method: string;
224
223
  url: string;
@@ -271,6 +270,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
271
270
  typeButtonAction?: string | null | undefined;
272
271
  measurementUnit?: string | null | undefined;
273
272
  formulaToAnswer?: string | null | undefined;
273
+ codeEnableFreeText?: string | null | undefined;
274
274
  graphicData?: any;
275
275
  modalConfig?: any;
276
276
  }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{} & {
@@ -328,7 +328,6 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
328
328
  }>;
329
329
  show: any;
330
330
  readOnly: any;
331
- codeEnableFreeText: string;
332
331
  requestGraphicData: Types.DocumentArray<{
333
332
  method: string;
334
333
  url: string;
@@ -381,6 +380,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
381
380
  typeButtonAction?: string | null | undefined;
382
381
  measurementUnit?: string | null | undefined;
383
382
  formulaToAnswer?: string | null | undefined;
383
+ codeEnableFreeText?: string | null | undefined;
384
384
  graphicData?: any;
385
385
  modalConfig?: any;
386
386
  }>, {}> & import("mongoose").FlatRecord<{} & {
@@ -438,7 +438,6 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
438
438
  }>;
439
439
  show: any;
440
440
  readOnly: any;
441
- codeEnableFreeText: string;
442
441
  requestGraphicData: Types.DocumentArray<{
443
442
  method: string;
444
443
  url: string;
@@ -491,6 +490,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
491
490
  typeButtonAction?: string | null | undefined;
492
491
  measurementUnit?: string | null | undefined;
493
492
  formulaToAnswer?: string | null | undefined;
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: String, default: "OTHERS" },
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.70",
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>",