fabro/lib/packages/fabro-api-client/src/models/node-state.ts
Bryan Helmkamp 39980b5404
refactor: add run store HTTP endpoints
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.
2026-04-04 15:37:43 -04:00

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;
}