mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-21 11:43:56 +00:00
26 lines
841 B
TypeScript
26 lines
841 B
TypeScript
export enum TimerIdEnum {
|
|
checkExpiredFiles = 'checkExpiredFiles',
|
|
checkInvalidDatasetData = 'checkInvalidDatasetData',
|
|
checkInvalidVector = 'checkInvalidVector',
|
|
clearExpiredSubPlan = 'clearExpiredSubPlan',
|
|
updateStandardPlan = 'updateStandardPlan',
|
|
scheduleTriggerApp = 'scheduleTriggerApp',
|
|
notification = 'notification',
|
|
clearExpiredRawTextBuffer = 'clearExpiredRawTextBuffer'
|
|
}
|
|
|
|
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}`
|