module-package-comp 1.2.4 → 1.2.5
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.
- package/dist/util/type.d.ts +2 -2
- package/package.json +1 -1
- package/src/util/type.ts +2 -2
package/dist/util/type.d.ts
CHANGED
|
@@ -78,9 +78,9 @@ export interface ComponentResult {
|
|
|
78
78
|
}
|
|
79
79
|
export interface Data {
|
|
80
80
|
_id: string;
|
|
81
|
-
|
|
81
|
+
patientDmi: string;
|
|
82
82
|
from: string;
|
|
83
|
-
|
|
83
|
+
componentId: Component;
|
|
84
84
|
value: DataJSON;
|
|
85
85
|
extra: DataJSON;
|
|
86
86
|
createdAt: DateTime;
|
package/package.json
CHANGED
package/src/util/type.ts
CHANGED
|
@@ -92,9 +92,9 @@ export interface ComponentResult {
|
|
|
92
92
|
|
|
93
93
|
export interface Data {
|
|
94
94
|
_id: string;
|
|
95
|
-
|
|
95
|
+
patientDmi: string;
|
|
96
96
|
from: string;
|
|
97
|
-
|
|
97
|
+
componentId: Component;
|
|
98
98
|
value: DataJSON;
|
|
99
99
|
extra: DataJSON;
|
|
100
100
|
createdAt: DateTime;
|