generio-sdk 1.0.33 → 1.0.34
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.ts +12 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -193,6 +193,17 @@ interface ElementRow {
|
|
|
193
193
|
subRows: Array<ElementSubRow>;
|
|
194
194
|
}
|
|
195
195
|
//#endregion
|
|
196
|
+
//#region src/models/AppendDiagnoseFormHandlebarsModel.d.ts
|
|
197
|
+
interface AppendDiagnoseFormHandlebarsModel {
|
|
198
|
+
index: number;
|
|
199
|
+
}
|
|
200
|
+
//#endregion
|
|
201
|
+
//#region src/models/FindingGeneratorFormHandlebarsModel.d.ts
|
|
202
|
+
interface FindingGeneratorFormHandlebarsModel {
|
|
203
|
+
formRows: ElementRow[];
|
|
204
|
+
appendDiagnoses: AppendDiagnoseFormHandlebarsModel[];
|
|
205
|
+
}
|
|
206
|
+
//#endregion
|
|
196
207
|
//#region src/index.d.ts
|
|
197
208
|
declare const GENERIO_ORIGIN = "https://localhost:7052";
|
|
198
209
|
declare const GENERIO_IS_LOGGED_IN = "generio-is-logged-in";
|
|
@@ -207,4 +218,4 @@ declare function logout(): Promise<LogoutOutputModel>;
|
|
|
207
218
|
declare function setupPostMessageListener(generioReadyHandler?: (payload: GenerioReadyOutputModel) => void): void;
|
|
208
219
|
declare function loadExaminationPromise(examinationId: number, studyInstanceUId: string): Promise<OriginDetail>;
|
|
209
220
|
//#endregion
|
|
210
|
-
export { type Column, type ElementColumn, type ElementRow, type ElementSubRow, FormTypeEnum, GENERIO_IS_LOGGED_IN, GENERIO_LOGGED_IN_EMAIL, GENERIO_ORIGIN, GetExaminationMessageOutputModel, GetExtParamValueByStudyInstanceUIdInputModel, GetExtParamValueByStudyInstanceUIdOutputModel, KeyValueModel, LoginInputModel, LoginOutputModel, LogoutOutputModel, MeasurementModel, type OriginDataItem, type OriginDetail, type OriginElementDetail, RecognizeExaminationInputModel, RecognizeExaminationOutputModel, SendMeasurementsInputModel, SendMeasurementsOutputModel, SetExtParamsInputModel, SetExtParamsOutputModel, getExaminationMessage, getExtParamValueByStudyInstanceUId, loadExaminationPromise, login, logout, recognizeExamination, sendMeasurements, setExtParams, setupPostMessageListener };
|
|
221
|
+
export { type AppendDiagnoseFormHandlebarsModel, type Column, type ElementColumn, type ElementRow, type ElementSubRow, type FindingGeneratorFormHandlebarsModel, FormTypeEnum, GENERIO_IS_LOGGED_IN, GENERIO_LOGGED_IN_EMAIL, GENERIO_ORIGIN, GetExaminationMessageOutputModel, GetExtParamValueByStudyInstanceUIdInputModel, GetExtParamValueByStudyInstanceUIdOutputModel, KeyValueModel, LoginInputModel, LoginOutputModel, LogoutOutputModel, MeasurementModel, type OriginDataItem, type OriginDetail, type OriginElementDetail, RecognizeExaminationInputModel, RecognizeExaminationOutputModel, SendMeasurementsInputModel, SendMeasurementsOutputModel, SetExtParamsInputModel, SetExtParamsOutputModel, getExaminationMessage, getExtParamValueByStudyInstanceUId, loadExaminationPromise, login, logout, recognizeExamination, sendMeasurements, setExtParams, setupPostMessageListener };
|