Archer 3412d7009d
perf: password check;perf: image upload check;perf: sso login check (#3509)
* perf: password check

* perf: image upload check

* perf: sso login check
2025-01-06 12:43:27 +08:00

21 lines
454 B
TypeScript

import { OutLinkChatAuthProps } from '../../support/permission/chat.d';
export type preUploadImgProps = OutLinkChatAuthProps & {
// expiredTime?: Date;
metadata?: Record<string, any>;
};
export type UploadImgProps = preUploadImgProps & {
base64Img: string;
};
export type UrlFetchParams = {
urlList: string[];
selector?: string;
};
export type UrlFetchResponse = {
url: string;
title: string;
content: string;
selector?: string;
}[];