@wppconnect/wa-proto 1.1.10 → 1.1.32

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,91 @@
1
+ ## [1.1.32](https://github.com/wppconnect-team/wa-proto/compare/v1.1.31...v1.1.32) (2025-02-24)
2
+
3
+
4
+
5
+ ## [1.1.31](https://github.com/wppconnect-team/wa-proto/compare/v1.1.30...v1.1.31) (2025-02-24)
6
+
7
+
8
+
9
+ ## [1.1.30](https://github.com/wppconnect-team/wa-proto/compare/v1.1.29...v1.1.30) (2025-02-21)
10
+
11
+
12
+
13
+ ## [1.1.29](https://github.com/wppconnect-team/wa-proto/compare/v1.1.28...v1.1.29) (2025-02-21)
14
+
15
+
16
+
17
+ ## [1.1.28](https://github.com/wppconnect-team/wa-proto/compare/v1.1.27...v1.1.28) (2025-02-20)
18
+
19
+
20
+
21
+ ## [1.1.27](https://github.com/wppconnect-team/wa-proto/compare/v1.1.26...v1.1.27) (2025-02-20)
22
+
23
+
24
+
25
+ ## [1.1.26](https://github.com/wppconnect-team/wa-proto/compare/v1.1.25...v1.1.26) (2025-02-20)
26
+
27
+
28
+
29
+ ## [1.1.25](https://github.com/wppconnect-team/wa-proto/compare/v1.1.24...v1.1.25) (2025-02-19)
30
+
31
+
32
+
33
+ ## 1.1.24 (2025-02-17)
34
+
35
+
36
+
37
+ ## 1.1.23 (2025-02-17)
38
+
39
+
40
+
41
+ ## [1.1.22](https://github.com/wppconnect-team/wa-proto/compare/v1.1.21...v1.1.22) (2025-02-17)
42
+
43
+
44
+
45
+ ## [1.1.21](https://github.com/wppconnect-team/wa-proto/compare/v1.1.20...v1.1.21) (2025-02-14)
46
+
47
+
48
+
49
+ ## 1.1.20 (2025-02-13)
50
+
51
+
52
+
53
+ ## [1.1.19](https://github.com/wppconnect-team/wa-proto/compare/v1.1.18...v1.1.19) (2025-02-13)
54
+
55
+
56
+
57
+ ## [1.1.18](https://github.com/wppconnect-team/wa-proto/compare/v1.1.17...v1.1.18) (2025-02-06)
58
+
59
+
60
+
61
+ ## [1.1.17](https://github.com/wppconnect-team/wa-proto/compare/v1.1.16...v1.1.17) (2025-02-05)
62
+
63
+
64
+
65
+ ## [1.1.16](https://github.com/wppconnect-team/wa-proto/compare/v1.1.15...v1.1.16) (2025-02-04)
66
+
67
+
68
+
69
+ ## 1.1.15 (2025-02-03)
70
+
71
+
72
+
73
+ ## [1.1.14](https://github.com/wppconnect-team/wa-proto/compare/v1.1.13...v1.1.14) (2025-02-03)
74
+
75
+
76
+
77
+ ## 1.1.13 (2025-02-02)
78
+
79
+
80
+
81
+ ## 1.1.12 (2025-02-01)
82
+
83
+
84
+
85
+ ## 1.1.11 (2025-01-31)
86
+
87
+
88
+
1
89
  ## 1.1.10 (2025-01-29)
2
90
 
3
91
 
package/WAProto.proto CHANGED
@@ -1,7 +1,7 @@
1
1
  syntax = "proto3";
2
2
  package waproto;
3
3
 
4
- /// WhatsApp Version: 2.3000.1019670190
4
+ /// WhatsApp Version: 2.3000.1020333766
5
5
 
