CupThread React Native & Expo SDK - v0.1.0
    Preparing search index...

    Interface PublicUserProfileResult

    Complete public profile payload including authored apps and recent public comments.

    const userProfile = await client.fetchUserProfile('user_abc123');
    console.log(`User: ${userProfile.profile.displayName}, Apps: ${userProfile.apps.length}`);
    interface PublicUserProfileResult {
        apps: PublicAppSummary[];
        hideComments: boolean;
        profile: PublicUserProfile;
        recentComments: UserProfileComment[];
    }
    Index

    List of public applications associated with this developer or team.

    hideComments: boolean

    Whether the user has opted to hide recent comments on their public profile.

    Profile core attributes (name, avatar, bio, website).

    recentComments: UserProfileComment[]

    Recent public comments authored by this user across all apps.