diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index bd06205258ec..d4e12defe4a5 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -18173,12 +18173,6 @@ export interface operations { * Lists all available data tables * @description Get the list of all available data tables. */ - parameters?: { - /** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */ - header?: { - "run-as"?: string; - }; - }; responses: { /** @description A list with details on individual data tables. */ 200: { @@ -18186,12 +18180,6 @@ export interface operations { "application/json": components["schemas"]["ToolDataEntryList"]; }; }; - /** @description Validation Error */ - 422: { - content: { - "application/json": components["schemas"]["HTTPValidationError"]; - }; - }; }; }; create_api_tool_data_post: {