/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../../../../index.js"; /** * @example * { * userId: "userId", * serverName: "Affinity", * authData: {} * } */ export interface SetUserAuthRequest { /** The unique identifier for the user */ userId: string; /** The name of the MCP server to set authentication for (e.g., 'GitHub', 'Jira') */ serverName: Klavis.McpServerName; /** Authentication data */ authData: SetUserAuthRequest.AuthData; } export declare namespace SetUserAuthRequest { /** * Authentication data */ type AuthData = Klavis.ApiKeyAuth | Klavis.GeneralAuth; }