slidge-whatsapp 0.3.0b0__cp311-cp311-manylinux_2_36_aarch64.whl → 0.3.1__cp311-cp311-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 (132) hide show
  1. slidge_whatsapp/contact.py +2 -0
  2. slidge_whatsapp/event.go +72 -22
  3. slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.h +156 -156
  4. slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.so +0 -0
  5. slidge_whatsapp/generated/build.py +121 -121
  6. slidge_whatsapp/generated/whatsapp.c +1491 -1491
  7. slidge_whatsapp/generated/whatsapp.go +1244 -1244
  8. slidge_whatsapp/generated/whatsapp.py +1188 -1188
  9. slidge_whatsapp/generated/whatsapp_go.h +156 -156
  10. slidge_whatsapp/go.mod +5 -5
  11. slidge_whatsapp/go.sum +14 -14
  12. slidge_whatsapp/session.go +4 -4
  13. slidge_whatsapp/vendor/github.com/ebitengine/purego/README.md +21 -5
  14. slidge_whatsapp/vendor/github.com/ebitengine/purego/abi_loong64.h +60 -0
  15. slidge_whatsapp/vendor/github.com/ebitengine/purego/cgo.go +1 -1
  16. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlerror.go +1 -1
  17. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn.go +1 -1
  18. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_netbsd.go +15 -0
  19. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_nocgo_netbsd.go +9 -0
  20. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_stubs.s +1 -1
  21. slidge_whatsapp/vendor/github.com/ebitengine/purego/func.go +113 -60
  22. slidge_whatsapp/vendor/github.com/ebitengine/purego/gen.go +6 -0
  23. slidge_whatsapp/vendor/github.com/ebitengine/purego/go_runtime.go +1 -1
  24. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/dlfcn_cgo_unix.go +2 -2
  25. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/syscall_cgo_unix.go +2 -2
  26. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/abi_loong64.h +60 -0
  27. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/asm_loong64.s +40 -0
  28. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/callbacks.go +1 -1
  29. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/doc.go +1 -1
  30. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_libinit.go +1 -1
  31. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_linux_loong64.go +92 -0
  32. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_netbsd.go +106 -0
  33. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_setenv.go +1 -1
  34. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_util.go +1 -1
  35. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/iscgo.go +1 -1
  36. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo.go +1 -1
  37. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_darwin.go +4 -0
  38. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_freebsd.go +4 -0
  39. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_linux.go +4 -0
  40. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_netbsd.go +26 -0
  41. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/netbsd.go +23 -0
  42. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/setenv.go +1 -1
  43. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols.go +11 -1
  44. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_darwin.go +1 -0
  45. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_freebsd.go +1 -0
  46. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_linux.go +1 -0
  47. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_netbsd.go +30 -0
  48. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_loong64.s +71 -0
  49. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_stubs.s +5 -1
  50. slidge_whatsapp/vendor/github.com/ebitengine/purego/nocgo.go +1 -1
  51. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_amd64.go +8 -4
  52. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_arm64.go +16 -6
  53. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_loong64.go +190 -0
  54. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_other.go +6 -2
  55. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_amd64.s +1 -1
  56. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_arm64.s +1 -1
  57. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_loong64.s +96 -0
  58. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_unix_arm64.s +1 -1
  59. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_unix_loong64.s +75 -0
  60. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall.go +6 -3
  61. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_cgo_linux.go +3 -3
  62. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_sysv.go +13 -10
  63. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_windows.go +1 -1
  64. slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_amd64.s +2002 -2002
  65. slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_arm64.s +4002 -4002
  66. slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_loong64.s +4014 -0
  67. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/log.go +1 -0
  68. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/module.go +118 -0
  69. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgradetable.go +0 -34
  70. slidge_whatsapp/vendor/go.mau.fi/util/exbytes/string.go +20 -0
  71. slidge_whatsapp/vendor/go.mau.fi/util/exbytes/writer.go +78 -0
  72. slidge_whatsapp/vendor/go.mau.fi/util/exslices/cast.go +42 -0
  73. slidge_whatsapp/vendor/go.mau.fi/util/exslices/chunk.go +28 -0
  74. slidge_whatsapp/vendor/go.mau.fi/util/exslices/deduplicate.go +67 -0
  75. slidge_whatsapp/vendor/go.mau.fi/util/exslices/diff.go +63 -0
  76. slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +15 -1
  77. slidge_whatsapp/vendor/go.mau.fi/util/random/string.go +47 -7
  78. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +1 -0
  79. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +34 -0
  80. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +1 -0
  81. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +3 -0
  82. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +1 -2
  83. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +6 -0
  84. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +1 -0
  85. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +63 -42
  86. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +14 -10
  87. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +45 -18
  88. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +23 -0
  89. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +5 -1
  90. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +3 -7
  91. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAICommon/WAAICommon.pb.go +7747 -0
  92. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/{waBotMetadata/WABotMetadata.proto → waAICommon/WAAICommon.proto} +269 -9
  93. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +128 -14
  94. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +10 -0
  95. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +3236 -4732
  96. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +125 -273
  97. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +11 -2
  98. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +1 -0
  99. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +220 -81
  100. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +13 -0
  101. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +705 -449
  102. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +23 -0
  103. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +78 -24
  104. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +6 -0
  105. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +516 -267
  106. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +22 -0
  107. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +2 -0
  108. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/request.go +4 -0
  109. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +2 -3
  110. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +110 -28
  111. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +1 -1
  112. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +12 -0
  113. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/lidmap.go +82 -4
  114. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +112 -55
  115. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +8 -7
  116. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/11-redacted-phone-contacts.sql +2 -0
  117. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +20 -0
  118. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +6 -5
  119. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +7 -1
  120. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +3 -0
  121. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +31 -2
  122. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc.go +35 -17
  123. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go +14 -0
  124. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go +20 -0
  125. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +1 -1
  126. slidge_whatsapp/vendor/modules.txt +8 -6
  127. {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.1.dist-info}/METADATA +4 -3
  128. {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.1.dist-info}/RECORD +131 -107
  129. {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.1.dist-info}/WHEEL +1 -1
  130. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.pb.go +0 -5156
  131. {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.1.dist-info}/entry_points.txt +0 -0
  132. {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.1.dist-info/licenses}/LICENSE +0 -0
@@ -1339,72 +1339,134 @@ func (MessageAddOn_MessageAddOnType) EnumDescriptor() ([]byte, []int) {
1339
1339
  return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{4, 0}
1340
1340
  }
1341
1341
 
