29 lines
766 B
TypeScript
29 lines
766 B
TypeScript
|
import type { IMessage } from '../../IMessage';
|
||
|
import type { IRoom } from '../../IRoom';
|
||
|
|
||
|
export type ChatEndpoints = {
|
||
|
'chat.getMessage': {
|
||
|
GET: (params: { msgId: IMessage['_id'] }) => {
|
||
|
message: IMessage;
|
||
|
};
|
||
|
};
|
||
|
'chat.followMessage': {
|
||
|
POST: (params: { mid: IMessage['_id'] }) => void;
|
||
|
};
|
||
|
'chat.unfollowMessage': {
|
||
|
POST: (params: { mid: IMessage['_id'] }) => void;
|
||
|
};
|
||
|
'chat.getDiscussions': {
|
||
|
GET: (params: { roomId: IRoom['_id']; text?: string; offset: number; count: number }) => {
|
||
|
messages: IMessage[];
|
||
|
total: number;
|
||
|
};
|
||
|
};
|
||
|
'chat.getThreadsList': {
|
||
|
GET: (params: { rid: IRoom['_id']; type: 'unread' | 'following' | 'all'; text?: string; offset: number; count: number }) => {
|
||
|
threads: IMessage[];
|
||
|
total: number;
|
||
|
};
|
||
|
};
|
||
|
};
|