feat: 新增语言偏好Tab

This commit is contained in:
digua
2026-04-17 20:56:45 +08:00
committed by digua
parent a1a587f791
commit 0aa99af048
29 changed files with 2235 additions and 61 deletions
+9
View File
@@ -375,6 +375,15 @@ export async function getCatchphraseAnalysis(sessionId: string, filter?: any): P
return sendToWorker('getCatchphraseAnalysis', { sessionId, filter })
}
export async function getLanguagePreferenceAnalysis(params: {
sessionId: string
locale: string
timeFilter?: any
dictType?: string
}): Promise<any> {
return sendToWorker('getLanguagePreferenceAnalysis', params)
}
export async function getMentionAnalysis(sessionId: string, filter?: any): Promise<any> {
return sendToWorker('getMentionAnalysis', { sessionId, filter })
}