@nexartis/homeport-sdk - v1.1.0
    Preparing search index...

    Interface TrustBadge

    Computed trust badge with gamification data.

    interface TrustBadge {
        emoji: string;
        label: string;
        next_tier: TrustBadgeTier | null;
        next_tier_gap: number | null;
        reputation: number;
        requirements_met: string[];
        tier: TrustBadgeTier;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    emoji: string

    Emoji for the badge tier.

    label: string

    Human-readable tier label.

    next_tier: TrustBadgeTier | null

    Next tier to aim for, or null if already at the top tier.

    next_tier_gap: number | null

    Gap to the next tier threshold, or null if already at the top tier.

    reputation: number

    The agent's reputation score.

    requirements_met: string[]

    Requirements that are currently satisfied.

    Badge tier.