oro-sdk 3.22.0 → 3.25.0-dev1
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 +2 -1
- package/dist/helpers/patient-registration.d.ts +5 -1
- package/dist/oro-sdk.cjs.development.js +775 -1158
- 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 +775 -1158
- package/dist/oro-sdk.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +5 -3
- package/src/helpers/patient-registration.ts +63 -4
- package/LICENSE +0 -21
package/dist/client.d.ts
CHANGED
@@ -92,12 +92,13 @@ export declare class OroClient {
|
|
92
92
|
* @param workflow
|
93
93
|
* @param recoveryQA
|
94
94
|
* @param indexSearch create search index for the consultation if true
|
95
|
+
* @param onProgress callback that is called whenever a new step of patient registration is executed. Note: progress ranges from 0 to 1, and descriptionKey is a description of the progress as a key so the app would use it to translate the description
|
95
96
|
* @returns
|
96
97
|
*/
|
97
98
|
registerPatient(patientUuid: Uuid, consult: ConsultRequest, workflow: WorkflowData, recoveryQA?: {
|
98
99
|
recoverySecurityQuestions: string[];
|
99
100
|
recoverySecurityAnswers: string[];
|
100
|
-
}, indexSearch?: boolean): Promise<RegisterPatientOutput>;
|
101
|
+
}, indexSearch?: boolean, onProgress?: (progress: number, descriptionKey: string) => void): Promise<RegisterPatientOutput>;
|
101
102
|
/**
|
102
103
|
* Fetches all grants, and consultations that exist in each lockbox
|
103
104
|
* Then updates the index for the current user with the lockbox consult relationship
|
@@ -19,12 +19,16 @@ import { OroClient, RegisterPatientOutput } from '..';
|
|
19
19
|
* @param masterKey
|
20
20
|
* @param recoveryQA
|
21
21
|
* @param indexSearch create search index for the consultation if true
|
22
|
+
* @param onProgress callback that is called whenever a new step of patient registration is executed. Note: progress ranges from 0 to 1, and descriptionKey is a description of the progress as a key so the app would use it to translate the description
|
22
23
|
* @returns the successful registration
|
23
24
|
*/
|
24
25
|
export declare function registerPatient(patientUuid: Uuid, consultRequest: ConsultRequest, workflow: WorkflowData, oroClient: OroClient, masterKey?: Uuid, recoveryQA?: {
|
25
26
|
recoverySecurityQuestions: string[];
|
26
27
|
recoverySecurityAnswers: string[];
|
27
|
-
}, indexSearch?: boolean
|
28
|
+
}, indexSearch?: boolean, onProgress?: (progress: number, descriptionKey: string, extraInfo?: {
|
29
|
+
storedImagesNum?: number;
|
30
|
+
totalImagesNum?: number;
|
31
|
+
}) => void): Promise<RegisterPatientOutput>;
|
28
32
|
/**
|
29
33
|
* Extracts the workflow MetadataCategory for Personal, ChildPersonal and OtherPersonal
|
30
34
|
* then stores it in the vault
|