/** * These typings should be used as a guide to what should be sent, but cannot be trusted as what actually *is* sent. */ export type StatePatchV2Body = { local?: { should_be_running__release?: number; name?: string; /** * @deprecated in favor of name, to match the GET endpoint */ device_name?: string; status?: string; is_online?: boolean; note?: string; os_version?: string | null; os_variant?: string | null; supervisor_version?: string; provisioning_progress?: number | null; provisioning_state?: string | null; ip_address?: string; mac_address?: string; download_progress?: number | null; api_port?: number; api_secret?: string | null; memory_usage?: number | null; memory_total?: number | null; storage_block_device?: string | null; storage_usage?: number | null; storage_total?: number | null; cpu_temp?: number | null; cpu_usage?: number | null; cpu_id?: string | null; is_undervolted?: boolean; is_on__commit?: string | null; apps?: Record; }; }; export declare const statePatchV2: import("express").RequestHandler | undefined; }> | undefined; }; }, Record, Record>;