mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-28 15:42:55 +00:00
Some checks failed
deploy-docs / deploy-production (push) Has been cancelled
Build docs images and copy image to docker hub / build-fastgpt-docs-images (push) Has been cancelled
Build FastGPT images in Personal warehouse / build-fastgpt-images (push) Has been cancelled
Build docs images and copy image to docker hub / update-docs-image (push) Has been cancelled
Co-authored-by: heheer <71265218+newfish-cmyk@users.noreply.github.com>
13 lines
427 B
TypeScript
13 lines
427 B
TypeScript
import type { HistoryItemType } from '../../core/chat/type.d';
|
|
import { OutLinkSchema } from './type.d';
|
|
|
|
export type AuthOutLinkInitProps = {
|
|
outLinkUid: string;
|
|
tokenUrl?: string;
|
|
};
|
|
export type AuthOutLinkChatProps = { ip?: string | null; outLinkUid: string; question: string };
|
|
export type AuthOutLinkLimitProps = AuthOutLinkChatProps & { outLink: OutLinkSchema };
|
|
export type AuthOutLinkResponse = {
|
|
uid: string;
|
|
};
|