v0.4.1
This version introduces a new app level storage api.
The new api enables using the storage by instance-less apps as well.
What's changed
- Add the following functions to the
storage
: - setItem (
monday.storage.setItem(key, value)
) - getItem (
monday.storage.getItem(key)
) - deleteItem (
monday.storage.deleteItem(key)
)
All added functions will perform operations on the data on the app's level (not in the instance level)
Added by @DorShakedMonday in #103