()
| 86 | } |
| 87 | |
| 88 | private headers(): Record<string, string> { |
| 89 | return { |
| 90 | "Authorization": `Bearer ${this.apiKey}`, |
| 91 | "Content-Type": "application/json", |
| 92 | }; |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | async function runtimeApiError(response: Response): Promise<RuntimeApiError> { |
no outgoing calls
no test coverage detected