@open-wa/wa-automate-types-only 4.74.0 → 4.74.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/model/chat.d.ts +4 -0
- package/package.json +1 -1
package/dist/api/model/chat.d.ts
CHANGED
@@ -108,6 +108,10 @@ export interface GroupChat extends BaseChat {
|
|
108
108
|
* Whether the chat is a group chat
|
109
109
|
*/
|
110
110
|
isGroup: true;
|
111
|
+
/**
|
112
|
+
* The type of the group
|
113
|
+
*/
|
114
|
+
groupType: 'DEFAULT' | 'COMMUNITY' | 'LINKED_ANNOUNCEMENT_GROUP' | 'LINKED_GENERAL_GROUP' | 'LINKED_SUBGROUP';
|
111
115
|
}
|
112
116
|
export type Chat = SingleChat | GroupChat;
|
113
117
|
export interface LiveLocationChangedEvent {
|