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