mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-18 01:16:01 +00:00
chat logs filter & export (#3737)
* chat logs filter & export * export chat detail
This commit is contained in:
10
projects/app/src/global/core/api/appReq.d.ts
vendored
10
projects/app/src/global/core/api/appReq.d.ts
vendored
@@ -1,7 +1,13 @@
|
||||
import { ChatSourceEnum } from '@fastgpt/global/core/chat/constants';
|
||||
import { UsageSourceEnum } from '@fastgpt/global/support/wallet/usage/constants';
|
||||
import { PaginationProps } from '@fastgpt/web/common/fetch/type';
|
||||
|
||||
export type GetAppChatLogsParams = PaginationProps<{
|
||||
export type GetAppChatLogsProps = {
|
||||
appId: string;
|
||||
dateStart: Date;
|
||||
dateEnd: Date;
|
||||
}>;
|
||||
sources?: ChatSourceEnum[];
|
||||
logTitle?: string;
|
||||
};
|
||||
|
||||
export type GetAppChatLogsParams = PaginationProps<GetAppChatLogsProps>;
|
||||
|
Reference in New Issue
Block a user