Record type
Collection type
List params
Create params
Update params
Create a new resource.
Typically associated with POST /collection.
Create params.
Promise of the created resource.
Fetch the collection
Accepts a set of parameters which can be used to filter the collection. These params will be used as part of the cache key.
Typically associated with GET /collection.
List params
Promise of a collection.
Partially update a resource with the given params.
Typically associated with PATCH /collection/:id.
Id of the resource to partially update
Values to update the resource with.
Promise of the partially updated resource.
Delete a resource.
Typically associated with DELETE /collection/:id.
Id of the resource to delete.
Update a resource with the given params.
Typically associated with PUT /collection/:id.
Id of the resource to update
Values to update the resource with.
Promise of the updated resource.
Fetch a resource with the given id.
Typically associated with GET /collection/:id.
Id of the resource to view.
Promise of the viewed resource.
Generated using TypeDoc
Rest client interface.
The Rest Client provides a consistent interface for interacting with a collection & resource. This is based off the typical REST API structure.