mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-16 23:43:10 +00:00
Define the new run-store contract in the OpenAPI spec, regenerate the Rust and TypeScript clients, and implement the matching store and server support for run state, event access, blobs, and stage artifacts.
35 lines
809 B
TypeScript
35 lines
809 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 { NodeStatusRecord } from './node-status-record';
|
|
|
|
/**
|
|
* Internal node projection state.
|
|
*/
|
|
export interface NodeState {
|
|
'prompt'?: string;
|
|
'response'?: string;
|
|
'status'?: NodeStatusRecord | null;
|
|
'provider_used'?: any;
|
|
'diff'?: string;
|
|
'script_invocation'?: any;
|
|
'script_timing'?: any;
|
|
'parallel_results'?: any;
|
|
'stdout'?: string;
|
|
'stderr'?: string;
|
|
}
|
|
|