(workspaceId: string)
| 94 | } |
| 95 | |
| 96 | async function fetchWorkspaceFolders(workspaceId: string): Promise<FolderApi[]> { |
| 97 | const { folders } = await requestJson(listFoldersContract, { |
| 98 | query: { workspaceId }, |
| 99 | }) |
| 100 | return folders |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Generates the next folder name for a workspace |
no test coverage detected