6
6
  message ADVDeviceIdentity {
7
7
  optional uint32 rawId = 1;
@@ -45,6 +45,11 @@ message ADVSignedKeyIndexList {
45
45
  message AIRichResponseMessage {
46
46
  optional AIRichResponseMessageType messageType = 1;
47
47
  repeated AIRichResponseSubMessage submessages = 2;
48
+ optional AIRichResponseAbstractData abstractData = 3;
49
+ message AIRichResponseAbstractData {
50
+ optional bytes data = 1;
51
+ }
52
+
48
53
  message AIRichResponseCodeMetadata {
49
54
  optional string codeLanguage = 1;
50
55
  repeated AIRichResponseCodeBlock codeBlocks = 2;
@@ -98,11 +103,51 @@ message AIRichResponseMessage {
98
103
  }
99
104
  }
100
105
 
106
+ message AIRichResponseLatexMetadata {
107
+ optional string text = 1;
108
+ repeated AIRichResponseLatexExpression expressions = 2;
109
+ message AIRichResponseLatexExpression {
110
+ optional string latexExpression = 1;
111
+ optional string url = 2;
112
+ optional double width = 3;
113
+ optional double height = 4;
114
+ optional double fontHeight = 5;
115
+ }
116
+
117
+ }
118
+
119
+ message AIRichResponseMapMetadata {
120
+ optional double centerLatitude = 1;
121
+ optional double centerLongtitude = 2;
122
+ optional double latitudeDelta = 3;
123
+ optional double longtitudeDelta = 4;
124
+ repeated AIRichResponseMapAnnotation anotations = 5;
125
+ optional bool showInfoList = 6;
126
+ message AIRichResponseMapAnnotation {
127
+ optional uint32 annotationNumber = 1;
128
+ optional double latitude = 2;
129
+ optional double longtitude = 3;
130
+ optional string title = 4;
131
+ optional string body = 5;
132
+ }
133
+
134
+ }
135
+
101
136
  enum AIRichResponseMessageType {
102
137
  AI_RICH_RESPONSE_TYPE_UNKNOWN = 0;
103
138
  AI_RICH_RESPONSE_TYPE_STANDARD = 1;
104
- AI_RICH_RESPONSE_TYPE_ARTIFACTS = 2;
105
139
  }
140
+ message AIRichResponseReelsMetadata {
141
+ repeated AIRichResponseReelMetadata reelsMetadata = 1;
142
+ message AIRichResponseReelMetadata {
143
+ optional string title = 1;
144
+ optional string profileIconUrl = 2;
145
+ optional string previewUrl = 3;
146
+ optional string videoUrl = 4;
147
+ }
148
+
149
+ }
150
+
106
151
  message AIRichResponseSubMessage {
107
152
  optional AIRichResponseMessage.AIRichResponseSubMessageType messageType = 1;
108
153
  optional AIRichResponseMessage.AIRichResponseGridImageMetadata gridImageMetadata = 2;
@@ -111,6 +156,9 @@ message AIRichResponseMessage {
111
156
  optional AIRichResponseMessage.AIRichResponseCodeMetadata codeMetadata = 5;
112
157
  optional AIRichResponseMessage.AIRichResponseTableMetadata tableMetadata = 6;
113
158
  optional AIRichResponseMessage.AIRichResponseDynamicMetadata dynamicMetadata = 7;
159
+ optional AIRichResponseMessage.AIRichResponseLatexMetadata latexMetadata = 8;
160
+ optional AIRichResponseMessage.AIRichResponseMapMetadata mapMetadata = 9;
161
+ optional AIRichResponseMessage.AIRichResponseReelsMetadata reelsMetadata = 10;
114
162
  }
115
163
 
116
164
  enum AIRichResponseSubMessageType {
@@ -121,6 +169,9 @@ message AIRichResponseMessage {
121
169
  AI_RICH_RESPONSE_TABLE = 4;
122
170
  AI_RICH_RESPONSE_CODE = 5;
123
171
  AI_RICH_RESPONSE_DYNAMIC = 6;
172
+ AI_RICH_RESPONSE_MAP = 7;
173
+ AI_RICH_RESPONSE_LATEX = 8;
174
+ AI_RICH_RESPONSE_INLINE_REELS = 9;
124
175
  }
125
176
  message AIRichResponseTableMetadata {
126
177
  repeated AIRichResponseTableRow rows = 1;
@@ -205,6 +256,7 @@ message BotAvatarMetadata {
205
256
  message BotCapabilityMetadata {
206
257
  repeated BotCapabilityType capabilities = 1;
207
258
  enum BotCapabilityType {
259
+ UNKNOWN = 0;
208
260
  PROGRESS_INDICATOR = 1;
209
261
  RICH_RESPONSE_HEADING = 2;
210
262
  RICH_RESPONSE_NESTED_LIST = 3;
@@ -227,6 +279,11 @@ message BotCapabilityMetadata {
227
279
  WA_IG_1P_PLUGIN_RANKING_UPDATE_10 = 20;
228
280
  RICH_RESPONSE_SUB_HEADING = 21;
229
281
  RICH_RESPONSE_GRID_IMAGE = 22;
282
+ AI_STUDIO_UGC_MEMORY = 23;
283
+ RICH_RESPONSE_LATEX = 24;
284
+ RICH_RESPONSE_MAPS = 25;
285
+ RICH_RESPONSE_INLINE_REELS = 26;
286
+ AGENTIC_PLANNING = 27;
230
287
  }
231
288
  }
232
289
 
@@ -241,6 +298,18 @@ message BotImagineMetadata {
241
298
  }
242
299
  }
243
300
 
301
+ message BotLinkedAccount {
302
+ optional BotLinkedAccountType type = 1;
303
+ enum BotLinkedAccountType {
304
+ BOT_LINKED_ACCOUNT_TYPE_1P = 0;
305
+ }
306
+ }
307
+
308
+ message BotLinkedAccountsMetadata {
309
+ repeated BotLinkedAccount accounts = 1;
310
+ optional bytes acAuthTokens = 2;
311
+ }
312
+
244
313
  message BotMediaMetadata {
245
314
  optional string fileSha256 = 1;
246
315
  optional string mediaKey = 2;
@@ -289,6 +358,7 @@ message BotMetadata {
289
358
  optional BotMemoryMetadata memoryMetadata = 15;
290
359
  optional BotRenderingMetadata renderingMetadata = 16;
291
360
  optional BotMetricsMetadata botMetricsMetadata = 17;
361
+ optional BotLinkedAccountsMetadata botLinkedAccountsMetadata = 18;
292
362
  }
293
363
 
294
364
  enum BotMetricsEntryPoint {
@@ -308,6 +378,7 @@ enum BotMetricsEntryPoint {
308
378
  PROFILE_MESSAGE_BUTTON = 14;
309
379
  FORWARD = 15;
310
380
  APP_SHORTCUT = 16;
381
+ FF_FAMILY = 17;
311
382
  }
312
383
  message BotMetricsMetadata {
313
384
  optional string destinationId = 1;
@@ -357,6 +428,34 @@ message BotPluginMetadata {
357
428
 
358
429
  message BotProgressIndicatorMetadata {
359
430
  optional string progressDescription = 1;
431
+ repeated BotPlanningStepMetadata stepsMetadata = 2;
432
+ message BotPlanningStepMetadata {
433
+ optional string statusTitle = 1;
434
+ optional string statusBody = 2;
435
+ repeated BotPlanningSearchSourcesMetadata sourcesMetadata = 3;
436
+ optional PlanningStepStatus status = 4;
437
+ optional bool isReasoning = 5;
438
+ optional bool isEnhancedSearch = 6;
439
+ message BotPlanningSearchSourcesMetadata {
440
+ optional string sourceTitle = 1;
441
+ optional BotPlanningSearchSourceProvider provider = 2;
442
+ optional string sourceUrl = 3;
443
+ enum BotPlanningSearchSourceProvider {
444
+ UNKNOWN = 0;
445
+ OTHER = 1;
446
+ GOOGLE = 2;
447
+ BING = 3;
448
+ }
449
+ }
450
+
451
+ enum PlanningStepStatus {
452
+ UNKNOWN = 0;
453
+ PLANNED = 1;
454
+ EXECUTING = 2;
455
+ FINISHED = 3;
456
+ }
457
+ }
458
+
360
459
  }
361
460
 
362
461
  message BotPromptSuggestion {
@@ -528,6 +627,13 @@ message ChatRowOpaqueData {
528
627
 
529
628
  }
530
629
 
630
+ message Citation {
631
+ required string title = 1;
632
+ required string subtitle = 2;
633
+ required string cmsId = 3;
634
+ required string imageUrl = 4;
635
+ }
636
+
531
637
  message ClientPairingProps {
532
638
  optional bool isChatDbLidMigrated = 1;
533
639
  optional bool isSyncdPureLidSession = 2;
@@ -805,6 +911,8 @@ message ContextInfo {
805
911
  optional ForwardedAIBotMessageInfo forwardedAiBotMessageInfo = 56;
806
912
  optional StatusAttributionType statusAttributionType = 57;
807
913
  optional UrlTrackingMap urlTrackingMap = 58;
914
+ optional PairedMediaType pairedMediaType = 59;
915
+ optional uint32 rankingVersion = 60;
808
916
  message AdReplyInfo {
809
917
  optional string advertiserName = 1;
810
918
  optional MediaType mediaType = 2;
@@ -891,6 +999,13 @@ message ContextInfo {
891
999
  }
892
1000
  }
893
1001
 
1002
+ enum PairedMediaType {
1003
+ NOT_PAIRED_MEDIA = 0;
1004
+ SD_VIDEO_PARENT = 1;
1005
+ HD_VIDEO_CHILD = 2;
1006
+ SD_IMAGE_PARENT = 3;
1007
+ HD_IMAGE_CHILD = 4;
1008
+ }
894
1009
  enum StatusAttributionType {
895
1010
  NONE = 0;
896
1011
  RESHARED_FROM_MENTION = 1;
@@ -962,11 +1077,16 @@ message Conversation {
962
1077
 
963
1078
  message DeviceCapabilities {
964
1079
  optional ChatLockSupportLevel chatLockSupportLevel = 1;
1080
+ optional LIDMigration lidMigration = 2;
965
1081
  enum ChatLockSupportLevel {
966
1082
  NONE = 0;
967
1083
  MINIMAL = 1;
968
1084
  FULL = 2;
969
1085
  }
1086
+ message LIDMigration {
1087
+ optional uint64 chatDbMigrationTimestamp = 1;
1088
+ }
1089
+
970
1090
  }
971
1091
 
972
1092
  message DeviceConsistencyCodeMessage {
@@ -1325,6 +1445,15 @@ message LegacyMessage {
1325
1445
  optional Message.PollVoteMessage pollVote = 2;
1326
1446
  }
1327
1447
 
1448
+ message LimitSharing {
1449
+ optional bool sharingLimited = 1;
1450
+ optional Trigger trigger = 2;
1451
+ enum Trigger {
1452
+ CHAT_SETTING = 0;
1453
+ BIZ_SUPPORTS_FB_HOSTING = 1;
1454
+ }
1455
+ }
1456
+
1328
1457
  message LocalizedName {
1329
1458
  optional string lg = 1;
1330
1459
  optional string lc = 2;
@@ -1447,6 +1576,7 @@ message Message {
1447
1576
  optional FutureProofMessage statusAddYours = 95;
1448
1577
  optional FutureProofMessage groupStatusMessage = 96;
1449
1578
  optional AIRichResponseMessage richResponseMessage = 97;
1579
+ optional StatusNotificationMessage statusNotificationMessage = 98;
1450
1580
  message AlbumMessage {
1451
1581
  optional uint32 expectedImageCount = 2;
1452
1582
  optional uint32 expectedVideoCount = 3;
@@ -1964,6 +2094,7 @@ message Message {
1964
2094
  USER_IMAGE = 0;
1965
2095
  AI_GENERATED = 1;
1966
2096
  AI_MODIFIED = 2;
2097
+ RASTERIZED_TEXT_STATUS = 3;
1967
2098
  }
1968
2099
  }
1969
2100
 
@@ -2477,6 +2608,7 @@ message Message {
2477
2608
  optional MediaNotifyMessage mediaNotifyMessage = 21;
2478
2609
  optional Message.CloudAPIThreadControlNotification cloudApiThreadControlNotification = 22;
2479
2610
  optional LIDMigrationMappingSyncMessage lidMigrationMappingSyncMessage = 23;
2611
+ optional LimitSharing limitSharing = 24;
2480
2612
  enum Type {
2481
2613
  REVOKE = 0;
2482
2614
  EPHEMERAL_SETTING = 3;
@@ -2499,6 +2631,8 @@ message Message {
2499
2631
  REMINDER_MESSAGE = 23;
2500
2632
  BOT_MEMU_ONBOARDING_MESSAGE = 24;
2501
2633
  STATUS_MENTION_MESSAGE = 25;
2634
+ STOP_GENERATION_MESSAGE = 26;
2635
+ LIMIT_SHARING = 27;
2502
2636
  }
2503
2637
  }
2504
2638
 
@@ -2573,6 +2707,17 @@ message Message {
2573
2707
  optional bytes axolotlSenderKeyDistributionMessage = 2;
2574
2708
  }
2575
2709
 
2710
+ message StatusNotificationMessage {
2711
+ optional MessageKey responseMessageKey = 1;
2712
+ optional MessageKey originalMessageKey = 2;
2713
+ optional StatusNotificationType type = 3;
2714
+ enum StatusNotificationType {
2715
+ UNKNOWN = 0;
2716
+ STATUS_ADD_YOURS = 1;
2717
+ STATUS_RESHARE = 2;
2718
+ }
2719
+ }
2720
+
2576
2721
  message StickerMessage {
2577
2722
  optional string url = 1;
2578
2723
  optional bytes fileSha256 = 2;
@@ -2761,6 +2906,9 @@ message MessageAssociation {
2761
2906
  STATUS_TAPPABLE_MESSAGE = 6;
2762
2907
  MEDIA_POLL = 7;
2763
2908
  STATUS_ADD_YOURS = 8;
2909
+ STATUS_NOTIFICATION = 9;
2910
+ HD_IMAGE_DUAL_UPLOAD = 10;
2911
+ STICKER_ANNOTATION = 11;
2764
2912
  }
2765
2913
  }
2766
2914
 
@@ -3950,6 +4098,8 @@ message WebMessageInfo {
3950
4098
  optional StatusMentionMessage statusMentionMessageInfo = 69;
3951
4099
  optional bool isSupportAiMessage = 70;
3952
4100
  repeated string statusMentionSources = 71;
4101
+ repeated Citation supportAiCitations = 72;
4102
+ optional string botTargetId = 73;
3953
4103
  enum BizPrivacyStatus {
3954
4104
  E2EE = 0;
3955
4105
  FB = 2;
@@ -4177,6 +4327,10 @@ message WebMessageInfo {
4177
4327
  CAPI_GROUP_NE2EE_SYSTEM_MESSAGE = 209;
4178
4328
  STATUS_MENTION = 210;
4179
4329
  USER_CONTROLS_SYSTEM_MESSAGE = 211;
4330
+ SUPPORT_SYSTEM_MESSAGE = 212;
4331
+ CHANGE_LID = 213;
4332
+ BIZ_CUSTOMER_3PD_DATA_SHARING_OPT_IN_MESSAGE = 214;
4333
+ BIZ_CUSTOMER_3PD_DATA_SHARING_OPT_OUT_MESSAGE = 215;
4180
4334
  }
4181
4335
  }
4182
4336