Hiyve Components - v1.0.0
    Preparing search index...

    Interface UpdateProfileData

    Fields that can be updated on a user profile via AdminClient.updateProfile.

    Roles are intentionally not included here. Role changes must go through AdminClient.addRole / AdminClient.removeRole so that callers cannot accidentally forward a request body (e.g. from a client) that escalates privileges via the profile-update endpoint.

    interface UpdateProfileData {
        metadata?: Record<string, unknown>;
        name?: string;
        organization?: string;
        phone?: string;
        picture?: string;
    }
    Index

    Properties

    metadata?: Record<string, unknown>
    name?: string
    organization?: string
    phone?: string
    picture?: string