@3dsource/metabox-modular-configurator-api
    Preparing search index...

    Interface VirtualSocket

    Represents a virtual socket on a product used for modular assembly connections.

    Virtual socket metadata linking abstract connection points to their underlying original sockets defined on the 3D model.

    Virtual sockets are abstraction layers over physical sockets on the 3D model. They group one or more original sockets under a single named connection point, simplifying the connector logic for modular assembly.

    This is an internal data structure managed by MetaBox. Access via product.virtualSockets on a component's product. Typically consumed by the connector validation logic rather than directly by UI code.

    interface VirtualSocket {
        id: string;
        name: string;
        originalSockets: string[];
    }
    Index

    Properties

    id: string

    Unique identifier for the virtual socket.

    name: string

    Display name of the virtual socket.

    originalSockets: string[]

    List of original socket identifiers on the 3D model that this virtual socket maps to.