/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Type of first-party client being authorized. `cli` for the dyn CLI, * `mcp` for an MCP server, `demo` for demo applications oauth-ing into * redcoast, `ide-plugin` for editor extensions, and `other` as a catch-all. * @export * @enum {string} */ export declare enum ClientTypeEnum { Cli = "cli", Mcp = "mcp", Demo = "demo", IdePlugin = "ide-plugin", Other = "other" } export declare function ClientTypeEnumFromJSON(json: any): ClientTypeEnum; export declare function ClientTypeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClientTypeEnum; export declare function ClientTypeEnumToJSON(value?: ClientTypeEnum | null): any;