/** * 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'; import type { HistoryEventDto } from '../models/index'; export interface HistoryGetAppHistoryRequest { channel?: string; } export interface HistoryGetAppHistoryRequestRaw { channel?: string; } export interface HistoryGetTeamHistoryRequest { channel?: string; } export interface HistoryGetTeamHistoryRequestRaw { team: string; channel?: string; } /** * HistoryApi - interface * * @export * @interface HistoryApiInterface */ export interface HistoryApiInterface { /** * * @summary Get the app history. * @param {string} [channel] The name of the channel. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof HistoryApiInterface */ getAppHistoryRaw(requestParameters?: HistoryGetAppHistoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>>; /** * Get the app history. */ getAppHistory(requestParameters?: HistoryGetAppHistoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * * @summary Get the team history. * @param {string} team The ID of the team. * @param {string} [channel] The name of the channel. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof HistoryApiInterface */ getTeamHistoryRaw(team: string, requestParameters?: HistoryGetTeamHistoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>>; /** * Get the team history. */ getTeamHistory(team: string, requestParameters?: HistoryGetTeamHistoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; } /** * */ export declare class HistoryApi extends runtime.BaseAPI implements HistoryApiInterface { /** * Get the app history. */ getAppHistoryRaw(requestParameters: HistoryGetAppHistoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>>; /** * Get the app history. */ getAppHistory(requestParameters?: HistoryGetAppHistoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get the team history. */ getTeamHistoryRaw(team: string, requestParameters: HistoryGetTeamHistoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>>; /** * Get the team history. */ getTeamHistory(team: string, requestParameters: HistoryGetTeamHistoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; }