@plur-ai/core 0.2.2 → 0.2.3
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 +12 -1
- package/dist/index.js +1 -0
- package/package.json +1 -1
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