@@ -32,6 +32,46 @@ enum KeepType {
32
32
UNDO_KEEP_FOR_ALL = 2 ;
33
33
}
34
34
35
+ message StickerPackMessage {
36
+ enum StickerPackOrigin {
37
+ FIRST_PARTY = 0 ;
38
+ THIRD_PARTY = 1 ;
39
+ USER_CREATED = 2 ;
40
+ }
41
+
42
+ message Sticker {
43
+ optional string fileName = 1 ;
44
+ optional bool isAnimated = 2 ;
45
+ repeated string emojis = 3 ;
46
+ optional string accessibilityLabel = 4 ;
47
+ optional bool isLottie = 5 ;
48
+ optional string mimetype = 6 ;
49
+ }
50
+
51
+ optional string stickerPackID = 1 ;
52
+ optional string name = 2 ;
53
+ optional string publisher = 3 ;
54
+ repeated Sticker stickers = 4 ;
55
+ optional uint64 fileLength = 5 ;
56
+ optional bytes fileSHA256 = 6 ;
57
+ optional bytes fileEncSHA256 = 7 ;
58
+ optional bytes mediaKey = 8 ;
59
+ optional string directPath = 9 ;
60
+ optional string caption = 10 ;
61
+ optional ContextInfo contextInfo = 11 ;
62
+ optional string packDescription = 12 ;
63
+ optional int64 mediaKeyTimestamp = 13 ;
64
+ optional string trayIconFileName = 14 ;
65
+ optional string thumbnailDirectPath = 15 ;
66
+ optional bytes thumbnailSHA256 = 16 ;
67
+ optional bytes thumbnailEncSHA256 = 17 ;
68
+ optional uint32 thumbnailHeight = 18 ;
69
+ optional uint32 thumbnailWidth = 19 ;
70
+ optional string imageDataHash = 20 ;
71
+ optional uint64 stickerPackSize = 21 ;
72
+ optional StickerPackOrigin stickerPackOrigin = 22 ;
73
+ }
74
+
35
75
message PlaceholderMessage {
36
76
enum PlaceholderType {
37
77
MASK_LINKED_DEVICES = 0 ;
@@ -732,6 +772,7 @@ message ExtendedTextMessage {
732
772
PLACEHOLDER = 4 ;
733
773
IMAGE = 5 ;
734
774
PAYMENT_LINKS = 6 ;
775
+ PROFILE = 7 ;
735
776
}
736
777
737
778
enum FontType {
@@ -872,6 +913,7 @@ message ContextInfo {
872
913
optional string greetingMessageBody = 19 ;
873
914
optional string ctaPayload = 20 ;
874
915
optional bool disableNudge = 21 ;
916
+ optional string originalImageURL = 22 ;
875
917
}
876
918
877
919
message AdReplyInfo {
@@ -1053,13 +1095,27 @@ message BotCapabilityMetadata {
1053
1095
repeated BotCapabilityType capabilities = 1 ;
1054
1096
}
1055
1097
1098
+ message BotImagineMetadata {
1099
+ enum ImagineType {
1100
+ UNKNOWN = 0 ;
1101
+ IMAGINE = 1 ;
1102
+ MEMU = 2 ;
1103
+ FLASH = 3 ;
1104
+ EDIT = 4 ;
1105
+ }
1106
+
1107
+ optional ImagineType imagineType = 1 ;
1108
+ }
1109
+
1056
1110
message MessageAssociation {
1057
1111
enum AssociationType {
1058
1112
UNKNOWN = 0 ;
1059
1113
MEDIA_ALBUM = 1 ;
1060
1114
BOT_PLUGIN = 2 ;
1061
1115
EVENT_COVER_IMAGE = 3 ;
1062
1116
STATUS_POLL = 4 ;
1117
+ HD_VIDEO_DUAL_UPLOAD = 5 ;
1118
+ STATUS_TAPPABLE_MESSAGE = 6 ;
1063
1119
}
1064
1120
1065
1121
optional AssociationType associationType = 1 ;
@@ -1262,41 +1318,7 @@ message Message {
1262
1318
optional PollResultSnapshotMessage pollResultSnapshotMessage = 88 ;
1263
1319
}
1264
1320
1265
- message StickerPackMessage {
1266
- message Sticker {
1267
- optional string fileName = 1 ;
1268
- optional bool isAnimated = 2 ;
1269
- repeated string emojis = 3 ;
1270
- optional string accessibilityLabel = 4 ;
1271
- optional bool isLottie = 5 ;
1272
- optional string mimetype = 6 ;
1273
- }
1274
-
1275
- optional string stickerPackID = 1 ;
1276
- optional string name = 2 ;
1277
- optional string publisher = 3 ;
1278
- repeated Sticker stickers = 4 ;
1279
- optional uint64 fileLength = 5 ;
1280
- optional bytes fileSHA256 = 6 ;
1281
- optional bytes fileEncSHA256 = 7 ;
1282
- optional bytes mediaKey = 8 ;
1283
- optional string directPath = 9 ;
1284
- optional string caption = 10 ;
1285
- optional ContextInfo contextInfo = 11 ;
1286
- optional string packDescription = 12 ;
1287
- optional int64 mediaKeyTimestamp = 13 ;
1288
- optional string trayIconFileName = 14 ;
1289
- optional string thumbnailDirectPath = 15 ;
1290
- optional bytes thumbnailSHA256 = 16 ;
1291
- optional bytes thumbnailEncSHA256 = 17 ;
1292
- optional uint32 thumbnailHeight = 18 ;
1293
- optional uint32 thumbnailWidth = 19 ;
1294
- optional string imageDataHash = 20 ;
1295
- optional uint64 stickerPackSize = 21 ;
1296
- }
1297
-
1298
1321
message AlbumMessage {
1299
- optional string caption = 1 ;
1300
1322
optional uint32 expectedImageCount = 2 ;
1301
1323
optional uint32 expectedVideoCount = 3 ;
1302
1324
optional ContextInfo contextInfo = 17 ;
@@ -1597,6 +1619,7 @@ message PeerDataOperationRequestMessage {
1597
1619
optional bool oldestMsgFromMe = 3 ;
1598
1620
optional int32 onDemandMsgCount = 4 ;
1599
1621
optional int64 oldestMsgTimestampMS = 5 ;
1622
+ optional string accountLid = 6 ;
1600
1623
}
1601
1624
1602
1625
message RequestUrlPreview {
@@ -1777,6 +1800,7 @@ message BotMetadata {
1777
1800
optional string messageDisclaimerText = 11 ;
1778
1801
optional BotProgressIndicatorMetadata progressIndicatorMetadata = 12 ;
1779
1802
optional BotCapabilityMetadata capabilityMetadata = 13 ;
1803
+ optional BotImagineMetadata imagineMetadata = 14 ;
1780
1804
}
1781
1805
1782
1806
message DeviceListMetadata {
@@ -1816,11 +1840,17 @@ message EmbeddedContent {
1816
1840
}
1817
1841
}
1818
1842
1843
+ message TapLinkAction {
1844
+ optional string title = 1 ;
1845
+ optional string tapURL = 2 ;
1846
+ }
1847
+
1819
1848
message InteractiveAnnotation {
1820
1849
oneof action {
1821
1850
Location location = 2 ;
1822
1851
ContextInfo.ForwardedNewsletterMessageInfo newsletter = 3 ;
1823
1852
bool embeddedAction = 6 ;
1853
+ TapLinkAction tapAction = 7 ;
1824
1854
}
1825
1855
1826
1856
repeated Point polygonVertices = 1 ;
0 commit comments