| 1 | /* |
| 2 | * @Author: nevin |
| 3 | * @Date: 2025-03-01 19:27:31 |
| 4 | * @LastEditTime: 2025-03-23 19:39:34 |
| 5 | * @LastEditors: nevin |
| 6 | * @Description: 工具枚举 |
| 7 | */ |
| 8 | |
| 9 | // 发送消息的事件key |
| 10 | export enum SendChannelEnum { |
| 11 | // 账户登录或更新 |
| 12 | AccountLoginFinish = 'AccountLoginFinish', |
| 13 | // 图文发布进度 |
| 14 | ImgTextPublishProgress = 'ImgTextPublishProgress', |
| 15 | // 视频发布进度发送 |
| 16 | VideoPublishProgress = 'VideoPublishProgress', |
| 17 | // 自动运行进度或状态 |
| 18 | AutoRun = 'AutoRun', |
| 19 | CommentRelyProgress = 'CommentRelyProgress', |
| 20 | // 评论互动进度 |
| 21 | InteractionProgress = 'InteractionProgress', |
| 22 | // 视频发布完成后待审核变成审核的事件 |
| 23 | VideoAuditFinish = 'VideoAuditFinish', |
| 24 | } |
| 25 |