( workspaceId: string, baseId: string, name: string )
| 42 | } |
| 43 | |
| 44 | export function createOuterbaseConnection( |
| 45 | workspaceId: string, |
| 46 | baseId: string, |
| 47 | name: string |
| 48 | ) { |
| 49 | return requestOuterbase<OuterbaseAPIConnection>( |
| 50 | `/api/v1/workspace/${workspaceId}/connection`, |
| 51 | "POST", |
| 52 | { |
| 53 | name, |
| 54 | baseId, |
| 55 | } |
| 56 | ); |
| 57 | } |
| 58 | |
| 59 | export function testOuterbaseSource( |
| 60 | workspaceId: string, |
no test coverage detected