Fix variable search for iterators (#14742)

Add specific search util for iterators. Also making workflow version id
optional in compute step output schema endpoint to avoid breaking
changes on next release.

Before


https://github.com/user-attachments/assets/2ceb5b38-4c0a-4d38-8f57-0e4467dcfd93

After


https://github.com/user-attachments/assets/3ce503ac-5299-4bca-906f-e0fef379df7c
This commit is contained in:
Thomas Trompette
2025-09-26 15:42:40 +02:00
committed by GitHub
parent 9cd0025aed
commit ead351cb9e
12 changed files with 304 additions and 19 deletions
@@ -16,7 +16,7 @@ export class ComputeStepOutputSchemaInput {
@Field(() => UUIDScalarType, {
description: 'Workflow version ID',
nullable: false,
nullable: true,
})
workflowVersionId: string;
workflowVersionId?: string;
}