c2-clinical 1.0.140 → 1.0.141
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.
|
@@ -7,6 +7,9 @@ export interface IAnthropometryAnswer extends IAnswer {
|
|
|
7
7
|
form: Types.ObjectId | IForm;
|
|
8
8
|
anthropometry: Types.ObjectId | IAnthropometry;
|
|
9
9
|
patient: Types.ObjectId | IPatient;
|
|
10
|
+
referenceValue: any;
|
|
11
|
+
classificationLabel: any;
|
|
12
|
+
classificationColor: any;
|
|
10
13
|
}
|
|
11
14
|
export declare const AnthropometryAnswerSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
|
|
12
15
|
timestamps: {
|
|
@@ -95,6 +98,9 @@ export declare const AnthropometryAnswerSchema: Schema<any, import("mongoose").M
|
|
|
95
98
|
isValid?: {} | null | undefined;
|
|
96
99
|
};
|
|
97
100
|
answer?: any;
|
|
101
|
+
referenceValue?: any;
|
|
102
|
+
classificationLabel?: any;
|
|
103
|
+
classificationColor?: any;
|
|
98
104
|
}, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{} & {
|
|
99
105
|
account: {
|
|
100
106
|
prototype?: Types.ObjectId | null | undefined;
|
|
@@ -177,6 +183,9 @@ export declare const AnthropometryAnswerSchema: Schema<any, import("mongoose").M
|
|
|
177
183
|
isValid?: {} | null | undefined;
|
|
178
184
|
};
|
|
179
185
|
answer?: any;
|
|
186
|
+
referenceValue?: any;
|
|
187
|
+
classificationLabel?: any;
|
|
188
|
+
classificationColor?: any;
|
|
180
189
|
}>, {}> & import("mongoose").FlatRecord<{} & {
|
|
181
190
|
account: {
|
|
182
191
|
prototype?: Types.ObjectId | null | undefined;
|
|
@@ -259,6 +268,9 @@ export declare const AnthropometryAnswerSchema: Schema<any, import("mongoose").M
|
|
|
259
268
|
isValid?: {} | null | undefined;
|
|
260
269
|
};
|
|
261
270
|
answer?: any;
|
|
271
|
+
referenceValue?: any;
|
|
272
|
+
classificationLabel?: any;
|
|
273
|
+
classificationColor?: any;
|
|
262
274
|
}> & {
|
|
263
275
|
_id: Types.ObjectId;
|
|
264
276
|
} & {
|
|
@@ -11,6 +11,9 @@ exports.AnthropometryAnswerSchema = new mongoose_1.Schema({
|
|
|
11
11
|
form: { type: mongoose_1.Types.ObjectId, ref: "form", required: true },
|
|
12
12
|
reference: { type: mongoose_1.Types.ObjectId, ref: "form-unit", required: true },
|
|
13
13
|
answer: { type: mongoose_1.Schema.Types.Mixed },
|
|
14
|
+
referenceValue: { type: mongoose_1.Schema.Types.Mixed },
|
|
15
|
+
classificationLabel: { type: mongoose_1.Schema.Types.Mixed },
|
|
16
|
+
classificationColor: { type: mongoose_1.Schema.Types.Mixed },
|
|
14
17
|
validations: {
|
|
15
18
|
type: [
|
|
16
19
|
{
|
package/package.json
CHANGED