import type { OptionallyStatefulCommandEntityDiscovery } from "./BaseEntityDiscovery.ts"; 

export type UpdateDeviceClass = 'None' | 'firmware';

export interface UpdateDiscovery extends OptionallyStatefulCommandEntityDiscovery {
    device_class?: UpdateDeviceClass;

    /**
     * Url for a picture of the entity.
     */
    entity_picture?: string;

    latest_version_template?: string;
    latest_version_topic?: string;

    payload_install?: string;

    release_summary?: string;

    release_url?: string;

    title?: string;
}