Revert "sub plan page (#885)" (#886)

This reverts commit 443ad37b6a.
This commit is contained in:
Archer
2024-02-23 17:48:15 +08:00
committed by GitHub
parent 443ad37b6a
commit fd9b6291af
246 changed files with 4281 additions and 6286 deletions

View File

@@ -1,5 +1,5 @@
import type { HistoryItemType, ChatSiteItemType } from '../../core/chat/type.d';
import { OutLinkSchema } from './type.d';
import { OutLinkSchema } from '@fastgpt/global/support/outLink/type';
export type AuthOutLinkInitProps = {
outLinkUid: string;

View File

@@ -7,14 +7,14 @@ export type OutLinkSchema = {
tmbId: string;
appId: string;
name: string;
usagePoints: number;
total: number;
lastTime: Date;
type: `${OutLinkTypeEnum}`;
responseDetail: boolean;
limit?: {
expiredTime?: Date;
QPM: number;
maxUsagePoints: number;
credit: number;
hookUrl?: string;
};
};