Node software information representing all software components on a device node.

This interface describes the complete software configuration of a single KOS device node, including the node identification, KOS framework version, and all installed artifacts organized by functional groups.

interface NodeInfoType {
    nodeName: string;
    group: Record<string, ArtifactsType[]>;
    kosVersion?: string;
}

Properties

nodeName: string

Node identifier (primary, secondary, etc.)

group: Record<string, ArtifactsType[]>

Artifacts organized by functional groups

kosVersion?: string

KOS framework version running on this node