oro-sdk 3.1.2-dev2 → 3.1.2-dev2.1
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/oro-sdk.cjs.development.js +6 -4
- 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 +6 -4
- package/dist/oro-sdk.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/helpers/patient-registration.ts +4 -0
package/package.json
CHANGED
@@ -473,12 +473,16 @@ export async function extractPersonalInfoFromConsultId(consultUuid: string, oroC
|
|
473
473
|
export async function searchIndexConsultation(consultUuid: string, oroClient: OroClient) {
|
474
474
|
let terms: Terms = []
|
475
475
|
|
476
|
+
console.log('here')
|
477
|
+
|
476
478
|
const {
|
477
479
|
personalInformations,
|
478
480
|
childPersonalInformations,
|
479
481
|
otherPersonalInformations
|
480
482
|
} = await extractPersonalInfoFromConsultId(consultUuid, oroClient)
|
481
483
|
|
484
|
+
console.log('personal=', personalInformations, 'child=', childPersonalInformations, 'other=', otherPersonalInformations)
|
485
|
+
|
482
486
|
const personalInfo = identificationToPersonalInformations(
|
483
487
|
toActualObject(personalInformations.data),
|
484
488
|
MetadataCategory.Personal
|