teodor-new-chat-ui 4.1.62 → 4.1.63

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.
@@ -1,4 +1,4 @@
1
- import type { ChatMessage, CheckpointSnapshot, CheckpointSummary } from '@/types/api';
1
+ import type { ChatMessage, CheckpointSnapshot } from '@/types/api';
2
2
  export type PendingInterrupt = {
3
3
  id: string;
4
4
  value: any;
@@ -27,8 +27,6 @@ export declare function checkpointIdentityKey(identity: CheckpointIdentity): str
27
27
  export declare function makeSnapshotKey(snapshot: CheckpointSnapshot): string;
28
28
  export declare function parseCheckpointRef(entry: unknown): CheckpointRef | null;
29
29
  export declare function extractMessagesFromSnapshot(snapshot?: CheckpointSnapshot | null): ChatMessage[];
30
- export declare function summarizeSnapshot(snapshot: CheckpointSnapshot): CheckpointSummary | null;
31
- export declare function buildCheckpointSummaries(snapshots: CheckpointSnapshot[]): CheckpointSummary[];
32
30
  export declare function dedupeSnapshots(list: CheckpointSnapshot[]): CheckpointSnapshot[];
33
31
  export declare function mergeSnapshotLists(existing: CheckpointSnapshot[], incoming: CheckpointSnapshot[], mode: 'replace' | 'prepend'): CheckpointSnapshot[];
34
32
  export declare function sortSnapshotsChronologically(snapshots: CheckpointSnapshot[]): CheckpointSnapshot[];