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

      • axiosInstance: AxiosInstance = axios

      Returns {
          createChatPlan: (
              engineCreateChatPlanRequest: EngineCreateChatPlanRequest,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineChatPlan, any, {}>>;
          deleteChatPlan: (
              id: number,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineChatPlan, any, {}>>;
          patchChatPlan: (
              id: number,
              engineRoutingChatPlanServicePatchChatPlanBody: EngineRoutingChatPlanServicePatchChatPlanBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineChatPlan, any, {}>>;
          readChatPlan: (
              id: number,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineChatPlan, any, {}>>;
          searchChatPlan: (
              params?: SearchChatPlanParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineListChatPlan, any, {}>>;
          updateChatPlan: (
              id: number,
              engineRoutingChatPlanServiceUpdateChatPlanBody: EngineRoutingChatPlanServiceUpdateChatPlanBody,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<EngineChatPlan, any, {}>>;
      }