(
workspaceId: string,
queryId: string,
options: { name: string; query: string }
)
| 188 | } |
| 189 | |
| 190 | export async function updateOuterbaseQuery( |
| 191 | workspaceId: string, |
| 192 | queryId: string, |
| 193 | options: { name: string; query: string } |
| 194 | ) { |
| 195 | return requestOuterbase<OuterbaseAPIQuery>( |
| 196 | `/api/v1/workspace/${workspaceId}/query/${queryId}`, |
| 197 | "PUT", |
| 198 | options |
| 199 | ); |
| 200 | } |
| 201 | |
| 202 | export async function getOuterbaseSession() { |
| 203 | return requestOuterbase<{ |
no test coverage detected