( knowledge_id, document_id, document_name, )
| 146 | * @param 参数 knowledge_id |
| 147 | */ |
| 148 | const getDownloadSourceFile: (knowledge_id: string, document_id: string, document_name: string) => Promise<Result<any>> = ( |
| 149 | knowledge_id, |
| 150 | document_id, |
| 151 | document_name, |
| 152 | ) => { |
| 153 | return exportFile(document_name, `${prefix.value}/${knowledge_id}/document/${document_id}/download_source_file`, {}, undefined) |
| 154 | } |
| 155 | |
| 156 | const postReplaceSourceFile: (knowledge_id: string, document_id: string, data: any) => Promise<Result<any>> = ( |
| 157 | knowledge_id, |
nothing calls this directly
no test coverage detected