Logged here: [Bug] Storage API Versioning · Issue #42 · mondaycom/monday-sdk-js · GitHub
I’ve noticed that when specifying a previous_version
it does not result in a version_conflict
error as described in the docs: GitHub - mondaycom/monday-sdk-js: Node.js and JavaScript SDK for developing over the monday.com platform
this.mondayClientSdk.storage.instance.setItem(key, value, {previous_version: version}).then(
r => console.log(r),
e => console.error(e)
);
Am I making the call incorrectly?