/** * 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 { EngineCreateRoutingOutboundCallRequest } from '../api'; import { EngineListRoutingOutboundCall } from '../api'; import { EngineMovePositionRoutingOutboundCallResponse } from '../api'; import { EngineRoutingOutboundCall } from '../api'; import { EngineRoutingOutboundCallServiceMovePositionRoutingOutboundCallBody } from '../api'; import { EngineRoutingOutboundCallServicePatchRoutingOutboundCallBody } from '../api'; import { EngineRoutingOutboundCallServiceUpdateRoutingOutboundCallBody } from '../api'; /** * RoutingOutboundCallServiceApi - axios parameter creator * @export */ export declare const RoutingOutboundCallServiceApiAxiosParamCreator: (configuration?: Configuration) => { /** * * @summary Create RoutingOutboundCall * @param {EngineCreateRoutingOutboundCallRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ createRoutingOutboundCall: (body: EngineCreateRoutingOutboundCallRequest, options?: any) => Promise; /** * * @summary Remove RoutingOutboundCall * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteRoutingOutboundCall: (id: string, domainId?: string, options?: any) => Promise; /** * * @summary Move RoutingOutboundCall * @param {string} fromId * @param {string} toId * @param {EngineRoutingOutboundCallServiceMovePositionRoutingOutboundCallBody} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ movePositionRoutingOutboundCall: (fromId: string, toId: string, body: EngineRoutingOutboundCallServiceMovePositionRoutingOutboundCallBody, options?: any) => Promise; /** * * @summary Patch RoutingOutboundCall * @param {string} id * @param {EngineRoutingOutboundCallServicePatchRoutingOutboundCallBody} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ patchRoutingOutboundCall: (id: string, body: EngineRoutingOutboundCallServicePatchRoutingOutboundCallBody, options?: any) => Promise; /** * * @summary RoutingOutboundCall item * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ readRoutingOutboundCall: (id: string, domainId?: string, options?: any) => Promise; /** * * @summary List of RoutingOutboundCall * @param {number} [page] * @param {number} [size] * @param {string} [q] * @param {string} [sort] * @param {Array} [fields] * @param {Array} [id] * @param {string} [name] * @param {Array} [schemaId] * @param {string} [pattern] * @param {string} [description] * @param {*} [options] Override http request option. * @throws {RequiredError} */ searchRoutingOutboundCall: (page?: number, size?: number, q?: string, sort?: string, fields?: Array, id?: Array, name?: string, schemaId?: Array, pattern?: string, description?: string, options?: any) => Promise; /** * * @summary Update RoutingOutboundCall * @param {string} id * @param {EngineRoutingOutboundCallServiceUpdateRoutingOutboundCallBody} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ updateRoutingOutboundCall: (id: string, body: EngineRoutingOutboundCallServiceUpdateRoutingOutboundCallBody, options?: any) => Promise; }; /** * RoutingOutboundCallServiceApi - functional programming interface * @export */ export declare const RoutingOutboundCallServiceApiFp: (configuration?: Configuration) => { /** * * @summary Create RoutingOutboundCall * @param {EngineCreateRoutingOutboundCallRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ createRoutingOutboundCall(body: EngineCreateRoutingOutboundCallRequest, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Remove RoutingOutboundCall * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteRoutingOutboundCall(id: string, domainId?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Move RoutingOutboundCall * @param {string} fromId * @param {string} toId * @param {EngineRoutingOutboundCallServiceMovePositionRoutingOutboundCallBody} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ movePositionRoutingOutboundCall(fromId: string, toId: string, body: EngineRoutingOutboundCallServiceMovePositionRoutingOutboundCallBody, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Patch RoutingOutboundCall * @param {string} id * @param {EngineRoutingOutboundCallServicePatchRoutingOutboundCallBody} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ patchRoutingOutboundCall(id: string, body: EngineRoutingOutboundCallServicePatchRoutingOutboundCallBody, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary RoutingOutboundCall item * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ readRoutingOutboundCall(id: string, domainId?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary List of RoutingOutboundCall * @param {number} [page] * @param {number} [size] * @param {string} [q] * @param {string} [sort] * @param {Array} [fields] * @param {Array} [id] * @param {string} [name] * @param {Array} [schemaId] * @param {string} [pattern] * @param {string} [description] * @param {*} [options] Override http request option. * @throws {RequiredError} */ searchRoutingOutboundCall(page?: number, size?: number, q?: string, sort?: string, fields?: Array, id?: Array, name?: string, schemaId?: Array, pattern?: string, description?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Update RoutingOutboundCall * @param {string} id * @param {EngineRoutingOutboundCallServiceUpdateRoutingOutboundCallBody} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ updateRoutingOutboundCall(id: string, body: EngineRoutingOutboundCallServiceUpdateRoutingOutboundCallBody, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * RoutingOutboundCallServiceApi - factory interface * @export */ export declare const RoutingOutboundCallServiceApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * * @summary Create RoutingOutboundCall * @param {EngineCreateRoutingOutboundCallRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ createRoutingOutboundCall(body: EngineCreateRoutingOutboundCallRequest, options?: any): AxiosPromise; /** * * @summary Remove RoutingOutboundCall * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteRoutingOutboundCall(id: string, domainId?: string, options?: any): AxiosPromise; /** * * @summary Move RoutingOutboundCall * @param {string} fromId * @param {string} toId * @param {EngineRoutingOutboundCallServiceMovePositionRoutingOutboundCallBody} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ movePositionRoutingOutboundCall(fromId: string, toId: string, body: EngineRoutingOutboundCallServiceMovePositionRoutingOutboundCallBody, options?: any): AxiosPromise; /** * * @summary Patch RoutingOutboundCall * @param {string} id * @param {EngineRoutingOutboundCallServicePatchRoutingOutboundCallBody} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ patchRoutingOutboundCall(id: string, body: EngineRoutingOutboundCallServicePatchRoutingOutboundCallBody, options?: any): AxiosPromise; /** * * @summary RoutingOutboundCall item * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ readRoutingOutboundCall(id: string, domainId?: string, options?: any): AxiosPromise; /** * * @summary List of RoutingOutboundCall * @param {number} [page] * @param {number} [size] * @param {string} [q] * @param {string} [sort] * @param {Array} [fields] * @param {Array} [id] * @param {string} [name] * @param {Array} [schemaId] * @param {string} [pattern] * @param {string} [description] * @param {*} [options] Override http request option. * @throws {RequiredError} */ searchRoutingOutboundCall(page?: number, size?: number, q?: string, sort?: string, fields?: Array, id?: Array, name?: string, schemaId?: Array, pattern?: string, description?: string, options?: any): AxiosPromise; /** * * @summary Update RoutingOutboundCall * @param {string} id * @param {EngineRoutingOutboundCallServiceUpdateRoutingOutboundCallBody} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ updateRoutingOutboundCall(id: string, body: EngineRoutingOutboundCallServiceUpdateRoutingOutboundCallBody, options?: any): AxiosPromise; }; /** * RoutingOutboundCallServiceApi - object-oriented interface * @export * @class RoutingOutboundCallServiceApi * @extends {BaseAPI} */ export declare class RoutingOutboundCallServiceApi extends BaseAPI { /** * * @summary Create RoutingOutboundCall * @param {EngineCreateRoutingOutboundCallRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof RoutingOutboundCallServiceApi */ createRoutingOutboundCall(body: EngineCreateRoutingOutboundCallRequest, options?: any): Promise>; /** * * @summary Remove RoutingOutboundCall * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof RoutingOutboundCallServiceApi */ deleteRoutingOutboundCall(id: string, domainId?: string, options?: any): Promise>; /** * * @summary Move RoutingOutboundCall * @param {string} fromId * @param {string} toId * @param {EngineRoutingOutboundCallServiceMovePositionRoutingOutboundCallBody} body * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof RoutingOutboundCallServiceApi */ movePositionRoutingOutboundCall(fromId: string, toId: string, body: EngineRoutingOutboundCallServiceMovePositionRoutingOutboundCallBody, options?: any): Promise>; /** * * @summary Patch RoutingOutboundCall * @param {string} id * @param {EngineRoutingOutboundCallServicePatchRoutingOutboundCallBody} body * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof RoutingOutboundCallServiceApi */ patchRoutingOutboundCall(id: string, body: EngineRoutingOutboundCallServicePatchRoutingOutboundCallBody, options?: any): Promise>; /** * * @summary RoutingOutboundCall item * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof RoutingOutboundCallServiceApi */ readRoutingOutboundCall(id: string, domainId?: string, options?: any): Promise>; /** * * @summary List of RoutingOutboundCall * @param {number} [page] * @param {number} [size] * @param {string} [q] * @param {string} [sort] * @param {Array} [fields] * @param {Array} [id] * @param {string} [name] * @param {Array} [schemaId] * @param {string} [pattern] * @param {string} [description] * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof RoutingOutboundCallServiceApi */ searchRoutingOutboundCall(page?: number, size?: number, q?: string, sort?: string, fields?: Array, id?: Array, name?: string, schemaId?: Array, pattern?: string, description?: string, options?: any): Promise>; /** * * @summary Update RoutingOutboundCall * @param {string} id * @param {EngineRoutingOutboundCallServiceUpdateRoutingOutboundCallBody} body * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof RoutingOutboundCallServiceApi */ updateRoutingOutboundCall(id: string, body: EngineRoutingOutboundCallServiceUpdateRoutingOutboundCallBody, options?: any): Promise>; } //# sourceMappingURL=routing-outbound-call-service-api.d.ts.map