(id:string)
| 28 | return await request.post(`${project_base_url}/collections`, params) |
| 29 | } |
| 30 | const deleteRetrieval = async (id:string) => { |
| 31 | |
| 32 | const project_base_url = `api/v1` |
| 33 | return await request.delete(`${project_base_url}/collections/${id}`) |
| 34 | |
| 35 | } |
| 36 | const updateRetrieval = async (id:string, params:object) => { |
| 37 | |
| 38 | const project_base_url = `api/v1` |
no test coverage detected