teodor-new-chat-ui 4.3.11 → 4.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.
@@ -217,10 +217,6 @@ export interface ThreadSummary {
217
217
  export interface ThreadInfo extends ThreadSummary {
218
218
  lastMessage?: string | null;
219
219
  }
220
- export interface CheckpointList {
221
- threadId: string;
222
- checkpoints: HydratedCheckpointSnapshot[];
223
- }
224
220
  export interface AgentSummary {
225
221
  agentId: string;
226
222
  name: string;
@@ -324,6 +320,7 @@ export interface ThreadStateContextValue {
324
320
  id: string | null;
325
321
  namespace: string | null;
326
322
  };
323
+ checkpoints: HydratedCheckpointSnapshot[];
327
324
  metadata: ThreadStateMetadata | null;
328
325
  isLoading: boolean;
329
326
  isHistoryLoading: boolean;
@@ -334,7 +331,6 @@ export interface ThreadStateContextValue {
334
331
  }) => Promise<void>;
335
332
  seedFromSnapshot: (snapshot: ThreadSnapshot) => void;
336
333
  clearState: () => void;
337
- listCheckpoints: (threadId: string) => Promise<CheckpointList>;
338
334
  navigateToCheckpoint: (checkpointId: string, checkpointNs?: string | null) => Promise<void>;
339
335
  returnToLatest: () => Promise<void>;
340
336
  loadThread: (threadId: string, checkpointId?: string, checkpointNs?: string, force?: boolean) => Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "teodor-new-chat-ui",
3
- "version": "4.3.11",
3
+ "version": "4.3.13",
4
4
  "description": "React chat UI components with streaming support, tool calls, and modern design",
5
5
  "main": "dist/index.umd.js",
6
6
  "module": "dist/index.esm.js",