mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-17 23:52:34 +00:00
Picks up Arc-to-Fabro rename and new ssh-configuration model. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
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 { ApiQuestionOption } from './api-question-option';
|
|
// May contain unused imports in some cases
|
|
// @ts-ignore
|
|
import type { QuestionType } from './question-type';
|
|
|
|
/**
|
|
* A pending human-in-the-loop question generated by a workflow stage.
|
|
*/
|
|
export interface ApiQuestion {
|
|
/**
|
|
* Unique question identifier.
|
|
*/
|
|
'id': string;
|
|
/**
|
|
* The question text displayed to the user.
|
|
*/
|
|
'text': string;
|
|
'question_type': QuestionType;
|
|
/**
|
|
* Available options for selection-based questions. Empty for freeform questions.
|
|
*/
|
|
'options': Array<ApiQuestionOption>;
|
|
/**
|
|
* Whether the user may provide freeform text in addition to selecting options.
|
|
*/
|
|
'allow_freeform': boolean;
|
|
}
|
|
|
|
|
|
|