/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import axios from '@aliasedDeps/api-services/axios'; import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'; import type { FtsSearchResponse, SearchParams } from '../_models'; // --- header start // export const // --- title start getFtsservice = // --- title end (axiosInstance: AxiosInstance = axios) => { // --- header end const search = ( params?: SearchParams, options?: AxiosRequestConfig, ): Promise> => { return axiosInstance.get(`/search`, { ...options, params: { ...params, ...options?.params, }, }); }; // --- footer start return { search, }; }; export type SearchResult = AxiosResponse; // --- footer end