Chore: Migrate REST API - getSyncThreadsList to Typescript (#3896)

This commit is contained in:
Alex Junior 2022-03-15 22:25:48 -03:00 committed by GitHub
parent 9650c98b4f
commit 4cfadbc97b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 3 deletions

View File

@ -47,6 +47,14 @@ export type ChatEndpoints = {
total: number;
}>;
};
'chat.syncThreadsList': {
GET: (params: { rid: IServerRoom['_id']; updatedSince: string }) => {
threads: {
update: IMessage[];
remove: IMessage[];
};
};
};
'chat.delete': {
POST: (params: { msgId: string; roomId: string }) => {
_id: string;

View File

@ -668,10 +668,8 @@ export const getThreadsList = ({ rid, count, offset, text }: { rid: string; coun
return sdk.get('chat.getThreadsList', params);
};
export const getSyncThreadsList = ({ rid, updatedSince }: { rid: string; updatedSince: string }): any =>
export const getSyncThreadsList = ({ rid, updatedSince }: { rid: string; updatedSince: string }) =>
// RC 1.0
// TODO: missing definitions from server
// @ts-ignore
sdk.get('chat.syncThreadsList', {
rid,
updatedSince