Marmot-TS
    Preparing search index...

    Type Alias GroupSessionSendIntent

    GroupSessionSendIntent:
        | { kind: "applicationMessage"; payload: Uint8Array }
        | { kind: "proposal"; proposal: Proposal }
        | { kind: "selfUpdate" }
        | {
            actorPubkey: string;
            extraProposals?: (
                | Proposal
                | ProposalAction<Proposal>
                | (Proposal | ProposalAction<Proposal>)[]
            )[];
            kind: "commit";
            proposalRefs?: string[];
            welcomeRecipients?: WelcomeRecipient[];
        }

    Local protocol intent accepted by GroupSession.