Documentation
    Preparing search index...

    Interface IntentRequest

    A request to dispatch an action to a napplet archetype.

    interface IntentRequest {
        action?: string;
        archetype: string;
        behavior?: IntentBehavior;
        convention?: string;
        handler?: IntentHandlerPreference;
        payload?: unknown;
    }

    Hierarchy (View Summary)

    Index

    Properties

    action?: string

    Action to dispatch; defaults to open.

    archetype: string

    Role slug used for handler resolution.

    behavior?: IntentBehavior

    Window and focus hints.

    convention?: string

    Convention that shapes the opaque payload.

    Runtime-authorized handler selection preference.

    payload?: unknown

    Opaque payload shaped by convention when present.