Skip to content

Commit 4d6caab

Browse files
committed
proto: update to v1020322842
1 parent ecaf4ec commit 4d6caab

10 files changed

+2399
-936
lines changed

proto/waArmadilloTransportEvent/WAArmadilloTransportEvent.pb.go

Lines changed: 583 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.
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
syntax = "proto2";
2+
package WAArmadilloTransportEvent;
3+
option go_package = "go.mau.fi/whatsmeow/proto/waArmadilloTransportEvent";
4+
5+
message TransportEvent {
6+
message Event {
7+
message IcdcAlert {
8+
enum Type {
9+
NONE = 0;
10+
DETECTED = 1;
11+
CLEARED = 2;
12+
}
13+
14+
optional Type type = 1;
15+
}
16+
17+
message DeviceChange {
18+
enum Type {
19+
NONE = 0;
20+
ADDED = 1;
21+
REMOVED = 2;
22+
REPLACED = 3;
23+
}
24+
25+
optional Type type = 1;
26+
optional string deviceName = 2;
27+
}
28+
29+
oneof event {
30+
DeviceChange deviceChange = 1;
31+
IcdcAlert icdcAlert = 2;
32+
}
33+
}
34+
35+
message Placeholder {
36+
enum Type {
37+
DECRYPTION_FAILURE = 1;
38+
UNAVAILABLE_MESSAGE = 2;
39+
}
40+
41+
optional Type type = 1;
42+
}
43+
44+
oneof content {
45+
Placeholder placeholder = 1;
46+
Event event = 2;
47+
}
48+
}

proto/waE2E/WAWebProtobufsE2E.pb.go

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

proto/waE2E/WAWebProtobufsE2E.pb.raw

2.65 KB
Binary file not shown.

proto/waE2E/WAWebProtobufsE2E.proto

Lines changed: 85 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -698,6 +698,7 @@ message ProtocolMessage {
698698
REMINDER_MESSAGE = 23;
699699
BOT_MEMU_ONBOARDING_MESSAGE = 24;
700700
STATUS_MENTION_MESSAGE = 25;
701+
STOP_GENERATION_MESSAGE = 26;
701702
}
702703

703704
optional WACommon.MessageKey key = 1;
@@ -906,6 +907,7 @@ message ImageMessage {
906907
USER_IMAGE = 0;
907908
AI_GENERATED = 1;
908909
AI_MODIFIED = 2;
910+
RASTERIZED_TEXT_STATUS = 3;
909911
}
910912

911913
optional string URL = 1;
@@ -1138,6 +1140,9 @@ message AIRichResponseMessage {
11381140
AI_RICH_RESPONSE_TABLE = 4;
11391141
AI_RICH_RESPONSE_CODE = 5;
11401142
AI_RICH_RESPONSE_DYNAMIC = 6;
1143+
AI_RICH_RESPONSE_MAP = 7;
1144+
AI_RICH_RESPONSE_LATEX = 8;
1145+
AI_RICH_RESPONSE_INLINE_REELS = 9;
11411146
}
11421147

