Creates a new entry based on the given template and data.
The ID or name of the template to use for the entry creation.
The data to create the new entry.
The newly created entry.
Deletes an entry by its ID based on the specified template.
The unique identifier of the entry to be deleted.
The ID or name of the template associated with the entry.
A promise that resolves to the deleted entry.
Retrieves all parsed entries for a given template.
If caching is enabled and skipCache
is not set to true, the method will attempt
to retrieve data from the cache before making a network request.
The ID or name of the template to retrieve entries for.
Optional
skipCache: booleanOptional. If true, bypasses the cache and fetches fresh data.
Retrieves all lightweight (lite) entries for a given template.
If caching is enabled and skipCache
is not set to true, the method will attempt
to retrieve data from the cache before making a network request.
The ID or name of the template.
Optional
skipCache: booleanOptional. If true, bypasses the cache and fetches fresh data.
A promise that resolves to an array of lightweight entries.
Fetches all raw entries associated with a given template identifier or name.
If caching is enabled and skipCache
is not set to true, the method will attempt
to retrieve data from the cache before making a network request.
The template identifier or name to retrieve the entries for.
Optional
skipCache: booleanOptional. If true, bypasses the cache and fetches directly from the source.
Entry
objects.Retrieves an entry by its ID and template name or ID.
If caching is enabled and skipCache
is not set to true, the method will attempt
to retrieve data from the cache before making a network request.
The ID of the entry to be retrieved.
The template ID or name associated with the entry.
Optional
skipCache: booleanOptional. If true, bypasses the cache and fetches directly from the source.
Retrieves a lite version of an entry by its ID and template name or ID.
If caching is enabled and skipCache
is not set to true, the method will attempt
to retrieve data from the cache before making a network request.
The ID of the entry to retrieve.
The ID or name of the template associated with the entry.
Optional
skipCache: booleanOptional. If true, bypasses the cache and fetches directly from the source.
A promise that resolves to the lite version of the entry.
Retrieves a raw entry by its ID and template name or ID.
If caching is enabled and skipCache
is not set to true, the method will attempt
to retrieve data from the cache before making a network request.
The ID of the entry to be retrieved.
The template ID or name associated with the entry.
Optional
skipCache: booleanOptional. If true, bypasses the cache and fetches directly from the source.
Updates an entry using the provided template identifier or name and data.
The identifier or name of the template to use for the update.
The data to update the entry with.
The updated entry.
EntryHandler class to manage entries in a specified template.