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

      • axiosInstance: AxiosInstance = axios

      Returns {
          createSkill: (
              engineCreateSkillRequest: EngineCreateSkillRequest,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineSkill, any, {}>>;
          createSkillAgent: (
              skillId: string,
              engineSkillServiceCreateSkillAgentBody: EngineSkillServiceCreateSkillAgentBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineCreateSkillAgentResponse, any, {}>>;
          deleteSkill: (
              id: string,
              params?: DeleteSkillParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineSkill, any, {}>>;
          deleteSkillAgent: (
              skillId: string,
              engineSkillServiceDeleteSkillAgentBody: EngineSkillServiceDeleteSkillAgentBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineDeleteSkillAgentResponse, any, {}>>;
          patchSkillAgent: (
              skillId: string,
              engineSkillServicePatchSkillAgentBody: EngineSkillServicePatchSkillAgentBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EnginePatchSkillAgentResponse, any, {}>>;
          readSkill: (
              id: string,
              params?: ReadSkillParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineSkill, any, {}>>;
          searchSkill: (
              params?: SearchSkillParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineListSkill, any, {}>>;
          searchSkillAgent: (
              skillId: string,
              params?: SearchSkillAgentParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineListSkillAgent, any, {}>>;
          updateSkill: (
              id: string,
              engineSkillServiceUpdateSkillBody: EngineSkillServiceUpdateSkillBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineSkill, any, {}>>;
      }