返回 AiToEarn
content-generation.enum.ts
根目录 / project / aitoearn-backend / libs / mongodb / src / enums / content-generation.enum.ts
1 export enum ContentGenerationTaskStatus {
2 Running = 'running',
3 Completed = 'completed',
4 RequiresAction = 'requires_action', // 需要用户操作(如绑定频道、更新授权等)
5 Error = 'error',
6 Aborted = 'aborted',
7 }
8
8 lines TYPESCRIPT