c2-clinical 1.0.197 → 1.0.198

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.
@@ -25,6 +25,7 @@ export declare const EnergyExpenditureSchema: Schema<any, import("mongoose").Mod
25
25
  createFromBase64?: {} | null | undefined;
26
26
  isValid?: {} | null | undefined;
27
27
  };
28
+ description: string;
28
29
  form: {
29
30
  prototype?: Types.ObjectId | null | undefined;
30
31
  cacheHexString?: unknown;
@@ -44,7 +45,6 @@ export declare const EnergyExpenditureSchema: Schema<any, import("mongoose").Mod
44
45
  isValid?: {} | null | undefined;
45
46
  };
46
47
  showingToPatient: boolean;
47
- description?: string | null | undefined;
48
48
  code?: string | null | undefined;
49
49
  energyExpenditureDateTime?: NativeDate | null | undefined;
50
50
  }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{} & {
@@ -57,6 +57,7 @@ export declare const EnergyExpenditureSchema: Schema<any, import("mongoose").Mod
57
57
  createFromBase64?: {} | null | undefined;
58
58
  isValid?: {} | null | undefined;
59
59
  };
60
+ description: string;
60
61
  form: {
61
62
  prototype?: Types.ObjectId | null | undefined;
62
63
  cacheHexString?: unknown;
@@ -76,7 +77,6 @@ export declare const EnergyExpenditureSchema: Schema<any, import("mongoose").Mod
76
77
  isValid?: {} | null | undefined;
77
78
  };
78
79
  showingToPatient: boolean;
79
- description?: string | null | undefined;
80
80
  code?: string | null | undefined;
81
81
  energyExpenditureDateTime?: NativeDate | null | undefined;
82
82
  }>, {}> & import("mongoose").FlatRecord<{} & {
@@ -89,6 +89,7 @@ export declare const EnergyExpenditureSchema: Schema<any, import("mongoose").Mod
89
89
  createFromBase64?: {} | null | undefined;
90
90
  isValid?: {} | null | undefined;
91
91
  };
92
+ description: string;
92
93
  form: {
93
94
  prototype?: Types.ObjectId | null | undefined;
94
95
  cacheHexString?: unknown;
@@ -108,7 +109,6 @@ export declare const EnergyExpenditureSchema: Schema<any, import("mongoose").Mod
108
109
  isValid?: {} | null | undefined;
109
110
  };
110
111
  showingToPatient: boolean;
111
- description?: string | null | undefined;
112
112
  code?: string | null | undefined;
113
113
  energyExpenditureDateTime?: NativeDate | null | undefined;
114
114
  }> & {
@@ -9,7 +9,7 @@ exports.EnergyExpenditureSchema = new mongoose_1.Schema({
9
9
  showingToPatient: { type: Boolean, default: false },
10
10
  energyExpenditureDateTime: { type: Date },
11
11
  code: { type: String },
12
- description: { type: String }
12
+ description: { type: String, required: true }
13
13
  }, {
14
14
  timestamps: { createdAt: "createdAtDateTime", updatedAt: "updatedAtDateTime" }
15
15
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c2-clinical",
3
- "version": "1.0.197",
3
+ "version": "1.0.198",
4
4
  "description": "Biblioteca Typescript para API NodeJS",
5
5
  "repository": {
6
6
  "type": "git",