All of my Evaluate TS blocks in all of my Flows are suddenly not producing output. I have not changed them or modified any of them since the last time they worked. I am thinking that the latest update broke them.
Here’s an example of one of my typescript blocks:
const visitorId = crypto.randomUUID();
The block used to automatically map the value of visitorId to the output of the block, where I assign it to a variable. Now, it throws an error Result is undefined. I have found no documentation stating that there have been any changes in how these blocks work. The latest update simply says “bug fixes”
Is anyone else experiencing this in Postman Flows after the desktop app updated to 12.7.6?
Before anyone suggests … I have indeed tried changing it to the following:
const visitId = crypto.randomUUID(); visitId;
Also have tried
crypto.randomUUID();
And I have tried adding return visitId;, which just causes it to complain that return is being used outside of a function. Most of these suggestions were made by their in-app AI agent, but none of them resolved the issue.