@webitel/api-services
    Preparing search index...
    • Parameters

      • axiosInstance: AxiosInstance = axios

      Returns {
          createList: (
              engineCreateListRequest: EngineCreateListRequest,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineList, any, {}>>;
          createListCommunication: (
              listId: string,
              engineListServiceCreateListCommunicationBody: EngineListServiceCreateListCommunicationBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineListCommunication, any, {}>>;
          deleteList: (
              id: string,
              params?: DeleteListParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineList, any, {}>>;
          deleteListCommunication: (
              listId: string,
              id: string,
              params?: DeleteListCommunicationParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineListCommunication, any, {}>>;
          readList: (
              id: string,
              params?: ReadListParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineList, any, {}>>;
          readListCommunication: (
              listId: string,
              id: string,
              params?: ReadListCommunicationParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineListCommunication, any, {}>>;
          searchList: (
              params?: SearchListParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineListOfList, any, {}>>;
          searchListCommunication: (
              listId: string,
              params?: SearchListCommunicationParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineListOfListCommunication, any, {}>>;
          updateList: (
              id: string,
              engineListServiceUpdateListBody: EngineListServiceUpdateListBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineList, any, {}>>;
          updateListCommunication: (
              listId: string,
              id: string,
              engineListServiceUpdateListCommunicationBody: EngineListServiceUpdateListCommunicationBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineListCommunication, any, {}>>;
      }