You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/client/shared/model/inbox.ts

36 lines
631 B
TypeScript

import { request } from '../api/request';
/**
* 收件箱记录项类型
*/
export interface InboxItem {
_id: string;
userId: string;
readed: boolean;
type: 'message';
message?: {
groupId?: string;
converseId: string;
messageId: string;
messageSnippet: string;
};
createdAt: string;
updatedAt: string;
}
/**
* 设置收件箱某条记录已读
*/
export async function setInboxAck(inboxItemIds: string[]) {
await request.post('/api/chat/inbox/ack', {
inboxItemIds,
});
}
/**
* 清空收件箱
*/
export async function clearInbox() {
await request.post('/api/chat/inbox/clear');
}