@@ -2013,7 +2013,10 @@ export namespace CometChat {
20132013 shouldHideBlockedUsers : boolean ;
20142014 role : string ;
20152015 roles : Array < String > ;
2016+ tags : Array < String > ;
20162017 showFriendsOnly : boolean ;
2018+ showTags : boolean ;
2019+ UIDs : Array < String > ;
20172020 setLimit ( limit : number ) : this;
20182021 setStatus ( status : string ) : this;
20192022 setSearchKeyword ( searchKeyword : string ) : this;
@@ -2023,6 +2026,7 @@ export namespace CometChat {
20232026 friendsOnly ( friendsOnly : boolean ) : this;
20242027 setTags ( tags : Array < String > ) : this;
20252028 withTags ( withTags : boolean ) : this;
2029+ setUIDs ( uids : Array < String > ) : this;
20262030 build ( ) : UsersRequest ;
20272031 }
20282032
@@ -2122,6 +2126,7 @@ export namespace CometChat {
21222126 type ?: string ;
21232127 types ?: Array < String > ;
21242128 hideThreadedMessages ?: boolean ;
2129+ HideDeletedMessages ?: boolean ;
21252130 setLimit ( limit : number ) : this;
21262131 setGUID ( guid : string ) : this;
21272132 setUID ( uid : string ) : this;
@@ -2138,6 +2143,7 @@ export namespace CometChat {
21382143 setType ( type : string ) : this;
21392144 setTypes ( types : Array < String > ) : this;
21402145 hideReplies ( hideReplies : boolean ) : this;
2146+ hideDeletedMessages ( hideDeletedMessages : boolean ) : this;
21412147 /**
21422148 *Built the DefaultMessagesRequest
21432149 *
0 commit comments