c2-clinical 1.0.185 → 1.0.187

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.
@@ -8,6 +8,7 @@ export interface IAnthropometry extends IDefault {
8
8
  showingToPatient: boolean;
9
9
  anthropometryDateTime: Date;
10
10
  code: string;
11
+ description: string;
11
12
  }
12
13
  export declare const AnthropometrySchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
13
14
  timestamps: {
@@ -43,6 +44,7 @@ export declare const AnthropometrySchema: Schema<any, import("mongoose").Model<a
43
44
  isValid?: {} | null | undefined;
44
45
  };
45
46
  showingToPatient: boolean;
47
+ description?: string | null | undefined;
46
48
  code?: string | null | undefined;
47
49
  anthropometryDateTime?: NativeDate | null | undefined;
48
50
  }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{} & {
@@ -74,6 +76,7 @@ export declare const AnthropometrySchema: Schema<any, import("mongoose").Model<a
74
76
  isValid?: {} | null | undefined;
75
77
  };
76
78
  showingToPatient: boolean;
79
+ description?: string | null | undefined;
77
80
  code?: string | null | undefined;
78
81
  anthropometryDateTime?: NativeDate | null | undefined;
79
82
  }>, {}> & import("mongoose").FlatRecord<{} & {
@@ -105,6 +108,7 @@ export declare const AnthropometrySchema: Schema<any, import("mongoose").Model<a
105
108
  isValid?: {} | null | undefined;
106
109
  };
107
110
  showingToPatient: boolean;
111
+ description?: string | null | undefined;
108
112
  code?: string | null | undefined;
109
113
  anthropometryDateTime?: NativeDate | null | undefined;
110
114
  }> & {
@@ -8,7 +8,8 @@ exports.AnthropometrySchema = new mongoose_1.Schema({
8
8
  form: { type: mongoose_1.Types.ObjectId, ref: "form", required: true },
9
9
  showingToPatient: { type: Boolean, default: false },
10
10
  anthropometryDateTime: { type: Date },
11
- code: { type: String }
11
+ code: { type: String },
12
+ description: { type: String }
12
13
  }, {
13
14
  timestamps: { createdAt: "createdAtDateTime", updatedAt: "updatedAtDateTime" }
14
15
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c2-clinical",
3
- "version": "1.0.185",
3
+ "version": "1.0.187",
4
4
  "description": "Biblioteca Typescript para API NodeJS",
5
5
  "repository": {
6
6
  "type": "git",