Skip to content

Commit a75587a

Browse files
committed
proto: update to v1019813674
1 parent c3c6a06 commit a75587a

7 files changed

+1519
-1192
lines changed

proto/waE2E/WAWebProtobufsE2E.pb.go

+1,471-1,180
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proto/waE2E/WAWebProtobufsE2E.pb.raw

818 Bytes
Binary file not shown.

proto/waE2E/WAWebProtobufsE2E.proto

+28-1
Original file line numberDiff line numberDiff line change
@@ -870,6 +870,18 @@ message ExtendedTextMessage {
870870
optional MMSThumbnailMetadata faviconMMSMetadata = 33;
871871
}
872872

873+
message StatusNotificationMessage {
874+
enum StatusNotificationType {
875+
UNKNOWN = 0;
876+
STATUS_ADD_YOURS = 1;
877+
STATUS_RESHARE = 2;
878+
}
879+
880+
optional WACommon.MessageKey responseMessageKey = 1;
881+
optional WACommon.MessageKey originalMessageKey = 2;
882+
optional StatusNotificationType type = 3;
883+
}
884+
873885
message InvoiceMessage {
874886
enum AttachmentType {
875887
IMAGE = 0;
@@ -1099,6 +1111,14 @@ message BotPluginMetadata {
10991111
optional string faviconCDNURL = 13;
11001112
}
11011113

1114+
message BotLinkedAccount {
1115+
enum BotLinkedAccountType {
1116+
BOT_LINKED_ACCOUNT_TYPE_1P = 0;
1117+
}
1118+
1119+
optional BotLinkedAccountType type = 1;
1120+
}
1121+
11021122
message AIRichResponseMessage {
11031123
enum AIRichResponseSubMessageType {
11041124
AI_RICH_RESPONSE_UNKNOWN = 0;
@@ -1113,7 +1133,6 @@ message AIRichResponseMessage {
11131133
enum AIRichResponseMessageType {
11141134
AI_RICH_RESPONSE_TYPE_UNKNOWN = 0;
11151135
AI_RICH_RESPONSE_TYPE_STANDARD = 1;
1116-
AI_RICH_RESPONSE_TYPE_ARTIFACTS = 2;
11171136
}
11181137

11191138
message AIRichResponseDynamicMetadata {
@@ -1275,6 +1294,7 @@ message BotCapabilityMetadata {
12751294
WA_IG_1P_PLUGIN_RANKING_UPDATE_10 = 20;
12761295
RICH_RESPONSE_SUB_HEADING = 21;
12771296
RICH_RESPONSE_GRID_IMAGE = 22;
1297+
AI_STUDIO_UGC_MEMORY = 23;
12781298
}
12791299

12801300
repeated BotCapabilityType capabilities = 1;
@@ -1303,6 +1323,7 @@ message MessageAssociation {
13031323
STATUS_TAPPABLE_MESSAGE = 6;
13041324
MEDIA_POLL = 7;
13051325
STATUS_ADD_YOURS = 8;
1326+
STATUS_NOTIFICATION = 9;
13061327
}
13071328

13081329
optional AssociationType associationType = 1;
@@ -1512,6 +1533,7 @@ message Message {
15121533
optional FutureProofMessage statusAddYours = 95;
15131534
optional FutureProofMessage groupStatusMessage = 96;
15141535
optional AIRichResponseMessage richResponseMessage = 97;
1536+
optional StatusNotificationMessage statusNotificationMessage = 98;
15151537
}
15161538

15171539
message AlbumMessage {
@@ -1979,6 +2001,10 @@ message BotPromptSuggestion {
19792001
optional string promptID = 2;
19802002
}
19812003

2004+
message BotLinkedAccountsMetadata {
2005+
repeated BotLinkedAccount accounts = 1;
2006+
}
2007+
19822008
message BotMemoryMetadata {
19832009
repeated BotMemoryFact addedFacts = 1;
19842010
repeated BotMemoryFact removedFacts = 2;
@@ -2035,6 +2061,7 @@ message BotMetadata {
20352061
optional BotMemoryMetadata memoryMetadata = 15;
20362062
optional BotRenderingMetadata renderingMetadata = 16;
20372063
optional BotMetricsMetadata botMetricsMetadata = 17;
2064+
optional BotLinkedAccountsMetadata botLinkedAccountsMetadata = 18;
20382065
}
20392066

20402067
message DeviceListMetadata {

proto/waMediaTransport/WAMediaTransport.pb.go

+18-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
48 Bytes
Binary file not shown.

proto/waMediaTransport/WAMediaTransport.proto

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ message VideoTransport {
8383
optional uint32 width = 5;
8484
optional bytes sidecar = 6;
8585
optional Attribution gifAttribution = 7;
86+
optional string accessibilityLabel = 8;
8687
}
8788

8889
message Integral {

store/clientpayload.go

+1-1
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, 1019716234}
77+
var waVersion = WAVersionContainer{2, 3000, 1019813674}
7878

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

0 commit comments

Comments
 (0)