(data: any)
| 154 | } |
| 155 | |
| 156 | const generateCode: (data: any) => Promise<Result<any>> = (data: any) => { |
| 157 | const p = (window.MaxKB?.prefix ? window.MaxKB?.prefix : '/admin') + '/api' |
| 158 | return postStream(`${p}${prefix}/generate_code`, data) |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * 获取工具工作流版本列表 |
nothing calls this directly
no test coverage detected