@nsshunt/stsrunnerframework 1.0.123 → 1.0.124

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.
@@ -2405,7 +2405,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
2405
2405
  // Filter by plan and/or tag. Leave blank to not use in filter.
2406
2406
  __publicField(this, "GetArchiveList", (runnerSearchFilters) => {
2407
2407
  try {
2408
- return __privateGet(this, _archiveList).filter((runner) => !runnerSearchFilters.plan ? true : runner.options.plan.localeCompare(runnerSearchFilters.plan) === 0).filter((runner) => !runnerSearchFilters.planId ? true : runner.options.planId.localeCompare(runnerSearchFilters.planId) === 0).filter((runner) => !runnerSearchFilters.tag ? true : runner.options.tag.localeCompare(runnerSearchFilters.tag) === 0).filter((runner) => !runnerSearchFilters.userDataKey ? true : !runner.options.userData ? false : runner.options.userData[runnerSearchFilters.userDataKey]);
2408
+ return __privateGet(this, _archiveList).filter((runner) => !runnerSearchFilters.plan ? true : runner.options.plan.localeCompare(runnerSearchFilters.plan) === 0).filter((runner) => !runnerSearchFilters.planId ? true : runner.options.planId.localeCompare(runnerSearchFilters.planId) === 0).filter((runner) => !runnerSearchFilters.tag ? true : runner.options.tag.includes(runnerSearchFilters.tag)).filter((runner) => !runnerSearchFilters.userDataKey ? true : !runner.options.userData ? false : runner.options.userData[runnerSearchFilters.userDataKey]);
2409
2409
  } catch (error) {
2410
2410
  __privateGet(this, _error2).call(this, `GetArchiveList(): Error: [${error}]`);
2411
2411
  throw error;