Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d910a51

Browse files
committedSep 5, 2024·
proto: update to v1016249039
1 parent d223d48 commit d910a51

13 files changed

+127
-61
lines changed
 

‎proto/waCompanionReg/WAWebProtobufsCompanionReg.pb.go

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

‎proto/waCompanionReg/WAWebProtobufsCompanionReg.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ message DeviceProps {
4343
optional bool supportRecentSyncChunkMessageCountTuning = 10;
4444
optional bool supportHostedGroupMsg = 11;
4545
optional bool supportFbidBotChatHistory = 12;
46+
optional bool supportAddOnHistorySyncMigration = 13;
4647
}
4748

4849
message AppVersion {

‎proto/waE2E/WAWebProtobufsE2E.pb.go

Lines changed: 73 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎proto/waE2E/WAWebProtobufsE2E.pb.raw

280 Bytes
Binary file not shown.

‎proto/waE2E/WAWebProtobufsE2E.proto

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ enum PeerDataOperationRequestType {
1717
FULL_HISTORY_SYNC_ON_DEMAND = 6;
1818
}
1919

20-
enum SessionSource {
20+
enum BotSessionSource {
2121
NULL_STATE = 1;
2222
TYPEAHEAD = 2;
2323
USER_INPUT = 3;
@@ -491,6 +491,9 @@ message PeerDataOperationRequestResponseMessage {
491491
REQUEST_TIME_EXPIRED = 1;
492492
DECLINED_SHARING_HISTORY = 2;
493493
GENERIC_ERROR = 3;
494+
ERROR_REQUEST_ON_NON_SMB_PRIMARY = 4;
495+
ERROR_HOSTED_DEVICE_NOT_CONNECTED = 5;
496+
ERROR_HOSTED_DEVICE_LOGIN_TIME_NOT_SET = 6;
494497
}
495498

496499
message WaffleNonceFetchResponse {
@@ -1267,6 +1270,8 @@ message StickerPackMessage {
12671270

12681271
message AlbumMessage {
12691272
optional string caption = 1;
1273+
optional uint32 expectedImageCount = 2;
1274+
optional uint32 expectedVideoCount = 3;
12701275
optional ContextInfo contextInfo = 17;
12711276
}
12721277

@@ -1718,7 +1723,7 @@ message BotSuggestedPromptMetadata {
17181723

17191724
message BotSessionMetadata {
17201725
optional string sessionID = 1;
1721-
optional SessionSource sessionSource = 2;
1726+
optional BotSessionSource sessionSource = 2;
17221727
}
17231728

17241729
message BotMemuMetadata {
@@ -1731,11 +1736,12 @@ message BotMetadata {
17311736
optional BotPluginMetadata pluginMetadata = 3;
17321737
optional BotSuggestedPromptMetadata suggestedPromptMetadata = 4;
17331738
optional string invokerJID = 5;
1734-
optional BotSessionMetadata searchMetadata = 6;
1739+
optional BotSessionMetadata sessionMetadata = 6;
17351740
optional BotMemuMetadata memuMetadata = 7;
17361741
optional string timezone = 8;
17371742
optional BotReminderMetadata reminderMetadata = 9;
17381743
optional BotModelMetadata modelMetadata = 10;
1744+
optional string messageDisclaimerText = 11;
17391745
}
17401746

17411747
message DeviceListMetadata {

‎proto/waHistorySync/WAWebProtobufsHistorySync.pb.go

Lines changed: 23 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

‎proto/waHistorySync/WAWebProtobufsHistorySync.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ message HistorySync {
5050
optional BotAIWaitListState aiWaitListState = 14;
5151
repeated PhoneNumberToLIDMapping phoneNumberToLidMappings = 15;
5252
optional string companionMetaNonce = 16;
53+
optional bytes shareableChatIdentifierEncryptionKey = 17;
5354
}
5455

5556
message Conversation {

‎proto/waWa6/WAWebProtobufsWa6.pb.go

Lines changed: 10 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎proto/waWa6/WAWebProtobufsWa6.pb.raw

48 Bytes
Binary file not shown.

‎proto/waWa6/WAWebProtobufsWa6.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ message ClientPayload {
170170
message InteropData {
171171
optional uint64 accountID = 1;
172172
optional bytes token = 2;
173+
optional bool enableReadReceipts = 3;
173174
}
174175

175176
message DevicePairingRegistrationData {

‎store/clientpayload.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ func (vc WAVersionContainer) ProtoAppVersion() *waProto.ClientPayload_UserAgent_
7474
}
7575

7676
// waVersion is the WhatsApp web client version
77-
var waVersion = WAVersionContainer{2, 3000, 1015853550}
77+
var waVersion = WAVersionContainer{2, 3000, 1016249039}
7878

7979
// waVersionHash is the md5 hash of a dot-separated waVersion
8080
var waVersionHash [16]byte

0 commit comments

Comments
 (0)
Please sign in to comment.