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

      • axiosInstance: AxiosInstance = axios

      Returns {
          createTeamHook: (
              teamId: string,
              engineTeamHookServiceCreateTeamHookBody: EngineTeamHookServiceCreateTeamHookBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineTeamHook, any, {}>>;
          deleteTeamHook: (
              teamId: string,
              id: number,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineTeamHook, any, {}>>;
          patchTeamHook: (
              teamId: string,
              id: number,
              engineTeamHookServicePatchTeamHookBody: EngineTeamHookServicePatchTeamHookBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineTeamHook, any, {}>>;
          readTeamHook: (
              teamId: string,
              id: number,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineTeamHook, any, {}>>;
          searchTeamHook: (
              teamId: string,
              params?: SearchTeamHookParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineListTeamHook, any, {}>>;
          updateTeamHook: (
              teamId: string,
              id: number,
              engineTeamHookServiceUpdateTeamHookBody: EngineTeamHookServiceUpdateTeamHookBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineTeamHook, any, {}>>;
      }