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

    Interface PublicUserProfile

    Public developer or user profile details.

    const profile: PublicUserProfile = {
    clerkUserId: 'user_2xyz',
    displayName: 'Alice Engineer',
    bio: 'Building indie productivity apps.',
    websiteUrl: 'https://alice.dev',
    hideComments: false,
    createdAt: '2025-01-01T00:00:00.000Z',
    updatedAt: '2026-06-01T00:00:00.000Z',
    };
    interface PublicUserProfile {
        avatarUrl?: string | null;
        bio?: string | null;
        clerkUserId: string;
        createdAt: string;
        displayName?: string | null;
        hideComments: boolean;
        updatedAt: string;
        websiteUrl?: string | null;
    }
    Index
    avatarUrl?: string | null

    Avatar image URL.

    bio?: string | null

    Short user biography or tagline.

    clerkUserId: string

    Clerk user ID of the profile subject.

    createdAt: string

    ISO 8601 creation timestamp.

    displayName?: string | null

    Display name shown publicly.

    hideComments: boolean

    Privacy setting indicating whether the user chooses to hide their comment history.

    updatedAt: string

    ISO 8601 last update timestamp.

    websiteUrl?: string | null

    Personal website or portfolio URL.