Merge remote-tracking branch 'origin/master'

* origin/master:
  add QuestArc to community plugins list
  Fixing Plugin API doc on persistence
This commit is contained in:
Johannes Millan 2026-01-05 17:36:12 +01:00
commit 24d3fb6fab
2 changed files with 8 additions and 3 deletions

View file

@ -453,11 +453,11 @@ You can persist data that will also be synced vai the `persistDataSynced` and `l
```javascript
// Save plugin data
await PluginAPI.persistDataSynced('myKey', { count: 42 });
await PluginAPI.persistDataSynced(JSON.stringify({ count: 42 }));
// Load saved data
const data = await PluginAPI.loadSyncedData('myKey');
console.log(data); // { count: 42 }
const data = await PluginAPI.loadSyncedData();
console.log(data); // '{ count: 42 }'
```
## Best Practices