/** * Constants for Mimikkai Auth Plugin */ /** Plugin identifier for logging */ export declare const PLUGIN_NAME = "mimikkai-auth-plugin"; /** Default GraphQL endpoint */ export declare const GRAPHQL_ENDPOINT = "https://service.mimikkai.ru/graphql"; /** Default LiteLLM proxy base URL */ export declare const LITELLM_BASE_URL = "https://litellm.mimikkai.ru/v1"; /** Provider ID for opencode configuration */ export declare const PROVIDER_ID = "mimikkai"; /** Auth labels shown in OpenCode terminal */ export declare const AUTH_LABELS: { readonly LOGIN: "Mimikkai (Email + Password)"; }; /** Error messages */ export declare const ERROR_MESSAGES: { readonly MISSING_EMAIL: "Email is missing."; readonly MISSING_PASSWORD: "Password is missing."; readonly LOGIN_FAILED: "Login failed. Check your email and password."; readonly NO_LITELLM_KEY: "User does not have a LiteLLM virtual key assigned."; readonly NETWORK_ERROR: "Network error connecting to Mimikkai API."; readonly GRAPHQL_ERROR: "GraphQL request failed."; readonly INVALID_LITELLM_KEY: "LiteLLM key from backend is invalid or has no model access."; }; /** Plugin config file name */ export declare const CONFIG_FILE_NAME = "mimikkai-auth-config.json"; //# sourceMappingURL=constants.d.ts.map