Hi, I am encountering an issue after packing my app.
Actually, i have a secure iparam with a dynamic name - named api_agentId (eg: api_12345678)
"headers": { "Authorization": "<%= iparamm'api_' + context.agentId] %>" }
When I attempt to use the above code snippet in requests.json, I encounter authorization issues because its becomes uindefined.
However, when I use a static name like ‘apikey’ as an example, I can successfully authorize access.
This issue only arises after I pack the app, there are no issues when I use ‘fdk run’.
Could you please provide assistance with this?