@tpsdev-ai/flair-client 0.9.0 → 0.10.1

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +11 -0
  2. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tpsdev-ai/flair-client",
3
- "version": "0.9.0",
3
+ "version": "0.10.1",
4
4
  "description": "Lightweight client for Flair — identity, memory, and soul for AI agents. Zero heavy dependencies.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",