mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-15 23:32:46 +00:00
33 lines
907 B
TypeScript
33 lines
907 B
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* Fabro Run API
|
|
* HTTP API for managing Fabro workflow run executions.
|
|
*
|
|
* The version of the OpenAPI document: 0.1.0
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { RenderWorkflowGraphDirection } from './render-workflow-graph-direction';
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { RenderWorkflowGraphFormat } from './render-workflow-graph-format';
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { RunManifest } from './run-manifest';
|
|
|
|
export interface RenderWorkflowGraphRequest {
|
|
'manifest': RunManifest;
|
|
'format'?: RenderWorkflowGraphFormat;
|
|
'direction'?: RenderWorkflowGraphDirection;
|
|
}
|
|
|
|
|
|
|