feat: implement PI core chat timeline
This commit is contained in:
@@ -315,6 +315,22 @@ export interface ConversationPatchEnvelope {
|
||||
patch: ConversationPatch;
|
||||
}
|
||||
|
||||
export interface ConversationPatchBatchItem {
|
||||
runId?: string;
|
||||
seq: number;
|
||||
at: number;
|
||||
patch: ConversationPatch;
|
||||
}
|
||||
|
||||
export interface CodingConversationPatchBatchEvent {
|
||||
type: 'patch-batch';
|
||||
conversationId: string;
|
||||
workerGeneration: number;
|
||||
fromSeq: number;
|
||||
toSeq: number;
|
||||
items: ConversationPatchBatchItem[];
|
||||
}
|
||||
|
||||
export interface PrepareConversationInput {
|
||||
conversationId: string;
|
||||
projectId: string;
|
||||
|
||||
Reference in New Issue
Block a user