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
@@ -42,6 +42,8 @@ enum BotMetricsEntryPoint {
42
42
  MESSAGE_QUICK_ACTION_GROUP_CHAT = 34;
43
43
  ATTACHMENT_TRAY_1_ON_1_CHAT = 35;
44
44
  ATTACHMENT_TRAY_GROUP_CHAT = 36;
45
+ ASK_META_AI_MEDIA_VIEWER_1ON1 = 37;
46
+ ASK_META_AI_MEDIA_VIEWER_GROUP = 38;
45
47
  }
46
48
 
47
49
  enum BotMetricsThreadEntryPoint {
@@ -193,6 +195,7 @@ message BotModelMetadata {
193
195
 
194
196
  optional ModelType modelType = 1;
195
197
  optional PremiumModelStatus premiumModelStatus = 2;
198
+ optional string modelNameOverride = 3;
196
199
  }
197
200
 
198
201
  message BotProgressIndicatorMetadata {
@@ -298,6 +301,10 @@ message BotCapabilityMetadata {
298
301
  RICH_RESPONSE_UR_INLINE_REELS_ENABLED = 43;
299
302
  RICH_RESPONSE_UR_MEDIA_GRID_ENABLED = 44;
300
303
  RICH_RESPONSE_UR_TIMESTAMP_PLACEHOLDER = 45;
304
+ RICH_RESPONSE_IN_APP_SURVEY = 46;
305
+ AI_RESPONSE_MODEL_BRANDING = 47;
306
+ SESSION_TRANSPARENCY_SYSTEM_MESSAGE = 48;
307
+ RICH_RESPONSE_UR_REASONING = 49;
301
308
  }
302
309
 
303
310
  repeated BotCapabilityType capabilities = 1;
@@ -440,9 +447,43 @@ message BotFeedbackMessage {
440
447
  }
441
448
 
442
449
  message SideBySideSurveyMetadata {
450
+ message SidebySideSurveyMetaAiAnalyticsData {
451
+ message SideBySideSurveyAbandonEventData {
452
+ optional string abandonDwellTimeMSString = 1;
453
+ }
454
+
455
+ message SideBySideSurveyResponseEventData {
456
+ optional string responseDwellTimeMSString = 1;
457
+ optional string selectedResponseID = 2;
458
+ }
459
+
460
+ message SideBySideSurveyCardImpressionEventData {
461
+ }
462
+
463
+ message SideBySideSurveyCTAClickEventData {
464
+ optional bool isSurveyExpired = 1;
465
+ optional string clickDwellTimeMSString = 2;
466
+ }
467
+
468
+ message SideBySideSurveyCTAImpressionEventData {
469
+ optional bool isSurveyExpired = 1;
470
+ }
471
+
472
+ optional uint32 surveyID = 1;
473
+ optional string primaryResponseID = 2;
474
+ optional string testArmName = 3;
475
+ optional string timestampMSString = 4;
476
+ optional SideBySideSurveyCTAImpressionEventData ctaImpressionEvent = 5;
477
+ optional SideBySideSurveyCTAClickEventData ctaClickEvent = 6;
478
+ optional SideBySideSurveyCardImpressionEventData cardImpressionEvent = 7;
479
+ optional SideBySideSurveyResponseEventData responseEvent = 8;
480
+ optional SideBySideSurveyAbandonEventData abandonEvent = 9;
481
+ }
482
+
443
483
  message SideBySideSurveyAnalyticsData {
444
484
  optional string tessaEvent = 1;
445
485
  optional string tessaSessionFbid = 2;
486
+ optional string simonSessionFbid = 3;
446
487
  }
447
488
 
448
489
  optional string selectedRequestID = 1;
@@ -453,6 +494,7 @@ message BotFeedbackMessage {
453
494
  optional bool isSelectedResponsePrimary = 6;
454
495
  optional string messageIDToEdit = 7;
455
496
  optional SideBySideSurveyAnalyticsData analyticsData = 8;
497
+ optional SidebySideSurveyMetaAiAnalyticsData metaAiAnalyticsData = 9;
456
498
  }
457
499
 
458
500
  optional WACommon.MessageKey messageKey = 1;
@@ -532,6 +574,29 @@ message AIRichResponseContentItemsMetadata {
532
574
  optional ContentType contentType = 2;
533
575
  }
534
576
 
577
+ message AIHomeState {
578
+ message AIHomeOption {
579
+ enum AIHomeActionType {
580
+ PROMPT = 0;
581
+ CREATE_IMAGE = 1;
582
+ ANIMATE_PHOTO = 2;
583
+ ANALYZE_FILE = 3;
584
+ }
585
+
586
+ optional AIHomeActionType type = 1;
587
+ optional string title = 2;
588
+ optional string promptText = 3;
589
+ optional string sessionID = 4;
590
+ optional string imageWdsIdentifier = 5;
591
+ optional string imageTintColor = 6;
592
+ optional string imageBackgroundColor = 7;
593
+ }
594
+
595
+ optional int64 lastFetchTime = 1;
596
+ repeated AIHomeOption capabilityOptions = 2;
597
+ repeated AIHomeOption conversationOptions = 3;
598
+ }
599
+
535
600
  message BotAvatarMetadata {
536
601
  optional uint32 sentiment = 1;
537
602
  optional string behaviorGraph = 2;
@@ -651,6 +716,7 @@ message BotUnifiedResponseMutation {
651
716
 
652
717
  message SideBySideMetadata {
653
718
  optional string primaryResponseID = 1;
719
+ optional bool surveyCtaHasRendered = 2;
654
720
  }
655
721
 
656
722
  optional SideBySideMetadata sbsMetadata = 1;
@@ -689,6 +755,8 @@ message BotMetadata {
689
755
  optional BotMessageOriginMetadata botMessageOriginMetadata = 29;
690
756
  optional InThreadSurveyMetadata inThreadSurveyMetadata = 30;
691
757
  optional AIThreadInfo botThreadInfo = 31;
758
+ optional AIRegenerateMetadata regenerateMetadata = 32;
759
+ optional SessionTransparencyMetadata sessionTransparencyMetadata = 33;
692
760
  optional bytes internalMetadata = 999;
693
761
  }
694
762
 
@@ -774,3 +842,13 @@ message AIRichResponseSubMessage {
774
842
  optional AIRichResponseMapMetadata mapMetadata = 9;
775
843
  optional AIRichResponseContentItemsMetadata contentItemsMetadata = 10;
776
844
  }
845
+
846
+ message AIRegenerateMetadata {
847
+ optional WACommon.MessageKey messageKey = 1;
848
+ optional int64 responseTimestampMS = 2;
849
+ }
850
+
851
+ message SessionTransparencyMetadata {
852
+ optional string disclaimerText = 1;
853
+ optional string hcaID = 2;
854
+ }
@@ -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: waAdv/WAAdv.proto
6
6
 
@@ -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: waArmadilloApplication/WAArmadilloApplication.proto
6
6
 
@@ -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: waArmadilloXMA/WAArmadilloXMA.proto
6
6
 
@@ -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: waCert/WACert.proto
6
6
 
@@ -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: waChatLockSettings/WAProtobufsChatLockSettings.proto
6
6
 
@@ -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: waCommon/WACommon.proto
6
6
 
@@ -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: waCompanionReg/WACompanionReg.proto
6
6
 
@@ -622,6 +622,8 @@ type DeviceProps_HistorySyncConfig struct {
622
622
  SupportGroupHistory *bool `protobuf:"varint,15,opt,name=supportGroupHistory" json:"supportGroupHistory,omitempty"`
623
623
  OnDemandReady *bool `protobuf:"varint,16,opt,name=onDemandReady" json:"onDemandReady,omitempty"`
624
624
  SupportGuestChat *bool `protobuf:"varint,17,opt,name=supportGuestChat" json:"supportGuestChat,omitempty"`
625
+ CompleteOnDemandReady *bool `protobuf:"varint,18,opt,name=completeOnDemandReady" json:"completeOnDemandReady,omitempty"`
626
+ ThumbnailSyncDaysLimit *uint32 `protobuf:"varint,19,opt,name=thumbnailSyncDaysLimit" json:"thumbnailSyncDaysLimit,omitempty"`
625
627
  unknownFields protoimpl.UnknownFields
626
628
  sizeCache protoimpl.SizeCache
627
629
  }
@@ -775,6 +777,20 @@ func (x *DeviceProps_HistorySyncConfig) GetSupportGuestChat() bool {
775
777
  return false
776
778
  }
777
779
 
780
+ func (x *DeviceProps_HistorySyncConfig) GetCompleteOnDemandReady() bool {
781
+ if x != nil && x.CompleteOnDemandReady != nil {
782
+ return *x.CompleteOnDemandReady
783
+ }
784
+ return false
785
+ }
786
+
787
+ func (x *DeviceProps_HistorySyncConfig) GetThumbnailSyncDaysLimit() uint32 {
788
+ if x != nil && x.ThumbnailSyncDaysLimit != nil {
789
+ return *x.ThumbnailSyncDaysLimit
790
+ }
791
+ return 0
792
+ }
793
+
778
794
  type DeviceProps_AppVersion struct {
779
795
  state protoimpl.MessageState `protogen:"open.v1"`
780
796
  Primary *uint32 `protobuf:"varint,1,opt,name=primary" json:"primary,omitempty"`
@@ -855,13 +871,13 @@ var File_waCompanionReg_WACompanionReg_proto protoreflect.FileDescriptor
855
871
 
856
872
  const file_waCompanionReg_WACompanionReg_proto_rawDesc = "" +
857
873
  "\n" +
858
- "#waCompanionReg/WACompanionReg.proto\x12\x0eWACompanionReg\"\x99\x0e\n" +
874
+ "#waCompanionReg/WACompanionReg.proto\x12\x0eWACompanionReg\"\x87\x0f\n" +
859
875
  "\vDeviceProps\x12\x0e\n" +
860
876
  "\x02os\x18\x01 \x01(\tR\x02os\x12@\n" +
861
877
  "\aversion\x18\x02 \x01(\v2&.WACompanionReg.DeviceProps.AppVersionR\aversion\x12L\n" +
862
878
  "\fplatformType\x18\x03 \x01(\x0e2(.WACompanionReg.DeviceProps.PlatformTypeR\fplatformType\x12(\n" +
863
879
  "\x0frequireFullSync\x18\x04 \x01(\bR\x0frequireFullSync\x12[\n" +
864
- "\x11historySyncConfig\x18\x05 \x01(\v2-.WACompanionReg.DeviceProps.HistorySyncConfigR\x11historySyncConfig\x1a\xe3\a\n" +
880
+ "\x11historySyncConfig\x18\x05 \x01(\v2-.WACompanionReg.DeviceProps.HistorySyncConfigR\x11historySyncConfig\x1a\xd1\b\n" +
865
881
  "\x11HistorySyncConfig\x12,\n" +
866
882
  "\x11fullSyncDaysLimit\x18\x01 \x01(\rR\x11fullSyncDaysLimit\x120\n" +
867
883
  "\x13fullSyncSizeMbLimit\x18\x02 \x01(\rR\x13fullSyncSizeMbLimit\x12&\n" +
@@ -880,7 +896,9 @@ const file_waCompanionReg_WACompanionReg_proto_rawDesc = "" +
880
896
  "\x19supportMessageAssociation\x18\x0e \x01(\bR\x19supportMessageAssociation\x120\n" +
881
897
  "\x13supportGroupHistory\x18\x0f \x01(\bR\x13supportGroupHistory\x12$\n" +
882
898
  "\ronDemandReady\x18\x10 \x01(\bR\ronDemandReady\x12*\n" +
883
- "\x10supportGuestChat\x18\x11 \x01(\bR\x10supportGuestChat\x1a\x9a\x01\n" +
899
+ "\x10supportGuestChat\x18\x11 \x01(\bR\x10supportGuestChat\x124\n" +
900
+ "\x15completeOnDemandReady\x18\x12 \x01(\bR\x15completeOnDemandReady\x126\n" +
901
+ "\x16thumbnailSyncDaysLimit\x18\x13 \x01(\rR\x16thumbnailSyncDaysLimit\x1a\x9a\x01\n" +
884
902
  "\n" +
885
903
  "AppVersion\x12\x18\n" +
886
904
  "\aprimary\x18\x01 \x01(\rR\aprimary\x12\x1c\n" +
@@ -49,6 +49,8 @@ message DeviceProps {
49
49
  optional bool supportGroupHistory = 15;
50
50
  optional bool onDemandReady = 16;
51
51
  optional bool supportGuestChat = 17;
52
+ optional bool completeOnDemandReady = 18;
53
+ optional uint32 thumbnailSyncDaysLimit = 19;
52
54
  }
53
55
 
54
56
  message AppVersion {
@@ -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: waConsumerApplication/WAConsumerApplication.proto
6
6
 
@@ -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: waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto
6
6
 
@@ -22,6 +22,65 @@ const (
22
22
  _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
23
23
  )
24
24
 
25
+ type DeviceCapabilities_MemberNameTagPrimarySupport int32
26
+
27
+ const (
28
+ DeviceCapabilities_DISABLED DeviceCapabilities_MemberNameTagPrimarySupport = 0
29
+ DeviceCapabilities_RECEIVER_ENABLED DeviceCapabilities_MemberNameTagPrimarySupport = 1
30
+ DeviceCapabilities_SENDER_ENABLED DeviceCapabilities_MemberNameTagPrimarySupport = 2
31
+ )
32
+
33
+ // Enum value maps for DeviceCapabilities_MemberNameTagPrimarySupport.
34
+ var (
35
+ DeviceCapabilities_MemberNameTagPrimarySupport_name = map[int32]string{
36
+ 0: "DISABLED",
37
+ 1: "RECEIVER_ENABLED",
38
+ 2: "SENDER_ENABLED",
39
+ }
40
+ DeviceCapabilities_MemberNameTagPrimarySupport_value = map[string]int32{
41
+ "DISABLED": 0,
42
+ "RECEIVER_ENABLED": 1,
43
+ "SENDER_ENABLED": 2,
44
+ }
45
+ )
46
+
47
+ func (x DeviceCapabilities_MemberNameTagPrimarySupport) Enum() *DeviceCapabilities_MemberNameTagPrimarySupport {
48
+ p := new(DeviceCapabilities_MemberNameTagPrimarySupport)
49
+ *p = x
50
+ return p
51
+ }
52
+
53
+ func (x DeviceCapabilities_MemberNameTagPrimarySupport) String() string {
54
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
55
+ }
56
+
57
+ func (DeviceCapabilities_MemberNameTagPrimarySupport) Descriptor() protoreflect.EnumDescriptor {
58
+ return file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_enumTypes[0].Descriptor()
59
+ }
60
+
61
+ func (DeviceCapabilities_MemberNameTagPrimarySupport) Type() protoreflect.EnumType {
62
+ return &file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_enumTypes[0]
63
+ }
64
+
65
+ func (x DeviceCapabilities_MemberNameTagPrimarySupport) Number() protoreflect.EnumNumber {
66
+ return protoreflect.EnumNumber(x)
67
+ }
68
+
69
+ // Deprecated: Do not use.
70
+ func (x *DeviceCapabilities_MemberNameTagPrimarySupport) UnmarshalJSON(b []byte) error {
71
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
72
+ if err != nil {
73
+ return err
74
+ }
75
+ *x = DeviceCapabilities_MemberNameTagPrimarySupport(num)
76
+ return nil
77
+ }
78
+
79
+ // Deprecated: Use DeviceCapabilities_MemberNameTagPrimarySupport.Descriptor instead.
80
+ func (DeviceCapabilities_MemberNameTagPrimarySupport) EnumDescriptor() ([]byte, []int) {
81
+ return file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_rawDescGZIP(), []int{0, 0}
82
+ }
83
+
25
84
  type DeviceCapabilities_ChatLockSupportLevel int32
26
85
 
27
86
  const (
@@ -55,11 +114,11 @@ func (x DeviceCapabilities_ChatLockSupportLevel) String() string {
55
114
  }
56
115
 
57
116
  func (DeviceCapabilities_ChatLockSupportLevel) Descriptor() protoreflect.EnumDescriptor {
58
- return file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_enumTypes[0].Descriptor()
117
+ return file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_enumTypes[1].Descriptor()
59
118
  }
60
119
 
61
120
  func (DeviceCapabilities_ChatLockSupportLevel) Type() protoreflect.EnumType {
62
- return &file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_enumTypes[0]
121
+ return &file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_enumTypes[1]
63
122
  }
64
123
 
65
124
  func (x DeviceCapabilities_ChatLockSupportLevel) Number() protoreflect.EnumNumber {
@@ -78,17 +137,18 @@ func (x *DeviceCapabilities_ChatLockSupportLevel) UnmarshalJSON(b []byte) error
78
137
 
79
138
  // Deprecated: Use DeviceCapabilities_ChatLockSupportLevel.Descriptor instead.
80
139
  func (DeviceCapabilities_ChatLockSupportLevel) EnumDescriptor() ([]byte, []int) {
81
- return file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_rawDescGZIP(), []int{0, 0}
140
+ return file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_rawDescGZIP(), []int{0, 1}
82
141
  }
83
142
 
84
143
  type DeviceCapabilities struct {
85
- state protoimpl.MessageState `protogen:"open.v1"`
86
- ChatLockSupportLevel *DeviceCapabilities_ChatLockSupportLevel `protobuf:"varint,1,opt,name=chatLockSupportLevel,enum=WAProtobufsDeviceCapabilities.DeviceCapabilities_ChatLockSupportLevel" json:"chatLockSupportLevel,omitempty"`
87
- LidMigration *DeviceCapabilities_LIDMigration `protobuf:"bytes,2,opt,name=lidMigration" json:"lidMigration,omitempty"`
88
- BusinessBroadcast *DeviceCapabilities_BusinessBroadcast `protobuf:"bytes,3,opt,name=businessBroadcast" json:"businessBroadcast,omitempty"`
89
- UserHasAvatar *DeviceCapabilities_UserHasAvatar `protobuf:"bytes,4,opt,name=userHasAvatar" json:"userHasAvatar,omitempty"`
90
- unknownFields protoimpl.UnknownFields
91
- sizeCache protoimpl.SizeCache
144
+ state protoimpl.MessageState `protogen:"open.v1"`
145
+ ChatLockSupportLevel *DeviceCapabilities_ChatLockSupportLevel `protobuf:"varint,1,opt,name=chatLockSupportLevel,enum=WAProtobufsDeviceCapabilities.DeviceCapabilities_ChatLockSupportLevel" json:"chatLockSupportLevel,omitempty"`
146
+ LidMigration *DeviceCapabilities_LIDMigration `protobuf:"bytes,2,opt,name=lidMigration" json:"lidMigration,omitempty"`
147
+ BusinessBroadcast *DeviceCapabilities_BusinessBroadcast `protobuf:"bytes,3,opt,name=businessBroadcast" json:"businessBroadcast,omitempty"`
148
+ UserHasAvatar *DeviceCapabilities_UserHasAvatar `protobuf:"bytes,4,opt,name=userHasAvatar" json:"userHasAvatar,omitempty"`
149
+ MemberNameTagPrimarySupport *DeviceCapabilities_MemberNameTagPrimarySupport `protobuf:"varint,5,opt,name=memberNameTagPrimarySupport,enum=WAProtobufsDeviceCapabilities.DeviceCapabilities_MemberNameTagPrimarySupport" json:"memberNameTagPrimarySupport,omitempty"`
150
+ unknownFields protoimpl.UnknownFields
151
+ sizeCache protoimpl.SizeCache
92
152
  }
93
153
 
94
154
  func (x *DeviceCapabilities) Reset() {
@@ -149,6 +209,13 @@ func (x *DeviceCapabilities) GetUserHasAvatar() *DeviceCapabilities_UserHasAvata
149
209
  return nil
150
210
  }
151
211
 
212
+ func (x *DeviceCapabilities) GetMemberNameTagPrimarySupport() DeviceCapabilities_MemberNameTagPrimarySupport {
213
+ if x != nil && x.MemberNameTagPrimarySupport != nil {
214
+ return *x.MemberNameTagPrimarySupport
215
+ }
216
+ return DeviceCapabilities_DISABLED
217
+ }
218
+
152
219
  type DeviceCapabilities_UserHasAvatar struct {
153
220
  state protoimpl.MessageState `protogen:"open.v1"`
154
221
  UserHasAvatar *bool `protobuf:"varint,1,opt,name=userHasAvatar" json:"userHasAvatar,omitempty"`
@@ -285,18 +352,23 @@ var File_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto protoreflect.F
285
352
 
286
353
  const file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_rawDesc = "" +
287
354
  "\n" +
288
- "8waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto\x12\x1dWAProtobufsDeviceCapabilities\"\xcd\x05\n" +
355
+ "8waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto\x12\x1dWAProtobufsDeviceCapabilities\"\xb6\a\n" +
289
356
  "\x12DeviceCapabilities\x12z\n" +
290
357
  "\x14chatLockSupportLevel\x18\x01 \x01(\x0e2F.WAProtobufsDeviceCapabilities.DeviceCapabilities.ChatLockSupportLevelR\x14chatLockSupportLevel\x12b\n" +
291
358
  "\flidMigration\x18\x02 \x01(\v2>.WAProtobufsDeviceCapabilities.DeviceCapabilities.LIDMigrationR\flidMigration\x12q\n" +
292
359
  "\x11businessBroadcast\x18\x03 \x01(\v2C.WAProtobufsDeviceCapabilities.DeviceCapabilities.BusinessBroadcastR\x11businessBroadcast\x12e\n" +
293
- "\ruserHasAvatar\x18\x04 \x01(\v2?.WAProtobufsDeviceCapabilities.DeviceCapabilities.UserHasAvatarR\ruserHasAvatar\x1a5\n" +
360
+ "\ruserHasAvatar\x18\x04 \x01(\v2?.WAProtobufsDeviceCapabilities.DeviceCapabilities.UserHasAvatarR\ruserHasAvatar\x12\x8f\x01\n" +
361
+ "\x1bmemberNameTagPrimarySupport\x18\x05 \x01(\x0e2M.WAProtobufsDeviceCapabilities.DeviceCapabilities.MemberNameTagPrimarySupportR\x1bmemberNameTagPrimarySupport\x1a5\n" +
294
362
  "\rUserHasAvatar\x12$\n" +
295
363
  "\ruserHasAvatar\x18\x01 \x01(\bR\ruserHasAvatar\x1aA\n" +
296
364
  "\x11BusinessBroadcast\x12,\n" +
297
365
  "\x11importListEnabled\x18\x01 \x01(\bR\x11importListEnabled\x1aJ\n" +
298
366
  "\fLIDMigration\x12:\n" +
299
- "\x18chatDbMigrationTimestamp\x18\x01 \x01(\x04R\x18chatDbMigrationTimestamp\"7\n" +
367
+ "\x18chatDbMigrationTimestamp\x18\x01 \x01(\x04R\x18chatDbMigrationTimestamp\"U\n" +
368
+ "\x1bMemberNameTagPrimarySupport\x12\f\n" +
369
+ "\bDISABLED\x10\x00\x12\x14\n" +
370
+ "\x10RECEIVER_ENABLED\x10\x01\x12\x12\n" +
371
+ "\x0eSENDER_ENABLED\x10\x02\"7\n" +
300
372
  "\x14ChatLockSupportLevel\x12\b\n" +
301
373
  "\x04NONE\x10\x00\x12\v\n" +
302
374
  "\aMINIMAL\x10\x01\x12\b\n" +
@@ -314,25 +386,27 @@ func file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_rawDescGZIP()
314
386
  return file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_rawDescData
315
387
  }
316
388
 
317
- var file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
389
+ var file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
318
390
  var file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
319
391
  var file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_goTypes = []any{
320
- (DeviceCapabilities_ChatLockSupportLevel)(0), // 0: WAProtobufsDeviceCapabilities.DeviceCapabilities.ChatLockSupportLevel
321
- (*DeviceCapabilities)(nil), // 1: WAProtobufsDeviceCapabilities.DeviceCapabilities
322
- (*DeviceCapabilities_UserHasAvatar)(nil), // 2: WAProtobufsDeviceCapabilities.DeviceCapabilities.UserHasAvatar
323
- (*DeviceCapabilities_BusinessBroadcast)(nil), // 3: WAProtobufsDeviceCapabilities.DeviceCapabilities.BusinessBroadcast
324
- (*DeviceCapabilities_LIDMigration)(nil), // 4: WAProtobufsDeviceCapabilities.DeviceCapabilities.LIDMigration
392
+ (DeviceCapabilities_MemberNameTagPrimarySupport)(0), // 0: WAProtobufsDeviceCapabilities.DeviceCapabilities.MemberNameTagPrimarySupport
393
+ (DeviceCapabilities_ChatLockSupportLevel)(0), // 1: WAProtobufsDeviceCapabilities.DeviceCapabilities.ChatLockSupportLevel
394
+ (*DeviceCapabilities)(nil), // 2: WAProtobufsDeviceCapabilities.DeviceCapabilities
395
+ (*DeviceCapabilities_UserHasAvatar)(nil), // 3: WAProtobufsDeviceCapabilities.DeviceCapabilities.UserHasAvatar
396
+ (*DeviceCapabilities_BusinessBroadcast)(nil), // 4: WAProtobufsDeviceCapabilities.DeviceCapabilities.BusinessBroadcast
397
+ (*DeviceCapabilities_LIDMigration)(nil), // 5: WAProtobufsDeviceCapabilities.DeviceCapabilities.LIDMigration
325
398
  }
326
399
  var file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_depIdxs = []int32{
327
- 0, // 0: WAProtobufsDeviceCapabilities.DeviceCapabilities.chatLockSupportLevel:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities.ChatLockSupportLevel
328
- 4, // 1: WAProtobufsDeviceCapabilities.DeviceCapabilities.lidMigration:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities.LIDMigration
329
- 3, // 2: WAProtobufsDeviceCapabilities.DeviceCapabilities.businessBroadcast:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities.BusinessBroadcast
330
- 2, // 3: WAProtobufsDeviceCapabilities.DeviceCapabilities.userHasAvatar:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities.UserHasAvatar
331
- 4, // [4:4] is the sub-list for method output_type
332
- 4, // [4:4] is the sub-list for method input_type
333
- 4, // [4:4] is the sub-list for extension type_name
334
- 4, // [4:4] is the sub-list for extension extendee
335
- 0, // [0:4] is the sub-list for field type_name
400
+ 1, // 0: WAProtobufsDeviceCapabilities.DeviceCapabilities.chatLockSupportLevel:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities.ChatLockSupportLevel
401
+ 5, // 1: WAProtobufsDeviceCapabilities.DeviceCapabilities.lidMigration:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities.LIDMigration
402
+ 4, // 2: WAProtobufsDeviceCapabilities.DeviceCapabilities.businessBroadcast:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities.BusinessBroadcast
403
+ 3, // 3: WAProtobufsDeviceCapabilities.DeviceCapabilities.userHasAvatar:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities.UserHasAvatar
404
+ 0, // 4: WAProtobufsDeviceCapabilities.DeviceCapabilities.memberNameTagPrimarySupport:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities.MemberNameTagPrimarySupport
405
+ 5, // [5:5] is the sub-list for method output_type
406
+ 5, // [5:5] is the sub-list for method input_type
407
+ 5, // [5:5] is the sub-list for extension type_name
408
+ 5, // [5:5] is the sub-list for extension extendee
409
+ 0, // [0:5] is the sub-list for field type_name
336
410
  }
337
411
 
338
412
  func init() { file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_init() }
@@ -345,7 +419,7 @@ func file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_init() {
345
419
  File: protoimpl.DescBuilder{
346
420
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
347
421
  RawDescriptor: unsafe.Slice(unsafe.StringData(file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_rawDesc), len(file_waDeviceCapabilities_WAProtobufsDeviceCapabilities_proto_rawDesc)),
348
- NumEnums: 1,
422
+ NumEnums: 2,
349
423
  NumMessages: 4,
350
424
  NumExtensions: 0,
351
425
  NumServices: 0,
@@ -3,6 +3,12 @@ package WAProtobufsDeviceCapabilities;
3
3
  option go_package = "go.mau.fi/whatsmeow/proto/waDeviceCapabilities";
4
4
 
5
5
  message DeviceCapabilities {
6
+ enum MemberNameTagPrimarySupport {
7
+ DISABLED = 0;
8
+ RECEIVER_ENABLED = 1;
9
+ SENDER_ENABLED = 2;
10
+ }
11
+
6
12
  enum ChatLockSupportLevel {
7
13
  NONE = 0;
8
14
  MINIMAL = 1;
@@ -25,4 +31,5 @@ message DeviceCapabilities {
25
31
  optional LIDMigration lidMigration = 2;
26
32
  optional BusinessBroadcast businessBroadcast = 3;
27
33
  optional UserHasAvatar userHasAvatar = 4;
34
+ optional MemberNameTagPrimarySupport memberNameTagPrimarySupport = 5;
28
35
  }