Documentation
    Preparing search index...

    Interface IntentAvailability

    Availability of an archetype, sourced from the installed-napplet catalog.

    interface IntentAvailability {
        archetype: string;
        available: boolean;
        candidates: IntentCandidate[];
        hasDefault: boolean;
    }
    Index

    Properties

    archetype: string

    The archetype this availability describes.

    available: boolean

    True when at least one installed napplet fulfills the archetype.

    candidates: IntentCandidate[]

    Candidate napplets that fulfill the archetype (from manifests, not instances).

    hasDefault: boolean

    True when a user/runtime default handler is set for the archetype.