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