mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 13:03:50 +00:00
16 lines
507 B
TypeScript
16 lines
507 B
TypeScript
import { SubModeEnum } from './constants';
|
|
|
|
export type SubDatasetSizeParams = {
|
|
size: number;
|
|
};
|
|
export type SubDatasetSizePreviewCheckResponse = {
|
|
payForNewSub: boolean; // Does this change require payment
|
|
newSubSize: number; // new sub dataset size
|
|
alreadySubSize: number; // old sub dataset size
|
|
payPrice: number; // this change require payment
|
|
newPrice: number; // the new sub price
|
|
newSubStartTime: Date;
|
|
newSubExpiredTime: Date;
|
|
balanceEnough: boolean; // team balance is enough
|
|
};
|