( workspaceId: string, sourceId: string, source: OuterbaseAPISourceInput )
| 68 | } |
| 69 | |
| 70 | export function updateOuterbaseSource( |
| 71 | workspaceId: string, |
| 72 | sourceId: string, |
| 73 | source: OuterbaseAPISourceInput |
| 74 | ) { |
| 75 | return requestOuterbase<OuterbaseAPISource>( |
| 76 | `/api/v1/workspace/${workspaceId}/source/${sourceId}`, |
| 77 | "PUT", |
| 78 | source |
| 79 | ); |
| 80 | } |
| 81 | |
| 82 | export function createOuterbaseSource( |
| 83 | workspaceId: string, |
no test coverage detected
searching dependent graphs…