Hey Steve,
It seems that on the newest version (v1.0.0), the axonation process changes default dict arguments from having the colon to having equals. For example:
(param1: {val1: "I'm a Str", val2: 5}) => do ...
will change to:
(param1: {val1="I'm a Str", val2=5}) => do ...
after Axonation. SkySpark's axon parser doesn't like the result, and the function won't run.
Thanks!