| 26 | * Configuration options for the Axios instance. |
| 27 | */ |
| 28 | export interface IAPIRequestConfig { |
| 29 | /** |
| 30 | * API endpoint, defaults to 'https://app.teable.ai'. |
| 31 | */ |
| 32 | endpoint?: string; |
| 33 | /** |
| 34 | * Bearer token for authentication. |
| 35 | */ |
| 36 | token: string; |
| 37 | /** |
| 38 | * Enable undo/redo functionality for API calls related to record, field, and view mutations |
| 39 | */ |
| 40 | enableUndoRedo?: boolean; |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Configures the Axios instance with the provided options. |
nothing calls this directly
no outgoing calls
no test coverage detected