feat(workflow): support TypeInfo for workflow transitions - #2248
Open
THardy98 wants to merge 2 commits into
Open
feat(workflow): support TypeInfo for workflow transitions#2248THardy98 wants to merge 2 commits into
THardy98 wants to merge 2 commits into
Conversation
THardy98
force-pushed
the
feat/ts-type-hints
branch
2 times, most recently
from
July 23, 2026 16:07
a75d59a to
0049faa
Compare
THardy98
changed the base branch from
main
to
feat/ts-type-hints-workflow-client
July 23, 2026 16:08
This was referenced Jul 23, 2026
THardy98
force-pushed
the
feat/ts-type-hints-workflow-client
branch
from
July 23, 2026 17:06
fa13326 to
fd11f11
Compare
THardy98
force-pushed
the
feat/ts-type-hints
branch
from
July 23, 2026 17:06
0049faa to
a7e4f20
Compare
THardy98
force-pushed
the
feat/ts-type-hints-workflow-client
branch
from
July 23, 2026 17:29
fd11f11 to
d8e2f2e
Compare
THardy98
force-pushed
the
feat/ts-type-hints
branch
from
July 23, 2026 17:29
a7e4f20 to
26a20eb
Compare
THardy98
force-pushed
the
feat/ts-type-hints-workflow-client
branch
from
July 23, 2026 18:42
d8e2f2e to
28b503e
Compare
THardy98
force-pushed
the
feat/ts-type-hints
branch
from
July 23, 2026 18:42
26a20eb to
30a5b48
Compare
THardy98
force-pushed
the
feat/ts-type-hints-workflow-client
branch
from
July 23, 2026 19:40
28b503e to
68c9a75
Compare
THardy98
force-pushed
the
feat/ts-type-hints
branch
from
July 23, 2026 19:41
30a5b48 to
06f4bc8
Compare
THardy98
force-pushed
the
feat/ts-type-hints-workflow-client
branch
from
July 24, 2026 16:52
68c9a75 to
fa07e89
Compare
THardy98
force-pushed
the
feat/ts-type-hints
branch
from
July 24, 2026 16:55
06f4bc8 to
0d30396
Compare
THardy98
marked this pull request as ready for review
August 3, 2026 13:38
THardy98
force-pushed
the
feat/ts-type-hints-workflow-client
branch
2 times, most recently
from
August 10, 2026 16:29
4d14dd1 to
b029835
Compare
THardy98
force-pushed
the
feat/ts-type-hints-workflow-client
branch
from
August 10, 2026 16:46
b029835 to
da45938
Compare
THardy98
force-pushed
the
feat/ts-type-hints
branch
from
August 10, 2026 19:11
0d30396 to
38c2748
Compare
THardy98
force-pushed
the
feat/ts-type-hints
branch
from
August 11, 2026 09:41
38c2748 to
69a06a9
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What was changed
Added experimental
TypeInfosupport to Child Workflow calls and continue-as-new. Child Workflows resolve definition-supplied type information or accept it when called by workflow type string; their inputs are encoded and results decoded with it. Same-type continue-as-new reuses the current Workflow's input type information, while transitions to another Workflow type accept explicit input type information.This PR builds on the Workflow Client
TypeInfosupport merged in #2252.Why?
Without this change, type-aware conversion stops at the initial Workflow run. Application values passed to Child Workflows or later runs cannot use the transfer conversion established for Client-started Workflows.
Conversions without
TypeInfoare unchanged. No rollout or manual steps are required.Checklist
Closes: N/A
How was this tested: Workflow and Test builds; 13 focused
TypeInfointegration tests; ESLint; Prettier; andts-prune.Any docs updates needed? No; documentation will accompany the completed experimental API.