(slug, payload)
| 65 | } |
| 66 | |
| 67 | export const updateSkillFile = async (slug, payload) => { |
| 68 | return apiPut(`${BASE_URL}/${encodeURIComponent(slug)}/file`, payload) |
| 69 | } |
| 70 | |
| 71 | export const updateSkillDependencies = async (slug, payload) => { |
| 72 | return apiPut(`${BASE_URL}/${encodeURIComponent(slug)}/dependencies`, payload) |