11431148
enum AIRichResponseMessageType {
@@ -1198,7 +1203,50 @@ message AIRichResponseMessage {
11981203
optional AIRichResponseCodeMetadata codeMetadata = 5;
11991204
optional AIRichResponseTableMetadata tableMetadata = 6;
12001205
optional AIRichResponseDynamicMetadata dynamicMetadata = 7;
1201-
optional AIRichResponseAbstractData abstractData = 8;
1206+
optional AIRichResponseLatexMetadata latexMetadata = 8;
1207+
optional AIRichResponseMapMetadata mapMetadata = 9;
1208+
optional AIRichResponseReelsMetadata reelsMetadata = 10;
1209+
}
1210+
1211+
message AIRichResponseReelsMetadata {
1212+
message AIRichResponseReelMetadata {
1213+
optional string title = 1;
1214+
optional string profileIconURL = 2;
1215+
optional string previewURL = 3;
1216+
optional string videoURL = 4;
1217+
}
1218+
1219+
repeated AIRichResponseReelMetadata reelsMetadata = 1;
1220+
}
1221+
1222+
message AIRichResponseMapMetadata {
1223+
message AIRichResponseMapAnnotation {
1224+
optional uint32 annotationNumber = 1;
1225+
optional double latitude = 2;
1226+
optional double longtitude = 3;
1227+
optional string title = 4;
1228+
optional string body = 5;
1229+
}
1230+
1231+
optional double centerLatitude = 1;
1232+
optional double centerLongtitude = 2;
1233+
optional double latitudeDelta = 3;
1234+
optional double longtitudeDelta = 4;
1235+
repeated AIRichResponseMapAnnotation anotations = 5;
1236+
optional bool showInfoList = 6;
1237+
}
1238+
1239+
message AIRichResponseLatexMetadata {
1240+
message AIRichResponseLatexExpression {
1241+
optional string latexExpression = 1;
1242+
optional string URL = 2;
1243+
optional double width = 3;
1244+
optional double height = 4;
1245+
optional double fontHeight = 5;
1246+
}
1247+
1248+
optional string text = 1;
1249+
repeated AIRichResponseLatexExpression expressions = 2;
12021250
}
12031251

12041252
message AIRichResponseAbstractData {
@@ -1227,6 +1275,7 @@ message AIRichResponseMessage {
12271275

12281276
optional AIRichResponseMessageType messageType = 1;
12291277
repeated AIRichResponseSubMessage submessages = 2;
1278+
optional AIRichResponseAbstractData abstractData = 3;
12301279
}
12311280

12321281
message BotMediaMetadata {
@@ -1285,6 +1334,38 @@ message BotModelMetadata {
12851334
optional PremiumModelStatus premiumModelStatus = 2;
12861335
}
12871336

1337+
message BotProgressIndicatorMetadata {
1338+
message BotPlanningStepMetadata {
1339+
enum PlanningStepStatus {
1340+
PLANNED = 1;
1341+
EXECUTING = 2;
1342+
FINISHED = 3;
1343+
}
1344+
1345+
message BotPlanningSearchSourcesMetadata {
1346+
enum BotPlanningSearchSourceProvider {
1347+
OTHER = 1;
1348+
GOOGLE = 2;
1349+
BING = 3;
1350+
}
1351+
1352+
optional string sourceTitle = 1;
1353+
optional BotPlanningSearchSourceProvider provider = 2;
1354+
optional string sourceURL = 3;
1355+
}
1356+
1357+
optional string statusTitle = 1;
1358+
optional string statusBody = 2;
1359+
repeated BotPlanningSearchSourcesMetadata sourcesMetadata = 3;
1360+
optional PlanningStepStatus status = 4;
1361+
optional bool isReasoning = 5;
1362+
optional bool isEnhancedSearch = 6;
1363+
}
1364+
1365+
optional string progressDescription = 1;
1366+
repeated BotPlanningStepMetadata stepsMetadata = 2;
1367+
}
1368+
12881369
message BotCapabilityMetadata {
12891370
enum BotCapabilityType {
12901371
PROGRESS_INDICATOR = 1;
@@ -1310,6 +1391,9 @@ message BotCapabilityMetadata {
13101391
RICH_RESPONSE_SUB_HEADING = 21;
13111392
RICH_RESPONSE_GRID_IMAGE = 22;
13121393
AI_STUDIO_UGC_MEMORY = 23;
1394+
RICH_RESPONSE_LATEX = 24;
1395+
RICH_RESPONSE_MAPS = 25;
1396+
RICH_RESPONSE_INLINE_REELS = 26;
13131397
}
13141398

13151399
repeated BotCapabilityType capabilities = 1;
@@ -2057,10 +2141,6 @@ message BotMemuMetadata {
20572141
repeated BotMediaMetadata faceImages = 1;
20582142
}
20592143

2060-
message BotProgressIndicatorMetadata {
2061-
optional string progressDescription = 1;
2062-
}
2063-
20642144
message BotMetadata {
20652145
optional BotAvatarMetadata avatarMetadata = 1;
20662146
optional string personaID = 2;

proto/waWeb/WAWebProtobufsWeb.pb.go

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

proto/waWeb/WAWebProtobufsWeb.pb.raw

120 Bytes
Binary file not shown.

proto/waWeb/WAWebProtobufsWeb.proto

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,9 @@ message WebMessageInfo {
227227
STATUS_MENTION = 210;
228228
USER_CONTROLS_SYSTEM_MESSAGE = 211;
229229
SUPPORT_SYSTEM_MESSAGE = 212;
230+
CHANGE_LID = 213;
231+
BIZ_CUSTOMER_3PD_DATA_SHARING_OPT_IN_MESSAGE = 214;
232+
BIZ_CUSTOMER_3PD_DATA_SHARING_OPT_OUT_MESSAGE = 215;
230233
}
231234

232235
enum Status {

store/clientpayload.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func (vc WAVersionContainer) ProtoAppVersion() *waWa6.ClientPayload_UserAgent_Ap
7575
}
7676

7777
// waVersion is the WhatsApp web client version
78-
var waVersion = WAVersionContainer{2, 3000, 1020150087}
78+
var waVersion = WAVersionContainer{2, 3000, 1020322842}
7979

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

0 commit comments

Comments
 (0)