(value: unknown)
| 18 | export const DEFAULT_GATEWAY_URL = `${DEFAULT_API_BASE_URL}/mcp/gateway`; |
| 19 | |
| 20 | function isRecord(value: unknown): value is Record<string, unknown> { |
| 21 | return typeof value === 'object' && value !== null && !Array.isArray(value); |
| 22 | } |
| 23 | |
| 24 | export async function getGatewaySessionToken( |
| 25 | runId: string, |
no outgoing calls
no test coverage detected