You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add functionality to fetch single vault by title {#68}
Enable fetching a single vault with three separate methods: {#69}
getVault - get the vault based on its ID or name
getVaultById - get the vault with the provided ID
getVaultByTitle - get the vault with the provided title. Note: The title has to be unique. If multiple vaults have the same title, consider getting the vault by its ID instead.
Add functionality to fetch multiple items by title {#70}
Enable fetching a single item with three separate methods: {#71}
getItem - get the item based on its ID or name
getItemById - get the item with the provided ID
getItemByTitle - get the item with the provided title. Note: The title has to be unique. If multiple items have the same title, consider getting the item by its ID instead.
Add functionality to remove single item by title {#72, #74}
Enable deleting a single item with three separate methods: {#75}
deleteItem - delete the item based on its ID or name
deleteItemById - delete the item with the provided ID
deleteItemByTitle - delete the item with the provided title. Note: The title has to be unique. If multiple items have the same title, consider deleting the item by its ID instead.