feat:dailymessages (#7603)

This commit is contained in:
呆萌闷油瓶 2024-08-27 12:53:27 +08:00 committed by GitHub
commit 2726fb3d5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 102 additions and 9 deletions

View file

@ -77,6 +77,10 @@ export type CreateAppResponse = App
export type UpdateAppSiteCodeResponse = { app_id: string } & SiteConfig
export type AppDailyMessagesResponse = {
data: Array<{ date: string; message_count: number }>
}
export type AppDailyConversationsResponse = {
data: Array<{ date: string; conversation_count: number }>
}