Refa: Chat conversations /convsersation API to RESTFul (#13893)

### What problem does this PR solve?

Chat conversations /convsersation API to RESTFul.

### Type of change

- [x] Refactoring
This commit is contained in:
Yongteng Lei
2026-04-02 20:49:23 +08:00
committed by GitHub
parent bbb9b1df85
commit b7daf6285b
43 changed files with 1516 additions and 2002 deletions

View File

@@ -82,10 +82,10 @@ interface Manual {
export interface IConversation {
create_date: string;
create_time: number;
dialog_id: string;
chat_id: string;
id: string;
avatar: string;
message: Message[];
messages: Message[];
reference: IReference[];
name: string;
update_date: string;
@@ -197,7 +197,7 @@ export interface IMessage extends Message {
}
export interface IClientConversation extends IConversation {
message: IMessage[];
messages: IMessage[];
}
export interface UploadResponseDataType {