Loren ☺️
Loren ☺️
Discussion notes: - side-effect doesn't provide much value over Local Activities - mutable side effect would be a nice: https://pkg.go.dev/go.temporal.io/sdk/workflow#MutableSideEffect
Here's an alternative: https://github.com/temporalio/samples-typescript/tree/main/activities-sticky-queues If anyone has a use case in which this doesn't work well, please post a comment, thanks!
Are you looking for this? https://github.com/temporalio/samples-typescript/blob/main/schedules/src/go-faster.ts
Update: works if I remove `type: module` from root `package.json` and add a second `package.json` for temporal. Will submit PR https://github.com/lorensr/next.js/commit/85b719375f53e29e15acae740a3317295e480b42
Currently we recommend `no-restricted-imports`: https://github.com/temporalio/samples-typescript/blob/b3a106c27086b8db7612016ba681939de221fa3f/hello-world/.eslintrc.js#L41
I see your point. I'd prioritize convenience here, and change doc to clarify: `crt Buffer | string The cert itself (not a file path).` 
Hi @milanbgd011, I was interested to read the most recent iteration. Thoughts: - `d.signal[d.signalEvent.CANCEL]` is harder to read than I'm used to. I usually try to optimize for readability/comprehension, but...
Some workflows don't have states or queries or signals, so I'd make a single object param. Also prefer verbs starting function names. I'd say `defineWorkflow`, but technically the definition is...
Can we get `d` to have the right type just with this? ```ts export const d = describeWorkflow({ states, queries, signals }); ``` If not, then what about something like...
[Feature Request] Add sample: testing workflows containing startChild / executeChild / continueAsNew
Hi Nickolay, thanks for the suggestion! How do you want to test the parent workflow? Are you wanting to mock the child workflow? What do you mean by "as long...