/** * 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 { WebitelKnowledgebaseCombinedList } from '../api'; /** * KnowledgebaseSearchApi - axios parameter creator * @export */ export declare const KnowledgebaseSearchApiAxiosParamCreator: (configuration?: Configuration) => { /** * * @param {number} [size] Size count of records on result page. limit = (size++) * @param {number} [page] Page number of result dataset records. offset = (page*size) * @param {Array} [sort] Sort the result according to fields. * @param {string} [q] Search term: location name; `?` - matches any one character `*` - matches 0 or more characters * @param {boolean} [state] Active Article only. * @param {Array} [tags] Tags associated with the article. * @param {*} [options] Override http request option. * @throws {RequiredError} */ spacesArticlesSearch: (size?: number, page?: number, sort?: Array, q?: string, state?: boolean, tags?: Array, options?: any) => Promise; }; /** * KnowledgebaseSearchApi - functional programming interface * @export */ export declare const KnowledgebaseSearchApiFp: (configuration?: Configuration) => { /** * * @param {number} [size] Size count of records on result page. limit = (size++) * @param {number} [page] Page number of result dataset records. offset = (page*size) * @param {Array} [sort] Sort the result according to fields. * @param {string} [q] Search term: location name; `?` - matches any one character `*` - matches 0 or more characters * @param {boolean} [state] Active Article only. * @param {Array} [tags] Tags associated with the article. * @param {*} [options] Override http request option. * @throws {RequiredError} */ spacesArticlesSearch(size?: number, page?: number, sort?: Array, q?: string, state?: boolean, tags?: Array, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * KnowledgebaseSearchApi - factory interface * @export */ export declare const KnowledgebaseSearchApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * * @param {number} [size] Size count of records on result page. limit = (size++) * @param {number} [page] Page number of result dataset records. offset = (page*size) * @param {Array} [sort] Sort the result according to fields. * @param {string} [q] Search term: location name; `?` - matches any one character `*` - matches 0 or more characters * @param {boolean} [state] Active Article only. * @param {Array} [tags] Tags associated with the article. * @param {*} [options] Override http request option. * @throws {RequiredError} */ spacesArticlesSearch(size?: number, page?: number, sort?: Array, q?: string, state?: boolean, tags?: Array, options?: any): AxiosPromise; }; /** * KnowledgebaseSearchApi - object-oriented interface * @export * @class KnowledgebaseSearchApi * @extends {BaseAPI} */ export declare class KnowledgebaseSearchApi extends BaseAPI { /** * * @param {number} [size] Size count of records on result page. limit = (size++) * @param {number} [page] Page number of result dataset records. offset = (page*size) * @param {Array} [sort] Sort the result according to fields. * @param {string} [q] Search term: location name; `?` - matches any one character `*` - matches 0 or more characters * @param {boolean} [state] Active Article only. * @param {Array} [tags] Tags associated with the article. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof KnowledgebaseSearchApi */ spacesArticlesSearch(size?: number, page?: number, sort?: Array, q?: string, state?: boolean, tags?: Array, options?: any): Promise>; } //# sourceMappingURL=knowledgebase-search-api.d.ts.map