iris-chat 0.1.8

Iris Chat command line client and shared encrypted chat core
Documentation
use crate::state::{OutgoingAttachment, Screen};

#[derive(uniffi::Enum, Clone, Debug)]
pub enum AppAction {
    CreateAccount {
        name: String,
    },
    UpdateProfileMetadata {
        name: String,
        picture_url: Option<String>,
    },
    RestoreSession {
        owner_nsec: String,
    },
    RestoreAccountBundle {
        owner_nsec: Option<String>,
        owner_pubkey_hex: String,
        device_nsec: String,
    },
    StartLinkedDevice {
        owner_input: String,
    },
    AppForegrounded,
    Logout,
    CreateChat {
        peer_input: String,
    },
    CreateGroup {
        name: String,
        member_inputs: Vec<String>,
    },
    CreateGroupWithPicture {
        name: String,
        member_inputs: Vec<String>,
        picture_file_path: String,
        picture_filename: String,
    },
    CreatePublicInvite,
    AcceptInvite {
        invite_input: String,
    },
    OpenChat {
        chat_id: String,
    },
    SendMessage {
        chat_id: String,
        text: String,
    },
    SendDisappearingMessage {
        chat_id: String,
        text: String,
        expires_at_secs: u64,
    },
    SetChatMessageTtl {
        chat_id: String,
        ttl_seconds: Option<u64>,
    },
    SetChatMuted {
        chat_id: String,
        muted: bool,
    },
    SendAttachment {
        chat_id: String,
        file_path: String,
        filename: String,
        caption: String,
    },
    SendAttachments {
        chat_id: String,
        attachments: Vec<OutgoingAttachment>,
        caption: String,
    },
    ToggleReaction {
        chat_id: String,
        message_id: String,
        emoji: String,
    },
    SendTyping {
        chat_id: String,
    },
    StopTyping {
        chat_id: String,
    },
    SetTypingIndicatorsEnabled {
        enabled: bool,
    },
    SetReadReceiptsEnabled {
        enabled: bool,
    },
    SetDesktopNotificationsEnabled {
        enabled: bool,
    },
    SetInviteAcceptanceNotificationsEnabled {
        enabled: bool,
    },
    SetStartupAtLoginEnabled {
        enabled: bool,
    },
    SetNearbyBluetoothEnabled {
        enabled: bool,
    },
    SetNearbyLanEnabled {
        enabled: bool,
    },
    AddNostrRelay {
        relay_url: String,
    },
    UpdateNostrRelay {
        old_relay_url: String,
        new_relay_url: String,
    },
    RemoveNostrRelay {
        relay_url: String,
    },
    SetNostrRelays {
        relay_urls: Vec<String>,
    },
    ResetNostrRelays,
    SetImageProxyEnabled {
        enabled: bool,
    },
    SetImageProxyUrl {
        url: String,
    },
    SetImageProxyKeyHex {
        key_hex: String,
    },
    SetImageProxySaltHex {
        salt_hex: String,
    },
    ResetImageProxySettings,
    SetMobilePushServerUrl {
        url: String,
    },
    ResetMobilePushServerUrl,
    IngestMobilePushPayload {
        payload_json: String,
    },
    MarkMessagesSeen {
        chat_id: String,
        message_ids: Vec<String>,
    },
    SendReceipt {
        chat_id: String,
        receipt_type: String,
        message_ids: Vec<String>,
    },
    DeleteLocalMessage {
        chat_id: String,
        message_id: String,
    },
    DeleteChat {
        chat_id: String,
    },
    UpdateGroupName {
        group_id: String,
        name: String,
    },
    UpdateGroupPicture {
        group_id: String,
        file_path: String,
        filename: String,
    },
    AddGroupMembers {
        group_id: String,
        member_inputs: Vec<String>,
    },
    SetGroupAdmin {
        group_id: String,
        owner_pubkey_hex: String,
        is_admin: bool,
    },
    RemoveGroupMember {
        group_id: String,
        owner_pubkey_hex: String,
    },
    UploadProfilePicture {
        file_path: String,
    },
    AddAuthorizedDevice {
        device_input: String,
    },
    RemoveAuthorizedDevice {
        device_pubkey_hex: String,
    },
    AcknowledgeRevokedDevice,
    PushScreen {
        screen: Screen,
    },
    UpdateScreenStack {
        stack: Vec<Screen>,
    },
}