Update GroupMetadata.ts

This commit is contained in:
piLovr
2023-08-31 09:58:24 +02:00
committed by GitHub
parent 5d697b9890
commit fd37f8b4f3

View File

@@ -20,6 +20,12 @@ export interface GroupMetadata {
restrict?: boolean
/** is set when the group only allows admins to write messages */
announce?: boolean
/** is set when the group also allows members to add participants */
memberAddMode?: boolean
/** is this a community */
isCommunity?: boolean
/** is this the announce of a community */
isCommunityAnnounce?: boolean
/** number of group participants */
size?: number
// Baileys modified array
@@ -40,4 +46,4 @@ export interface WAGroupCreateResponse {
export interface GroupModificationResponse {
status: number
participants?: { [key: string]: {} }
}
}