feat: update OrchestrationDefinition API model#50
Merged
paullatzelsperger merged 8 commits intoFeb 23, 2026
Merged
Conversation
849d844 to
15f8452
Compare
jimmarino
requested changes
Feb 23, 2026
Contributor
jimmarino
left a comment
There was a problem hiding this comment.
Can we get rid of the Stream abstraction and use Seq/Seq2 instead? The Stream abstraction isn't needed, and any required filtering/transformation can be done using composable Seq/Seq2 in a range using functions:
for n := range MapBar(FilterFoo(getResults())) {
// Do something
}The approach is used in the memory and SQL stores. Any general functions (if they are needed) can go into common/collections but I'm not sure if such functions are neded.
24505b7 to
4fbb0f7
Compare
jimmarino
approved these changes
Feb 23, 2026
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.
This PR changes the data model of the orchestration definition API by:
OrchestrationTemplate:OrchestrationDefinitionobjects are generated based off of that template and linked to it with thetemplateRefpropertyOrchestrationDefinitionsthat were generated on a certain template.