/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.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. */ import * as runtime from '../runtime'; /** * PingApi - interface * * @export * @interface PingApiInterface */ export interface PingApiInterface { /** * Can be used to test, if the Squidex API is alive and responding. * @summary Get ping status. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof PingApiInterface */ getAppPingRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Can be used to test, if the Squidex API is alive and responding. * Get ping status. */ getAppPing(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * * @summary Get API information. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof PingApiInterface */ getInfoRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get API information. */ getInfo(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<{ [key: string]: string; }>; /** * Can be used to test, if the Squidex API is alive and responding. * @summary Get ping status of the API. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof PingApiInterface */ getPingRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Can be used to test, if the Squidex API is alive and responding. * Get ping status of the API. */ getPing(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; } /** * */ export declare class PingApi extends runtime.BaseAPI implements PingApiInterface { /** * Can be used to test, if the Squidex API is alive and responding. * Get ping status. */ getAppPingRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Can be used to test, if the Squidex API is alive and responding. * Get ping status. */ getAppPing(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Get API information. */ getInfoRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get API information. */ getInfo(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<{ [key: string]: string; }>; /** * Can be used to test, if the Squidex API is alive and responding. * Get ping status of the API. */ getPingRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Can be used to test, if the Squidex API is alive and responding. * Get ping status of the API. */ getPing(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; }