@@ -870,6 +870,18 @@ message ExtendedTextMessage {
870
870
optional MMSThumbnailMetadata faviconMMSMetadata = 33 ;
871
871
}
872
872
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
+
873
885
message InvoiceMessage {
874
886
enum AttachmentType {
875
887
IMAGE = 0 ;
@@ -1099,6 +1111,14 @@ message BotPluginMetadata {
1099
1111
optional string faviconCDNURL = 13 ;
1100
1112
}
1101
1113
1114
+ message BotLinkedAccount {
1115
+ enum BotLinkedAccountType {
1116
+ BOT_LINKED_ACCOUNT_TYPE_1P = 0 ;
1117
+ }
1118
+
1119
+ optional BotLinkedAccountType type = 1 ;
1120
+ }
1121
+
1102
1122
message AIRichResponseMessage {
1103
1123
enum AIRichResponseSubMessageType {
1104
1124
AI_RICH_RESPONSE_UNKNOWN = 0 ;
@@ -1113,7 +1133,6 @@ message AIRichResponseMessage {
1113
1133
enum AIRichResponseMessageType {
1114
1134
AI_RICH_RESPONSE_TYPE_UNKNOWN = 0 ;
1115
1135
AI_RICH_RESPONSE_TYPE_STANDARD = 1 ;
1116
- AI_RICH_RESPONSE_TYPE_ARTIFACTS = 2 ;
1117
1136
}
1118
1137
1119
1138
message AIRichResponseDynamicMetadata {
@@ -1275,6 +1294,7 @@ message BotCapabilityMetadata {
1275
1294
WA_IG_1P_PLUGIN_RANKING_UPDATE_10 = 20 ;
1276
1295
RICH_RESPONSE_SUB_HEADING = 21 ;
1277
1296
RICH_RESPONSE_GRID_IMAGE = 22 ;
1297
+ AI_STUDIO_UGC_MEMORY = 23 ;
1278
1298
}
1279
1299
1280
1300
repeated BotCapabilityType capabilities = 1 ;
@@ -1303,6 +1323,7 @@ message MessageAssociation {
1303
1323
STATUS_TAPPABLE_MESSAGE = 6 ;
1304
1324
MEDIA_POLL = 7 ;
1305
1325
STATUS_ADD_YOURS = 8 ;
1326
+ STATUS_NOTIFICATION = 9 ;
1306
1327
}
1307
1328
1308
1329
optional AssociationType associationType = 1 ;
@@ -1512,6 +1533,7 @@ message Message {
1512
1533
optional FutureProofMessage statusAddYours = 95 ;
1513
1534
optional FutureProofMessage groupStatusMessage = 96 ;
1514
1535
optional AIRichResponseMessage richResponseMessage = 97 ;
1536
+ optional StatusNotificationMessage statusNotificationMessage = 98 ;
1515
1537
}
1516
1538
1517
1539
message AlbumMessage {
@@ -1979,6 +2001,10 @@ message BotPromptSuggestion {
1979
2001
optional string promptID = 2 ;
1980
2002
}
1981
2003
2004
+ message BotLinkedAccountsMetadata {
2005
+ repeated BotLinkedAccount accounts = 1 ;
2006
+ }
2007
+
1982
2008
message BotMemoryMetadata {
1983
2009
repeated BotMemoryFact addedFacts = 1 ;
1984
2010
repeated BotMemoryFact removedFacts = 2 ;
@@ -2035,6 +2061,7 @@ message BotMetadata {
2035
2061
optional BotMemoryMetadata memoryMetadata = 15 ;
2036
2062
optional BotRenderingMetadata renderingMetadata = 16 ;
2037
2063
optional BotMetricsMetadata botMetricsMetadata = 17 ;
2064
+ optional BotLinkedAccountsMetadata botLinkedAccountsMetadata = 18 ;
2038
2065
}
2039
2066
2040
2067
message DeviceListMetadata {
0 commit comments