fabro/lib/packages/fabro-api-client/src/models/run-reference.ts
Bryan Helmkamp 21d84eecf6 Regenerate TypeScript API client from updated OpenAPI spec
Picks up Arc-to-Fabro rename and new ssh-configuration model.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-13 20:43:25 -04:00

30 lines
559 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.
*/
/**
* Reference to a run with its title.
*/
export interface RunReference {
/**
* Unique run identifier.
*/
'id': string;
/**
* Human-readable run title.
*/
'title': string;
}