Type Alias ReloadTasksAPI

type ReloadTasksAPI = {
    clearCache: typeof clearCache;
    createReloadTask: typeof createReloadTask;
    deleteReloadTask: typeof deleteReloadTask;
    getReloadTask: typeof getReloadTask;
    getReloadTasks: typeof getReloadTasks;
    updateReloadTask: typeof updateReloadTask;
}
Index

Properties

clearCache: typeof clearCache

Clears the cache for reload-tasks api requests.

createReloadTask: typeof createReloadTask

Creates a task for a specified app.

an object with the body content

CreateReloadTaskHttpError

deleteReloadTask: typeof deleteReloadTask

Deletes a task

The unique identifier of the task.

DeleteReloadTaskHttpError

getReloadTask: typeof getReloadTask

Finds and returns a task.

The unique identifier of the task.

GetReloadTaskHttpError

getReloadTasks: typeof getReloadTasks

Finds and returns the tasks that the user has access to.

an object with query parameters

GetReloadTasksHttpError

updateReloadTask: typeof updateReloadTask

Updates an existing task

The unique identifier of the task.

an object with the body content

UpdateReloadTaskHttpError