diff --git a/binary/proto/def.pb.go b/binary/proto/def.pb.go index 039c132c..ccdd9f74 100644 --- a/binary/proto/def.pb.go +++ b/binary/proto/def.pb.go @@ -21744,6 +21744,7 @@ type DeviceProps_HistorySyncConfig struct { RecentSyncDaysLimit *uint32 `protobuf:"varint,5,opt,name=recentSyncDaysLimit" json:"recentSyncDaysLimit,omitempty"` SupportCallLogHistory *bool `protobuf:"varint,6,opt,name=supportCallLogHistory" json:"supportCallLogHistory,omitempty"` SupportBotUserAgentChatHistory *bool `protobuf:"varint,7,opt,name=supportBotUserAgentChatHistory" json:"supportBotUserAgentChatHistory,omitempty"` + SupportCagReactionsAndPolls *bool `protobuf:"varint,8,opt,name=supportCagReactionsAndPolls" json:"supportCagReactionsAndPolls,omitempty"` } func (x *DeviceProps_HistorySyncConfig) Reset() { @@ -21827,6 +21828,13 @@ func (x *DeviceProps_HistorySyncConfig) GetSupportBotUserAgentChatHistory() bool return false } +func (x *DeviceProps_HistorySyncConfig) GetSupportCagReactionsAndPolls() bool { + if x != nil && x.SupportCagReactionsAndPolls != nil { + return *x.SupportCagReactionsAndPolls + } + return false +} + type DeviceProps_AppVersion struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache diff --git a/binary/proto/def.pb.raw b/binary/proto/def.pb.raw index 8a07ba35..63168a43 100644 Binary files a/binary/proto/def.pb.raw and b/binary/proto/def.pb.raw differ diff --git a/binary/proto/def.proto b/binary/proto/def.proto index dded5839..deec1586 100644 --- a/binary/proto/def.proto +++ b/binary/proto/def.proto @@ -73,6 +73,7 @@ message DeviceProps { optional uint32 recentSyncDaysLimit = 5; optional bool supportCallLogHistory = 6; optional bool supportBotUserAgentChatHistory = 7; + optional bool supportCagReactionsAndPolls = 8; } message AppVersion { diff --git a/store/clientpayload.go b/store/clientpayload.go index bb46d849..a6da3b98 100644 --- a/store/clientpayload.go +++ b/store/clientpayload.go @@ -74,7 +74,7 @@ func (vc WAVersionContainer) ProtoAppVersion() *waProto.ClientPayload_UserAgent_ } // waVersion is the WhatsApp web client version -var waVersion = WAVersionContainer{2, 2343, 55} +var waVersion = WAVersionContainer{2, 2344, 52} // waVersionHash is the md5 hash of a dot-separated waVersion var waVersionHash [16]byte