( knowledge_id, document_id, document_name )
| 136 | * @param 参数 knowledge_id |
| 137 | */ |
| 138 | const getDownloadSourceFile: (knowledge_id: string, document_id: string, document_name: string) => Promise<Result<any>> = ( |
| 139 | knowledge_id, |
| 140 | document_id, |
| 141 | document_name |
| 142 | ) => { |
| 143 | return exportFile(document_name, `${prefix}/${knowledge_id}/document/${document_id}/download_source_file`, {}, undefined) |
| 144 | } |
| 145 | |
| 146 | const postReplaceSourceFile: (knowledge_id: string, document_id: string, data: any) => Promise<Result<any>> = ( |
| 147 | knowledge_id, |
nothing calls this directly
no test coverage detected