/** * Webitel API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 24.04.0 * Contact: support@webitel.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AxiosPromise, AxiosInstance } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { EngineAgentTeam } from '../api'; import { EngineAgentTeamServiceUpdateAgentTeamBody } from '../api'; import { EngineCreateAgentTeamRequest } from '../api'; import { EngineListAgentTeam } from '../api'; /** * AgentTeamServiceApi - axios parameter creator * @export */ export declare const AgentTeamServiceApiAxiosParamCreator: (configuration?: Configuration) => { /** * * @summary Create AgentTeam * @param {EngineCreateAgentTeamRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ createAgentTeam: (body: EngineCreateAgentTeamRequest, options?: any) => Promise; /** * * @summary Remove AgentTeam * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteAgentTeam: (id: string, domainId?: string, options?: any) => Promise; /** * * @summary AgentTeam item * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ readAgentTeam: (id: string, domainId?: string, options?: any) => Promise; /** * * @summary List of AgentTeam * @param {number} [page] * @param {number} [size] * @param {string} [q] * @param {string} [sort] * @param {Array} [fields] * @param {Array} [id] * @param {Array} [strategy] * @param {Array} [adminId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ searchAgentTeam: (page?: number, size?: number, q?: string, sort?: string, fields?: Array, id?: Array, strategy?: Array, adminId?: Array, options?: any) => Promise; /** * * @summary Update AgentTeam * @param {string} id * @param {EngineAgentTeamServiceUpdateAgentTeamBody} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ updateAgentTeam: (id: string, body: EngineAgentTeamServiceUpdateAgentTeamBody, options?: any) => Promise; }; /** * AgentTeamServiceApi - functional programming interface * @export */ export declare const AgentTeamServiceApiFp: (configuration?: Configuration) => { /** * * @summary Create AgentTeam * @param {EngineCreateAgentTeamRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ createAgentTeam(body: EngineCreateAgentTeamRequest, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Remove AgentTeam * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteAgentTeam(id: string, domainId?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary AgentTeam item * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ readAgentTeam(id: string, domainId?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary List of AgentTeam * @param {number} [page] * @param {number} [size] * @param {string} [q] * @param {string} [sort] * @param {Array} [fields] * @param {Array} [id] * @param {Array} [strategy] * @param {Array} [adminId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ searchAgentTeam(page?: number, size?: number, q?: string, sort?: string, fields?: Array, id?: Array, strategy?: Array, adminId?: Array, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Update AgentTeam * @param {string} id * @param {EngineAgentTeamServiceUpdateAgentTeamBody} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ updateAgentTeam(id: string, body: EngineAgentTeamServiceUpdateAgentTeamBody, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * AgentTeamServiceApi - factory interface * @export */ export declare const AgentTeamServiceApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * * @summary Create AgentTeam * @param {EngineCreateAgentTeamRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ createAgentTeam(body: EngineCreateAgentTeamRequest, options?: any): AxiosPromise; /** * * @summary Remove AgentTeam * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteAgentTeam(id: string, domainId?: string, options?: any): AxiosPromise; /** * * @summary AgentTeam item * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ readAgentTeam(id: string, domainId?: string, options?: any): AxiosPromise; /** * * @summary List of AgentTeam * @param {number} [page] * @param {number} [size] * @param {string} [q] * @param {string} [sort] * @param {Array} [fields] * @param {Array} [id] * @param {Array} [strategy] * @param {Array} [adminId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ searchAgentTeam(page?: number, size?: number, q?: string, sort?: string, fields?: Array, id?: Array, strategy?: Array, adminId?: Array, options?: any): AxiosPromise; /** * * @summary Update AgentTeam * @param {string} id * @param {EngineAgentTeamServiceUpdateAgentTeamBody} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ updateAgentTeam(id: string, body: EngineAgentTeamServiceUpdateAgentTeamBody, options?: any): AxiosPromise; }; /** * AgentTeamServiceApi - object-oriented interface * @export * @class AgentTeamServiceApi * @extends {BaseAPI} */ export declare class AgentTeamServiceApi extends BaseAPI { /** * * @summary Create AgentTeam * @param {EngineCreateAgentTeamRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof AgentTeamServiceApi */ createAgentTeam(body: EngineCreateAgentTeamRequest, options?: any): Promise>; /** * * @summary Remove AgentTeam * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof AgentTeamServiceApi */ deleteAgentTeam(id: string, domainId?: string, options?: any): Promise>; /** * * @summary AgentTeam item * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof AgentTeamServiceApi */ readAgentTeam(id: string, domainId?: string, options?: any): Promise>; /** * * @summary List of AgentTeam * @param {number} [page] * @param {number} [size] * @param {string} [q] * @param {string} [sort] * @param {Array} [fields] * @param {Array} [id] * @param {Array} [strategy] * @param {Array} [adminId] * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof AgentTeamServiceApi */ searchAgentTeam(page?: number, size?: number, q?: string, sort?: string, fields?: Array, id?: Array, strategy?: Array, adminId?: Array, options?: any): Promise>; /** * * @summary Update AgentTeam * @param {string} id * @param {EngineAgentTeamServiceUpdateAgentTeamBody} body * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof AgentTeamServiceApi */ updateAgentTeam(id: string, body: EngineAgentTeamServiceUpdateAgentTeamBody, options?: any): Promise>; } //# sourceMappingURL=agent-team-service-api.d.ts.map