slidge-whatsapp 0.2.6__cp313-cp313-manylinux_2_36_aarch64.whl → 0.2.7__cp313-cp313-manylinux_2_36_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of slidge-whatsapp might be problematic. Click here for more details.

Files changed (87) hide show
  1. slidge_whatsapp/event.go +8 -2
  2. slidge_whatsapp/generated/_whatsapp.cpython-313-aarch64-linux-gnu.h +166 -166
  3. slidge_whatsapp/generated/_whatsapp.cpython-313-aarch64-linux-gnu.so +0 -0
  4. slidge_whatsapp/generated/build.py +146 -146
  5. slidge_whatsapp/generated/whatsapp.c +1486 -1486
  6. slidge_whatsapp/generated/whatsapp.go +730 -730
  7. slidge_whatsapp/generated/whatsapp.py +1053 -1053
  8. slidge_whatsapp/generated/whatsapp_go.h +166 -166
  9. slidge_whatsapp/go.mod +6 -6
  10. slidge_whatsapp/go.sum +12 -18
  11. slidge_whatsapp/media/media.go +5 -1
  12. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/json.go +1 -6
  13. slidge_whatsapp/vendor/go.mau.fi/util/exstrings/stringutil.go +76 -0
  14. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +38 -6
  15. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/encoder.go +1 -1
  16. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +1 -1
  17. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +64 -27
  18. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +8 -6
  19. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +19 -12
  20. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +22 -6
  21. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +2 -2
  22. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +33 -17
  23. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +1 -0
  24. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +198 -48
  25. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +12 -7
  26. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/extra.go +7 -0
  27. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go +983 -0
  28. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.proto +85 -0
  29. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/extra.go +3 -0
  30. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.pb.go +197 -0
  31. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.proto +13 -0
  32. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.pb.go +279 -0
  33. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.proto +21 -0
  34. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.pb.go +137 -0
  35. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.proto +10 -0
  36. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.pb.go +313 -0
  37. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.proto +27 -0
  38. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.pb.go +1299 -0
  39. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto +112 -0
  40. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.pb.go +514 -0
  41. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.proto +47 -0
  42. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.pb.go +123 -0
  43. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.proto +7 -0
  44. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/extra.go +3 -0
  45. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.pb.go +720 -0
  46. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.proto +59 -0
  47. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/extra.go +3 -0
  48. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.pb.go +365 -0
  49. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.proto +33 -0
  50. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.pb.go +1238 -0
  51. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.proto +105 -0
  52. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +16 -4
  53. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +3 -0
  54. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.pb.go +16 -7
  55. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.proto +1 -0
  56. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +2436 -1676
  57. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +85 -7
  58. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.pb.go +198 -0
  59. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.proto +14 -0
  60. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/extra.go +7 -6
  61. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +800 -0
  62. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +72 -0
  63. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +678 -441
  64. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +20 -0
  65. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +11 -3
  66. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +2 -0
  67. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +13 -7
  68. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingfields.json +1 -0
  69. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingtoken.go +176 -0
  70. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +10 -2
  71. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +32 -17
  72. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +1 -0
  73. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +1 -1
  74. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +9 -6
  75. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +4 -2
  76. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/10-chat-db-lid-migration-ts.sql +2 -0
  77. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +2 -0
  78. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +5 -2
  79. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +1 -0
  80. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +2 -0
  81. slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +8 -8
  82. slidge_whatsapp/vendor/modules.txt +20 -6
  83. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.2.7.dist-info}/METADATA +1 -1
  84. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.2.7.dist-info}/RECORD +87 -54
  85. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.2.7.dist-info}/LICENSE +0 -0
  86. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.2.7.dist-info}/WHEEL +0 -0
  87. {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.2.7.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,105 @@
1
+ syntax = "proto2";
2
+ package InstamadilloXmaContentRef;
3
+ option go_package = "go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef";
4
+
5
+ enum XmaActionType {
6
+ XMA_ACTION_TYPE_UNSPECIFIED = 0;
7
+ XMA_ACTION_TYPE_SHARE = 1;
8
+ XMA_ACTION_TYPE_REPLY = 2;
9
+ XMA_ACTION_TYPE_REACT = 3;
10
+ XMA_ACTION_TYPE_MENTION = 4;
11
+ }
12
+
13
+ enum ReceiverFetchContentType {
14
+ RECEIVER_FETCH_CONTENT_TYPE_UNSPECIFIED = 0;
15
+ RECEIVER_FETCH_CONTENT_TYPE_NOTE = 1;
16
+ RECEIVER_FETCH_CONTENT_TYPE_STORY = 2;
17
+ RECEIVER_FETCH_CONTENT_TYPE_PROFILE = 3;
18
+ RECEIVER_FETCH_CONTENT_TYPE_CLIP = 4;
19
+ RECEIVER_FETCH_CONTENT_TYPE_FEED = 5;
20
+ RECEIVER_FETCH_CONTENT_TYPE_LIVE = 6;
21
+ RECEIVER_FETCH_CONTENT_TYPE_COMMENT = 7;
22
+ RECEIVER_FETCH_CONTENT_TYPE_LOCATION_SHARE = 8;
23
+ RECEIVER_FETCH_CONTENT_TYPE_REELS_AUDIO = 9;
24
+ RECEIVER_FETCH_CONTENT_TYPE_MEDIA_NOTE = 10;
25
+ RECEIVER_FETCH_CONTENT_TYPE_STORY_HIGHLIGHT = 11;
26
+ RECEIVER_FETCH_CONTENT_TYPE_SOCIAL_CONTEXT = 12;
27
+ }
28
+
29
+ enum MediaNoteFetchParamsMessageType {
30
+ MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_UNSPECIFIED = 0;
31
+ MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_MENTION = 1;
32
+ MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_REPLY = 2;
33
+ }
34
+
35
+ message XmaContentRef {
36
+ optional XmaActionType actionType = 1;
37
+ optional ReceiverFetchContentType contentType = 2;
38
+ optional string targetURL = 3;
39
+ optional string userName = 4;
40
+ optional string ownerFbid = 5;
41
+ optional ReceiverFetchXmaFetchParams fetchParams = 6;
42
+ }
43
+
44
+ message ReceiverFetchXmaFetchParams {
45
+ oneof receiverFetchXmaFetchParams {
46
+ ReceiverFetchXmaNoteFetchParams noteFetchParams = 1;
47
+ ReceiverFetchXmaStoryFetchParams storyFetchParams = 2;
48
+ ReceiverFetchXmaProfileFetchParams profileFetchParams = 3;
49
+ ReceiverFetchXmaClipFetchParams clipFetchParams = 4;
50
+ ReceiverFetchXmaFeedFetchParams feedFetchParams = 5;
51
+ ReceiverFetchXmaLiveFetchParams liveFetchParams = 6;
52
+ ReceiverFetchXmaCommentFetchParams commentFetchParams = 7;
53
+ ReceiverFetchXmaLocationShareFetchParams locationShareFetchParams = 8;
54
+ ReceiverFetchXmaReelsAudioFetchParams reelsAudioFetchParams = 9;
55
+ ReceiverFetchXmaMediaNoteFetchParams mediaNoteFetchParams = 10;
56
+ ReceiverFetchXmaSocialContextFetchParams socialContextFetchParams = 11;
57
+ }
58
+ }
59
+
60
+ message ReceiverFetchXmaNoteFetchParams {
61
+ optional string noteIgid = 1;
62
+ }
63
+
64
+ message ReceiverFetchXmaStoryFetchParams {
65
+ optional string storyIgid = 1;
66
+ optional string reelID = 2;
67
+ }
68
+
69
+ message ReceiverFetchXmaProfileFetchParams {
70
+ optional string profileIgid = 1;
71
+ }
72
+
73
+ message ReceiverFetchXmaClipFetchParams {
74
+ optional string mediaIgid = 1;
75
+ }
76
+
77
+ message ReceiverFetchXmaFeedFetchParams {
78
+ optional string mediaIgid = 1;
79
+ optional string carouselShareChildMediaIgid = 2;
80
+ }
81
+
82
+ message ReceiverFetchXmaLiveFetchParams {
83
+ optional string liveIgid = 1;
84
+ }
85
+
86
+ message ReceiverFetchXmaCommentFetchParams {
87
+ optional string commentFbid = 1;
88
+ }
89
+
90
+ message ReceiverFetchXmaLocationShareFetchParams {
91
+ optional string locationIgid = 1;
92
+ }
93
+
94
+ message ReceiverFetchXmaReelsAudioFetchParams {
95
+ optional string audioIgid = 1;
96
+ }
97
+
98
+ message ReceiverFetchXmaMediaNoteFetchParams {
99
+ optional string mediaNoteIgid = 1;
100
+ optional MediaNoteFetchParamsMessageType messageType = 2;
101
+ }
102
+
103
+ message ReceiverFetchXmaSocialContextFetchParams {
104
+ optional string mediaIgid = 1;
105
+ }
@@ -260,6 +260,8 @@ const (
260
260
  ExtendedContentMessage_FB_SHORT ExtendedContentMessage_ExtendedContentType = 1009
261
261
  ExtendedContentMessage_FB_COMMENT_MENTION_SHARE ExtendedContentMessage_ExtendedContentType = 1010
262
262
  ExtendedContentMessage_FB_POST_MENTION ExtendedContentMessage_ExtendedContentType = 1011
263
+ ExtendedContentMessage_FB_PROFILE_DIRECTORY_ITEM ExtendedContentMessage_ExtendedContentType = 1013
264
+ ExtendedContentMessage_FB_FEED_POST_REACTION_REPLY ExtendedContentMessage_ExtendedContentType = 1014
263
265
  ExtendedContentMessage_MSG_EXTERNAL_LINK_SHARE ExtendedContentMessage_ExtendedContentType = 2000
264
266
  ExtendedContentMessage_MSG_P2P_PAYMENT ExtendedContentMessage_ExtendedContentType = 2001
265
267
  ExtendedContentMessage_MSG_LOCATION_SHARING ExtendedContentMessage_ExtendedContentType = 2002
@@ -284,6 +286,7 @@ const (
284
286
  ExtendedContentMessage_MSG_GEN_AI_MEMU_ONBOARDING_RESPONSE ExtendedContentMessage_ExtendedContentType = 2023
285
287
  ExtendedContentMessage_MSG_NOTE_REPLY ExtendedContentMessage_ExtendedContentType = 2024
286
288
  ExtendedContentMessage_MSG_NOTE_MENTION ExtendedContentMessage_ExtendedContentType = 2025
289
+ ExtendedContentMessage_GEN_AI_ENTITY ExtendedContentMessage_ExtendedContentType = 2026
287
290
  ExtendedContentMessage_RTC_AUDIO_CALL ExtendedContentMessage_ExtendedContentType = 3000
288
291
  ExtendedContentMessage_RTC_VIDEO_CALL ExtendedContentMessage_ExtendedContentType = 3001
289
292
  ExtendedContentMessage_RTC_MISSED_AUDIO_CALL ExtendedContentMessage_ExtendedContentType = 3002
@@ -333,6 +336,8 @@ var (
333
336
  1009: "FB_SHORT",
334
337
  1010: "FB_COMMENT_MENTION_SHARE",
335
338
  1011: "FB_POST_MENTION",
339
+ 1013: "FB_PROFILE_DIRECTORY_ITEM",
340
+ 1014: "FB_FEED_POST_REACTION_REPLY",
336
341
  2000: "MSG_EXTERNAL_LINK_SHARE",
337
342
  2001: "MSG_P2P_PAYMENT",
338
343
  2002: "MSG_LOCATION_SHARING",
@@ -357,6 +362,7 @@ var (
357
362
  2023: "MSG_GEN_AI_MEMU_ONBOARDING_RESPONSE",
358
363
  2024: "MSG_NOTE_REPLY",
359
364
  2025: "MSG_NOTE_MENTION",
365
+ 2026: "GEN_AI_ENTITY",
360
366
  3000: "RTC_AUDIO_CALL",
361
367
  3001: "RTC_VIDEO_CALL",
362
368
  3002: "RTC_MISSED_AUDIO_CALL",
@@ -403,6 +409,8 @@ var (
403
409
  "FB_SHORT": 1009,
404
410
  "FB_COMMENT_MENTION_SHARE": 1010,
405
411
  "FB_POST_MENTION": 1011,
412
+ "FB_PROFILE_DIRECTORY_ITEM": 1013,
413
+ "FB_FEED_POST_REACTION_REPLY": 1014,
406
414
  "MSG_EXTERNAL_LINK_SHARE": 2000,
407
415
  "MSG_P2P_PAYMENT": 2001,
408
416
  "MSG_LOCATION_SHARING": 2002,
@@ -427,6 +435,7 @@ var (
427
435
  "MSG_GEN_AI_MEMU_ONBOARDING_RESPONSE": 2023,
428
436
  "MSG_NOTE_REPLY": 2024,
429
437
  "MSG_NOTE_MENTION": 2025,
438
+ "GEN_AI_ENTITY": 2026,
430
439
  "RTC_AUDIO_CALL": 3000,
431
440
  "RTC_VIDEO_CALL": 3001,
432
441
  "RTC_MISSED_AUDIO_CALL": 3002,
@@ -811,7 +820,7 @@ var File_waArmadilloXMA_WAArmadilloXMA_proto protoreflect.FileDescriptor
811
820
 
812
821
  const file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc = "" +
813
822
  "\n" +
814
- "#waArmadilloXMA/WAArmadilloXMA.proto\x12\x0eWAArmadilloXMA\x1a\x17waCommon/WACommon.proto\"\xf0\x1c\n" +
823
+ "#waArmadilloXMA/WAArmadilloXMA.proto\x12\x0eWAArmadilloXMA\x1a\x17waCommon/WACommon.proto\"\xc6\x1d\n" +
815
824
  "\x16ExtendedContentMessage\x12C\n" +
816
825
  "\x11associatedMessage\x18\x01 \x01(\v2\x15.WACommon.SubProtocolR\x11associatedMessage\x12Z\n" +
817
826
  "\n" +
@@ -875,7 +884,7 @@ const file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc = "" +
875
884
  "\bPORTRAIT\x10\x03\x12\x11\n" +
876
885
  "\rSTANDARD_DXMA\x10\f\x12\r\n" +
877
886
  "\tLIST_DXMA\x10\x0f\x12\b\n" +
878
- "\x04GRID\x10\x10\"\xa2\x0e\n" +
887
+ "\x04GRID\x10\x10\"\xf8\x0e\n" +
879
888
  "\x13ExtendedContentType\x12\x0f\n" +
880
889
  "\vUNSUPPORTED\x10\x00\x12\x1a\n" +
881
890
  "\x16IG_STORY_PHOTO_MENTION\x10\x04\x12\x1e\n" +
@@ -909,7 +918,9 @@ const file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc = "" +
909
918
  "\x1aFB_FEED_POST_PRIVATE_REPLY\x10\xf0\a\x12\r\n" +
910
919
  "\bFB_SHORT\x10\xf1\a\x12\x1d\n" +
911
920
  "\x18FB_COMMENT_MENTION_SHARE\x10\xf2\a\x12\x14\n" +
912
- "\x0fFB_POST_MENTION\x10\xf3\a\x12\x1c\n" +
921
+ "\x0fFB_POST_MENTION\x10\xf3\a\x12\x1e\n" +
922
+ "\x19FB_PROFILE_DIRECTORY_ITEM\x10\xf5\a\x12 \n" +
923
+ "\x1bFB_FEED_POST_REACTION_REPLY\x10\xf6\a\x12\x1c\n" +
913
924
  "\x17MSG_EXTERNAL_LINK_SHARE\x10\xd0\x0f\x12\x14\n" +
914
925
  "\x0fMSG_P2P_PAYMENT\x10\xd1\x0f\x12\x19\n" +
915
926
  "\x14MSG_LOCATION_SHARING\x10\xd2\x0f\x12\x1c\n" +
@@ -933,7 +944,8 @@ const file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc = "" +
933
944
  "\x13MSG_GEN_AI_REMINDER\x10\xe6\x0f\x12(\n" +
934
945
  "#MSG_GEN_AI_MEMU_ONBOARDING_RESPONSE\x10\xe7\x0f\x12\x13\n" +
935
946
  "\x0eMSG_NOTE_REPLY\x10\xe8\x0f\x12\x15\n" +
936
- "\x10MSG_NOTE_MENTION\x10\xe9\x0f\x12\x13\n" +
947
+ "\x10MSG_NOTE_MENTION\x10\xe9\x0f\x12\x12\n" +
948
+ "\rGEN_AI_ENTITY\x10\xea\x0f\x12\x13\n" +
937
949
  "\x0eRTC_AUDIO_CALL\x10\xb8\x17\x12\x13\n" +
938
950
  "\x0eRTC_VIDEO_CALL\x10\xb9\x17\x12\x1a\n" +
939
951
  "\x15RTC_MISSED_AUDIO_CALL\x10\xba\x17\x12\x1a\n" +
@@ -64,6 +64,8 @@ message ExtendedContentMessage {
64
64
  FB_SHORT = 1009;
65
65
  FB_COMMENT_MENTION_SHARE = 1010;
66
66
  FB_POST_MENTION = 1011;
67
+ FB_PROFILE_DIRECTORY_ITEM = 1013;
68
+ FB_FEED_POST_REACTION_REPLY = 1014;
67
69
  MSG_EXTERNAL_LINK_SHARE = 2000;
68
70
  MSG_P2P_PAYMENT = 2001;
69
71
  MSG_LOCATION_SHARING = 2002;
@@ -88,6 +90,7 @@ message ExtendedContentMessage {
88
90
  MSG_GEN_AI_MEMU_ONBOARDING_RESPONSE = 2023;
89
91
  MSG_NOTE_REPLY = 2024;
90
92
  MSG_NOTE_MENTION = 2025;
93
+ GEN_AI_ENTITY = 2026;
91
94
  RTC_AUDIO_CALL = 3000;
92
95
  RTC_VIDEO_CALL = 3001;
93
96
  RTC_MISSED_AUDIO_CALL = 3002;
@@ -544,11 +544,12 @@ func (x *EncryptedPairingRequest) GetIV() []byte {
544
544
  }
545
545
 
546
546
  type ClientPairingProps struct {
547
- state protoimpl.MessageState `protogen:"open.v1"`
548
- IsChatDbLidMigrated *bool `protobuf:"varint,1,opt,name=isChatDbLidMigrated" json:"isChatDbLidMigrated,omitempty"`
549
- IsSyncdPureLidSession *bool `protobuf:"varint,2,opt,name=isSyncdPureLidSession" json:"isSyncdPureLidSession,omitempty"`
550
- unknownFields protoimpl.UnknownFields
551
- sizeCache protoimpl.SizeCache
547
+ state protoimpl.MessageState `protogen:"open.v1"`
548
+ IsChatDbLidMigrated *bool `protobuf:"varint,1,opt,name=isChatDbLidMigrated" json:"isChatDbLidMigrated,omitempty"`
549
+ IsSyncdPureLidSession *bool `protobuf:"varint,2,opt,name=isSyncdPureLidSession" json:"isSyncdPureLidSession,omitempty"`
550
+ IsSyncdSnapshotRecoveryEnabled *bool `protobuf:"varint,3,opt,name=isSyncdSnapshotRecoveryEnabled" json:"isSyncdSnapshotRecoveryEnabled,omitempty"`
551
+ unknownFields protoimpl.UnknownFields
552
+ sizeCache protoimpl.SizeCache
552
553
  }
553
554
 
554
555
  func (x *ClientPairingProps) Reset() {
@@ -595,6 +596,13 @@ func (x *ClientPairingProps) GetIsSyncdPureLidSession() bool {
595
596
  return false
596
597
  }
597
598
 
599
+ func (x *ClientPairingProps) GetIsSyncdSnapshotRecoveryEnabled() bool {
600
+ if x != nil && x.IsSyncdSnapshotRecoveryEnabled != nil {
601
+ return *x.IsSyncdSnapshotRecoveryEnabled
602
+ }
603
+ return false
604
+ }
605
+
598
606
  type DeviceProps_HistorySyncConfig struct {
599
607
  state protoimpl.MessageState `protogen:"open.v1"`
600
608
  FullSyncDaysLimit *uint32 `protobuf:"varint,1,opt,name=fullSyncDaysLimit" json:"fullSyncDaysLimit,omitempty"`
@@ -907,10 +915,11 @@ const file_waCompanionReg_WACompanionReg_proto_rawDesc = "" +
907
915
  "\tadvSecret\x18\x03 \x01(\fR\tadvSecret\"U\n" +
908
916
  "\x17EncryptedPairingRequest\x12*\n" +
909
917
  "\x10encryptedPayload\x18\x01 \x01(\fR\x10encryptedPayload\x12\x0e\n" +
910
- "\x02IV\x18\x02 \x01(\fR\x02IV\"|\n" +
918
+ "\x02IV\x18\x02 \x01(\fR\x02IV\"\xc4\x01\n" +
911
919
  "\x12ClientPairingProps\x120\n" +
912
920
  "\x13isChatDbLidMigrated\x18\x01 \x01(\bR\x13isChatDbLidMigrated\x124\n" +
913
- "\x15isSyncdPureLidSession\x18\x02 \x01(\bR\x15isSyncdPureLidSessionB*Z(go.mau.fi/whatsmeow/proto/waCompanionReg"
921
+ "\x15isSyncdPureLidSession\x18\x02 \x01(\bR\x15isSyncdPureLidSession\x12F\n" +
922
+ "\x1eisSyncdSnapshotRecoveryEnabled\x18\x03 \x01(\bR\x1eisSyncdSnapshotRecoveryEnabledB*Z(go.mau.fi/whatsmeow/proto/waCompanionReg"
914
923
 
915
924
  var (
916
925
  file_waCompanionReg_WACompanionReg_proto_rawDescOnce sync.Once
@@ -97,4 +97,5 @@ message EncryptedPairingRequest {
97
97
  message ClientPairingProps {
98
98
  optional bool isChatDbLidMigrated = 1;
99
99
  optional bool isSyncdPureLidSession = 2;
100
+ optional bool isSyncdSnapshotRecoveryEnabled = 3;
100
101
  }