generio-sdk 1.0.81 → 1.0.85
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/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -114,6 +114,7 @@ interface GetAnnotationPlacementsOutputModel {
|
|
|
114
114
|
annotationPlacements: AnnotationPlacement[];
|
|
115
115
|
}
|
|
116
116
|
interface AnnotationPlacement {
|
|
117
|
+
id: number;
|
|
117
118
|
examinationId: number;
|
|
118
119
|
title: string;
|
|
119
120
|
laterality: string;
|
|
@@ -183,7 +184,8 @@ interface FormElementStateViewModel {
|
|
|
183
184
|
interface UpdateStudyInputModel {
|
|
184
185
|
studyInstanceUId: string;
|
|
185
186
|
examinationId: number;
|
|
186
|
-
|
|
187
|
+
formElementStatesToAdd?: FormElementStateInputModel[];
|
|
188
|
+
formElementStatesToRemove?: FormElementStateInputModel[];
|
|
187
189
|
}
|
|
188
190
|
interface FormElementStateInputModel {
|
|
189
191
|
guid: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -114,6 +114,7 @@ interface GetAnnotationPlacementsOutputModel {
|
|
|
114
114
|
annotationPlacements: AnnotationPlacement[];
|
|
115
115
|
}
|
|
116
116
|
interface AnnotationPlacement {
|
|
117
|
+
id: number;
|
|
117
118
|
examinationId: number;
|
|
118
119
|
title: string;
|
|
119
120
|
laterality: string;
|
|
@@ -183,7 +184,8 @@ interface FormElementStateViewModel {
|
|
|
183
184
|
interface UpdateStudyInputModel {
|
|
184
185
|
studyInstanceUId: string;
|
|
185
186
|
examinationId: number;
|
|
186
|
-
|
|
187
|
+
formElementStatesToAdd?: FormElementStateInputModel[];
|
|
188
|
+
formElementStatesToRemove?: FormElementStateInputModel[];
|
|
187
189
|
}
|
|
188
190
|
interface FormElementStateInputModel {
|
|
189
191
|
guid: string;
|