@molroo-ai/sdk
    Preparing search index...

    Interface EventResult

    Result of an event dispatch, listing all affected entities and their responses.

    interface EventResult {
        affected: {
            entityId: string;
            entityName: string;
            response: AgentResponse;
        }[];
        environmentChanged: boolean;
    }
    Index

    Properties

    affected: { entityId: string; entityName: string; response: AgentResponse }[]
    environmentChanged: boolean