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

    Interface ModularConfiguratorConnector

    Represents a connector in the modular configurator.

    Defines the connection structure between components. Represents the virtual connectors created when loading products based on component tags.

    Connector definitions for modular assembly — how components physically attach via virtual sockets and connection tags. Critical for modular products (sectional sofas, modular shelving, multi-piece systems) where parts snap at defined points.

    Access via virtualSocketToConnectorsMap on each component. These define which component slots accept which other components based on matching connection tags. Use to validate proposed assemblies before sending SetComponent commands in custom builder UIs.

    interface ModularConfiguratorConnector {
        __typename: "ModularConfiguratorConnector";
        componentTypeId1: string;
        componentTypeId2: string;
        id: string;
    }
    Index

    Properties

    __typename: "ModularConfiguratorConnector"

    Represents object typename for connector.

    componentTypeId1: string
    componentTypeId2: string
    id: string