@absolutejs/absolute 0.19.0-beta.617 → 0.19.0-beta.618

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.
@@ -2054,6 +2054,7 @@ var createRAGFileRetrievalLaneHandoffDecisionStore = (path) => ({
2054
2054
  });
2055
2055
  var createRAGFileRetrievalReleaseIncidentStore = (path) => ({
2056
2056
  listIncidents: async ({
2057
+ corpusGroupKey,
2057
2058
  groupKey,
2058
2059
  limit,
2059
2060
  severity,
@@ -2070,7 +2071,7 @@ var createRAGFileRetrievalReleaseIncidentStore = (path) => ({
2070
2071
  throw error;
2071
2072
  }
2072
2073
  }
2073
- const filtered = parsed.filter((entry) => (!groupKey || entry.groupKey === groupKey) && (!targetRolloutLabel || entry.targetRolloutLabel === targetRolloutLabel) && (!severity || entry.severity === severity) && (!status || entry.status === status));
2074
+ const filtered = parsed.filter((entry) => (!corpusGroupKey || entry.corpusGroupKey === corpusGroupKey) && (!groupKey || entry.groupKey === groupKey) && (!targetRolloutLabel || entry.targetRolloutLabel === targetRolloutLabel) && (!severity || entry.severity === severity) && (!status || entry.status === status));
2074
2075
  const sorted = normalizeRetrievalReleaseIncidentRecords(filtered);
2075
2076
  return typeof limit === "number" ? sorted.slice(0, limit) : sorted;
2076
2077
  },
@@ -3053,12 +3054,14 @@ var loadRAGRetrievalLaneHandoffDecisions = async ({
3053
3054
  })));
3054
3055
  var loadRAGRetrievalReleaseIncidents = async ({
3055
3056
  store,
3057
+ corpusGroupKey,
3056
3058
  groupKey,
3057
3059
  limit,
3058
3060
  targetRolloutLabel,
3059
3061
  status,
3060
3062
  severity
3061
3063
  }) => normalizeRetrievalReleaseIncidentRecords(await Promise.resolve(store.listIncidents({
3064
+ corpusGroupKey,
3062
3065
  groupKey,
3063
3066
  limit,
3064
3067
  severity,
@@ -7515,5 +7518,5 @@ export {
7515
7518
  buildRAGEvaluationLeaderboard
7516
7519
  };
7517
7520
 
7518
- //# debugId=C05B96F630EB2B9164756E2164756E21
7521
+ //# debugId=3CD9D6700B3CA41764756E2164756E21
7519
7522
  //# sourceMappingURL=index.js.map