@actnet/app-core - v0.1.0
    Preparing search index...

    Type Alias AdminEvent

    Admin-only events surfaced via AppCore.adminEvents / AppCore.nextAdminEvents. Only adminbot sessions ever receive these — for any other session the queue stays empty.

    Discriminated by kind; currently only "accountJoined", but kept extensible for future admin pushes.

    type AdminEvent = {
        kind: "accountJoined";
        accountJoined: AccountJoined;
    }
    Index

    Properties

    Properties

    kind: "accountJoined"
    accountJoined: AccountJoined