oro-sdk 7.0.0 → 7.1.0
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/client.d.ts +11 -0
- package/dist/oro-sdk.cjs.development.js +414 -355
- package/dist/oro-sdk.cjs.development.js.map +1 -1
- package/dist/oro-sdk.cjs.production.min.js +1 -1
- package/dist/oro-sdk.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk.esm.js +415 -356
- package/dist/oro-sdk.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +28 -13
- package/src/helpers/patient-registration.ts +31 -3
package/dist/client.d.ts
CHANGED
@@ -293,6 +293,17 @@ export declare class OroClient {
|
|
293
293
|
getMedicalDataFromConsultId(consultationId: Uuid, options?: {
|
294
294
|
forceRefresh: boolean;
|
295
295
|
}): Promise<LocalizedData<PopulatedWorkflowData>[]>;
|
296
|
+
/**
|
297
|
+
* Retrieves the patient follow up data associated to the `consultationId`
|
298
|
+
* The `consultationId` only helps to retrieve the patient lockboxes
|
299
|
+
* Note: it is possible to have several follow up data
|
300
|
+
* @param consultationId The consultation Id
|
301
|
+
* @param forceRefresh force data refresh (default to false)
|
302
|
+
* @returns the medical data
|
303
|
+
*/
|
304
|
+
getFollowupDataFromConsultId(consultationId: Uuid, options?: {
|
305
|
+
forceRefresh: boolean;
|
306
|
+
}): Promise<LocalizedData<PopulatedWorkflowData>[]>;
|
296
307
|
private getMetaCategoryFromConsultId;
|
297
308
|
/**
|
298
309
|
* @description retrieves the personal information stored in the first owned lockbox
|