@tpsdev-ai/flair-client 0.8.3 → 0.10.0
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/types.d.ts +11 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -25,7 +25,18 @@ export interface SoulEntry {
|
|
|
25
25
|
agentId: string;
|
|
26
26
|
key: string;
|
|
27
27
|
value: string;
|
|
28
|
+
/**
|
|
29
|
+
* Optional governance fields. These exist on the Harper `Soul` schema
|
|
30
|
+
* (see schemas/memory.graphql) but are not set by `flair soul set`, so they
|
|
31
|
+
* are absent on hand-authored entries. `priority` is reserved for skill
|
|
32
|
+
* governance and is currently only ever written as "standard".
|
|
33
|
+
*/
|
|
34
|
+
priority?: "critical" | "high" | "standard" | "low";
|
|
35
|
+
durability?: Durability;
|
|
36
|
+
/** JSON blob (skill governance: source, version, hash, etc.). */
|
|
37
|
+
metadata?: string;
|
|
28
38
|
createdAt: string;
|
|
39
|
+
updatedAt?: string;
|
|
29
40
|
}
|
|
30
41
|
/** Semantic search result. */
|
|
31
42
|
export interface SearchResult {
|
package/package.json
CHANGED