Skip to content

Commit b405a02

Browse files
committed
proto: update to v1017107073
1 parent 5c5cb63 commit b405a02

13 files changed

+2300
-1899
lines changed

proto/waE2E/WAWebProtobufsE2E.pb.go

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

proto/waE2E/WAWebProtobufsE2E.pb.raw

685 Bytes
Binary file not shown.

proto/waE2E/WAWebProtobufsE2E.proto

+64-34
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,46 @@ enum KeepType {
3232
UNDO_KEEP_FOR_ALL = 2;
3333
}
3434

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+
3575
message PlaceholderMessage {
3676
enum PlaceholderType {
3777
MASK_LINKED_DEVICES = 0;
@@ -732,6 +772,7 @@ message ExtendedTextMessage {
732772
PLACEHOLDER = 4;
733773
IMAGE = 5;
734774
PAYMENT_LINKS = 6;
775+
PROFILE = 7;
735776
}
736777

737778
enum FontType {
@@ -872,6 +913,7 @@ message ContextInfo {
872913
optional string greetingMessageBody = 19;
873914
optional string ctaPayload = 20;
874915
optional bool disableNudge = 21;
916+
optional string originalImageURL = 22;
875917
}
876918

877919
message AdReplyInfo {
@@ -1053,13 +1095,27 @@ message BotCapabilityMetadata {
10531095
repeated BotCapabilityType capabilities = 1;
10541096
}
10551097

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+
10561110
message MessageAssociation {
10571111
enum AssociationType {
10581112
UNKNOWN = 0;
10591113
MEDIA_ALBUM = 1;
10601114
BOT_PLUGIN = 2;
10611115
EVENT_COVER_IMAGE = 3;
10621116
STATUS_POLL = 4;
1117+
HD_VIDEO_DUAL_UPLOAD = 5;
1118+
STATUS_TAPPABLE_MESSAGE = 6;
10631119
}
10641120

10651121
optional AssociationType associationType = 1;
@@ -1262,41 +1318,7 @@ message Message {
12621318
optional PollResultSnapshotMessage pollResultSnapshotMessage = 88;
12631319
}
12641320

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-
12981321
message AlbumMessage {
1299-
optional string caption = 1;
13001322
optional uint32 expectedImageCount = 2;
13011323
optional uint32 expectedVideoCount = 3;
13021324
optional ContextInfo contextInfo = 17;
@@ -1597,6 +1619,7 @@ message PeerDataOperationRequestMessage {
15971619
optional bool oldestMsgFromMe = 3;
15981620
optional int32 onDemandMsgCount = 4;
15991621
optional int64 oldestMsgTimestampMS = 5;
1622+
optional string accountLid = 6;
16001623
}
16011624

16021625
message RequestUrlPreview {
@@ -1777,6 +1800,7 @@ message BotMetadata {
17771800
optional string messageDisclaimerText = 11;
17781801
optional BotProgressIndicatorMetadata progressIndicatorMetadata = 12;
17791802
optional BotCapabilityMetadata capabilityMetadata = 13;
1803+
optional BotImagineMetadata imagineMetadata = 14;
17801804
}
17811805

17821806
message DeviceListMetadata {
@@ -1816,11 +1840,17 @@ message EmbeddedContent {
18161840
}
18171841
}
18181842

1843+
message TapLinkAction {
1844+
optional string title = 1;
1845+
optional string tapURL = 2;
1846+
}
1847+
18191848
message InteractiveAnnotation {
18201849
oneof action {
18211850
Location location = 2;
18221851
ContextInfo.ForwardedNewsletterMessageInfo newsletter = 3;
18231852
bool embeddedAction = 6;
1853+
TapLinkAction tapAction = 7;
18241854
}
18251855

18261856
repeated Point polygonVertices = 1;

proto/waWa6/WAWebProtobufsWa6.pb.go

-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proto/waWa6/WAWebProtobufsWa6.pb.raw

-22 Bytes
Binary file not shown.

proto/waWa6/WAWebProtobufsWa6.proto

-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,6 @@ message ClientPayload {
216216
optional int32 yearClass = 36;
217217
optional int32 memClass = 37;
218218
optional InteropData interopData = 38;
219-
optional bool isPcr = 39;
220219
optional TrafficAnonymization trafficAnonymization = 40;
221220
}
222221

proto/waWeb/WAWebProtobufsWeb.pb.go

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proto/waWeb/WAWebProtobufsWeb.pb.raw

48 Bytes
Binary file not shown.

proto/waWeb/WAWebProtobufsWeb.proto

+1
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ message WebMessageInfo {
294294
optional WACommon.MessageKey targetMessageID = 67;
295295
repeated MessageAddOn messageAddOns = 68;
296296
optional StatusMentionMessage statusMentionMessageInfo = 69;
297+
optional bool isSupportAiMessage = 70;
297298
}
298299

299300
message PaymentInfo {

0 commit comments

Comments
 (0)