@plur-ai/core 0.2.2 → 0.2.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/index.d.ts CHANGED
@@ -684,6 +684,17 @@ interface TimelineQuery {
684
684
  /** Build searchable text from all engram fields */
685
685
  declare function engramSearchText(engram: Engram): string;
686
686
 
687
+ interface PlurPaths {
688
+ root: string;
689
+ engrams: string;
690
+ episodes: string;
691
+ candidates: string;
692
+ packs: string;
693
+ exchange: string;
694
+ config: string;
695
+ }
696
+ declare function detectPlurStorage(explicitPath?: string): PlurPaths;
697
+
687
698
  /**
688
699
  * Non-blocking version check against npm registry.
689
700
  * Caches result in memory — one fetch per process lifetime.
@@ -795,4 +806,4 @@ declare class Plur {
795
806
  status(): StatusResult;
796
807
  }
797
808
 
798
- export { type Association, type CaptureContext, type Engram, type Episode, type IngestCandidate, type IngestOptions, type InjectOptions, type InjectionResult, type KnowledgeAnchor, type LearnContext, type LlmFunction, type PackManifest, Plur, type PlurConfig, type RecallOptions, type StatusResult, type SyncResult, type SyncStatus, type TimelineQuery, type VersionCheckResult, checkForUpdate, clearVersionCache, engramSearchText, getCachedUpdateCheck };
809
+ export { type Association, type CaptureContext, type Engram, type Episode, type IngestCandidate, type IngestOptions, type InjectOptions, type InjectionResult, type KnowledgeAnchor, type LearnContext, type LlmFunction, type PackManifest, Plur, type PlurConfig, type PlurPaths, type RecallOptions, type StatusResult, type SyncResult, type SyncStatus, type TimelineQuery, type VersionCheckResult, checkForUpdate, clearVersionCache, detectPlurStorage, engramSearchText, getCachedUpdateCheck };
package/dist/index.js CHANGED
@@ -1468,6 +1468,7 @@ export {
1468
1468
  Plur,
1469
1469
  checkForUpdate,
1470
1470
  clearVersionCache,
1471
+ detectPlurStorage,
1471
1472
  engramSearchText,
1472
1473
  getCachedUpdateCheck
1473
1474
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plur-ai/core",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",