@archastro/sdk
    Preparing search index...

    Interface InviteCreator

    A minimal, public-safe projection of the user who sent an invite, exposed to unauthenticated recipients so they can render a join screen. Only identity fields are included; sensitive fields such as email address and organization membership are omitted.

    interface InviteCreator {
        id: string;
        name?: string;
        profile_picture?: ImageSource;
    }
    Index

    Properties

    id: string

    User ID of the inviter (usr_...).

    name?: string

    Display name of the inviter. null when the inviter has not set a name on their account.

    profile_picture?: ImageSource

    Profile picture of the inviter. null when the inviter has no profile picture set.