memorix 0.1.3 → 0.1.4

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/cli/index.js CHANGED
@@ -2596,7 +2596,6 @@ Entity: ${entityName} | Type: ${type} | Project: ${project.id}${enrichment}`
2596
2596
  query,
2597
2597
  limit,
2598
2598
  type,
2599
- projectId: project.id,
2600
2599
  maxTokens
2601
2600
  });
2602
2601
  return {
@@ -2623,7 +2622,7 @@ Entity: ${entityName} | Type: ${type} | Project: ${project.id}${enrichment}`
2623
2622
  async ({ anchorId, depthBefore, depthAfter }) => {
2624
2623
  const result = await compactTimeline(
2625
2624
  anchorId,
2626
- project.id,
2625
+ void 0,
2627
2626
  depthBefore,
2628
2627
  depthAfter
2629
2628
  );
@@ -2647,7 +2646,7 @@ Entity: ${entityName} | Type: ${type} | Project: ${project.id}${enrichment}`
2647
2646
  }
2648
2647
  },
2649
2648
  async ({ ids }) => {
2650
- const result = await compactDetail(ids, project.id);
2649
+ const result = await compactDetail(ids);
2651
2650
  return {
2652
2651
  content: [
2653
2652
  {
@@ -2671,7 +2670,7 @@ Entity: ${entityName} | Type: ${type} | Project: ${project.id}${enrichment}`
2671
2670
  const database = await (await Promise.resolve().then(() => (init_orama_store(), orama_store_exports))).getDb();
2672
2671
  const allResults = await search2(database, {
2673
2672
  term: "",
2674
- where: { projectId: project.id },
2673
+ where: {},
2675
2674
  limit: 1e4
2676
2675
  });
2677
2676
  const docs = allResults.hits.map((h) => h.document);