ruwa 1.0.0

Rust client for WhatsApp Web
Documentation
mod blocking;
pub(crate) mod chat_actions;
mod chatstate;
mod contacts;
mod groups;
mod mex;
mod presence;
mod profile;
pub(crate) mod status;
mod tctoken;

pub use blocking::{Blocking, BlocklistEntry};

pub use chat_actions::ChatActions;

pub use chatstate::{ChatStateType, Chatstate};

pub use contacts::{ContactInfo, Contacts, IsOnWhatsAppResult, ProfilePicture, UserInfo};

pub use groups::{
    CreateGroupResult, GroupCreateOptions, GroupDescription, GroupMetadata, GroupParticipant,
    GroupParticipantOptions, GroupSubject, Groups, MemberAddMode, MemberLinkMode,
    MembershipApprovalMode, ParticipantChangeResponse,
};

pub use mex::{Mex, MexError, MexErrorExtensions, MexGraphQLError, MexRequest, MexResponse};

pub use presence::{Presence, PresenceError, PresenceStatus};

pub use profile::{Profile, SetProfilePictureResponse};

pub use status::{Status, StatusPrivacySetting, StatusSendOptions};

pub use tctoken::TcToken;