/** * kameleo-local-api * You can use the following API endpoints to communicate with the local running Kameleo programmatically. * * The version of the OpenAPI document: 4.4.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from "../runtime"; import type { UserInfoResponse } from "../models/index"; /** * */ export declare class GeneralApi extends runtime.BaseAPI { /** * Fetch detailed information about your user account. */ getUserInfoRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Fetch detailed information about your user account. */ getUserInfo(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Health check request to test if Kameleo has been started and accepting connections. */ healthcheckRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Health check request to test if Kameleo has been started and accepting connections. */ healthcheck(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Terminate your current Kameleo session by deauthenticating and exiting the CLI. Use this to safely close your session and release any associated resources. */ terminateApplicationRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Terminate your current Kameleo session by deauthenticating and exiting the CLI. Use this to safely close your session and release any associated resources. */ terminateApplication(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; }