(options: {
short_name: string;
name: string;
})
| 10 | } from "./api-type"; |
| 11 | |
| 12 | export function createOuterbaseWorkspace(options: { |
| 13 | short_name: string; |
| 14 | name: string; |
| 15 | }) { |
| 16 | return requestOuterbase<OuterbaseAPIWorkspace>( |
| 17 | "/api/v1/workspace", |
| 18 | "POST", |
| 19 | options |
| 20 | ); |
| 21 | } |
| 22 | |
| 23 | export function updateOuterbaseWorkspace( |
| 24 | workspaceId: string, |
no test coverage detected
searching dependent graphs…