@gphone/sdk
    Preparing search index...

    Interface ReactionTarget

    The shared social-identity service, as functions.

    gphone_accounts is core — every social app posts under a handle from it — so its routes are named rows in shared/routes.ts, and until now the only way an add-on could reach them was the raw transport. Blabber did exactly that through useNuiBridge, which is the hatch GPHONE-16 closes. No store here on purpose: which accounts are "mine" is per app, and the app holds that.

    interface ReactionTarget {
        app: string;
        target_ids: number[];
        target_table: string;
    }
    Index
    app: string
    target_ids: number[]
    target_table: string