c2-clinical 1.0.130 → 1.0.131

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.
@@ -99,7 +99,7 @@ export interface IFormUnit extends IDefault {
99
99
  _id: Types.ObjectId;
100
100
  }[];
101
101
  };
102
- screenPosition: number;
102
+ screenPlacement: number;
103
103
  lineId?: string;
104
104
  }
105
105
  export interface IQuestionOption {
@@ -320,7 +320,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
320
320
  formulaToReferenceValue?: string | null | undefined;
321
321
  formulaToClassificationLabel?: string | null | undefined;
322
322
  formulaToClassificationColor?: string | null | undefined;
323
- screenPosition?: string | null | undefined;
323
+ screenPlacement?: number | null | undefined;
324
324
  codeEnableFreeText?: string | null | undefined;
325
325
  labelFreeText?: string | null | undefined;
326
326
  graphicData?: any;
@@ -474,7 +474,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
474
474
  formulaToReferenceValue?: string | null | undefined;
475
475
  formulaToClassificationLabel?: string | null | undefined;
476
476
  formulaToClassificationColor?: string | null | undefined;
477
- screenPosition?: string | null | undefined;
477
+ screenPlacement?: number | null | undefined;
478
478
  codeEnableFreeText?: string | null | undefined;
479
479
  labelFreeText?: string | null | undefined;
480
480
  graphicData?: any;
@@ -628,7 +628,7 @@ export declare const FormUnitSchema: Schema<any, import("mongoose").Model<any, a
628
628
  formulaToReferenceValue?: string | null | undefined;
629
629
  formulaToClassificationLabel?: string | null | undefined;
630
630
  formulaToClassificationColor?: string | null | undefined;
631
- screenPosition?: string | null | undefined;
631
+ screenPlacement?: number | null | undefined;
632
632
  codeEnableFreeText?: string | null | undefined;
633
633
  labelFreeText?: string | null | undefined;
634
634
  graphicData?: any;
@@ -65,7 +65,7 @@ exports.FormUnitSchema = new mongoose_1.Schema({
65
65
  show: { type: Boolean, required: true, default: true }, //determina se a pergunta é exibida nos formulario (IDADE EM DIAS POR EXEMPLO, perguntas necessárias para alguns calculos mas q nao fazem sentido exibi-las)
66
66
  readOnly: { type: Boolean, default: false },
67
67
  required: { type: Boolean, default: false },
68
- screenPosition: { type: String },
68
+ screenPlacement: { type: Number },
69
69
  ellegibleForComparison: { type: Boolean, default: false },
70
70
  //DADOS PARA PERGUNTAS CHOICE_SINGLE E CHOICE_MULTIPLE
71
71
  codeEnableFreeText: { type: String },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c2-clinical",
3
- "version": "1.0.130",
3
+ "version": "1.0.131",
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>",