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

      • axiosInstance: AxiosInstance = axios

      Returns {
          createAgentSkill: (
              agentId: string,
              engineAgentSkillServiceCreateAgentSkillBody: EngineAgentSkillServiceCreateAgentSkillBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineAgentSkill, any, {}>>;
          createAgentSkills: (
              agentId: string,
              engineAgentSkillServiceCreateAgentSkillsBody: EngineAgentSkillServiceCreateAgentSkillsBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineCreateAgentSkillsResponse, any, {}>>;
          deleteAgentSkill: (
              agentId: string,
              id: string,
              params?: DeleteAgentSkillParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineAgentSkill, any, {}>>;
          deleteAgentSkills: (
              agentId: string,
              params?: DeleteAgentSkillsParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineListAgentSkill, any, {}>>;
          patchAgentSkill: (
              agentId: string,
              id: string,
              engineAgentSkillServicePatchAgentSkillBody: EngineAgentSkillServicePatchAgentSkillBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineAgentSkill, any, {}>>;
          patchAgentSkills: (
              agentId: string,
              engineAgentSkillServicePatchAgentSkillsBody: EngineAgentSkillServicePatchAgentSkillsBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineListAgentSkill, any, {}>>;
          readAgentSkill: (
              agentId: string,
              id: string,
              params?: ReadAgentSkillParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineAgentSkill, any, {}>>;
          searchAgentSkill: (
              agentId: string,
              params?: SearchAgentSkillParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineListAgentSkill, any, {}>>;
          searchLookupAgentNotExistsSkill: (
              agentId: string,
              params?: SearchLookupAgentNotExistsSkillParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineListSkill, any, {}>>;
          updateAgentSkill: (
              agentId: string,
              id: string,
              engineAgentSkillServiceUpdateAgentSkillBody: EngineAgentSkillServiceUpdateAgentSkillBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineAgentSkill, any, {}>>;
      }