slidge-whatsapp 0.3.7__cp312-cp312-manylinux_2_41_aarch64.whl → 0.3.8__cp312-cp312-manylinux_2_41_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.
Files changed (164) hide show
  1. slidge_whatsapp/config.py +7 -2
  2. slidge_whatsapp/contact.py +3 -2
  3. slidge_whatsapp/event.go +14 -9
  4. slidge_whatsapp/gateway.go +7 -1
  5. slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.h +182 -178
  6. slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.so +0 -0
  7. slidge_whatsapp/generated/build.py +146 -142
  8. slidge_whatsapp/generated/whatsapp.c +1456 -1376
  9. slidge_whatsapp/generated/whatsapp.go +1069 -1045
  10. slidge_whatsapp/generated/whatsapp.py +1324 -1298
  11. slidge_whatsapp/generated/whatsapp_go.h +182 -178
  12. slidge_whatsapp/go.mod +6 -6
  13. slidge_whatsapp/go.sum +12 -12
  14. slidge_whatsapp/group.py +25 -0
  15. slidge_whatsapp/session.go +69 -67
  16. slidge_whatsapp/session.py +11 -1
  17. slidge_whatsapp/vendor/github.com/coder/websocket/LICENSE.txt +13 -0
  18. slidge_whatsapp/vendor/github.com/coder/websocket/Makefile +18 -0
  19. slidge_whatsapp/vendor/github.com/coder/websocket/README.md +162 -0
  20. slidge_whatsapp/vendor/github.com/coder/websocket/accept.go +378 -0
  21. slidge_whatsapp/vendor/github.com/coder/websocket/close.go +335 -0
  22. slidge_whatsapp/vendor/github.com/coder/websocket/compress.go +234 -0
  23. slidge_whatsapp/vendor/github.com/coder/websocket/conn.go +306 -0
  24. slidge_whatsapp/vendor/github.com/coder/websocket/dial.go +347 -0
  25. slidge_whatsapp/vendor/github.com/coder/websocket/doc.go +33 -0
  26. slidge_whatsapp/vendor/github.com/coder/websocket/errors.go +8 -0
  27. slidge_whatsapp/vendor/github.com/coder/websocket/frame.go +173 -0
  28. slidge_whatsapp/vendor/github.com/coder/websocket/hijack.go +33 -0
  29. slidge_whatsapp/vendor/github.com/coder/websocket/internal/bpool/bpool.go +25 -0
  30. slidge_whatsapp/vendor/github.com/coder/websocket/internal/errd/wrap.go +14 -0
  31. slidge_whatsapp/vendor/github.com/coder/websocket/internal/util/util.go +15 -0
  32. slidge_whatsapp/vendor/github.com/coder/websocket/internal/wsjs/wsjs_js.go +169 -0
  33. slidge_whatsapp/vendor/github.com/coder/websocket/mask.go +128 -0
  34. slidge_whatsapp/vendor/github.com/coder/websocket/mask_amd64.s +127 -0
  35. slidge_whatsapp/vendor/github.com/coder/websocket/mask_arm64.s +72 -0
  36. slidge_whatsapp/vendor/github.com/coder/websocket/mask_asm.go +26 -0
  37. slidge_whatsapp/vendor/github.com/coder/websocket/mask_go.go +7 -0
  38. slidge_whatsapp/vendor/github.com/coder/websocket/netconn.go +233 -0
  39. slidge_whatsapp/vendor/github.com/coder/websocket/netconn_js.go +11 -0
  40. slidge_whatsapp/vendor/github.com/coder/websocket/netconn_notjs.go +19 -0
  41. slidge_whatsapp/vendor/github.com/coder/websocket/read.go +540 -0
  42. slidge_whatsapp/vendor/github.com/coder/websocket/stringer.go +91 -0
  43. slidge_whatsapp/vendor/github.com/coder/websocket/write.go +384 -0
  44. slidge_whatsapp/vendor/github.com/coder/websocket/ws_js.go +598 -0
  45. slidge_whatsapp/vendor/github.com/ebitengine/purego/func.go +1 -1
  46. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_amd64.go +1 -1
  47. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_arm64.go +3 -1
  48. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_loong64.go +1 -1
  49. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/directive.go +3 -0
  50. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/selection.go +3 -0
  51. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/value.go +4 -3
  52. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +3 -0
  53. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +18 -4
  54. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/broadcast.go +3 -3
  55. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +6 -4
  56. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +90 -80
  57. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +14 -11
  58. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +4 -1
  59. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +47 -48
  60. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/handshake.go +3 -2
  61. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +79 -75
  62. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +8 -6
  63. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaconn.go +1 -2
  64. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaretry.go +2 -2
  65. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +42 -40
  66. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +35 -32
  67. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +2 -3
  68. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +2 -4
  69. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +19 -19
  70. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +9 -8
  71. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +9 -9
  72. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/privacysettings.go +4 -5
  73. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go +1 -1
  74. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.pb.go +1 -1
  75. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.pb.go +1 -1
  76. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.pb.go +1 -1
  77. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.pb.go +1 -1
  78. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.pb.go +1 -1
  79. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.pb.go +1 -1
  80. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.pb.go +1 -1
  81. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.pb.go +1 -1
  82. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.pb.go +1 -1
  83. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.pb.go +1 -1
  84. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAICommon/WAAICommon.pb.go +1145 -335
  85. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAICommon/WAAICommon.proto +78 -0
  86. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.go +1 -1
  87. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.go +1 -1
  88. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +1 -1
  89. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.go +1 -1
  90. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.go +1 -1
  91. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.go +1 -1
  92. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.pb.go +22 -4
  93. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.proto +2 -0
  94. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.go +1 -1
  95. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +104 -30
  96. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +7 -0
  97. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +1037 -963
  98. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +15 -8
  99. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +1 -1
  100. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.pb.go +1 -1
  101. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.go +1 -1
  102. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.go +1 -1
  103. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.go +1 -1
  104. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.go +1 -1
  105. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.go +1 -1
  106. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.go +1 -1
  107. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +40 -35
  108. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +1 -0
  109. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +921 -653
  110. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +44 -15
  111. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.go +1 -1
  112. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.go +1 -1
  113. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +9 -5
  114. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +1 -0
  115. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +193 -115
  116. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +9 -0
  117. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/push.go +2 -4
  118. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +12 -12
  119. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/request.go +25 -19
  120. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +2 -2
  121. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +43 -27
  122. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +4 -4
  123. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/constants.go +1 -1
  124. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/framesocket.go +43 -56
  125. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/noisehandshake.go +9 -3
  126. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/noisesocket.go +36 -22
  127. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +24 -4
  128. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +12 -0
  129. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/appstate.go +2 -1
  130. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/upload.go +1 -1
  131. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +79 -40
  132. slidge_whatsapp/vendor/golang.org/x/sys/unix/mkerrors.sh +2 -0
  133. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +6 -0
  134. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux.go +359 -0
  135. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux.go +10 -0
  136. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux.go +31 -0
  137. slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +15 -0
  138. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +76 -0
  139. slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +37 -0
  140. slidge_whatsapp/vendor/modules.txt +12 -8
  141. {slidge_whatsapp-0.3.7.dist-info → slidge_whatsapp-0.3.8.dist-info}/METADATA +1 -1
  142. {slidge_whatsapp-0.3.7.dist-info → slidge_whatsapp-0.3.8.dist-info}/RECORD +145 -136
  143. slidge_whatsapp/vendor/github.com/gorilla/websocket/.gitignore +0 -25
  144. slidge_whatsapp/vendor/github.com/gorilla/websocket/AUTHORS +0 -9
  145. slidge_whatsapp/vendor/github.com/gorilla/websocket/LICENSE +0 -22
  146. slidge_whatsapp/vendor/github.com/gorilla/websocket/README.md +0 -33
  147. slidge_whatsapp/vendor/github.com/gorilla/websocket/client.go +0 -434
  148. slidge_whatsapp/vendor/github.com/gorilla/websocket/compression.go +0 -148
  149. slidge_whatsapp/vendor/github.com/gorilla/websocket/conn.go +0 -1238
  150. slidge_whatsapp/vendor/github.com/gorilla/websocket/doc.go +0 -227
  151. slidge_whatsapp/vendor/github.com/gorilla/websocket/join.go +0 -42
  152. slidge_whatsapp/vendor/github.com/gorilla/websocket/json.go +0 -60
  153. slidge_whatsapp/vendor/github.com/gorilla/websocket/mask.go +0 -55
  154. slidge_whatsapp/vendor/github.com/gorilla/websocket/mask_safe.go +0 -16
  155. slidge_whatsapp/vendor/github.com/gorilla/websocket/prepared.go +0 -102
  156. slidge_whatsapp/vendor/github.com/gorilla/websocket/proxy.go +0 -77
  157. slidge_whatsapp/vendor/github.com/gorilla/websocket/server.go +0 -365
  158. slidge_whatsapp/vendor/github.com/gorilla/websocket/tls_handshake.go +0 -21
  159. slidge_whatsapp/vendor/github.com/gorilla/websocket/tls_handshake_116.go +0 -21
  160. slidge_whatsapp/vendor/github.com/gorilla/websocket/util.go +0 -298
  161. slidge_whatsapp/vendor/github.com/gorilla/websocket/x_net_proxy.go +0 -473
  162. {slidge_whatsapp-0.3.7.dist-info → slidge_whatsapp-0.3.8.dist-info}/WHEEL +0 -0
  163. {slidge_whatsapp-0.3.7.dist-info → slidge_whatsapp-0.3.8.dist-info}/entry_points.txt +0 -0
  164. {slidge_whatsapp-0.3.7.dist-info → slidge_whatsapp-0.3.8.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  // Code generated by protoc-gen-go. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-go v1.36.6
3
+ // protoc-gen-go v1.36.10
4
4
  // protoc v3.21.12
5
5
  // source: waE2E/WAWebProtobufsE2E.proto
6
6
 
@@ -233,14 +233,15 @@ func (PeerDataOperationRequestType) EnumDescriptor() ([]byte, []int) {
233
233
  type HistorySyncType int32
234
234
 
235
235
  const (
236
- HistorySyncType_INITIAL_BOOTSTRAP HistorySyncType = 0
237
- HistorySyncType_INITIAL_STATUS_V3 HistorySyncType = 1
238
- HistorySyncType_FULL HistorySyncType = 2
239
- HistorySyncType_RECENT HistorySyncType = 3
240
- HistorySyncType_PUSH_NAME HistorySyncType = 4
241
- HistorySyncType_NON_BLOCKING_DATA HistorySyncType = 5
242
- HistorySyncType_ON_DEMAND HistorySyncType = 6
243
- HistorySyncType_NO_HISTORY HistorySyncType = 7
236
+ HistorySyncType_INITIAL_BOOTSTRAP HistorySyncType = 0
237
+ HistorySyncType_INITIAL_STATUS_V3 HistorySyncType = 1
238
+ HistorySyncType_FULL HistorySyncType = 2
239
+ HistorySyncType_RECENT HistorySyncType = 3
240
+ HistorySyncType_PUSH_NAME HistorySyncType = 4
241
+ HistorySyncType_NON_BLOCKING_DATA HistorySyncType = 5
242
+ HistorySyncType_ON_DEMAND HistorySyncType = 6
243
+ HistorySyncType_NO_HISTORY HistorySyncType = 7
244
+ HistorySyncType_MESSAGE_ACCESS_STATUS HistorySyncType = 8
244
245
  )
245
246
 
246
247
  // Enum value maps for HistorySyncType.
@@ -254,16 +255,18 @@ var (
254
255
  5: "NON_BLOCKING_DATA",
255
256
  6: "ON_DEMAND",
256
257
  7: "NO_HISTORY",
258
+ 8: "MESSAGE_ACCESS_STATUS",
257
259
  }
258
260
  HistorySyncType_value = map[string]int32{
259
- "INITIAL_BOOTSTRAP": 0,
260
- "INITIAL_STATUS_V3": 1,
261
- "FULL": 2,
262
- "RECENT": 3,
263
- "PUSH_NAME": 4,
264
- "NON_BLOCKING_DATA": 5,
265
- "ON_DEMAND": 6,
266
- "NO_HISTORY": 7,
261
+ "INITIAL_BOOTSTRAP": 0,
262
+ "INITIAL_STATUS_V3": 1,
263
+ "FULL": 2,
264
+ "RECENT": 3,
265
+ "PUSH_NAME": 4,
266
+ "NON_BLOCKING_DATA": 5,
267
+ "ON_DEMAND": 6,
268
+ "NO_HISTORY": 7,
269
+ "MESSAGE_ACCESS_STATUS": 8,
267
270
  }
268
271
  )
269
272
 
@@ -369,6 +372,62 @@ func (MediaKeyDomain) EnumDescriptor() ([]byte, []int) {
369
372
  return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{4}
370
373
  }
371
374
 
375
+ type WebLinkRenderConfig int32
376
+
377
+ const (
378
+ WebLinkRenderConfig_WEBVIEW WebLinkRenderConfig = 0
379
+ WebLinkRenderConfig_SYSTEM WebLinkRenderConfig = 1
380
+ )
381
+
382
+ // Enum value maps for WebLinkRenderConfig.
383
+ var (
384
+ WebLinkRenderConfig_name = map[int32]string{
385
+ 0: "WEBVIEW",
386
+ 1: "SYSTEM",
387
+ }
388
+ WebLinkRenderConfig_value = map[string]int32{
389
+ "WEBVIEW": 0,
390
+ "SYSTEM": 1,
391
+ }
392
+ )
393
+
394
+ func (x WebLinkRenderConfig) Enum() *WebLinkRenderConfig {
395
+ p := new(WebLinkRenderConfig)
396
+ *p = x
397
+ return p
398
+ }
399
+
400
+ func (x WebLinkRenderConfig) String() string {
401
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
402
+ }
403
+
404
+ func (WebLinkRenderConfig) Descriptor() protoreflect.EnumDescriptor {
405
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[5].Descriptor()
406
+ }
407
+
408
+ func (WebLinkRenderConfig) Type() protoreflect.EnumType {
409
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[5]
410
+ }
411
+
412
+ func (x WebLinkRenderConfig) Number() protoreflect.EnumNumber {
413
+ return protoreflect.EnumNumber(x)
414
+ }
415
+
416
+ // Deprecated: Do not use.
417
+ func (x *WebLinkRenderConfig) UnmarshalJSON(b []byte) error {
418
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
419
+ if err != nil {
420
+ return err
421
+ }
422
+ *x = WebLinkRenderConfig(num)
423
+ return nil
424
+ }
425
+
426
+ // Deprecated: Use WebLinkRenderConfig.Descriptor instead.
427
+ func (WebLinkRenderConfig) EnumDescriptor() ([]byte, []int) {
428
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{5}
429
+ }
430
+
372
431
  type KeepType int32
373
432
 
374
433
  const (
@@ -402,11 +461,11 @@ func (x KeepType) String() string {
402
461
  }
403
462
 
404
463
  func (KeepType) Descriptor() protoreflect.EnumDescriptor {
405
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[5].Descriptor()
464
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[6].Descriptor()
406
465
  }
407
466
 
408
467
  func (KeepType) Type() protoreflect.EnumType {
409
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[5]
468
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[6]
410
469
  }
411
470
 
412
471
  func (x KeepType) Number() protoreflect.EnumNumber {
@@ -425,7 +484,7 @@ func (x *KeepType) UnmarshalJSON(b []byte) error {
425
484
 
426
485
  // Deprecated: Use KeepType.Descriptor instead.
427
486
  func (KeepType) EnumDescriptor() ([]byte, []int) {
428
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{5}
487
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{6}
429
488
  }
430
489
 
431
490
  type StickerPackMessage_StickerPackOrigin int32
@@ -461,11 +520,11 @@ func (x StickerPackMessage_StickerPackOrigin) String() string {
461
520
  }
462
521
 
463
522
  func (StickerPackMessage_StickerPackOrigin) Descriptor() protoreflect.EnumDescriptor {
464
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[6].Descriptor()
523
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[7].Descriptor()
465
524
  }
466
525
 
467
526
  func (StickerPackMessage_StickerPackOrigin) Type() protoreflect.EnumType {
468
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[6]
527
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[7]
469
528
  }
470
529
 
471
530
  func (x StickerPackMessage_StickerPackOrigin) Number() protoreflect.EnumNumber {
@@ -514,11 +573,11 @@ func (x PlaceholderMessage_PlaceholderType) String() string {
514
573
  }
515
574
 
516
575
  func (PlaceholderMessage_PlaceholderType) Descriptor() protoreflect.EnumDescriptor {
517
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[7].Descriptor()
576
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[8].Descriptor()
518
577
  }
519
578
 
520
579
  func (PlaceholderMessage_PlaceholderType) Type() protoreflect.EnumType {
521
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[7]
580
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[8]
522
581
  }
523
582
 
524
583
  func (x PlaceholderMessage_PlaceholderType) Number() protoreflect.EnumNumber {
@@ -573,11 +632,11 @@ func (x BCallMessage_MediaType) String() string {
573
632
  }
574
633
 
575
634
  func (BCallMessage_MediaType) Descriptor() protoreflect.EnumDescriptor {
576
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[8].Descriptor()
635
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[9].Descriptor()
577
636
  }
578
637
 
579
638
  func (BCallMessage_MediaType) Type() protoreflect.EnumType {
580
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[8]
639
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[9]
581
640
  }
582
641
 
583
642
  func (x BCallMessage_MediaType) Number() protoreflect.EnumNumber {
@@ -647,11 +706,11 @@ func (x CallLogMessage_CallOutcome) String() string {
647
706
  }
648
707
 
649
708
  func (CallLogMessage_CallOutcome) Descriptor() protoreflect.EnumDescriptor {
650
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[9].Descriptor()
709
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[10].Descriptor()
651
710
  }
652
711
 
653
712
  func (CallLogMessage_CallOutcome) Type() protoreflect.EnumType {
654
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[9]
713
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[10]
655
714
  }
656
715
 
657
716
  func (x CallLogMessage_CallOutcome) Number() protoreflect.EnumNumber {
@@ -706,11 +765,11 @@ func (x CallLogMessage_CallType) String() string {
706
765
  }
707
766
 
708
767
  func (CallLogMessage_CallType) Descriptor() protoreflect.EnumDescriptor {
709
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[10].Descriptor()
768
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[11].Descriptor()
710
769
  }
711
770
 
712
771
  func (CallLogMessage_CallType) Type() protoreflect.EnumType {
713
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[10]
772
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[11]
714
773
  }
715
774
 
716
775
  func (x CallLogMessage_CallType) Number() protoreflect.EnumNumber {
@@ -762,11 +821,11 @@ func (x ScheduledCallEditMessage_EditType) String() string {
762
821
  }
763
822
 
764
823
  func (ScheduledCallEditMessage_EditType) Descriptor() protoreflect.EnumDescriptor {
765
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[11].Descriptor()
824
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[12].Descriptor()
766
825
  }
767
826
 
768
827
  func (ScheduledCallEditMessage_EditType) Type() protoreflect.EnumType {
769
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[11]
828
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[12]
770
829
  }
771
830
 
772
831
  func (x ScheduledCallEditMessage_EditType) Number() protoreflect.EnumNumber {
@@ -821,11 +880,11 @@ func (x ScheduledCallCreationMessage_CallType) String() string {
821
880
  }
822
881
 
823
882
  func (ScheduledCallCreationMessage_CallType) Descriptor() protoreflect.EnumDescriptor {
824
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[12].Descriptor()
883
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[13].Descriptor()
825
884
  }
826
885
 
827
886
  func (ScheduledCallCreationMessage_CallType) Type() protoreflect.EnumType {
828
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[12]
887
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[13]
829
888
  }
830
889
 
831
890
  func (x ScheduledCallCreationMessage_CallType) Number() protoreflect.EnumNumber {
@@ -883,11 +942,11 @@ func (x EventResponseMessage_EventResponseType) String() string {
883
942
  }
884
943
 
885
944
  func (EventResponseMessage_EventResponseType) Descriptor() protoreflect.EnumDescriptor {
886
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[13].Descriptor()
945
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[14].Descriptor()
887
946
  }
888
947
 
889
948
  func (EventResponseMessage_EventResponseType) Type() protoreflect.EnumType {
890
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[13]
949
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[14]
891
950
  }
892
951
 
893
952
  func (x EventResponseMessage_EventResponseType) Number() protoreflect.EnumNumber {
@@ -942,11 +1001,11 @@ func (x PinInChatMessage_Type) String() string {
942
1001
  }
943
1002
 
944
1003
  func (PinInChatMessage_Type) Descriptor() protoreflect.EnumDescriptor {
945
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[14].Descriptor()
1004
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[15].Descriptor()
946
1005
  }
947
1006
 
948
1007
  func (PinInChatMessage_Type) Type() protoreflect.EnumType {
949
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[14]
1008
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[15]
950
1009
  }
951
1010
 
952
1011
  func (x PinInChatMessage_Type) Number() protoreflect.EnumNumber {
@@ -998,11 +1057,11 @@ func (x StatusStickerInteractionMessage_StatusStickerType) String() string {
998
1057
  }
999
1058
 
1000
1059
  func (StatusStickerInteractionMessage_StatusStickerType) Descriptor() protoreflect.EnumDescriptor {
1001
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[15].Descriptor()
1060
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[16].Descriptor()
1002
1061
  }
1003
1062
 
1004
1063
  func (StatusStickerInteractionMessage_StatusStickerType) Type() protoreflect.EnumType {
1005
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[15]
1064
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[16]
1006
1065
  }
1007
1066
 
1008
1067
  func (x StatusStickerInteractionMessage_StatusStickerType) Number() protoreflect.EnumNumber {
@@ -1054,11 +1113,11 @@ func (x ButtonsResponseMessage_Type) String() string {
1054
1113
  }
1055
1114
 
1056
1115
  func (ButtonsResponseMessage_Type) Descriptor() protoreflect.EnumDescriptor {
1057
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[16].Descriptor()
1116
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[17].Descriptor()
1058
1117
  }
1059
1118
 
1060
1119
  func (ButtonsResponseMessage_Type) Type() protoreflect.EnumType {
1061
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[16]
1120
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[17]
1062
1121
  }
1063
1122
 
1064
1123
  func (x ButtonsResponseMessage_Type) Number() protoreflect.EnumNumber {
@@ -1125,11 +1184,11 @@ func (x ButtonsMessage_HeaderType) String() string {
1125
1184
  }
1126
1185
 
1127
1186
  func (ButtonsMessage_HeaderType) Descriptor() protoreflect.EnumDescriptor {
1128
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[17].Descriptor()
1187
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[18].Descriptor()
1129
1188
  }
1130
1189
 
1131
1190
  func (ButtonsMessage_HeaderType) Type() protoreflect.EnumType {
1132
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[17]
1191
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[18]
1133
1192
  }
1134
1193
 
1135
1194
  func (x ButtonsMessage_HeaderType) Number() protoreflect.EnumNumber {
@@ -1184,11 +1243,11 @@ func (x ButtonsMessage_Button_Type) String() string {
1184
1243
  }
1185
1244
 
1186
1245
  func (ButtonsMessage_Button_Type) Descriptor() protoreflect.EnumDescriptor {
1187
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[18].Descriptor()
1246
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[19].Descriptor()
1188
1247
  }
1189
1248
 
1190
1249
  func (ButtonsMessage_Button_Type) Type() protoreflect.EnumType {
1191
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[18]
1250
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[19]
1192
1251
  }
1193
1252
 
1194
1253
  func (x ButtonsMessage_Button_Type) Number() protoreflect.EnumNumber {
@@ -1243,11 +1302,11 @@ func (x SecretEncryptedMessage_SecretEncType) String() string {
1243
1302
  }
1244
1303
 
1245
1304
  func (SecretEncryptedMessage_SecretEncType) Descriptor() protoreflect.EnumDescriptor {
1246
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[19].Descriptor()
1305
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[20].Descriptor()
1247
1306
  }
1248
1307
 
1249
1308
  func (SecretEncryptedMessage_SecretEncType) Type() protoreflect.EnumType {
1250
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[19]
1309
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[20]
1251
1310
  }
1252
1311
 
1253
1312
  func (x SecretEncryptedMessage_SecretEncType) Number() protoreflect.EnumNumber {
@@ -1299,11 +1358,11 @@ func (x GroupInviteMessage_GroupType) String() string {
1299
1358
  }
1300
1359
 
1301
1360
  func (GroupInviteMessage_GroupType) Descriptor() protoreflect.EnumDescriptor {
1302
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[20].Descriptor()
1361
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[21].Descriptor()
1303
1362
  }
1304
1363
 
1305
1364
  func (GroupInviteMessage_GroupType) Type() protoreflect.EnumType {
1306
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[20]
1365
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[21]
1307
1366
  }
1308
1367
 
1309
1368
  func (x GroupInviteMessage_GroupType) Number() protoreflect.EnumNumber {
@@ -1355,11 +1414,11 @@ func (x InteractiveResponseMessage_Body_Format) String() string {
1355
1414
  }
1356
1415
 
1357
1416
  func (InteractiveResponseMessage_Body_Format) Descriptor() protoreflect.EnumDescriptor {
1358
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[21].Descriptor()
1417
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[22].Descriptor()
1359
1418
  }
1360
1419
 
1361
1420
  func (InteractiveResponseMessage_Body_Format) Type() protoreflect.EnumType {
1362
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[21]
1421
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[22]
1363
1422
  }
1364
1423
 
1365
1424
  func (x InteractiveResponseMessage_Body_Format) Number() protoreflect.EnumNumber {
@@ -1414,11 +1473,11 @@ func (x InteractiveMessage_CarouselMessage_CarouselCardType) String() string {
1414
1473
  }
1415
1474
 
1416
1475
  func (InteractiveMessage_CarouselMessage_CarouselCardType) Descriptor() protoreflect.EnumDescriptor {
1417
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[22].Descriptor()
1476
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[23].Descriptor()
1418
1477
  }
1419
1478
 
1420
1479
  func (InteractiveMessage_CarouselMessage_CarouselCardType) Type() protoreflect.EnumType {
1421
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[22]
1480
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[23]
1422
1481
  }
1423
1482
 
1424
1483
  func (x InteractiveMessage_CarouselMessage_CarouselCardType) Number() protoreflect.EnumNumber {
@@ -1476,11 +1535,11 @@ func (x InteractiveMessage_ShopMessage_Surface) String() string {
1476
1535
  }
1477
1536
 
1478
1537
  func (InteractiveMessage_ShopMessage_Surface) Descriptor() protoreflect.EnumDescriptor {
1479
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[23].Descriptor()
1538
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[24].Descriptor()
1480
1539
  }
1481
1540
 
1482
1541
  func (InteractiveMessage_ShopMessage_Surface) Type() protoreflect.EnumType {
1483
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[23]
1542
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[24]
1484
1543
  }
1485
1544
 
1486
1545
  func (x InteractiveMessage_ShopMessage_Surface) Number() protoreflect.EnumNumber {
@@ -1532,11 +1591,11 @@ func (x ListResponseMessage_ListType) String() string {
1532
1591
  }
1533
1592
 
1534
1593
  func (ListResponseMessage_ListType) Descriptor() protoreflect.EnumDescriptor {
1535
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[24].Descriptor()
1594
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[25].Descriptor()
1536
1595
  }
1537
1596
 
1538
1597
  func (ListResponseMessage_ListType) Type() protoreflect.EnumType {
1539
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[24]
1598
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[25]
1540
1599
  }
1541
1600
 
1542
1601
  func (x ListResponseMessage_ListType) Number() protoreflect.EnumNumber {
@@ -1591,11 +1650,11 @@ func (x ListMessage_ListType) String() string {
1591
1650
  }
1592
1651
 
1593
1652
  func (ListMessage_ListType) Descriptor() protoreflect.EnumDescriptor {
1594
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[25].Descriptor()
1653
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[26].Descriptor()
1595
1654
  }
1596
1655
 
1597
1656
  func (ListMessage_ListType) Type() protoreflect.EnumType {
1598
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[25]
1657
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[26]
1599
1658
  }
1600
1659
 
1601
1660
  func (x ListMessage_ListType) Number() protoreflect.EnumNumber {
@@ -1644,11 +1703,11 @@ func (x OrderMessage_OrderSurface) String() string {
1644
1703
  }
1645
1704
 
1646
1705
  func (OrderMessage_OrderSurface) Descriptor() protoreflect.EnumDescriptor {
1647
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[26].Descriptor()
1706
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[27].Descriptor()
1648
1707
  }
1649
1708
 
1650
1709
  func (OrderMessage_OrderSurface) Type() protoreflect.EnumType {
1651
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[26]
1710
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[27]
1652
1711
  }
1653
1712
 
1654
1713
  func (x OrderMessage_OrderSurface) Number() protoreflect.EnumNumber {
@@ -1703,11 +1762,11 @@ func (x OrderMessage_OrderStatus) String() string {
1703
1762
  }
1704
1763
 
1705
1764
  func (OrderMessage_OrderStatus) Descriptor() protoreflect.EnumDescriptor {
1706
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[27].Descriptor()
1765
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[28].Descriptor()
1707
1766
  }
1708
1767
 
1709
1768
  func (OrderMessage_OrderStatus) Type() protoreflect.EnumType {
1710
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[27]
1769
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[28]
1711
1770
  }
1712
1771
 
1713
1772
  func (x OrderMessage_OrderStatus) Number() protoreflect.EnumNumber {
@@ -1756,11 +1815,11 @@ func (x StatusQuotedMessage_StatusQuotedMessageType) String() string {
1756
1815
  }
1757
1816
 
1758
1817
  func (StatusQuotedMessage_StatusQuotedMessageType) Descriptor() protoreflect.EnumDescriptor {
1759
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[28].Descriptor()
1818
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[29].Descriptor()
1760
1819
  }
1761
1820
 
1762
1821
  func (StatusQuotedMessage_StatusQuotedMessageType) Type() protoreflect.EnumType {
1763
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[28]
1822
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[29]
1764
1823
  }
1765
1824
 
1766
1825
  func (x StatusQuotedMessage_StatusQuotedMessageType) Number() protoreflect.EnumNumber {
@@ -1818,11 +1877,11 @@ func (x PaymentInviteMessage_ServiceType) String() string {
1818
1877
  }
1819
1878
 
1820
1879
  func (PaymentInviteMessage_ServiceType) Descriptor() protoreflect.EnumDescriptor {
1821
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[29].Descriptor()
1880
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[30].Descriptor()
1822
1881
  }
1823
1882
 
1824
1883
  func (PaymentInviteMessage_ServiceType) Type() protoreflect.EnumType {
1825
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[29]
1884
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[30]
1826
1885
  }
1827
1886
 
1828
1887
  func (x PaymentInviteMessage_ServiceType) Number() protoreflect.EnumNumber {
@@ -1874,11 +1933,11 @@ func (x HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime_HSMDateTimeC
1874
1933
  }
1875
1934
 
1876
1935
  func (HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime_HSMDateTimeComponent_CalendarType) Descriptor() protoreflect.EnumDescriptor {
1877
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[30].Descriptor()
1936
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[31].Descriptor()
1878
1937
  }
1879
1938
 
1880
1939
  func (HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime_HSMDateTimeComponent_CalendarType) Type() protoreflect.EnumType {
1881
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[30]
1940
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[31]
1882
1941
  }
1883
1942
 
1884
1943
  func (x HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime_HSMDateTimeComponent_CalendarType) Number() protoreflect.EnumNumber {
@@ -1945,11 +2004,11 @@ func (x HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime_HSMDateTimeC
1945
2004
  }
1946
2005
 
1947
2006
  func (HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime_HSMDateTimeComponent_DayOfWeekType) Descriptor() protoreflect.EnumDescriptor {
1948
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[31].Descriptor()
2007
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[32].Descriptor()
1949
2008
  }
1950
2009
 
1951
2010
  func (HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime_HSMDateTimeComponent_DayOfWeekType) Type() protoreflect.EnumType {
1952
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[31]
2011
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[32]
1953
2012
  }
1954
2013
 
1955
2014
  func (x HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime_HSMDateTimeComponent_DayOfWeekType) Number() protoreflect.EnumNumber {
@@ -2013,11 +2072,11 @@ func (x PeerDataOperationRequestResponseMessage_PeerDataOperationResult_HistoryS
2013
2072
  }
2014
2073
 
2015
2074
  func (PeerDataOperationRequestResponseMessage_PeerDataOperationResult_HistorySyncChunkRetryResponseCode) Descriptor() protoreflect.EnumDescriptor {
2016
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[32].Descriptor()
2075
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[33].Descriptor()
2017
2076
  }
2018
2077
 
2019
2078
  func (PeerDataOperationRequestResponseMessage_PeerDataOperationResult_HistorySyncChunkRetryResponseCode) Type() protoreflect.EnumType {
2020
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[32]
2079
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[33]
2021
2080
  }
2022
2081
 
2023
2082
  func (x PeerDataOperationRequestResponseMessage_PeerDataOperationResult_HistorySyncChunkRetryResponseCode) Number() protoreflect.EnumNumber {
@@ -2084,11 +2143,11 @@ func (x PeerDataOperationRequestResponseMessage_PeerDataOperationResult_FullHist
2084
2143
  }
2085
2144
 
2086
2145
  func (PeerDataOperationRequestResponseMessage_PeerDataOperationResult_FullHistorySyncOnDemandResponseCode) Descriptor() protoreflect.EnumDescriptor {
2087
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[33].Descriptor()
2146
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[34].Descriptor()
2088
2147
  }
2089
2148
 
2090
2149
  func (PeerDataOperationRequestResponseMessage_PeerDataOperationResult_FullHistorySyncOnDemandResponseCode) Type() protoreflect.EnumType {
2091
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[33]
2150
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[34]
2092
2151
  }
2093
2152
 
2094
2153
  func (x PeerDataOperationRequestResponseMessage_PeerDataOperationResult_FullHistorySyncOnDemandResponseCode) Number() protoreflect.EnumNumber {
@@ -2137,11 +2196,11 @@ func (x PeerDataOperationRequestMessage_GalaxyFlowAction_GalaxyFlowActionType) S
2137
2196
  }
2138
2197
 
2139
2198
  func (PeerDataOperationRequestMessage_GalaxyFlowAction_GalaxyFlowActionType) Descriptor() protoreflect.EnumDescriptor {
2140
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[34].Descriptor()
2199
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[35].Descriptor()
2141
2200
  }
2142
2201
 
2143
2202
  func (PeerDataOperationRequestMessage_GalaxyFlowAction_GalaxyFlowActionType) Type() protoreflect.EnumType {
2144
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[34]
2203
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[35]
2145
2204
  }
2146
2205
 
2147
2206
  func (x PeerDataOperationRequestMessage_GalaxyFlowAction_GalaxyFlowActionType) Number() protoreflect.EnumNumber {
@@ -2193,11 +2252,11 @@ func (x RequestWelcomeMessageMetadata_LocalChatState) String() string {
2193
2252
  }
2194
2253
 
2195
2254
  func (RequestWelcomeMessageMetadata_LocalChatState) Descriptor() protoreflect.EnumDescriptor {
2196
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[35].Descriptor()
2255
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[36].Descriptor()
2197
2256
  }
2198
2257
 
2199
2258
  func (RequestWelcomeMessageMetadata_LocalChatState) Type() protoreflect.EnumType {
2200
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[35]
2259
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[36]
2201
2260
  }
2202
2261
 
2203
2262
  func (x RequestWelcomeMessageMetadata_LocalChatState) Number() protoreflect.EnumNumber {
@@ -2321,11 +2380,11 @@ func (x ProtocolMessage_Type) String() string {
2321
2380
  }
2322
2381
 
2323
2382
  func (ProtocolMessage_Type) Descriptor() protoreflect.EnumDescriptor {
2324
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[36].Descriptor()
2383
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[37].Descriptor()
2325
2384
  }
2326
2385
 
2327
2386
  func (ProtocolMessage_Type) Type() protoreflect.EnumType {
2328
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[36]
2387
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[37]
2329
2388
  }
2330
2389
 
2331
2390
  func (x ProtocolMessage_Type) Number() protoreflect.EnumNumber {
@@ -2380,11 +2439,11 @@ func (x CloudAPIThreadControlNotification_CloudAPIThreadControl) String() string
2380
2439
  }
2381
2440
 
2382
2441
  func (CloudAPIThreadControlNotification_CloudAPIThreadControl) Descriptor() protoreflect.EnumDescriptor {
2383
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[37].Descriptor()
2442
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[38].Descriptor()
2384
2443
  }
2385
2444
 
2386
2445
  func (CloudAPIThreadControlNotification_CloudAPIThreadControl) Type() protoreflect.EnumType {
2387
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[37]
2446
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[38]
2388
2447
  }
2389
2448
 
2390
2449
  func (x CloudAPIThreadControlNotification_CloudAPIThreadControl) Number() protoreflect.EnumNumber {
@@ -2436,11 +2495,11 @@ func (x VideoMessage_VideoSourceType) String() string {
2436
2495
  }
2437
2496
 
2438
2497
  func (VideoMessage_VideoSourceType) Descriptor() protoreflect.EnumDescriptor {
2439
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[38].Descriptor()
2498
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[39].Descriptor()
2440
2499
  }
2441
2500
 
2442
2501
  func (VideoMessage_VideoSourceType) Type() protoreflect.EnumType {
2443
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[38]
2502
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[39]
2444
2503
  }
2445
2504
 
2446
2505
  func (x VideoMessage_VideoSourceType) Number() protoreflect.EnumNumber {
@@ -2498,11 +2557,11 @@ func (x VideoMessage_Attribution) String() string {
2498
2557
  }
2499
2558
 
2500
2559
  func (VideoMessage_Attribution) Descriptor() protoreflect.EnumDescriptor {
2501
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[39].Descriptor()
2560
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[40].Descriptor()
2502
2561
  }
2503
2562
 
2504
2563
  func (VideoMessage_Attribution) Type() protoreflect.EnumType {
2505
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[39]
2564
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[40]
2506
2565
  }
2507
2566
 
2508
2567
  func (x VideoMessage_Attribution) Number() protoreflect.EnumNumber {
@@ -2560,11 +2619,11 @@ func (x ExtendedTextMessage_InviteLinkGroupType) String() string {
2560
2619
  }
2561
2620
 
2562
2621
  func (ExtendedTextMessage_InviteLinkGroupType) Descriptor() protoreflect.EnumDescriptor {
2563
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[40].Descriptor()
2622
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[41].Descriptor()
2564
2623
  }
2565
2624
 
2566
2625
  func (ExtendedTextMessage_InviteLinkGroupType) Type() protoreflect.EnumType {
2567
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[40]
2626
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[41]
2568
2627
  }
2569
2628
 
2570
2629
  func (x ExtendedTextMessage_InviteLinkGroupType) Number() protoreflect.EnumNumber {
@@ -2628,11 +2687,11 @@ func (x ExtendedTextMessage_PreviewType) String() string {
2628
2687
  }
2629
2688
 
2630
2689
  func (ExtendedTextMessage_PreviewType) Descriptor() protoreflect.EnumDescriptor {
2631
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[41].Descriptor()
2690
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[42].Descriptor()
2632
2691
  }
2633
2692
 
2634
2693
  func (ExtendedTextMessage_PreviewType) Type() protoreflect.EnumType {
2635
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[41]
2694
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[42]
2636
2695
  }
2637
2696
 
2638
2697
  func (x ExtendedTextMessage_PreviewType) Number() protoreflect.EnumNumber {
@@ -2702,11 +2761,11 @@ func (x ExtendedTextMessage_FontType) String() string {
2702
2761
  }
2703
2762
 
2704
2763
  func (ExtendedTextMessage_FontType) Descriptor() protoreflect.EnumDescriptor {
2705
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[42].Descriptor()
2764
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[43].Descriptor()
2706
2765
  }
2707
2766
 
2708
2767
  func (ExtendedTextMessage_FontType) Type() protoreflect.EnumType {
2709
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[42]
2768
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[43]
2710
2769
  }
2711
2770
 
2712
2771
  func (x ExtendedTextMessage_FontType) Number() protoreflect.EnumNumber {
@@ -2770,11 +2829,11 @@ func (x LinkPreviewMetadata_SocialMediaPostType) String() string {
2770
2829
  }
2771
2830
 
2772
2831
  func (LinkPreviewMetadata_SocialMediaPostType) Descriptor() protoreflect.EnumDescriptor {
2773
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[43].Descriptor()
2832
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[44].Descriptor()
2774
2833
  }
2775
2834
 
2776
2835
  func (LinkPreviewMetadata_SocialMediaPostType) Type() protoreflect.EnumType {
2777
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[43]
2836
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[44]
2778
2837
  }
2779
2838
 
2780
2839
  func (x LinkPreviewMetadata_SocialMediaPostType) Number() protoreflect.EnumNumber {
@@ -2826,11 +2885,11 @@ func (x PaymentLinkMetadata_PaymentLinkHeader_PaymentLinkHeaderType) String() st
2826
2885
  }
2827
2886
 
2828
2887
  func (PaymentLinkMetadata_PaymentLinkHeader_PaymentLinkHeaderType) Descriptor() protoreflect.EnumDescriptor {
2829
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[44].Descriptor()
2888
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[45].Descriptor()
2830
2889
  }
2831
2890
 
2832
2891
  func (PaymentLinkMetadata_PaymentLinkHeader_PaymentLinkHeaderType) Type() protoreflect.EnumType {
2833
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[44]
2892
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[45]
2834
2893
  }
2835
2894
 
2836
2895
  func (x PaymentLinkMetadata_PaymentLinkHeader_PaymentLinkHeaderType) Number() protoreflect.EnumNumber {
@@ -2888,11 +2947,11 @@ func (x StatusNotificationMessage_StatusNotificationType) String() string {
2888
2947
  }
2889
2948
 
2890
2949
  func (StatusNotificationMessage_StatusNotificationType) Descriptor() protoreflect.EnumDescriptor {
2891
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[45].Descriptor()
2950
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[46].Descriptor()
2892
2951
  }
2893
2952
 
2894
2953
  func (StatusNotificationMessage_StatusNotificationType) Type() protoreflect.EnumType {
2895
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[45]
2954
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[46]
2896
2955
  }
2897
2956
 
2898
2957
  func (x StatusNotificationMessage_StatusNotificationType) Number() protoreflect.EnumNumber {
@@ -2944,11 +3003,11 @@ func (x InvoiceMessage_AttachmentType) String() string {
2944
3003
  }
2945
3004
 
2946
3005
  func (InvoiceMessage_AttachmentType) Descriptor() protoreflect.EnumDescriptor {
2947
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[46].Descriptor()
3006
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[47].Descriptor()
2948
3007
  }
2949
3008
 
2950
3009
  func (InvoiceMessage_AttachmentType) Type() protoreflect.EnumType {
2951
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[46]
3010
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[47]
2952
3011
  }
2953
3012
 
2954
3013
  func (x InvoiceMessage_AttachmentType) Number() protoreflect.EnumNumber {
@@ -3006,11 +3065,11 @@ func (x ImageMessage_ImageSourceType) String() string {
3006
3065
  }
3007
3066
 
3008
3067
  func (ImageMessage_ImageSourceType) Descriptor() protoreflect.EnumDescriptor {
3009
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[47].Descriptor()
3068
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[48].Descriptor()
3010
3069
  }
3011
3070
 
3012
3071
  func (ImageMessage_ImageSourceType) Type() protoreflect.EnumType {
3013
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[47]
3072
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[48]
3014
3073
  }
3015
3074
 
3016
3075
  func (x ImageMessage_ImageSourceType) Number() protoreflect.EnumNumber {
@@ -3062,11 +3121,11 @@ func (x ContextInfo_QuotedType) String() string {
3062
3121
  }
3063
3122
 
3064
3123
  func (ContextInfo_QuotedType) Descriptor() protoreflect.EnumDescriptor {
3065
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[48].Descriptor()
3124
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[49].Descriptor()
3066
3125
  }
3067
3126
 
3068
3127
  func (ContextInfo_QuotedType) Type() protoreflect.EnumType {
3069
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[48]
3128
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[49]
3070
3129
  }
3071
3130
 
3072
3131
  func (x ContextInfo_QuotedType) Number() protoreflect.EnumNumber {
@@ -3130,11 +3189,11 @@ func (x ContextInfo_ForwardOrigin) String() string {
3130
3189
  }
3131
3190
 
3132
3191
  func (ContextInfo_ForwardOrigin) Descriptor() protoreflect.EnumDescriptor {
3133
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[49].Descriptor()
3192
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[50].Descriptor()
3134
3193
  }
3135
3194
 
3136
3195
  func (ContextInfo_ForwardOrigin) Type() protoreflect.EnumType {
3137
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[49]
3196
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[50]
3138
3197
  }
3139
3198
 
3140
3199
  func (x ContextInfo_ForwardOrigin) Number() protoreflect.EnumNumber {
@@ -3198,11 +3257,11 @@ func (x ContextInfo_StatusSourceType) String() string {
3198
3257
  }
3199
3258
 
3200
3259
  func (ContextInfo_StatusSourceType) Descriptor() protoreflect.EnumDescriptor {
3201
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[50].Descriptor()
3260
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[51].Descriptor()
3202
3261
  }
3203
3262
 
3204
3263
  func (ContextInfo_StatusSourceType) Type() protoreflect.EnumType {
3205
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[50]
3264
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[51]
3206
3265
  }
3207
3266
 
3208
3267
  func (x ContextInfo_StatusSourceType) Number() protoreflect.EnumNumber {
@@ -3275,11 +3334,11 @@ func (x ContextInfo_PairedMediaType) String() string {
3275
3334
  }
3276
3335
 
3277
3336
  func (ContextInfo_PairedMediaType) Descriptor() protoreflect.EnumDescriptor {
3278
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[51].Descriptor()
3337
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[52].Descriptor()
3279
3338
  }
3280
3339
 
3281
3340
  func (ContextInfo_PairedMediaType) Type() protoreflect.EnumType {
3282
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[51]
3341
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[52]
3283
3342
  }
3284
3343
 
3285
3344
  func (x ContextInfo_PairedMediaType) Number() protoreflect.EnumNumber {
@@ -3340,11 +3399,11 @@ func (x ContextInfo_StatusAttributionType) String() string {
3340
3399
  }
3341
3400
 
3342
3401
  func (ContextInfo_StatusAttributionType) Descriptor() protoreflect.EnumDescriptor {
3343
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[52].Descriptor()
3402
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[53].Descriptor()
3344
3403
  }
3345
3404
 
3346
3405
  func (ContextInfo_StatusAttributionType) Type() protoreflect.EnumType {
3347
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[52]
3406
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[53]
3348
3407
  }
3349
3408
 
3350
3409
  func (x ContextInfo_StatusAttributionType) Number() protoreflect.EnumNumber {
@@ -3396,11 +3455,11 @@ func (x ContextInfo_StatusAudienceMetadata_AudienceType) String() string {
3396
3455
  }
3397
3456
 
3398
3457
  func (ContextInfo_StatusAudienceMetadata_AudienceType) Descriptor() protoreflect.EnumDescriptor {
3399
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[53].Descriptor()
3458
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[54].Descriptor()
3400
3459
  }
3401
3460
 
3402
3461
  func (ContextInfo_StatusAudienceMetadata_AudienceType) Type() protoreflect.EnumType {
3403
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[53]
3462
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[54]
3404
3463
  }
3405
3464
 
3406
3465
  func (x ContextInfo_StatusAudienceMetadata_AudienceType) Number() protoreflect.EnumNumber {
@@ -3452,11 +3511,11 @@ func (x ContextInfo_DataSharingContext_DataSharingFlags) String() string {
3452
3511
  }
3453
3512
 
3454
3513
  func (ContextInfo_DataSharingContext_DataSharingFlags) Descriptor() protoreflect.EnumDescriptor {
3455
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[54].Descriptor()
3514
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[55].Descriptor()
3456
3515
  }
3457
3516
 
3458
3517
  func (ContextInfo_DataSharingContext_DataSharingFlags) Type() protoreflect.EnumType {
3459
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[54]
3518
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[55]
3460
3519
  }
3461
3520
 
3462
3521
  func (x ContextInfo_DataSharingContext_DataSharingFlags) Number() protoreflect.EnumNumber {
@@ -3511,11 +3570,11 @@ func (x ContextInfo_ForwardedNewsletterMessageInfo_ContentType) String() string
3511
3570
  }
3512
3571
 
3513
3572
  func (ContextInfo_ForwardedNewsletterMessageInfo_ContentType) Descriptor() protoreflect.EnumDescriptor {
3514
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[55].Descriptor()
3573
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[56].Descriptor()
3515
3574
  }
3516
3575
 
3517
3576
  func (ContextInfo_ForwardedNewsletterMessageInfo_ContentType) Type() protoreflect.EnumType {
3518
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[55]
3577
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[56]
3519
3578
  }
3520
3579
 
3521
3580
  func (x ContextInfo_ForwardedNewsletterMessageInfo_ContentType) Number() protoreflect.EnumNumber {
@@ -3567,11 +3626,11 @@ func (x ContextInfo_ExternalAdReplyInfo_AdType) String() string {
3567
3626
  }
3568
3627
 
3569
3628
  func (ContextInfo_ExternalAdReplyInfo_AdType) Descriptor() protoreflect.EnumDescriptor {
3570
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[56].Descriptor()
3629
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[57].Descriptor()
3571
3630
  }
3572
3631
 
3573
3632
  func (ContextInfo_ExternalAdReplyInfo_AdType) Type() protoreflect.EnumType {
3574
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[56]
3633
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[57]
3575
3634
  }
3576
3635
 
3577
3636
  func (x ContextInfo_ExternalAdReplyInfo_AdType) Number() protoreflect.EnumNumber {
@@ -3626,11 +3685,11 @@ func (x ContextInfo_ExternalAdReplyInfo_MediaType) String() string {
3626
3685
  }
3627
3686
 
3628
3687
  func (ContextInfo_ExternalAdReplyInfo_MediaType) Descriptor() protoreflect.EnumDescriptor {
3629
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[57].Descriptor()
3688
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[58].Descriptor()
3630
3689
  }
3631
3690
 
3632
3691
  func (ContextInfo_ExternalAdReplyInfo_MediaType) Type() protoreflect.EnumType {
3633
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[57]
3692
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[58]
3634
3693
  }
3635
3694
 
3636
3695
  func (x ContextInfo_ExternalAdReplyInfo_MediaType) Number() protoreflect.EnumNumber {
@@ -3685,11 +3744,11 @@ func (x ContextInfo_AdReplyInfo_MediaType) String() string {
3685
3744
  }
3686
3745
 
3687
3746
  func (ContextInfo_AdReplyInfo_MediaType) Descriptor() protoreflect.EnumDescriptor {
3688
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[58].Descriptor()
3747
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[59].Descriptor()
3689
3748
  }
3690
3749
 
3691
3750
  func (ContextInfo_AdReplyInfo_MediaType) Type() protoreflect.EnumType {
3692
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[58]
3751
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[59]
3693
3752
  }
3694
3753
 
3695
3754
  func (x ContextInfo_AdReplyInfo_MediaType) Number() protoreflect.EnumNumber {
@@ -3795,11 +3854,11 @@ func (x MessageAssociation_AssociationType) String() string {
3795
3854
  }
3796
3855
 
3797
3856
  func (MessageAssociation_AssociationType) Descriptor() protoreflect.EnumDescriptor {
3798
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[59].Descriptor()
3857
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[60].Descriptor()
3799
3858
  }
3800
3859
 
3801
3860
  func (MessageAssociation_AssociationType) Type() protoreflect.EnumType {
3802
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[59]
3861
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[60]
3803
3862
  }
3804
3863
 
3805
3864
  func (x MessageAssociation_AssociationType) Number() protoreflect.EnumNumber {
@@ -3854,11 +3913,11 @@ func (x ThreadID_ThreadType) String() string {
3854
3913
  }
3855
3914
 
3856
3915
  func (ThreadID_ThreadType) Descriptor() protoreflect.EnumDescriptor {
3857
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[60].Descriptor()
3916
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[61].Descriptor()
3858
3917
  }
3859
3918
 
3860
3919
  func (ThreadID_ThreadType) Type() protoreflect.EnumType {
3861
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[60]
3920
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[61]
3862
3921
  }
3863
3922
 
3864
3923
  func (x ThreadID_ThreadType) Number() protoreflect.EnumNumber {
@@ -3910,11 +3969,11 @@ func (x MessageContextInfo_MessageAddonExpiryType) String() string {
3910
3969
  }
3911
3970
 
3912
3971
  func (MessageContextInfo_MessageAddonExpiryType) Descriptor() protoreflect.EnumDescriptor {
3913
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[61].Descriptor()
3972
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[62].Descriptor()
3914
3973
  }
3915
3974
 
3916
3975
  func (MessageContextInfo_MessageAddonExpiryType) Type() protoreflect.EnumType {
3917
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[61]
3976
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[62]
3918
3977
  }
3919
3978
 
3920
3979
  func (x MessageContextInfo_MessageAddonExpiryType) Number() protoreflect.EnumNumber {
@@ -3969,11 +4028,11 @@ func (x InteractiveAnnotation_StatusLinkType) String() string {
3969
4028
  }
3970
4029
 
3971
4030
  func (InteractiveAnnotation_StatusLinkType) Descriptor() protoreflect.EnumDescriptor {
3972
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[62].Descriptor()
4031
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[63].Descriptor()
3973
4032
  }
3974
4033
 
3975
4034
  func (InteractiveAnnotation_StatusLinkType) Type() protoreflect.EnumType {
3976
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[62]
4035
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[63]
3977
4036
  }
3978
4037
 
3979
4038
  func (x InteractiveAnnotation_StatusLinkType) Number() protoreflect.EnumNumber {
@@ -4028,11 +4087,11 @@ func (x HydratedTemplateButton_HydratedURLButton_WebviewPresentationType) String
4028
4087
  }
4029
4088
 
4030
4089
  func (HydratedTemplateButton_HydratedURLButton_WebviewPresentationType) Descriptor() protoreflect.EnumDescriptor {
4031
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[63].Descriptor()
4090
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[64].Descriptor()
4032
4091
  }
4033
4092
 
4034
4093
  func (HydratedTemplateButton_HydratedURLButton_WebviewPresentationType) Type() protoreflect.EnumType {
4035
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[63]
4094
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[64]
4036
4095
  }
4037
4096
 
4038
4097
  func (x HydratedTemplateButton_HydratedURLButton_WebviewPresentationType) Number() protoreflect.EnumNumber {
@@ -4084,11 +4143,11 @@ func (x PaymentBackground_Type) String() string {
4084
4143
  }
4085
4144
 
4086
4145
  func (PaymentBackground_Type) Descriptor() protoreflect.EnumDescriptor {
4087
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[64].Descriptor()
4146
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[65].Descriptor()
4088
4147
  }
4089
4148
 
4090
4149
  func (PaymentBackground_Type) Type() protoreflect.EnumType {
4091
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[64]
4150
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[65]
4092
4151
  }
4093
4152
 
4094
4153
  func (x PaymentBackground_Type) Number() protoreflect.EnumNumber {
@@ -4152,11 +4211,11 @@ func (x DisappearingMode_Trigger) String() string {
4152
4211
  }
4153
4212
 
4154
4213
  func (DisappearingMode_Trigger) Descriptor() protoreflect.EnumDescriptor {
4155
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[65].Descriptor()
4214
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[66].Descriptor()
4156
4215
  }
4157
4216
 
4158
4217
  func (DisappearingMode_Trigger) Type() protoreflect.EnumType {
4159
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[65]
4218
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[66]
4160
4219
  }
4161
4220
 
4162
4221
  func (x DisappearingMode_Trigger) Number() protoreflect.EnumNumber {
@@ -4214,11 +4273,11 @@ func (x DisappearingMode_Initiator) String() string {
4214
4273
  }
4215
4274
 
4216
4275
  func (DisappearingMode_Initiator) Descriptor() protoreflect.EnumDescriptor {
4217
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[66].Descriptor()
4276
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[67].Descriptor()
4218
4277
  }
4219
4278
 
4220
4279
  func (DisappearingMode_Initiator) Type() protoreflect.EnumType {
4221
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[66]
4280
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[67]
4222
4281
  }
4223
4282
 
4224
4283
  func (x DisappearingMode_Initiator) Number() protoreflect.EnumNumber {
@@ -4276,11 +4335,11 @@ func (x ProcessedVideo_VideoQuality) String() string {
4276
4335
  }
4277
4336
 
4278
4337
  func (ProcessedVideo_VideoQuality) Descriptor() protoreflect.EnumDescriptor {
4279
- return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[67].Descriptor()
4338
+ return file_waE2E_WAWebProtobufsE2E_proto_enumTypes[68].Descriptor()
4280
4339
  }
4281
4340
 
4282
4341
  func (ProcessedVideo_VideoQuality) Type() protoreflect.EnumType {
4283
- return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[67]
4342
+ return &file_waE2E_WAWebProtobufsE2E_proto_enumTypes[68]
4284
4343
  }
4285
4344
 
4286
4345
  func (x ProcessedVideo_VideoQuality) Number() protoreflect.EnumNumber {
@@ -8552,6 +8611,7 @@ type MessageContextInfo struct {
8552
8611
  LimitSharing *waCommon.LimitSharing `protobuf:"bytes,13,opt,name=limitSharing" json:"limitSharing,omitempty"`
8553
8612
  LimitSharingV2 *waCommon.LimitSharing `protobuf:"bytes,14,opt,name=limitSharingV2" json:"limitSharingV2,omitempty"`
8554
8613
  ThreadID []*ThreadID `protobuf:"bytes,15,rep,name=threadID" json:"threadID,omitempty"`
8614
+ WeblinkRenderConfig *WebLinkRenderConfig `protobuf:"varint,16,opt,name=weblinkRenderConfig,enum=WAWebProtobufsE2E.WebLinkRenderConfig" json:"weblinkRenderConfig,omitempty"`
8555
8615
  unknownFields protoimpl.UnknownFields
8556
8616
  sizeCache protoimpl.SizeCache
8557
8617
  }
@@ -8691,6 +8751,13 @@ func (x *MessageContextInfo) GetThreadID() []*ThreadID {
8691
8751
  return nil
8692
8752
  }
8693
8753
 
8754
+ func (x *MessageContextInfo) GetWeblinkRenderConfig() WebLinkRenderConfig {
8755
+ if x != nil && x.WeblinkRenderConfig != nil {
8756
+ return *x.WeblinkRenderConfig
8757
+ }
8758
+ return WebLinkRenderConfig_WEBVIEW
8759
+ }
8760
+
8694
8761
  type InteractiveAnnotation struct {
8695
8762
  state protoimpl.MessageState `protogen:"open.v1"`
8696
8763
  // Types that are valid to be assigned to Action:
@@ -9322,9 +9389,8 @@ type Message struct {
9322
9389
  StatusQuotedMessage *StatusQuotedMessage `protobuf:"bytes,109,opt,name=statusQuotedMessage" json:"statusQuotedMessage,omitempty"`
9323
9390
  StatusStickerInteractionMessage *StatusStickerInteractionMessage `protobuf:"bytes,110,opt,name=statusStickerInteractionMessage" json:"statusStickerInteractionMessage,omitempty"`
9324
9391
  PollCreationMessageV5 *PollCreationMessage `protobuf:"bytes,111,opt,name=pollCreationMessageV5" json:"pollCreationMessageV5,omitempty"`
9325
- PollResultSnapshotMessageV2 *PollResultSnapshotMessage `protobuf:"bytes,112,opt,name=pollResultSnapshotMessageV2" json:"pollResultSnapshotMessageV2,omitempty"`
9326
9392
  NewsletterFollowerInviteMessageV2 *NewsletterFollowerInviteMessage `protobuf:"bytes,113,opt,name=newsletterFollowerInviteMessageV2" json:"newsletterFollowerInviteMessageV2,omitempty"`
9327
- RequestContactInfoMessage *RequestContactInfoMessage `protobuf:"bytes,114,opt,name=requestContactInfoMessage" json:"requestContactInfoMessage,omitempty"`
9393
+ PollResultSnapshotMessageV3 *PollResultSnapshotMessage `protobuf:"bytes,114,opt,name=pollResultSnapshotMessageV3" json:"pollResultSnapshotMessageV3,omitempty"`
9328
9394
  unknownFields protoimpl.UnknownFields
9329
9395
  sizeCache protoimpl.SizeCache
9330
9396
  }
@@ -10010,13 +10076,6 @@ func (x *Message) GetPollCreationMessageV5() *PollCreationMessage {
10010
10076
  return nil
10011
10077
  }
10012
10078
 
10013
- func (x *Message) GetPollResultSnapshotMessageV2() *PollResultSnapshotMessage {
10014
- if x != nil {
10015
- return x.PollResultSnapshotMessageV2
10016
- }
10017
- return nil
10018
- }
10019
-
10020
10079
  func (x *Message) GetNewsletterFollowerInviteMessageV2() *NewsletterFollowerInviteMessage {
10021
10080
  if x != nil {
10022
10081
  return x.NewsletterFollowerInviteMessageV2
@@ -10024,9 +10083,9 @@ func (x *Message) GetNewsletterFollowerInviteMessageV2() *NewsletterFollowerInvi
10024
10083
  return nil
10025
10084
  }
10026
10085
 
10027
- func (x *Message) GetRequestContactInfoMessage() *RequestContactInfoMessage {
10086
+ func (x *Message) GetPollResultSnapshotMessageV3() *PollResultSnapshotMessage {
10028
10087
  if x != nil {
10029
- return x.RequestContactInfoMessage
10088
+ return x.PollResultSnapshotMessageV3
10030
10089
  }
10031
10090
  return nil
10032
10091
  }
@@ -10375,6 +10434,8 @@ type EventMessage struct {
10375
10434
  EndTime *int64 `protobuf:"varint,8,opt,name=endTime" json:"endTime,omitempty"`
10376
10435
  ExtraGuestsAllowed *bool `protobuf:"varint,9,opt,name=extraGuestsAllowed" json:"extraGuestsAllowed,omitempty"`
10377
10436
  IsScheduleCall *bool `protobuf:"varint,10,opt,name=isScheduleCall" json:"isScheduleCall,omitempty"`
10437
+ HasReminder *bool `protobuf:"varint,11,opt,name=hasReminder" json:"hasReminder,omitempty"`
10438
+ ReminderOffsetSec *int64 `protobuf:"varint,12,opt,name=reminderOffsetSec" json:"reminderOffsetSec,omitempty"`
10378
10439
  unknownFields protoimpl.UnknownFields
10379
10440
  sizeCache protoimpl.SizeCache
10380
10441
  }
@@ -10479,6 +10540,20 @@ func (x *EventMessage) GetIsScheduleCall() bool {
10479
10540
  return false
10480
10541
  }
10481
10542
 
10543
+ func (x *EventMessage) GetHasReminder() bool {
10544
+ if x != nil && x.HasReminder != nil {
10545
+ return *x.HasReminder
10546
+ }
10547
+ return false
10548
+ }
10549
+
10550
+ func (x *EventMessage) GetReminderOffsetSec() int64 {
10551
+ if x != nil && x.ReminderOffsetSec != nil {
10552
+ return *x.ReminderOffsetSec
10553
+ }
10554
+ return 0
10555
+ }
10556
+
10482
10557
  type CommentMessage struct {
10483
10558
  state protoimpl.MessageState `protogen:"open.v1"`
10484
10559
  Message *Message `protobuf:"bytes,1,opt,name=message" json:"message,omitempty"`
@@ -11415,66 +11490,6 @@ func (x *DeviceSentMessage) GetPhash() string {
11415
11490
  return ""
11416
11491
  }
11417
11492
 
11418
- type RequestContactInfoMessage struct {
11419
- state protoimpl.MessageState `protogen:"open.v1"`
11420
- Text *string `protobuf:"bytes,1,opt,name=text" json:"text,omitempty"`
11421
- CtaButtonText *string `protobuf:"bytes,2,opt,name=ctaButtonText" json:"ctaButtonText,omitempty"`
11422
- ContextInfo *ContextInfo `protobuf:"bytes,3,opt,name=contextInfo" json:"contextInfo,omitempty"`
11423
- unknownFields protoimpl.UnknownFields
11424
- sizeCache protoimpl.SizeCache
11425
- }
11426
-
11427
- func (x *RequestContactInfoMessage) Reset() {
11428
- *x = RequestContactInfoMessage{}
11429
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[65]
11430
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
11431
- ms.StoreMessageInfo(mi)
11432
- }
11433
-
11434
- func (x *RequestContactInfoMessage) String() string {
11435
- return protoimpl.X.MessageStringOf(x)
11436
- }
11437
-
11438
- func (*RequestContactInfoMessage) ProtoMessage() {}
11439
-
11440
- func (x *RequestContactInfoMessage) ProtoReflect() protoreflect.Message {
11441
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[65]
11442
- if x != nil {
11443
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
11444
- if ms.LoadMessageInfo() == nil {
11445
- ms.StoreMessageInfo(mi)
11446
- }
11447
- return ms
11448
- }
11449
- return mi.MessageOf(x)
11450
- }
11451
-
11452
- // Deprecated: Use RequestContactInfoMessage.ProtoReflect.Descriptor instead.
11453
- func (*RequestContactInfoMessage) Descriptor() ([]byte, []int) {
11454
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{65}
11455
- }
11456
-
11457
- func (x *RequestContactInfoMessage) GetText() string {
11458
- if x != nil && x.Text != nil {
11459
- return *x.Text
11460
- }
11461
- return ""
11462
- }
11463
-
11464
- func (x *RequestContactInfoMessage) GetCtaButtonText() string {
11465
- if x != nil && x.CtaButtonText != nil {
11466
- return *x.CtaButtonText
11467
- }
11468
- return ""
11469
- }
11470
-
11471
- func (x *RequestContactInfoMessage) GetContextInfo() *ContextInfo {
11472
- if x != nil {
11473
- return x.ContextInfo
11474
- }
11475
- return nil
11476
- }
11477
-
11478
11493
  type RequestPhoneNumberMessage struct {
11479
11494
  state protoimpl.MessageState `protogen:"open.v1"`
11480
11495
  ContextInfo *ContextInfo `protobuf:"bytes,1,opt,name=contextInfo" json:"contextInfo,omitempty"`
@@ -11484,7 +11499,7 @@ type RequestPhoneNumberMessage struct {
11484
11499
 
11485
11500
  func (x *RequestPhoneNumberMessage) Reset() {
11486
11501
  *x = RequestPhoneNumberMessage{}
11487
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[66]
11502
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[65]
11488
11503
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
11489
11504
  ms.StoreMessageInfo(mi)
11490
11505
  }
@@ -11496,7 +11511,7 @@ func (x *RequestPhoneNumberMessage) String() string {
11496
11511
  func (*RequestPhoneNumberMessage) ProtoMessage() {}
11497
11512
 
11498
11513
  func (x *RequestPhoneNumberMessage) ProtoReflect() protoreflect.Message {
11499
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[66]
11514
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[65]
11500
11515
  if x != nil {
11501
11516
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
11502
11517
  if ms.LoadMessageInfo() == nil {
@@ -11509,7 +11524,7 @@ func (x *RequestPhoneNumberMessage) ProtoReflect() protoreflect.Message {
11509
11524
 
11510
11525
  // Deprecated: Use RequestPhoneNumberMessage.ProtoReflect.Descriptor instead.
11511
11526
  func (*RequestPhoneNumberMessage) Descriptor() ([]byte, []int) {
11512
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{66}
11527
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{65}
11513
11528
  }
11514
11529
 
11515
11530
  func (x *RequestPhoneNumberMessage) GetContextInfo() *ContextInfo {
@@ -11532,7 +11547,7 @@ type NewsletterFollowerInviteMessage struct {
11532
11547
 
11533
11548
  func (x *NewsletterFollowerInviteMessage) Reset() {
11534
11549
  *x = NewsletterFollowerInviteMessage{}
11535
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[67]
11550
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[66]
11536
11551
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
11537
11552
  ms.StoreMessageInfo(mi)
11538
11553
  }
@@ -11544,7 +11559,7 @@ func (x *NewsletterFollowerInviteMessage) String() string {
11544
11559
  func (*NewsletterFollowerInviteMessage) ProtoMessage() {}
11545
11560
 
11546
11561
  func (x *NewsletterFollowerInviteMessage) ProtoReflect() protoreflect.Message {
11547
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[67]
11562
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[66]
11548
11563
  if x != nil {
11549
11564
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
11550
11565
  if ms.LoadMessageInfo() == nil {
@@ -11557,7 +11572,7 @@ func (x *NewsletterFollowerInviteMessage) ProtoReflect() protoreflect.Message {
11557
11572
 
11558
11573
  // Deprecated: Use NewsletterFollowerInviteMessage.ProtoReflect.Descriptor instead.
11559
11574
  func (*NewsletterFollowerInviteMessage) Descriptor() ([]byte, []int) {
11560
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{67}
11575
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{66}
11561
11576
  }
11562
11577
 
11563
11578
  func (x *NewsletterFollowerInviteMessage) GetNewsletterJID() string {
@@ -11609,7 +11624,7 @@ type NewsletterAdminInviteMessage struct {
11609
11624
 
11610
11625
  func (x *NewsletterAdminInviteMessage) Reset() {
11611
11626
  *x = NewsletterAdminInviteMessage{}
11612
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[68]
11627
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[67]
11613
11628
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
11614
11629
  ms.StoreMessageInfo(mi)
11615
11630
  }
@@ -11621,7 +11636,7 @@ func (x *NewsletterAdminInviteMessage) String() string {
11621
11636
  func (*NewsletterAdminInviteMessage) ProtoMessage() {}
11622
11637
 
11623
11638
  func (x *NewsletterAdminInviteMessage) ProtoReflect() protoreflect.Message {
11624
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[68]
11639
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[67]
11625
11640
  if x != nil {
11626
11641
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
11627
11642
  if ms.LoadMessageInfo() == nil {
@@ -11634,7 +11649,7 @@ func (x *NewsletterAdminInviteMessage) ProtoReflect() protoreflect.Message {
11634
11649
 
11635
11650
  // Deprecated: Use NewsletterAdminInviteMessage.ProtoReflect.Descriptor instead.
11636
11651
  func (*NewsletterAdminInviteMessage) Descriptor() ([]byte, []int) {
11637
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{68}
11652
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{67}
11638
11653
  }
11639
11654
 
11640
11655
  func (x *NewsletterAdminInviteMessage) GetNewsletterJID() string {
@@ -11693,7 +11708,7 @@ type ProductMessage struct {
11693
11708
 
11694
11709
  func (x *ProductMessage) Reset() {
11695
11710
  *x = ProductMessage{}
11696
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[69]
11711
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[68]
11697
11712
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
11698
11713
  ms.StoreMessageInfo(mi)
11699
11714
  }
@@ -11705,7 +11720,7 @@ func (x *ProductMessage) String() string {
11705
11720
  func (*ProductMessage) ProtoMessage() {}
11706
11721
 
11707
11722
  func (x *ProductMessage) ProtoReflect() protoreflect.Message {
11708
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[69]
11723
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[68]
11709
11724
  if x != nil {
11710
11725
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
11711
11726
  if ms.LoadMessageInfo() == nil {
@@ -11718,7 +11733,7 @@ func (x *ProductMessage) ProtoReflect() protoreflect.Message {
11718
11733
 
11719
11734
  // Deprecated: Use ProductMessage.ProtoReflect.Descriptor instead.
11720
11735
  func (*ProductMessage) Descriptor() ([]byte, []int) {
11721
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{69}
11736
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{68}
11722
11737
  }
11723
11738
 
11724
11739
  func (x *ProductMessage) GetProduct() *ProductMessage_ProductSnapshot {
@@ -11776,7 +11791,7 @@ type TemplateButtonReplyMessage struct {
11776
11791
 
11777
11792
  func (x *TemplateButtonReplyMessage) Reset() {
11778
11793
  *x = TemplateButtonReplyMessage{}
11779
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[70]
11794
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[69]
11780
11795
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
11781
11796
  ms.StoreMessageInfo(mi)
11782
11797
  }
@@ -11788,7 +11803,7 @@ func (x *TemplateButtonReplyMessage) String() string {
11788
11803
  func (*TemplateButtonReplyMessage) ProtoMessage() {}
11789
11804
 
11790
11805
  func (x *TemplateButtonReplyMessage) ProtoReflect() protoreflect.Message {
11791
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[70]
11806
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[69]
11792
11807
  if x != nil {
11793
11808
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
11794
11809
  if ms.LoadMessageInfo() == nil {
@@ -11801,7 +11816,7 @@ func (x *TemplateButtonReplyMessage) ProtoReflect() protoreflect.Message {
11801
11816
 
11802
11817
  // Deprecated: Use TemplateButtonReplyMessage.ProtoReflect.Descriptor instead.
11803
11818
  func (*TemplateButtonReplyMessage) Descriptor() ([]byte, []int) {
11804
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{70}
11819
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{69}
11805
11820
  }
11806
11821
 
11807
11822
  func (x *TemplateButtonReplyMessage) GetSelectedID() string {
@@ -11856,7 +11871,7 @@ type TemplateMessage struct {
11856
11871
 
11857
11872
  func (x *TemplateMessage) Reset() {
11858
11873
  *x = TemplateMessage{}
11859
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[71]
11874
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[70]
11860
11875
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
11861
11876
  ms.StoreMessageInfo(mi)
11862
11877
  }
@@ -11868,7 +11883,7 @@ func (x *TemplateMessage) String() string {
11868
11883
  func (*TemplateMessage) ProtoMessage() {}
11869
11884
 
11870
11885
  func (x *TemplateMessage) ProtoReflect() protoreflect.Message {
11871
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[71]
11886
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[70]
11872
11887
  if x != nil {
11873
11888
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
11874
11889
  if ms.LoadMessageInfo() == nil {
@@ -11881,7 +11896,7 @@ func (x *TemplateMessage) ProtoReflect() protoreflect.Message {
11881
11896
 
11882
11897
  // Deprecated: Use TemplateMessage.ProtoReflect.Descriptor instead.
11883
11898
  func (*TemplateMessage) Descriptor() ([]byte, []int) {
11884
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{71}
11899
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{70}
11885
11900
  }
11886
11901
 
11887
11902
  func (x *TemplateMessage) GetFormat() isTemplateMessage_Format {
@@ -11990,7 +12005,7 @@ type StickerMessage struct {
11990
12005
 
11991
12006
  func (x *StickerMessage) Reset() {
11992
12007
  *x = StickerMessage{}
11993
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[72]
12008
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[71]
11994
12009
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
11995
12010
  ms.StoreMessageInfo(mi)
11996
12011
  }
@@ -12002,7 +12017,7 @@ func (x *StickerMessage) String() string {
12002
12017
  func (*StickerMessage) ProtoMessage() {}
12003
12018
 
12004
12019
  func (x *StickerMessage) ProtoReflect() protoreflect.Message {
12005
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[72]
12020
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[71]
12006
12021
  if x != nil {
12007
12022
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12008
12023
  if ms.LoadMessageInfo() == nil {
@@ -12015,7 +12030,7 @@ func (x *StickerMessage) ProtoReflect() protoreflect.Message {
12015
12030
 
12016
12031
  // Deprecated: Use StickerMessage.ProtoReflect.Descriptor instead.
12017
12032
  func (*StickerMessage) Descriptor() ([]byte, []int) {
12018
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{72}
12033
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{71}
12019
12034
  }
12020
12035
 
12021
12036
  func (x *StickerMessage) GetURL() string {
@@ -12183,7 +12198,7 @@ type LiveLocationMessage struct {
12183
12198
 
12184
12199
  func (x *LiveLocationMessage) Reset() {
12185
12200
  *x = LiveLocationMessage{}
12186
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[73]
12201
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[72]
12187
12202
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12188
12203
  ms.StoreMessageInfo(mi)
12189
12204
  }
@@ -12195,7 +12210,7 @@ func (x *LiveLocationMessage) String() string {
12195
12210
  func (*LiveLocationMessage) ProtoMessage() {}
12196
12211
 
12197
12212
  func (x *LiveLocationMessage) ProtoReflect() protoreflect.Message {
12198
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[73]
12213
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[72]
12199
12214
  if x != nil {
12200
12215
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12201
12216
  if ms.LoadMessageInfo() == nil {
@@ -12208,7 +12223,7 @@ func (x *LiveLocationMessage) ProtoReflect() protoreflect.Message {
12208
12223
 
12209
12224
  // Deprecated: Use LiveLocationMessage.ProtoReflect.Descriptor instead.
12210
12225
  func (*LiveLocationMessage) Descriptor() ([]byte, []int) {
12211
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{73}
12226
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{72}
12212
12227
  }
12213
12228
 
12214
12229
  func (x *LiveLocationMessage) GetDegreesLatitude() float64 {
@@ -12290,7 +12305,7 @@ type CancelPaymentRequestMessage struct {
12290
12305
 
12291
12306
  func (x *CancelPaymentRequestMessage) Reset() {
12292
12307
  *x = CancelPaymentRequestMessage{}
12293
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[74]
12308
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[73]
12294
12309
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12295
12310
  ms.StoreMessageInfo(mi)
12296
12311
  }
@@ -12302,7 +12317,7 @@ func (x *CancelPaymentRequestMessage) String() string {
12302
12317
  func (*CancelPaymentRequestMessage) ProtoMessage() {}
12303
12318
 
12304
12319
  func (x *CancelPaymentRequestMessage) ProtoReflect() protoreflect.Message {
12305
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[74]
12320
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[73]
12306
12321
  if x != nil {
12307
12322
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12308
12323
  if ms.LoadMessageInfo() == nil {
@@ -12315,7 +12330,7 @@ func (x *CancelPaymentRequestMessage) ProtoReflect() protoreflect.Message {
12315
12330
 
12316
12331
  // Deprecated: Use CancelPaymentRequestMessage.ProtoReflect.Descriptor instead.
12317
12332
  func (*CancelPaymentRequestMessage) Descriptor() ([]byte, []int) {
12318
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{74}
12333
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{73}
12319
12334
  }
12320
12335
 
12321
12336
  func (x *CancelPaymentRequestMessage) GetKey() *waCommon.MessageKey {
@@ -12334,7 +12349,7 @@ type DeclinePaymentRequestMessage struct {
12334
12349
 
12335
12350
  func (x *DeclinePaymentRequestMessage) Reset() {
12336
12351
  *x = DeclinePaymentRequestMessage{}
12337
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[75]
12352
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[74]
12338
12353
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12339
12354
  ms.StoreMessageInfo(mi)
12340
12355
  }
@@ -12346,7 +12361,7 @@ func (x *DeclinePaymentRequestMessage) String() string {
12346
12361
  func (*DeclinePaymentRequestMessage) ProtoMessage() {}
12347
12362
 
12348
12363
  func (x *DeclinePaymentRequestMessage) ProtoReflect() protoreflect.Message {
12349
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[75]
12364
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[74]
12350
12365
  if x != nil {
12351
12366
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12352
12367
  if ms.LoadMessageInfo() == nil {
@@ -12359,7 +12374,7 @@ func (x *DeclinePaymentRequestMessage) ProtoReflect() protoreflect.Message {
12359
12374
 
12360
12375
  // Deprecated: Use DeclinePaymentRequestMessage.ProtoReflect.Descriptor instead.
12361
12376
  func (*DeclinePaymentRequestMessage) Descriptor() ([]byte, []int) {
12362
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{75}
12377
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{74}
12363
12378
  }
12364
12379
 
12365
12380
  func (x *DeclinePaymentRequestMessage) GetKey() *waCommon.MessageKey {
@@ -12384,7 +12399,7 @@ type RequestPaymentMessage struct {
12384
12399
 
12385
12400
  func (x *RequestPaymentMessage) Reset() {
12386
12401
  *x = RequestPaymentMessage{}
12387
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[76]
12402
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[75]
12388
12403
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12389
12404
  ms.StoreMessageInfo(mi)
12390
12405
  }
@@ -12396,7 +12411,7 @@ func (x *RequestPaymentMessage) String() string {
12396
12411
  func (*RequestPaymentMessage) ProtoMessage() {}
12397
12412
 
12398
12413
  func (x *RequestPaymentMessage) ProtoReflect() protoreflect.Message {
12399
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[76]
12414
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[75]
12400
12415
  if x != nil {
12401
12416
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12402
12417
  if ms.LoadMessageInfo() == nil {
@@ -12409,7 +12424,7 @@ func (x *RequestPaymentMessage) ProtoReflect() protoreflect.Message {
12409
12424
 
12410
12425
  // Deprecated: Use RequestPaymentMessage.ProtoReflect.Descriptor instead.
12411
12426
  func (*RequestPaymentMessage) Descriptor() ([]byte, []int) {
12412
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{76}
12427
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{75}
12413
12428
  }
12414
12429
 
12415
12430
  func (x *RequestPaymentMessage) GetNoteMessage() *Message {
@@ -12473,7 +12488,7 @@ type SendPaymentMessage struct {
12473
12488
 
12474
12489
  func (x *SendPaymentMessage) Reset() {
12475
12490
  *x = SendPaymentMessage{}
12476
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[77]
12491
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[76]
12477
12492
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12478
12493
  ms.StoreMessageInfo(mi)
12479
12494
  }
@@ -12485,7 +12500,7 @@ func (x *SendPaymentMessage) String() string {
12485
12500
  func (*SendPaymentMessage) ProtoMessage() {}
12486
12501
 
12487
12502
  func (x *SendPaymentMessage) ProtoReflect() protoreflect.Message {
12488
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[77]
12503
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[76]
12489
12504
  if x != nil {
12490
12505
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12491
12506
  if ms.LoadMessageInfo() == nil {
@@ -12498,7 +12513,7 @@ func (x *SendPaymentMessage) ProtoReflect() protoreflect.Message {
12498
12513
 
12499
12514
  // Deprecated: Use SendPaymentMessage.ProtoReflect.Descriptor instead.
12500
12515
  func (*SendPaymentMessage) Descriptor() ([]byte, []int) {
12501
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{77}
12516
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{76}
12502
12517
  }
12503
12518
 
12504
12519
  func (x *SendPaymentMessage) GetNoteMessage() *Message {
@@ -12540,7 +12555,7 @@ type ContactsArrayMessage struct {
12540
12555
 
12541
12556
  func (x *ContactsArrayMessage) Reset() {
12542
12557
  *x = ContactsArrayMessage{}
12543
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[78]
12558
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[77]
12544
12559
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12545
12560
  ms.StoreMessageInfo(mi)
12546
12561
  }
@@ -12552,7 +12567,7 @@ func (x *ContactsArrayMessage) String() string {
12552
12567
  func (*ContactsArrayMessage) ProtoMessage() {}
12553
12568
 
12554
12569
  func (x *ContactsArrayMessage) ProtoReflect() protoreflect.Message {
12555
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[78]
12570
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[77]
12556
12571
  if x != nil {
12557
12572
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12558
12573
  if ms.LoadMessageInfo() == nil {
@@ -12565,7 +12580,7 @@ func (x *ContactsArrayMessage) ProtoReflect() protoreflect.Message {
12565
12580
 
12566
12581
  // Deprecated: Use ContactsArrayMessage.ProtoReflect.Descriptor instead.
12567
12582
  func (*ContactsArrayMessage) Descriptor() ([]byte, []int) {
12568
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{78}
12583
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{77}
12569
12584
  }
12570
12585
 
12571
12586
  func (x *ContactsArrayMessage) GetDisplayName() string {
@@ -12598,7 +12613,7 @@ type InitialSecurityNotificationSettingSync struct {
12598
12613
 
12599
12614
  func (x *InitialSecurityNotificationSettingSync) Reset() {
12600
12615
  *x = InitialSecurityNotificationSettingSync{}
12601
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[79]
12616
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[78]
12602
12617
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12603
12618
  ms.StoreMessageInfo(mi)
12604
12619
  }
@@ -12610,7 +12625,7 @@ func (x *InitialSecurityNotificationSettingSync) String() string {
12610
12625
  func (*InitialSecurityNotificationSettingSync) ProtoMessage() {}
12611
12626
 
12612
12627
  func (x *InitialSecurityNotificationSettingSync) ProtoReflect() protoreflect.Message {
12613
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[79]
12628
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[78]
12614
12629
  if x != nil {
12615
12630
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12616
12631
  if ms.LoadMessageInfo() == nil {
@@ -12623,7 +12638,7 @@ func (x *InitialSecurityNotificationSettingSync) ProtoReflect() protoreflect.Mes
12623
12638
 
12624
12639
  // Deprecated: Use InitialSecurityNotificationSettingSync.ProtoReflect.Descriptor instead.
12625
12640
  func (*InitialSecurityNotificationSettingSync) Descriptor() ([]byte, []int) {
12626
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{79}
12641
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{78}
12627
12642
  }
12628
12643
 
12629
12644
  func (x *InitialSecurityNotificationSettingSync) GetSecurityNotificationEnabled() bool {
@@ -12642,7 +12657,7 @@ type FullHistorySyncOnDemandRequestMetadata struct {
12642
12657
 
12643
12658
  func (x *FullHistorySyncOnDemandRequestMetadata) Reset() {
12644
12659
  *x = FullHistorySyncOnDemandRequestMetadata{}
12645
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[80]
12660
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[79]
12646
12661
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12647
12662
  ms.StoreMessageInfo(mi)
12648
12663
  }
@@ -12654,7 +12669,7 @@ func (x *FullHistorySyncOnDemandRequestMetadata) String() string {
12654
12669
  func (*FullHistorySyncOnDemandRequestMetadata) ProtoMessage() {}
12655
12670
 
12656
12671
  func (x *FullHistorySyncOnDemandRequestMetadata) ProtoReflect() protoreflect.Message {
12657
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[80]
12672
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[79]
12658
12673
  if x != nil {
12659
12674
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12660
12675
  if ms.LoadMessageInfo() == nil {
@@ -12667,7 +12682,7 @@ func (x *FullHistorySyncOnDemandRequestMetadata) ProtoReflect() protoreflect.Mes
12667
12682
 
12668
12683
  // Deprecated: Use FullHistorySyncOnDemandRequestMetadata.ProtoReflect.Descriptor instead.
12669
12684
  func (*FullHistorySyncOnDemandRequestMetadata) Descriptor() ([]byte, []int) {
12670
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{80}
12685
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{79}
12671
12686
  }
12672
12687
 
12673
12688
  func (x *FullHistorySyncOnDemandRequestMetadata) GetRequestID() string {
@@ -12687,7 +12702,7 @@ type AppStateFatalExceptionNotification struct {
12687
12702
 
12688
12703
  func (x *AppStateFatalExceptionNotification) Reset() {
12689
12704
  *x = AppStateFatalExceptionNotification{}
12690
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[81]
12705
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[80]
12691
12706
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12692
12707
  ms.StoreMessageInfo(mi)
12693
12708
  }
@@ -12699,7 +12714,7 @@ func (x *AppStateFatalExceptionNotification) String() string {
12699
12714
  func (*AppStateFatalExceptionNotification) ProtoMessage() {}
12700
12715
 
12701
12716
  func (x *AppStateFatalExceptionNotification) ProtoReflect() protoreflect.Message {
12702
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[81]
12717
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[80]
12703
12718
  if x != nil {
12704
12719
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12705
12720
  if ms.LoadMessageInfo() == nil {
@@ -12712,7 +12727,7 @@ func (x *AppStateFatalExceptionNotification) ProtoReflect() protoreflect.Message
12712
12727
 
12713
12728
  // Deprecated: Use AppStateFatalExceptionNotification.ProtoReflect.Descriptor instead.
12714
12729
  func (*AppStateFatalExceptionNotification) Descriptor() ([]byte, []int) {
12715
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{81}
12730
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{80}
12716
12731
  }
12717
12732
 
12718
12733
  func (x *AppStateFatalExceptionNotification) GetCollectionNames() []string {
@@ -12738,7 +12753,7 @@ type AppStateSyncKeyRequest struct {
12738
12753
 
12739
12754
  func (x *AppStateSyncKeyRequest) Reset() {
12740
12755
  *x = AppStateSyncKeyRequest{}
12741
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[82]
12756
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[81]
12742
12757
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12743
12758
  ms.StoreMessageInfo(mi)
12744
12759
  }
@@ -12750,7 +12765,7 @@ func (x *AppStateSyncKeyRequest) String() string {
12750
12765
  func (*AppStateSyncKeyRequest) ProtoMessage() {}
12751
12766
 
12752
12767
  func (x *AppStateSyncKeyRequest) ProtoReflect() protoreflect.Message {
12753
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[82]
12768
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[81]
12754
12769
  if x != nil {
12755
12770
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12756
12771
  if ms.LoadMessageInfo() == nil {
@@ -12763,7 +12778,7 @@ func (x *AppStateSyncKeyRequest) ProtoReflect() protoreflect.Message {
12763
12778
 
12764
12779
  // Deprecated: Use AppStateSyncKeyRequest.ProtoReflect.Descriptor instead.
12765
12780
  func (*AppStateSyncKeyRequest) Descriptor() ([]byte, []int) {
12766
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{82}
12781
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{81}
12767
12782
  }
12768
12783
 
12769
12784
  func (x *AppStateSyncKeyRequest) GetKeyIDs() []*AppStateSyncKeyId {
@@ -12782,7 +12797,7 @@ type AppStateSyncKeyShare struct {
12782
12797
 
12783
12798
  func (x *AppStateSyncKeyShare) Reset() {
12784
12799
  *x = AppStateSyncKeyShare{}
12785
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[83]
12800
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[82]
12786
12801
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12787
12802
  ms.StoreMessageInfo(mi)
12788
12803
  }
@@ -12794,7 +12809,7 @@ func (x *AppStateSyncKeyShare) String() string {
12794
12809
  func (*AppStateSyncKeyShare) ProtoMessage() {}
12795
12810
 
12796
12811
  func (x *AppStateSyncKeyShare) ProtoReflect() protoreflect.Message {
12797
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[83]
12812
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[82]
12798
12813
  if x != nil {
12799
12814
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12800
12815
  if ms.LoadMessageInfo() == nil {
@@ -12807,7 +12822,7 @@ func (x *AppStateSyncKeyShare) ProtoReflect() protoreflect.Message {
12807
12822
 
12808
12823
  // Deprecated: Use AppStateSyncKeyShare.ProtoReflect.Descriptor instead.
12809
12824
  func (*AppStateSyncKeyShare) Descriptor() ([]byte, []int) {
12810
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{83}
12825
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{82}
12811
12826
  }
12812
12827
 
12813
12828
  func (x *AppStateSyncKeyShare) GetKeys() []*AppStateSyncKey {
@@ -12828,7 +12843,7 @@ type AppStateSyncKeyData struct {
12828
12843
 
12829
12844
  func (x *AppStateSyncKeyData) Reset() {
12830
12845
  *x = AppStateSyncKeyData{}
12831
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[84]
12846
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[83]
12832
12847
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12833
12848
  ms.StoreMessageInfo(mi)
12834
12849
  }
@@ -12840,7 +12855,7 @@ func (x *AppStateSyncKeyData) String() string {
12840
12855
  func (*AppStateSyncKeyData) ProtoMessage() {}
12841
12856
 
12842
12857
  func (x *AppStateSyncKeyData) ProtoReflect() protoreflect.Message {
12843
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[84]
12858
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[83]
12844
12859
  if x != nil {
12845
12860
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12846
12861
  if ms.LoadMessageInfo() == nil {
@@ -12853,7 +12868,7 @@ func (x *AppStateSyncKeyData) ProtoReflect() protoreflect.Message {
12853
12868
 
12854
12869
  // Deprecated: Use AppStateSyncKeyData.ProtoReflect.Descriptor instead.
12855
12870
  func (*AppStateSyncKeyData) Descriptor() ([]byte, []int) {
12856
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{84}
12871
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{83}
12857
12872
  }
12858
12873
 
12859
12874
  func (x *AppStateSyncKeyData) GetKeyData() []byte {
@@ -12888,7 +12903,7 @@ type AppStateSyncKeyFingerprint struct {
12888
12903
 
12889
12904
  func (x *AppStateSyncKeyFingerprint) Reset() {
12890
12905
  *x = AppStateSyncKeyFingerprint{}
12891
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[85]
12906
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[84]
12892
12907
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12893
12908
  ms.StoreMessageInfo(mi)
12894
12909
  }
@@ -12900,7 +12915,7 @@ func (x *AppStateSyncKeyFingerprint) String() string {
12900
12915
  func (*AppStateSyncKeyFingerprint) ProtoMessage() {}
12901
12916
 
12902
12917
  func (x *AppStateSyncKeyFingerprint) ProtoReflect() protoreflect.Message {
12903
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[85]
12918
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[84]
12904
12919
  if x != nil {
12905
12920
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12906
12921
  if ms.LoadMessageInfo() == nil {
@@ -12913,7 +12928,7 @@ func (x *AppStateSyncKeyFingerprint) ProtoReflect() protoreflect.Message {
12913
12928
 
12914
12929
  // Deprecated: Use AppStateSyncKeyFingerprint.ProtoReflect.Descriptor instead.
12915
12930
  func (*AppStateSyncKeyFingerprint) Descriptor() ([]byte, []int) {
12916
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{85}
12931
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{84}
12917
12932
  }
12918
12933
 
12919
12934
  func (x *AppStateSyncKeyFingerprint) GetRawID() uint32 {
@@ -12946,7 +12961,7 @@ type AppStateSyncKeyId struct {
12946
12961
 
12947
12962
  func (x *AppStateSyncKeyId) Reset() {
12948
12963
  *x = AppStateSyncKeyId{}
12949
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[86]
12964
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[85]
12950
12965
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12951
12966
  ms.StoreMessageInfo(mi)
12952
12967
  }
@@ -12958,7 +12973,7 @@ func (x *AppStateSyncKeyId) String() string {
12958
12973
  func (*AppStateSyncKeyId) ProtoMessage() {}
12959
12974
 
12960
12975
  func (x *AppStateSyncKeyId) ProtoReflect() protoreflect.Message {
12961
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[86]
12976
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[85]
12962
12977
  if x != nil {
12963
12978
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12964
12979
  if ms.LoadMessageInfo() == nil {
@@ -12971,7 +12986,7 @@ func (x *AppStateSyncKeyId) ProtoReflect() protoreflect.Message {
12971
12986
 
12972
12987
  // Deprecated: Use AppStateSyncKeyId.ProtoReflect.Descriptor instead.
12973
12988
  func (*AppStateSyncKeyId) Descriptor() ([]byte, []int) {
12974
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{86}
12989
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{85}
12975
12990
  }
12976
12991
 
12977
12992
  func (x *AppStateSyncKeyId) GetKeyID() []byte {
@@ -12991,7 +13006,7 @@ type AppStateSyncKey struct {
12991
13006
 
12992
13007
  func (x *AppStateSyncKey) Reset() {
12993
13008
  *x = AppStateSyncKey{}
12994
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[87]
13009
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[86]
12995
13010
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
12996
13011
  ms.StoreMessageInfo(mi)
12997
13012
  }
@@ -13003,7 +13018,7 @@ func (x *AppStateSyncKey) String() string {
13003
13018
  func (*AppStateSyncKey) ProtoMessage() {}
13004
13019
 
13005
13020
  func (x *AppStateSyncKey) ProtoReflect() protoreflect.Message {
13006
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[87]
13021
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[86]
13007
13022
  if x != nil {
13008
13023
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
13009
13024
  if ms.LoadMessageInfo() == nil {
@@ -13016,7 +13031,7 @@ func (x *AppStateSyncKey) ProtoReflect() protoreflect.Message {
13016
13031
 
13017
13032
  // Deprecated: Use AppStateSyncKey.ProtoReflect.Descriptor instead.
13018
13033
  func (*AppStateSyncKey) Descriptor() ([]byte, []int) {
13019
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{87}
13034
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{86}
13020
13035
  }
13021
13036
 
13022
13037
  func (x *AppStateSyncKey) GetKeyID() *AppStateSyncKeyId {
@@ -13049,13 +13064,14 @@ type HistorySyncNotification struct {
13049
13064
  PeerDataRequestSessionID *string `protobuf:"bytes,12,opt,name=peerDataRequestSessionID" json:"peerDataRequestSessionID,omitempty"`
13050
13065
  FullHistorySyncOnDemandRequestMetadata *FullHistorySyncOnDemandRequestMetadata `protobuf:"bytes,13,opt,name=fullHistorySyncOnDemandRequestMetadata" json:"fullHistorySyncOnDemandRequestMetadata,omitempty"`
13051
13066
  EncHandle *string `protobuf:"bytes,14,opt,name=encHandle" json:"encHandle,omitempty"`
13067
+ MessageAccessStatus *HistorySyncMessageAccessStatus `protobuf:"bytes,15,opt,name=messageAccessStatus" json:"messageAccessStatus,omitempty"`
13052
13068
  unknownFields protoimpl.UnknownFields
13053
13069
  sizeCache protoimpl.SizeCache
13054
13070
  }
13055
13071
 
13056
13072
  func (x *HistorySyncNotification) Reset() {
13057
13073
  *x = HistorySyncNotification{}
13058
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[88]
13074
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[87]
13059
13075
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
13060
13076
  ms.StoreMessageInfo(mi)
13061
13077
  }
@@ -13067,7 +13083,7 @@ func (x *HistorySyncNotification) String() string {
13067
13083
  func (*HistorySyncNotification) ProtoMessage() {}
13068
13084
 
13069
13085
  func (x *HistorySyncNotification) ProtoReflect() protoreflect.Message {
13070
- mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[88]
13086
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[87]
13071
13087
  if x != nil {
13072
13088
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
13073
13089
  if ms.LoadMessageInfo() == nil {
@@ -13080,7 +13096,7 @@ func (x *HistorySyncNotification) ProtoReflect() protoreflect.Message {
13080
13096
 
13081
13097
  // Deprecated: Use HistorySyncNotification.ProtoReflect.Descriptor instead.
13082
13098
  func (*HistorySyncNotification) Descriptor() ([]byte, []int) {
13083
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{88}
13099
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{87}
13084
13100
  }
13085
13101
 
13086
13102
  func (x *HistorySyncNotification) GetFileSHA256() []byte {
@@ -13181,6 +13197,57 @@ func (x *HistorySyncNotification) GetEncHandle() string {
13181
13197
  return ""
13182
13198
  }
13183
13199
 
13200
+ func (x *HistorySyncNotification) GetMessageAccessStatus() *HistorySyncMessageAccessStatus {
13201
+ if x != nil {
13202
+ return x.MessageAccessStatus
13203
+ }
13204
+ return nil
13205
+ }
13206
+
13207
+ type HistorySyncMessageAccessStatus struct {
13208
+ state protoimpl.MessageState `protogen:"open.v1"`
13209
+ CompleteAccessGranted *bool `protobuf:"varint,1,opt,name=completeAccessGranted" json:"completeAccessGranted,omitempty"`
13210
+ unknownFields protoimpl.UnknownFields
13211
+ sizeCache protoimpl.SizeCache
13212
+ }
13213
+
13214
+ func (x *HistorySyncMessageAccessStatus) Reset() {
13215
+ *x = HistorySyncMessageAccessStatus{}
13216
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[88]
13217
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
13218
+ ms.StoreMessageInfo(mi)
13219
+ }
13220
+
13221
+ func (x *HistorySyncMessageAccessStatus) String() string {
13222
+ return protoimpl.X.MessageStringOf(x)
13223
+ }
13224
+
13225
+ func (*HistorySyncMessageAccessStatus) ProtoMessage() {}
13226
+
13227
+ func (x *HistorySyncMessageAccessStatus) ProtoReflect() protoreflect.Message {
13228
+ mi := &file_waE2E_WAWebProtobufsE2E_proto_msgTypes[88]
13229
+ if x != nil {
13230
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
13231
+ if ms.LoadMessageInfo() == nil {
13232
+ ms.StoreMessageInfo(mi)
13233
+ }
13234
+ return ms
13235
+ }
13236
+ return mi.MessageOf(x)
13237
+ }
13238
+
13239
+ // Deprecated: Use HistorySyncMessageAccessStatus.ProtoReflect.Descriptor instead.
13240
+ func (*HistorySyncMessageAccessStatus) Descriptor() ([]byte, []int) {
13241
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{88}
13242
+ }
13243
+
13244
+ func (x *HistorySyncMessageAccessStatus) GetCompleteAccessGranted() bool {
13245
+ if x != nil && x.CompleteAccessGranted != nil {
13246
+ return *x.CompleteAccessGranted
13247
+ }
13248
+ return false
13249
+ }
13250
+
13184
13251
  type Chat struct {
13185
13252
  state protoimpl.MessageState `protogen:"open.v1"`
13186
13253
  DisplayName *string `protobuf:"bytes,1,opt,name=displayName" json:"displayName,omitempty"`
@@ -19794,7 +19861,7 @@ func (x *ProductMessage_ProductSnapshot) ProtoReflect() protoreflect.Message {
19794
19861
 
19795
19862
  // Deprecated: Use ProductMessage_ProductSnapshot.ProtoReflect.Descriptor instead.
19796
19863
  func (*ProductMessage_ProductSnapshot) Descriptor() ([]byte, []int) {
19797
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{69, 0}
19864
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{68, 0}
19798
19865
  }
19799
19866
 
19800
19867
  func (x *ProductMessage_ProductSnapshot) GetProductImage() *ImageMessage {
@@ -19917,7 +19984,7 @@ func (x *ProductMessage_CatalogSnapshot) ProtoReflect() protoreflect.Message {
19917
19984
 
19918
19985
  // Deprecated: Use ProductMessage_CatalogSnapshot.ProtoReflect.Descriptor instead.
19919
19986
  func (*ProductMessage_CatalogSnapshot) Descriptor() ([]byte, []int) {
19920
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{69, 1}
19987
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{68, 1}
19921
19988
  }
19922
19989
 
19923
19990
  func (x *ProductMessage_CatalogSnapshot) GetCatalogImage() *ImageMessage {
@@ -19987,7 +20054,7 @@ func (x *TemplateMessage_HydratedFourRowTemplate) ProtoReflect() protoreflect.Me
19987
20054
 
19988
20055
  // Deprecated: Use TemplateMessage_HydratedFourRowTemplate.ProtoReflect.Descriptor instead.
19989
20056
  func (*TemplateMessage_HydratedFourRowTemplate) Descriptor() ([]byte, []int) {
19990
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{71, 0}
20057
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{70, 0}
19991
20058
  }
19992
20059
 
19993
20060
  func (x *TemplateMessage_HydratedFourRowTemplate) GetTitle() isTemplateMessage_HydratedFourRowTemplate_Title {
@@ -20160,7 +20227,7 @@ func (x *TemplateMessage_FourRowTemplate) ProtoReflect() protoreflect.Message {
20160
20227
 
20161
20228
  // Deprecated: Use TemplateMessage_FourRowTemplate.ProtoReflect.Descriptor instead.
20162
20229
  func (*TemplateMessage_FourRowTemplate) Descriptor() ([]byte, []int) {
20163
- return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{71, 1}
20230
+ return file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP(), []int{70, 1}
20164
20231
  }
20165
20232
 
20166
20233
  func (x *TemplateMessage_FourRowTemplate) GetTitle() isTemplateMessage_FourRowTemplate_Title {
@@ -21576,7 +21643,7 @@ const file_waE2E_WAWebProtobufsE2E_proto_rawDesc = "" +
21576
21643
  "ThreadType\x12\v\n" +
21577
21644
  "\aUNKNOWN\x10\x00\x12\x10\n" +
21578
21645
  "\fVIEW_REPLIES\x10\x01\x12\r\n" +
21579
- "\tAI_THREAD\x10\x02\"\xe5\a\n" +
21646
+ "\tAI_THREAD\x10\x02\"\xbf\b\n" +
21580
21647
  "\x12MessageContextInfo\x12U\n" +
21581
21648
  "\x12deviceListMetadata\x18\x01 \x01(\v2%.WAWebProtobufsE2E.DeviceListMetadataR\x12deviceListMetadata\x12<\n" +
21582
21649
  "\x19deviceListMetadataVersion\x18\x02 \x01(\x05R\x19deviceListMetadataVersion\x12$\n" +
@@ -21593,7 +21660,8 @@ const file_waE2E_WAWebProtobufsE2E_proto_rawDesc = "" +
21593
21660
  "\x0esupportPayload\x18\f \x01(\tR\x0esupportPayload\x12:\n" +
21594
21661
  "\flimitSharing\x18\r \x01(\v2\x16.WACommon.LimitSharingR\flimitSharing\x12>\n" +
21595
21662
  "\x0elimitSharingV2\x18\x0e \x01(\v2\x16.WACommon.LimitSharingR\x0elimitSharingV2\x127\n" +
21596
- "\bthreadID\x18\x0f \x03(\v2\x1b.WAWebProtobufsE2E.ThreadIDR\bthreadID\"=\n" +
21663
+ "\bthreadID\x18\x0f \x03(\v2\x1b.WAWebProtobufsE2E.ThreadIDR\bthreadID\x12X\n" +
21664
+ "\x13weblinkRenderConfig\x18\x10 \x01(\x0e2&.WAWebProtobufsE2E.WebLinkRenderConfigR\x13weblinkRenderConfig\"=\n" +
21597
21665
  "\x16MessageAddonExpiryType\x12\n" +
21598
21666
  "\n" +
21599
21667
  "\x06STATIC\x10\x01\x12\x17\n" +
@@ -21700,7 +21768,7 @@ const file_waE2E_WAWebProtobufsE2E_proto_rawDesc = "" +
21700
21768
  "\tUNDEFINED\x10\x00\x12\a\n" +
21701
21769
  "\x03LOW\x10\x01\x12\a\n" +
21702
21770
  "\x03MID\x10\x02\x12\b\n" +
21703
- "\x04HIGH\x10\x03\"\xa3C\n" +
21771
+ "\x04HIGH\x10\x03\"\xb7B\n" +
21704
21772
  "\aMessage\x12\"\n" +
21705
21773
  "\fconversation\x18\x01 \x01(\tR\fconversation\x12s\n" +
21706
21774
  "\x1csenderKeyDistributionMessage\x18\x02 \x01(\v2/.WAWebProtobufsE2E.SenderKeyDistributionMessageR\x1csenderKeyDistributionMessage\x12C\n" +
@@ -21797,10 +21865,9 @@ const file_waE2E_WAWebProtobufsE2E_proto_rawDesc = "" +
21797
21865
  "\x17questionResponseMessage\x18k \x01(\v2*.WAWebProtobufsE2E.QuestionResponseMessageR\x17questionResponseMessage\x12X\n" +
21798
21866
  "\x13statusQuotedMessage\x18m \x01(\v2&.WAWebProtobufsE2E.StatusQuotedMessageR\x13statusQuotedMessage\x12|\n" +
21799
21867
  "\x1fstatusStickerInteractionMessage\x18n \x01(\v22.WAWebProtobufsE2E.StatusStickerInteractionMessageR\x1fstatusStickerInteractionMessage\x12\\\n" +
21800
- "\x15pollCreationMessageV5\x18o \x01(\v2&.WAWebProtobufsE2E.PollCreationMessageR\x15pollCreationMessageV5\x12n\n" +
21801
- "\x1bpollResultSnapshotMessageV2\x18p \x01(\v2,.WAWebProtobufsE2E.PollResultSnapshotMessageR\x1bpollResultSnapshotMessageV2\x12\x80\x01\n" +
21802
- "!newsletterFollowerInviteMessageV2\x18q \x01(\v22.WAWebProtobufsE2E.NewsletterFollowerInviteMessageR!newsletterFollowerInviteMessageV2\x12j\n" +
21803
- "\x19requestContactInfoMessage\x18r \x01(\v2,.WAWebProtobufsE2E.RequestContactInfoMessageR\x19requestContactInfoMessage\"\xb0\x01\n" +
21868
+ "\x15pollCreationMessageV5\x18o \x01(\v2&.WAWebProtobufsE2E.PollCreationMessageR\x15pollCreationMessageV5\x12\x80\x01\n" +
21869
+ "!newsletterFollowerInviteMessageV2\x18q \x01(\v22.WAWebProtobufsE2E.NewsletterFollowerInviteMessageR!newsletterFollowerInviteMessageV2\x12n\n" +
21870
+ "\x1bpollResultSnapshotMessageV3\x18r \x01(\v2,.WAWebProtobufsE2E.PollResultSnapshotMessageR\x1bpollResultSnapshotMessageV3\"\xb0\x01\n" +
21804
21871
  "\fAlbumMessage\x12.\n" +
21805
21872
  "\x12expectedImageCount\x18\x02 \x01(\rR\x12expectedImageCount\x12.\n" +
21806
21873
  "\x12expectedVideoCount\x18\x03 \x01(\rR\x12expectedVideoCount\x12@\n" +
@@ -21830,7 +21897,7 @@ const file_waE2E_WAWebProtobufsE2E_proto_rawDesc = "" +
21830
21897
  "\n" +
21831
21898
  "encPayload\x18\x02 \x01(\fR\n" +
21832
21899
  "encPayload\x12\x14\n" +
21833
- "\x05encIV\x18\x03 \x01(\fR\x05encIV\"\x92\x03\n" +
21900
+ "\x05encIV\x18\x03 \x01(\fR\x05encIV\"\xe2\x03\n" +
21834
21901
  "\fEventMessage\x12@\n" +
21835
21902
  "\vcontextInfo\x18\x01 \x01(\v2\x1e.WAWebProtobufsE2E.ContextInfoR\vcontextInfo\x12\x1e\n" +
21836
21903
  "\n" +
@@ -21844,7 +21911,9 @@ const file_waE2E_WAWebProtobufsE2E_proto_rawDesc = "" +
21844
21911
  "\aendTime\x18\b \x01(\x03R\aendTime\x12.\n" +
21845
21912
  "\x12extraGuestsAllowed\x18\t \x01(\bR\x12extraGuestsAllowed\x12&\n" +
21846
21913
  "\x0eisScheduleCall\x18\n" +
21847
- " \x01(\bR\x0eisScheduleCall\"\x88\x01\n" +
21914
+ " \x01(\bR\x0eisScheduleCall\x12 \n" +
21915
+ "\vhasReminder\x18\v \x01(\bR\vhasReminder\x12,\n" +
21916
+ "\x11reminderOffsetSec\x18\f \x01(\x03R\x11reminderOffsetSec\"\x88\x01\n" +
21848
21917
  "\x0eCommentMessage\x124\n" +
21849
21918
  "\amessage\x18\x01 \x01(\v2\x1a.WAWebProtobufsE2E.MessageR\amessage\x12@\n" +
21850
21919
  "\x10targetMessageKey\x18\x02 \x01(\v2\x14.WACommon.MessageKeyR\x10targetMessageKey\"\x8b\x01\n" +
@@ -21923,11 +21992,7 @@ const file_waE2E_WAWebProtobufsE2E_proto_rawDesc = "" +
21923
21992
  "\x11DeviceSentMessage\x12&\n" +
21924
21993
  "\x0edestinationJID\x18\x01 \x01(\tR\x0edestinationJID\x124\n" +
21925
21994
  "\amessage\x18\x02 \x01(\v2\x1a.WAWebProtobufsE2E.MessageR\amessage\x12\x14\n" +
21926
- "\x05phash\x18\x03 \x01(\tR\x05phash\"\x97\x01\n" +
21927
- "\x19RequestContactInfoMessage\x12\x12\n" +
21928
- "\x04text\x18\x01 \x01(\tR\x04text\x12$\n" +
21929
- "\rctaButtonText\x18\x02 \x01(\tR\rctaButtonText\x12@\n" +
21930
- "\vcontextInfo\x18\x03 \x01(\v2\x1e.WAWebProtobufsE2E.ContextInfoR\vcontextInfo\"]\n" +
21995
+ "\x05phash\x18\x03 \x01(\tR\x05phash\"]\n" +
21931
21996
  "\x19RequestPhoneNumberMessage\x12@\n" +
21932
21997
  "\vcontextInfo\x18\x01 \x01(\v2\x1e.WAWebProtobufsE2E.ContextInfoR\vcontextInfo\"\xf1\x01\n" +
21933
21998
  "\x1fNewsletterFollowerInviteMessage\x12$\n" +
@@ -22108,7 +22173,7 @@ const file_waE2E_WAWebProtobufsE2E_proto_rawDesc = "" +
22108
22173
  "\x05keyID\x18\x01 \x01(\fR\x05keyID\"\x8f\x01\n" +
22109
22174
  "\x0fAppStateSyncKey\x12:\n" +
22110
22175
  "\x05keyID\x18\x01 \x01(\v2$.WAWebProtobufsE2E.AppStateSyncKeyIdR\x05keyID\x12@\n" +
22111
- "\akeyData\x18\x02 \x01(\v2&.WAWebProtobufsE2E.AppStateSyncKeyDataR\akeyData\"\xe5\x05\n" +
22176
+ "\akeyData\x18\x02 \x01(\v2&.WAWebProtobufsE2E.AppStateSyncKeyDataR\akeyData\"\xca\x06\n" +
22112
22177
  "\x17HistorySyncNotification\x12\x1e\n" +
22113
22178
  "\n" +
22114
22179
  "fileSHA256\x18\x01 \x01(\fR\n" +
@@ -22132,7 +22197,10 @@ const file_waE2E_WAWebProtobufsE2E_proto_rawDesc = "" +
22132
22197
  "!initialHistBootstrapInlinePayload\x18\v \x01(\fR!initialHistBootstrapInlinePayload\x12:\n" +
22133
22198
  "\x18peerDataRequestSessionID\x18\f \x01(\tR\x18peerDataRequestSessionID\x12\x91\x01\n" +
22134
22199
  "&fullHistorySyncOnDemandRequestMetadata\x18\r \x01(\v29.WAWebProtobufsE2E.FullHistorySyncOnDemandRequestMetadataR&fullHistorySyncOnDemandRequestMetadata\x12\x1c\n" +
22135
- "\tencHandle\x18\x0e \x01(\tR\tencHandle\"8\n" +
22200
+ "\tencHandle\x18\x0e \x01(\tR\tencHandle\x12c\n" +
22201
+ "\x13messageAccessStatus\x18\x0f \x01(\v21.WAWebProtobufsE2E.HistorySyncMessageAccessStatusR\x13messageAccessStatus\"V\n" +
22202
+ "\x1eHistorySyncMessageAccessStatus\x124\n" +
22203
+ "\x15completeAccessGranted\x18\x01 \x01(\bR\x15completeAccessGranted\"8\n" +
22136
22204
  "\x04Chat\x12 \n" +
22137
22205
  "\vdisplayName\x18\x01 \x01(\tR\vdisplayName\x12\x0e\n" +
22138
22206
  "\x02ID\x18\x02 \x01(\tR\x02ID\"\x9e\x03\n" +
@@ -22374,7 +22442,7 @@ const file_waE2E_WAWebProtobufsE2E_proto_rawDesc = "" +
22374
22442
  "$COMPANION_CANONICAL_USER_NONCE_FETCH\x10\t\x12\x1c\n" +
22375
22443
  "\x18HISTORY_SYNC_CHUNK_RETRY\x10\n" +
22376
22444
  "\x12\x16\n" +
22377
- "\x12GALAXY_FLOW_ACTION\x10\v*\x9a\x01\n" +
22445
+ "\x12GALAXY_FLOW_ACTION\x10\v*\xb5\x01\n" +
22378
22446
  "\x0fHistorySyncType\x12\x15\n" +
22379
22447
  "\x11INITIAL_BOOTSTRAP\x10\x00\x12\x15\n" +
22380
22448
  "\x11INITIAL_STATUS_V3\x10\x01\x12\b\n" +
@@ -22385,14 +22453,19 @@ const file_waE2E_WAWebProtobufsE2E_proto_rawDesc = "" +
22385
22453
  "\x11NON_BLOCKING_DATA\x10\x05\x12\r\n" +
22386
22454
  "\tON_DEMAND\x10\x06\x12\x0e\n" +
22387
22455
  "\n" +
22388
- "NO_HISTORY\x10\a*I\n" +
22456
+ "NO_HISTORY\x10\a\x12\x19\n" +
22457
+ "\x15MESSAGE_ACCESS_STATUS\x10\b*I\n" +
22389
22458
  "\x0eMediaKeyDomain\x12\t\n" +
22390
22459
  "\x05UNSET\x10\x00\x12\r\n" +
22391
22460
  "\tE2EE_CHAT\x10\x01\x12\n" +
22392
22461
  "\n" +
22393
22462
  "\x06STATUS\x10\x02\x12\b\n" +
22394
22463
  "\x04CAPI\x10\x03\x12\a\n" +
22395
- "\x03BOT\x10\x04*J\n" +
22464
+ "\x03BOT\x10\x04*.\n" +
22465
+ "\x13WebLinkRenderConfig\x12\v\n" +
22466
+ "\aWEBVIEW\x10\x00\x12\n" +
22467
+ "\n" +
22468
+ "\x06SYSTEM\x10\x01*J\n" +
22396
22469
  "\bKeepType\x12\x15\n" +
22397
22470
  "\x11UNKNOWN_KEEP_TYPE\x10\x00\x12\x10\n" +
22398
22471
  "\fKEEP_FOR_ALL\x10\x01\x12\x15\n" +
@@ -22410,7 +22483,7 @@ func file_waE2E_WAWebProtobufsE2E_proto_rawDescGZIP() []byte {
22410
22483
  return file_waE2E_WAWebProtobufsE2E_proto_rawDescData
22411
22484
  }
22412
22485
 
22413
- var file_waE2E_WAWebProtobufsE2E_proto_enumTypes = make([]protoimpl.EnumInfo, 68)
22486
+ var file_waE2E_WAWebProtobufsE2E_proto_enumTypes = make([]protoimpl.EnumInfo, 69)
22414
22487
  var file_waE2E_WAWebProtobufsE2E_proto_msgTypes = make([]protoimpl.MessageInfo, 192)
22415
22488
  var file_waE2E_WAWebProtobufsE2E_proto_goTypes = []any{
22416
22489
  (PollType)(0), // 0: WAWebProtobufsE2E.PollType
@@ -22418,135 +22491,135 @@ var file_waE2E_WAWebProtobufsE2E_proto_goTypes = []any{
22418
22491
  (PeerDataOperationRequestType)(0), // 2: WAWebProtobufsE2E.PeerDataOperationRequestType
22419
22492
  (HistorySyncType)(0), // 3: WAWebProtobufsE2E.HistorySyncType
22420
22493
  (MediaKeyDomain)(0), // 4: WAWebProtobufsE2E.MediaKeyDomain
22421
- (KeepType)(0), // 5: WAWebProtobufsE2E.KeepType
22422
- (StickerPackMessage_StickerPackOrigin)(0), // 6: WAWebProtobufsE2E.StickerPackMessage.StickerPackOrigin
22423
- (PlaceholderMessage_PlaceholderType)(0), // 7: WAWebProtobufsE2E.PlaceholderMessage.PlaceholderType
22424
- (BCallMessage_MediaType)(0), // 8: WAWebProtobufsE2E.BCallMessage.MediaType
22425
- (CallLogMessage_CallOutcome)(0), // 9: WAWebProtobufsE2E.CallLogMessage.CallOutcome
22426
- (CallLogMessage_CallType)(0), // 10: WAWebProtobufsE2E.CallLogMessage.CallType
22427
- (ScheduledCallEditMessage_EditType)(0), // 11: WAWebProtobufsE2E.ScheduledCallEditMessage.EditType
22428
- (ScheduledCallCreationMessage_CallType)(0), // 12: WAWebProtobufsE2E.ScheduledCallCreationMessage.CallType
22429
- (EventResponseMessage_EventResponseType)(0), // 13: WAWebProtobufsE2E.EventResponseMessage.EventResponseType
22430
- (PinInChatMessage_Type)(0), // 14: WAWebProtobufsE2E.PinInChatMessage.Type
22431
- (StatusStickerInteractionMessage_StatusStickerType)(0), // 15: WAWebProtobufsE2E.StatusStickerInteractionMessage.StatusStickerType
22432
- (ButtonsResponseMessage_Type)(0), // 16: WAWebProtobufsE2E.ButtonsResponseMessage.Type
22433
- (ButtonsMessage_HeaderType)(0), // 17: WAWebProtobufsE2E.ButtonsMessage.HeaderType
22434
- (ButtonsMessage_Button_Type)(0), // 18: WAWebProtobufsE2E.ButtonsMessage.Button.Type
22435
- (SecretEncryptedMessage_SecretEncType)(0), // 19: WAWebProtobufsE2E.SecretEncryptedMessage.SecretEncType
22436
- (GroupInviteMessage_GroupType)(0), // 20: WAWebProtobufsE2E.GroupInviteMessage.GroupType
22437
- (InteractiveResponseMessage_Body_Format)(0), // 21: WAWebProtobufsE2E.InteractiveResponseMessage.Body.Format
22438
- (InteractiveMessage_CarouselMessage_CarouselCardType)(0), // 22: WAWebProtobufsE2E.InteractiveMessage.CarouselMessage.CarouselCardType
22439
- (InteractiveMessage_ShopMessage_Surface)(0), // 23: WAWebProtobufsE2E.InteractiveMessage.ShopMessage.Surface
22440
- (ListResponseMessage_ListType)(0), // 24: WAWebProtobufsE2E.ListResponseMessage.ListType
22441
- (ListMessage_ListType)(0), // 25: WAWebProtobufsE2E.ListMessage.ListType
22442
- (OrderMessage_OrderSurface)(0), // 26: WAWebProtobufsE2E.OrderMessage.OrderSurface
22443
- (OrderMessage_OrderStatus)(0), // 27: WAWebProtobufsE2E.OrderMessage.OrderStatus
22444
- (StatusQuotedMessage_StatusQuotedMessageType)(0), // 28: WAWebProtobufsE2E.StatusQuotedMessage.StatusQuotedMessageType
22445
- (PaymentInviteMessage_ServiceType)(0), // 29: WAWebProtobufsE2E.PaymentInviteMessage.ServiceType
22446
- (HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime_HSMDateTimeComponent_CalendarType)(0), // 30: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent.CalendarType
22447
- (HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime_HSMDateTimeComponent_DayOfWeekType)(0), // 31: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent.DayOfWeekType
22448
- (PeerDataOperationRequestResponseMessage_PeerDataOperationResult_HistorySyncChunkRetryResponseCode)(0), // 32: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.HistorySyncChunkRetryResponseCode
22449
- (PeerDataOperationRequestResponseMessage_PeerDataOperationResult_FullHistorySyncOnDemandResponseCode)(0), // 33: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.FullHistorySyncOnDemandResponseCode
22450
- (PeerDataOperationRequestMessage_GalaxyFlowAction_GalaxyFlowActionType)(0), // 34: WAWebProtobufsE2E.PeerDataOperationRequestMessage.GalaxyFlowAction.GalaxyFlowActionType
22451
- (RequestWelcomeMessageMetadata_LocalChatState)(0), // 35: WAWebProtobufsE2E.RequestWelcomeMessageMetadata.LocalChatState
22452
- (ProtocolMessage_Type)(0), // 36: WAWebProtobufsE2E.ProtocolMessage.Type
22453
- (CloudAPIThreadControlNotification_CloudAPIThreadControl)(0), // 37: WAWebProtobufsE2E.CloudAPIThreadControlNotification.CloudAPIThreadControl
22454
- (VideoMessage_VideoSourceType)(0), // 38: WAWebProtobufsE2E.VideoMessage.VideoSourceType
22455
- (VideoMessage_Attribution)(0), // 39: WAWebProtobufsE2E.VideoMessage.Attribution
22456
- (ExtendedTextMessage_InviteLinkGroupType)(0), // 40: WAWebProtobufsE2E.ExtendedTextMessage.InviteLinkGroupType
22457
- (ExtendedTextMessage_PreviewType)(0), // 41: WAWebProtobufsE2E.ExtendedTextMessage.PreviewType
22458
- (ExtendedTextMessage_FontType)(0), // 42: WAWebProtobufsE2E.ExtendedTextMessage.FontType
22459
- (LinkPreviewMetadata_SocialMediaPostType)(0), // 43: WAWebProtobufsE2E.LinkPreviewMetadata.SocialMediaPostType
22460
- (PaymentLinkMetadata_PaymentLinkHeader_PaymentLinkHeaderType)(0), // 44: WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkHeader.PaymentLinkHeaderType
22461
- (StatusNotificationMessage_StatusNotificationType)(0), // 45: WAWebProtobufsE2E.StatusNotificationMessage.StatusNotificationType
22462
- (InvoiceMessage_AttachmentType)(0), // 46: WAWebProtobufsE2E.InvoiceMessage.AttachmentType
22463
- (ImageMessage_ImageSourceType)(0), // 47: WAWebProtobufsE2E.ImageMessage.ImageSourceType
22464
- (ContextInfo_QuotedType)(0), // 48: WAWebProtobufsE2E.ContextInfo.QuotedType
22465
- (ContextInfo_ForwardOrigin)(0), // 49: WAWebProtobufsE2E.ContextInfo.ForwardOrigin
22466
- (ContextInfo_StatusSourceType)(0), // 50: WAWebProtobufsE2E.ContextInfo.StatusSourceType
22467
- (ContextInfo_PairedMediaType)(0), // 51: WAWebProtobufsE2E.ContextInfo.PairedMediaType
22468
- (ContextInfo_StatusAttributionType)(0), // 52: WAWebProtobufsE2E.ContextInfo.StatusAttributionType
22469
- (ContextInfo_StatusAudienceMetadata_AudienceType)(0), // 53: WAWebProtobufsE2E.ContextInfo.StatusAudienceMetadata.AudienceType
22470
- (ContextInfo_DataSharingContext_DataSharingFlags)(0), // 54: WAWebProtobufsE2E.ContextInfo.DataSharingContext.DataSharingFlags
22471
- (ContextInfo_ForwardedNewsletterMessageInfo_ContentType)(0), // 55: WAWebProtobufsE2E.ContextInfo.ForwardedNewsletterMessageInfo.ContentType
22472
- (ContextInfo_ExternalAdReplyInfo_AdType)(0), // 56: WAWebProtobufsE2E.ContextInfo.ExternalAdReplyInfo.AdType
22473
- (ContextInfo_ExternalAdReplyInfo_MediaType)(0), // 57: WAWebProtobufsE2E.ContextInfo.ExternalAdReplyInfo.MediaType
22474
- (ContextInfo_AdReplyInfo_MediaType)(0), // 58: WAWebProtobufsE2E.ContextInfo.AdReplyInfo.MediaType
22475
- (MessageAssociation_AssociationType)(0), // 59: WAWebProtobufsE2E.MessageAssociation.AssociationType
22476
- (ThreadID_ThreadType)(0), // 60: WAWebProtobufsE2E.ThreadID.ThreadType
22477
- (MessageContextInfo_MessageAddonExpiryType)(0), // 61: WAWebProtobufsE2E.MessageContextInfo.MessageAddonExpiryType
22478
- (InteractiveAnnotation_StatusLinkType)(0), // 62: WAWebProtobufsE2E.InteractiveAnnotation.StatusLinkType
22479
- (HydratedTemplateButton_HydratedURLButton_WebviewPresentationType)(0), // 63: WAWebProtobufsE2E.HydratedTemplateButton.HydratedURLButton.WebviewPresentationType
22480
- (PaymentBackground_Type)(0), // 64: WAWebProtobufsE2E.PaymentBackground.Type
22481
- (DisappearingMode_Trigger)(0), // 65: WAWebProtobufsE2E.DisappearingMode.Trigger
22482
- (DisappearingMode_Initiator)(0), // 66: WAWebProtobufsE2E.DisappearingMode.Initiator
22483
- (ProcessedVideo_VideoQuality)(0), // 67: WAWebProtobufsE2E.ProcessedVideo.VideoQuality
22484
- (*StickerPackMessage)(nil), // 68: WAWebProtobufsE2E.StickerPackMessage
22485
- (*PlaceholderMessage)(nil), // 69: WAWebProtobufsE2E.PlaceholderMessage
22486
- (*BCallMessage)(nil), // 70: WAWebProtobufsE2E.BCallMessage
22487
- (*CallLogMessage)(nil), // 71: WAWebProtobufsE2E.CallLogMessage
22488
- (*ScheduledCallEditMessage)(nil), // 72: WAWebProtobufsE2E.ScheduledCallEditMessage
22489
- (*ScheduledCallCreationMessage)(nil), // 73: WAWebProtobufsE2E.ScheduledCallCreationMessage
22490
- (*EventResponseMessage)(nil), // 74: WAWebProtobufsE2E.EventResponseMessage
22491
- (*PinInChatMessage)(nil), // 75: WAWebProtobufsE2E.PinInChatMessage
22492
- (*StatusStickerInteractionMessage)(nil), // 76: WAWebProtobufsE2E.StatusStickerInteractionMessage
22493
- (*ButtonsResponseMessage)(nil), // 77: WAWebProtobufsE2E.ButtonsResponseMessage
22494
- (*ButtonsMessage)(nil), // 78: WAWebProtobufsE2E.ButtonsMessage
22495
- (*SecretEncryptedMessage)(nil), // 79: WAWebProtobufsE2E.SecretEncryptedMessage
22496
- (*GroupInviteMessage)(nil), // 80: WAWebProtobufsE2E.GroupInviteMessage
22497
- (*InteractiveResponseMessage)(nil), // 81: WAWebProtobufsE2E.InteractiveResponseMessage
22498
- (*InteractiveMessage)(nil), // 82: WAWebProtobufsE2E.InteractiveMessage
22499
- (*ListResponseMessage)(nil), // 83: WAWebProtobufsE2E.ListResponseMessage
22500
- (*ListMessage)(nil), // 84: WAWebProtobufsE2E.ListMessage
22501
- (*OrderMessage)(nil), // 85: WAWebProtobufsE2E.OrderMessage
22502
- (*StatusQuotedMessage)(nil), // 86: WAWebProtobufsE2E.StatusQuotedMessage
22503
- (*PaymentInviteMessage)(nil), // 87: WAWebProtobufsE2E.PaymentInviteMessage
22504
- (*HighlyStructuredMessage)(nil), // 88: WAWebProtobufsE2E.HighlyStructuredMessage
22505
- (*PeerDataOperationRequestResponseMessage)(nil), // 89: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage
22506
- (*PeerDataOperationRequestMessage)(nil), // 90: WAWebProtobufsE2E.PeerDataOperationRequestMessage
22507
- (*RequestWelcomeMessageMetadata)(nil), // 91: WAWebProtobufsE2E.RequestWelcomeMessageMetadata
22508
- (*ProtocolMessage)(nil), // 92: WAWebProtobufsE2E.ProtocolMessage
22509
- (*CloudAPIThreadControlNotification)(nil), // 93: WAWebProtobufsE2E.CloudAPIThreadControlNotification
22510
- (*VideoMessage)(nil), // 94: WAWebProtobufsE2E.VideoMessage
22511
- (*ExtendedTextMessage)(nil), // 95: WAWebProtobufsE2E.ExtendedTextMessage
22512
- (*LinkPreviewMetadata)(nil), // 96: WAWebProtobufsE2E.LinkPreviewMetadata
22513
- (*PaymentLinkMetadata)(nil), // 97: WAWebProtobufsE2E.PaymentLinkMetadata
22514
- (*StatusNotificationMessage)(nil), // 98: WAWebProtobufsE2E.StatusNotificationMessage
22515
- (*InvoiceMessage)(nil), // 99: WAWebProtobufsE2E.InvoiceMessage
22516
- (*ImageMessage)(nil), // 100: WAWebProtobufsE2E.ImageMessage
22517
- (*ContextInfo)(nil), // 101: WAWebProtobufsE2E.ContextInfo
22518
- (*MessageAssociation)(nil), // 102: WAWebProtobufsE2E.MessageAssociation
22519
- (*ThreadID)(nil), // 103: WAWebProtobufsE2E.ThreadID
22520
- (*MessageContextInfo)(nil), // 104: WAWebProtobufsE2E.MessageContextInfo
22521
- (*InteractiveAnnotation)(nil), // 105: WAWebProtobufsE2E.InteractiveAnnotation
22522
- (*HydratedTemplateButton)(nil), // 106: WAWebProtobufsE2E.HydratedTemplateButton
22523
- (*PaymentBackground)(nil), // 107: WAWebProtobufsE2E.PaymentBackground
22524
- (*DisappearingMode)(nil), // 108: WAWebProtobufsE2E.DisappearingMode
22525
- (*ProcessedVideo)(nil), // 109: WAWebProtobufsE2E.ProcessedVideo
22526
- (*Message)(nil), // 110: WAWebProtobufsE2E.Message
22527
- (*AlbumMessage)(nil), // 111: WAWebProtobufsE2E.AlbumMessage
22528
- (*MessageHistoryMetadata)(nil), // 112: WAWebProtobufsE2E.MessageHistoryMetadata
22529
- (*MessageHistoryNotice)(nil), // 113: WAWebProtobufsE2E.MessageHistoryNotice
22530
- (*MessageHistoryBundle)(nil), // 114: WAWebProtobufsE2E.MessageHistoryBundle
22531
- (*EncEventResponseMessage)(nil), // 115: WAWebProtobufsE2E.EncEventResponseMessage
22532
- (*EventMessage)(nil), // 116: WAWebProtobufsE2E.EventMessage
22533
- (*CommentMessage)(nil), // 117: WAWebProtobufsE2E.CommentMessage
22534
- (*EncCommentMessage)(nil), // 118: WAWebProtobufsE2E.EncCommentMessage
22535
- (*EncReactionMessage)(nil), // 119: WAWebProtobufsE2E.EncReactionMessage
22536
- (*KeepInChatMessage)(nil), // 120: WAWebProtobufsE2E.KeepInChatMessage
22537
- (*QuestionResponseMessage)(nil), // 121: WAWebProtobufsE2E.QuestionResponseMessage
22538
- (*StatusQuestionAnswerMessage)(nil), // 122: WAWebProtobufsE2E.StatusQuestionAnswerMessage
22539
- (*PollResultSnapshotMessage)(nil), // 123: WAWebProtobufsE2E.PollResultSnapshotMessage
22540
- (*PollVoteMessage)(nil), // 124: WAWebProtobufsE2E.PollVoteMessage
22541
- (*PollEncValue)(nil), // 125: WAWebProtobufsE2E.PollEncValue
22542
- (*PollUpdateMessageMetadata)(nil), // 126: WAWebProtobufsE2E.PollUpdateMessageMetadata
22543
- (*PollUpdateMessage)(nil), // 127: WAWebProtobufsE2E.PollUpdateMessage
22544
- (*PollCreationMessage)(nil), // 128: WAWebProtobufsE2E.PollCreationMessage
22545
- (*StickerSyncRMRMessage)(nil), // 129: WAWebProtobufsE2E.StickerSyncRMRMessage
22546
- (*ReactionMessage)(nil), // 130: WAWebProtobufsE2E.ReactionMessage
22547
- (*FutureProofMessage)(nil), // 131: WAWebProtobufsE2E.FutureProofMessage
22548
- (*DeviceSentMessage)(nil), // 132: WAWebProtobufsE2E.DeviceSentMessage
22549
- (*RequestContactInfoMessage)(nil), // 133: WAWebProtobufsE2E.RequestContactInfoMessage
22494
+ (WebLinkRenderConfig)(0), // 5: WAWebProtobufsE2E.WebLinkRenderConfig
22495
+ (KeepType)(0), // 6: WAWebProtobufsE2E.KeepType
22496
+ (StickerPackMessage_StickerPackOrigin)(0), // 7: WAWebProtobufsE2E.StickerPackMessage.StickerPackOrigin
22497
+ (PlaceholderMessage_PlaceholderType)(0), // 8: WAWebProtobufsE2E.PlaceholderMessage.PlaceholderType
22498
+ (BCallMessage_MediaType)(0), // 9: WAWebProtobufsE2E.BCallMessage.MediaType
22499
+ (CallLogMessage_CallOutcome)(0), // 10: WAWebProtobufsE2E.CallLogMessage.CallOutcome
22500
+ (CallLogMessage_CallType)(0), // 11: WAWebProtobufsE2E.CallLogMessage.CallType
22501
+ (ScheduledCallEditMessage_EditType)(0), // 12: WAWebProtobufsE2E.ScheduledCallEditMessage.EditType
22502
+ (ScheduledCallCreationMessage_CallType)(0), // 13: WAWebProtobufsE2E.ScheduledCallCreationMessage.CallType
22503
+ (EventResponseMessage_EventResponseType)(0), // 14: WAWebProtobufsE2E.EventResponseMessage.EventResponseType
22504
+ (PinInChatMessage_Type)(0), // 15: WAWebProtobufsE2E.PinInChatMessage.Type
22505
+ (StatusStickerInteractionMessage_StatusStickerType)(0), // 16: WAWebProtobufsE2E.StatusStickerInteractionMessage.StatusStickerType
22506
+ (ButtonsResponseMessage_Type)(0), // 17: WAWebProtobufsE2E.ButtonsResponseMessage.Type
22507
+ (ButtonsMessage_HeaderType)(0), // 18: WAWebProtobufsE2E.ButtonsMessage.HeaderType
22508
+ (ButtonsMessage_Button_Type)(0), // 19: WAWebProtobufsE2E.ButtonsMessage.Button.Type
22509
+ (SecretEncryptedMessage_SecretEncType)(0), // 20: WAWebProtobufsE2E.SecretEncryptedMessage.SecretEncType
22510
+ (GroupInviteMessage_GroupType)(0), // 21: WAWebProtobufsE2E.GroupInviteMessage.GroupType
22511
+ (InteractiveResponseMessage_Body_Format)(0), // 22: WAWebProtobufsE2E.InteractiveResponseMessage.Body.Format
22512
+ (InteractiveMessage_CarouselMessage_CarouselCardType)(0), // 23: WAWebProtobufsE2E.InteractiveMessage.CarouselMessage.CarouselCardType
22513
+ (InteractiveMessage_ShopMessage_Surface)(0), // 24: WAWebProtobufsE2E.InteractiveMessage.ShopMessage.Surface
22514
+ (ListResponseMessage_ListType)(0), // 25: WAWebProtobufsE2E.ListResponseMessage.ListType
22515
+ (ListMessage_ListType)(0), // 26: WAWebProtobufsE2E.ListMessage.ListType
22516
+ (OrderMessage_OrderSurface)(0), // 27: WAWebProtobufsE2E.OrderMessage.OrderSurface
22517
+ (OrderMessage_OrderStatus)(0), // 28: WAWebProtobufsE2E.OrderMessage.OrderStatus
22518
+ (StatusQuotedMessage_StatusQuotedMessageType)(0), // 29: WAWebProtobufsE2E.StatusQuotedMessage.StatusQuotedMessageType
22519
+ (PaymentInviteMessage_ServiceType)(0), // 30: WAWebProtobufsE2E.PaymentInviteMessage.ServiceType
22520
+ (HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime_HSMDateTimeComponent_CalendarType)(0), // 31: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent.CalendarType
22521
+ (HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime_HSMDateTimeComponent_DayOfWeekType)(0), // 32: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent.DayOfWeekType
22522
+ (PeerDataOperationRequestResponseMessage_PeerDataOperationResult_HistorySyncChunkRetryResponseCode)(0), // 33: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.HistorySyncChunkRetryResponseCode
22523
+ (PeerDataOperationRequestResponseMessage_PeerDataOperationResult_FullHistorySyncOnDemandResponseCode)(0), // 34: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.FullHistorySyncOnDemandResponseCode
22524
+ (PeerDataOperationRequestMessage_GalaxyFlowAction_GalaxyFlowActionType)(0), // 35: WAWebProtobufsE2E.PeerDataOperationRequestMessage.GalaxyFlowAction.GalaxyFlowActionType
22525
+ (RequestWelcomeMessageMetadata_LocalChatState)(0), // 36: WAWebProtobufsE2E.RequestWelcomeMessageMetadata.LocalChatState
22526
+ (ProtocolMessage_Type)(0), // 37: WAWebProtobufsE2E.ProtocolMessage.Type
22527
+ (CloudAPIThreadControlNotification_CloudAPIThreadControl)(0), // 38: WAWebProtobufsE2E.CloudAPIThreadControlNotification.CloudAPIThreadControl
22528
+ (VideoMessage_VideoSourceType)(0), // 39: WAWebProtobufsE2E.VideoMessage.VideoSourceType
22529
+ (VideoMessage_Attribution)(0), // 40: WAWebProtobufsE2E.VideoMessage.Attribution
22530
+ (ExtendedTextMessage_InviteLinkGroupType)(0), // 41: WAWebProtobufsE2E.ExtendedTextMessage.InviteLinkGroupType
22531
+ (ExtendedTextMessage_PreviewType)(0), // 42: WAWebProtobufsE2E.ExtendedTextMessage.PreviewType
22532
+ (ExtendedTextMessage_FontType)(0), // 43: WAWebProtobufsE2E.ExtendedTextMessage.FontType
22533
+ (LinkPreviewMetadata_SocialMediaPostType)(0), // 44: WAWebProtobufsE2E.LinkPreviewMetadata.SocialMediaPostType
22534
+ (PaymentLinkMetadata_PaymentLinkHeader_PaymentLinkHeaderType)(0), // 45: WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkHeader.PaymentLinkHeaderType
22535
+ (StatusNotificationMessage_StatusNotificationType)(0), // 46: WAWebProtobufsE2E.StatusNotificationMessage.StatusNotificationType
22536
+ (InvoiceMessage_AttachmentType)(0), // 47: WAWebProtobufsE2E.InvoiceMessage.AttachmentType
22537
+ (ImageMessage_ImageSourceType)(0), // 48: WAWebProtobufsE2E.ImageMessage.ImageSourceType
22538
+ (ContextInfo_QuotedType)(0), // 49: WAWebProtobufsE2E.ContextInfo.QuotedType
22539
+ (ContextInfo_ForwardOrigin)(0), // 50: WAWebProtobufsE2E.ContextInfo.ForwardOrigin
22540
+ (ContextInfo_StatusSourceType)(0), // 51: WAWebProtobufsE2E.ContextInfo.StatusSourceType
22541
+ (ContextInfo_PairedMediaType)(0), // 52: WAWebProtobufsE2E.ContextInfo.PairedMediaType
22542
+ (ContextInfo_StatusAttributionType)(0), // 53: WAWebProtobufsE2E.ContextInfo.StatusAttributionType
22543
+ (ContextInfo_StatusAudienceMetadata_AudienceType)(0), // 54: WAWebProtobufsE2E.ContextInfo.StatusAudienceMetadata.AudienceType
22544
+ (ContextInfo_DataSharingContext_DataSharingFlags)(0), // 55: WAWebProtobufsE2E.ContextInfo.DataSharingContext.DataSharingFlags
22545
+ (ContextInfo_ForwardedNewsletterMessageInfo_ContentType)(0), // 56: WAWebProtobufsE2E.ContextInfo.ForwardedNewsletterMessageInfo.ContentType
22546
+ (ContextInfo_ExternalAdReplyInfo_AdType)(0), // 57: WAWebProtobufsE2E.ContextInfo.ExternalAdReplyInfo.AdType
22547
+ (ContextInfo_ExternalAdReplyInfo_MediaType)(0), // 58: WAWebProtobufsE2E.ContextInfo.ExternalAdReplyInfo.MediaType
22548
+ (ContextInfo_AdReplyInfo_MediaType)(0), // 59: WAWebProtobufsE2E.ContextInfo.AdReplyInfo.MediaType
22549
+ (MessageAssociation_AssociationType)(0), // 60: WAWebProtobufsE2E.MessageAssociation.AssociationType
22550
+ (ThreadID_ThreadType)(0), // 61: WAWebProtobufsE2E.ThreadID.ThreadType
22551
+ (MessageContextInfo_MessageAddonExpiryType)(0), // 62: WAWebProtobufsE2E.MessageContextInfo.MessageAddonExpiryType
22552
+ (InteractiveAnnotation_StatusLinkType)(0), // 63: WAWebProtobufsE2E.InteractiveAnnotation.StatusLinkType
22553
+ (HydratedTemplateButton_HydratedURLButton_WebviewPresentationType)(0), // 64: WAWebProtobufsE2E.HydratedTemplateButton.HydratedURLButton.WebviewPresentationType
22554
+ (PaymentBackground_Type)(0), // 65: WAWebProtobufsE2E.PaymentBackground.Type
22555
+ (DisappearingMode_Trigger)(0), // 66: WAWebProtobufsE2E.DisappearingMode.Trigger
22556
+ (DisappearingMode_Initiator)(0), // 67: WAWebProtobufsE2E.DisappearingMode.Initiator
22557
+ (ProcessedVideo_VideoQuality)(0), // 68: WAWebProtobufsE2E.ProcessedVideo.VideoQuality
22558
+ (*StickerPackMessage)(nil), // 69: WAWebProtobufsE2E.StickerPackMessage
22559
+ (*PlaceholderMessage)(nil), // 70: WAWebProtobufsE2E.PlaceholderMessage
22560
+ (*BCallMessage)(nil), // 71: WAWebProtobufsE2E.BCallMessage
22561
+ (*CallLogMessage)(nil), // 72: WAWebProtobufsE2E.CallLogMessage
22562
+ (*ScheduledCallEditMessage)(nil), // 73: WAWebProtobufsE2E.ScheduledCallEditMessage
22563
+ (*ScheduledCallCreationMessage)(nil), // 74: WAWebProtobufsE2E.ScheduledCallCreationMessage
22564
+ (*EventResponseMessage)(nil), // 75: WAWebProtobufsE2E.EventResponseMessage
22565
+ (*PinInChatMessage)(nil), // 76: WAWebProtobufsE2E.PinInChatMessage
22566
+ (*StatusStickerInteractionMessage)(nil), // 77: WAWebProtobufsE2E.StatusStickerInteractionMessage
22567
+ (*ButtonsResponseMessage)(nil), // 78: WAWebProtobufsE2E.ButtonsResponseMessage
22568
+ (*ButtonsMessage)(nil), // 79: WAWebProtobufsE2E.ButtonsMessage
22569
+ (*SecretEncryptedMessage)(nil), // 80: WAWebProtobufsE2E.SecretEncryptedMessage
22570
+ (*GroupInviteMessage)(nil), // 81: WAWebProtobufsE2E.GroupInviteMessage
22571
+ (*InteractiveResponseMessage)(nil), // 82: WAWebProtobufsE2E.InteractiveResponseMessage
22572
+ (*InteractiveMessage)(nil), // 83: WAWebProtobufsE2E.InteractiveMessage
22573
+ (*ListResponseMessage)(nil), // 84: WAWebProtobufsE2E.ListResponseMessage
22574
+ (*ListMessage)(nil), // 85: WAWebProtobufsE2E.ListMessage
22575
+ (*OrderMessage)(nil), // 86: WAWebProtobufsE2E.OrderMessage
22576
+ (*StatusQuotedMessage)(nil), // 87: WAWebProtobufsE2E.StatusQuotedMessage
22577
+ (*PaymentInviteMessage)(nil), // 88: WAWebProtobufsE2E.PaymentInviteMessage
22578
+ (*HighlyStructuredMessage)(nil), // 89: WAWebProtobufsE2E.HighlyStructuredMessage
22579
+ (*PeerDataOperationRequestResponseMessage)(nil), // 90: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage
22580
+ (*PeerDataOperationRequestMessage)(nil), // 91: WAWebProtobufsE2E.PeerDataOperationRequestMessage
22581
+ (*RequestWelcomeMessageMetadata)(nil), // 92: WAWebProtobufsE2E.RequestWelcomeMessageMetadata
22582
+ (*ProtocolMessage)(nil), // 93: WAWebProtobufsE2E.ProtocolMessage
22583
+ (*CloudAPIThreadControlNotification)(nil), // 94: WAWebProtobufsE2E.CloudAPIThreadControlNotification
22584
+ (*VideoMessage)(nil), // 95: WAWebProtobufsE2E.VideoMessage
22585
+ (*ExtendedTextMessage)(nil), // 96: WAWebProtobufsE2E.ExtendedTextMessage
22586
+ (*LinkPreviewMetadata)(nil), // 97: WAWebProtobufsE2E.LinkPreviewMetadata
22587
+ (*PaymentLinkMetadata)(nil), // 98: WAWebProtobufsE2E.PaymentLinkMetadata
22588
+ (*StatusNotificationMessage)(nil), // 99: WAWebProtobufsE2E.StatusNotificationMessage
22589
+ (*InvoiceMessage)(nil), // 100: WAWebProtobufsE2E.InvoiceMessage
22590
+ (*ImageMessage)(nil), // 101: WAWebProtobufsE2E.ImageMessage
22591
+ (*ContextInfo)(nil), // 102: WAWebProtobufsE2E.ContextInfo
22592
+ (*MessageAssociation)(nil), // 103: WAWebProtobufsE2E.MessageAssociation
22593
+ (*ThreadID)(nil), // 104: WAWebProtobufsE2E.ThreadID
22594
+ (*MessageContextInfo)(nil), // 105: WAWebProtobufsE2E.MessageContextInfo
22595
+ (*InteractiveAnnotation)(nil), // 106: WAWebProtobufsE2E.InteractiveAnnotation
22596
+ (*HydratedTemplateButton)(nil), // 107: WAWebProtobufsE2E.HydratedTemplateButton
22597
+ (*PaymentBackground)(nil), // 108: WAWebProtobufsE2E.PaymentBackground
22598
+ (*DisappearingMode)(nil), // 109: WAWebProtobufsE2E.DisappearingMode
22599
+ (*ProcessedVideo)(nil), // 110: WAWebProtobufsE2E.ProcessedVideo
22600
+ (*Message)(nil), // 111: WAWebProtobufsE2E.Message
22601
+ (*AlbumMessage)(nil), // 112: WAWebProtobufsE2E.AlbumMessage
22602
+ (*MessageHistoryMetadata)(nil), // 113: WAWebProtobufsE2E.MessageHistoryMetadata
22603
+ (*MessageHistoryNotice)(nil), // 114: WAWebProtobufsE2E.MessageHistoryNotice
22604
+ (*MessageHistoryBundle)(nil), // 115: WAWebProtobufsE2E.MessageHistoryBundle
22605
+ (*EncEventResponseMessage)(nil), // 116: WAWebProtobufsE2E.EncEventResponseMessage
22606
+ (*EventMessage)(nil), // 117: WAWebProtobufsE2E.EventMessage
22607
+ (*CommentMessage)(nil), // 118: WAWebProtobufsE2E.CommentMessage
22608
+ (*EncCommentMessage)(nil), // 119: WAWebProtobufsE2E.EncCommentMessage
22609
+ (*EncReactionMessage)(nil), // 120: WAWebProtobufsE2E.EncReactionMessage
22610
+ (*KeepInChatMessage)(nil), // 121: WAWebProtobufsE2E.KeepInChatMessage
22611
+ (*QuestionResponseMessage)(nil), // 122: WAWebProtobufsE2E.QuestionResponseMessage
22612
+ (*StatusQuestionAnswerMessage)(nil), // 123: WAWebProtobufsE2E.StatusQuestionAnswerMessage
22613
+ (*PollResultSnapshotMessage)(nil), // 124: WAWebProtobufsE2E.PollResultSnapshotMessage
22614
+ (*PollVoteMessage)(nil), // 125: WAWebProtobufsE2E.PollVoteMessage
22615
+ (*PollEncValue)(nil), // 126: WAWebProtobufsE2E.PollEncValue
22616
+ (*PollUpdateMessageMetadata)(nil), // 127: WAWebProtobufsE2E.PollUpdateMessageMetadata
22617
+ (*PollUpdateMessage)(nil), // 128: WAWebProtobufsE2E.PollUpdateMessage
22618
+ (*PollCreationMessage)(nil), // 129: WAWebProtobufsE2E.PollCreationMessage
22619
+ (*StickerSyncRMRMessage)(nil), // 130: WAWebProtobufsE2E.StickerSyncRMRMessage
22620
+ (*ReactionMessage)(nil), // 131: WAWebProtobufsE2E.ReactionMessage
22621
+ (*FutureProofMessage)(nil), // 132: WAWebProtobufsE2E.FutureProofMessage
22622
+ (*DeviceSentMessage)(nil), // 133: WAWebProtobufsE2E.DeviceSentMessage
22550
22623
  (*RequestPhoneNumberMessage)(nil), // 134: WAWebProtobufsE2E.RequestPhoneNumberMessage
22551
22624
  (*NewsletterFollowerInviteMessage)(nil), // 135: WAWebProtobufsE2E.NewsletterFollowerInviteMessage
22552
22625
  (*NewsletterAdminInviteMessage)(nil), // 136: WAWebProtobufsE2E.NewsletterAdminInviteMessage
@@ -22570,555 +22643,556 @@ var file_waE2E_WAWebProtobufsE2E_proto_goTypes = []any{
22570
22643
  (*AppStateSyncKeyId)(nil), // 154: WAWebProtobufsE2E.AppStateSyncKeyId
22571
22644
  (*AppStateSyncKey)(nil), // 155: WAWebProtobufsE2E.AppStateSyncKey
22572
22645
  (*HistorySyncNotification)(nil), // 156: WAWebProtobufsE2E.HistorySyncNotification
22573
- (*Chat)(nil), // 157: WAWebProtobufsE2E.Chat
22574
- (*Call)(nil), // 158: WAWebProtobufsE2E.Call
22575
- (*AudioMessage)(nil), // 159: WAWebProtobufsE2E.AudioMessage
22576
- (*DocumentMessage)(nil), // 160: WAWebProtobufsE2E.DocumentMessage
22577
- (*URLMetadata)(nil), // 161: WAWebProtobufsE2E.URLMetadata
22578
- (*PaymentExtendedMetadata)(nil), // 162: WAWebProtobufsE2E.PaymentExtendedMetadata
22579
- (*MMSThumbnailMetadata)(nil), // 163: WAWebProtobufsE2E.MMSThumbnailMetadata
22580
- (*LocationMessage)(nil), // 164: WAWebProtobufsE2E.LocationMessage
22581
- (*ContactMessage)(nil), // 165: WAWebProtobufsE2E.ContactMessage
22582
- (*SenderKeyDistributionMessage)(nil), // 166: WAWebProtobufsE2E.SenderKeyDistributionMessage
22583
- (*VideoEndCard)(nil), // 167: WAWebProtobufsE2E.VideoEndCard
22584
- (*DeviceListMetadata)(nil), // 168: WAWebProtobufsE2E.DeviceListMetadata
22585
- (*EmbeddedMessage)(nil), // 169: WAWebProtobufsE2E.EmbeddedMessage
22586
- (*EmbeddedMusic)(nil), // 170: WAWebProtobufsE2E.EmbeddedMusic
22587
- (*EmbeddedContent)(nil), // 171: WAWebProtobufsE2E.EmbeddedContent
22588
- (*TapLinkAction)(nil), // 172: WAWebProtobufsE2E.TapLinkAction
22589
- (*Point)(nil), // 173: WAWebProtobufsE2E.Point
22590
- (*Location)(nil), // 174: WAWebProtobufsE2E.Location
22591
- (*TemplateButton)(nil), // 175: WAWebProtobufsE2E.TemplateButton
22592
- (*Money)(nil), // 176: WAWebProtobufsE2E.Money
22593
- (*ActionLink)(nil), // 177: WAWebProtobufsE2E.ActionLink
22594
- (*GroupMention)(nil), // 178: WAWebProtobufsE2E.GroupMention
22595
- (*MessageSecretMessage)(nil), // 179: WAWebProtobufsE2E.MessageSecretMessage
22596
- (*MediaNotifyMessage)(nil), // 180: WAWebProtobufsE2E.MediaNotifyMessage
22597
- (*LIDMigrationMappingSyncMessage)(nil), // 181: WAWebProtobufsE2E.LIDMigrationMappingSyncMessage
22598
- (*UrlTrackingMap)(nil), // 182: WAWebProtobufsE2E.UrlTrackingMap
22599
- (*MemberLabel)(nil), // 183: WAWebProtobufsE2E.MemberLabel
22600
- (*AIRichResponseMessage)(nil), // 184: WAWebProtobufsE2E.AIRichResponseMessage
22601
- (*AIQueryFanout)(nil), // 185: WAWebProtobufsE2E.AIQueryFanout
22602
- (*StickerPackMessage_Sticker)(nil), // 186: WAWebProtobufsE2E.StickerPackMessage.Sticker
22603
- (*CallLogMessage_CallParticipant)(nil), // 187: WAWebProtobufsE2E.CallLogMessage.CallParticipant
22604
- (*ButtonsMessage_Button)(nil), // 188: WAWebProtobufsE2E.ButtonsMessage.Button
22605
- (*ButtonsMessage_Button_NativeFlowInfo)(nil), // 189: WAWebProtobufsE2E.ButtonsMessage.Button.NativeFlowInfo
22606
- (*ButtonsMessage_Button_ButtonText)(nil), // 190: WAWebProtobufsE2E.ButtonsMessage.Button.ButtonText
22607
- (*InteractiveResponseMessage_Body)(nil), // 191: WAWebProtobufsE2E.InteractiveResponseMessage.Body
22608
- (*InteractiveResponseMessage_NativeFlowResponseMessage)(nil), // 192: WAWebProtobufsE2E.InteractiveResponseMessage.NativeFlowResponseMessage
22609
- (*InteractiveMessage_CarouselMessage)(nil), // 193: WAWebProtobufsE2E.InteractiveMessage.CarouselMessage
22610
- (*InteractiveMessage_ShopMessage)(nil), // 194: WAWebProtobufsE2E.InteractiveMessage.ShopMessage
22611
- (*InteractiveMessage_NativeFlowMessage)(nil), // 195: WAWebProtobufsE2E.InteractiveMessage.NativeFlowMessage
22612
- (*InteractiveMessage_CollectionMessage)(nil), // 196: WAWebProtobufsE2E.InteractiveMessage.CollectionMessage
22613
- (*InteractiveMessage_Footer)(nil), // 197: WAWebProtobufsE2E.InteractiveMessage.Footer
22614
- (*InteractiveMessage_Body)(nil), // 198: WAWebProtobufsE2E.InteractiveMessage.Body
22615
- (*InteractiveMessage_Header)(nil), // 199: WAWebProtobufsE2E.InteractiveMessage.Header
22616
- (*InteractiveMessage_NativeFlowMessage_NativeFlowButton)(nil), // 200: WAWebProtobufsE2E.InteractiveMessage.NativeFlowMessage.NativeFlowButton
22617
- (*ListResponseMessage_SingleSelectReply)(nil), // 201: WAWebProtobufsE2E.ListResponseMessage.SingleSelectReply
22618
- (*ListMessage_ProductListInfo)(nil), // 202: WAWebProtobufsE2E.ListMessage.ProductListInfo
22619
- (*ListMessage_ProductListHeaderImage)(nil), // 203: WAWebProtobufsE2E.ListMessage.ProductListHeaderImage
22620
- (*ListMessage_ProductSection)(nil), // 204: WAWebProtobufsE2E.ListMessage.ProductSection
22621
- (*ListMessage_Product)(nil), // 205: WAWebProtobufsE2E.ListMessage.Product
22622
- (*ListMessage_Section)(nil), // 206: WAWebProtobufsE2E.ListMessage.Section
22623
- (*ListMessage_Row)(nil), // 207: WAWebProtobufsE2E.ListMessage.Row
22624
- (*HighlyStructuredMessage_HSMLocalizableParameter)(nil), // 208: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter
22625
- (*HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime)(nil), // 209: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime
22626
- (*HighlyStructuredMessage_HSMLocalizableParameter_HSMCurrency)(nil), // 210: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMCurrency
22627
- (*HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime_HSMDateTimeComponent)(nil), // 211: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent
22628
- (*HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime_HSMDateTimeUnixEpoch)(nil), // 212: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeUnixEpoch
22629
- (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult)(nil), // 213: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult
22630
- (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_HistorySyncChunkRetryResponse)(nil), // 214: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.HistorySyncChunkRetryResponse
22631
- (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_SyncDSnapshotFatalRecoveryResponse)(nil), // 215: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.SyncDSnapshotFatalRecoveryResponse
22632
- (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_CompanionCanonicalUserNonceFetchResponse)(nil), // 216: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.CompanionCanonicalUserNonceFetchResponse
22633
- (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_CompanionMetaNonceFetchResponse)(nil), // 217: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.CompanionMetaNonceFetchResponse
22634
- (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_WaffleNonceFetchResponse)(nil), // 218: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.WaffleNonceFetchResponse
22635
- (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_FullHistorySyncOnDemandRequestResponse)(nil), // 219: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.FullHistorySyncOnDemandRequestResponse
22636
- (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_PlaceholderMessageResendResponse)(nil), // 220: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.PlaceholderMessageResendResponse
22637
- (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_LinkPreviewResponse)(nil), // 221: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse
22638
- (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_LinkPreviewResponse_PaymentLinkPreviewMetadata)(nil), // 222: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse.PaymentLinkPreviewMetadata
22639
- (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_LinkPreviewResponse_LinkPreviewHighQualityThumbnail)(nil), // 223: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse.LinkPreviewHighQualityThumbnail
22640
- (*PeerDataOperationRequestMessage_GalaxyFlowAction)(nil), // 224: WAWebProtobufsE2E.PeerDataOperationRequestMessage.GalaxyFlowAction
22641
- (*PeerDataOperationRequestMessage_HistorySyncChunkRetryRequest)(nil), // 225: WAWebProtobufsE2E.PeerDataOperationRequestMessage.HistorySyncChunkRetryRequest
22642
- (*PeerDataOperationRequestMessage_SyncDCollectionFatalRecoveryRequest)(nil), // 226: WAWebProtobufsE2E.PeerDataOperationRequestMessage.SyncDCollectionFatalRecoveryRequest
22643
- (*PeerDataOperationRequestMessage_PlaceholderMessageResendRequest)(nil), // 227: WAWebProtobufsE2E.PeerDataOperationRequestMessage.PlaceholderMessageResendRequest
22644
- (*PeerDataOperationRequestMessage_FullHistorySyncOnDemandRequest)(nil), // 228: WAWebProtobufsE2E.PeerDataOperationRequestMessage.FullHistorySyncOnDemandRequest
22645
- (*PeerDataOperationRequestMessage_HistorySyncOnDemandRequest)(nil), // 229: WAWebProtobufsE2E.PeerDataOperationRequestMessage.HistorySyncOnDemandRequest
22646
- (*PeerDataOperationRequestMessage_RequestUrlPreview)(nil), // 230: WAWebProtobufsE2E.PeerDataOperationRequestMessage.RequestUrlPreview
22647
- (*PeerDataOperationRequestMessage_RequestStickerReupload)(nil), // 231: WAWebProtobufsE2E.PeerDataOperationRequestMessage.RequestStickerReupload
22648
- (*CloudAPIThreadControlNotification_CloudAPIThreadControlNotificationContent)(nil), // 232: WAWebProtobufsE2E.CloudAPIThreadControlNotification.CloudAPIThreadControlNotificationContent
22649
- (*PaymentLinkMetadata_PaymentLinkHeader)(nil), // 233: WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkHeader
22650
- (*PaymentLinkMetadata_PaymentLinkProvider)(nil), // 234: WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkProvider
22651
- (*PaymentLinkMetadata_PaymentLinkButton)(nil), // 235: WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkButton
22652
- (*ContextInfo_StatusAudienceMetadata)(nil), // 236: WAWebProtobufsE2E.ContextInfo.StatusAudienceMetadata
22653
- (*ContextInfo_DataSharingContext)(nil), // 237: WAWebProtobufsE2E.ContextInfo.DataSharingContext
22654
- (*ContextInfo_ForwardedNewsletterMessageInfo)(nil), // 238: WAWebProtobufsE2E.ContextInfo.ForwardedNewsletterMessageInfo
22655
- (*ContextInfo_ExternalAdReplyInfo)(nil), // 239: WAWebProtobufsE2E.ContextInfo.ExternalAdReplyInfo
22656
- (*ContextInfo_AdReplyInfo)(nil), // 240: WAWebProtobufsE2E.ContextInfo.AdReplyInfo
22657
- (*ContextInfo_FeatureEligibilities)(nil), // 241: WAWebProtobufsE2E.ContextInfo.FeatureEligibilities
22658
- (*ContextInfo_QuestionReplyQuotedMessage)(nil), // 242: WAWebProtobufsE2E.ContextInfo.QuestionReplyQuotedMessage
22659
- (*ContextInfo_UTMInfo)(nil), // 243: WAWebProtobufsE2E.ContextInfo.UTMInfo
22660
- (*ContextInfo_BusinessMessageForwardInfo)(nil), // 244: WAWebProtobufsE2E.ContextInfo.BusinessMessageForwardInfo
22661
- (*ContextInfo_DataSharingContext_Parameters)(nil), // 245: WAWebProtobufsE2E.ContextInfo.DataSharingContext.Parameters
22662
- (*HydratedTemplateButton_HydratedURLButton)(nil), // 246: WAWebProtobufsE2E.HydratedTemplateButton.HydratedURLButton
22663
- (*HydratedTemplateButton_HydratedCallButton)(nil), // 247: WAWebProtobufsE2E.HydratedTemplateButton.HydratedCallButton
22664
- (*HydratedTemplateButton_HydratedQuickReplyButton)(nil), // 248: WAWebProtobufsE2E.HydratedTemplateButton.HydratedQuickReplyButton
22665
- (*PaymentBackground_MediaData)(nil), // 249: WAWebProtobufsE2E.PaymentBackground.MediaData
22666
- (*PollResultSnapshotMessage_PollVote)(nil), // 250: WAWebProtobufsE2E.PollResultSnapshotMessage.PollVote
22667
- (*PollCreationMessage_Option)(nil), // 251: WAWebProtobufsE2E.PollCreationMessage.Option
22668
- (*ProductMessage_ProductSnapshot)(nil), // 252: WAWebProtobufsE2E.ProductMessage.ProductSnapshot
22669
- (*ProductMessage_CatalogSnapshot)(nil), // 253: WAWebProtobufsE2E.ProductMessage.CatalogSnapshot
22670
- (*TemplateMessage_HydratedFourRowTemplate)(nil), // 254: WAWebProtobufsE2E.TemplateMessage.HydratedFourRowTemplate
22671
- (*TemplateMessage_FourRowTemplate)(nil), // 255: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate
22672
- (*TemplateButton_CallButton)(nil), // 256: WAWebProtobufsE2E.TemplateButton.CallButton
22673
- (*TemplateButton_URLButton)(nil), // 257: WAWebProtobufsE2E.TemplateButton.URLButton
22674
- (*TemplateButton_QuickReplyButton)(nil), // 258: WAWebProtobufsE2E.TemplateButton.QuickReplyButton
22675
- (*UrlTrackingMap_UrlTrackingMapElement)(nil), // 259: WAWebProtobufsE2E.UrlTrackingMap.UrlTrackingMapElement
22676
- (*waCommon.MessageKey)(nil), // 260: WACommon.MessageKey
22677
- (*waAICommon.BotFeedbackMessage)(nil), // 261: WAAICommon.BotFeedbackMessage
22678
- (*waCommon.LimitSharing)(nil), // 262: WACommon.LimitSharing
22679
- (*waAICommon.ForwardedAIBotMessageInfo)(nil), // 263: WAAICommon.ForwardedAIBotMessageInfo
22680
- (*waStatusAttributions.StatusAttribution)(nil), // 264: WAStatusAttributions.StatusAttribution
22681
- (*waAICommon.BotMessageSharingInfo)(nil), // 265: WAAICommon.BotMessageSharingInfo
22682
- (*waAICommon.BotMetadata)(nil), // 266: WAAICommon.BotMetadata
22683
- (waAdv.ADVEncryptionType)(0), // 267: WAAdv.ADVEncryptionType
22684
- (waAICommon.AIRichResponseMessageType)(0), // 268: WAAICommon.AIRichResponseMessageType
22685
- (*waAICommon.AIRichResponseSubMessage)(nil), // 269: WAAICommon.AIRichResponseSubMessage
22686
- (*waAICommon.AIRichResponseUnifiedResponse)(nil), // 270: WAAICommon.AIRichResponseUnifiedResponse
22687
- (waMmsRetry.MediaRetryNotification_ResultType)(0), // 271: WAMmsRetry.MediaRetryNotification.ResultType
22688
- (*waCompanionReg.DeviceProps_HistorySyncConfig)(nil), // 272: WACompanionReg.DeviceProps.HistorySyncConfig
22646
+ (*HistorySyncMessageAccessStatus)(nil), // 157: WAWebProtobufsE2E.HistorySyncMessageAccessStatus
22647
+ (*Chat)(nil), // 158: WAWebProtobufsE2E.Chat
22648
+ (*Call)(nil), // 159: WAWebProtobufsE2E.Call
22649
+ (*AudioMessage)(nil), // 160: WAWebProtobufsE2E.AudioMessage
22650
+ (*DocumentMessage)(nil), // 161: WAWebProtobufsE2E.DocumentMessage
22651
+ (*URLMetadata)(nil), // 162: WAWebProtobufsE2E.URLMetadata
22652
+ (*PaymentExtendedMetadata)(nil), // 163: WAWebProtobufsE2E.PaymentExtendedMetadata
22653
+ (*MMSThumbnailMetadata)(nil), // 164: WAWebProtobufsE2E.MMSThumbnailMetadata
22654
+ (*LocationMessage)(nil), // 165: WAWebProtobufsE2E.LocationMessage
22655
+ (*ContactMessage)(nil), // 166: WAWebProtobufsE2E.ContactMessage
22656
+ (*SenderKeyDistributionMessage)(nil), // 167: WAWebProtobufsE2E.SenderKeyDistributionMessage
22657
+ (*VideoEndCard)(nil), // 168: WAWebProtobufsE2E.VideoEndCard
22658
+ (*DeviceListMetadata)(nil), // 169: WAWebProtobufsE2E.DeviceListMetadata
22659
+ (*EmbeddedMessage)(nil), // 170: WAWebProtobufsE2E.EmbeddedMessage
22660
+ (*EmbeddedMusic)(nil), // 171: WAWebProtobufsE2E.EmbeddedMusic
22661
+ (*EmbeddedContent)(nil), // 172: WAWebProtobufsE2E.EmbeddedContent
22662
+ (*TapLinkAction)(nil), // 173: WAWebProtobufsE2E.TapLinkAction
22663
+ (*Point)(nil), // 174: WAWebProtobufsE2E.Point
22664
+ (*Location)(nil), // 175: WAWebProtobufsE2E.Location
22665
+ (*TemplateButton)(nil), // 176: WAWebProtobufsE2E.TemplateButton
22666
+ (*Money)(nil), // 177: WAWebProtobufsE2E.Money
22667
+ (*ActionLink)(nil), // 178: WAWebProtobufsE2E.ActionLink
22668
+ (*GroupMention)(nil), // 179: WAWebProtobufsE2E.GroupMention
22669
+ (*MessageSecretMessage)(nil), // 180: WAWebProtobufsE2E.MessageSecretMessage
22670
+ (*MediaNotifyMessage)(nil), // 181: WAWebProtobufsE2E.MediaNotifyMessage
22671
+ (*LIDMigrationMappingSyncMessage)(nil), // 182: WAWebProtobufsE2E.LIDMigrationMappingSyncMessage
22672
+ (*UrlTrackingMap)(nil), // 183: WAWebProtobufsE2E.UrlTrackingMap
22673
+ (*MemberLabel)(nil), // 184: WAWebProtobufsE2E.MemberLabel
22674
+ (*AIRichResponseMessage)(nil), // 185: WAWebProtobufsE2E.AIRichResponseMessage
22675
+ (*AIQueryFanout)(nil), // 186: WAWebProtobufsE2E.AIQueryFanout
22676
+ (*StickerPackMessage_Sticker)(nil), // 187: WAWebProtobufsE2E.StickerPackMessage.Sticker
22677
+ (*CallLogMessage_CallParticipant)(nil), // 188: WAWebProtobufsE2E.CallLogMessage.CallParticipant
22678
+ (*ButtonsMessage_Button)(nil), // 189: WAWebProtobufsE2E.ButtonsMessage.Button
22679
+ (*ButtonsMessage_Button_NativeFlowInfo)(nil), // 190: WAWebProtobufsE2E.ButtonsMessage.Button.NativeFlowInfo
22680
+ (*ButtonsMessage_Button_ButtonText)(nil), // 191: WAWebProtobufsE2E.ButtonsMessage.Button.ButtonText
22681
+ (*InteractiveResponseMessage_Body)(nil), // 192: WAWebProtobufsE2E.InteractiveResponseMessage.Body
22682
+ (*InteractiveResponseMessage_NativeFlowResponseMessage)(nil), // 193: WAWebProtobufsE2E.InteractiveResponseMessage.NativeFlowResponseMessage
22683
+ (*InteractiveMessage_CarouselMessage)(nil), // 194: WAWebProtobufsE2E.InteractiveMessage.CarouselMessage
22684
+ (*InteractiveMessage_ShopMessage)(nil), // 195: WAWebProtobufsE2E.InteractiveMessage.ShopMessage
22685
+ (*InteractiveMessage_NativeFlowMessage)(nil), // 196: WAWebProtobufsE2E.InteractiveMessage.NativeFlowMessage
22686
+ (*InteractiveMessage_CollectionMessage)(nil), // 197: WAWebProtobufsE2E.InteractiveMessage.CollectionMessage
22687
+ (*InteractiveMessage_Footer)(nil), // 198: WAWebProtobufsE2E.InteractiveMessage.Footer
22688
+ (*InteractiveMessage_Body)(nil), // 199: WAWebProtobufsE2E.InteractiveMessage.Body
22689
+ (*InteractiveMessage_Header)(nil), // 200: WAWebProtobufsE2E.InteractiveMessage.Header
22690
+ (*InteractiveMessage_NativeFlowMessage_NativeFlowButton)(nil), // 201: WAWebProtobufsE2E.InteractiveMessage.NativeFlowMessage.NativeFlowButton
22691
+ (*ListResponseMessage_SingleSelectReply)(nil), // 202: WAWebProtobufsE2E.ListResponseMessage.SingleSelectReply
22692
+ (*ListMessage_ProductListInfo)(nil), // 203: WAWebProtobufsE2E.ListMessage.ProductListInfo
22693
+ (*ListMessage_ProductListHeaderImage)(nil), // 204: WAWebProtobufsE2E.ListMessage.ProductListHeaderImage
22694
+ (*ListMessage_ProductSection)(nil), // 205: WAWebProtobufsE2E.ListMessage.ProductSection
22695
+ (*ListMessage_Product)(nil), // 206: WAWebProtobufsE2E.ListMessage.Product
22696
+ (*ListMessage_Section)(nil), // 207: WAWebProtobufsE2E.ListMessage.Section
22697
+ (*ListMessage_Row)(nil), // 208: WAWebProtobufsE2E.ListMessage.Row
22698
+ (*HighlyStructuredMessage_HSMLocalizableParameter)(nil), // 209: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter
22699
+ (*HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime)(nil), // 210: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime
22700
+ (*HighlyStructuredMessage_HSMLocalizableParameter_HSMCurrency)(nil), // 211: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMCurrency
22701
+ (*HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime_HSMDateTimeComponent)(nil), // 212: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent
22702
+ (*HighlyStructuredMessage_HSMLocalizableParameter_HSMDateTime_HSMDateTimeUnixEpoch)(nil), // 213: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeUnixEpoch
22703
+ (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult)(nil), // 214: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult
22704
+ (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_HistorySyncChunkRetryResponse)(nil), // 215: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.HistorySyncChunkRetryResponse
22705
+ (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_SyncDSnapshotFatalRecoveryResponse)(nil), // 216: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.SyncDSnapshotFatalRecoveryResponse
22706
+ (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_CompanionCanonicalUserNonceFetchResponse)(nil), // 217: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.CompanionCanonicalUserNonceFetchResponse
22707
+ (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_CompanionMetaNonceFetchResponse)(nil), // 218: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.CompanionMetaNonceFetchResponse
22708
+ (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_WaffleNonceFetchResponse)(nil), // 219: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.WaffleNonceFetchResponse
22709
+ (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_FullHistorySyncOnDemandRequestResponse)(nil), // 220: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.FullHistorySyncOnDemandRequestResponse
22710
+ (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_PlaceholderMessageResendResponse)(nil), // 221: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.PlaceholderMessageResendResponse
22711
+ (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_LinkPreviewResponse)(nil), // 222: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse
22712
+ (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_LinkPreviewResponse_PaymentLinkPreviewMetadata)(nil), // 223: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse.PaymentLinkPreviewMetadata
22713
+ (*PeerDataOperationRequestResponseMessage_PeerDataOperationResult_LinkPreviewResponse_LinkPreviewHighQualityThumbnail)(nil), // 224: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse.LinkPreviewHighQualityThumbnail
22714
+ (*PeerDataOperationRequestMessage_GalaxyFlowAction)(nil), // 225: WAWebProtobufsE2E.PeerDataOperationRequestMessage.GalaxyFlowAction
22715
+ (*PeerDataOperationRequestMessage_HistorySyncChunkRetryRequest)(nil), // 226: WAWebProtobufsE2E.PeerDataOperationRequestMessage.HistorySyncChunkRetryRequest
22716
+ (*PeerDataOperationRequestMessage_SyncDCollectionFatalRecoveryRequest)(nil), // 227: WAWebProtobufsE2E.PeerDataOperationRequestMessage.SyncDCollectionFatalRecoveryRequest
22717
+ (*PeerDataOperationRequestMessage_PlaceholderMessageResendRequest)(nil), // 228: WAWebProtobufsE2E.PeerDataOperationRequestMessage.PlaceholderMessageResendRequest
22718
+ (*PeerDataOperationRequestMessage_FullHistorySyncOnDemandRequest)(nil), // 229: WAWebProtobufsE2E.PeerDataOperationRequestMessage.FullHistorySyncOnDemandRequest
22719
+ (*PeerDataOperationRequestMessage_HistorySyncOnDemandRequest)(nil), // 230: WAWebProtobufsE2E.PeerDataOperationRequestMessage.HistorySyncOnDemandRequest
22720
+ (*PeerDataOperationRequestMessage_RequestUrlPreview)(nil), // 231: WAWebProtobufsE2E.PeerDataOperationRequestMessage.RequestUrlPreview
22721
+ (*PeerDataOperationRequestMessage_RequestStickerReupload)(nil), // 232: WAWebProtobufsE2E.PeerDataOperationRequestMessage.RequestStickerReupload
22722
+ (*CloudAPIThreadControlNotification_CloudAPIThreadControlNotificationContent)(nil), // 233: WAWebProtobufsE2E.CloudAPIThreadControlNotification.CloudAPIThreadControlNotificationContent
22723
+ (*PaymentLinkMetadata_PaymentLinkHeader)(nil), // 234: WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkHeader
22724
+ (*PaymentLinkMetadata_PaymentLinkProvider)(nil), // 235: WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkProvider
22725
+ (*PaymentLinkMetadata_PaymentLinkButton)(nil), // 236: WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkButton
22726
+ (*ContextInfo_StatusAudienceMetadata)(nil), // 237: WAWebProtobufsE2E.ContextInfo.StatusAudienceMetadata
22727
+ (*ContextInfo_DataSharingContext)(nil), // 238: WAWebProtobufsE2E.ContextInfo.DataSharingContext
22728
+ (*ContextInfo_ForwardedNewsletterMessageInfo)(nil), // 239: WAWebProtobufsE2E.ContextInfo.ForwardedNewsletterMessageInfo
22729
+ (*ContextInfo_ExternalAdReplyInfo)(nil), // 240: WAWebProtobufsE2E.ContextInfo.ExternalAdReplyInfo
22730
+ (*ContextInfo_AdReplyInfo)(nil), // 241: WAWebProtobufsE2E.ContextInfo.AdReplyInfo
22731
+ (*ContextInfo_FeatureEligibilities)(nil), // 242: WAWebProtobufsE2E.ContextInfo.FeatureEligibilities
22732
+ (*ContextInfo_QuestionReplyQuotedMessage)(nil), // 243: WAWebProtobufsE2E.ContextInfo.QuestionReplyQuotedMessage
22733
+ (*ContextInfo_UTMInfo)(nil), // 244: WAWebProtobufsE2E.ContextInfo.UTMInfo
22734
+ (*ContextInfo_BusinessMessageForwardInfo)(nil), // 245: WAWebProtobufsE2E.ContextInfo.BusinessMessageForwardInfo
22735
+ (*ContextInfo_DataSharingContext_Parameters)(nil), // 246: WAWebProtobufsE2E.ContextInfo.DataSharingContext.Parameters
22736
+ (*HydratedTemplateButton_HydratedURLButton)(nil), // 247: WAWebProtobufsE2E.HydratedTemplateButton.HydratedURLButton
22737
+ (*HydratedTemplateButton_HydratedCallButton)(nil), // 248: WAWebProtobufsE2E.HydratedTemplateButton.HydratedCallButton
22738
+ (*HydratedTemplateButton_HydratedQuickReplyButton)(nil), // 249: WAWebProtobufsE2E.HydratedTemplateButton.HydratedQuickReplyButton
22739
+ (*PaymentBackground_MediaData)(nil), // 250: WAWebProtobufsE2E.PaymentBackground.MediaData
22740
+ (*PollResultSnapshotMessage_PollVote)(nil), // 251: WAWebProtobufsE2E.PollResultSnapshotMessage.PollVote
22741
+ (*PollCreationMessage_Option)(nil), // 252: WAWebProtobufsE2E.PollCreationMessage.Option
22742
+ (*ProductMessage_ProductSnapshot)(nil), // 253: WAWebProtobufsE2E.ProductMessage.ProductSnapshot
22743
+ (*ProductMessage_CatalogSnapshot)(nil), // 254: WAWebProtobufsE2E.ProductMessage.CatalogSnapshot
22744
+ (*TemplateMessage_HydratedFourRowTemplate)(nil), // 255: WAWebProtobufsE2E.TemplateMessage.HydratedFourRowTemplate
22745
+ (*TemplateMessage_FourRowTemplate)(nil), // 256: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate
22746
+ (*TemplateButton_CallButton)(nil), // 257: WAWebProtobufsE2E.TemplateButton.CallButton
22747
+ (*TemplateButton_URLButton)(nil), // 258: WAWebProtobufsE2E.TemplateButton.URLButton
22748
+ (*TemplateButton_QuickReplyButton)(nil), // 259: WAWebProtobufsE2E.TemplateButton.QuickReplyButton
22749
+ (*UrlTrackingMap_UrlTrackingMapElement)(nil), // 260: WAWebProtobufsE2E.UrlTrackingMap.UrlTrackingMapElement
22750
+ (*waCommon.MessageKey)(nil), // 261: WACommon.MessageKey
22751
+ (*waAICommon.BotFeedbackMessage)(nil), // 262: WAAICommon.BotFeedbackMessage
22752
+ (*waCommon.LimitSharing)(nil), // 263: WACommon.LimitSharing
22753
+ (*waAICommon.ForwardedAIBotMessageInfo)(nil), // 264: WAAICommon.ForwardedAIBotMessageInfo
22754
+ (*waStatusAttributions.StatusAttribution)(nil), // 265: WAStatusAttributions.StatusAttribution
22755
+ (*waAICommon.BotMessageSharingInfo)(nil), // 266: WAAICommon.BotMessageSharingInfo
22756
+ (*waAICommon.BotMetadata)(nil), // 267: WAAICommon.BotMetadata
22757
+ (waAdv.ADVEncryptionType)(0), // 268: WAAdv.ADVEncryptionType
22758
+ (waAICommon.AIRichResponseMessageType)(0), // 269: WAAICommon.AIRichResponseMessageType
22759
+ (*waAICommon.AIRichResponseSubMessage)(nil), // 270: WAAICommon.AIRichResponseSubMessage
22760
+ (*waAICommon.AIRichResponseUnifiedResponse)(nil), // 271: WAAICommon.AIRichResponseUnifiedResponse
22761
+ (waMmsRetry.MediaRetryNotification_ResultType)(0), // 272: WAMmsRetry.MediaRetryNotification.ResultType
22762
+ (*waCompanionReg.DeviceProps_HistorySyncConfig)(nil), // 273: WACompanionReg.DeviceProps.HistorySyncConfig
22689
22763
  }
22690
22764
  var file_waE2E_WAWebProtobufsE2E_proto_depIdxs = []int32{
22691
- 186, // 0: WAWebProtobufsE2E.StickerPackMessage.stickers:type_name -> WAWebProtobufsE2E.StickerPackMessage.Sticker
22692
- 101, // 1: WAWebProtobufsE2E.StickerPackMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22693
- 6, // 2: WAWebProtobufsE2E.StickerPackMessage.stickerPackOrigin:type_name -> WAWebProtobufsE2E.StickerPackMessage.StickerPackOrigin
22694
- 7, // 3: WAWebProtobufsE2E.PlaceholderMessage.type:type_name -> WAWebProtobufsE2E.PlaceholderMessage.PlaceholderType
22695
- 8, // 4: WAWebProtobufsE2E.BCallMessage.mediaType:type_name -> WAWebProtobufsE2E.BCallMessage.MediaType
22696
- 9, // 5: WAWebProtobufsE2E.CallLogMessage.callOutcome:type_name -> WAWebProtobufsE2E.CallLogMessage.CallOutcome
22697
- 10, // 6: WAWebProtobufsE2E.CallLogMessage.callType:type_name -> WAWebProtobufsE2E.CallLogMessage.CallType
22698
- 187, // 7: WAWebProtobufsE2E.CallLogMessage.participants:type_name -> WAWebProtobufsE2E.CallLogMessage.CallParticipant
22699
- 260, // 8: WAWebProtobufsE2E.ScheduledCallEditMessage.key:type_name -> WACommon.MessageKey
22700
- 11, // 9: WAWebProtobufsE2E.ScheduledCallEditMessage.editType:type_name -> WAWebProtobufsE2E.ScheduledCallEditMessage.EditType
22701
- 12, // 10: WAWebProtobufsE2E.ScheduledCallCreationMessage.callType:type_name -> WAWebProtobufsE2E.ScheduledCallCreationMessage.CallType
22702
- 13, // 11: WAWebProtobufsE2E.EventResponseMessage.response:type_name -> WAWebProtobufsE2E.EventResponseMessage.EventResponseType
22703
- 260, // 12: WAWebProtobufsE2E.PinInChatMessage.key:type_name -> WACommon.MessageKey
22704
- 14, // 13: WAWebProtobufsE2E.PinInChatMessage.type:type_name -> WAWebProtobufsE2E.PinInChatMessage.Type
22705
- 260, // 14: WAWebProtobufsE2E.StatusStickerInteractionMessage.key:type_name -> WACommon.MessageKey
22706
- 15, // 15: WAWebProtobufsE2E.StatusStickerInteractionMessage.type:type_name -> WAWebProtobufsE2E.StatusStickerInteractionMessage.StatusStickerType
22707
- 101, // 16: WAWebProtobufsE2E.ButtonsResponseMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22708
- 16, // 17: WAWebProtobufsE2E.ButtonsResponseMessage.type:type_name -> WAWebProtobufsE2E.ButtonsResponseMessage.Type
22709
- 160, // 18: WAWebProtobufsE2E.ButtonsMessage.documentMessage:type_name -> WAWebProtobufsE2E.DocumentMessage
22710
- 100, // 19: WAWebProtobufsE2E.ButtonsMessage.imageMessage:type_name -> WAWebProtobufsE2E.ImageMessage
22711
- 94, // 20: WAWebProtobufsE2E.ButtonsMessage.videoMessage:type_name -> WAWebProtobufsE2E.VideoMessage
22712
- 164, // 21: WAWebProtobufsE2E.ButtonsMessage.locationMessage:type_name -> WAWebProtobufsE2E.LocationMessage
22713
- 101, // 22: WAWebProtobufsE2E.ButtonsMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22714
- 188, // 23: WAWebProtobufsE2E.ButtonsMessage.buttons:type_name -> WAWebProtobufsE2E.ButtonsMessage.Button
22715
- 17, // 24: WAWebProtobufsE2E.ButtonsMessage.headerType:type_name -> WAWebProtobufsE2E.ButtonsMessage.HeaderType
22716
- 260, // 25: WAWebProtobufsE2E.SecretEncryptedMessage.targetMessageKey:type_name -> WACommon.MessageKey
22717
- 19, // 26: WAWebProtobufsE2E.SecretEncryptedMessage.secretEncType:type_name -> WAWebProtobufsE2E.SecretEncryptedMessage.SecretEncType
22718
- 101, // 27: WAWebProtobufsE2E.GroupInviteMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22719
- 20, // 28: WAWebProtobufsE2E.GroupInviteMessage.groupType:type_name -> WAWebProtobufsE2E.GroupInviteMessage.GroupType
22720
- 192, // 29: WAWebProtobufsE2E.InteractiveResponseMessage.nativeFlowResponseMessage:type_name -> WAWebProtobufsE2E.InteractiveResponseMessage.NativeFlowResponseMessage
22721
- 191, // 30: WAWebProtobufsE2E.InteractiveResponseMessage.body:type_name -> WAWebProtobufsE2E.InteractiveResponseMessage.Body
22722
- 101, // 31: WAWebProtobufsE2E.InteractiveResponseMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22723
- 194, // 32: WAWebProtobufsE2E.InteractiveMessage.shopStorefrontMessage:type_name -> WAWebProtobufsE2E.InteractiveMessage.ShopMessage
22724
- 196, // 33: WAWebProtobufsE2E.InteractiveMessage.collectionMessage:type_name -> WAWebProtobufsE2E.InteractiveMessage.CollectionMessage
22725
- 195, // 34: WAWebProtobufsE2E.InteractiveMessage.nativeFlowMessage:type_name -> WAWebProtobufsE2E.InteractiveMessage.NativeFlowMessage
22726
- 193, // 35: WAWebProtobufsE2E.InteractiveMessage.carouselMessage:type_name -> WAWebProtobufsE2E.InteractiveMessage.CarouselMessage
22727
- 199, // 36: WAWebProtobufsE2E.InteractiveMessage.header:type_name -> WAWebProtobufsE2E.InteractiveMessage.Header
22728
- 198, // 37: WAWebProtobufsE2E.InteractiveMessage.body:type_name -> WAWebProtobufsE2E.InteractiveMessage.Body
22729
- 197, // 38: WAWebProtobufsE2E.InteractiveMessage.footer:type_name -> WAWebProtobufsE2E.InteractiveMessage.Footer
22730
- 101, // 39: WAWebProtobufsE2E.InteractiveMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22731
- 182, // 40: WAWebProtobufsE2E.InteractiveMessage.urlTrackingMap:type_name -> WAWebProtobufsE2E.UrlTrackingMap
22732
- 24, // 41: WAWebProtobufsE2E.ListResponseMessage.listType:type_name -> WAWebProtobufsE2E.ListResponseMessage.ListType
22733
- 201, // 42: WAWebProtobufsE2E.ListResponseMessage.singleSelectReply:type_name -> WAWebProtobufsE2E.ListResponseMessage.SingleSelectReply
22734
- 101, // 43: WAWebProtobufsE2E.ListResponseMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22735
- 25, // 44: WAWebProtobufsE2E.ListMessage.listType:type_name -> WAWebProtobufsE2E.ListMessage.ListType
22736
- 206, // 45: WAWebProtobufsE2E.ListMessage.sections:type_name -> WAWebProtobufsE2E.ListMessage.Section
22737
- 202, // 46: WAWebProtobufsE2E.ListMessage.productListInfo:type_name -> WAWebProtobufsE2E.ListMessage.ProductListInfo
22738
- 101, // 47: WAWebProtobufsE2E.ListMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22739
- 27, // 48: WAWebProtobufsE2E.OrderMessage.status:type_name -> WAWebProtobufsE2E.OrderMessage.OrderStatus
22740
- 26, // 49: WAWebProtobufsE2E.OrderMessage.surface:type_name -> WAWebProtobufsE2E.OrderMessage.OrderSurface
22741
- 101, // 50: WAWebProtobufsE2E.OrderMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22742
- 260, // 51: WAWebProtobufsE2E.OrderMessage.orderRequestMessageID:type_name -> WACommon.MessageKey
22743
- 28, // 52: WAWebProtobufsE2E.StatusQuotedMessage.type:type_name -> WAWebProtobufsE2E.StatusQuotedMessage.StatusQuotedMessageType
22744
- 260, // 53: WAWebProtobufsE2E.StatusQuotedMessage.originalStatusID:type_name -> WACommon.MessageKey
22745
- 29, // 54: WAWebProtobufsE2E.PaymentInviteMessage.serviceType:type_name -> WAWebProtobufsE2E.PaymentInviteMessage.ServiceType
22746
- 208, // 55: WAWebProtobufsE2E.HighlyStructuredMessage.localizableParams:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter
22765
+ 187, // 0: WAWebProtobufsE2E.StickerPackMessage.stickers:type_name -> WAWebProtobufsE2E.StickerPackMessage.Sticker
22766
+ 102, // 1: WAWebProtobufsE2E.StickerPackMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22767
+ 7, // 2: WAWebProtobufsE2E.StickerPackMessage.stickerPackOrigin:type_name -> WAWebProtobufsE2E.StickerPackMessage.StickerPackOrigin
22768
+ 8, // 3: WAWebProtobufsE2E.PlaceholderMessage.type:type_name -> WAWebProtobufsE2E.PlaceholderMessage.PlaceholderType
22769
+ 9, // 4: WAWebProtobufsE2E.BCallMessage.mediaType:type_name -> WAWebProtobufsE2E.BCallMessage.MediaType
22770
+ 10, // 5: WAWebProtobufsE2E.CallLogMessage.callOutcome:type_name -> WAWebProtobufsE2E.CallLogMessage.CallOutcome
22771
+ 11, // 6: WAWebProtobufsE2E.CallLogMessage.callType:type_name -> WAWebProtobufsE2E.CallLogMessage.CallType
22772
+ 188, // 7: WAWebProtobufsE2E.CallLogMessage.participants:type_name -> WAWebProtobufsE2E.CallLogMessage.CallParticipant
22773
+ 261, // 8: WAWebProtobufsE2E.ScheduledCallEditMessage.key:type_name -> WACommon.MessageKey
22774
+ 12, // 9: WAWebProtobufsE2E.ScheduledCallEditMessage.editType:type_name -> WAWebProtobufsE2E.ScheduledCallEditMessage.EditType
22775
+ 13, // 10: WAWebProtobufsE2E.ScheduledCallCreationMessage.callType:type_name -> WAWebProtobufsE2E.ScheduledCallCreationMessage.CallType
22776
+ 14, // 11: WAWebProtobufsE2E.EventResponseMessage.response:type_name -> WAWebProtobufsE2E.EventResponseMessage.EventResponseType
22777
+ 261, // 12: WAWebProtobufsE2E.PinInChatMessage.key:type_name -> WACommon.MessageKey
22778
+ 15, // 13: WAWebProtobufsE2E.PinInChatMessage.type:type_name -> WAWebProtobufsE2E.PinInChatMessage.Type
22779
+ 261, // 14: WAWebProtobufsE2E.StatusStickerInteractionMessage.key:type_name -> WACommon.MessageKey
22780
+ 16, // 15: WAWebProtobufsE2E.StatusStickerInteractionMessage.type:type_name -> WAWebProtobufsE2E.StatusStickerInteractionMessage.StatusStickerType
22781
+ 102, // 16: WAWebProtobufsE2E.ButtonsResponseMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22782
+ 17, // 17: WAWebProtobufsE2E.ButtonsResponseMessage.type:type_name -> WAWebProtobufsE2E.ButtonsResponseMessage.Type
22783
+ 161, // 18: WAWebProtobufsE2E.ButtonsMessage.documentMessage:type_name -> WAWebProtobufsE2E.DocumentMessage
22784
+ 101, // 19: WAWebProtobufsE2E.ButtonsMessage.imageMessage:type_name -> WAWebProtobufsE2E.ImageMessage
22785
+ 95, // 20: WAWebProtobufsE2E.ButtonsMessage.videoMessage:type_name -> WAWebProtobufsE2E.VideoMessage
22786
+ 165, // 21: WAWebProtobufsE2E.ButtonsMessage.locationMessage:type_name -> WAWebProtobufsE2E.LocationMessage
22787
+ 102, // 22: WAWebProtobufsE2E.ButtonsMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22788
+ 189, // 23: WAWebProtobufsE2E.ButtonsMessage.buttons:type_name -> WAWebProtobufsE2E.ButtonsMessage.Button
22789
+ 18, // 24: WAWebProtobufsE2E.ButtonsMessage.headerType:type_name -> WAWebProtobufsE2E.ButtonsMessage.HeaderType
22790
+ 261, // 25: WAWebProtobufsE2E.SecretEncryptedMessage.targetMessageKey:type_name -> WACommon.MessageKey
22791
+ 20, // 26: WAWebProtobufsE2E.SecretEncryptedMessage.secretEncType:type_name -> WAWebProtobufsE2E.SecretEncryptedMessage.SecretEncType
22792
+ 102, // 27: WAWebProtobufsE2E.GroupInviteMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22793
+ 21, // 28: WAWebProtobufsE2E.GroupInviteMessage.groupType:type_name -> WAWebProtobufsE2E.GroupInviteMessage.GroupType
22794
+ 193, // 29: WAWebProtobufsE2E.InteractiveResponseMessage.nativeFlowResponseMessage:type_name -> WAWebProtobufsE2E.InteractiveResponseMessage.NativeFlowResponseMessage
22795
+ 192, // 30: WAWebProtobufsE2E.InteractiveResponseMessage.body:type_name -> WAWebProtobufsE2E.InteractiveResponseMessage.Body
22796
+ 102, // 31: WAWebProtobufsE2E.InteractiveResponseMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22797
+ 195, // 32: WAWebProtobufsE2E.InteractiveMessage.shopStorefrontMessage:type_name -> WAWebProtobufsE2E.InteractiveMessage.ShopMessage
22798
+ 197, // 33: WAWebProtobufsE2E.InteractiveMessage.collectionMessage:type_name -> WAWebProtobufsE2E.InteractiveMessage.CollectionMessage
22799
+ 196, // 34: WAWebProtobufsE2E.InteractiveMessage.nativeFlowMessage:type_name -> WAWebProtobufsE2E.InteractiveMessage.NativeFlowMessage
22800
+ 194, // 35: WAWebProtobufsE2E.InteractiveMessage.carouselMessage:type_name -> WAWebProtobufsE2E.InteractiveMessage.CarouselMessage
22801
+ 200, // 36: WAWebProtobufsE2E.InteractiveMessage.header:type_name -> WAWebProtobufsE2E.InteractiveMessage.Header
22802
+ 199, // 37: WAWebProtobufsE2E.InteractiveMessage.body:type_name -> WAWebProtobufsE2E.InteractiveMessage.Body
22803
+ 198, // 38: WAWebProtobufsE2E.InteractiveMessage.footer:type_name -> WAWebProtobufsE2E.InteractiveMessage.Footer
22804
+ 102, // 39: WAWebProtobufsE2E.InteractiveMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22805
+ 183, // 40: WAWebProtobufsE2E.InteractiveMessage.urlTrackingMap:type_name -> WAWebProtobufsE2E.UrlTrackingMap
22806
+ 25, // 41: WAWebProtobufsE2E.ListResponseMessage.listType:type_name -> WAWebProtobufsE2E.ListResponseMessage.ListType
22807
+ 202, // 42: WAWebProtobufsE2E.ListResponseMessage.singleSelectReply:type_name -> WAWebProtobufsE2E.ListResponseMessage.SingleSelectReply
22808
+ 102, // 43: WAWebProtobufsE2E.ListResponseMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22809
+ 26, // 44: WAWebProtobufsE2E.ListMessage.listType:type_name -> WAWebProtobufsE2E.ListMessage.ListType
22810
+ 207, // 45: WAWebProtobufsE2E.ListMessage.sections:type_name -> WAWebProtobufsE2E.ListMessage.Section
22811
+ 203, // 46: WAWebProtobufsE2E.ListMessage.productListInfo:type_name -> WAWebProtobufsE2E.ListMessage.ProductListInfo
22812
+ 102, // 47: WAWebProtobufsE2E.ListMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22813
+ 28, // 48: WAWebProtobufsE2E.OrderMessage.status:type_name -> WAWebProtobufsE2E.OrderMessage.OrderStatus
22814
+ 27, // 49: WAWebProtobufsE2E.OrderMessage.surface:type_name -> WAWebProtobufsE2E.OrderMessage.OrderSurface
22815
+ 102, // 50: WAWebProtobufsE2E.OrderMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22816
+ 261, // 51: WAWebProtobufsE2E.OrderMessage.orderRequestMessageID:type_name -> WACommon.MessageKey
22817
+ 29, // 52: WAWebProtobufsE2E.StatusQuotedMessage.type:type_name -> WAWebProtobufsE2E.StatusQuotedMessage.StatusQuotedMessageType
22818
+ 261, // 53: WAWebProtobufsE2E.StatusQuotedMessage.originalStatusID:type_name -> WACommon.MessageKey
22819
+ 30, // 54: WAWebProtobufsE2E.PaymentInviteMessage.serviceType:type_name -> WAWebProtobufsE2E.PaymentInviteMessage.ServiceType
22820
+ 209, // 55: WAWebProtobufsE2E.HighlyStructuredMessage.localizableParams:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter
22747
22821
  139, // 56: WAWebProtobufsE2E.HighlyStructuredMessage.hydratedHsm:type_name -> WAWebProtobufsE2E.TemplateMessage
22748
22822
  2, // 57: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.peerDataOperationRequestType:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestType
22749
- 213, // 58: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.peerDataOperationResult:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult
22823
+ 214, // 58: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.peerDataOperationResult:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult
22750
22824
  2, // 59: WAWebProtobufsE2E.PeerDataOperationRequestMessage.peerDataOperationRequestType:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestType
22751
- 231, // 60: WAWebProtobufsE2E.PeerDataOperationRequestMessage.requestStickerReupload:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.RequestStickerReupload
22752
- 230, // 61: WAWebProtobufsE2E.PeerDataOperationRequestMessage.requestURLPreview:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.RequestUrlPreview
22753
- 229, // 62: WAWebProtobufsE2E.PeerDataOperationRequestMessage.historySyncOnDemandRequest:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.HistorySyncOnDemandRequest
22754
- 227, // 63: WAWebProtobufsE2E.PeerDataOperationRequestMessage.placeholderMessageResendRequest:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.PlaceholderMessageResendRequest
22755
- 228, // 64: WAWebProtobufsE2E.PeerDataOperationRequestMessage.fullHistorySyncOnDemandRequest:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.FullHistorySyncOnDemandRequest
22756
- 226, // 65: WAWebProtobufsE2E.PeerDataOperationRequestMessage.syncdCollectionFatalRecoveryRequest:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.SyncDCollectionFatalRecoveryRequest
22757
- 225, // 66: WAWebProtobufsE2E.PeerDataOperationRequestMessage.historySyncChunkRetryRequest:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.HistorySyncChunkRetryRequest
22758
- 224, // 67: WAWebProtobufsE2E.PeerDataOperationRequestMessage.galaxyFlowAction:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.GalaxyFlowAction
22759
- 35, // 68: WAWebProtobufsE2E.RequestWelcomeMessageMetadata.localChatState:type_name -> WAWebProtobufsE2E.RequestWelcomeMessageMetadata.LocalChatState
22760
- 260, // 69: WAWebProtobufsE2E.ProtocolMessage.key:type_name -> WACommon.MessageKey
22761
- 36, // 70: WAWebProtobufsE2E.ProtocolMessage.type:type_name -> WAWebProtobufsE2E.ProtocolMessage.Type
22825
+ 232, // 60: WAWebProtobufsE2E.PeerDataOperationRequestMessage.requestStickerReupload:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.RequestStickerReupload
22826
+ 231, // 61: WAWebProtobufsE2E.PeerDataOperationRequestMessage.requestURLPreview:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.RequestUrlPreview
22827
+ 230, // 62: WAWebProtobufsE2E.PeerDataOperationRequestMessage.historySyncOnDemandRequest:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.HistorySyncOnDemandRequest
22828
+ 228, // 63: WAWebProtobufsE2E.PeerDataOperationRequestMessage.placeholderMessageResendRequest:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.PlaceholderMessageResendRequest
22829
+ 229, // 64: WAWebProtobufsE2E.PeerDataOperationRequestMessage.fullHistorySyncOnDemandRequest:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.FullHistorySyncOnDemandRequest
22830
+ 227, // 65: WAWebProtobufsE2E.PeerDataOperationRequestMessage.syncdCollectionFatalRecoveryRequest:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.SyncDCollectionFatalRecoveryRequest
22831
+ 226, // 66: WAWebProtobufsE2E.PeerDataOperationRequestMessage.historySyncChunkRetryRequest:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.HistorySyncChunkRetryRequest
22832
+ 225, // 67: WAWebProtobufsE2E.PeerDataOperationRequestMessage.galaxyFlowAction:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.GalaxyFlowAction
22833
+ 36, // 68: WAWebProtobufsE2E.RequestWelcomeMessageMetadata.localChatState:type_name -> WAWebProtobufsE2E.RequestWelcomeMessageMetadata.LocalChatState
22834
+ 261, // 69: WAWebProtobufsE2E.ProtocolMessage.key:type_name -> WACommon.MessageKey
22835
+ 37, // 70: WAWebProtobufsE2E.ProtocolMessage.type:type_name -> WAWebProtobufsE2E.ProtocolMessage.Type
22762
22836
  156, // 71: WAWebProtobufsE2E.ProtocolMessage.historySyncNotification:type_name -> WAWebProtobufsE2E.HistorySyncNotification
22763
22837
  151, // 72: WAWebProtobufsE2E.ProtocolMessage.appStateSyncKeyShare:type_name -> WAWebProtobufsE2E.AppStateSyncKeyShare
22764
22838
  150, // 73: WAWebProtobufsE2E.ProtocolMessage.appStateSyncKeyRequest:type_name -> WAWebProtobufsE2E.AppStateSyncKeyRequest
22765
22839
  147, // 74: WAWebProtobufsE2E.ProtocolMessage.initialSecurityNotificationSettingSync:type_name -> WAWebProtobufsE2E.InitialSecurityNotificationSettingSync
22766
22840
  149, // 75: WAWebProtobufsE2E.ProtocolMessage.appStateFatalExceptionNotification:type_name -> WAWebProtobufsE2E.AppStateFatalExceptionNotification
22767
- 108, // 76: WAWebProtobufsE2E.ProtocolMessage.disappearingMode:type_name -> WAWebProtobufsE2E.DisappearingMode
22768
- 110, // 77: WAWebProtobufsE2E.ProtocolMessage.editedMessage:type_name -> WAWebProtobufsE2E.Message
22769
- 90, // 78: WAWebProtobufsE2E.ProtocolMessage.peerDataOperationRequestMessage:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage
22770
- 89, // 79: WAWebProtobufsE2E.ProtocolMessage.peerDataOperationRequestResponseMessage:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage
22771
- 261, // 80: WAWebProtobufsE2E.ProtocolMessage.botFeedbackMessage:type_name -> WAAICommon.BotFeedbackMessage
22772
- 91, // 81: WAWebProtobufsE2E.ProtocolMessage.requestWelcomeMessageMetadata:type_name -> WAWebProtobufsE2E.RequestWelcomeMessageMetadata
22773
- 180, // 82: WAWebProtobufsE2E.ProtocolMessage.mediaNotifyMessage:type_name -> WAWebProtobufsE2E.MediaNotifyMessage
22774
- 93, // 83: WAWebProtobufsE2E.ProtocolMessage.cloudApiThreadControlNotification:type_name -> WAWebProtobufsE2E.CloudAPIThreadControlNotification
22775
- 181, // 84: WAWebProtobufsE2E.ProtocolMessage.lidMigrationMappingSyncMessage:type_name -> WAWebProtobufsE2E.LIDMigrationMappingSyncMessage
22776
- 262, // 85: WAWebProtobufsE2E.ProtocolMessage.limitSharing:type_name -> WACommon.LimitSharing
22777
- 185, // 86: WAWebProtobufsE2E.ProtocolMessage.aiQueryFanout:type_name -> WAWebProtobufsE2E.AIQueryFanout
22778
- 183, // 87: WAWebProtobufsE2E.ProtocolMessage.memberLabel:type_name -> WAWebProtobufsE2E.MemberLabel
22779
- 37, // 88: WAWebProtobufsE2E.CloudAPIThreadControlNotification.status:type_name -> WAWebProtobufsE2E.CloudAPIThreadControlNotification.CloudAPIThreadControl
22780
- 232, // 89: WAWebProtobufsE2E.CloudAPIThreadControlNotification.notificationContent:type_name -> WAWebProtobufsE2E.CloudAPIThreadControlNotification.CloudAPIThreadControlNotificationContent
22781
- 105, // 90: WAWebProtobufsE2E.VideoMessage.interactiveAnnotations:type_name -> WAWebProtobufsE2E.InteractiveAnnotation
22782
- 101, // 91: WAWebProtobufsE2E.VideoMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22783
- 39, // 92: WAWebProtobufsE2E.VideoMessage.gifAttribution:type_name -> WAWebProtobufsE2E.VideoMessage.Attribution
22784
- 105, // 93: WAWebProtobufsE2E.VideoMessage.annotations:type_name -> WAWebProtobufsE2E.InteractiveAnnotation
22785
- 109, // 94: WAWebProtobufsE2E.VideoMessage.processedVideos:type_name -> WAWebProtobufsE2E.ProcessedVideo
22786
- 38, // 95: WAWebProtobufsE2E.VideoMessage.videoSourceType:type_name -> WAWebProtobufsE2E.VideoMessage.VideoSourceType
22841
+ 109, // 76: WAWebProtobufsE2E.ProtocolMessage.disappearingMode:type_name -> WAWebProtobufsE2E.DisappearingMode
22842
+ 111, // 77: WAWebProtobufsE2E.ProtocolMessage.editedMessage:type_name -> WAWebProtobufsE2E.Message
22843
+ 91, // 78: WAWebProtobufsE2E.ProtocolMessage.peerDataOperationRequestMessage:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage
22844
+ 90, // 79: WAWebProtobufsE2E.ProtocolMessage.peerDataOperationRequestResponseMessage:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage
22845
+ 262, // 80: WAWebProtobufsE2E.ProtocolMessage.botFeedbackMessage:type_name -> WAAICommon.BotFeedbackMessage
22846
+ 92, // 81: WAWebProtobufsE2E.ProtocolMessage.requestWelcomeMessageMetadata:type_name -> WAWebProtobufsE2E.RequestWelcomeMessageMetadata
22847
+ 181, // 82: WAWebProtobufsE2E.ProtocolMessage.mediaNotifyMessage:type_name -> WAWebProtobufsE2E.MediaNotifyMessage
22848
+ 94, // 83: WAWebProtobufsE2E.ProtocolMessage.cloudApiThreadControlNotification:type_name -> WAWebProtobufsE2E.CloudAPIThreadControlNotification
22849
+ 182, // 84: WAWebProtobufsE2E.ProtocolMessage.lidMigrationMappingSyncMessage:type_name -> WAWebProtobufsE2E.LIDMigrationMappingSyncMessage
22850
+ 263, // 85: WAWebProtobufsE2E.ProtocolMessage.limitSharing:type_name -> WACommon.LimitSharing
22851
+ 186, // 86: WAWebProtobufsE2E.ProtocolMessage.aiQueryFanout:type_name -> WAWebProtobufsE2E.AIQueryFanout
22852
+ 184, // 87: WAWebProtobufsE2E.ProtocolMessage.memberLabel:type_name -> WAWebProtobufsE2E.MemberLabel
22853
+ 38, // 88: WAWebProtobufsE2E.CloudAPIThreadControlNotification.status:type_name -> WAWebProtobufsE2E.CloudAPIThreadControlNotification.CloudAPIThreadControl
22854
+ 233, // 89: WAWebProtobufsE2E.CloudAPIThreadControlNotification.notificationContent:type_name -> WAWebProtobufsE2E.CloudAPIThreadControlNotification.CloudAPIThreadControlNotificationContent
22855
+ 106, // 90: WAWebProtobufsE2E.VideoMessage.interactiveAnnotations:type_name -> WAWebProtobufsE2E.InteractiveAnnotation
22856
+ 102, // 91: WAWebProtobufsE2E.VideoMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22857
+ 40, // 92: WAWebProtobufsE2E.VideoMessage.gifAttribution:type_name -> WAWebProtobufsE2E.VideoMessage.Attribution
22858
+ 106, // 93: WAWebProtobufsE2E.VideoMessage.annotations:type_name -> WAWebProtobufsE2E.InteractiveAnnotation
22859
+ 110, // 94: WAWebProtobufsE2E.VideoMessage.processedVideos:type_name -> WAWebProtobufsE2E.ProcessedVideo
22860
+ 39, // 95: WAWebProtobufsE2E.VideoMessage.videoSourceType:type_name -> WAWebProtobufsE2E.VideoMessage.VideoSourceType
22787
22861
  4, // 96: WAWebProtobufsE2E.VideoMessage.mediaKeyDomain:type_name -> WAWebProtobufsE2E.MediaKeyDomain
22788
- 42, // 97: WAWebProtobufsE2E.ExtendedTextMessage.font:type_name -> WAWebProtobufsE2E.ExtendedTextMessage.FontType
22789
- 41, // 98: WAWebProtobufsE2E.ExtendedTextMessage.previewType:type_name -> WAWebProtobufsE2E.ExtendedTextMessage.PreviewType
22790
- 101, // 99: WAWebProtobufsE2E.ExtendedTextMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22791
- 40, // 100: WAWebProtobufsE2E.ExtendedTextMessage.inviteLinkGroupType:type_name -> WAWebProtobufsE2E.ExtendedTextMessage.InviteLinkGroupType
22792
- 40, // 101: WAWebProtobufsE2E.ExtendedTextMessage.inviteLinkGroupTypeV2:type_name -> WAWebProtobufsE2E.ExtendedTextMessage.InviteLinkGroupType
22793
- 163, // 102: WAWebProtobufsE2E.ExtendedTextMessage.faviconMMSMetadata:type_name -> WAWebProtobufsE2E.MMSThumbnailMetadata
22794
- 96, // 103: WAWebProtobufsE2E.ExtendedTextMessage.linkPreviewMetadata:type_name -> WAWebProtobufsE2E.LinkPreviewMetadata
22795
- 97, // 104: WAWebProtobufsE2E.ExtendedTextMessage.paymentLinkMetadata:type_name -> WAWebProtobufsE2E.PaymentLinkMetadata
22796
- 167, // 105: WAWebProtobufsE2E.ExtendedTextMessage.endCardTiles:type_name -> WAWebProtobufsE2E.VideoEndCard
22797
- 170, // 106: WAWebProtobufsE2E.ExtendedTextMessage.musicMetadata:type_name -> WAWebProtobufsE2E.EmbeddedMusic
22798
- 162, // 107: WAWebProtobufsE2E.ExtendedTextMessage.paymentExtendedMetadata:type_name -> WAWebProtobufsE2E.PaymentExtendedMetadata
22799
- 97, // 108: WAWebProtobufsE2E.LinkPreviewMetadata.paymentLinkMetadata:type_name -> WAWebProtobufsE2E.PaymentLinkMetadata
22800
- 161, // 109: WAWebProtobufsE2E.LinkPreviewMetadata.urlMetadata:type_name -> WAWebProtobufsE2E.URLMetadata
22801
- 43, // 110: WAWebProtobufsE2E.LinkPreviewMetadata.socialMediaPostType:type_name -> WAWebProtobufsE2E.LinkPreviewMetadata.SocialMediaPostType
22802
- 170, // 111: WAWebProtobufsE2E.LinkPreviewMetadata.musicMetadata:type_name -> WAWebProtobufsE2E.EmbeddedMusic
22803
- 235, // 112: WAWebProtobufsE2E.PaymentLinkMetadata.button:type_name -> WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkButton
22804
- 233, // 113: WAWebProtobufsE2E.PaymentLinkMetadata.header:type_name -> WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkHeader
22805
- 234, // 114: WAWebProtobufsE2E.PaymentLinkMetadata.provider:type_name -> WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkProvider
22806
- 260, // 115: WAWebProtobufsE2E.StatusNotificationMessage.responseMessageKey:type_name -> WACommon.MessageKey
22807
- 260, // 116: WAWebProtobufsE2E.StatusNotificationMessage.originalMessageKey:type_name -> WACommon.MessageKey
22808
- 45, // 117: WAWebProtobufsE2E.StatusNotificationMessage.type:type_name -> WAWebProtobufsE2E.StatusNotificationMessage.StatusNotificationType
22809
- 46, // 118: WAWebProtobufsE2E.InvoiceMessage.attachmentType:type_name -> WAWebProtobufsE2E.InvoiceMessage.AttachmentType
22810
- 105, // 119: WAWebProtobufsE2E.ImageMessage.interactiveAnnotations:type_name -> WAWebProtobufsE2E.InteractiveAnnotation
22811
- 101, // 120: WAWebProtobufsE2E.ImageMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22812
- 105, // 121: WAWebProtobufsE2E.ImageMessage.annotations:type_name -> WAWebProtobufsE2E.InteractiveAnnotation
22813
- 47, // 122: WAWebProtobufsE2E.ImageMessage.imageSourceType:type_name -> WAWebProtobufsE2E.ImageMessage.ImageSourceType
22862
+ 43, // 97: WAWebProtobufsE2E.ExtendedTextMessage.font:type_name -> WAWebProtobufsE2E.ExtendedTextMessage.FontType
22863
+ 42, // 98: WAWebProtobufsE2E.ExtendedTextMessage.previewType:type_name -> WAWebProtobufsE2E.ExtendedTextMessage.PreviewType
22864
+ 102, // 99: WAWebProtobufsE2E.ExtendedTextMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22865
+ 41, // 100: WAWebProtobufsE2E.ExtendedTextMessage.inviteLinkGroupType:type_name -> WAWebProtobufsE2E.ExtendedTextMessage.InviteLinkGroupType
22866
+ 41, // 101: WAWebProtobufsE2E.ExtendedTextMessage.inviteLinkGroupTypeV2:type_name -> WAWebProtobufsE2E.ExtendedTextMessage.InviteLinkGroupType
22867
+ 164, // 102: WAWebProtobufsE2E.ExtendedTextMessage.faviconMMSMetadata:type_name -> WAWebProtobufsE2E.MMSThumbnailMetadata
22868
+ 97, // 103: WAWebProtobufsE2E.ExtendedTextMessage.linkPreviewMetadata:type_name -> WAWebProtobufsE2E.LinkPreviewMetadata
22869
+ 98, // 104: WAWebProtobufsE2E.ExtendedTextMessage.paymentLinkMetadata:type_name -> WAWebProtobufsE2E.PaymentLinkMetadata
22870
+ 168, // 105: WAWebProtobufsE2E.ExtendedTextMessage.endCardTiles:type_name -> WAWebProtobufsE2E.VideoEndCard
22871
+ 171, // 106: WAWebProtobufsE2E.ExtendedTextMessage.musicMetadata:type_name -> WAWebProtobufsE2E.EmbeddedMusic
22872
+ 163, // 107: WAWebProtobufsE2E.ExtendedTextMessage.paymentExtendedMetadata:type_name -> WAWebProtobufsE2E.PaymentExtendedMetadata
22873
+ 98, // 108: WAWebProtobufsE2E.LinkPreviewMetadata.paymentLinkMetadata:type_name -> WAWebProtobufsE2E.PaymentLinkMetadata
22874
+ 162, // 109: WAWebProtobufsE2E.LinkPreviewMetadata.urlMetadata:type_name -> WAWebProtobufsE2E.URLMetadata
22875
+ 44, // 110: WAWebProtobufsE2E.LinkPreviewMetadata.socialMediaPostType:type_name -> WAWebProtobufsE2E.LinkPreviewMetadata.SocialMediaPostType
22876
+ 171, // 111: WAWebProtobufsE2E.LinkPreviewMetadata.musicMetadata:type_name -> WAWebProtobufsE2E.EmbeddedMusic
22877
+ 236, // 112: WAWebProtobufsE2E.PaymentLinkMetadata.button:type_name -> WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkButton
22878
+ 234, // 113: WAWebProtobufsE2E.PaymentLinkMetadata.header:type_name -> WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkHeader
22879
+ 235, // 114: WAWebProtobufsE2E.PaymentLinkMetadata.provider:type_name -> WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkProvider
22880
+ 261, // 115: WAWebProtobufsE2E.StatusNotificationMessage.responseMessageKey:type_name -> WACommon.MessageKey
22881
+ 261, // 116: WAWebProtobufsE2E.StatusNotificationMessage.originalMessageKey:type_name -> WACommon.MessageKey
22882
+ 46, // 117: WAWebProtobufsE2E.StatusNotificationMessage.type:type_name -> WAWebProtobufsE2E.StatusNotificationMessage.StatusNotificationType
22883
+ 47, // 118: WAWebProtobufsE2E.InvoiceMessage.attachmentType:type_name -> WAWebProtobufsE2E.InvoiceMessage.AttachmentType
22884
+ 106, // 119: WAWebProtobufsE2E.ImageMessage.interactiveAnnotations:type_name -> WAWebProtobufsE2E.InteractiveAnnotation
22885
+ 102, // 120: WAWebProtobufsE2E.ImageMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22886
+ 106, // 121: WAWebProtobufsE2E.ImageMessage.annotations:type_name -> WAWebProtobufsE2E.InteractiveAnnotation
22887
+ 48, // 122: WAWebProtobufsE2E.ImageMessage.imageSourceType:type_name -> WAWebProtobufsE2E.ImageMessage.ImageSourceType
22814
22888
  4, // 123: WAWebProtobufsE2E.ImageMessage.mediaKeyDomain:type_name -> WAWebProtobufsE2E.MediaKeyDomain
22815
- 110, // 124: WAWebProtobufsE2E.ContextInfo.quotedMessage:type_name -> WAWebProtobufsE2E.Message
22816
- 240, // 125: WAWebProtobufsE2E.ContextInfo.quotedAd:type_name -> WAWebProtobufsE2E.ContextInfo.AdReplyInfo
22817
- 260, // 126: WAWebProtobufsE2E.ContextInfo.placeholderKey:type_name -> WACommon.MessageKey
22818
- 239, // 127: WAWebProtobufsE2E.ContextInfo.externalAdReply:type_name -> WAWebProtobufsE2E.ContextInfo.ExternalAdReplyInfo
22819
- 108, // 128: WAWebProtobufsE2E.ContextInfo.disappearingMode:type_name -> WAWebProtobufsE2E.DisappearingMode
22820
- 177, // 129: WAWebProtobufsE2E.ContextInfo.actionLink:type_name -> WAWebProtobufsE2E.ActionLink
22821
- 178, // 130: WAWebProtobufsE2E.ContextInfo.groupMentions:type_name -> WAWebProtobufsE2E.GroupMention
22822
- 243, // 131: WAWebProtobufsE2E.ContextInfo.utm:type_name -> WAWebProtobufsE2E.ContextInfo.UTMInfo
22823
- 238, // 132: WAWebProtobufsE2E.ContextInfo.forwardedNewsletterMessageInfo:type_name -> WAWebProtobufsE2E.ContextInfo.ForwardedNewsletterMessageInfo
22824
- 244, // 133: WAWebProtobufsE2E.ContextInfo.businessMessageForwardInfo:type_name -> WAWebProtobufsE2E.ContextInfo.BusinessMessageForwardInfo
22825
- 237, // 134: WAWebProtobufsE2E.ContextInfo.dataSharingContext:type_name -> WAWebProtobufsE2E.ContextInfo.DataSharingContext
22826
- 241, // 135: WAWebProtobufsE2E.ContextInfo.featureEligibilities:type_name -> WAWebProtobufsE2E.ContextInfo.FeatureEligibilities
22827
- 263, // 136: WAWebProtobufsE2E.ContextInfo.forwardedAiBotMessageInfo:type_name -> WAAICommon.ForwardedAIBotMessageInfo
22828
- 52, // 137: WAWebProtobufsE2E.ContextInfo.statusAttributionType:type_name -> WAWebProtobufsE2E.ContextInfo.StatusAttributionType
22829
- 182, // 138: WAWebProtobufsE2E.ContextInfo.urlTrackingMap:type_name -> WAWebProtobufsE2E.UrlTrackingMap
22830
- 51, // 139: WAWebProtobufsE2E.ContextInfo.pairedMediaType:type_name -> WAWebProtobufsE2E.ContextInfo.PairedMediaType
22831
- 183, // 140: WAWebProtobufsE2E.ContextInfo.memberLabel:type_name -> WAWebProtobufsE2E.MemberLabel
22832
- 50, // 141: WAWebProtobufsE2E.ContextInfo.statusSourceType:type_name -> WAWebProtobufsE2E.ContextInfo.StatusSourceType
22833
- 264, // 142: WAWebProtobufsE2E.ContextInfo.statusAttributions:type_name -> WAStatusAttributions.StatusAttribution
22834
- 49, // 143: WAWebProtobufsE2E.ContextInfo.forwardOrigin:type_name -> WAWebProtobufsE2E.ContextInfo.ForwardOrigin
22835
- 242, // 144: WAWebProtobufsE2E.ContextInfo.questionReplyQuotedMessage:type_name -> WAWebProtobufsE2E.ContextInfo.QuestionReplyQuotedMessage
22836
- 236, // 145: WAWebProtobufsE2E.ContextInfo.statusAudienceMetadata:type_name -> WAWebProtobufsE2E.ContextInfo.StatusAudienceMetadata
22837
- 48, // 146: WAWebProtobufsE2E.ContextInfo.quotedType:type_name -> WAWebProtobufsE2E.ContextInfo.QuotedType
22838
- 265, // 147: WAWebProtobufsE2E.ContextInfo.botMessageSharingInfo:type_name -> WAAICommon.BotMessageSharingInfo
22839
- 59, // 148: WAWebProtobufsE2E.MessageAssociation.associationType:type_name -> WAWebProtobufsE2E.MessageAssociation.AssociationType
22840
- 260, // 149: WAWebProtobufsE2E.MessageAssociation.parentMessageKey:type_name -> WACommon.MessageKey
22841
- 60, // 150: WAWebProtobufsE2E.ThreadID.threadType:type_name -> WAWebProtobufsE2E.ThreadID.ThreadType
22842
- 260, // 151: WAWebProtobufsE2E.ThreadID.threadKey:type_name -> WACommon.MessageKey
22843
- 168, // 152: WAWebProtobufsE2E.MessageContextInfo.deviceListMetadata:type_name -> WAWebProtobufsE2E.DeviceListMetadata
22844
- 266, // 153: WAWebProtobufsE2E.MessageContextInfo.botMetadata:type_name -> WAAICommon.BotMetadata
22845
- 61, // 154: WAWebProtobufsE2E.MessageContextInfo.messageAddOnExpiryType:type_name -> WAWebProtobufsE2E.MessageContextInfo.MessageAddonExpiryType
22846
- 102, // 155: WAWebProtobufsE2E.MessageContextInfo.messageAssociation:type_name -> WAWebProtobufsE2E.MessageAssociation
22847
- 262, // 156: WAWebProtobufsE2E.MessageContextInfo.limitSharing:type_name -> WACommon.LimitSharing
22848
- 262, // 157: WAWebProtobufsE2E.MessageContextInfo.limitSharingV2:type_name -> WACommon.LimitSharing
22849
- 103, // 158: WAWebProtobufsE2E.MessageContextInfo.threadID:type_name -> WAWebProtobufsE2E.ThreadID
22850
- 174, // 159: WAWebProtobufsE2E.InteractiveAnnotation.location:type_name -> WAWebProtobufsE2E.Location
22851
- 238, // 160: WAWebProtobufsE2E.InteractiveAnnotation.newsletter:type_name -> WAWebProtobufsE2E.ContextInfo.ForwardedNewsletterMessageInfo
22852
- 172, // 161: WAWebProtobufsE2E.InteractiveAnnotation.tapAction:type_name -> WAWebProtobufsE2E.TapLinkAction
22853
- 173, // 162: WAWebProtobufsE2E.InteractiveAnnotation.polygonVertices:type_name -> WAWebProtobufsE2E.Point
22854
- 171, // 163: WAWebProtobufsE2E.InteractiveAnnotation.embeddedContent:type_name -> WAWebProtobufsE2E.EmbeddedContent
22855
- 62, // 164: WAWebProtobufsE2E.InteractiveAnnotation.statusLinkType:type_name -> WAWebProtobufsE2E.InteractiveAnnotation.StatusLinkType
22856
- 248, // 165: WAWebProtobufsE2E.HydratedTemplateButton.quickReplyButton:type_name -> WAWebProtobufsE2E.HydratedTemplateButton.HydratedQuickReplyButton
22857
- 246, // 166: WAWebProtobufsE2E.HydratedTemplateButton.urlButton:type_name -> WAWebProtobufsE2E.HydratedTemplateButton.HydratedURLButton
22858
- 247, // 167: WAWebProtobufsE2E.HydratedTemplateButton.callButton:type_name -> WAWebProtobufsE2E.HydratedTemplateButton.HydratedCallButton
22859
- 249, // 168: WAWebProtobufsE2E.PaymentBackground.mediaData:type_name -> WAWebProtobufsE2E.PaymentBackground.MediaData
22860
- 64, // 169: WAWebProtobufsE2E.PaymentBackground.type:type_name -> WAWebProtobufsE2E.PaymentBackground.Type
22861
- 66, // 170: WAWebProtobufsE2E.DisappearingMode.initiator:type_name -> WAWebProtobufsE2E.DisappearingMode.Initiator
22862
- 65, // 171: WAWebProtobufsE2E.DisappearingMode.trigger:type_name -> WAWebProtobufsE2E.DisappearingMode.Trigger
22863
- 67, // 172: WAWebProtobufsE2E.ProcessedVideo.quality:type_name -> WAWebProtobufsE2E.ProcessedVideo.VideoQuality
22864
- 166, // 173: WAWebProtobufsE2E.Message.senderKeyDistributionMessage:type_name -> WAWebProtobufsE2E.SenderKeyDistributionMessage
22865
- 100, // 174: WAWebProtobufsE2E.Message.imageMessage:type_name -> WAWebProtobufsE2E.ImageMessage
22866
- 165, // 175: WAWebProtobufsE2E.Message.contactMessage:type_name -> WAWebProtobufsE2E.ContactMessage
22867
- 164, // 176: WAWebProtobufsE2E.Message.locationMessage:type_name -> WAWebProtobufsE2E.LocationMessage
22868
- 95, // 177: WAWebProtobufsE2E.Message.extendedTextMessage:type_name -> WAWebProtobufsE2E.ExtendedTextMessage
22869
- 160, // 178: WAWebProtobufsE2E.Message.documentMessage:type_name -> WAWebProtobufsE2E.DocumentMessage
22870
- 159, // 179: WAWebProtobufsE2E.Message.audioMessage:type_name -> WAWebProtobufsE2E.AudioMessage
22871
- 94, // 180: WAWebProtobufsE2E.Message.videoMessage:type_name -> WAWebProtobufsE2E.VideoMessage
22872
- 158, // 181: WAWebProtobufsE2E.Message.call:type_name -> WAWebProtobufsE2E.Call
22873
- 157, // 182: WAWebProtobufsE2E.Message.chat:type_name -> WAWebProtobufsE2E.Chat
22874
- 92, // 183: WAWebProtobufsE2E.Message.protocolMessage:type_name -> WAWebProtobufsE2E.ProtocolMessage
22875
- 146, // 184: WAWebProtobufsE2E.Message.contactsArrayMessage:type_name -> WAWebProtobufsE2E.ContactsArrayMessage
22876
- 88, // 185: WAWebProtobufsE2E.Message.highlyStructuredMessage:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
22877
- 166, // 186: WAWebProtobufsE2E.Message.fastRatchetKeySenderKeyDistributionMessage:type_name -> WAWebProtobufsE2E.SenderKeyDistributionMessage
22878
- 145, // 187: WAWebProtobufsE2E.Message.sendPaymentMessage:type_name -> WAWebProtobufsE2E.SendPaymentMessage
22879
- 141, // 188: WAWebProtobufsE2E.Message.liveLocationMessage:type_name -> WAWebProtobufsE2E.LiveLocationMessage
22880
- 144, // 189: WAWebProtobufsE2E.Message.requestPaymentMessage:type_name -> WAWebProtobufsE2E.RequestPaymentMessage
22881
- 143, // 190: WAWebProtobufsE2E.Message.declinePaymentRequestMessage:type_name -> WAWebProtobufsE2E.DeclinePaymentRequestMessage
22882
- 142, // 191: WAWebProtobufsE2E.Message.cancelPaymentRequestMessage:type_name -> WAWebProtobufsE2E.CancelPaymentRequestMessage
22883
- 139, // 192: WAWebProtobufsE2E.Message.templateMessage:type_name -> WAWebProtobufsE2E.TemplateMessage
22884
- 140, // 193: WAWebProtobufsE2E.Message.stickerMessage:type_name -> WAWebProtobufsE2E.StickerMessage
22885
- 80, // 194: WAWebProtobufsE2E.Message.groupInviteMessage:type_name -> WAWebProtobufsE2E.GroupInviteMessage
22886
- 138, // 195: WAWebProtobufsE2E.Message.templateButtonReplyMessage:type_name -> WAWebProtobufsE2E.TemplateButtonReplyMessage
22887
- 137, // 196: WAWebProtobufsE2E.Message.productMessage:type_name -> WAWebProtobufsE2E.ProductMessage
22888
- 132, // 197: WAWebProtobufsE2E.Message.deviceSentMessage:type_name -> WAWebProtobufsE2E.DeviceSentMessage
22889
- 104, // 198: WAWebProtobufsE2E.Message.messageContextInfo:type_name -> WAWebProtobufsE2E.MessageContextInfo
22890
- 84, // 199: WAWebProtobufsE2E.Message.listMessage:type_name -> WAWebProtobufsE2E.ListMessage
22891
- 131, // 200: WAWebProtobufsE2E.Message.viewOnceMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22892
- 85, // 201: WAWebProtobufsE2E.Message.orderMessage:type_name -> WAWebProtobufsE2E.OrderMessage
22893
- 83, // 202: WAWebProtobufsE2E.Message.listResponseMessage:type_name -> WAWebProtobufsE2E.ListResponseMessage
22894
- 131, // 203: WAWebProtobufsE2E.Message.ephemeralMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22895
- 99, // 204: WAWebProtobufsE2E.Message.invoiceMessage:type_name -> WAWebProtobufsE2E.InvoiceMessage
22896
- 78, // 205: WAWebProtobufsE2E.Message.buttonsMessage:type_name -> WAWebProtobufsE2E.ButtonsMessage
22897
- 77, // 206: WAWebProtobufsE2E.Message.buttonsResponseMessage:type_name -> WAWebProtobufsE2E.ButtonsResponseMessage
22898
- 87, // 207: WAWebProtobufsE2E.Message.paymentInviteMessage:type_name -> WAWebProtobufsE2E.PaymentInviteMessage
22899
- 82, // 208: WAWebProtobufsE2E.Message.interactiveMessage:type_name -> WAWebProtobufsE2E.InteractiveMessage
22900
- 130, // 209: WAWebProtobufsE2E.Message.reactionMessage:type_name -> WAWebProtobufsE2E.ReactionMessage
22901
- 129, // 210: WAWebProtobufsE2E.Message.stickerSyncRmrMessage:type_name -> WAWebProtobufsE2E.StickerSyncRMRMessage
22902
- 81, // 211: WAWebProtobufsE2E.Message.interactiveResponseMessage:type_name -> WAWebProtobufsE2E.InteractiveResponseMessage
22903
- 128, // 212: WAWebProtobufsE2E.Message.pollCreationMessage:type_name -> WAWebProtobufsE2E.PollCreationMessage
22904
- 127, // 213: WAWebProtobufsE2E.Message.pollUpdateMessage:type_name -> WAWebProtobufsE2E.PollUpdateMessage
22905
- 120, // 214: WAWebProtobufsE2E.Message.keepInChatMessage:type_name -> WAWebProtobufsE2E.KeepInChatMessage
22906
- 131, // 215: WAWebProtobufsE2E.Message.documentWithCaptionMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22907
- 134, // 216: WAWebProtobufsE2E.Message.requestPhoneNumberMessage:type_name -> WAWebProtobufsE2E.RequestPhoneNumberMessage
22908
- 131, // 217: WAWebProtobufsE2E.Message.viewOnceMessageV2:type_name -> WAWebProtobufsE2E.FutureProofMessage
22909
- 119, // 218: WAWebProtobufsE2E.Message.encReactionMessage:type_name -> WAWebProtobufsE2E.EncReactionMessage
22910
- 131, // 219: WAWebProtobufsE2E.Message.editedMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22911
- 131, // 220: WAWebProtobufsE2E.Message.viewOnceMessageV2Extension:type_name -> WAWebProtobufsE2E.FutureProofMessage
22912
- 128, // 221: WAWebProtobufsE2E.Message.pollCreationMessageV2:type_name -> WAWebProtobufsE2E.PollCreationMessage
22913
- 73, // 222: WAWebProtobufsE2E.Message.scheduledCallCreationMessage:type_name -> WAWebProtobufsE2E.ScheduledCallCreationMessage
22914
- 131, // 223: WAWebProtobufsE2E.Message.groupMentionedMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22915
- 75, // 224: WAWebProtobufsE2E.Message.pinInChatMessage:type_name -> WAWebProtobufsE2E.PinInChatMessage
22916
- 128, // 225: WAWebProtobufsE2E.Message.pollCreationMessageV3:type_name -> WAWebProtobufsE2E.PollCreationMessage
22917
- 72, // 226: WAWebProtobufsE2E.Message.scheduledCallEditMessage:type_name -> WAWebProtobufsE2E.ScheduledCallEditMessage
22918
- 94, // 227: WAWebProtobufsE2E.Message.ptvMessage:type_name -> WAWebProtobufsE2E.VideoMessage
22919
- 131, // 228: WAWebProtobufsE2E.Message.botInvokeMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22920
- 71, // 229: WAWebProtobufsE2E.Message.callLogMesssage:type_name -> WAWebProtobufsE2E.CallLogMessage
22921
- 114, // 230: WAWebProtobufsE2E.Message.messageHistoryBundle:type_name -> WAWebProtobufsE2E.MessageHistoryBundle
22922
- 118, // 231: WAWebProtobufsE2E.Message.encCommentMessage:type_name -> WAWebProtobufsE2E.EncCommentMessage
22923
- 70, // 232: WAWebProtobufsE2E.Message.bcallMessage:type_name -> WAWebProtobufsE2E.BCallMessage
22924
- 131, // 233: WAWebProtobufsE2E.Message.lottieStickerMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22925
- 116, // 234: WAWebProtobufsE2E.Message.eventMessage:type_name -> WAWebProtobufsE2E.EventMessage
22926
- 115, // 235: WAWebProtobufsE2E.Message.encEventResponseMessage:type_name -> WAWebProtobufsE2E.EncEventResponseMessage
22927
- 117, // 236: WAWebProtobufsE2E.Message.commentMessage:type_name -> WAWebProtobufsE2E.CommentMessage
22928
- 136, // 237: WAWebProtobufsE2E.Message.newsletterAdminInviteMessage:type_name -> WAWebProtobufsE2E.NewsletterAdminInviteMessage
22929
- 69, // 238: WAWebProtobufsE2E.Message.placeholderMessage:type_name -> WAWebProtobufsE2E.PlaceholderMessage
22930
- 79, // 239: WAWebProtobufsE2E.Message.secretEncryptedMessage:type_name -> WAWebProtobufsE2E.SecretEncryptedMessage
22931
- 111, // 240: WAWebProtobufsE2E.Message.albumMessage:type_name -> WAWebProtobufsE2E.AlbumMessage
22932
- 131, // 241: WAWebProtobufsE2E.Message.eventCoverImage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22933
- 68, // 242: WAWebProtobufsE2E.Message.stickerPackMessage:type_name -> WAWebProtobufsE2E.StickerPackMessage
22934
- 131, // 243: WAWebProtobufsE2E.Message.statusMentionMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22935
- 123, // 244: WAWebProtobufsE2E.Message.pollResultSnapshotMessage:type_name -> WAWebProtobufsE2E.PollResultSnapshotMessage
22936
- 131, // 245: WAWebProtobufsE2E.Message.pollCreationOptionImageMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22937
- 131, // 246: WAWebProtobufsE2E.Message.associatedChildMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22938
- 131, // 247: WAWebProtobufsE2E.Message.groupStatusMentionMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22939
- 131, // 248: WAWebProtobufsE2E.Message.pollCreationMessageV4:type_name -> WAWebProtobufsE2E.FutureProofMessage
22940
- 131, // 249: WAWebProtobufsE2E.Message.statusAddYours:type_name -> WAWebProtobufsE2E.FutureProofMessage
22941
- 131, // 250: WAWebProtobufsE2E.Message.groupStatusMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22942
- 184, // 251: WAWebProtobufsE2E.Message.richResponseMessage:type_name -> WAWebProtobufsE2E.AIRichResponseMessage
22943
- 98, // 252: WAWebProtobufsE2E.Message.statusNotificationMessage:type_name -> WAWebProtobufsE2E.StatusNotificationMessage
22944
- 131, // 253: WAWebProtobufsE2E.Message.limitSharingMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22945
- 131, // 254: WAWebProtobufsE2E.Message.botTaskMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22946
- 131, // 255: WAWebProtobufsE2E.Message.questionMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22947
- 113, // 256: WAWebProtobufsE2E.Message.messageHistoryNotice:type_name -> WAWebProtobufsE2E.MessageHistoryNotice
22948
- 131, // 257: WAWebProtobufsE2E.Message.groupStatusMessageV2:type_name -> WAWebProtobufsE2E.FutureProofMessage
22949
- 131, // 258: WAWebProtobufsE2E.Message.botForwardedMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22950
- 122, // 259: WAWebProtobufsE2E.Message.statusQuestionAnswerMessage:type_name -> WAWebProtobufsE2E.StatusQuestionAnswerMessage
22951
- 131, // 260: WAWebProtobufsE2E.Message.questionReplyMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22952
- 121, // 261: WAWebProtobufsE2E.Message.questionResponseMessage:type_name -> WAWebProtobufsE2E.QuestionResponseMessage
22953
- 86, // 262: WAWebProtobufsE2E.Message.statusQuotedMessage:type_name -> WAWebProtobufsE2E.StatusQuotedMessage
22954
- 76, // 263: WAWebProtobufsE2E.Message.statusStickerInteractionMessage:type_name -> WAWebProtobufsE2E.StatusStickerInteractionMessage
22955
- 128, // 264: WAWebProtobufsE2E.Message.pollCreationMessageV5:type_name -> WAWebProtobufsE2E.PollCreationMessage
22956
- 123, // 265: WAWebProtobufsE2E.Message.pollResultSnapshotMessageV2:type_name -> WAWebProtobufsE2E.PollResultSnapshotMessage
22889
+ 111, // 124: WAWebProtobufsE2E.ContextInfo.quotedMessage:type_name -> WAWebProtobufsE2E.Message
22890
+ 241, // 125: WAWebProtobufsE2E.ContextInfo.quotedAd:type_name -> WAWebProtobufsE2E.ContextInfo.AdReplyInfo
22891
+ 261, // 126: WAWebProtobufsE2E.ContextInfo.placeholderKey:type_name -> WACommon.MessageKey
22892
+ 240, // 127: WAWebProtobufsE2E.ContextInfo.externalAdReply:type_name -> WAWebProtobufsE2E.ContextInfo.ExternalAdReplyInfo
22893
+ 109, // 128: WAWebProtobufsE2E.ContextInfo.disappearingMode:type_name -> WAWebProtobufsE2E.DisappearingMode
22894
+ 178, // 129: WAWebProtobufsE2E.ContextInfo.actionLink:type_name -> WAWebProtobufsE2E.ActionLink
22895
+ 179, // 130: WAWebProtobufsE2E.ContextInfo.groupMentions:type_name -> WAWebProtobufsE2E.GroupMention
22896
+ 244, // 131: WAWebProtobufsE2E.ContextInfo.utm:type_name -> WAWebProtobufsE2E.ContextInfo.UTMInfo
22897
+ 239, // 132: WAWebProtobufsE2E.ContextInfo.forwardedNewsletterMessageInfo:type_name -> WAWebProtobufsE2E.ContextInfo.ForwardedNewsletterMessageInfo
22898
+ 245, // 133: WAWebProtobufsE2E.ContextInfo.businessMessageForwardInfo:type_name -> WAWebProtobufsE2E.ContextInfo.BusinessMessageForwardInfo
22899
+ 238, // 134: WAWebProtobufsE2E.ContextInfo.dataSharingContext:type_name -> WAWebProtobufsE2E.ContextInfo.DataSharingContext
22900
+ 242, // 135: WAWebProtobufsE2E.ContextInfo.featureEligibilities:type_name -> WAWebProtobufsE2E.ContextInfo.FeatureEligibilities
22901
+ 264, // 136: WAWebProtobufsE2E.ContextInfo.forwardedAiBotMessageInfo:type_name -> WAAICommon.ForwardedAIBotMessageInfo
22902
+ 53, // 137: WAWebProtobufsE2E.ContextInfo.statusAttributionType:type_name -> WAWebProtobufsE2E.ContextInfo.StatusAttributionType
22903
+ 183, // 138: WAWebProtobufsE2E.ContextInfo.urlTrackingMap:type_name -> WAWebProtobufsE2E.UrlTrackingMap
22904
+ 52, // 139: WAWebProtobufsE2E.ContextInfo.pairedMediaType:type_name -> WAWebProtobufsE2E.ContextInfo.PairedMediaType
22905
+ 184, // 140: WAWebProtobufsE2E.ContextInfo.memberLabel:type_name -> WAWebProtobufsE2E.MemberLabel
22906
+ 51, // 141: WAWebProtobufsE2E.ContextInfo.statusSourceType:type_name -> WAWebProtobufsE2E.ContextInfo.StatusSourceType
22907
+ 265, // 142: WAWebProtobufsE2E.ContextInfo.statusAttributions:type_name -> WAStatusAttributions.StatusAttribution
22908
+ 50, // 143: WAWebProtobufsE2E.ContextInfo.forwardOrigin:type_name -> WAWebProtobufsE2E.ContextInfo.ForwardOrigin
22909
+ 243, // 144: WAWebProtobufsE2E.ContextInfo.questionReplyQuotedMessage:type_name -> WAWebProtobufsE2E.ContextInfo.QuestionReplyQuotedMessage
22910
+ 237, // 145: WAWebProtobufsE2E.ContextInfo.statusAudienceMetadata:type_name -> WAWebProtobufsE2E.ContextInfo.StatusAudienceMetadata
22911
+ 49, // 146: WAWebProtobufsE2E.ContextInfo.quotedType:type_name -> WAWebProtobufsE2E.ContextInfo.QuotedType
22912
+ 266, // 147: WAWebProtobufsE2E.ContextInfo.botMessageSharingInfo:type_name -> WAAICommon.BotMessageSharingInfo
22913
+ 60, // 148: WAWebProtobufsE2E.MessageAssociation.associationType:type_name -> WAWebProtobufsE2E.MessageAssociation.AssociationType
22914
+ 261, // 149: WAWebProtobufsE2E.MessageAssociation.parentMessageKey:type_name -> WACommon.MessageKey
22915
+ 61, // 150: WAWebProtobufsE2E.ThreadID.threadType:type_name -> WAWebProtobufsE2E.ThreadID.ThreadType
22916
+ 261, // 151: WAWebProtobufsE2E.ThreadID.threadKey:type_name -> WACommon.MessageKey
22917
+ 169, // 152: WAWebProtobufsE2E.MessageContextInfo.deviceListMetadata:type_name -> WAWebProtobufsE2E.DeviceListMetadata
22918
+ 267, // 153: WAWebProtobufsE2E.MessageContextInfo.botMetadata:type_name -> WAAICommon.BotMetadata
22919
+ 62, // 154: WAWebProtobufsE2E.MessageContextInfo.messageAddOnExpiryType:type_name -> WAWebProtobufsE2E.MessageContextInfo.MessageAddonExpiryType
22920
+ 103, // 155: WAWebProtobufsE2E.MessageContextInfo.messageAssociation:type_name -> WAWebProtobufsE2E.MessageAssociation
22921
+ 263, // 156: WAWebProtobufsE2E.MessageContextInfo.limitSharing:type_name -> WACommon.LimitSharing
22922
+ 263, // 157: WAWebProtobufsE2E.MessageContextInfo.limitSharingV2:type_name -> WACommon.LimitSharing
22923
+ 104, // 158: WAWebProtobufsE2E.MessageContextInfo.threadID:type_name -> WAWebProtobufsE2E.ThreadID
22924
+ 5, // 159: WAWebProtobufsE2E.MessageContextInfo.weblinkRenderConfig:type_name -> WAWebProtobufsE2E.WebLinkRenderConfig
22925
+ 175, // 160: WAWebProtobufsE2E.InteractiveAnnotation.location:type_name -> WAWebProtobufsE2E.Location
22926
+ 239, // 161: WAWebProtobufsE2E.InteractiveAnnotation.newsletter:type_name -> WAWebProtobufsE2E.ContextInfo.ForwardedNewsletterMessageInfo
22927
+ 173, // 162: WAWebProtobufsE2E.InteractiveAnnotation.tapAction:type_name -> WAWebProtobufsE2E.TapLinkAction
22928
+ 174, // 163: WAWebProtobufsE2E.InteractiveAnnotation.polygonVertices:type_name -> WAWebProtobufsE2E.Point
22929
+ 172, // 164: WAWebProtobufsE2E.InteractiveAnnotation.embeddedContent:type_name -> WAWebProtobufsE2E.EmbeddedContent
22930
+ 63, // 165: WAWebProtobufsE2E.InteractiveAnnotation.statusLinkType:type_name -> WAWebProtobufsE2E.InteractiveAnnotation.StatusLinkType
22931
+ 249, // 166: WAWebProtobufsE2E.HydratedTemplateButton.quickReplyButton:type_name -> WAWebProtobufsE2E.HydratedTemplateButton.HydratedQuickReplyButton
22932
+ 247, // 167: WAWebProtobufsE2E.HydratedTemplateButton.urlButton:type_name -> WAWebProtobufsE2E.HydratedTemplateButton.HydratedURLButton
22933
+ 248, // 168: WAWebProtobufsE2E.HydratedTemplateButton.callButton:type_name -> WAWebProtobufsE2E.HydratedTemplateButton.HydratedCallButton
22934
+ 250, // 169: WAWebProtobufsE2E.PaymentBackground.mediaData:type_name -> WAWebProtobufsE2E.PaymentBackground.MediaData
22935
+ 65, // 170: WAWebProtobufsE2E.PaymentBackground.type:type_name -> WAWebProtobufsE2E.PaymentBackground.Type
22936
+ 67, // 171: WAWebProtobufsE2E.DisappearingMode.initiator:type_name -> WAWebProtobufsE2E.DisappearingMode.Initiator
22937
+ 66, // 172: WAWebProtobufsE2E.DisappearingMode.trigger:type_name -> WAWebProtobufsE2E.DisappearingMode.Trigger
22938
+ 68, // 173: WAWebProtobufsE2E.ProcessedVideo.quality:type_name -> WAWebProtobufsE2E.ProcessedVideo.VideoQuality
22939
+ 167, // 174: WAWebProtobufsE2E.Message.senderKeyDistributionMessage:type_name -> WAWebProtobufsE2E.SenderKeyDistributionMessage
22940
+ 101, // 175: WAWebProtobufsE2E.Message.imageMessage:type_name -> WAWebProtobufsE2E.ImageMessage
22941
+ 166, // 176: WAWebProtobufsE2E.Message.contactMessage:type_name -> WAWebProtobufsE2E.ContactMessage
22942
+ 165, // 177: WAWebProtobufsE2E.Message.locationMessage:type_name -> WAWebProtobufsE2E.LocationMessage
22943
+ 96, // 178: WAWebProtobufsE2E.Message.extendedTextMessage:type_name -> WAWebProtobufsE2E.ExtendedTextMessage
22944
+ 161, // 179: WAWebProtobufsE2E.Message.documentMessage:type_name -> WAWebProtobufsE2E.DocumentMessage
22945
+ 160, // 180: WAWebProtobufsE2E.Message.audioMessage:type_name -> WAWebProtobufsE2E.AudioMessage
22946
+ 95, // 181: WAWebProtobufsE2E.Message.videoMessage:type_name -> WAWebProtobufsE2E.VideoMessage
22947
+ 159, // 182: WAWebProtobufsE2E.Message.call:type_name -> WAWebProtobufsE2E.Call
22948
+ 158, // 183: WAWebProtobufsE2E.Message.chat:type_name -> WAWebProtobufsE2E.Chat
22949
+ 93, // 184: WAWebProtobufsE2E.Message.protocolMessage:type_name -> WAWebProtobufsE2E.ProtocolMessage
22950
+ 146, // 185: WAWebProtobufsE2E.Message.contactsArrayMessage:type_name -> WAWebProtobufsE2E.ContactsArrayMessage
22951
+ 89, // 186: WAWebProtobufsE2E.Message.highlyStructuredMessage:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
22952
+ 167, // 187: WAWebProtobufsE2E.Message.fastRatchetKeySenderKeyDistributionMessage:type_name -> WAWebProtobufsE2E.SenderKeyDistributionMessage
22953
+ 145, // 188: WAWebProtobufsE2E.Message.sendPaymentMessage:type_name -> WAWebProtobufsE2E.SendPaymentMessage
22954
+ 141, // 189: WAWebProtobufsE2E.Message.liveLocationMessage:type_name -> WAWebProtobufsE2E.LiveLocationMessage
22955
+ 144, // 190: WAWebProtobufsE2E.Message.requestPaymentMessage:type_name -> WAWebProtobufsE2E.RequestPaymentMessage
22956
+ 143, // 191: WAWebProtobufsE2E.Message.declinePaymentRequestMessage:type_name -> WAWebProtobufsE2E.DeclinePaymentRequestMessage
22957
+ 142, // 192: WAWebProtobufsE2E.Message.cancelPaymentRequestMessage:type_name -> WAWebProtobufsE2E.CancelPaymentRequestMessage
22958
+ 139, // 193: WAWebProtobufsE2E.Message.templateMessage:type_name -> WAWebProtobufsE2E.TemplateMessage
22959
+ 140, // 194: WAWebProtobufsE2E.Message.stickerMessage:type_name -> WAWebProtobufsE2E.StickerMessage
22960
+ 81, // 195: WAWebProtobufsE2E.Message.groupInviteMessage:type_name -> WAWebProtobufsE2E.GroupInviteMessage
22961
+ 138, // 196: WAWebProtobufsE2E.Message.templateButtonReplyMessage:type_name -> WAWebProtobufsE2E.TemplateButtonReplyMessage
22962
+ 137, // 197: WAWebProtobufsE2E.Message.productMessage:type_name -> WAWebProtobufsE2E.ProductMessage
22963
+ 133, // 198: WAWebProtobufsE2E.Message.deviceSentMessage:type_name -> WAWebProtobufsE2E.DeviceSentMessage
22964
+ 105, // 199: WAWebProtobufsE2E.Message.messageContextInfo:type_name -> WAWebProtobufsE2E.MessageContextInfo
22965
+ 85, // 200: WAWebProtobufsE2E.Message.listMessage:type_name -> WAWebProtobufsE2E.ListMessage
22966
+ 132, // 201: WAWebProtobufsE2E.Message.viewOnceMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22967
+ 86, // 202: WAWebProtobufsE2E.Message.orderMessage:type_name -> WAWebProtobufsE2E.OrderMessage
22968
+ 84, // 203: WAWebProtobufsE2E.Message.listResponseMessage:type_name -> WAWebProtobufsE2E.ListResponseMessage
22969
+ 132, // 204: WAWebProtobufsE2E.Message.ephemeralMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22970
+ 100, // 205: WAWebProtobufsE2E.Message.invoiceMessage:type_name -> WAWebProtobufsE2E.InvoiceMessage
22971
+ 79, // 206: WAWebProtobufsE2E.Message.buttonsMessage:type_name -> WAWebProtobufsE2E.ButtonsMessage
22972
+ 78, // 207: WAWebProtobufsE2E.Message.buttonsResponseMessage:type_name -> WAWebProtobufsE2E.ButtonsResponseMessage
22973
+ 88, // 208: WAWebProtobufsE2E.Message.paymentInviteMessage:type_name -> WAWebProtobufsE2E.PaymentInviteMessage
22974
+ 83, // 209: WAWebProtobufsE2E.Message.interactiveMessage:type_name -> WAWebProtobufsE2E.InteractiveMessage
22975
+ 131, // 210: WAWebProtobufsE2E.Message.reactionMessage:type_name -> WAWebProtobufsE2E.ReactionMessage
22976
+ 130, // 211: WAWebProtobufsE2E.Message.stickerSyncRmrMessage:type_name -> WAWebProtobufsE2E.StickerSyncRMRMessage
22977
+ 82, // 212: WAWebProtobufsE2E.Message.interactiveResponseMessage:type_name -> WAWebProtobufsE2E.InteractiveResponseMessage
22978
+ 129, // 213: WAWebProtobufsE2E.Message.pollCreationMessage:type_name -> WAWebProtobufsE2E.PollCreationMessage
22979
+ 128, // 214: WAWebProtobufsE2E.Message.pollUpdateMessage:type_name -> WAWebProtobufsE2E.PollUpdateMessage
22980
+ 121, // 215: WAWebProtobufsE2E.Message.keepInChatMessage:type_name -> WAWebProtobufsE2E.KeepInChatMessage
22981
+ 132, // 216: WAWebProtobufsE2E.Message.documentWithCaptionMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22982
+ 134, // 217: WAWebProtobufsE2E.Message.requestPhoneNumberMessage:type_name -> WAWebProtobufsE2E.RequestPhoneNumberMessage
22983
+ 132, // 218: WAWebProtobufsE2E.Message.viewOnceMessageV2:type_name -> WAWebProtobufsE2E.FutureProofMessage
22984
+ 120, // 219: WAWebProtobufsE2E.Message.encReactionMessage:type_name -> WAWebProtobufsE2E.EncReactionMessage
22985
+ 132, // 220: WAWebProtobufsE2E.Message.editedMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22986
+ 132, // 221: WAWebProtobufsE2E.Message.viewOnceMessageV2Extension:type_name -> WAWebProtobufsE2E.FutureProofMessage
22987
+ 129, // 222: WAWebProtobufsE2E.Message.pollCreationMessageV2:type_name -> WAWebProtobufsE2E.PollCreationMessage
22988
+ 74, // 223: WAWebProtobufsE2E.Message.scheduledCallCreationMessage:type_name -> WAWebProtobufsE2E.ScheduledCallCreationMessage
22989
+ 132, // 224: WAWebProtobufsE2E.Message.groupMentionedMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22990
+ 76, // 225: WAWebProtobufsE2E.Message.pinInChatMessage:type_name -> WAWebProtobufsE2E.PinInChatMessage
22991
+ 129, // 226: WAWebProtobufsE2E.Message.pollCreationMessageV3:type_name -> WAWebProtobufsE2E.PollCreationMessage
22992
+ 73, // 227: WAWebProtobufsE2E.Message.scheduledCallEditMessage:type_name -> WAWebProtobufsE2E.ScheduledCallEditMessage
22993
+ 95, // 228: WAWebProtobufsE2E.Message.ptvMessage:type_name -> WAWebProtobufsE2E.VideoMessage
22994
+ 132, // 229: WAWebProtobufsE2E.Message.botInvokeMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
22995
+ 72, // 230: WAWebProtobufsE2E.Message.callLogMesssage:type_name -> WAWebProtobufsE2E.CallLogMessage
22996
+ 115, // 231: WAWebProtobufsE2E.Message.messageHistoryBundle:type_name -> WAWebProtobufsE2E.MessageHistoryBundle
22997
+ 119, // 232: WAWebProtobufsE2E.Message.encCommentMessage:type_name -> WAWebProtobufsE2E.EncCommentMessage
22998
+ 71, // 233: WAWebProtobufsE2E.Message.bcallMessage:type_name -> WAWebProtobufsE2E.BCallMessage
22999
+ 132, // 234: WAWebProtobufsE2E.Message.lottieStickerMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
23000
+ 117, // 235: WAWebProtobufsE2E.Message.eventMessage:type_name -> WAWebProtobufsE2E.EventMessage
23001
+ 116, // 236: WAWebProtobufsE2E.Message.encEventResponseMessage:type_name -> WAWebProtobufsE2E.EncEventResponseMessage
23002
+ 118, // 237: WAWebProtobufsE2E.Message.commentMessage:type_name -> WAWebProtobufsE2E.CommentMessage
23003
+ 136, // 238: WAWebProtobufsE2E.Message.newsletterAdminInviteMessage:type_name -> WAWebProtobufsE2E.NewsletterAdminInviteMessage
23004
+ 70, // 239: WAWebProtobufsE2E.Message.placeholderMessage:type_name -> WAWebProtobufsE2E.PlaceholderMessage
23005
+ 80, // 240: WAWebProtobufsE2E.Message.secretEncryptedMessage:type_name -> WAWebProtobufsE2E.SecretEncryptedMessage
23006
+ 112, // 241: WAWebProtobufsE2E.Message.albumMessage:type_name -> WAWebProtobufsE2E.AlbumMessage
23007
+ 132, // 242: WAWebProtobufsE2E.Message.eventCoverImage:type_name -> WAWebProtobufsE2E.FutureProofMessage
23008
+ 69, // 243: WAWebProtobufsE2E.Message.stickerPackMessage:type_name -> WAWebProtobufsE2E.StickerPackMessage
23009
+ 132, // 244: WAWebProtobufsE2E.Message.statusMentionMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
23010
+ 124, // 245: WAWebProtobufsE2E.Message.pollResultSnapshotMessage:type_name -> WAWebProtobufsE2E.PollResultSnapshotMessage
23011
+ 132, // 246: WAWebProtobufsE2E.Message.pollCreationOptionImageMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
23012
+ 132, // 247: WAWebProtobufsE2E.Message.associatedChildMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
23013
+ 132, // 248: WAWebProtobufsE2E.Message.groupStatusMentionMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
23014
+ 132, // 249: WAWebProtobufsE2E.Message.pollCreationMessageV4:type_name -> WAWebProtobufsE2E.FutureProofMessage
23015
+ 132, // 250: WAWebProtobufsE2E.Message.statusAddYours:type_name -> WAWebProtobufsE2E.FutureProofMessage
23016
+ 132, // 251: WAWebProtobufsE2E.Message.groupStatusMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
23017
+ 185, // 252: WAWebProtobufsE2E.Message.richResponseMessage:type_name -> WAWebProtobufsE2E.AIRichResponseMessage
23018
+ 99, // 253: WAWebProtobufsE2E.Message.statusNotificationMessage:type_name -> WAWebProtobufsE2E.StatusNotificationMessage
23019
+ 132, // 254: WAWebProtobufsE2E.Message.limitSharingMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
23020
+ 132, // 255: WAWebProtobufsE2E.Message.botTaskMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
23021
+ 132, // 256: WAWebProtobufsE2E.Message.questionMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
23022
+ 114, // 257: WAWebProtobufsE2E.Message.messageHistoryNotice:type_name -> WAWebProtobufsE2E.MessageHistoryNotice
23023
+ 132, // 258: WAWebProtobufsE2E.Message.groupStatusMessageV2:type_name -> WAWebProtobufsE2E.FutureProofMessage
23024
+ 132, // 259: WAWebProtobufsE2E.Message.botForwardedMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
23025
+ 123, // 260: WAWebProtobufsE2E.Message.statusQuestionAnswerMessage:type_name -> WAWebProtobufsE2E.StatusQuestionAnswerMessage
23026
+ 132, // 261: WAWebProtobufsE2E.Message.questionReplyMessage:type_name -> WAWebProtobufsE2E.FutureProofMessage
23027
+ 122, // 262: WAWebProtobufsE2E.Message.questionResponseMessage:type_name -> WAWebProtobufsE2E.QuestionResponseMessage
23028
+ 87, // 263: WAWebProtobufsE2E.Message.statusQuotedMessage:type_name -> WAWebProtobufsE2E.StatusQuotedMessage
23029
+ 77, // 264: WAWebProtobufsE2E.Message.statusStickerInteractionMessage:type_name -> WAWebProtobufsE2E.StatusStickerInteractionMessage
23030
+ 129, // 265: WAWebProtobufsE2E.Message.pollCreationMessageV5:type_name -> WAWebProtobufsE2E.PollCreationMessage
22957
23031
  135, // 266: WAWebProtobufsE2E.Message.newsletterFollowerInviteMessageV2:type_name -> WAWebProtobufsE2E.NewsletterFollowerInviteMessage
22958
- 133, // 267: WAWebProtobufsE2E.Message.requestContactInfoMessage:type_name -> WAWebProtobufsE2E.RequestContactInfoMessage
22959
- 101, // 268: WAWebProtobufsE2E.AlbumMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22960
- 101, // 269: WAWebProtobufsE2E.MessageHistoryNotice.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22961
- 112, // 270: WAWebProtobufsE2E.MessageHistoryNotice.messageHistoryMetadata:type_name -> WAWebProtobufsE2E.MessageHistoryMetadata
22962
- 101, // 271: WAWebProtobufsE2E.MessageHistoryBundle.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22963
- 112, // 272: WAWebProtobufsE2E.MessageHistoryBundle.messageHistoryMetadata:type_name -> WAWebProtobufsE2E.MessageHistoryMetadata
22964
- 260, // 273: WAWebProtobufsE2E.EncEventResponseMessage.eventCreationMessageKey:type_name -> WACommon.MessageKey
22965
- 101, // 274: WAWebProtobufsE2E.EventMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22966
- 164, // 275: WAWebProtobufsE2E.EventMessage.location:type_name -> WAWebProtobufsE2E.LocationMessage
22967
- 110, // 276: WAWebProtobufsE2E.CommentMessage.message:type_name -> WAWebProtobufsE2E.Message
22968
- 260, // 277: WAWebProtobufsE2E.CommentMessage.targetMessageKey:type_name -> WACommon.MessageKey
22969
- 260, // 278: WAWebProtobufsE2E.EncCommentMessage.targetMessageKey:type_name -> WACommon.MessageKey
22970
- 260, // 279: WAWebProtobufsE2E.EncReactionMessage.targetMessageKey:type_name -> WACommon.MessageKey
22971
- 260, // 280: WAWebProtobufsE2E.KeepInChatMessage.key:type_name -> WACommon.MessageKey
22972
- 5, // 281: WAWebProtobufsE2E.KeepInChatMessage.keepType:type_name -> WAWebProtobufsE2E.KeepType
22973
- 260, // 282: WAWebProtobufsE2E.QuestionResponseMessage.key:type_name -> WACommon.MessageKey
22974
- 260, // 283: WAWebProtobufsE2E.StatusQuestionAnswerMessage.key:type_name -> WACommon.MessageKey
22975
- 250, // 284: WAWebProtobufsE2E.PollResultSnapshotMessage.pollVotes:type_name -> WAWebProtobufsE2E.PollResultSnapshotMessage.PollVote
22976
- 101, // 285: WAWebProtobufsE2E.PollResultSnapshotMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23032
+ 124, // 267: WAWebProtobufsE2E.Message.pollResultSnapshotMessageV3:type_name -> WAWebProtobufsE2E.PollResultSnapshotMessage
23033
+ 102, // 268: WAWebProtobufsE2E.AlbumMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23034
+ 102, // 269: WAWebProtobufsE2E.MessageHistoryNotice.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23035
+ 113, // 270: WAWebProtobufsE2E.MessageHistoryNotice.messageHistoryMetadata:type_name -> WAWebProtobufsE2E.MessageHistoryMetadata
23036
+ 102, // 271: WAWebProtobufsE2E.MessageHistoryBundle.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23037
+ 113, // 272: WAWebProtobufsE2E.MessageHistoryBundle.messageHistoryMetadata:type_name -> WAWebProtobufsE2E.MessageHistoryMetadata
23038
+ 261, // 273: WAWebProtobufsE2E.EncEventResponseMessage.eventCreationMessageKey:type_name -> WACommon.MessageKey
23039
+ 102, // 274: WAWebProtobufsE2E.EventMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23040
+ 165, // 275: WAWebProtobufsE2E.EventMessage.location:type_name -> WAWebProtobufsE2E.LocationMessage
23041
+ 111, // 276: WAWebProtobufsE2E.CommentMessage.message:type_name -> WAWebProtobufsE2E.Message
23042
+ 261, // 277: WAWebProtobufsE2E.CommentMessage.targetMessageKey:type_name -> WACommon.MessageKey
23043
+ 261, // 278: WAWebProtobufsE2E.EncCommentMessage.targetMessageKey:type_name -> WACommon.MessageKey
23044
+ 261, // 279: WAWebProtobufsE2E.EncReactionMessage.targetMessageKey:type_name -> WACommon.MessageKey
23045
+ 261, // 280: WAWebProtobufsE2E.KeepInChatMessage.key:type_name -> WACommon.MessageKey
23046
+ 6, // 281: WAWebProtobufsE2E.KeepInChatMessage.keepType:type_name -> WAWebProtobufsE2E.KeepType
23047
+ 261, // 282: WAWebProtobufsE2E.QuestionResponseMessage.key:type_name -> WACommon.MessageKey
23048
+ 261, // 283: WAWebProtobufsE2E.StatusQuestionAnswerMessage.key:type_name -> WACommon.MessageKey
23049
+ 251, // 284: WAWebProtobufsE2E.PollResultSnapshotMessage.pollVotes:type_name -> WAWebProtobufsE2E.PollResultSnapshotMessage.PollVote
23050
+ 102, // 285: WAWebProtobufsE2E.PollResultSnapshotMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22977
23051
  0, // 286: WAWebProtobufsE2E.PollResultSnapshotMessage.pollType:type_name -> WAWebProtobufsE2E.PollType
22978
- 260, // 287: WAWebProtobufsE2E.PollUpdateMessage.pollCreationMessageKey:type_name -> WACommon.MessageKey
22979
- 125, // 288: WAWebProtobufsE2E.PollUpdateMessage.vote:type_name -> WAWebProtobufsE2E.PollEncValue
22980
- 126, // 289: WAWebProtobufsE2E.PollUpdateMessage.metadata:type_name -> WAWebProtobufsE2E.PollUpdateMessageMetadata
22981
- 251, // 290: WAWebProtobufsE2E.PollCreationMessage.options:type_name -> WAWebProtobufsE2E.PollCreationMessage.Option
22982
- 101, // 291: WAWebProtobufsE2E.PollCreationMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23052
+ 261, // 287: WAWebProtobufsE2E.PollUpdateMessage.pollCreationMessageKey:type_name -> WACommon.MessageKey
23053
+ 126, // 288: WAWebProtobufsE2E.PollUpdateMessage.vote:type_name -> WAWebProtobufsE2E.PollEncValue
23054
+ 127, // 289: WAWebProtobufsE2E.PollUpdateMessage.metadata:type_name -> WAWebProtobufsE2E.PollUpdateMessageMetadata
23055
+ 252, // 290: WAWebProtobufsE2E.PollCreationMessage.options:type_name -> WAWebProtobufsE2E.PollCreationMessage.Option
23056
+ 102, // 291: WAWebProtobufsE2E.PollCreationMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22983
23057
  1, // 292: WAWebProtobufsE2E.PollCreationMessage.pollContentType:type_name -> WAWebProtobufsE2E.PollContentType
22984
23058
  0, // 293: WAWebProtobufsE2E.PollCreationMessage.pollType:type_name -> WAWebProtobufsE2E.PollType
22985
- 251, // 294: WAWebProtobufsE2E.PollCreationMessage.correctAnswer:type_name -> WAWebProtobufsE2E.PollCreationMessage.Option
22986
- 260, // 295: WAWebProtobufsE2E.ReactionMessage.key:type_name -> WACommon.MessageKey
22987
- 110, // 296: WAWebProtobufsE2E.FutureProofMessage.message:type_name -> WAWebProtobufsE2E.Message
22988
- 110, // 297: WAWebProtobufsE2E.DeviceSentMessage.message:type_name -> WAWebProtobufsE2E.Message
22989
- 101, // 298: WAWebProtobufsE2E.RequestContactInfoMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22990
- 101, // 299: WAWebProtobufsE2E.RequestPhoneNumberMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22991
- 101, // 300: WAWebProtobufsE2E.NewsletterFollowerInviteMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22992
- 101, // 301: WAWebProtobufsE2E.NewsletterAdminInviteMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22993
- 252, // 302: WAWebProtobufsE2E.ProductMessage.product:type_name -> WAWebProtobufsE2E.ProductMessage.ProductSnapshot
22994
- 253, // 303: WAWebProtobufsE2E.ProductMessage.catalog:type_name -> WAWebProtobufsE2E.ProductMessage.CatalogSnapshot
22995
- 101, // 304: WAWebProtobufsE2E.ProductMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22996
- 101, // 305: WAWebProtobufsE2E.TemplateButtonReplyMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
22997
- 255, // 306: WAWebProtobufsE2E.TemplateMessage.fourRowTemplate:type_name -> WAWebProtobufsE2E.TemplateMessage.FourRowTemplate
22998
- 254, // 307: WAWebProtobufsE2E.TemplateMessage.hydratedFourRowTemplate:type_name -> WAWebProtobufsE2E.TemplateMessage.HydratedFourRowTemplate
22999
- 82, // 308: WAWebProtobufsE2E.TemplateMessage.interactiveMessageTemplate:type_name -> WAWebProtobufsE2E.InteractiveMessage
23000
- 101, // 309: WAWebProtobufsE2E.TemplateMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23001
- 254, // 310: WAWebProtobufsE2E.TemplateMessage.hydratedTemplate:type_name -> WAWebProtobufsE2E.TemplateMessage.HydratedFourRowTemplate
23002
- 101, // 311: WAWebProtobufsE2E.StickerMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23003
- 4, // 312: WAWebProtobufsE2E.StickerMessage.mediaKeyDomain:type_name -> WAWebProtobufsE2E.MediaKeyDomain
23004
- 101, // 313: WAWebProtobufsE2E.LiveLocationMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23005
- 260, // 314: WAWebProtobufsE2E.CancelPaymentRequestMessage.key:type_name -> WACommon.MessageKey
23006
- 260, // 315: WAWebProtobufsE2E.DeclinePaymentRequestMessage.key:type_name -> WACommon.MessageKey
23007
- 110, // 316: WAWebProtobufsE2E.RequestPaymentMessage.noteMessage:type_name -> WAWebProtobufsE2E.Message
23008
- 176, // 317: WAWebProtobufsE2E.RequestPaymentMessage.amount:type_name -> WAWebProtobufsE2E.Money
23009
- 107, // 318: WAWebProtobufsE2E.RequestPaymentMessage.background:type_name -> WAWebProtobufsE2E.PaymentBackground
23010
- 110, // 319: WAWebProtobufsE2E.SendPaymentMessage.noteMessage:type_name -> WAWebProtobufsE2E.Message
23011
- 260, // 320: WAWebProtobufsE2E.SendPaymentMessage.requestMessageKey:type_name -> WACommon.MessageKey
23012
- 107, // 321: WAWebProtobufsE2E.SendPaymentMessage.background:type_name -> WAWebProtobufsE2E.PaymentBackground
23013
- 165, // 322: WAWebProtobufsE2E.ContactsArrayMessage.contacts:type_name -> WAWebProtobufsE2E.ContactMessage
23014
- 101, // 323: WAWebProtobufsE2E.ContactsArrayMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23015
- 154, // 324: WAWebProtobufsE2E.AppStateSyncKeyRequest.keyIDs:type_name -> WAWebProtobufsE2E.AppStateSyncKeyId
23016
- 155, // 325: WAWebProtobufsE2E.AppStateSyncKeyShare.keys:type_name -> WAWebProtobufsE2E.AppStateSyncKey
23017
- 153, // 326: WAWebProtobufsE2E.AppStateSyncKeyData.fingerprint:type_name -> WAWebProtobufsE2E.AppStateSyncKeyFingerprint
23018
- 154, // 327: WAWebProtobufsE2E.AppStateSyncKey.keyID:type_name -> WAWebProtobufsE2E.AppStateSyncKeyId
23019
- 152, // 328: WAWebProtobufsE2E.AppStateSyncKey.keyData:type_name -> WAWebProtobufsE2E.AppStateSyncKeyData
23020
- 3, // 329: WAWebProtobufsE2E.HistorySyncNotification.syncType:type_name -> WAWebProtobufsE2E.HistorySyncType
23021
- 148, // 330: WAWebProtobufsE2E.HistorySyncNotification.fullHistorySyncOnDemandRequestMetadata:type_name -> WAWebProtobufsE2E.FullHistorySyncOnDemandRequestMetadata
23022
- 101, // 331: WAWebProtobufsE2E.Call.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23023
- 101, // 332: WAWebProtobufsE2E.AudioMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23059
+ 252, // 294: WAWebProtobufsE2E.PollCreationMessage.correctAnswer:type_name -> WAWebProtobufsE2E.PollCreationMessage.Option
23060
+ 261, // 295: WAWebProtobufsE2E.ReactionMessage.key:type_name -> WACommon.MessageKey
23061
+ 111, // 296: WAWebProtobufsE2E.FutureProofMessage.message:type_name -> WAWebProtobufsE2E.Message
23062
+ 111, // 297: WAWebProtobufsE2E.DeviceSentMessage.message:type_name -> WAWebProtobufsE2E.Message
23063
+ 102, // 298: WAWebProtobufsE2E.RequestPhoneNumberMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23064
+ 102, // 299: WAWebProtobufsE2E.NewsletterFollowerInviteMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23065
+ 102, // 300: WAWebProtobufsE2E.NewsletterAdminInviteMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23066
+ 253, // 301: WAWebProtobufsE2E.ProductMessage.product:type_name -> WAWebProtobufsE2E.ProductMessage.ProductSnapshot
23067
+ 254, // 302: WAWebProtobufsE2E.ProductMessage.catalog:type_name -> WAWebProtobufsE2E.ProductMessage.CatalogSnapshot
23068
+ 102, // 303: WAWebProtobufsE2E.ProductMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23069
+ 102, // 304: WAWebProtobufsE2E.TemplateButtonReplyMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23070
+ 256, // 305: WAWebProtobufsE2E.TemplateMessage.fourRowTemplate:type_name -> WAWebProtobufsE2E.TemplateMessage.FourRowTemplate
23071
+ 255, // 306: WAWebProtobufsE2E.TemplateMessage.hydratedFourRowTemplate:type_name -> WAWebProtobufsE2E.TemplateMessage.HydratedFourRowTemplate
23072
+ 83, // 307: WAWebProtobufsE2E.TemplateMessage.interactiveMessageTemplate:type_name -> WAWebProtobufsE2E.InteractiveMessage
23073
+ 102, // 308: WAWebProtobufsE2E.TemplateMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23074
+ 255, // 309: WAWebProtobufsE2E.TemplateMessage.hydratedTemplate:type_name -> WAWebProtobufsE2E.TemplateMessage.HydratedFourRowTemplate
23075
+ 102, // 310: WAWebProtobufsE2E.StickerMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23076
+ 4, // 311: WAWebProtobufsE2E.StickerMessage.mediaKeyDomain:type_name -> WAWebProtobufsE2E.MediaKeyDomain
23077
+ 102, // 312: WAWebProtobufsE2E.LiveLocationMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23078
+ 261, // 313: WAWebProtobufsE2E.CancelPaymentRequestMessage.key:type_name -> WACommon.MessageKey
23079
+ 261, // 314: WAWebProtobufsE2E.DeclinePaymentRequestMessage.key:type_name -> WACommon.MessageKey
23080
+ 111, // 315: WAWebProtobufsE2E.RequestPaymentMessage.noteMessage:type_name -> WAWebProtobufsE2E.Message
23081
+ 177, // 316: WAWebProtobufsE2E.RequestPaymentMessage.amount:type_name -> WAWebProtobufsE2E.Money
23082
+ 108, // 317: WAWebProtobufsE2E.RequestPaymentMessage.background:type_name -> WAWebProtobufsE2E.PaymentBackground
23083
+ 111, // 318: WAWebProtobufsE2E.SendPaymentMessage.noteMessage:type_name -> WAWebProtobufsE2E.Message
23084
+ 261, // 319: WAWebProtobufsE2E.SendPaymentMessage.requestMessageKey:type_name -> WACommon.MessageKey
23085
+ 108, // 320: WAWebProtobufsE2E.SendPaymentMessage.background:type_name -> WAWebProtobufsE2E.PaymentBackground
23086
+ 166, // 321: WAWebProtobufsE2E.ContactsArrayMessage.contacts:type_name -> WAWebProtobufsE2E.ContactMessage
23087
+ 102, // 322: WAWebProtobufsE2E.ContactsArrayMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23088
+ 154, // 323: WAWebProtobufsE2E.AppStateSyncKeyRequest.keyIDs:type_name -> WAWebProtobufsE2E.AppStateSyncKeyId
23089
+ 155, // 324: WAWebProtobufsE2E.AppStateSyncKeyShare.keys:type_name -> WAWebProtobufsE2E.AppStateSyncKey
23090
+ 153, // 325: WAWebProtobufsE2E.AppStateSyncKeyData.fingerprint:type_name -> WAWebProtobufsE2E.AppStateSyncKeyFingerprint
23091
+ 154, // 326: WAWebProtobufsE2E.AppStateSyncKey.keyID:type_name -> WAWebProtobufsE2E.AppStateSyncKeyId
23092
+ 152, // 327: WAWebProtobufsE2E.AppStateSyncKey.keyData:type_name -> WAWebProtobufsE2E.AppStateSyncKeyData
23093
+ 3, // 328: WAWebProtobufsE2E.HistorySyncNotification.syncType:type_name -> WAWebProtobufsE2E.HistorySyncType
23094
+ 148, // 329: WAWebProtobufsE2E.HistorySyncNotification.fullHistorySyncOnDemandRequestMetadata:type_name -> WAWebProtobufsE2E.FullHistorySyncOnDemandRequestMetadata
23095
+ 157, // 330: WAWebProtobufsE2E.HistorySyncNotification.messageAccessStatus:type_name -> WAWebProtobufsE2E.HistorySyncMessageAccessStatus
23096
+ 102, // 331: WAWebProtobufsE2E.Call.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23097
+ 102, // 332: WAWebProtobufsE2E.AudioMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23024
23098
  4, // 333: WAWebProtobufsE2E.AudioMessage.mediaKeyDomain:type_name -> WAWebProtobufsE2E.MediaKeyDomain
23025
- 101, // 334: WAWebProtobufsE2E.DocumentMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23099
+ 102, // 334: WAWebProtobufsE2E.DocumentMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23026
23100
  4, // 335: WAWebProtobufsE2E.DocumentMessage.mediaKeyDomain:type_name -> WAWebProtobufsE2E.MediaKeyDomain
23027
23101
  4, // 336: WAWebProtobufsE2E.MMSThumbnailMetadata.mediaKeyDomain:type_name -> WAWebProtobufsE2E.MediaKeyDomain
23028
- 101, // 337: WAWebProtobufsE2E.LocationMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23029
- 101, // 338: WAWebProtobufsE2E.ContactMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23030
- 267, // 339: WAWebProtobufsE2E.DeviceListMetadata.senderAccountType:type_name -> WAAdv.ADVEncryptionType
23031
- 267, // 340: WAWebProtobufsE2E.DeviceListMetadata.receiverAccountType:type_name -> WAAdv.ADVEncryptionType
23032
- 110, // 341: WAWebProtobufsE2E.EmbeddedMessage.message:type_name -> WAWebProtobufsE2E.Message
23033
- 169, // 342: WAWebProtobufsE2E.EmbeddedContent.embeddedMessage:type_name -> WAWebProtobufsE2E.EmbeddedMessage
23034
- 170, // 343: WAWebProtobufsE2E.EmbeddedContent.embeddedMusic:type_name -> WAWebProtobufsE2E.EmbeddedMusic
23035
- 258, // 344: WAWebProtobufsE2E.TemplateButton.quickReplyButton:type_name -> WAWebProtobufsE2E.TemplateButton.QuickReplyButton
23036
- 257, // 345: WAWebProtobufsE2E.TemplateButton.urlButton:type_name -> WAWebProtobufsE2E.TemplateButton.URLButton
23037
- 256, // 346: WAWebProtobufsE2E.TemplateButton.callButton:type_name -> WAWebProtobufsE2E.TemplateButton.CallButton
23038
- 259, // 347: WAWebProtobufsE2E.UrlTrackingMap.urlTrackingMapElements:type_name -> WAWebProtobufsE2E.UrlTrackingMap.UrlTrackingMapElement
23039
- 268, // 348: WAWebProtobufsE2E.AIRichResponseMessage.messageType:type_name -> WAAICommon.AIRichResponseMessageType
23040
- 269, // 349: WAWebProtobufsE2E.AIRichResponseMessage.submessages:type_name -> WAAICommon.AIRichResponseSubMessage
23041
- 270, // 350: WAWebProtobufsE2E.AIRichResponseMessage.unifiedResponse:type_name -> WAAICommon.AIRichResponseUnifiedResponse
23042
- 101, // 351: WAWebProtobufsE2E.AIRichResponseMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23043
- 260, // 352: WAWebProtobufsE2E.AIQueryFanout.messageKey:type_name -> WACommon.MessageKey
23044
- 110, // 353: WAWebProtobufsE2E.AIQueryFanout.message:type_name -> WAWebProtobufsE2E.Message
23045
- 9, // 354: WAWebProtobufsE2E.CallLogMessage.CallParticipant.callOutcome:type_name -> WAWebProtobufsE2E.CallLogMessage.CallOutcome
23046
- 190, // 355: WAWebProtobufsE2E.ButtonsMessage.Button.buttonText:type_name -> WAWebProtobufsE2E.ButtonsMessage.Button.ButtonText
23047
- 18, // 356: WAWebProtobufsE2E.ButtonsMessage.Button.type:type_name -> WAWebProtobufsE2E.ButtonsMessage.Button.Type
23048
- 189, // 357: WAWebProtobufsE2E.ButtonsMessage.Button.nativeFlowInfo:type_name -> WAWebProtobufsE2E.ButtonsMessage.Button.NativeFlowInfo
23049
- 21, // 358: WAWebProtobufsE2E.InteractiveResponseMessage.Body.format:type_name -> WAWebProtobufsE2E.InteractiveResponseMessage.Body.Format
23050
- 82, // 359: WAWebProtobufsE2E.InteractiveMessage.CarouselMessage.cards:type_name -> WAWebProtobufsE2E.InteractiveMessage
23051
- 22, // 360: WAWebProtobufsE2E.InteractiveMessage.CarouselMessage.carouselCardType:type_name -> WAWebProtobufsE2E.InteractiveMessage.CarouselMessage.CarouselCardType
23052
- 23, // 361: WAWebProtobufsE2E.InteractiveMessage.ShopMessage.surface:type_name -> WAWebProtobufsE2E.InteractiveMessage.ShopMessage.Surface
23053
- 200, // 362: WAWebProtobufsE2E.InteractiveMessage.NativeFlowMessage.buttons:type_name -> WAWebProtobufsE2E.InteractiveMessage.NativeFlowMessage.NativeFlowButton
23054
- 159, // 363: WAWebProtobufsE2E.InteractiveMessage.Footer.audioMessage:type_name -> WAWebProtobufsE2E.AudioMessage
23055
- 160, // 364: WAWebProtobufsE2E.InteractiveMessage.Header.documentMessage:type_name -> WAWebProtobufsE2E.DocumentMessage
23056
- 100, // 365: WAWebProtobufsE2E.InteractiveMessage.Header.imageMessage:type_name -> WAWebProtobufsE2E.ImageMessage
23057
- 94, // 366: WAWebProtobufsE2E.InteractiveMessage.Header.videoMessage:type_name -> WAWebProtobufsE2E.VideoMessage
23058
- 164, // 367: WAWebProtobufsE2E.InteractiveMessage.Header.locationMessage:type_name -> WAWebProtobufsE2E.LocationMessage
23102
+ 102, // 337: WAWebProtobufsE2E.LocationMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23103
+ 102, // 338: WAWebProtobufsE2E.ContactMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23104
+ 268, // 339: WAWebProtobufsE2E.DeviceListMetadata.senderAccountType:type_name -> WAAdv.ADVEncryptionType
23105
+ 268, // 340: WAWebProtobufsE2E.DeviceListMetadata.receiverAccountType:type_name -> WAAdv.ADVEncryptionType
23106
+ 111, // 341: WAWebProtobufsE2E.EmbeddedMessage.message:type_name -> WAWebProtobufsE2E.Message
23107
+ 170, // 342: WAWebProtobufsE2E.EmbeddedContent.embeddedMessage:type_name -> WAWebProtobufsE2E.EmbeddedMessage
23108
+ 171, // 343: WAWebProtobufsE2E.EmbeddedContent.embeddedMusic:type_name -> WAWebProtobufsE2E.EmbeddedMusic
23109
+ 259, // 344: WAWebProtobufsE2E.TemplateButton.quickReplyButton:type_name -> WAWebProtobufsE2E.TemplateButton.QuickReplyButton
23110
+ 258, // 345: WAWebProtobufsE2E.TemplateButton.urlButton:type_name -> WAWebProtobufsE2E.TemplateButton.URLButton
23111
+ 257, // 346: WAWebProtobufsE2E.TemplateButton.callButton:type_name -> WAWebProtobufsE2E.TemplateButton.CallButton
23112
+ 260, // 347: WAWebProtobufsE2E.UrlTrackingMap.urlTrackingMapElements:type_name -> WAWebProtobufsE2E.UrlTrackingMap.UrlTrackingMapElement
23113
+ 269, // 348: WAWebProtobufsE2E.AIRichResponseMessage.messageType:type_name -> WAAICommon.AIRichResponseMessageType
23114
+ 270, // 349: WAWebProtobufsE2E.AIRichResponseMessage.submessages:type_name -> WAAICommon.AIRichResponseSubMessage
23115
+ 271, // 350: WAWebProtobufsE2E.AIRichResponseMessage.unifiedResponse:type_name -> WAAICommon.AIRichResponseUnifiedResponse
23116
+ 102, // 351: WAWebProtobufsE2E.AIRichResponseMessage.contextInfo:type_name -> WAWebProtobufsE2E.ContextInfo
23117
+ 261, // 352: WAWebProtobufsE2E.AIQueryFanout.messageKey:type_name -> WACommon.MessageKey
23118
+ 111, // 353: WAWebProtobufsE2E.AIQueryFanout.message:type_name -> WAWebProtobufsE2E.Message
23119
+ 10, // 354: WAWebProtobufsE2E.CallLogMessage.CallParticipant.callOutcome:type_name -> WAWebProtobufsE2E.CallLogMessage.CallOutcome
23120
+ 191, // 355: WAWebProtobufsE2E.ButtonsMessage.Button.buttonText:type_name -> WAWebProtobufsE2E.ButtonsMessage.Button.ButtonText
23121
+ 19, // 356: WAWebProtobufsE2E.ButtonsMessage.Button.type:type_name -> WAWebProtobufsE2E.ButtonsMessage.Button.Type
23122
+ 190, // 357: WAWebProtobufsE2E.ButtonsMessage.Button.nativeFlowInfo:type_name -> WAWebProtobufsE2E.ButtonsMessage.Button.NativeFlowInfo
23123
+ 22, // 358: WAWebProtobufsE2E.InteractiveResponseMessage.Body.format:type_name -> WAWebProtobufsE2E.InteractiveResponseMessage.Body.Format
23124
+ 83, // 359: WAWebProtobufsE2E.InteractiveMessage.CarouselMessage.cards:type_name -> WAWebProtobufsE2E.InteractiveMessage
23125
+ 23, // 360: WAWebProtobufsE2E.InteractiveMessage.CarouselMessage.carouselCardType:type_name -> WAWebProtobufsE2E.InteractiveMessage.CarouselMessage.CarouselCardType
23126
+ 24, // 361: WAWebProtobufsE2E.InteractiveMessage.ShopMessage.surface:type_name -> WAWebProtobufsE2E.InteractiveMessage.ShopMessage.Surface
23127
+ 201, // 362: WAWebProtobufsE2E.InteractiveMessage.NativeFlowMessage.buttons:type_name -> WAWebProtobufsE2E.InteractiveMessage.NativeFlowMessage.NativeFlowButton
23128
+ 160, // 363: WAWebProtobufsE2E.InteractiveMessage.Footer.audioMessage:type_name -> WAWebProtobufsE2E.AudioMessage
23129
+ 161, // 364: WAWebProtobufsE2E.InteractiveMessage.Header.documentMessage:type_name -> WAWebProtobufsE2E.DocumentMessage
23130
+ 101, // 365: WAWebProtobufsE2E.InteractiveMessage.Header.imageMessage:type_name -> WAWebProtobufsE2E.ImageMessage
23131
+ 95, // 366: WAWebProtobufsE2E.InteractiveMessage.Header.videoMessage:type_name -> WAWebProtobufsE2E.VideoMessage
23132
+ 165, // 367: WAWebProtobufsE2E.InteractiveMessage.Header.locationMessage:type_name -> WAWebProtobufsE2E.LocationMessage
23059
23133
  137, // 368: WAWebProtobufsE2E.InteractiveMessage.Header.productMessage:type_name -> WAWebProtobufsE2E.ProductMessage
23060
- 204, // 369: WAWebProtobufsE2E.ListMessage.ProductListInfo.productSections:type_name -> WAWebProtobufsE2E.ListMessage.ProductSection
23061
- 203, // 370: WAWebProtobufsE2E.ListMessage.ProductListInfo.headerImage:type_name -> WAWebProtobufsE2E.ListMessage.ProductListHeaderImage
23062
- 205, // 371: WAWebProtobufsE2E.ListMessage.ProductSection.products:type_name -> WAWebProtobufsE2E.ListMessage.Product
23063
- 207, // 372: WAWebProtobufsE2E.ListMessage.Section.rows:type_name -> WAWebProtobufsE2E.ListMessage.Row
23064
- 210, // 373: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.currency:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMCurrency
23065
- 209, // 374: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.dateTime:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime
23066
- 211, // 375: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.component:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent
23067
- 212, // 376: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.unixEpoch:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeUnixEpoch
23068
- 31, // 377: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent.dayOfWeek:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent.DayOfWeekType
23069
- 30, // 378: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent.calendar:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent.CalendarType
23070
- 271, // 379: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.mediaUploadResult:type_name -> WAMmsRetry.MediaRetryNotification.ResultType
23134
+ 205, // 369: WAWebProtobufsE2E.ListMessage.ProductListInfo.productSections:type_name -> WAWebProtobufsE2E.ListMessage.ProductSection
23135
+ 204, // 370: WAWebProtobufsE2E.ListMessage.ProductListInfo.headerImage:type_name -> WAWebProtobufsE2E.ListMessage.ProductListHeaderImage
23136
+ 206, // 371: WAWebProtobufsE2E.ListMessage.ProductSection.products:type_name -> WAWebProtobufsE2E.ListMessage.Product
23137
+ 208, // 372: WAWebProtobufsE2E.ListMessage.Section.rows:type_name -> WAWebProtobufsE2E.ListMessage.Row
23138
+ 211, // 373: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.currency:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMCurrency
23139
+ 210, // 374: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.dateTime:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime
23140
+ 212, // 375: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.component:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent
23141
+ 213, // 376: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.unixEpoch:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeUnixEpoch
23142
+ 32, // 377: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent.dayOfWeek:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent.DayOfWeekType
23143
+ 31, // 378: WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent.calendar:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage.HSMLocalizableParameter.HSMDateTime.HSMDateTimeComponent.CalendarType
23144
+ 272, // 379: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.mediaUploadResult:type_name -> WAMmsRetry.MediaRetryNotification.ResultType
23071
23145
  140, // 380: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.stickerMessage:type_name -> WAWebProtobufsE2E.StickerMessage
23072
- 221, // 381: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.linkPreviewResponse:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse
23073
- 220, // 382: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.placeholderMessageResendResponse:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.PlaceholderMessageResendResponse
23074
- 218, // 383: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.waffleNonceFetchRequestResponse:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.WaffleNonceFetchResponse
23075
- 219, // 384: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.fullHistorySyncOnDemandRequestResponse:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.FullHistorySyncOnDemandRequestResponse
23076
- 217, // 385: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.companionMetaNonceFetchRequestResponse:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.CompanionMetaNonceFetchResponse
23077
- 215, // 386: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.syncdSnapshotFatalRecoveryResponse:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.SyncDSnapshotFatalRecoveryResponse
23078
- 216, // 387: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.companionCanonicalUserNonceFetchRequestResponse:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.CompanionCanonicalUserNonceFetchResponse
23079
- 214, // 388: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.historySyncChunkRetryResponse:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.HistorySyncChunkRetryResponse
23146
+ 222, // 381: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.linkPreviewResponse:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse
23147
+ 221, // 382: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.placeholderMessageResendResponse:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.PlaceholderMessageResendResponse
23148
+ 219, // 383: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.waffleNonceFetchRequestResponse:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.WaffleNonceFetchResponse
23149
+ 220, // 384: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.fullHistorySyncOnDemandRequestResponse:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.FullHistorySyncOnDemandRequestResponse
23150
+ 218, // 385: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.companionMetaNonceFetchRequestResponse:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.CompanionMetaNonceFetchResponse
23151
+ 216, // 386: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.syncdSnapshotFatalRecoveryResponse:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.SyncDSnapshotFatalRecoveryResponse
23152
+ 217, // 387: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.companionCanonicalUserNonceFetchRequestResponse:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.CompanionCanonicalUserNonceFetchResponse
23153
+ 215, // 388: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.historySyncChunkRetryResponse:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.HistorySyncChunkRetryResponse
23080
23154
  3, // 389: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.HistorySyncChunkRetryResponse.syncType:type_name -> WAWebProtobufsE2E.HistorySyncType
23081
- 32, // 390: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.HistorySyncChunkRetryResponse.responseCode:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.HistorySyncChunkRetryResponseCode
23155
+ 33, // 390: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.HistorySyncChunkRetryResponse.responseCode:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.HistorySyncChunkRetryResponseCode
23082
23156
  148, // 391: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.FullHistorySyncOnDemandRequestResponse.requestMetadata:type_name -> WAWebProtobufsE2E.FullHistorySyncOnDemandRequestMetadata
23083
- 33, // 392: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.FullHistorySyncOnDemandRequestResponse.responseCode:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.FullHistorySyncOnDemandResponseCode
23084
- 223, // 393: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse.hqThumbnail:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse.LinkPreviewHighQualityThumbnail
23085
- 222, // 394: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse.previewMetadata:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse.PaymentLinkPreviewMetadata
23086
- 34, // 395: WAWebProtobufsE2E.PeerDataOperationRequestMessage.GalaxyFlowAction.type:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.GalaxyFlowAction.GalaxyFlowActionType
23157
+ 34, // 392: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.FullHistorySyncOnDemandRequestResponse.responseCode:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.FullHistorySyncOnDemandResponseCode
23158
+ 224, // 393: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse.hqThumbnail:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse.LinkPreviewHighQualityThumbnail
23159
+ 223, // 394: WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse.previewMetadata:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestResponseMessage.PeerDataOperationResult.LinkPreviewResponse.PaymentLinkPreviewMetadata
23160
+ 35, // 395: WAWebProtobufsE2E.PeerDataOperationRequestMessage.GalaxyFlowAction.type:type_name -> WAWebProtobufsE2E.PeerDataOperationRequestMessage.GalaxyFlowAction.GalaxyFlowActionType
23087
23161
  3, // 396: WAWebProtobufsE2E.PeerDataOperationRequestMessage.HistorySyncChunkRetryRequest.syncType:type_name -> WAWebProtobufsE2E.HistorySyncType
23088
- 260, // 397: WAWebProtobufsE2E.PeerDataOperationRequestMessage.PlaceholderMessageResendRequest.messageKey:type_name -> WACommon.MessageKey
23162
+ 261, // 397: WAWebProtobufsE2E.PeerDataOperationRequestMessage.PlaceholderMessageResendRequest.messageKey:type_name -> WACommon.MessageKey
23089
23163
  148, // 398: WAWebProtobufsE2E.PeerDataOperationRequestMessage.FullHistorySyncOnDemandRequest.requestMetadata:type_name -> WAWebProtobufsE2E.FullHistorySyncOnDemandRequestMetadata
23090
- 272, // 399: WAWebProtobufsE2E.PeerDataOperationRequestMessage.FullHistorySyncOnDemandRequest.historySyncConfig:type_name -> WACompanionReg.DeviceProps.HistorySyncConfig
23091
- 44, // 400: WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkHeader.headerType:type_name -> WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkHeader.PaymentLinkHeaderType
23092
- 53, // 401: WAWebProtobufsE2E.ContextInfo.StatusAudienceMetadata.audienceType:type_name -> WAWebProtobufsE2E.ContextInfo.StatusAudienceMetadata.AudienceType
23093
- 245, // 402: WAWebProtobufsE2E.ContextInfo.DataSharingContext.parameters:type_name -> WAWebProtobufsE2E.ContextInfo.DataSharingContext.Parameters
23094
- 55, // 403: WAWebProtobufsE2E.ContextInfo.ForwardedNewsletterMessageInfo.contentType:type_name -> WAWebProtobufsE2E.ContextInfo.ForwardedNewsletterMessageInfo.ContentType
23095
- 57, // 404: WAWebProtobufsE2E.ContextInfo.ExternalAdReplyInfo.mediaType:type_name -> WAWebProtobufsE2E.ContextInfo.ExternalAdReplyInfo.MediaType
23096
- 56, // 405: WAWebProtobufsE2E.ContextInfo.ExternalAdReplyInfo.adType:type_name -> WAWebProtobufsE2E.ContextInfo.ExternalAdReplyInfo.AdType
23097
- 58, // 406: WAWebProtobufsE2E.ContextInfo.AdReplyInfo.mediaType:type_name -> WAWebProtobufsE2E.ContextInfo.AdReplyInfo.MediaType
23098
- 110, // 407: WAWebProtobufsE2E.ContextInfo.QuestionReplyQuotedMessage.quotedQuestion:type_name -> WAWebProtobufsE2E.Message
23099
- 110, // 408: WAWebProtobufsE2E.ContextInfo.QuestionReplyQuotedMessage.quotedResponse:type_name -> WAWebProtobufsE2E.Message
23100
- 245, // 409: WAWebProtobufsE2E.ContextInfo.DataSharingContext.Parameters.contents:type_name -> WAWebProtobufsE2E.ContextInfo.DataSharingContext.Parameters
23101
- 63, // 410: WAWebProtobufsE2E.HydratedTemplateButton.HydratedURLButton.webviewPresentation:type_name -> WAWebProtobufsE2E.HydratedTemplateButton.HydratedURLButton.WebviewPresentationType
23102
- 100, // 411: WAWebProtobufsE2E.ProductMessage.ProductSnapshot.productImage:type_name -> WAWebProtobufsE2E.ImageMessage
23103
- 100, // 412: WAWebProtobufsE2E.ProductMessage.CatalogSnapshot.catalogImage:type_name -> WAWebProtobufsE2E.ImageMessage
23104
- 160, // 413: WAWebProtobufsE2E.TemplateMessage.HydratedFourRowTemplate.documentMessage:type_name -> WAWebProtobufsE2E.DocumentMessage
23105
- 100, // 414: WAWebProtobufsE2E.TemplateMessage.HydratedFourRowTemplate.imageMessage:type_name -> WAWebProtobufsE2E.ImageMessage
23106
- 94, // 415: WAWebProtobufsE2E.TemplateMessage.HydratedFourRowTemplate.videoMessage:type_name -> WAWebProtobufsE2E.VideoMessage
23107
- 164, // 416: WAWebProtobufsE2E.TemplateMessage.HydratedFourRowTemplate.locationMessage:type_name -> WAWebProtobufsE2E.LocationMessage
23108
- 106, // 417: WAWebProtobufsE2E.TemplateMessage.HydratedFourRowTemplate.hydratedButtons:type_name -> WAWebProtobufsE2E.HydratedTemplateButton
23109
- 160, // 418: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate.documentMessage:type_name -> WAWebProtobufsE2E.DocumentMessage
23110
- 88, // 419: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate.highlyStructuredMessage:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
23111
- 100, // 420: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate.imageMessage:type_name -> WAWebProtobufsE2E.ImageMessage
23112
- 94, // 421: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate.videoMessage:type_name -> WAWebProtobufsE2E.VideoMessage
23113
- 164, // 422: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate.locationMessage:type_name -> WAWebProtobufsE2E.LocationMessage
23114
- 88, // 423: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate.content:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
23115
- 88, // 424: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate.footer:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
23116
- 175, // 425: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate.buttons:type_name -> WAWebProtobufsE2E.TemplateButton
23117
- 88, // 426: WAWebProtobufsE2E.TemplateButton.CallButton.displayText:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
23118
- 88, // 427: WAWebProtobufsE2E.TemplateButton.CallButton.phoneNumber:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
23119
- 88, // 428: WAWebProtobufsE2E.TemplateButton.URLButton.displayText:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
23120
- 88, // 429: WAWebProtobufsE2E.TemplateButton.URLButton.URL:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
23121
- 88, // 430: WAWebProtobufsE2E.TemplateButton.QuickReplyButton.displayText:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
23164
+ 273, // 399: WAWebProtobufsE2E.PeerDataOperationRequestMessage.FullHistorySyncOnDemandRequest.historySyncConfig:type_name -> WACompanionReg.DeviceProps.HistorySyncConfig
23165
+ 45, // 400: WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkHeader.headerType:type_name -> WAWebProtobufsE2E.PaymentLinkMetadata.PaymentLinkHeader.PaymentLinkHeaderType
23166
+ 54, // 401: WAWebProtobufsE2E.ContextInfo.StatusAudienceMetadata.audienceType:type_name -> WAWebProtobufsE2E.ContextInfo.StatusAudienceMetadata.AudienceType
23167
+ 246, // 402: WAWebProtobufsE2E.ContextInfo.DataSharingContext.parameters:type_name -> WAWebProtobufsE2E.ContextInfo.DataSharingContext.Parameters
23168
+ 56, // 403: WAWebProtobufsE2E.ContextInfo.ForwardedNewsletterMessageInfo.contentType:type_name -> WAWebProtobufsE2E.ContextInfo.ForwardedNewsletterMessageInfo.ContentType
23169
+ 58, // 404: WAWebProtobufsE2E.ContextInfo.ExternalAdReplyInfo.mediaType:type_name -> WAWebProtobufsE2E.ContextInfo.ExternalAdReplyInfo.MediaType
23170
+ 57, // 405: WAWebProtobufsE2E.ContextInfo.ExternalAdReplyInfo.adType:type_name -> WAWebProtobufsE2E.ContextInfo.ExternalAdReplyInfo.AdType
23171
+ 59, // 406: WAWebProtobufsE2E.ContextInfo.AdReplyInfo.mediaType:type_name -> WAWebProtobufsE2E.ContextInfo.AdReplyInfo.MediaType
23172
+ 111, // 407: WAWebProtobufsE2E.ContextInfo.QuestionReplyQuotedMessage.quotedQuestion:type_name -> WAWebProtobufsE2E.Message
23173
+ 111, // 408: WAWebProtobufsE2E.ContextInfo.QuestionReplyQuotedMessage.quotedResponse:type_name -> WAWebProtobufsE2E.Message
23174
+ 246, // 409: WAWebProtobufsE2E.ContextInfo.DataSharingContext.Parameters.contents:type_name -> WAWebProtobufsE2E.ContextInfo.DataSharingContext.Parameters
23175
+ 64, // 410: WAWebProtobufsE2E.HydratedTemplateButton.HydratedURLButton.webviewPresentation:type_name -> WAWebProtobufsE2E.HydratedTemplateButton.HydratedURLButton.WebviewPresentationType
23176
+ 101, // 411: WAWebProtobufsE2E.ProductMessage.ProductSnapshot.productImage:type_name -> WAWebProtobufsE2E.ImageMessage
23177
+ 101, // 412: WAWebProtobufsE2E.ProductMessage.CatalogSnapshot.catalogImage:type_name -> WAWebProtobufsE2E.ImageMessage
23178
+ 161, // 413: WAWebProtobufsE2E.TemplateMessage.HydratedFourRowTemplate.documentMessage:type_name -> WAWebProtobufsE2E.DocumentMessage
23179
+ 101, // 414: WAWebProtobufsE2E.TemplateMessage.HydratedFourRowTemplate.imageMessage:type_name -> WAWebProtobufsE2E.ImageMessage
23180
+ 95, // 415: WAWebProtobufsE2E.TemplateMessage.HydratedFourRowTemplate.videoMessage:type_name -> WAWebProtobufsE2E.VideoMessage
23181
+ 165, // 416: WAWebProtobufsE2E.TemplateMessage.HydratedFourRowTemplate.locationMessage:type_name -> WAWebProtobufsE2E.LocationMessage
23182
+ 107, // 417: WAWebProtobufsE2E.TemplateMessage.HydratedFourRowTemplate.hydratedButtons:type_name -> WAWebProtobufsE2E.HydratedTemplateButton
23183
+ 161, // 418: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate.documentMessage:type_name -> WAWebProtobufsE2E.DocumentMessage
23184
+ 89, // 419: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate.highlyStructuredMessage:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
23185
+ 101, // 420: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate.imageMessage:type_name -> WAWebProtobufsE2E.ImageMessage
23186
+ 95, // 421: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate.videoMessage:type_name -> WAWebProtobufsE2E.VideoMessage
23187
+ 165, // 422: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate.locationMessage:type_name -> WAWebProtobufsE2E.LocationMessage
23188
+ 89, // 423: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate.content:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
23189
+ 89, // 424: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate.footer:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
23190
+ 176, // 425: WAWebProtobufsE2E.TemplateMessage.FourRowTemplate.buttons:type_name -> WAWebProtobufsE2E.TemplateButton
23191
+ 89, // 426: WAWebProtobufsE2E.TemplateButton.CallButton.displayText:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
23192
+ 89, // 427: WAWebProtobufsE2E.TemplateButton.CallButton.phoneNumber:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
23193
+ 89, // 428: WAWebProtobufsE2E.TemplateButton.URLButton.displayText:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
23194
+ 89, // 429: WAWebProtobufsE2E.TemplateButton.URLButton.URL:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
23195
+ 89, // 430: WAWebProtobufsE2E.TemplateButton.QuickReplyButton.displayText:type_name -> WAWebProtobufsE2E.HighlyStructuredMessage
23122
23196
  431, // [431:431] is the sub-list for method output_type
23123
23197
  431, // [431:431] is the sub-list for method input_type
23124
23198
  431, // [431:431] is the sub-list for extension type_name
@@ -23161,7 +23235,7 @@ func file_waE2E_WAWebProtobufsE2E_proto_init() {
23161
23235
  (*HydratedTemplateButton_UrlButton)(nil),
23162
23236
  (*HydratedTemplateButton_CallButton)(nil),
23163
23237
  }
23164
- file_waE2E_WAWebProtobufsE2E_proto_msgTypes[71].OneofWrappers = []any{
23238
+ file_waE2E_WAWebProtobufsE2E_proto_msgTypes[70].OneofWrappers = []any{
23165
23239
  (*TemplateMessage_FourRowTemplate_)(nil),
23166
23240
  (*TemplateMessage_HydratedFourRowTemplate_)(nil),
23167
23241
  (*TemplateMessage_InteractiveMessageTemplate)(nil),
@@ -23213,7 +23287,7 @@ func file_waE2E_WAWebProtobufsE2E_proto_init() {
23213
23287
  File: protoimpl.DescBuilder{
23214
23288
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
23215
23289
  RawDescriptor: unsafe.Slice(unsafe.StringData(file_waE2E_WAWebProtobufsE2E_proto_rawDesc), len(file_waE2E_WAWebProtobufsE2E_proto_rawDesc)),
23216
- NumEnums: 68,
23290
+ NumEnums: 69,
23217
23291
  NumMessages: 192,
23218
23292
  NumExtensions: 0,
23219
23293
  NumServices: 0,