| | |
| | | dock_name: string, |
| | | workspace_id: string, |
| | | username: string, |
| | | execute_time: string, |
| | | begin_time: string, |
| | | end_time: string, |
| | | execute_time: string, |
| | | completed_time: string, |
| | | status: TaskStatus, // 任务状态 |
| | | progress: number, // 执行进度 |
| | | code: number, // 错误码 |
| | | rth_altitude: number // 相对机场返航高度 20 - 500 |
| | | out_of_control_action: OutOfControlAction // 失控动作 |
| | | media_count: number // 媒体数量 |
| | | uploading:boolean // 是否正在上传媒体 |
| | | uploaded_count: number // 已上传媒体数量 |
| | | } |
| | | |
| | | // Get Wayline Jobs |
| | |
| | | }) |
| | | return result.data |
| | | } |
| | | |
| | | // 媒体立即上传 |
| | | export const uploadMediaFileNow = async function (workspaceId: string, jobId: string): Promise<IWorkspaceResponse<{}>> { |
| | | const url = `${HTTP_PREFIX}/workspaces/${workspaceId}/jobs/${jobId}/media-highest` |
| | | const result = await request.post(url) |
| | | return result.data |
| | | } |