Skip to content
Snippets Groups Projects

Resolve "Add option to select the nextflow version for workflow versions"

15 files
+ 138
29
Compare changes
  • Side-by-side
  • Inline
Files
15
@@ -2,6 +2,7 @@
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { NextflowVersion } from './NextflowVersion';
import type { WorkflowModeIn } from './WorkflowModeIn';
export type DevWorkflowExecutionIn = {
/**
@@ -36,5 +37,9 @@ export type DevWorkflowExecutionIn = {
* Mode of the workflow with an alternative entrypoint
*/
mode?: (WorkflowModeIn | null);
/**
* The version of Nextflow this workflow execution requires
*/
nextflow_version: NextflowVersion;
};
Loading