UNPKG

@cto.ai/ops

Version:

💻 CTO.ai Ops - The CLI built for Teams 🚀

20 lines (19 loc) • 469 B
import { OpCommand, OpWorkflow } from './OpsYml'; export declare type OpsFindResponse = { data: (OpCommand | OpWorkflow)[]; error: object[] | null; }; export declare type OpsFindQuery = { team_id?: string; name?: string; search?: string; }; export declare type WorkflowsFindResponse = { data: OpWorkflow[]; error: object[] | null; }; export declare type WorkflowsFindQuery = { teamId?: string; name?: string; search?: string; };