@nsshunt/ststestrunner 1.0.8 → 1.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/ststestrunner.mjs
CHANGED
|
@@ -9475,9 +9475,17 @@ class StartUpDelFhirResources extends TestCaseFhirBase {
|
|
|
9475
9475
|
let totalRecordsDelete = 0;
|
|
9476
9476
|
while (!complete) {
|
|
9477
9477
|
console.log(chalk$1.magenta(`ExecuteRunner() - pre GetResources()`));
|
|
9478
|
-
const retVal = await this.fhirClient.GetResources(
|
|
9479
|
-
|
|
9480
|
-
|
|
9478
|
+
const retVal = await this.fhirClient.GetResources(
|
|
9479
|
+
"Person",
|
|
9480
|
+
null,
|
|
9481
|
+
{
|
|
9482
|
+
limit: options.batchDeleteSize,
|
|
9483
|
+
prefix: options.personPrefix
|
|
9484
|
+
},
|
|
9485
|
+
(error) => {
|
|
9486
|
+
this.LogErrorMessage(chalk$1.red(`test(POST /stsresource and query using filter): ${error}`));
|
|
9487
|
+
}
|
|
9488
|
+
);
|
|
9481
9489
|
console.log(chalk$1.magenta(`ExecuteRunner() - post GetResources()`));
|
|
9482
9490
|
console.log(retVal);
|
|
9483
9491
|
if (retVal) {
|