@pouchy_ai/companion-sdk - v0.1.0
    Preparing search index...

    Interface SocialMessagePayload

    Payload of a companion.social_message event — an inbound A2A message from one of the user's paired friends, delivered cross-app to any live embed whose token holds social.message. Lets a native/web host surface friend messages in real time without the first-party Pouchy app. Only plain human messages are delivered (Pouchy-internal structured envelopes are not).

    interface SocialMessagePayload {
        content: string;
        createdAt: string;
        fromName: string;
        fromUid: string;
    }
    Index
    content: string

    The message text.

    createdAt: string

    ISO timestamp of delivery.

    fromName: string

    The sender's display name.

    fromUid: string

    The sender's Pouchy uid.