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

      • axiosInstance: AxiosInstance = axios

      Returns {
          createQueueHook: (
              queueId: number,
              engineQueueHookServiceCreateQueueHookBody: EngineQueueHookServiceCreateQueueHookBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineQueueHook, any, {}>>;
          deleteQueueHook: (
              queueId: number,
              id: number,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineQueueHook, any, {}>>;
          patchQueueHook: (
              queueId: number,
              id: number,
              engineQueueHookServicePatchQueueHookBody: EngineQueueHookServicePatchQueueHookBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineQueueHook, any, {}>>;
          readQueueHook: (
              queueId: number,
              id: number,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineQueueHook, any, {}>>;
          searchQueueHook: (
              queueId: number,
              params?: SearchQueueHookParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineListQueueHook, any, {}>>;
          updateQueueHook: (
              queueId: number,
              id: number,
              engineQueueHookServiceUpdateQueueHookBody: EngineQueueHookServiceUpdateQueueHookBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineQueueHook, any, {}>>;
      }