How to add custom status in durable function powershell & how to get install durable function locally?
I am trying to run command of the Invoke-DurableActivity but it's giving below error :
Invoke-DurableActivity : The term 'Invoke-DurableActivity' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
I'm unable to found any module on the internet also not found in Microsoft Learn.
Also is there any method to get custom status of orchestrators like showing in this docs for c#.
{
"customStatus": ["Completed", "Completed", "Started", "Started", "Completed"]
}
in powershell will store only single status over there also I'm unable to get GetStatusAsync call from powershell.