@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.
@@ -9464,16 +9464,16 @@ var FhirRESTClient = class {
9464
9464
  throw error;
9465
9465
  }
9466
9466
  };
9467
- SearchPersonResourceByFamilyName = async (params) => {
9467
+ GenericSearchTesting = async (params) => {
9468
9468
  try {
9469
- const retVal = await this.#InvokeResourceAPI(`${this.BaseUrl()}/Person/_searchByFamilyName`, "post", null, params);
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:SearchPersonResourceByFamilyName(): No response from #InvokeResourceAPI`);
9474
+ else throw new Error(`FhirRESTClient:GenericSearchTesting(): No response from #InvokeResourceAPI`);
9475
9475
  } catch (error) {
9476
- this.LogError("SearchPersonResourceByFamilyName", error);
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
- SearchPersonResourceByFamilyName = async (params) => {
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
- SearchPersonResourceByFamilyName = async (params) => {
15781
+ GenericSearchTesting = async (params) => {
15782
15782
  return { status: StatusCodes.OK };
15783
15783
  };
15784
15784
  };