1342
+ type GroupHistoryBundleInfo_ProcessState int32
1343
+
1344
+ const (
1345
+ GroupHistoryBundleInfo_NOT_DOWNLOADED GroupHistoryBundleInfo_ProcessState = 0
1346
+ GroupHistoryBundleInfo_DOWNLOADED GroupHistoryBundleInfo_ProcessState = 1
1347
+ GroupHistoryBundleInfo_DOWNLOAD_FAILED GroupHistoryBundleInfo_ProcessState = 2
1348
+ )
1349
+
1350
+ // Enum value maps for GroupHistoryBundleInfo_ProcessState.
1351
+ var (
1352
+ GroupHistoryBundleInfo_ProcessState_name = map[int32]string{
1353
+ 0: "NOT_DOWNLOADED",
1354
+ 1: "DOWNLOADED",
1355
+ 2: "DOWNLOAD_FAILED",
1356
+ }
1357
+ GroupHistoryBundleInfo_ProcessState_value = map[string]int32{
1358
+ "NOT_DOWNLOADED": 0,
1359
+ "DOWNLOADED": 1,
1360
+ "DOWNLOAD_FAILED": 2,
1361
+ }
1362
+ )
1363
+
1364
+ func (x GroupHistoryBundleInfo_ProcessState) Enum() *GroupHistoryBundleInfo_ProcessState {
1365
+ p := new(GroupHistoryBundleInfo_ProcessState)
1366
+ *p = x
1367
+ return p
1368
+ }
1369
+
1370
+ func (x GroupHistoryBundleInfo_ProcessState) String() string {
1371
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
1372
+ }
1373
+
1374
+ func (GroupHistoryBundleInfo_ProcessState) Descriptor() protoreflect.EnumDescriptor {
1375
+ return file_waWeb_WAWebProtobufsWeb_proto_enumTypes[9].Descriptor()
1376
+ }
1377
+
1378
+ func (GroupHistoryBundleInfo_ProcessState) Type() protoreflect.EnumType {
1379
+ return &file_waWeb_WAWebProtobufsWeb_proto_enumTypes[9]
1380
+ }
1381
+
1382
+ func (x GroupHistoryBundleInfo_ProcessState) Number() protoreflect.EnumNumber {
1383
+ return protoreflect.EnumNumber(x)
1384
+ }
1385
+
1386
+ // Deprecated: Do not use.
1387
+ func (x *GroupHistoryBundleInfo_ProcessState) UnmarshalJSON(b []byte) error {
1388
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
1389
+ if err != nil {
1390
+ return err
1391
+ }
1392
+ *x = GroupHistoryBundleInfo_ProcessState(num)
1393
+ return nil
1394
+ }
1395
+
1396
+ // Deprecated: Use GroupHistoryBundleInfo_ProcessState.Descriptor instead.
1397
+ func (GroupHistoryBundleInfo_ProcessState) EnumDescriptor() ([]byte, []int) {
1398
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{5, 0}
1399
+ }
1400
+
1342
1401
  type WebMessageInfo struct {
1343
- state protoimpl.MessageState `protogen:"open.v1"`
1344
- Key *waCommon.MessageKey `protobuf:"bytes,1,req,name=key" json:"key,omitempty"`
1345
- Message *waE2E.Message `protobuf:"bytes,2,opt,name=message" json:"message,omitempty"`
1346
- MessageTimestamp *uint64 `protobuf:"varint,3,opt,name=messageTimestamp" json:"messageTimestamp,omitempty"`
1347
- Status *WebMessageInfo_Status `protobuf:"varint,4,opt,name=status,enum=WAWebProtobufsWeb.WebMessageInfo_Status" json:"status,omitempty"`
1348
- Participant *string `protobuf:"bytes,5,opt,name=participant" json:"participant,omitempty"`
1349
- MessageC2STimestamp *uint64 `protobuf:"varint,6,opt,name=messageC2STimestamp" json:"messageC2STimestamp,omitempty"`
1350
- Ignore *bool `protobuf:"varint,16,opt,name=ignore" json:"ignore,omitempty"`
1351
- Starred *bool `protobuf:"varint,17,opt,name=starred" json:"starred,omitempty"`
1352
- Broadcast *bool `protobuf:"varint,18,opt,name=broadcast" json:"broadcast,omitempty"`
1353
- PushName *string `protobuf:"bytes,19,opt,name=pushName" json:"pushName,omitempty"`
1354
- MediaCiphertextSHA256 []byte `protobuf:"bytes,20,opt,name=mediaCiphertextSHA256" json:"mediaCiphertextSHA256,omitempty"`
1355
- Multicast *bool `protobuf:"varint,21,opt,name=multicast" json:"multicast,omitempty"`
1356
- UrlText *bool `protobuf:"varint,22,opt,name=urlText" json:"urlText,omitempty"`
1357
- UrlNumber *bool `protobuf:"varint,23,opt,name=urlNumber" json:"urlNumber,omitempty"`
1358
- MessageStubType *WebMessageInfo_StubType `protobuf:"varint,24,opt,name=messageStubType,enum=WAWebProtobufsWeb.WebMessageInfo_StubType" json:"messageStubType,omitempty"`
1359
- ClearMedia *bool `protobuf:"varint,25,opt,name=clearMedia" json:"clearMedia,omitempty"`
1360
- MessageStubParameters []string `protobuf:"bytes,26,rep,name=messageStubParameters" json:"messageStubParameters,omitempty"`
1361
- Duration *uint32 `protobuf:"varint,27,opt,name=duration" json:"duration,omitempty"`
1362
- Labels []string `protobuf:"bytes,28,rep,name=labels" json:"labels,omitempty"`
1363
- PaymentInfo *PaymentInfo `protobuf:"bytes,29,opt,name=paymentInfo" json:"paymentInfo,omitempty"`
1364
- FinalLiveLocation *waE2E.LiveLocationMessage `protobuf:"bytes,30,opt,name=finalLiveLocation" json:"finalLiveLocation,omitempty"`
1365
- QuotedPaymentInfo *PaymentInfo `protobuf:"bytes,31,opt,name=quotedPaymentInfo" json:"quotedPaymentInfo,omitempty"`
1366
- EphemeralStartTimestamp *uint64 `protobuf:"varint,32,opt,name=ephemeralStartTimestamp" json:"ephemeralStartTimestamp,omitempty"`
1367
- EphemeralDuration *uint32 `protobuf:"varint,33,opt,name=ephemeralDuration" json:"ephemeralDuration,omitempty"`
1368
- EphemeralOffToOn *bool `protobuf:"varint,34,opt,name=ephemeralOffToOn" json:"ephemeralOffToOn,omitempty"`
1369
- EphemeralOutOfSync *bool `protobuf:"varint,35,opt,name=ephemeralOutOfSync" json:"ephemeralOutOfSync,omitempty"`
1370
- BizPrivacyStatus *WebMessageInfo_BizPrivacyStatus `protobuf:"varint,36,opt,name=bizPrivacyStatus,enum=WAWebProtobufsWeb.WebMessageInfo_BizPrivacyStatus" json:"bizPrivacyStatus,omitempty"`
1371
- VerifiedBizName *string `protobuf:"bytes,37,opt,name=verifiedBizName" json:"verifiedBizName,omitempty"`
1372
- MediaData *MediaData `protobuf:"bytes,38,opt,name=mediaData" json:"mediaData,omitempty"`
1373
- PhotoChange *PhotoChange `protobuf:"bytes,39,opt,name=photoChange" json:"photoChange,omitempty"`
1374
- UserReceipt []*UserReceipt `protobuf:"bytes,40,rep,name=userReceipt" json:"userReceipt,omitempty"`
1375
- Reactions []*Reaction `protobuf:"bytes,41,rep,name=reactions" json:"reactions,omitempty"`
1376
- QuotedStickerData *MediaData `protobuf:"bytes,42,opt,name=quotedStickerData" json:"quotedStickerData,omitempty"`
1377
- FutureproofData []byte `protobuf:"bytes,43,opt,name=futureproofData" json:"futureproofData,omitempty"`
1378
- StatusPsa *StatusPSA `protobuf:"bytes,44,opt,name=statusPsa" json:"statusPsa,omitempty"`
1379
- PollUpdates []*PollUpdate `protobuf:"bytes,45,rep,name=pollUpdates" json:"pollUpdates,omitempty"`
1380
- PollAdditionalMetadata *PollAdditionalMetadata `protobuf:"bytes,46,opt,name=pollAdditionalMetadata" json:"pollAdditionalMetadata,omitempty"`
1381
- AgentID *string `protobuf:"bytes,47,opt,name=agentID" json:"agentID,omitempty"`
1382
- StatusAlreadyViewed *bool `protobuf:"varint,48,opt,name=statusAlreadyViewed" json:"statusAlreadyViewed,omitempty"`
1383
- MessageSecret []byte `protobuf:"bytes,49,opt,name=messageSecret" json:"messageSecret,omitempty"`
1384
- KeepInChat *KeepInChat `protobuf:"bytes,50,opt,name=keepInChat" json:"keepInChat,omitempty"`
1385
- OriginalSelfAuthorUserJIDString *string `protobuf:"bytes,51,opt,name=originalSelfAuthorUserJIDString" json:"originalSelfAuthorUserJIDString,omitempty"`
1386
- RevokeMessageTimestamp *uint64 `protobuf:"varint,52,opt,name=revokeMessageTimestamp" json:"revokeMessageTimestamp,omitempty"`
1387
- PinInChat *PinInChat `protobuf:"bytes,54,opt,name=pinInChat" json:"pinInChat,omitempty"`
1388
- PremiumMessageInfo *PremiumMessageInfo `protobuf:"bytes,55,opt,name=premiumMessageInfo" json:"premiumMessageInfo,omitempty"`
1389
- Is1PBizBotMessage *bool `protobuf:"varint,56,opt,name=is1PBizBotMessage" json:"is1PBizBotMessage,omitempty"`
1390
- IsGroupHistoryMessage *bool `protobuf:"varint,57,opt,name=isGroupHistoryMessage" json:"isGroupHistoryMessage,omitempty"`
1391
- BotMessageInvokerJID *string `protobuf:"bytes,58,opt,name=botMessageInvokerJID" json:"botMessageInvokerJID,omitempty"`
1392
- CommentMetadata *CommentMetadata `protobuf:"bytes,59,opt,name=commentMetadata" json:"commentMetadata,omitempty"`
1393
- EventResponses []*EventResponse `protobuf:"bytes,61,rep,name=eventResponses" json:"eventResponses,omitempty"`
1394
- ReportingTokenInfo *ReportingTokenInfo `protobuf:"bytes,62,opt,name=reportingTokenInfo" json:"reportingTokenInfo,omitempty"`
1395
- NewsletterServerID *uint64 `protobuf:"varint,63,opt,name=newsletterServerID" json:"newsletterServerID,omitempty"`
1396
- EventAdditionalMetadata *EventAdditionalMetadata `protobuf:"bytes,64,opt,name=eventAdditionalMetadata" json:"eventAdditionalMetadata,omitempty"`
1397
- IsMentionedInStatus *bool `protobuf:"varint,65,opt,name=isMentionedInStatus" json:"isMentionedInStatus,omitempty"`
1398
- StatusMentions []string `protobuf:"bytes,66,rep,name=statusMentions" json:"statusMentions,omitempty"`
1399
- TargetMessageID *waCommon.MessageKey `protobuf:"bytes,67,opt,name=targetMessageID" json:"targetMessageID,omitempty"`
1400
- MessageAddOns []*MessageAddOn `protobuf:"bytes,68,rep,name=messageAddOns" json:"messageAddOns,omitempty"`
1401
- StatusMentionMessageInfo *StatusMentionMessage `protobuf:"bytes,69,opt,name=statusMentionMessageInfo" json:"statusMentionMessageInfo,omitempty"`
1402
- IsSupportAiMessage *bool `protobuf:"varint,70,opt,name=isSupportAiMessage" json:"isSupportAiMessage,omitempty"`
1403
- StatusMentionSources []string `protobuf:"bytes,71,rep,name=statusMentionSources" json:"statusMentionSources,omitempty"`
1404
- SupportAiCitations []*Citation `protobuf:"bytes,72,rep,name=supportAiCitations" json:"supportAiCitations,omitempty"`
1405
- BotTargetID *string `protobuf:"bytes,73,opt,name=botTargetID" json:"botTargetID,omitempty"`
1406
- unknownFields protoimpl.UnknownFields
1407
- sizeCache protoimpl.SizeCache
1402
+ state protoimpl.MessageState `protogen:"open.v1"`
1403
+ Key *waCommon.MessageKey `protobuf:"bytes,1,req,name=key" json:"key,omitempty"`
1404
+ Message *waE2E.Message `protobuf:"bytes,2,opt,name=message" json:"message,omitempty"`
1405
+ MessageTimestamp *uint64 `protobuf:"varint,3,opt,name=messageTimestamp" json:"messageTimestamp,omitempty"`
1406
+ Status *WebMessageInfo_Status `protobuf:"varint,4,opt,name=status,enum=WAWebProtobufsWeb.WebMessageInfo_Status" json:"status,omitempty"`
1407
+ Participant *string `protobuf:"bytes,5,opt,name=participant" json:"participant,omitempty"`
1408
+ MessageC2STimestamp *uint64 `protobuf:"varint,6,opt,name=messageC2STimestamp" json:"messageC2STimestamp,omitempty"`
1409
+ Ignore *bool `protobuf:"varint,16,opt,name=ignore" json:"ignore,omitempty"`
1410
+ Starred *bool `protobuf:"varint,17,opt,name=starred" json:"starred,omitempty"`
1411
+ Broadcast *bool `protobuf:"varint,18,opt,name=broadcast" json:"broadcast,omitempty"`
1412
+ PushName *string `protobuf:"bytes,19,opt,name=pushName" json:"pushName,omitempty"`
1413
+ MediaCiphertextSHA256 []byte `protobuf:"bytes,20,opt,name=mediaCiphertextSHA256" json:"mediaCiphertextSHA256,omitempty"`
1414
+ Multicast *bool `protobuf:"varint,21,opt,name=multicast" json:"multicast,omitempty"`
1415
+ UrlText *bool `protobuf:"varint,22,opt,name=urlText" json:"urlText,omitempty"`
1416
+ UrlNumber *bool `protobuf:"varint,23,opt,name=urlNumber" json:"urlNumber,omitempty"`
1417
+ MessageStubType *WebMessageInfo_StubType `protobuf:"varint,24,opt,name=messageStubType,enum=WAWebProtobufsWeb.WebMessageInfo_StubType" json:"messageStubType,omitempty"`
1418
+ ClearMedia *bool `protobuf:"varint,25,opt,name=clearMedia" json:"clearMedia,omitempty"`
1419
+ MessageStubParameters []string `protobuf:"bytes,26,rep,name=messageStubParameters" json:"messageStubParameters,omitempty"`
1420
+ Duration *uint32 `protobuf:"varint,27,opt,name=duration" json:"duration,omitempty"`
1421
+ Labels []string `protobuf:"bytes,28,rep,name=labels" json:"labels,omitempty"`
1422
+ PaymentInfo *PaymentInfo `protobuf:"bytes,29,opt,name=paymentInfo" json:"paymentInfo,omitempty"`
1423
+ FinalLiveLocation *waE2E.LiveLocationMessage `protobuf:"bytes,30,opt,name=finalLiveLocation" json:"finalLiveLocation,omitempty"`
1424
+ QuotedPaymentInfo *PaymentInfo `protobuf:"bytes,31,opt,name=quotedPaymentInfo" json:"quotedPaymentInfo,omitempty"`
1425
+ EphemeralStartTimestamp *uint64 `protobuf:"varint,32,opt,name=ephemeralStartTimestamp" json:"ephemeralStartTimestamp,omitempty"`
1426
+ EphemeralDuration *uint32 `protobuf:"varint,33,opt,name=ephemeralDuration" json:"ephemeralDuration,omitempty"`
1427
+ EphemeralOffToOn *bool `protobuf:"varint,34,opt,name=ephemeralOffToOn" json:"ephemeralOffToOn,omitempty"`
1428
+ EphemeralOutOfSync *bool `protobuf:"varint,35,opt,name=ephemeralOutOfSync" json:"ephemeralOutOfSync,omitempty"`
1429
+ BizPrivacyStatus *WebMessageInfo_BizPrivacyStatus `protobuf:"varint,36,opt,name=bizPrivacyStatus,enum=WAWebProtobufsWeb.WebMessageInfo_BizPrivacyStatus" json:"bizPrivacyStatus,omitempty"`
1430
+ VerifiedBizName *string `protobuf:"bytes,37,opt,name=verifiedBizName" json:"verifiedBizName,omitempty"`
1431
+ MediaData *MediaData `protobuf:"bytes,38,opt,name=mediaData" json:"mediaData,omitempty"`
1432
+ PhotoChange *PhotoChange `protobuf:"bytes,39,opt,name=photoChange" json:"photoChange,omitempty"`
1433
+ UserReceipt []*UserReceipt `protobuf:"bytes,40,rep,name=userReceipt" json:"userReceipt,omitempty"`
1434
+ Reactions []*Reaction `protobuf:"bytes,41,rep,name=reactions" json:"reactions,omitempty"`
1435
+ QuotedStickerData *MediaData `protobuf:"bytes,42,opt,name=quotedStickerData" json:"quotedStickerData,omitempty"`
1436
+ FutureproofData []byte `protobuf:"bytes,43,opt,name=futureproofData" json:"futureproofData,omitempty"`
1437
+ StatusPsa *StatusPSA `protobuf:"bytes,44,opt,name=statusPsa" json:"statusPsa,omitempty"`
1438
+ PollUpdates []*PollUpdate `protobuf:"bytes,45,rep,name=pollUpdates" json:"pollUpdates,omitempty"`
1439
+ PollAdditionalMetadata *PollAdditionalMetadata `protobuf:"bytes,46,opt,name=pollAdditionalMetadata" json:"pollAdditionalMetadata,omitempty"`
1440
+ AgentID *string `protobuf:"bytes,47,opt,name=agentID" json:"agentID,omitempty"`
1441
+ StatusAlreadyViewed *bool `protobuf:"varint,48,opt,name=statusAlreadyViewed" json:"statusAlreadyViewed,omitempty"`
1442
+ MessageSecret []byte `protobuf:"bytes,49,opt,name=messageSecret" json:"messageSecret,omitempty"`
1443
+ KeepInChat *KeepInChat `protobuf:"bytes,50,opt,name=keepInChat" json:"keepInChat,omitempty"`
1444
+ OriginalSelfAuthorUserJIDString *string `protobuf:"bytes,51,opt,name=originalSelfAuthorUserJIDString" json:"originalSelfAuthorUserJIDString,omitempty"`
1445
+ RevokeMessageTimestamp *uint64 `protobuf:"varint,52,opt,name=revokeMessageTimestamp" json:"revokeMessageTimestamp,omitempty"`
1446
+ PinInChat *PinInChat `protobuf:"bytes,54,opt,name=pinInChat" json:"pinInChat,omitempty"`
1447
+ PremiumMessageInfo *PremiumMessageInfo `protobuf:"bytes,55,opt,name=premiumMessageInfo" json:"premiumMessageInfo,omitempty"`
1448
+ Is1PBizBotMessage *bool `protobuf:"varint,56,opt,name=is1PBizBotMessage" json:"is1PBizBotMessage,omitempty"`
1449
+ IsGroupHistoryMessage *bool `protobuf:"varint,57,opt,name=isGroupHistoryMessage" json:"isGroupHistoryMessage,omitempty"`
1450
+ BotMessageInvokerJID *string `protobuf:"bytes,58,opt,name=botMessageInvokerJID" json:"botMessageInvokerJID,omitempty"`
1451
+ CommentMetadata *CommentMetadata `protobuf:"bytes,59,opt,name=commentMetadata" json:"commentMetadata,omitempty"`
1452
+ EventResponses []*EventResponse `protobuf:"bytes,61,rep,name=eventResponses" json:"eventResponses,omitempty"`
1453
+ ReportingTokenInfo *ReportingTokenInfo `protobuf:"bytes,62,opt,name=reportingTokenInfo" json:"reportingTokenInfo,omitempty"`
1454
+ NewsletterServerID *uint64 `protobuf:"varint,63,opt,name=newsletterServerID" json:"newsletterServerID,omitempty"`
1455
+ EventAdditionalMetadata *EventAdditionalMetadata `protobuf:"bytes,64,opt,name=eventAdditionalMetadata" json:"eventAdditionalMetadata,omitempty"`
1456
+ IsMentionedInStatus *bool `protobuf:"varint,65,opt,name=isMentionedInStatus" json:"isMentionedInStatus,omitempty"`
1457
+ StatusMentions []string `protobuf:"bytes,66,rep,name=statusMentions" json:"statusMentions,omitempty"`
1458
+ TargetMessageID *waCommon.MessageKey `protobuf:"bytes,67,opt,name=targetMessageID" json:"targetMessageID,omitempty"`
1459
+ MessageAddOns []*MessageAddOn `protobuf:"bytes,68,rep,name=messageAddOns" json:"messageAddOns,omitempty"`
1460
+ StatusMentionMessageInfo *StatusMentionMessage `protobuf:"bytes,69,opt,name=statusMentionMessageInfo" json:"statusMentionMessageInfo,omitempty"`
1461
+ IsSupportAiMessage *bool `protobuf:"varint,70,opt,name=isSupportAiMessage" json:"isSupportAiMessage,omitempty"`
1462
+ StatusMentionSources []string `protobuf:"bytes,71,rep,name=statusMentionSources" json:"statusMentionSources,omitempty"`
1463
+ SupportAiCitations []*Citation `protobuf:"bytes,72,rep,name=supportAiCitations" json:"supportAiCitations,omitempty"`
1464
+ BotTargetID *string `protobuf:"bytes,73,opt,name=botTargetID" json:"botTargetID,omitempty"`
1465
+ GroupHistoryIndividualMessageInfo *GroupHistoryIndividualMessageInfo `protobuf:"bytes,74,opt,name=groupHistoryIndividualMessageInfo" json:"groupHistoryIndividualMessageInfo,omitempty"`
1466
+ GroupHistoryBundleInfo *GroupHistoryBundleInfo `protobuf:"bytes,75,opt,name=groupHistoryBundleInfo" json:"groupHistoryBundleInfo,omitempty"`
1467
+ InteractiveMessageAdditionalMetadata *InteractiveMessageAdditionalMetadata `protobuf:"bytes,76,opt,name=interactiveMessageAdditionalMetadata" json:"interactiveMessageAdditionalMetadata,omitempty"`
1468
+ unknownFields protoimpl.UnknownFields
1469
+ sizeCache protoimpl.SizeCache
1408
1470
  }
