2026-02-04 20:21:33 +05:30
|
|
|
/**
|
|
|
|
|
* Generated by orval v8.2.0 🍺
|
|
|
|
|
* Do not edit manually.
|
|
|
|
|
* Mission Control API
|
|
|
|
|
* OpenAPI spec version: 0.1.0
|
|
|
|
|
*/
|
|
|
|
|
import type { AgentReadHeartbeatConfig } from "./agentReadHeartbeatConfig";
|
2026-02-06 16:12:04 +05:30
|
|
|
import type { AgentReadIdentityProfile } from "./agentReadIdentityProfile";
|
2026-02-04 20:21:33 +05:30
|
|
|
|
|
|
|
|
export interface AgentRead {
|
|
|
|
|
board_id?: string | null;
|
2026-02-07 20:29:50 +05:30
|
|
|
/** @minLength 1 */
|
|
|
|
|
name: string;
|
|
|
|
|
status?: string;
|
2026-02-04 20:21:33 +05:30
|
|
|
heartbeat_config?: AgentReadHeartbeatConfig;
|
2026-02-06 16:12:04 +05:30
|
|
|
identity_profile?: AgentReadIdentityProfile;
|
|
|
|
|
identity_template?: string | null;
|
2026-02-07 20:29:50 +05:30
|
|
|
soul_template?: string | null;
|
|
|
|
|
id: string;
|
2026-02-06 16:12:04 +05:30
|
|
|
is_board_lead?: boolean;
|
|
|
|
|
is_gateway_main?: boolean;
|
2026-02-06 21:56:16 +05:30
|
|
|
openclaw_session_id?: string | null;
|
2026-02-07 20:29:50 +05:30
|
|
|
last_seen_at: string | null;
|
|
|
|
|
created_at: string;
|
2026-02-04 20:21:33 +05:30
|
|
|
updated_at: string;
|
|
|
|
|
}
|