| 29 | |
| 30 | // Extended request options |
| 31 | export interface RequestOptions { |
| 32 | silent?: boolean // Silent mode (no error alerts) |
| 33 | rawResponse?: boolean // Return raw Axios response |
| 34 | customError?: boolean // Custom error handling |
| 35 | retryCount?: number // Number of retry attempts |
| 36 | } |
| 37 | |
| 38 | // Merged request configuration |
| 39 | export interface FullRequestConfig extends AxiosRequestConfig { |
nothing calls this directly
no outgoing calls
no test coverage detected