1409
1471
 
1410
1472
  func (x *WebMessageInfo) Reset() {
@@ -1871,6 +1933,27 @@ func (x *WebMessageInfo) GetBotTargetID() string {
1871
1933
  return ""
1872
1934
  }
1873
1935
 
1936
+ func (x *WebMessageInfo) GetGroupHistoryIndividualMessageInfo() *GroupHistoryIndividualMessageInfo {
1937
+ if x != nil {
1938
+ return x.GroupHistoryIndividualMessageInfo
1939
+ }
1940
+ return nil
1941
+ }
1942
+
1943
+ func (x *WebMessageInfo) GetGroupHistoryBundleInfo() *GroupHistoryBundleInfo {
1944
+ if x != nil {
1945
+ return x.GroupHistoryBundleInfo
1946
+ }
1947
+ return nil
1948
+ }
1949
+
1950
+ func (x *WebMessageInfo) GetInteractiveMessageAdditionalMetadata() *InteractiveMessageAdditionalMetadata {
1951
+ if x != nil {
1952
+ return x.InteractiveMessageAdditionalMetadata
1953
+ }
1954
+ return nil
1955
+ }
1956
+
1874
1957
  type PaymentInfo struct {
1875
1958
  state protoimpl.MessageState `protogen:"open.v1"`
1876
1959
  CurrencyDeprecated *PaymentInfo_Currency `protobuf:"varint,1,opt,name=currencyDeprecated,enum=WAWebProtobufsWeb.PaymentInfo_Currency" json:"currencyDeprecated,omitempty"`
@@ -2583,6 +2666,58 @@ func (x *MessageAddOn) GetLegacyMessage() *LegacyMessage {
2583
2666
  return nil
2584
2667
  }
2585
2668
 
2669
+ type GroupHistoryBundleInfo struct {
2670
+ state protoimpl.MessageState `protogen:"open.v1"`
2671
+ DeprecatedMessageHistoryBundle *waE2E.MessageHistoryBundle `protobuf:"bytes,1,opt,name=deprecatedMessageHistoryBundle" json:"deprecatedMessageHistoryBundle,omitempty"`
2672
+ ProcessState *GroupHistoryBundleInfo_ProcessState `protobuf:"varint,2,opt,name=processState,enum=WAWebProtobufsWeb.GroupHistoryBundleInfo_ProcessState" json:"processState,omitempty"`
2673
+ unknownFields protoimpl.UnknownFields
2674
+ sizeCache protoimpl.SizeCache
2675
+ }
2676
+
2677
+ func (x *GroupHistoryBundleInfo) Reset() {
2678
+ *x = GroupHistoryBundleInfo{}
2679
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[5]
2680
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2681
+ ms.StoreMessageInfo(mi)
2682
+ }
2683
+
2684
+ func (x *GroupHistoryBundleInfo) String() string {
2685
+ return protoimpl.X.MessageStringOf(x)
2686
+ }
2687
+
2688
+ func (*GroupHistoryBundleInfo) ProtoMessage() {}
2689
+
2690
+ func (x *GroupHistoryBundleInfo) ProtoReflect() protoreflect.Message {
2691
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[5]
2692
+ if x != nil {
2693
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2694
+ if ms.LoadMessageInfo() == nil {
2695
+ ms.StoreMessageInfo(mi)
2696
+ }
2697
+ return ms
2698
+ }
2699
+ return mi.MessageOf(x)
2700
+ }
2701
+
2702
+ // Deprecated: Use GroupHistoryBundleInfo.ProtoReflect.Descriptor instead.
2703
+ func (*GroupHistoryBundleInfo) Descriptor() ([]byte, []int) {
2704
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{5}
2705
+ }
2706
+
2707
+ func (x *GroupHistoryBundleInfo) GetDeprecatedMessageHistoryBundle() *waE2E.MessageHistoryBundle {
2708
+ if x != nil {
2709
+ return x.DeprecatedMessageHistoryBundle
2710
+ }
2711
+ return nil
2712
+ }
2713
+
2714
+ func (x *GroupHistoryBundleInfo) GetProcessState() GroupHistoryBundleInfo_ProcessState {
2715
+ if x != nil && x.ProcessState != nil {
2716
+ return *x.ProcessState
2717
+ }
2718
+ return GroupHistoryBundleInfo_NOT_DOWNLOADED
2719
+ }
2720
+
2586
2721
  type CommentMetadata struct {
2587
2722
  state protoimpl.MessageState `protogen:"open.v1"`
2588
2723
  CommentParentKey *waCommon.MessageKey `protobuf:"bytes,1,opt,name=commentParentKey" json:"commentParentKey,omitempty"`
@@ -2593,7 +2728,7 @@ type CommentMetadata struct {
2593
2728
 
2594
2729
  func (x *CommentMetadata) Reset() {
2595
2730
  *x = CommentMetadata{}
2596
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[5]
2731
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[6]
2597
2732
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2598
2733
  ms.StoreMessageInfo(mi)
2599
2734
  }
@@ -2605,7 +2740,7 @@ func (x *CommentMetadata) String() string {
2605
2740
  func (*CommentMetadata) ProtoMessage() {}
2606
2741
 
2607
2742
  func (x *CommentMetadata) ProtoReflect() protoreflect.Message {
2608
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[5]
2743
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[6]
2609
2744
  if x != nil {
2610
2745
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2611
2746
  if ms.LoadMessageInfo() == nil {
@@ -2618,7 +2753,7 @@ func (x *CommentMetadata) ProtoReflect() protoreflect.Message {
2618
2753
 
2619
2754
  // Deprecated: Use CommentMetadata.ProtoReflect.Descriptor instead.
2620
2755
  func (*CommentMetadata) Descriptor() ([]byte, []int) {
2621
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{5}
2756
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{6}
2622
2757
  }
2623
2758
 
2624
2759
  func (x *CommentMetadata) GetCommentParentKey() *waCommon.MessageKey {
@@ -2647,7 +2782,7 @@ type WebNotificationsInfo struct {
2647
2782
 
2648
2783
  func (x *WebNotificationsInfo) Reset() {
2649
2784
  *x = WebNotificationsInfo{}
2650
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[6]
2785
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[7]
2651
2786
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2652
2787
  ms.StoreMessageInfo(mi)
2653
2788
  }
@@ -2659,7 +2794,7 @@ func (x *WebNotificationsInfo) String() string {
2659
2794
  func (*WebNotificationsInfo) ProtoMessage() {}
2660
2795
 
2661
2796
  func (x *WebNotificationsInfo) ProtoReflect() protoreflect.Message {
2662
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[6]
2797
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[7]
2663
2798
  if x != nil {
2664
2799
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2665
2800
  if ms.LoadMessageInfo() == nil {
@@ -2672,7 +2807,7 @@ func (x *WebNotificationsInfo) ProtoReflect() protoreflect.Message {
2672
2807
 
2673
2808
  // Deprecated: Use WebNotificationsInfo.ProtoReflect.Descriptor instead.
2674
2809
  func (*WebNotificationsInfo) Descriptor() ([]byte, []int) {
2675
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{6}
2810
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{7}
2676
2811
  }
2677
2812
 
2678
2813
  func (x *WebNotificationsInfo) GetTimestamp() uint64 {
@@ -2715,7 +2850,7 @@ type NotificationMessageInfo struct {
2715
2850
 
2716
2851
  func (x *NotificationMessageInfo) Reset() {
2717
2852
  *x = NotificationMessageInfo{}
2718
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[7]
2853
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[8]
2719
2854
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2720
2855
  ms.StoreMessageInfo(mi)
2721
2856
  }
@@ -2727,7 +2862,7 @@ func (x *NotificationMessageInfo) String() string {
2727
2862
  func (*NotificationMessageInfo) ProtoMessage() {}
2728
2863
 
2729
2864
  func (x *NotificationMessageInfo) ProtoReflect() protoreflect.Message {
2730
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[7]
2865
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[8]
2731
2866
  if x != nil {
2732
2867
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2733
2868
  if ms.LoadMessageInfo() == nil {
@@ -2740,7 +2875,7 @@ func (x *NotificationMessageInfo) ProtoReflect() protoreflect.Message {
2740
2875
 
2741
2876
  // Deprecated: Use NotificationMessageInfo.ProtoReflect.Descriptor instead.
2742
2877
  func (*NotificationMessageInfo) Descriptor() ([]byte, []int) {
2743
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{7}
2878
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{8}
2744
2879
  }
2745
2880
 
2746
2881
  func (x *NotificationMessageInfo) GetKey() *waCommon.MessageKey {
@@ -2780,7 +2915,7 @@ type ReportingTokenInfo struct {
2780
2915
 
2781
2916
  func (x *ReportingTokenInfo) Reset() {
2782
2917
  *x = ReportingTokenInfo{}
2783
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[8]
2918
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[9]
2784
2919
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2785
2920
  ms.StoreMessageInfo(mi)
2786
2921
  }
@@ -2792,7 +2927,7 @@ func (x *ReportingTokenInfo) String() string {
2792
2927
  func (*ReportingTokenInfo) ProtoMessage() {}
2793
2928
 
2794
2929
  func (x *ReportingTokenInfo) ProtoReflect() protoreflect.Message {
2795
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[8]
2930
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[9]
2796
2931
  if x != nil {
2797
2932
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2798
2933
  if ms.LoadMessageInfo() == nil {
@@ -2805,7 +2940,7 @@ func (x *ReportingTokenInfo) ProtoReflect() protoreflect.Message {
2805
2940
 
2806
2941
  // Deprecated: Use ReportingTokenInfo.ProtoReflect.Descriptor instead.
2807
2942
  func (*ReportingTokenInfo) Descriptor() ([]byte, []int) {
2808
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{8}
2943
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{9}
2809
2944
  }
2810
2945
 
2811
2946
  func (x *ReportingTokenInfo) GetReportingTag() []byte {
@@ -2824,7 +2959,7 @@ type MediaData struct {
2824
2959
 
2825
2960
  func (x *MediaData) Reset() {
2826
2961
  *x = MediaData{}
2827
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[9]
2962
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[10]
2828
2963
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2829
2964
  ms.StoreMessageInfo(mi)
2830
2965
  }
@@ -2836,7 +2971,7 @@ func (x *MediaData) String() string {
2836
2971
  func (*MediaData) ProtoMessage() {}
2837
2972
 
2838
2973
  func (x *MediaData) ProtoReflect() protoreflect.Message {
2839
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[9]
2974
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[10]
2840
2975
  if x != nil {
2841
2976
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2842
2977
  if ms.LoadMessageInfo() == nil {
@@ -2849,7 +2984,7 @@ func (x *MediaData) ProtoReflect() protoreflect.Message {
2849
2984
 
2850
2985
  // Deprecated: Use MediaData.ProtoReflect.Descriptor instead.
2851
2986
  func (*MediaData) Descriptor() ([]byte, []int) {
2852
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{9}
2987
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{10}
2853
2988
  }
2854
2989
 
2855
2990
  func (x *MediaData) GetLocalPath() string {
@@ -2870,7 +3005,7 @@ type PhotoChange struct {
2870
3005
 
2871
3006
  func (x *PhotoChange) Reset() {
2872
3007
  *x = PhotoChange{}
2873
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[10]
3008
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[11]
2874
3009
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2875
3010
  ms.StoreMessageInfo(mi)
2876
3011
  }
@@ -2882,7 +3017,7 @@ func (x *PhotoChange) String() string {
2882
3017
  func (*PhotoChange) ProtoMessage() {}
2883
3018
 
2884
3019
  func (x *PhotoChange) ProtoReflect() protoreflect.Message {
2885
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[10]
3020
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[11]
2886
3021
  if x != nil {
2887
3022
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2888
3023
  if ms.LoadMessageInfo() == nil {
@@ -2895,7 +3030,7 @@ func (x *PhotoChange) ProtoReflect() protoreflect.Message {
2895
3030
 
2896
3031
  // Deprecated: Use PhotoChange.ProtoReflect.Descriptor instead.
2897
3032
  func (*PhotoChange) Descriptor() ([]byte, []int) {
2898
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{10}
3033
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{11}
2899
3034
  }
2900
3035
 
2901
3036
  func (x *PhotoChange) GetOldPhoto() []byte {
@@ -2929,7 +3064,7 @@ type StatusPSA struct {
2929
3064
 
2930
3065
  func (x *StatusPSA) Reset() {
2931
3066
  *x = StatusPSA{}
2932
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[11]
3067
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[12]
2933
3068
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2934
3069
  ms.StoreMessageInfo(mi)
2935
3070
  }
@@ -2941,7 +3076,7 @@ func (x *StatusPSA) String() string {
2941
3076
  func (*StatusPSA) ProtoMessage() {}
2942
3077
 
2943
3078
  func (x *StatusPSA) ProtoReflect() protoreflect.Message {
2944
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[11]
3079
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[12]
2945
3080
  if x != nil {
2946
3081
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2947
3082
  if ms.LoadMessageInfo() == nil {
@@ -2954,7 +3089,7 @@ func (x *StatusPSA) ProtoReflect() protoreflect.Message {
2954
3089
 
2955
3090
  // Deprecated: Use StatusPSA.ProtoReflect.Descriptor instead.
2956
3091
  func (*StatusPSA) Descriptor() ([]byte, []int) {
2957
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{11}
3092
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{12}
2958
3093
  }
2959
3094
 
2960
3095
  func (x *StatusPSA) GetCampaignID() uint64 {
@@ -2985,7 +3120,7 @@ type UserReceipt struct {
2985
3120
 
2986
3121
  func (x *UserReceipt) Reset() {
2987
3122
  *x = UserReceipt{}
2988
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[12]
3123
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[13]
2989
3124
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2990
3125
  ms.StoreMessageInfo(mi)
2991
3126
  }
@@ -2997,7 +3132,7 @@ func (x *UserReceipt) String() string {
2997
3132
  func (*UserReceipt) ProtoMessage() {}
2998
3133
 
2999
3134
  func (x *UserReceipt) ProtoReflect() protoreflect.Message {
3000
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[12]
3135
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[13]
3001
3136
  if x != nil {
3002
3137
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3003
3138
  if ms.LoadMessageInfo() == nil {
@@ -3010,7 +3145,7 @@ func (x *UserReceipt) ProtoReflect() protoreflect.Message {
3010
3145
 
3011
3146
  // Deprecated: Use UserReceipt.ProtoReflect.Descriptor instead.
3012
3147
  func (*UserReceipt) Descriptor() ([]byte, []int) {
3013
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{12}
3148
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{13}
3014
3149
  }
3015
3150
 
3016
3151
  func (x *UserReceipt) GetUserJID() string {
@@ -3068,7 +3203,7 @@ type Reaction struct {
3068
3203
 
3069
3204
  func (x *Reaction) Reset() {
3070
3205
  *x = Reaction{}
3071
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[13]
3206
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[14]
3072
3207
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3073
3208
  ms.StoreMessageInfo(mi)
3074
3209
  }
@@ -3080,7 +3215,7 @@ func (x *Reaction) String() string {
3080
3215
  func (*Reaction) ProtoMessage() {}
3081
3216
 
3082
3217
  func (x *Reaction) ProtoReflect() protoreflect.Message {
3083
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[13]
3218
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[14]
3084
3219
  if x != nil {
3085
3220
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3086
3221
  if ms.LoadMessageInfo() == nil {
@@ -3093,7 +3228,7 @@ func (x *Reaction) ProtoReflect() protoreflect.Message {
3093
3228
 
3094
3229
  // Deprecated: Use Reaction.ProtoReflect.Descriptor instead.
3095
3230
  func (*Reaction) Descriptor() ([]byte, []int) {
3096
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{13}
3231
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{14}
3097
3232
  }
3098
3233
 
3099
3234
  func (x *Reaction) GetKey() *waCommon.MessageKey {
@@ -3144,7 +3279,7 @@ type PollUpdate struct {
3144
3279
 
3145
3280
  func (x *PollUpdate) Reset() {
3146
3281
  *x = PollUpdate{}
3147
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[14]
3282
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[15]
3148
3283
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3149
3284
  ms.StoreMessageInfo(mi)
3150
3285
  }
@@ -3156,7 +3291,7 @@ func (x *PollUpdate) String() string {
3156
3291
  func (*PollUpdate) ProtoMessage() {}
3157
3292
 
3158
3293
  func (x *PollUpdate) ProtoReflect() protoreflect.Message {
3159
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[14]
3294
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[15]
3160
3295
  if x != nil {
3161
3296
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3162
3297
  if ms.LoadMessageInfo() == nil {
@@ -3169,7 +3304,7 @@ func (x *PollUpdate) ProtoReflect() protoreflect.Message {
3169
3304
 
3170
3305
  // Deprecated: Use PollUpdate.ProtoReflect.Descriptor instead.
3171
3306
  func (*PollUpdate) Descriptor() ([]byte, []int) {
3172
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{14}
3307
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{15}
3173
3308
  }
3174
3309
 
3175
3310
  func (x *PollUpdate) GetPollUpdateMessageKey() *waCommon.MessageKey {
@@ -3216,7 +3351,7 @@ type PollAdditionalMetadata struct {
3216
3351
 
3217
3352
  func (x *PollAdditionalMetadata) Reset() {
3218
3353
  *x = PollAdditionalMetadata{}
3219
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[15]
3354
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[16]
3220
3355
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3221
3356
  ms.StoreMessageInfo(mi)
3222
3357
  }
@@ -3228,7 +3363,7 @@ func (x *PollAdditionalMetadata) String() string {
3228
3363
  func (*PollAdditionalMetadata) ProtoMessage() {}
3229
3364
 
3230
3365
  func (x *PollAdditionalMetadata) ProtoReflect() protoreflect.Message {
3231
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[15]
3366
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[16]
3232
3367
  if x != nil {
3233
3368
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3234
3369
  if ms.LoadMessageInfo() == nil {
@@ -3241,7 +3376,7 @@ func (x *PollAdditionalMetadata) ProtoReflect() protoreflect.Message {
3241
3376
 
3242
3377
  // Deprecated: Use PollAdditionalMetadata.ProtoReflect.Descriptor instead.
3243
3378
  func (*PollAdditionalMetadata) Descriptor() ([]byte, []int) {
3244
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{15}
3379
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{16}
3245
3380
  }
3246
3381
 
3247
3382
  func (x *PollAdditionalMetadata) GetPollInvalidated() bool {
@@ -3251,6 +3386,50 @@ func (x *PollAdditionalMetadata) GetPollInvalidated() bool {
3251
3386
  return false
3252
3387
  }
3253
3388
 
3389
+ type InteractiveMessageAdditionalMetadata struct {
3390
+ state protoimpl.MessageState `protogen:"open.v1"`
3391
+ IsGalaxyFlowCompleted *bool `protobuf:"varint,1,opt,name=isGalaxyFlowCompleted" json:"isGalaxyFlowCompleted,omitempty"`
3392
+ unknownFields protoimpl.UnknownFields
3393
+ sizeCache protoimpl.SizeCache
3394
+ }
3395
+
3396
+ func (x *InteractiveMessageAdditionalMetadata) Reset() {
3397
+ *x = InteractiveMessageAdditionalMetadata{}
3398
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[17]
3399
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3400
+ ms.StoreMessageInfo(mi)
3401
+ }
3402
+
3403
+ func (x *InteractiveMessageAdditionalMetadata) String() string {
3404
+ return protoimpl.X.MessageStringOf(x)
3405
+ }
3406
+
3407
+ func (*InteractiveMessageAdditionalMetadata) ProtoMessage() {}
3408
+
3409
+ func (x *InteractiveMessageAdditionalMetadata) ProtoReflect() protoreflect.Message {
3410
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[17]
3411
+ if x != nil {
3412
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3413
+ if ms.LoadMessageInfo() == nil {
3414
+ ms.StoreMessageInfo(mi)
3415
+ }
3416
+ return ms
3417
+ }
3418
+ return mi.MessageOf(x)
3419
+ }
3420
+
3421
+ // Deprecated: Use InteractiveMessageAdditionalMetadata.ProtoReflect.Descriptor instead.
3422
+ func (*InteractiveMessageAdditionalMetadata) Descriptor() ([]byte, []int) {
3423
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{17}
3424
+ }
3425
+
3426
+ func (x *InteractiveMessageAdditionalMetadata) GetIsGalaxyFlowCompleted() bool {
3427
+ if x != nil && x.IsGalaxyFlowCompleted != nil {
3428
+ return *x.IsGalaxyFlowCompleted
3429
+ }
3430
+ return false
3431
+ }
3432
+
3254
3433
  type EventAdditionalMetadata struct {
3255
3434
  state protoimpl.MessageState `protogen:"open.v1"`
3256
3435
  IsStale *bool `protobuf:"varint,1,opt,name=isStale" json:"isStale,omitempty"`
@@ -3260,7 +3439,7 @@ type EventAdditionalMetadata struct {
3260
3439
 
3261
3440
  func (x *EventAdditionalMetadata) Reset() {
3262
3441
  *x = EventAdditionalMetadata{}
3263
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[16]
3442
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[18]
3264
3443
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3265
3444
  ms.StoreMessageInfo(mi)
3266
3445
  }
@@ -3272,7 +3451,7 @@ func (x *EventAdditionalMetadata) String() string {
3272
3451
  func (*EventAdditionalMetadata) ProtoMessage() {}
3273
3452
 
3274
3453
  func (x *EventAdditionalMetadata) ProtoReflect() protoreflect.Message {
3275
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[16]
3454
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[18]
3276
3455
  if x != nil {
3277
3456
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3278
3457
  if ms.LoadMessageInfo() == nil {
@@ -3285,7 +3464,7 @@ func (x *EventAdditionalMetadata) ProtoReflect() protoreflect.Message {
3285
3464
 
3286
3465
  // Deprecated: Use EventAdditionalMetadata.ProtoReflect.Descriptor instead.
3287
3466
  func (*EventAdditionalMetadata) Descriptor() ([]byte, []int) {
3288
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{16}
3467
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{18}
3289
3468
  }
3290
3469
 
3291
3470
  func (x *EventAdditionalMetadata) GetIsStale() bool {
@@ -3309,7 +3488,7 @@ type KeepInChat struct {
3309
3488
 
3310
3489
  func (x *KeepInChat) Reset() {
3311
3490
  *x = KeepInChat{}
3312
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[17]
3491
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[19]
3313
3492
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3314
3493
  ms.StoreMessageInfo(mi)
3315
3494
  }
@@ -3321,7 +3500,7 @@ func (x *KeepInChat) String() string {
3321
3500
  func (*KeepInChat) ProtoMessage() {}
3322
3501
 
3323
3502
  func (x *KeepInChat) ProtoReflect() protoreflect.Message {
3324
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[17]
3503
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[19]
3325
3504
  if x != nil {
3326
3505
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3327
3506
  if ms.LoadMessageInfo() == nil {
@@ -3334,7 +3513,7 @@ func (x *KeepInChat) ProtoReflect() protoreflect.Message {
3334
3513
 
3335
3514
  // Deprecated: Use KeepInChat.ProtoReflect.Descriptor instead.
3336
3515
  func (*KeepInChat) Descriptor() ([]byte, []int) {
3337
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{17}
3516
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{19}
3338
3517
  }
3339
3518
 
3340
3519
  func (x *KeepInChat) GetKeepType() waE2E.KeepType {
@@ -3389,7 +3568,7 @@ type MessageAddOnContextInfo struct {
3389
3568
 
3390
3569
  func (x *MessageAddOnContextInfo) Reset() {
3391
3570
  *x = MessageAddOnContextInfo{}
3392
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[18]
3571
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[20]
3393
3572
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3394
3573
  ms.StoreMessageInfo(mi)
3395
3574
  }
@@ -3401,7 +3580,7 @@ func (x *MessageAddOnContextInfo) String() string {
3401
3580
  func (*MessageAddOnContextInfo) ProtoMessage() {}
3402
3581
 
3403
3582
  func (x *MessageAddOnContextInfo) ProtoReflect() protoreflect.Message {
3404
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[18]
3583
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[20]
3405
3584
  if x != nil {
3406
3585
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3407
3586
  if ms.LoadMessageInfo() == nil {
@@ -3414,7 +3593,7 @@ func (x *MessageAddOnContextInfo) ProtoReflect() protoreflect.Message {
3414
3593
 
3415
3594
  // Deprecated: Use MessageAddOnContextInfo.ProtoReflect.Descriptor instead.
3416
3595
  func (*MessageAddOnContextInfo) Descriptor() ([]byte, []int) {
3417
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{18}
3596
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{20}
3418
3597
  }
3419
3598
 
3420
3599
  func (x *MessageAddOnContextInfo) GetMessageAddOnDurationInSecs() uint32 {
@@ -3440,7 +3619,7 @@ type PremiumMessageInfo struct {
3440
3619
 
3441
3620
  func (x *PremiumMessageInfo) Reset() {
3442
3621
  *x = PremiumMessageInfo{}
3443
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[19]
3622
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[21]
3444
3623
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3445
3624
  ms.StoreMessageInfo(mi)
3446
3625
  }
@@ -3452,7 +3631,7 @@ func (x *PremiumMessageInfo) String() string {
3452
3631
  func (*PremiumMessageInfo) ProtoMessage() {}
3453
3632
 
3454
3633
  func (x *PremiumMessageInfo) ProtoReflect() protoreflect.Message {
3455
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[19]
3634
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[21]
3456
3635
  if x != nil {
3457
3636
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3458
3637
  if ms.LoadMessageInfo() == nil {
@@ -3465,7 +3644,7 @@ func (x *PremiumMessageInfo) ProtoReflect() protoreflect.Message {
3465
3644
 
3466
3645
  // Deprecated: Use PremiumMessageInfo.ProtoReflect.Descriptor instead.
3467
3646
  func (*PremiumMessageInfo) Descriptor() ([]byte, []int) {
3468
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{19}
3647
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{21}
3469
3648
  }
3470
3649
 
3471
3650
  func (x *PremiumMessageInfo) GetServerCampaignID() string {
@@ -3487,7 +3666,7 @@ type EventResponse struct {
3487
3666
 
3488
3667
  func (x *EventResponse) Reset() {
3489
3668
  *x = EventResponse{}
3490
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[20]
3669
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[22]
3491
3670
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3492
3671
  ms.StoreMessageInfo(mi)
3493
3672
  }
@@ -3499,7 +3678,7 @@ func (x *EventResponse) String() string {
3499
3678
  func (*EventResponse) ProtoMessage() {}
3500
3679
 
3501
3680
  func (x *EventResponse) ProtoReflect() protoreflect.Message {
3502
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[20]
3681
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[22]
3503
3682
  if x != nil {
3504
3683
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3505
3684
  if ms.LoadMessageInfo() == nil {
@@ -3512,7 +3691,7 @@ func (x *EventResponse) ProtoReflect() protoreflect.Message {
3512
3691
 
3513
3692
  // Deprecated: Use EventResponse.ProtoReflect.Descriptor instead.
3514
3693
  func (*EventResponse) Descriptor() ([]byte, []int) {
3515
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{20}
3694
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{22}
3516
3695
  }
3517
3696
 
3518
3697
  func (x *EventResponse) GetEventResponseMessageKey() *waCommon.MessageKey {
@@ -3553,7 +3732,7 @@ type LegacyMessage struct {
3553
3732
 
3554
3733
  func (x *LegacyMessage) Reset() {
3555
3734
  *x = LegacyMessage{}
3556
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[21]
3735
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[23]
3557
3736
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3558
3737
  ms.StoreMessageInfo(mi)
3559
3738
  }
@@ -3565,7 +3744,7 @@ func (x *LegacyMessage) String() string {
3565
3744
  func (*LegacyMessage) ProtoMessage() {}
3566
3745
 
3567
3746
  func (x *LegacyMessage) ProtoReflect() protoreflect.Message {
3568
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[21]
3747
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[23]
3569
3748
  if x != nil {
3570
3749
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3571
3750
  if ms.LoadMessageInfo() == nil {
@@ -3578,7 +3757,7 @@ func (x *LegacyMessage) ProtoReflect() protoreflect.Message {
3578
3757
 
3579
3758
  // Deprecated: Use LegacyMessage.ProtoReflect.Descriptor instead.
3580
3759
  func (*LegacyMessage) Descriptor() ([]byte, []int) {
3581
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{21}
3760
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{23}
3582
3761
  }
3583
3762
 
3584
3763
  func (x *LegacyMessage) GetEventResponseMessage() *waE2E.EventResponseMessage {
@@ -3604,7 +3783,7 @@ type StatusMentionMessage struct {
3604
3783
 
3605
3784
  func (x *StatusMentionMessage) Reset() {
3606
3785
  *x = StatusMentionMessage{}
3607
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[22]
3786
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[24]
3608
3787
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3609
3788
  ms.StoreMessageInfo(mi)
3610
3789
  }
@@ -3616,7 +3795,7 @@ func (x *StatusMentionMessage) String() string {
3616
3795
  func (*StatusMentionMessage) ProtoMessage() {}
3617
3796
 
3618
3797
  func (x *StatusMentionMessage) ProtoReflect() protoreflect.Message {
3619
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[22]
3798
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[24]
3620
3799
  if x != nil {
3621
3800
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3622
3801
  if ms.LoadMessageInfo() == nil {
@@ -3629,7 +3808,7 @@ func (x *StatusMentionMessage) ProtoReflect() protoreflect.Message {
3629
3808
 
3630
3809
  // Deprecated: Use StatusMentionMessage.ProtoReflect.Descriptor instead.
3631
3810
  func (*StatusMentionMessage) Descriptor() ([]byte, []int) {
3632
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{22}
3811
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{24}
3633
3812
  }
3634
3813
 
3635
3814
  func (x *StatusMentionMessage) GetQuotedStatus() *waE2E.Message {
@@ -3651,7 +3830,7 @@ type Citation struct {
3651
3830
 
3652
3831
  func (x *Citation) Reset() {
3653
3832
  *x = Citation{}
3654
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[23]
3833
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[25]
3655
3834
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3656
3835
  ms.StoreMessageInfo(mi)
3657
3836
  }
@@ -3663,7 +3842,7 @@ func (x *Citation) String() string {
3663
3842
  func (*Citation) ProtoMessage() {}
3664
3843
 
3665
3844
  func (x *Citation) ProtoReflect() protoreflect.Message {
3666
- mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[23]
3845
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[25]
3667
3846
  if x != nil {
3668
3847
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3669
3848
  if ms.LoadMessageInfo() == nil {
@@ -3676,7 +3855,7 @@ func (x *Citation) ProtoReflect() protoreflect.Message {
3676
3855
 
3677
3856
  // Deprecated: Use Citation.ProtoReflect.Descriptor instead.
3678
3857
  func (*Citation) Descriptor() ([]byte, []int) {
3679
- return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{23}
3858
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{25}
3680
3859
  }
3681
3860
 
3682
3861
  func (x *Citation) GetTitle() string {
@@ -3707,11 +3886,55 @@ func (x *Citation) GetImageURL() string {
3707
3886
  return ""
3708
3887
  }
3709
3888
 
3889
+ type GroupHistoryIndividualMessageInfo struct {
3890
+ state protoimpl.MessageState `protogen:"open.v1"`
3891
+ BundleMessageKey *waCommon.MessageKey `protobuf:"bytes,1,opt,name=bundleMessageKey" json:"bundleMessageKey,omitempty"`
3892
+ unknownFields protoimpl.UnknownFields
3893
+ sizeCache protoimpl.SizeCache
3894
+ }
3895
+
3896
+ func (x *GroupHistoryIndividualMessageInfo) Reset() {
3897
+ *x = GroupHistoryIndividualMessageInfo{}
3898
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[26]
3899
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3900
+ ms.StoreMessageInfo(mi)
3901
+ }
3902
+
3903
+ func (x *GroupHistoryIndividualMessageInfo) String() string {
3904
+ return protoimpl.X.MessageStringOf(x)
3905
+ }
3906
+
3907
+ func (*GroupHistoryIndividualMessageInfo) ProtoMessage() {}
3908
+
3909
+ func (x *GroupHistoryIndividualMessageInfo) ProtoReflect() protoreflect.Message {
3910
+ mi := &file_waWeb_WAWebProtobufsWeb_proto_msgTypes[26]
3911
+ if x != nil {
3912
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3913
+ if ms.LoadMessageInfo() == nil {
3914
+ ms.StoreMessageInfo(mi)
3915
+ }
3916
+ return ms
3917
+ }
3918
+ return mi.MessageOf(x)
3919
+ }
3920
+
3921
+ // Deprecated: Use GroupHistoryIndividualMessageInfo.ProtoReflect.Descriptor instead.
3922
+ func (*GroupHistoryIndividualMessageInfo) Descriptor() ([]byte, []int) {
3923
+ return file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP(), []int{26}
3924
+ }
3925
+
3926
+ func (x *GroupHistoryIndividualMessageInfo) GetBundleMessageKey() *waCommon.MessageKey {
3927
+ if x != nil {
3928
+ return x.BundleMessageKey
3929
+ }
3930
+ return nil
3931
+ }
3932
+
3710
3933
  var File_waWeb_WAWebProtobufsWeb_proto protoreflect.FileDescriptor
3711
3934
 
3712
3935
  const file_waWeb_WAWebProtobufsWeb_proto_rawDesc = "" +
3713
3936
  "\n" +
3714
- "\x1dwaWeb/WAWebProtobufsWeb.proto\x12\x11WAWebProtobufsWeb\x1a\x1dwaE2E/WAWebProtobufsE2E.proto\x1a\x17waCommon/WACommon.proto\"\xfaV\n" +
3937
+ "\x1dwaWeb/WAWebProtobufsWeb.proto\x12\x11WAWebProtobufsWeb\x1a\x1dwaE2E/WAWebProtobufsE2E.proto\x1a\x17waCommon/WACommon.proto\"\xf0Y\n" +
3715
3938
  "\x0eWebMessageInfo\x12&\n" +
3716
3939
  "\x03key\x18\x01 \x02(\v2\x14.WACommon.MessageKeyR\x03key\x124\n" +
3717
3940
  "\amessage\x18\x02 \x01(\v2\x1a.WAWebProtobufsE2E.MessageR\amessage\x12*\n" +
@@ -3778,7 +4001,10 @@ const file_waWeb_WAWebProtobufsWeb_proto_rawDesc = "" +
3778
4001
  "\x12isSupportAiMessage\x18F \x01(\bR\x12isSupportAiMessage\x122\n" +
3779
4002
  "\x14statusMentionSources\x18G \x03(\tR\x14statusMentionSources\x12K\n" +
3780
4003
  "\x12supportAiCitations\x18H \x03(\v2\x1b.WAWebProtobufsWeb.CitationR\x12supportAiCitations\x12 \n" +
3781
- "\vbotTargetID\x18I \x01(\tR\vbotTargetID\"=\n" +
4004
+ "\vbotTargetID\x18I \x01(\tR\vbotTargetID\x12\x82\x01\n" +
4005
+ "!groupHistoryIndividualMessageInfo\x18J \x01(\v24.WAWebProtobufsWeb.GroupHistoryIndividualMessageInfoR!groupHistoryIndividualMessageInfo\x12a\n" +
4006
+ "\x16groupHistoryBundleInfo\x18K \x01(\v2).WAWebProtobufsWeb.GroupHistoryBundleInfoR\x16groupHistoryBundleInfo\x12\x8b\x01\n" +
4007
+ "$interactiveMessageAdditionalMetadata\x18L \x01(\v27.WAWebProtobufsWeb.InteractiveMessageAdditionalMetadataR$interactiveMessageAdditionalMetadata\"=\n" +
3782
4008
  "\x10BizPrivacyStatus\x12\b\n" +
3783
4009
  "\x04E2EE\x10\x00\x12\x06\n" +
3784
4010
  "\x02FB\x10\x02\x12\a\n" +
@@ -4172,7 +4398,15 @@ const file_waWeb_WAWebProtobufsWeb_proto_rawDesc = "" +
4172
4398
  "\bREACTION\x10\x01\x12\x12\n" +
4173
4399
  "\x0eEVENT_RESPONSE\x10\x02\x12\x0f\n" +
4174
4400
  "\vPOLL_UPDATE\x10\x03\x12\x0f\n" +
4175
- "\vPIN_IN_CHAT\x10\x04\"s\n" +
4401
+ "\vPIN_IN_CHAT\x10\x04\"\xae\x02\n" +
4402
+ "\x16GroupHistoryBundleInfo\x12o\n" +
4403
+ "\x1edeprecatedMessageHistoryBundle\x18\x01 \x01(\v2'.WAWebProtobufsE2E.MessageHistoryBundleR\x1edeprecatedMessageHistoryBundle\x12Z\n" +
4404
+ "\fprocessState\x18\x02 \x01(\x0e26.WAWebProtobufsWeb.GroupHistoryBundleInfo.ProcessStateR\fprocessState\"G\n" +
4405
+ "\fProcessState\x12\x12\n" +
4406
+ "\x0eNOT_DOWNLOADED\x10\x00\x12\x0e\n" +
4407
+ "\n" +
4408
+ "DOWNLOADED\x10\x01\x12\x13\n" +
4409
+ "\x0fDOWNLOAD_FAILED\x10\x02\"s\n" +
4176
4410
  "\x0fCommentMetadata\x12@\n" +
4177
4411
  "\x10commentParentKey\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x10commentParentKey\x12\x1e\n" +
4178
4412
  "\n" +
@@ -4224,7 +4458,9 @@ const file_waWeb_WAWebProtobufsWeb_proto_rawDesc = "" +
4224
4458
  "\x11serverTimestampMS\x18\x04 \x01(\x03R\x11serverTimestampMS\x12\x16\n" +
4225
4459
  "\x06unread\x18\x05 \x01(\bR\x06unread\"B\n" +
4226
4460
  "\x16PollAdditionalMetadata\x12(\n" +
4227
- "\x0fpollInvalidated\x18\x01 \x01(\bR\x0fpollInvalidated\"3\n" +
4461
+ "\x0fpollInvalidated\x18\x01 \x01(\bR\x0fpollInvalidated\"\\\n" +
4462
+ "$InteractiveMessageAdditionalMetadata\x124\n" +
4463
+ "\x15isGalaxyFlowCompleted\x18\x01 \x01(\bR\x15isGalaxyFlowCompleted\"3\n" +
4228
4464
  "\x17EventAdditionalMetadata\x12\x18\n" +
4229
4465
  "\aisStale\x18\x01 \x01(\bR\aisStale\"\x91\x02\n" +
4230
4466
  "\n" +
@@ -4254,7 +4490,9 @@ const file_waWeb_WAWebProtobufsWeb_proto_rawDesc = "" +
4254
4490
  "\x05title\x18\x01 \x02(\tR\x05title\x12\x1a\n" +
4255
4491
  "\bsubtitle\x18\x02 \x02(\tR\bsubtitle\x12\x14\n" +
4256
4492
  "\x05cmsID\x18\x03 \x02(\tR\x05cmsID\x12\x1a\n" +
4257
- "\bimageURL\x18\x04 \x02(\tR\bimageURLB!Z\x1fgo.mau.fi/whatsmeow/proto/waWeb"
4493
+ "\bimageURL\x18\x04 \x02(\tR\bimageURL\"e\n" +
4494
+ "!GroupHistoryIndividualMessageInfo\x12@\n" +
4495
+ "\x10bundleMessageKey\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x10bundleMessageKeyB!Z\x1fgo.mau.fi/whatsmeow/proto/waWeb"
4258
4496
 
4259
4497
  var (
4260
4498
  file_waWeb_WAWebProtobufsWeb_proto_rawDescOnce sync.Once
@@ -4268,8 +4506,8 @@ func file_waWeb_WAWebProtobufsWeb_proto_rawDescGZIP() []byte {
4268
4506
  return file_waWeb_WAWebProtobufsWeb_proto_rawDescData
4269
4507
  }
4270
4508
 
4271
- var file_waWeb_WAWebProtobufsWeb_proto_enumTypes = make([]protoimpl.EnumInfo, 9)
4272
- var file_waWeb_WAWebProtobufsWeb_proto_msgTypes = make([]protoimpl.MessageInfo, 24)
4509
+ var file_waWeb_WAWebProtobufsWeb_proto_enumTypes = make([]protoimpl.EnumInfo, 10)
4510
+ var file_waWeb_WAWebProtobufsWeb_proto_msgTypes = make([]protoimpl.MessageInfo, 27)
4273
4511
  var file_waWeb_WAWebProtobufsWeb_proto_goTypes = []any{
4274
4512
  (WebMessageInfo_BizPrivacyStatus)(0), // 0: WAWebProtobufsWeb.WebMessageInfo.BizPrivacyStatus
4275
4513
  (WebMessageInfo_StubType)(0), // 1: WAWebProtobufsWeb.WebMessageInfo.StubType
@@ -4280,147 +4518,158 @@ var file_waWeb_WAWebProtobufsWeb_proto_goTypes = []any{
4280
4518
  (WebFeatures_Flag)(0), // 6: WAWebProtobufsWeb.WebFeatures.Flag
4281
4519
  (PinInChat_Type)(0), // 7: WAWebProtobufsWeb.PinInChat.Type
4282
4520
  (MessageAddOn_MessageAddOnType)(0), // 8: WAWebProtobufsWeb.MessageAddOn.MessageAddOnType
4283
- (*WebMessageInfo)(nil), // 9: WAWebProtobufsWeb.WebMessageInfo
4284
- (*PaymentInfo)(nil), // 10: WAWebProtobufsWeb.PaymentInfo
4285
- (*WebFeatures)(nil), // 11: WAWebProtobufsWeb.WebFeatures
4286
- (*PinInChat)(nil), // 12: WAWebProtobufsWeb.PinInChat
4287
- (*MessageAddOn)(nil), // 13: WAWebProtobufsWeb.MessageAddOn
4288
- (*CommentMetadata)(nil), // 14: WAWebProtobufsWeb.CommentMetadata
4289
- (*WebNotificationsInfo)(nil), // 15: WAWebProtobufsWeb.WebNotificationsInfo
4290
- (*NotificationMessageInfo)(nil), // 16: WAWebProtobufsWeb.NotificationMessageInfo
4291
- (*ReportingTokenInfo)(nil), // 17: WAWebProtobufsWeb.ReportingTokenInfo
4292
- (*MediaData)(nil), // 18: WAWebProtobufsWeb.MediaData
4293
- (*PhotoChange)(nil), // 19: WAWebProtobufsWeb.PhotoChange
4294
- (*StatusPSA)(nil), // 20: WAWebProtobufsWeb.StatusPSA
4295
- (*UserReceipt)(nil), // 21: WAWebProtobufsWeb.UserReceipt
4296
- (*Reaction)(nil), // 22: WAWebProtobufsWeb.Reaction
4297
- (*PollUpdate)(nil), // 23: WAWebProtobufsWeb.PollUpdate
4298
- (*PollAdditionalMetadata)(nil), // 24: WAWebProtobufsWeb.PollAdditionalMetadata
4299
- (*EventAdditionalMetadata)(nil), // 25: WAWebProtobufsWeb.EventAdditionalMetadata
4300
- (*KeepInChat)(nil), // 26: WAWebProtobufsWeb.KeepInChat
4301
- (*MessageAddOnContextInfo)(nil), // 27: WAWebProtobufsWeb.MessageAddOnContextInfo
4302
- (*PremiumMessageInfo)(nil), // 28: WAWebProtobufsWeb.PremiumMessageInfo
4303
- (*EventResponse)(nil), // 29: WAWebProtobufsWeb.EventResponse
4304
- (*LegacyMessage)(nil), // 30: WAWebProtobufsWeb.LegacyMessage
4305
- (*StatusMentionMessage)(nil), // 31: WAWebProtobufsWeb.StatusMentionMessage
4306
- (*Citation)(nil), // 32: WAWebProtobufsWeb.Citation
4307
- (*waCommon.MessageKey)(nil), // 33: WACommon.MessageKey
4308
- (*waE2E.Message)(nil), // 34: WAWebProtobufsE2E.Message
4309
- (*waE2E.LiveLocationMessage)(nil), // 35: WAWebProtobufsE2E.LiveLocationMessage
4310
- (*waE2E.Money)(nil), // 36: WAWebProtobufsE2E.Money
4311
- (*waE2E.PollVoteMessage)(nil), // 37: WAWebProtobufsE2E.PollVoteMessage
4312
- (waE2E.KeepType)(0), // 38: WAWebProtobufsE2E.KeepType
4313
- (waE2E.MessageContextInfo_MessageAddonExpiryType)(0), // 39: WAWebProtobufsE2E.MessageContextInfo.MessageAddonExpiryType
4314
- (*waE2E.EventResponseMessage)(nil), // 40: WAWebProtobufsE2E.EventResponseMessage
4521
+ (GroupHistoryBundleInfo_ProcessState)(0), // 9: WAWebProtobufsWeb.GroupHistoryBundleInfo.ProcessState
4522
+ (*WebMessageInfo)(nil), // 10: WAWebProtobufsWeb.WebMessageInfo
4523
+ (*PaymentInfo)(nil), // 11: WAWebProtobufsWeb.PaymentInfo
4524
+ (*WebFeatures)(nil), // 12: WAWebProtobufsWeb.WebFeatures
4525
+ (*PinInChat)(nil), // 13: WAWebProtobufsWeb.PinInChat
4526
+ (*MessageAddOn)(nil), // 14: WAWebProtobufsWeb.MessageAddOn
4527
+ (*GroupHistoryBundleInfo)(nil), // 15: WAWebProtobufsWeb.GroupHistoryBundleInfo
4528
+ (*CommentMetadata)(nil), // 16: WAWebProtobufsWeb.CommentMetadata
4529
+ (*WebNotificationsInfo)(nil), // 17: WAWebProtobufsWeb.WebNotificationsInfo
4530
+ (*NotificationMessageInfo)(nil), // 18: WAWebProtobufsWeb.NotificationMessageInfo
4531
+ (*ReportingTokenInfo)(nil), // 19: WAWebProtobufsWeb.ReportingTokenInfo
4532
+ (*MediaData)(nil), // 20: WAWebProtobufsWeb.MediaData
4533
+ (*PhotoChange)(nil), // 21: WAWebProtobufsWeb.PhotoChange
4534
+ (*StatusPSA)(nil), // 22: WAWebProtobufsWeb.StatusPSA
4535
+ (*UserReceipt)(nil), // 23: WAWebProtobufsWeb.UserReceipt
4536
+ (*Reaction)(nil), // 24: WAWebProtobufsWeb.Reaction
4537
+ (*PollUpdate)(nil), // 25: WAWebProtobufsWeb.PollUpdate
4538
+ (*PollAdditionalMetadata)(nil), // 26: WAWebProtobufsWeb.PollAdditionalMetadata
4539
+ (*InteractiveMessageAdditionalMetadata)(nil), // 27: WAWebProtobufsWeb.InteractiveMessageAdditionalMetadata
4540
+ (*EventAdditionalMetadata)(nil), // 28: WAWebProtobufsWeb.EventAdditionalMetadata
4541
+ (*KeepInChat)(nil), // 29: WAWebProtobufsWeb.KeepInChat
4542
+ (*MessageAddOnContextInfo)(nil), // 30: WAWebProtobufsWeb.MessageAddOnContextInfo
4543
+ (*PremiumMessageInfo)(nil), // 31: WAWebProtobufsWeb.PremiumMessageInfo
4544
+ (*EventResponse)(nil), // 32: WAWebProtobufsWeb.EventResponse
4545
+ (*LegacyMessage)(nil), // 33: WAWebProtobufsWeb.LegacyMessage
4546
+ (*StatusMentionMessage)(nil), // 34: WAWebProtobufsWeb.StatusMentionMessage
4547
+ (*Citation)(nil), // 35: WAWebProtobufsWeb.Citation
4548
+ (*GroupHistoryIndividualMessageInfo)(nil), // 36: WAWebProtobufsWeb.GroupHistoryIndividualMessageInfo
4549
+ (*waCommon.MessageKey)(nil), // 37: WACommon.MessageKey
4550
+ (*waE2E.Message)(nil), // 38: WAWebProtobufsE2E.Message
4551
+ (*waE2E.LiveLocationMessage)(nil), // 39: WAWebProtobufsE2E.LiveLocationMessage
4552
+ (*waE2E.Money)(nil), // 40: WAWebProtobufsE2E.Money
4553
+ (*waE2E.MessageHistoryBundle)(nil), // 41: WAWebProtobufsE2E.MessageHistoryBundle
4554
+ (*waE2E.PollVoteMessage)(nil), // 42: WAWebProtobufsE2E.PollVoteMessage
4555
+ (waE2E.KeepType)(0), // 43: WAWebProtobufsE2E.KeepType
4556
+ (waE2E.MessageContextInfo_MessageAddonExpiryType)(0), // 44: WAWebProtobufsE2E.MessageContextInfo.MessageAddonExpiryType
4557
+ (*waE2E.EventResponseMessage)(nil), // 45: WAWebProtobufsE2E.EventResponseMessage
4315
4558
  }
4316
4559
  var file_waWeb_WAWebProtobufsWeb_proto_depIdxs = []int32{
4317
- 33, // 0: WAWebProtobufsWeb.WebMessageInfo.key:type_name -> WACommon.MessageKey
4318
- 34, // 1: WAWebProtobufsWeb.WebMessageInfo.message:type_name -> WAWebProtobufsE2E.Message
4560
+ 37, // 0: WAWebProtobufsWeb.WebMessageInfo.key:type_name -> WACommon.MessageKey
4561
+ 38, // 1: WAWebProtobufsWeb.WebMessageInfo.message:type_name -> WAWebProtobufsE2E.Message
4319
4562
  2, // 2: WAWebProtobufsWeb.WebMessageInfo.status:type_name -> WAWebProtobufsWeb.WebMessageInfo.Status
4320
4563
  1, // 3: WAWebProtobufsWeb.WebMessageInfo.messageStubType:type_name -> WAWebProtobufsWeb.WebMessageInfo.StubType
4321
- 10, // 4: WAWebProtobufsWeb.WebMessageInfo.paymentInfo:type_name -> WAWebProtobufsWeb.PaymentInfo
4322
- 35, // 5: WAWebProtobufsWeb.WebMessageInfo.finalLiveLocation:type_name -> WAWebProtobufsE2E.LiveLocationMessage
4323
- 10, // 6: WAWebProtobufsWeb.WebMessageInfo.quotedPaymentInfo:type_name -> WAWebProtobufsWeb.PaymentInfo
4564
+ 11, // 4: WAWebProtobufsWeb.WebMessageInfo.paymentInfo:type_name -> WAWebProtobufsWeb.PaymentInfo
4565
+ 39, // 5: WAWebProtobufsWeb.WebMessageInfo.finalLiveLocation:type_name -> WAWebProtobufsE2E.LiveLocationMessage
4566
+ 11, // 6: WAWebProtobufsWeb.WebMessageInfo.quotedPaymentInfo:type_name -> WAWebProtobufsWeb.PaymentInfo
4324
4567
  0, // 7: WAWebProtobufsWeb.WebMessageInfo.bizPrivacyStatus:type_name -> WAWebProtobufsWeb.WebMessageInfo.BizPrivacyStatus
4325
- 18, // 8: WAWebProtobufsWeb.WebMessageInfo.mediaData:type_name -> WAWebProtobufsWeb.MediaData
4326
- 19, // 9: WAWebProtobufsWeb.WebMessageInfo.photoChange:type_name -> WAWebProtobufsWeb.PhotoChange
4327
- 21, // 10: WAWebProtobufsWeb.WebMessageInfo.userReceipt:type_name -> WAWebProtobufsWeb.UserReceipt
4328
- 22, // 11: WAWebProtobufsWeb.WebMessageInfo.reactions:type_name -> WAWebProtobufsWeb.Reaction
4329
- 18, // 12: WAWebProtobufsWeb.WebMessageInfo.quotedStickerData:type_name -> WAWebProtobufsWeb.MediaData
4330
- 20, // 13: WAWebProtobufsWeb.WebMessageInfo.statusPsa:type_name -> WAWebProtobufsWeb.StatusPSA
4331
- 23, // 14: WAWebProtobufsWeb.WebMessageInfo.pollUpdates:type_name -> WAWebProtobufsWeb.PollUpdate
4332
- 24, // 15: WAWebProtobufsWeb.WebMessageInfo.pollAdditionalMetadata:type_name -> WAWebProtobufsWeb.PollAdditionalMetadata
4333
- 26, // 16: WAWebProtobufsWeb.WebMessageInfo.keepInChat:type_name -> WAWebProtobufsWeb.KeepInChat
4334
- 12, // 17: WAWebProtobufsWeb.WebMessageInfo.pinInChat:type_name -> WAWebProtobufsWeb.PinInChat
4335
- 28, // 18: WAWebProtobufsWeb.WebMessageInfo.premiumMessageInfo:type_name -> WAWebProtobufsWeb.PremiumMessageInfo
4336
- 14, // 19: WAWebProtobufsWeb.WebMessageInfo.commentMetadata:type_name -> WAWebProtobufsWeb.CommentMetadata
4337
- 29, // 20: WAWebProtobufsWeb.WebMessageInfo.eventResponses:type_name -> WAWebProtobufsWeb.EventResponse
4338
- 17, // 21: WAWebProtobufsWeb.WebMessageInfo.reportingTokenInfo:type_name -> WAWebProtobufsWeb.ReportingTokenInfo
4339
- 25, // 22: WAWebProtobufsWeb.WebMessageInfo.eventAdditionalMetadata:type_name -> WAWebProtobufsWeb.EventAdditionalMetadata
4340
- 33, // 23: WAWebProtobufsWeb.WebMessageInfo.targetMessageID:type_name -> WACommon.MessageKey
4341
- 13, // 24: WAWebProtobufsWeb.WebMessageInfo.messageAddOns:type_name -> WAWebProtobufsWeb.MessageAddOn
4342
- 31, // 25: WAWebProtobufsWeb.WebMessageInfo.statusMentionMessageInfo:type_name -> WAWebProtobufsWeb.StatusMentionMessage
4343
- 32, // 26: WAWebProtobufsWeb.WebMessageInfo.supportAiCitations:type_name -> WAWebProtobufsWeb.Citation
4344
- 5, // 27: WAWebProtobufsWeb.PaymentInfo.currencyDeprecated:type_name -> WAWebProtobufsWeb.PaymentInfo.Currency
4345
- 4, // 28: WAWebProtobufsWeb.PaymentInfo.status:type_name -> WAWebProtobufsWeb.PaymentInfo.Status
4346
- 33, // 29: WAWebProtobufsWeb.PaymentInfo.requestMessageKey:type_name -> WACommon.MessageKey
4347
- 3, // 30: WAWebProtobufsWeb.PaymentInfo.txnStatus:type_name -> WAWebProtobufsWeb.PaymentInfo.TxnStatus
4348
- 36, // 31: WAWebProtobufsWeb.PaymentInfo.primaryAmount:type_name -> WAWebProtobufsE2E.Money
4349
- 36, // 32: WAWebProtobufsWeb.PaymentInfo.exchangeAmount:type_name -> WAWebProtobufsE2E.Money
4350
- 6, // 33: WAWebProtobufsWeb.WebFeatures.labelsDisplay:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4351
- 6, // 34: WAWebProtobufsWeb.WebFeatures.voipIndividualOutgoing:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4352
- 6, // 35: WAWebProtobufsWeb.WebFeatures.groupsV3:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4353
- 6, // 36: WAWebProtobufsWeb.WebFeatures.groupsV3Create:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4354
- 6, // 37: WAWebProtobufsWeb.WebFeatures.changeNumberV2:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4355
- 6, // 38: WAWebProtobufsWeb.WebFeatures.queryStatusV3Thumbnail:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4356
- 6, // 39: WAWebProtobufsWeb.WebFeatures.liveLocations:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4357
- 6, // 40: WAWebProtobufsWeb.WebFeatures.queryVname:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4358
- 6, // 41: WAWebProtobufsWeb.WebFeatures.voipIndividualIncoming:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4359
- 6, // 42: WAWebProtobufsWeb.WebFeatures.quickRepliesQuery:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4360
- 6, // 43: WAWebProtobufsWeb.WebFeatures.payments:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4361
- 6, // 44: WAWebProtobufsWeb.WebFeatures.stickerPackQuery:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4362
- 6, // 45: WAWebProtobufsWeb.WebFeatures.liveLocationsFinal:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4363
- 6, // 46: WAWebProtobufsWeb.WebFeatures.labelsEdit:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4364
- 6, // 47: WAWebProtobufsWeb.WebFeatures.mediaUpload:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4365
- 6, // 48: WAWebProtobufsWeb.WebFeatures.mediaUploadRichQuickReplies:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4366
- 6, // 49: WAWebProtobufsWeb.WebFeatures.vnameV2:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4367
- 6, // 50: WAWebProtobufsWeb.WebFeatures.videoPlaybackURL:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4368
- 6, // 51: WAWebProtobufsWeb.WebFeatures.statusRanking:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4369
- 6, // 52: WAWebProtobufsWeb.WebFeatures.voipIndividualVideo:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4370
- 6, // 53: WAWebProtobufsWeb.WebFeatures.thirdPartyStickers:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4371
- 6, // 54: WAWebProtobufsWeb.WebFeatures.frequentlyForwardedSetting:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4372
- 6, // 55: WAWebProtobufsWeb.WebFeatures.groupsV4JoinPermission:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4373
- 6, // 56: WAWebProtobufsWeb.WebFeatures.recentStickers:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4374
- 6, // 57: WAWebProtobufsWeb.WebFeatures.catalog:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4375
- 6, // 58: WAWebProtobufsWeb.WebFeatures.starredStickers:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4376
- 6, // 59: WAWebProtobufsWeb.WebFeatures.voipGroupCall:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4377
- 6, // 60: WAWebProtobufsWeb.WebFeatures.templateMessage:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4378
- 6, // 61: WAWebProtobufsWeb.WebFeatures.templateMessageInteractivity:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4379
- 6, // 62: WAWebProtobufsWeb.WebFeatures.ephemeralMessages:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4380
- 6, // 63: WAWebProtobufsWeb.WebFeatures.e2ENotificationSync:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4381
- 6, // 64: WAWebProtobufsWeb.WebFeatures.recentStickersV2:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4382
- 6, // 65: WAWebProtobufsWeb.WebFeatures.recentStickersV3:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4383
- 6, // 66: WAWebProtobufsWeb.WebFeatures.userNotice:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4384
- 6, // 67: WAWebProtobufsWeb.WebFeatures.support:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4385
- 6, // 68: WAWebProtobufsWeb.WebFeatures.groupUiiCleanup:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4386
- 6, // 69: WAWebProtobufsWeb.WebFeatures.groupDogfoodingInternalOnly:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4387
- 6, // 70: WAWebProtobufsWeb.WebFeatures.settingsSync:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4388
- 6, // 71: WAWebProtobufsWeb.WebFeatures.archiveV2:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4389
- 6, // 72: WAWebProtobufsWeb.WebFeatures.ephemeralAllowGroupMembers:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4390
- 6, // 73: WAWebProtobufsWeb.WebFeatures.ephemeral24HDuration:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4391
- 6, // 74: WAWebProtobufsWeb.WebFeatures.mdForceUpgrade:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4392
- 6, // 75: WAWebProtobufsWeb.WebFeatures.disappearingMode:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4393
- 6, // 76: WAWebProtobufsWeb.WebFeatures.externalMdOptInAvailable:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4394
- 6, // 77: WAWebProtobufsWeb.WebFeatures.noDeleteMessageTimeLimit:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4395
- 7, // 78: WAWebProtobufsWeb.PinInChat.type:type_name -> WAWebProtobufsWeb.PinInChat.Type
4396
- 33, // 79: WAWebProtobufsWeb.PinInChat.key:type_name -> WACommon.MessageKey
4397
- 27, // 80: WAWebProtobufsWeb.PinInChat.messageAddOnContextInfo:type_name -> WAWebProtobufsWeb.MessageAddOnContextInfo
4398
- 8, // 81: WAWebProtobufsWeb.MessageAddOn.messageAddOnType:type_name -> WAWebProtobufsWeb.MessageAddOn.MessageAddOnType
4399
- 34, // 82: WAWebProtobufsWeb.MessageAddOn.messageAddOn:type_name -> WAWebProtobufsE2E.Message
4400
- 2, // 83: WAWebProtobufsWeb.MessageAddOn.status:type_name -> WAWebProtobufsWeb.WebMessageInfo.Status
4401
- 27, // 84: WAWebProtobufsWeb.MessageAddOn.addOnContextInfo:type_name -> WAWebProtobufsWeb.MessageAddOnContextInfo
4402
- 33, // 85: WAWebProtobufsWeb.MessageAddOn.messageAddOnKey:type_name -> WACommon.MessageKey
4403
- 30, // 86: WAWebProtobufsWeb.MessageAddOn.legacyMessage:type_name -> WAWebProtobufsWeb.LegacyMessage
4404
- 33, // 87: WAWebProtobufsWeb.CommentMetadata.commentParentKey:type_name -> WACommon.MessageKey
4405
- 9, // 88: WAWebProtobufsWeb.WebNotificationsInfo.notifyMessages:type_name -> WAWebProtobufsWeb.WebMessageInfo
4406
- 33, // 89: WAWebProtobufsWeb.NotificationMessageInfo.key:type_name -> WACommon.MessageKey
4407
- 34, // 90: WAWebProtobufsWeb.NotificationMessageInfo.message:type_name -> WAWebProtobufsE2E.Message
4408
- 33, // 91: WAWebProtobufsWeb.Reaction.key:type_name -> WACommon.MessageKey
4409
- 33, // 92: WAWebProtobufsWeb.PollUpdate.pollUpdateMessageKey:type_name -> WACommon.MessageKey
4410
- 37, // 93: WAWebProtobufsWeb.PollUpdate.vote:type_name -> WAWebProtobufsE2E.PollVoteMessage
4411
- 38, // 94: WAWebProtobufsWeb.KeepInChat.keepType:type_name -> WAWebProtobufsE2E.KeepType
4412
- 33, // 95: WAWebProtobufsWeb.KeepInChat.key:type_name -> WACommon.MessageKey
4413
- 39, // 96: WAWebProtobufsWeb.MessageAddOnContextInfo.messageAddOnExpiryType:type_name -> WAWebProtobufsE2E.MessageContextInfo.MessageAddonExpiryType
4414
- 33, // 97: WAWebProtobufsWeb.EventResponse.eventResponseMessageKey:type_name -> WACommon.MessageKey
4415
- 40, // 98: WAWebProtobufsWeb.EventResponse.eventResponseMessage:type_name -> WAWebProtobufsE2E.EventResponseMessage
4416
- 40, // 99: WAWebProtobufsWeb.LegacyMessage.eventResponseMessage:type_name -> WAWebProtobufsE2E.EventResponseMessage
4417
- 37, // 100: WAWebProtobufsWeb.LegacyMessage.pollVote:type_name -> WAWebProtobufsE2E.PollVoteMessage
4418
- 34, // 101: WAWebProtobufsWeb.StatusMentionMessage.quotedStatus:type_name -> WAWebProtobufsE2E.Message
4419
- 102, // [102:102] is the sub-list for method output_type
4420
- 102, // [102:102] is the sub-list for method input_type
4421
- 102, // [102:102] is the sub-list for extension type_name
4422
- 102, // [102:102] is the sub-list for extension extendee
4423
- 0, // [0:102] is the sub-list for field type_name
4568
+ 20, // 8: WAWebProtobufsWeb.WebMessageInfo.mediaData:type_name -> WAWebProtobufsWeb.MediaData
4569
+ 21, // 9: WAWebProtobufsWeb.WebMessageInfo.photoChange:type_name -> WAWebProtobufsWeb.PhotoChange
4570
+ 23, // 10: WAWebProtobufsWeb.WebMessageInfo.userReceipt:type_name -> WAWebProtobufsWeb.UserReceipt
4571
+ 24, // 11: WAWebProtobufsWeb.WebMessageInfo.reactions:type_name -> WAWebProtobufsWeb.Reaction
4572
+ 20, // 12: WAWebProtobufsWeb.WebMessageInfo.quotedStickerData:type_name -> WAWebProtobufsWeb.MediaData
4573
+ 22, // 13: WAWebProtobufsWeb.WebMessageInfo.statusPsa:type_name -> WAWebProtobufsWeb.StatusPSA
4574
+ 25, // 14: WAWebProtobufsWeb.WebMessageInfo.pollUpdates:type_name -> WAWebProtobufsWeb.PollUpdate
4575
+ 26, // 15: WAWebProtobufsWeb.WebMessageInfo.pollAdditionalMetadata:type_name -> WAWebProtobufsWeb.PollAdditionalMetadata
4576
+ 29, // 16: WAWebProtobufsWeb.WebMessageInfo.keepInChat:type_name -> WAWebProtobufsWeb.KeepInChat
4577
+ 13, // 17: WAWebProtobufsWeb.WebMessageInfo.pinInChat:type_name -> WAWebProtobufsWeb.PinInChat
4578
+ 31, // 18: WAWebProtobufsWeb.WebMessageInfo.premiumMessageInfo:type_name -> WAWebProtobufsWeb.PremiumMessageInfo
4579
+ 16, // 19: WAWebProtobufsWeb.WebMessageInfo.commentMetadata:type_name -> WAWebProtobufsWeb.CommentMetadata
4580
+ 32, // 20: WAWebProtobufsWeb.WebMessageInfo.eventResponses:type_name -> WAWebProtobufsWeb.EventResponse
4581
+ 19, // 21: WAWebProtobufsWeb.WebMessageInfo.reportingTokenInfo:type_name -> WAWebProtobufsWeb.ReportingTokenInfo
4582
+ 28, // 22: WAWebProtobufsWeb.WebMessageInfo.eventAdditionalMetadata:type_name -> WAWebProtobufsWeb.EventAdditionalMetadata
4583
+ 37, // 23: WAWebProtobufsWeb.WebMessageInfo.targetMessageID:type_name -> WACommon.MessageKey
4584
+ 14, // 24: WAWebProtobufsWeb.WebMessageInfo.messageAddOns:type_name -> WAWebProtobufsWeb.MessageAddOn
4585
+ 34, // 25: WAWebProtobufsWeb.WebMessageInfo.statusMentionMessageInfo:type_name -> WAWebProtobufsWeb.StatusMentionMessage
4586
+ 35, // 26: WAWebProtobufsWeb.WebMessageInfo.supportAiCitations:type_name -> WAWebProtobufsWeb.Citation
4587
+ 36, // 27: WAWebProtobufsWeb.WebMessageInfo.groupHistoryIndividualMessageInfo:type_name -> WAWebProtobufsWeb.GroupHistoryIndividualMessageInfo
4588
+ 15, // 28: WAWebProtobufsWeb.WebMessageInfo.groupHistoryBundleInfo:type_name -> WAWebProtobufsWeb.GroupHistoryBundleInfo
4589
+ 27, // 29: WAWebProtobufsWeb.WebMessageInfo.interactiveMessageAdditionalMetadata:type_name -> WAWebProtobufsWeb.InteractiveMessageAdditionalMetadata
4590
+ 5, // 30: WAWebProtobufsWeb.PaymentInfo.currencyDeprecated:type_name -> WAWebProtobufsWeb.PaymentInfo.Currency
4591
+ 4, // 31: WAWebProtobufsWeb.PaymentInfo.status:type_name -> WAWebProtobufsWeb.PaymentInfo.Status
4592
+ 37, // 32: WAWebProtobufsWeb.PaymentInfo.requestMessageKey:type_name -> WACommon.MessageKey
4593
+ 3, // 33: WAWebProtobufsWeb.PaymentInfo.txnStatus:type_name -> WAWebProtobufsWeb.PaymentInfo.TxnStatus
4594
+ 40, // 34: WAWebProtobufsWeb.PaymentInfo.primaryAmount:type_name -> WAWebProtobufsE2E.Money
4595
+ 40, // 35: WAWebProtobufsWeb.PaymentInfo.exchangeAmount:type_name -> WAWebProtobufsE2E.Money
4596
+ 6, // 36: WAWebProtobufsWeb.WebFeatures.labelsDisplay:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4597
+ 6, // 37: WAWebProtobufsWeb.WebFeatures.voipIndividualOutgoing:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4598
+ 6, // 38: WAWebProtobufsWeb.WebFeatures.groupsV3:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4599
+ 6, // 39: WAWebProtobufsWeb.WebFeatures.groupsV3Create:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4600
+ 6, // 40: WAWebProtobufsWeb.WebFeatures.changeNumberV2:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4601
+ 6, // 41: WAWebProtobufsWeb.WebFeatures.queryStatusV3Thumbnail:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4602
+ 6, // 42: WAWebProtobufsWeb.WebFeatures.liveLocations:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4603
+ 6, // 43: WAWebProtobufsWeb.WebFeatures.queryVname:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4604
+ 6, // 44: WAWebProtobufsWeb.WebFeatures.voipIndividualIncoming:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4605
+ 6, // 45: WAWebProtobufsWeb.WebFeatures.quickRepliesQuery:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4606
+ 6, // 46: WAWebProtobufsWeb.WebFeatures.payments:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4607
+ 6, // 47: WAWebProtobufsWeb.WebFeatures.stickerPackQuery:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4608
+ 6, // 48: WAWebProtobufsWeb.WebFeatures.liveLocationsFinal:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4609
+ 6, // 49: WAWebProtobufsWeb.WebFeatures.labelsEdit:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4610
+ 6, // 50: WAWebProtobufsWeb.WebFeatures.mediaUpload:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4611
+ 6, // 51: WAWebProtobufsWeb.WebFeatures.mediaUploadRichQuickReplies:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4612
+ 6, // 52: WAWebProtobufsWeb.WebFeatures.vnameV2:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4613
+ 6, // 53: WAWebProtobufsWeb.WebFeatures.videoPlaybackURL:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4614
+ 6, // 54: WAWebProtobufsWeb.WebFeatures.statusRanking:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4615
+ 6, // 55: WAWebProtobufsWeb.WebFeatures.voipIndividualVideo:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4616
+ 6, // 56: WAWebProtobufsWeb.WebFeatures.thirdPartyStickers:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4617
+ 6, // 57: WAWebProtobufsWeb.WebFeatures.frequentlyForwardedSetting:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4618
+ 6, // 58: WAWebProtobufsWeb.WebFeatures.groupsV4JoinPermission:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4619
+ 6, // 59: WAWebProtobufsWeb.WebFeatures.recentStickers:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4620
+ 6, // 60: WAWebProtobufsWeb.WebFeatures.catalog:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4621
+ 6, // 61: WAWebProtobufsWeb.WebFeatures.starredStickers:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4622
+ 6, // 62: WAWebProtobufsWeb.WebFeatures.voipGroupCall:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4623
+ 6, // 63: WAWebProtobufsWeb.WebFeatures.templateMessage:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4624
+ 6, // 64: WAWebProtobufsWeb.WebFeatures.templateMessageInteractivity:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4625
+ 6, // 65: WAWebProtobufsWeb.WebFeatures.ephemeralMessages:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4626
+ 6, // 66: WAWebProtobufsWeb.WebFeatures.e2ENotificationSync:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4627
+ 6, // 67: WAWebProtobufsWeb.WebFeatures.recentStickersV2:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4628
+ 6, // 68: WAWebProtobufsWeb.WebFeatures.recentStickersV3:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4629
+ 6, // 69: WAWebProtobufsWeb.WebFeatures.userNotice:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4630
+ 6, // 70: WAWebProtobufsWeb.WebFeatures.support:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4631
+ 6, // 71: WAWebProtobufsWeb.WebFeatures.groupUiiCleanup:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4632
+ 6, // 72: WAWebProtobufsWeb.WebFeatures.groupDogfoodingInternalOnly:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4633
+ 6, // 73: WAWebProtobufsWeb.WebFeatures.settingsSync:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4634
+ 6, // 74: WAWebProtobufsWeb.WebFeatures.archiveV2:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4635
+ 6, // 75: WAWebProtobufsWeb.WebFeatures.ephemeralAllowGroupMembers:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4636
+ 6, // 76: WAWebProtobufsWeb.WebFeatures.ephemeral24HDuration:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4637
+ 6, // 77: WAWebProtobufsWeb.WebFeatures.mdForceUpgrade:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4638
+ 6, // 78: WAWebProtobufsWeb.WebFeatures.disappearingMode:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4639
+ 6, // 79: WAWebProtobufsWeb.WebFeatures.externalMdOptInAvailable:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4640
+ 6, // 80: WAWebProtobufsWeb.WebFeatures.noDeleteMessageTimeLimit:type_name -> WAWebProtobufsWeb.WebFeatures.Flag
4641
+ 7, // 81: WAWebProtobufsWeb.PinInChat.type:type_name -> WAWebProtobufsWeb.PinInChat.Type
4642
+ 37, // 82: WAWebProtobufsWeb.PinInChat.key:type_name -> WACommon.MessageKey
4643
+ 30, // 83: WAWebProtobufsWeb.PinInChat.messageAddOnContextInfo:type_name -> WAWebProtobufsWeb.MessageAddOnContextInfo
4644
+ 8, // 84: WAWebProtobufsWeb.MessageAddOn.messageAddOnType:type_name -> WAWebProtobufsWeb.MessageAddOn.MessageAddOnType
4645
+ 38, // 85: WAWebProtobufsWeb.MessageAddOn.messageAddOn:type_name -> WAWebProtobufsE2E.Message
4646
+ 2, // 86: WAWebProtobufsWeb.MessageAddOn.status:type_name -> WAWebProtobufsWeb.WebMessageInfo.Status
4647
+ 30, // 87: WAWebProtobufsWeb.MessageAddOn.addOnContextInfo:type_name -> WAWebProtobufsWeb.MessageAddOnContextInfo
4648
+ 37, // 88: WAWebProtobufsWeb.MessageAddOn.messageAddOnKey:type_name -> WACommon.MessageKey
4649
+ 33, // 89: WAWebProtobufsWeb.MessageAddOn.legacyMessage:type_name -> WAWebProtobufsWeb.LegacyMessage
4650
+ 41, // 90: WAWebProtobufsWeb.GroupHistoryBundleInfo.deprecatedMessageHistoryBundle:type_name -> WAWebProtobufsE2E.MessageHistoryBundle
4651
+ 9, // 91: WAWebProtobufsWeb.GroupHistoryBundleInfo.processState:type_name -> WAWebProtobufsWeb.GroupHistoryBundleInfo.ProcessState
4652
+ 37, // 92: WAWebProtobufsWeb.CommentMetadata.commentParentKey:type_name -> WACommon.MessageKey
4653
+ 10, // 93: WAWebProtobufsWeb.WebNotificationsInfo.notifyMessages:type_name -> WAWebProtobufsWeb.WebMessageInfo
4654
+ 37, // 94: WAWebProtobufsWeb.NotificationMessageInfo.key:type_name -> WACommon.MessageKey
4655
+ 38, // 95: WAWebProtobufsWeb.NotificationMessageInfo.message:type_name -> WAWebProtobufsE2E.Message
4656
+ 37, // 96: WAWebProtobufsWeb.Reaction.key:type_name -> WACommon.MessageKey
4657
+ 37, // 97: WAWebProtobufsWeb.PollUpdate.pollUpdateMessageKey:type_name -> WACommon.MessageKey
4658
+ 42, // 98: WAWebProtobufsWeb.PollUpdate.vote:type_name -> WAWebProtobufsE2E.PollVoteMessage
4659
+ 43, // 99: WAWebProtobufsWeb.KeepInChat.keepType:type_name -> WAWebProtobufsE2E.KeepType
4660
+ 37, // 100: WAWebProtobufsWeb.KeepInChat.key:type_name -> WACommon.MessageKey
4661
+ 44, // 101: WAWebProtobufsWeb.MessageAddOnContextInfo.messageAddOnExpiryType:type_name -> WAWebProtobufsE2E.MessageContextInfo.MessageAddonExpiryType
4662
+ 37, // 102: WAWebProtobufsWeb.EventResponse.eventResponseMessageKey:type_name -> WACommon.MessageKey
4663
+ 45, // 103: WAWebProtobufsWeb.EventResponse.eventResponseMessage:type_name -> WAWebProtobufsE2E.EventResponseMessage
4664
+ 45, // 104: WAWebProtobufsWeb.LegacyMessage.eventResponseMessage:type_name -> WAWebProtobufsE2E.EventResponseMessage
4665
+ 42, // 105: WAWebProtobufsWeb.LegacyMessage.pollVote:type_name -> WAWebProtobufsE2E.PollVoteMessage
4666
+ 38, // 106: WAWebProtobufsWeb.StatusMentionMessage.quotedStatus:type_name -> WAWebProtobufsE2E.Message
4667
+ 37, // 107: WAWebProtobufsWeb.GroupHistoryIndividualMessageInfo.bundleMessageKey:type_name -> WACommon.MessageKey
4668
+ 108, // [108:108] is the sub-list for method output_type
4669
+ 108, // [108:108] is the sub-list for method input_type
4670
+ 108, // [108:108] is the sub-list for extension type_name
4671
+ 108, // [108:108] is the sub-list for extension extendee
4672
+ 0, // [0:108] is the sub-list for field type_name
4424
4673
  }
4425
4674
 
4426
4675
  func init() { file_waWeb_WAWebProtobufsWeb_proto_init() }
@@ -4433,8 +4682,8 @@ func file_waWeb_WAWebProtobufsWeb_proto_init() {
4433
4682
  File: protoimpl.DescBuilder{
4434
4683
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
4435
4684
  RawDescriptor: unsafe.Slice(unsafe.StringData(file_waWeb_WAWebProtobufsWeb_proto_rawDesc), len(file_waWeb_WAWebProtobufsWeb_proto_rawDesc)),
4436
- NumEnums: 9,
4437
- NumMessages: 24,
4685
+ NumEnums: 10,
4686
+ NumMessages: 27,
4438
4687
  NumExtensions: 0,
4439
4688
  NumServices: 0,
4440
4689
  },