Hi @tdhollander @kjetil,
Unfortunately, there is no update yet for the functionality to generate the GUID/UUID in Alumio. However, since we now have Code Transformer, we can now generate UUID using JavaScript, as shown below.
Below is the code to generate the UUID:
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, (l) => l === 'x' ? (Math.random() * 16 | 0).toString(16) : ((Math.random() * 16 | 0) & 0x3 | 0x8).toString(16));
Please give it a try and let us know if it works.