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

    Interface GroupSummary

    Snapshot of a group's decrypted state. Returned by AppCore.fetchGroupState.

    interface GroupSummary {
        groupId: string;
        masterKey: Uint8Array;
        revision: number;
        title: string;
        description: string;
        expirySeconds: number;
        members: GroupMember[];
        pendingInvites: GroupPending[];
        pendingApprovals: GroupPending[];
    }
    Index

    Properties

    groupId: string

    URL-safe-no-pad base64 group id.

    masterKey: Uint8Array

    32-byte zkgroup master key.

    revision: number

    Monotonic revision. Bumps on every membership change.

    title: string
    description: string
    expirySeconds: number

    Disappearing-messages timer, in seconds. 0 means off.

    members: GroupMember[]
    pendingInvites: GroupPending[]
    pendingApprovals: GroupPending[]