@nsshunt/stsrunnerframework 1.0.131 → 1.0.133

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.
@@ -2388,7 +2388,7 @@ class STSWorkerManager {
2388
2388
  return !runnerSearchFilters.plan ? true : ((_b = (_a = runner.options.runnerPlan) == null ? void 0 : _a.plan) == null ? void 0 : _b.localeCompare(runnerSearchFilters.plan)) === 0;
2389
2389
  }).filter((runner) => {
2390
2390
  var _a, _b;
2391
- return !runnerSearchFilters.planId ? true : ((_b = (_a = runner.options.runnerPlan) == null ? void 0 : _a.planId) == null ? void 0 : _b.localeCompare(runnerSearchFilters.planId)) === 0;
2391
+ return !runnerSearchFilters.planInstanceId ? true : ((_b = (_a = runner.options.runnerPlan) == null ? void 0 : _a.planInstanceId) == null ? void 0 : _b.localeCompare(runnerSearchFilters.planInstanceId)) === 0;
2392
2392
  }).filter((runner) => {
2393
2393
  var _a;
2394
2394
  return !runnerSearchFilters.tag ? true : (_a = runner.options.tag) == null ? void 0 : _a.includes(runnerSearchFilters.tag);
@@ -3224,9 +3224,7 @@ class STSWorkerManager {
3224
3224
  };
3225
3225
  if (runnerEx.options && runnerEx.options.runnerPlan) {
3226
3226
  retVal.options = {
3227
- runnerPlan: {
3228
- plan: runnerEx.options.runnerPlan.plan
3229
- }
3227
+ runnerPlan: { ...runnerEx.options.runnerPlan }
3230
3228
  };
3231
3229
  }
3232
3230
  return retVal;