@actnet/app-core - v0.1.0
    Preparing search index...

    Interface InviteInfo

    Decoded invite-token info returned by validateInvite. Shown on the invite acceptance screen before any further server communication.

    interface InviteInfo {
        serverUrl: string;
        serverName: string;
        inviterDid?: string;
        postOnboardingRedirect?: string;
        inviterDisplayName?: string;
        inviterProfileKey?: Uint8Array<ArrayBufferLike>;
    }
    Index

    Properties

    serverUrl: string

    Homeserver URL the new account should register against.

    serverName: string

    Human-readable server name (from /v1/server-info).

    inviterDid?: string

    Inviter's DID, if present in the token.

    postOnboardingRedirect?: string

    Where to send the user after onboarding, if the token specifies.

    inviterDisplayName?: string

    Inviter's plaintext display name from the token.

    inviterProfileKey?: Uint8Array<ArrayBufferLike>

    Inviter's 32-byte profile key (used to prime the contact-profile cache).