@xpert-ai/chatkit-types 0.3.12 → 0.3.13

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/index.d.ts +12 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1731,6 +1731,7 @@ export declare type ThreadGoal = {
1731
1731
  threadId: string;
1732
1732
  objective: string;
1733
1733
  status: ThreadGoalStatus;
1734
+ goalSpec?: ThreadGoalSpec | null;
1734
1735
  tokensUsed: number;
1735
1736
  elapsedSeconds: number;
1736
1737
  continuationCount: number;
@@ -1739,6 +1740,17 @@ export declare type ThreadGoal = {
1739
1740
  blockedAt?: string | Date | null;
1740
1741
  };
1741
1742
 
1743
+ export declare type ThreadGoalSpec = {
1744
+ originalObjective: string;
1745
+ executableGoal: string;
1746
+ successCriteria: string[];
1747
+ constraints: string[];
1748
+ verificationChecklist: string[];
1749
+ recommendedStrategy: string;
1750
+ source: 'system' | 'llm';
1751
+ generatedAt: string;
1752
+ };
1753
+
1742
1754
  export declare type ThreadGoalStatus = 'active' | 'paused' | 'blocked' | 'usage_limited' | 'budget_limited' | 'complete';
1743
1755
 
1744
1756
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xpert-ai/chatkit-types",
3
- "version": "0.3.12",
3
+ "version": "0.3.13",
4
4
  "description": "Type definitions for the ChatKit.",
5
5
  "sideEffects": false,
6
6
  "type": "module",