c2-clinical 1.0.133 → 1.0.134

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.
@@ -6,7 +6,7 @@ export interface IAnthropometry extends IDefault {
6
6
  patient: Types.ObjectId | IPatient;
7
7
  form: Types.ObjectId | IForm;
8
8
  showingToPatient: boolean;
9
- anthropometryDate: Date;
9
+ anthropometryDateTime: Date;
10
10
  code: string;
11
11
  }
12
12
  export declare const AnthropometrySchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
@@ -44,7 +44,7 @@ export declare const AnthropometrySchema: Schema<any, import("mongoose").Model<a
44
44
  };
45
45
  showingToPatient: boolean;
46
46
  code?: string | null | undefined;
47
- anthropometryDate?: NativeDate | null | undefined;
47
+ anthropometryDateTime?: NativeDate | null | undefined;
48
48
  }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{} & {
49
49
  account: {
50
50
  prototype?: Types.ObjectId | null | undefined;
@@ -75,7 +75,7 @@ export declare const AnthropometrySchema: Schema<any, import("mongoose").Model<a
75
75
  };
76
76
  showingToPatient: boolean;
77
77
  code?: string | null | undefined;
78
- anthropometryDate?: NativeDate | null | undefined;
78
+ anthropometryDateTime?: NativeDate | null | undefined;
79
79
  }>, {}> & import("mongoose").FlatRecord<{} & {
80
80
  account: {
81
81
  prototype?: Types.ObjectId | null | undefined;
@@ -106,7 +106,7 @@ export declare const AnthropometrySchema: Schema<any, import("mongoose").Model<a
106
106
  };
107
107
  showingToPatient: boolean;
108
108
  code?: string | null | undefined;
109
- anthropometryDate?: NativeDate | null | undefined;
109
+ anthropometryDateTime?: NativeDate | null | undefined;
110
110
  }> & {
111
111
  _id: Types.ObjectId;
112
112
  } & {
@@ -7,7 +7,7 @@ exports.AnthropometrySchema = new mongoose_1.Schema({
7
7
  patient: { type: mongoose_1.Types.ObjectId, ref: "patient", required: true },
8
8
  form: { type: mongoose_1.Types.ObjectId, ref: "form", required: true },
9
9
  showingToPatient: { type: Boolean, default: false },
10
- anthropometryDate: { type: Date },
10
+ anthropometryDateTime: { type: Date },
11
11
  code: { type: String }
12
12
  }, {
13
13
  timestamps: { createdAt: "createdAtDateTime", updatedAt: "updatedAtDateTime" }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c2-clinical",
3
- "version": "1.0.133",
3
+ "version": "1.0.134",
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>",