MCPcopy
hub / github.com/teableio/teable / IAPIRequestConfig

Interface IAPIRequestConfig

packages/openapi/src/axios.ts:28–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26 * Configuration options for the Axios instance.
27 */
28export 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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected