After updating my plugin to Forge 10.0.1(node.js v20.15.0) all my requests in Resolver are rejected with 403 Forbidden error(Access control configuration prevents your request from being allowed at this time. Please contact your service provider if you feel this is incorrect.). I use Custom UI(use @forge/bridge). In my Resolver I do simple requests like this:
const requestURL = await route`/rest/api/3/project/${id}/components`;
const res = await api.asApp()
.requestJira(requestURL, {
headers: {
'Accept': 'application/json'
}
});
And all my requests returned with 403. This problem i can see on all environments(i checked staging and development). Similar with using storage.query(), now I get APIError: Permissions error. All had worked OK before I updated libs