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

    Interface ModularConfiguratorComponentType

    Represents a component type within the modular configurator.

    Type definition for modular configurator components. Defines the schema and available options for component types.

    Component type/category definitions — groups like 'wheel', 'frame', 'seat'. Each type has a collection of available components. Use to build categorized selection menus (e.g., 'Choose Your Wheel' showing only wheel-type options).

    Access from the configurator definition. Use type names as section headers in custom menus. Filter components by type to populate category-specific selectors. The type.id is what you pass as typeId to SetComponent.

    interface ModularConfiguratorComponentType {
        __typename: "ModularConfiguratorComponentType";
        id: string;
        isRequired: boolean;
        isRoot: boolean;
        name: string;
        position: number;
    }
    Index

    Properties

    __typename: "ModularConfiguratorComponentType"

    Represents object typename for the component type.

    id: string

    The id unique identifier.

    isRequired: boolean

    Is required current component type or not.

    isRoot: boolean

    Is root current component type or not.

    name: string

    Display the name for the component type.

    position: number

    Position index of the component type.