( workspaceId: string, source: OuterbaseAPISourceInput )
| 57 | } |
| 58 | |
| 59 | export function testOuterbaseSource( |
| 60 | workspaceId: string, |
| 61 | source: OuterbaseAPISourceInput |
| 62 | ) { |
| 63 | return requestOuterbase( |
| 64 | `/api/v1/workspace/${workspaceId}/source/credential/test`, |
| 65 | "POST", |
| 66 | source |
| 67 | ); |
| 68 | } |
| 69 | |
| 70 | export function updateOuterbaseSource( |
| 71 | workspaceId: string, |
no test coverage detected