@nsshunt/stsfhirclient 2.0.7 → 2.0.9
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/stsfhirclient.cjs +6 -6
- package/dist/stsfhirclient.cjs.map +1 -1
- package/dist/stsfhirclient.mjs +6 -6
- package/dist/stsfhirclient.mjs.map +1 -1
- package/package.json +1 -1
- package/types/cv2/commonTypes.d.ts +1 -1
- package/types/cv2/commonTypes.d.ts.map +1 -1
- package/types/cv2/fhirRESTClient.d.ts +1 -1
- package/types/cv2/fhirRESTClient.d.ts.map +1 -1
- package/types/cv2/fhirSocketClient.d.ts +1 -1
- package/types/cv2/fhirSocketClient.d.ts.map +1 -1
- package/types/cv2/fhirSocketClientAllInOne.d.ts +1 -1
- package/types/cv2/fhirSocketClientAllInOne.d.ts.map +1 -1
- package/types/cv2/fhirSocketClientIndividual.d.ts +1 -1
- package/types/cv2/fhirSocketClientIndividual.d.ts.map +1 -1
package/dist/stsfhirclient.mjs
CHANGED
|
@@ -9464,16 +9464,16 @@ var FhirRESTClient = class {
|
|
|
9464
9464
|
throw error;
|
|
9465
9465
|
}
|
|
9466
9466
|
};
|
|
9467
|
-
|
|
9467
|
+
GenericSearchTesting = async (params) => {
|
|
9468
9468
|
try {
|
|
9469
|
-
const retVal = await this.#InvokeResourceAPI(`${this.BaseUrl()}/Person/
|
|
9469
|
+
const retVal = await this.#InvokeResourceAPI(`${this.BaseUrl()}/Person/_genericSearchTesting`, "post", null, params);
|
|
9470
9470
|
if (retVal) return {
|
|
9471
9471
|
status: retVal.status,
|
|
9472
9472
|
body: retVal.data
|
|
9473
9473
|
};
|
|
9474
|
-
else throw new Error(`FhirRESTClient:
|
|
9474
|
+
else throw new Error(`FhirRESTClient:GenericSearchTesting(): No response from #InvokeResourceAPI`);
|
|
9475
9475
|
} catch (error) {
|
|
9476
|
-
this.LogError("
|
|
9476
|
+
this.LogError("GenericSearchTesting", error);
|
|
9477
9477
|
throw error;
|
|
9478
9478
|
}
|
|
9479
9479
|
};
|
|
@@ -15586,7 +15586,7 @@ var FhirSocketClientAllInOne = class extends FhirSocketClient {
|
|
|
15586
15586
|
throw error;
|
|
15587
15587
|
});
|
|
15588
15588
|
};
|
|
15589
|
-
|
|
15589
|
+
GenericSearchTesting = async (params) => {
|
|
15590
15590
|
return { status: StatusCodes.OK };
|
|
15591
15591
|
};
|
|
15592
15592
|
};
|
|
@@ -15778,7 +15778,7 @@ var FhirSocketClientIndividual = class extends FhirSocketClient {
|
|
|
15778
15778
|
throw error;
|
|
15779
15779
|
});
|
|
15780
15780
|
};
|
|
15781
|
-
|
|
15781
|
+
GenericSearchTesting = async (params) => {
|
|
15782
15782
|
return { status: StatusCodes.OK };
|
|
15783
15783
|
};
|
|
15784
15784
|
};
|