@wppconnect/wa-proto 2.3000.1024182093 → 2.3000.1024478481
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 +8 -0
- package/WAProto.proto +59 -6
- package/dist/index.d.ts +691 -10
- package/dist/index.js +1840 -17
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [2.3000.1024478481](https://github.com/wppconnect-team/wa-proto/compare/v2.3000.1024449876...v2.3000.1024478481) (2025-07-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## 2.3000.1024449876 (2025-07-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
1
9
|
## [2.3000.1024182093](https://github.com/wppconnect-team/wa-proto/compare/v2.3000.1024117973...v2.3000.1024182093) (2025-06-25)
|
|
2
10
|
|
|
3
11
|
|
package/WAProto.proto
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
syntax = "proto3";
|
|
2
2
|
package waproto;
|
|
3
3
|
|
|
4
|
-
/// WhatsApp Version: 2.3000.
|
|
4
|
+
/// WhatsApp Version: 2.3000.1024478481
|
|
5
5
|
|
|
6
6
|
message ADVDeviceIdentity {
|
|
7
7
|
optional uint32 rawId = 1;
|
|
@@ -329,6 +329,7 @@ message BotCapabilityMetadata {
|
|
|
329
329
|
PROMOTION_MESSAGE = 35;
|
|
330
330
|
SIMPLIFIED_PROFILE_PAGE = 36;
|
|
331
331
|
RICH_RESPONSE_SOURCES_IN_MESSAGE = 37;
|
|
332
|
+
RICH_RESPONSE_SIDE_BY_SIDE_SURVEY = 38;
|
|
332
333
|
}
|
|
333
334
|
}
|
|
334
335
|
|
|
@@ -443,6 +444,8 @@ enum BotMetricsEntryPoint {
|
|
|
443
444
|
NEW_CHAT_AI_STUDIO = 24;
|
|
444
445
|
AIVOICE_FAVICON_CALL_HISTORY = 25;
|
|
445
446
|
ASK_META_AI_CONTEXT_MENU = 26;
|
|
447
|
+
ASK_META_AI_CONTEXT_MENU_1ON1 = 27;
|
|
448
|
+
ASK_META_AI_CONTEXT_MENU_GROUP = 28;
|
|
446
449
|
}
|
|
447
450
|
message BotMetricsMetadata {
|
|
448
451
|
optional string destinationId = 1;
|
|
@@ -1082,6 +1085,7 @@ message ContextInfo {
|
|
|
1082
1085
|
optional bool isQuestion = 63;
|
|
1083
1086
|
optional StatusSourceType statusSourceType = 64;
|
|
1084
1087
|
repeated StatusAttribution statusAttributions = 65;
|
|
1088
|
+
optional bool isGroupStatus = 66;
|
|
1085
1089
|
message AdReplyInfo {
|
|
1086
1090
|
optional string advertiserName = 1;
|
|
1087
1091
|
optional MediaType mediaType = 2;
|
|
@@ -1188,6 +1192,7 @@ message ContextInfo {
|
|
|
1188
1192
|
NONE = 0;
|
|
1189
1193
|
RESHARED_FROM_MENTION = 1;
|
|
1190
1194
|
RESHARED_FROM_POST = 2;
|
|
1195
|
+
FORWARDED_FROM_STATUS = 3;
|
|
1191
1196
|
}
|
|
1192
1197
|
enum StatusSourceType {
|
|
1193
1198
|
IMAGE = 0;
|
|
@@ -1791,6 +1796,7 @@ message Message {
|
|
|
1791
1796
|
optional MessageHistoryNotice messageHistoryNotice = 102;
|
|
1792
1797
|
optional FutureProofMessage groupStatusMessageV2 = 103;
|
|
1793
1798
|
optional FutureProofMessage botForwardedMessage = 104;
|
|
1799
|
+
optional StatusQuestionAnswerMessage statusQuestionAnswerMessage = 105;
|
|
1794
1800
|
message AlbumMessage {
|
|
1795
1801
|
optional uint32 expectedImageCount = 2;
|
|
1796
1802
|
optional uint32 expectedVideoCount = 3;
|
|
@@ -2153,6 +2159,7 @@ message Message {
|
|
|
2153
2159
|
optional Message.MMSThumbnailMetadata faviconMMSMetadata = 33;
|
|
2154
2160
|
optional Message.LinkPreviewMetadata linkPreviewMetadata = 34;
|
|
2155
2161
|
optional Message.PaymentLinkMetadata paymentLinkMetadata = 35;
|
|
2162
|
+
repeated Message.VideoEndCard endCardTiles = 36;
|
|
2156
2163
|
enum FontType {
|
|
2157
2164
|
SYSTEM = 0;
|
|
2158
2165
|
SYSTEM_TEXT = 1;
|
|
@@ -2739,6 +2746,7 @@ message Message {
|
|
|
2739
2746
|
optional string matchText = 6;
|
|
2740
2747
|
optional string previewType = 7;
|
|
2741
2748
|
optional LinkPreviewHighQualityThumbnail hqThumbnail = 8;
|
|
2749
|
+
optional PaymentLinkPreviewMetadata previewMetadata = 9;
|
|
2742
2750
|
message LinkPreviewHighQualityThumbnail {
|
|
2743
2751
|
optional string directPath = 1;
|
|
2744
2752
|
optional string thumbHash = 2;
|
|
@@ -2749,6 +2757,11 @@ message Message {
|
|
|
2749
2757
|
optional int32 thumbHeight = 7;
|
|
2750
2758
|
}
|
|
2751
2759
|
|
|
2760
|
+
message PaymentLinkPreviewMetadata {
|
|
2761
|
+
optional bool isBusinessVerified = 1;
|
|
2762
|
+
optional string providerName = 2;
|
|
2763
|
+
}
|
|
2764
|
+
|
|
2752
2765
|
}
|
|
2753
2766
|
|
|
2754
2767
|
message PlaceholderMessageResendResponse {
|
|
@@ -3022,6 +3035,11 @@ message Message {
|
|
|
3022
3035
|
}
|
|
3023
3036
|
}
|
|
3024
3037
|
|
|
3038
|
+
message StatusQuestionAnswerMessage {
|
|
3039
|
+
optional MessageKey key = 1;
|
|
3040
|
+
optional string text = 2;
|
|
3041
|
+
}
|
|
3042
|
+
|
|
3025
3043
|
message StickerMessage {
|
|
3026
3044
|
optional string url = 1;
|
|
3027
3045
|
optional bytes fileSha256 = 2;
|
|
@@ -3141,6 +3159,13 @@ message Message {
|
|
|
3141
3159
|
optional uint32 fbExperimentId = 1;
|
|
3142
3160
|
}
|
|
3143
3161
|
|
|
3162
|
+
message VideoEndCard {
|
|
3163
|
+
required string username = 1;
|
|
3164
|
+
required string caption = 2;
|
|
3165
|
+
required string thumbnailImageUrl = 3;
|
|
3166
|
+
required string profilePictureUrl = 4;
|
|
3167
|
+
}
|
|
3168
|
+
|
|
3144
3169
|
message VideoMessage {
|
|
3145
3170
|
optional string url = 1;
|
|
3146
3171
|
optional string mimetype = 2;
|
|
@@ -3229,6 +3254,7 @@ message MessageAssociation {
|
|
|
3229
3254
|
STATUS_LINK_ACTION = 13;
|
|
3230
3255
|
VIEW_ALL_REPLIES = 14;
|
|
3231
3256
|
STATUS_ADD_YOURS_AI_IMAGINE = 15;
|
|
3257
|
+
STATUS_QUESTION = 16;
|
|
3232
3258
|
}
|
|
3233
3259
|
}
|
|
3234
3260
|
|
|
@@ -3766,6 +3792,7 @@ message StatusAttribution {
|
|
|
3766
3792
|
StatusAttribution.ExternalShare externalShare = 4;
|
|
3767
3793
|
StatusAttribution.Music music = 5;
|
|
3768
3794
|
StatusAttribution.GroupStatus groupStatus = 6;
|
|
3795
|
+
StatusAttribution.RLAttribution rlAttribution = 7;
|
|
3769
3796
|
}
|
|
3770
3797
|
message ExternalShare {
|
|
3771
3798
|
optional string actionUrl = 1;
|
|
@@ -3796,6 +3823,15 @@ message StatusAttribution {
|
|
|
3796
3823
|
optional bool isExplicit = 6;
|
|
3797
3824
|
}
|
|
3798
3825
|
|
|
3826
|
+
message RLAttribution {
|
|
3827
|
+
optional Source source = 1;
|
|
3828
|
+
enum Source {
|
|
3829
|
+
UNKNOWN = 0;
|
|
3830
|
+
RAY_BAN_META_GLASSES = 1;
|
|
3831
|
+
OAKLEY_META_GLASSES = 2;
|
|
3832
|
+
}
|
|
3833
|
+
}
|
|
3834
|
+
|
|
3799
3835
|
message StatusReshare {
|
|
3800
3836
|
optional Source source = 1;
|
|
3801
3837
|
optional Metadata metadata = 2;
|
|
@@ -3815,11 +3851,13 @@ message StatusAttribution {
|
|
|
3815
3851
|
}
|
|
3816
3852
|
|
|
3817
3853
|
enum Type {
|
|
3818
|
-
|
|
3819
|
-
|
|
3820
|
-
|
|
3821
|
-
|
|
3822
|
-
|
|
3854
|
+
UNKNOWN = 0;
|
|
3855
|
+
RESHARE = 1;
|
|
3856
|
+
EXTERNAL_SHARE = 2;
|
|
3857
|
+
MUSIC = 3;
|
|
3858
|
+
STATUS_MENTION = 4;
|
|
3859
|
+
GROUP_STATUS = 5;
|
|
3860
|
+
RL_ATTRIBUTION = 6;
|
|
3823
3861
|
}
|
|
3824
3862
|
}
|
|
3825
3863
|
|
|
@@ -3914,6 +3952,8 @@ message SyncActionValue {
|
|
|
3914
3952
|
optional PaymentTosAction paymentTosAction = 63;
|
|
3915
3953
|
optional PrivacySettingChannelsPersonalisedRecommendationAction privacySettingChannelsPersonalisedRecommendationAction = 64;
|
|
3916
3954
|
optional BusinessBroadcastAssociationAction businessBroadcastAssociationAction = 65;
|
|
3955
|
+
optional DetectedOutcomesStatusAction detectedOutcomesStatusAction = 66;
|
|
3956
|
+
optional MaibaAIFeaturesControlAction maibaAiFeaturesControlAction = 67;
|
|
3917
3957
|
message AgentAction {
|
|
3918
3958
|
optional string name = 1;
|
|
3919
3959
|
optional int32 deviceID = 2;
|
|
@@ -3996,6 +4036,10 @@ message SyncActionValue {
|
|
|
3996
4036
|
optional int64 messageTimestamp = 2;
|
|
3997
4037
|
}
|
|
3998
4038
|
|
|
4039
|
+
message DetectedOutcomesStatusAction {
|
|
4040
|
+
optional bool isEnabled = 1;
|
|
4041
|
+
}
|
|
4042
|
+
|
|
3999
4043
|
message ExternalWebBetaAction {
|
|
4000
4044
|
optional bool isOptIn = 1;
|
|
4001
4045
|
}
|
|
@@ -4056,6 +4100,15 @@ message SyncActionValue {
|
|
|
4056
4100
|
optional bool locked = 1;
|
|
4057
4101
|
}
|
|
4058
4102
|
|
|
4103
|
+
message MaibaAIFeaturesControlAction {
|
|
4104
|
+
optional MaibaAIFeatureStatus aiFeatureStatus = 1;
|
|
4105
|
+
enum MaibaAIFeatureStatus {
|
|
4106
|
+
ENABLED = 0;
|
|
4107
|
+
ENABLED_HAS_LEARNING = 1;
|
|
4108
|
+
DISABLED = 2;
|
|
4109
|
+
}
|
|
4110
|
+
}
|
|
4111
|
+
|
|
4059
4112
|
message MarkChatAsReadAction {
|
|
4060
4113
|
optional bool read = 1;
|
|
4061
4114
|
optional SyncActionValue.SyncActionMessageRange messageRange = 2;
|