Hello,
Changes made to the lambda also added TypeScript prechecks which made all my lambda codes broken. Please be careful next time when you do changes.
This used to work and it throws error right now :
$var.location_keys = results;
return results;
Now only this works:
$var["location_keys"] = results;
return results;
or putting this in the beginning of the code
declare let $location_keys: any;
I have to change more than 50 code blocks because of this which would take me days to identify and I have to recover data loss from api logs due errors. If I'm doing something wrong or there is a quicker solution please let me know.
Kind regards