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.
- package/dist/index.esm.js +4357 -4388
- package/dist/index.umd.js +43 -43
- package/dist/types/api.d.ts +1 -5
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -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