mirror of
https://github.com/labring/FastGPT.git
synced 2026-01-20 06:06:45 +08:00
* perf: faq * index * delete dataset * delete dataset * perf: delete dataset * init * fix: faq * refresh * empty tip * perf: delete type * fix: some bugs (#6071) * fix: publish channel doc link * fix: checkbox disable hover style * fix: huggingface.svg missing; update doc * chore: update doc * fix: typo * fix: export log dateend;feat: file selector render (#6072) * fix: export log dateend * feat: file selector render * perf: s3 controller * team qpm limit & plan tracks (#6066) * team qpm limit & plan tracks * api entry qpm * perf: computed days * Revert "api entry qpm" This reverts commit 1210c07217ab4509d54b3eb57067dd94ff8b0da6. * perf: code * system qpm limit * system qpm limit --------- Co-authored-by: archer <545436317@qq.com> * perf: track * remove export chat test * doc * feat: global agent (#6057) * feat: global agent * fix: agent * fix: order display * CHORE * feat: error page log * fix: var update --------- Co-authored-by: Finley Ge <32237950+FinleyGe@users.noreply.github.com> Co-authored-by: heheer <heheer@sealos.io> Co-authored-by: Roy <whoeverimf5@gmail.com>
32 lines
1.0 KiB
TypeScript
32 lines
1.0 KiB
TypeScript
export enum TimerIdEnum {
|
|
checkExpiredFiles = 'checkExpiredFiles',
|
|
checkInvalidDatasetData = 'checkInvalidDatasetData',
|
|
checkInvalidVector = 'checkInvalidVector',
|
|
clearExpiredSubPlan = 'clearExpiredSubPlan',
|
|
updateStandardPlan = 'updateStandardPlan',
|
|
scheduleTriggerApp = 'scheduleTriggerApp',
|
|
notification = 'notification',
|
|
|
|
clearExpiredRawTextBuffer = 'clearExpiredRawTextBuffer',
|
|
clearExpiredDatasetImage = 'clearExpiredDatasetImage',
|
|
clearExpiredMinioFiles = 'clearExpiredMinioFiles',
|
|
recordTeamQPM = 'recordTeamQPM',
|
|
auditLogCleanup = 'auditLogCleanup',
|
|
chatHistoryCleanup = 'chatHistoryCleanup'
|
|
}
|
|
|
|
export enum LockNotificationEnum {
|
|
NotificationExpire = 'notification_expire',
|
|
NotificationFreeClean = 'notification_free_clean',
|
|
NotificationLackOfPoints = 'notification_lack_of_points'
|
|
}
|
|
|
|
export type LockType = `${LockNotificationEnum}`;
|
|
|
|
// add a new type enum example:
|
|
// export enum ExampleLockEnum {
|
|
// ExampleLockType1 = 'example_lock_type1'
|
|
// }
|
|
//
|
|
// export type LockType = `${NotificationLockEnum}` | `${ExampleLockEnum}`
|