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 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
- formElementStates: FormElementStateInputModel[];
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
- formElementStates: FormElementStateInputModel[];
187
+ formElementStatesToAdd?: FormElementStateInputModel[];
188
+ formElementStatesToRemove?: FormElementStateInputModel[];
187
189
  }
188
190
  interface FormElementStateInputModel {
189
191
  guid: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generio-sdk",
3
- "version": "1.0.81",
3
+ "version": "1.0.85",
4
4
  "description": "SDK library for generio integration",
5
5
  "type": "module",
6
6
  "license": "MIT",