@nsshunt/stsfhirclient 2.0.8 → 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.cjs
CHANGED
|
@@ -9466,16 +9466,16 @@ var FhirRESTClient = class {
|
|
|
9466
9466
|
throw error;
|
|
9467
9467
|
}
|
|
9468
9468
|
};
|
|
9469
|
-
|
|
9469
|
+
GenericSearchTesting = async (params) => {
|
|
9470
9470
|
try {
|
|
9471
|
-
const retVal = await this.#InvokeResourceAPI(`${this.BaseUrl()}/Person/
|
|
9471
|
+
const retVal = await this.#InvokeResourceAPI(`${this.BaseUrl()}/Person/_genericSearchTesting`, "post", null, params);
|
|
9472
9472
|
if (retVal) return {
|
|
9473
9473
|
status: retVal.status,
|
|
9474
9474
|
body: retVal.data
|
|
9475
9475
|
};
|
|
9476
|
-
else throw new Error(`FhirRESTClient:
|
|
9476
|
+
else throw new Error(`FhirRESTClient:GenericSearchTesting(): No response from #InvokeResourceAPI`);
|
|
9477
9477
|
} catch (error) {
|
|
9478
|
-
this.LogError("
|
|
9478
|
+
this.LogError("GenericSearchTesting", error);
|
|
9479
9479
|
throw error;
|
|
9480
9480
|
}
|
|
9481
9481
|
};
|
|
@@ -15588,7 +15588,7 @@ var FhirSocketClientAllInOne = class extends FhirSocketClient {
|
|
|
15588
15588
|
throw error;
|
|
15589
15589
|
});
|
|
15590
15590
|
};
|
|
15591
|
-
|
|
15591
|
+
GenericSearchTesting = async (params) => {
|
|
15592
15592
|
return { status: StatusCodes.OK };
|
|
15593
15593
|
};
|
|
15594
15594
|
};
|
|
@@ -15780,7 +15780,7 @@ var FhirSocketClientIndividual = class extends FhirSocketClient {
|
|
|
15780
15780
|
throw error;
|
|
15781
15781
|
});
|
|
15782
15782
|
};
|
|
15783
|
-
|
|
15783
|
+
GenericSearchTesting = async (params) => {
|
|
15784
15784
|
return { status: StatusCodes.OK };
|
|
15785
15785
|
};
|
|
15786
15786
|
};
|