(workspaceId: string, name: string)
| 32 | } |
| 33 | |
| 34 | export function createOuterbaseBase(workspaceId: string, name: string) { |
| 35 | return requestOuterbase<OuterbaseAPIBase>( |
| 36 | `/api/v1/workspace/${workspaceId}/base`, |
| 37 | "POST", |
| 38 | { |
| 39 | name, |
| 40 | } |
| 41 | ); |
| 42 | } |
| 43 | |
| 44 | export function createOuterbaseConnection( |
| 45 | workspaceId: string, |
no test coverage detected
searching dependent graphs…