Feat: Modified number action in group-participants.update (#858)

* Update GroupMetadata.ts

* Update messages-recv.ts

* Update process-message.ts
This commit is contained in:
Bob
2024-07-03 04:34:06 -03:00
committed by GitHub
parent c576e9215c
commit baf8b3df00
3 changed files with 10 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ import { Contact } from './Contact'
export type GroupParticipant = (Contact & { isAdmin?: boolean, isSuperAdmin?: boolean, admin?: 'admin' | 'superadmin' | null })
export type ParticipantAction = 'add' | 'remove' | 'promote' | 'demote'
export type ParticipantAction = 'add' | 'remove' | 'promote' | 'demote' | 'modify'
export type RequestJoinAction = 'created' | 'revoked' | 'rejected'