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