Request
I saw this code here https://adobexdplatform.com/plugin-docs/reference/PerPluginStorage.html and I am wondering if the XD team would allow the plugin ID to be received via the API instead of manually writing it a variable as below:
const PLUGIN_ID = "<your manifest's plugin ID here>";
let richObject = {
list: [2, 4, 6],
name: "Hello world"
};
node.sharedPluginData.setItem(PLUGIN_ID, "richData", JSON.stringify(richObject));