@pyxmate/memory 1.17.15 → 1.17.17

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.
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  MemoryClient
3
- } from "./chunk-LGNSLDGB.mjs";
3
+ } from "./chunk-JGFDID3B.mjs";
4
4
 
5
5
  // ../dashboard/src/aggregations/consolidation-analytics.ts
6
6
  function analyzeConsolidationLog(entries) {
@@ -178,8 +178,10 @@ var DashboardClient = class extends MemoryClient {
178
178
  * arbitrary N-node sample were silently dropped, collapsing dense graphs to
179
179
  * a handful of rendered links.
180
180
  */
181
- async graphSubgraph(edges = 2e3) {
182
- return this.fetchApi(`/api/memory/graph/subgraph?edges=${edges}`);
181
+ async graphSubgraph(edges = 2e3, nodes = 2e3) {
182
+ return this.fetchApi(
183
+ `/api/memory/graph/subgraph?edges=${edges}&nodes=${nodes}`
184
+ );
183
185
  }
184
186
  async fetchHealthRaw() {
185
187
  return this.fetchApi("/health");