(
workspaceId: string,
options: { short_name: string; name: string }
)
| 21 | } |
| 22 | |
| 23 | export function updateOuterbaseWorkspace( |
| 24 | workspaceId: string, |
| 25 | options: { short_name: string; name: string } |
| 26 | ) { |
| 27 | return requestOuterbase(`/api/v1/workspace/${workspaceId}`, "PUT", options); |
| 28 | } |
| 29 | |
| 30 | export function deleteOuterbaseWorkspace(workspaceId: string) { |
| 31 | return requestOuterbase(`/api/v1/workspace/${workspaceId}`, "DELETE"); |
no test coverage detected
searching dependent graphs…