Skip to content

agent-core / Exports / IWorkflowConversionOptions

Interface: IWorkflowConversionOptions

Conversion options for workflow transformations Step 1: ❌ Can't assign IWorkflowConversionOptions to metadata value type (missing index signature) Step 2: ✅ Add index signature to make it compatible with MetadataValue Step 3: ✅ Maintain type safety while allowing metadata storage Step 4: ✅ Use MetadataValue compatibility for dynamic properties

Indexable

▪ [key: string]: TUniversalValue | ILogger | IWorkflowMetadata | IWorkflowConfig | undefined

Additional dynamic options compatible with TUniversalValue

Table of contents

Properties

Properties

includeDebug

Optional includeDebug: boolean

Include debug information in output

Defined in

packages/agent-core/src/interfaces/workflow-converter.ts:65


validateInput

Optional validateInput: boolean

Validate input before conversion

Defined in

packages/agent-core/src/interfaces/workflow-converter.ts:68


validateOutput

Optional validateOutput: boolean

Validate output after conversion

Defined in

packages/agent-core/src/interfaces/workflow-converter.ts:71


logger

Optional logger: ILogger

Custom logger for conversion process

Defined in

packages/agent-core/src/interfaces/workflow-converter.ts:74


metadata

Optional metadata: IWorkflowMetadata

Additional metadata to include

Defined in

packages/agent-core/src/interfaces/workflow-converter.ts:77


platformOptions

Optional platformOptions: IWorkflowConfig

Platform-specific options

Defined in

packages/agent-core/src/interfaces/workflow-converter.ts:80

Released under the MIT License.