slidge-whatsapp 0.2.5__cp313-cp313-manylinux_2_36_aarch64.whl → 0.2.7__cp313-cp313-manylinux_2_36_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of slidge-whatsapp might be problematic. Click here for more details.

Files changed (357) hide show
  1. slidge_whatsapp/config.py +3 -0
  2. slidge_whatsapp/event.go +31 -26
  3. slidge_whatsapp/gateway.go +13 -9
  4. slidge_whatsapp/gateway.py +2 -2
  5. slidge_whatsapp/generated/_whatsapp.cpython-313-aarch64-linux-gnu.h +135 -135
  6. slidge_whatsapp/generated/_whatsapp.cpython-313-aarch64-linux-gnu.so +0 -0
  7. slidge_whatsapp/generated/build.py +108 -108
  8. slidge_whatsapp/generated/whatsapp.c +954 -954
  9. slidge_whatsapp/generated/whatsapp.go +602 -602
  10. slidge_whatsapp/generated/whatsapp.py +783 -783
  11. slidge_whatsapp/generated/whatsapp_go.h +135 -135
  12. slidge_whatsapp/go.mod +15 -12
  13. slidge_whatsapp/go.sum +35 -29
  14. slidge_whatsapp/media/media.go +21 -11
  15. slidge_whatsapp/session.go +73 -66
  16. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn.go +4 -4
  17. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_darwin.go +0 -5
  18. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_libinit.go +3 -0
  19. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols.go +40 -20
  20. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/CHANGELOG.md +14 -1
  21. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +2 -2
  22. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/fun.go +10 -2
  23. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib.go +1 -1
  24. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_unix.go +1 -1
  25. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_windows.go +1 -1
  26. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/README.md +2 -7
  27. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/callback.go +2 -1
  28. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +8510 -5090
  29. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +344 -150
  30. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3.go +57 -23
  31. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.c +4 -0
  32. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.go +4 -0
  33. slidge_whatsapp/vendor/github.com/petermattis/goid/.gitignore +4 -0
  34. slidge_whatsapp/vendor/github.com/petermattis/goid/LICENSE +202 -0
  35. slidge_whatsapp/vendor/github.com/petermattis/goid/README.md +4 -0
  36. slidge_whatsapp/vendor/github.com/petermattis/goid/goid.go +35 -0
  37. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_gccgo.go +26 -0
  38. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.3.c +23 -0
  39. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.3.go +22 -0
  40. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.4.go +35 -0
  41. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.4.s +18 -0
  42. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.5.go +28 -0
  43. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.5.s +44 -0
  44. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_slow.go +24 -0
  45. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_gccgo_go1.8.go +17 -0
  46. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.23.go +38 -0
  47. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.5.go +57 -0
  48. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.6.go +43 -0
  49. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.9.go +37 -0
  50. slidge_whatsapp/vendor/github.com/rs/zerolog/CONTRIBUTING.md +43 -0
  51. slidge_whatsapp/vendor/github.com/rs/zerolog/README.md +31 -0
  52. slidge_whatsapp/vendor/github.com/rs/zerolog/console.go +20 -5
  53. slidge_whatsapp/vendor/github.com/rs/zerolog/log/log.go +131 -0
  54. slidge_whatsapp/vendor/github.com/rs/zerolog/log.go +1 -1
  55. slidge_whatsapp/vendor/github.com/rs/zerolog/sampler.go +4 -1
  56. slidge_whatsapp/vendor/github.com/rs/zerolog/writer.go +9 -0
  57. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupCipher.go +17 -6
  58. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupSessionBuilder.go +17 -7
  59. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/store/SenderKeyStore.go +4 -2
  60. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/chain/ChainKey.go +1 -0
  61. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/identity/IdentityKey.go +1 -0
  62. slidge_whatsapp/vendor/go.mau.fi/libsignal/logger/DefaultLogger.go +2 -2
  63. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/FingerprintProtocol.pb.go +3 -2
  64. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/LocalStorageProtocol.pb.go +3 -2
  65. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/WhisperTextProtocol.pb.go +3 -2
  66. slidge_whatsapp/vendor/go.mau.fi/libsignal/session/Session.go +41 -17
  67. slidge_whatsapp/vendor/go.mau.fi/libsignal/session/SessionCipher.go +64 -30
  68. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/IdentityKeyStore.go +5 -3
  69. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/MessageKeyStore.go +6 -4
  70. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/PreKeyStore.go +6 -4
  71. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SessionStore.go +8 -6
  72. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SignedPreKeyStore.go +7 -5
  73. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/connlog.go +257 -0
  74. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/database.go +309 -0
  75. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/iter.go +233 -0
  76. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/json.go +47 -0
  77. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/log.go +129 -0
  78. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/massinsert.go +164 -0
  79. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/queryhelper.go +137 -0
  80. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/reflectscan.go +30 -0
  81. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/transaction.go +180 -0
  82. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgrades.go +250 -0
  83. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgradetable.go +331 -0
  84. slidge_whatsapp/vendor/go.mau.fi/util/exerrors/dualerror.go +33 -0
  85. slidge_whatsapp/vendor/go.mau.fi/util/exerrors/must.go +23 -0
  86. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/cors.go +32 -0
  87. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/handleerrors.go +64 -0
  88. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/json.go +36 -0
  89. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/middleware.go +30 -0
  90. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/networkerror.go +37 -0
  91. slidge_whatsapp/vendor/go.mau.fi/util/exstrings/stringutil.go +76 -0
  92. slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +88 -0
  93. slidge_whatsapp/vendor/go.mau.fi/util/exsync/returnonce.go +25 -0
  94. slidge_whatsapp/vendor/go.mau.fi/util/exsync/ringbuffer.go +139 -0
  95. slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncmap.go +94 -0
  96. slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncset.go +136 -0
  97. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/callermarshal.go +28 -0
  98. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/defaults.go +32 -0
  99. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/generics.go +45 -0
  100. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/writer.go +81 -0
  101. slidge_whatsapp/vendor/go.mau.fi/util/ptr/ptr.go +43 -0
  102. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +27 -26
  103. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +4 -3
  104. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/keys.go +5 -4
  105. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +27 -25
  106. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +40 -7
  107. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/encoder.go +1 -1
  108. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/broadcast.go +5 -4
  109. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +1 -1
  110. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +119 -37
  111. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +29 -11
  112. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +63 -30
  113. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +74 -34
  114. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +1 -0
  115. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +61 -31
  116. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +188 -152
  117. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +3 -2
  118. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaconn.go +5 -3
  119. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaretry.go +2 -1
  120. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +444 -135
  121. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +118 -31
  122. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +78 -42
  123. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +7 -4
  124. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +42 -18
  125. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +9 -5
  126. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +2 -1
  127. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/privacysettings.go +10 -11
  128. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/extra.go +7 -0
  129. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go +983 -0
  130. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.proto +85 -0
  131. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/extra.go +3 -0
  132. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.pb.go +197 -0
  133. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.proto +13 -0
  134. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.pb.go +279 -0
  135. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.proto +21 -0
  136. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.pb.go +137 -0
  137. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.proto +10 -0
  138. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.pb.go +313 -0
  139. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.proto +27 -0
  140. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.pb.go +1299 -0
  141. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto +112 -0
  142. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.pb.go +514 -0
  143. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.proto +47 -0
  144. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.pb.go +123 -0
  145. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.proto +7 -0
  146. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/extra.go +3 -0
  147. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.pb.go +720 -0
  148. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.proto +59 -0
  149. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/extra.go +3 -0
  150. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.pb.go +365 -0
  151. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.proto +33 -0
  152. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.pb.go +1238 -0
  153. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.proto +105 -0
  154. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.go +39 -9
  155. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.go +354 -175
  156. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.proto +5 -5
  157. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +170 -15
  158. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +4 -0
  159. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.go +29 -9
  160. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.go +13 -9
  161. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.go +344 -31
  162. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.proto +26 -0
  163. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/{WAWebProtobufsCompanionReg.pb.go → WACompanionReg.pb.go} +184 -89
  164. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/{WAWebProtobufsCompanionReg.proto → WACompanionReg.proto} +2 -1
  165. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.go +173 -9
  166. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +78 -16
  167. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +5 -0
  168. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +7428 -2151
  169. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +373 -44
  170. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +456 -135
  171. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +14 -0
  172. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.pb.go +198 -0
  173. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.proto +14 -0
  174. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.go +162 -9
  175. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.proto +1 -0
  176. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.go +32 -9
  177. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.proto +1 -0
  178. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.go +192 -52
  179. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.proto +8 -0
  180. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.go +60 -9
  181. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/extra.go +7 -6
  182. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.go +39 -9
  183. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.go +61 -9
  184. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +800 -0
  185. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +72 -0
  186. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +1344 -438
  187. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +52 -0
  188. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.go +27 -9
  189. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.go +59 -9
  190. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +382 -78
  191. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +8 -0
  192. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +563 -9
  193. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +4 -0
  194. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +25 -9
  195. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingfields.json +1 -0
  196. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingtoken.go +176 -0
  197. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +39 -21
  198. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +261 -75
  199. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +28 -16
  200. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +3 -1
  201. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +85 -43
  202. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/signal.go +75 -88
  203. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +86 -65
  204. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/lidmap.go +186 -0
  205. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +291 -167
  206. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +155 -0
  207. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/03-message-secrets.sql +11 -0
  208. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/04-privacy-tokens.sql +8 -0
  209. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/05-account-jid-format.sql +2 -0
  210. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/06-facebook-uuid.sql +2 -0
  211. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/07-account-lid.sql +2 -0
  212. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/08-lid-mapping.sql +5 -0
  213. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/09-decryption-buffer.sql +10 -0
  214. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/10-chat-db-lid-migration-ts.sql +2 -0
  215. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/upgrades.go +22 -0
  216. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +107 -56
  217. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/botmap.go +210 -0
  218. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +13 -2
  219. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/group.go +15 -6
  220. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +7 -8
  221. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +18 -0
  222. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/update.go +3 -2
  223. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/upload.go +1 -1
  224. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +47 -29
  225. slidge_whatsapp/vendor/golang.org/x/exp/LICENSE +27 -0
  226. slidge_whatsapp/vendor/golang.org/x/exp/PATENTS +22 -0
  227. slidge_whatsapp/vendor/golang.org/x/exp/constraints/constraints.go +54 -0
  228. slidge_whatsapp/vendor/golang.org/x/net/http/httpguts/guts.go +50 -0
  229. slidge_whatsapp/vendor/golang.org/x/net/http/httpguts/httplex.go +347 -0
  230. slidge_whatsapp/vendor/golang.org/x/net/http2/.gitignore +2 -0
  231. slidge_whatsapp/vendor/golang.org/x/net/http2/ascii.go +53 -0
  232. slidge_whatsapp/vendor/golang.org/x/net/http2/ciphers.go +641 -0
  233. slidge_whatsapp/vendor/golang.org/x/net/http2/client_conn_pool.go +311 -0
  234. slidge_whatsapp/vendor/golang.org/x/net/http2/config.go +122 -0
  235. slidge_whatsapp/vendor/golang.org/x/net/http2/config_go124.go +61 -0
  236. slidge_whatsapp/vendor/golang.org/x/net/http2/config_pre_go124.go +16 -0
  237. slidge_whatsapp/vendor/golang.org/x/net/http2/databuffer.go +149 -0
  238. slidge_whatsapp/vendor/golang.org/x/net/http2/errors.go +145 -0
  239. slidge_whatsapp/vendor/golang.org/x/net/http2/flow.go +120 -0
  240. slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +1702 -0
  241. slidge_whatsapp/vendor/golang.org/x/net/http2/gotrack.go +170 -0
  242. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/encode.go +245 -0
  243. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/hpack.go +523 -0
  244. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/huffman.go +226 -0
  245. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/static_table.go +188 -0
  246. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/tables.go +403 -0
  247. slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +432 -0
  248. slidge_whatsapp/vendor/golang.org/x/net/http2/pipe.go +184 -0
  249. slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +3350 -0
  250. slidge_whatsapp/vendor/golang.org/x/net/http2/timer.go +20 -0
  251. slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +3287 -0
  252. slidge_whatsapp/vendor/golang.org/x/net/http2/unencrypted.go +32 -0
  253. slidge_whatsapp/vendor/golang.org/x/net/http2/write.go +381 -0
  254. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched.go +251 -0
  255. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_priority.go +451 -0
  256. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_random.go +77 -0
  257. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_roundrobin.go +119 -0
  258. slidge_whatsapp/vendor/golang.org/x/net/idna/go118.go +13 -0
  259. slidge_whatsapp/vendor/golang.org/x/net/idna/idna10.0.0.go +769 -0
  260. slidge_whatsapp/vendor/golang.org/x/net/idna/idna9.0.0.go +717 -0
  261. slidge_whatsapp/vendor/golang.org/x/net/idna/pre_go118.go +11 -0
  262. slidge_whatsapp/vendor/golang.org/x/net/idna/punycode.go +217 -0
  263. slidge_whatsapp/vendor/golang.org/x/net/idna/tables10.0.0.go +4559 -0
  264. slidge_whatsapp/vendor/golang.org/x/net/idna/tables11.0.0.go +4653 -0
  265. slidge_whatsapp/vendor/golang.org/x/net/idna/tables12.0.0.go +4733 -0
  266. slidge_whatsapp/vendor/golang.org/x/net/idna/tables13.0.0.go +4959 -0
  267. slidge_whatsapp/vendor/golang.org/x/net/idna/tables15.0.0.go +5144 -0
  268. slidge_whatsapp/vendor/golang.org/x/net/idna/tables9.0.0.go +4486 -0
  269. slidge_whatsapp/vendor/golang.org/x/net/idna/trie.go +51 -0
  270. slidge_whatsapp/vendor/golang.org/x/net/idna/trie12.0.0.go +30 -0
  271. slidge_whatsapp/vendor/golang.org/x/net/idna/trie13.0.0.go +30 -0
  272. slidge_whatsapp/vendor/golang.org/x/net/idna/trieval.go +119 -0
  273. slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/ascii.go +53 -0
  274. slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/headermap.go +115 -0
  275. slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/request.go +467 -0
  276. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +148 -1
  277. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +16 -26
  278. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go +84 -0
  279. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s +20 -0
  280. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go +84 -0
  281. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s +20 -0
  282. slidge_whatsapp/vendor/golang.org/x/sys/windows/security_windows.go +44 -5
  283. slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +4 -2
  284. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +239 -0
  285. slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +9 -0
  286. slidge_whatsapp/vendor/golang.org/x/text/LICENSE +27 -0
  287. slidge_whatsapp/vendor/golang.org/x/text/PATENTS +22 -0
  288. slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule.go +336 -0
  289. slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go +11 -0
  290. slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go +14 -0
  291. slidge_whatsapp/vendor/golang.org/x/text/transform/transform.go +709 -0
  292. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bidi.go +359 -0
  293. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bracket.go +335 -0
  294. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/core.go +1071 -0
  295. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/prop.go +206 -0
  296. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go +1815 -0
  297. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go +1887 -0
  298. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go +1923 -0
  299. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go +1955 -0
  300. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables15.0.0.go +2042 -0
  301. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go +1781 -0
  302. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/trieval.go +48 -0
  303. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/composition.go +512 -0
  304. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/forminfo.go +279 -0
  305. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/input.go +109 -0
  306. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/iter.go +458 -0
  307. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/normalize.go +610 -0
  308. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/readwriter.go +125 -0
  309. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables10.0.0.go +7657 -0
  310. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go +7693 -0
  311. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go +7710 -0
  312. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables13.0.0.go +7760 -0
  313. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables15.0.0.go +7907 -0
  314. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go +7637 -0
  315. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/transform.go +88 -0
  316. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/trie.go +54 -0
  317. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
  318. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +3 -0
  319. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +16 -0
  320. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/{strings_unsafe_go121.go → strings_unsafe.go} +0 -2
  321. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +1 -1
  322. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/merge.go +6 -0
  323. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go +2 -0
  324. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/{value_unsafe_go121.go → value_unsafe.go} +0 -2
  325. slidge_whatsapp/vendor/modules.txt +52 -13
  326. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/METADATA +1 -1
  327. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/RECORD +330 -184
  328. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/WHEEL +1 -1
  329. slidge_whatsapp/vendor/github.com/rs/zerolog/CNAME +0 -1
  330. slidge_whatsapp/vendor/github.com/rs/zerolog/_config.yml +0 -1
  331. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.raw +0 -0
  332. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.raw +0 -0
  333. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.raw +0 -0
  334. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.raw +0 -23
  335. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.raw +0 -7
  336. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.raw +0 -0
  337. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.pb.raw +0 -0
  338. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.raw +0 -0
  339. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.raw +0 -0
  340. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.raw +0 -0
  341. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.raw +0 -0
  342. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.raw +0 -0
  343. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.raw +0 -0
  344. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.raw +0 -0
  345. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.raw +0 -0
  346. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.raw +0 -0
  347. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.raw +0 -0
  348. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.raw +0 -0
  349. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.raw +0 -0
  350. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.raw +0 -0
  351. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.raw +0 -0
  352. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.raw +0 -0
  353. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrade.go +0 -296
  354. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe_go120.go +0 -94
  355. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe_go120.go +0 -98
  356. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/LICENSE +0 -0
  357. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/entry_points.txt +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.1
3
+ // protoc-gen-go v1.36.6
4
4
  // protoc v3.21.12
5
5
  // source: waSyncAction/WASyncAction.proto
6
6
 
@@ -9,6 +9,7 @@ package waSyncAction
9
9
  import (
10
10
  reflect "reflect"
11
11
  sync "sync"
12
+ unsafe "unsafe"
12
13
 
13
14
  protoreflect "google.golang.org/protobuf/reflect/protoreflect"
14
15
  protoimpl "google.golang.org/protobuf/runtime/protoimpl"
@@ -16,8 +17,6 @@ import (
16
17
  waChatLockSettings "go.mau.fi/whatsmeow/proto/waChatLockSettings"
17
18
  waCommon "go.mau.fi/whatsmeow/proto/waCommon"
18
19
  waDeviceCapabilities "go.mau.fi/whatsmeow/proto/waDeviceCapabilities"
19
-
20
- _ "embed"
21
20
  )
22
21
 
23
22
  const (
@@ -231,6 +230,121 @@ func (CallLogRecord_CallResult) EnumDescriptor() ([]byte, []int) {
231
230
  return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{0, 2}
232
231
  }
233
232
 
233
+ type PaymentTosAction_PaymentNotice int32
234
+
235
+ const (
236
+ PaymentTosAction_BR_PAY_PRIVACY_POLICY PaymentTosAction_PaymentNotice = 0
237
+ )
238
+
239
+ // Enum value maps for PaymentTosAction_PaymentNotice.
240
+ var (
241
+ PaymentTosAction_PaymentNotice_name = map[int32]string{
242
+ 0: "BR_PAY_PRIVACY_POLICY",
243
+ }
244
+ PaymentTosAction_PaymentNotice_value = map[string]int32{
245
+ "BR_PAY_PRIVACY_POLICY": 0,
246
+ }
247
+ )
248
+
249
+ func (x PaymentTosAction_PaymentNotice) Enum() *PaymentTosAction_PaymentNotice {
250
+ p := new(PaymentTosAction_PaymentNotice)
251
+ *p = x
252
+ return p
253
+ }
254
+
255
+ func (x PaymentTosAction_PaymentNotice) String() string {
256
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
257
+ }
258
+
259
+ func (PaymentTosAction_PaymentNotice) Descriptor() protoreflect.EnumDescriptor {
260
+ return file_waSyncAction_WASyncAction_proto_enumTypes[3].Descriptor()
261
+ }
262
+
263
+ func (PaymentTosAction_PaymentNotice) Type() protoreflect.EnumType {
264
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[3]
265
+ }
266
+
267
+ func (x PaymentTosAction_PaymentNotice) Number() protoreflect.EnumNumber {
268
+ return protoreflect.EnumNumber(x)
269
+ }
270
+
271
+ // Deprecated: Do not use.
272
+ func (x *PaymentTosAction_PaymentNotice) UnmarshalJSON(b []byte) error {
273
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
274
+ if err != nil {
275
+ return err
276
+ }
277
+ *x = PaymentTosAction_PaymentNotice(num)
278
+ return nil
279
+ }
280
+
281
+ // Deprecated: Use PaymentTosAction_PaymentNotice.Descriptor instead.
282
+ func (PaymentTosAction_PaymentNotice) EnumDescriptor() ([]byte, []int) {
283
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1, 0}
284
+ }
285
+
286
+ type NotificationActivitySettingAction_NotificationActivitySetting int32
287
+
288
+ const (
289
+ NotificationActivitySettingAction_DEFAULT_ALL_MESSAGES NotificationActivitySettingAction_NotificationActivitySetting = 0
290
+ NotificationActivitySettingAction_ALL_MESSAGES NotificationActivitySettingAction_NotificationActivitySetting = 1
291
+ NotificationActivitySettingAction_HIGHLIGHTS NotificationActivitySettingAction_NotificationActivitySetting = 2
292
+ NotificationActivitySettingAction_DEFAULT_HIGHLIGHTS NotificationActivitySettingAction_NotificationActivitySetting = 3
293
+ )
294
+
295
+ // Enum value maps for NotificationActivitySettingAction_NotificationActivitySetting.
296
+ var (
297
+ NotificationActivitySettingAction_NotificationActivitySetting_name = map[int32]string{
298
+ 0: "DEFAULT_ALL_MESSAGES",
299
+ 1: "ALL_MESSAGES",
300
+ 2: "HIGHLIGHTS",
301
+ 3: "DEFAULT_HIGHLIGHTS",
302
+ }
303
+ NotificationActivitySettingAction_NotificationActivitySetting_value = map[string]int32{
304
+ "DEFAULT_ALL_MESSAGES": 0,
305
+ "ALL_MESSAGES": 1,
306
+ "HIGHLIGHTS": 2,
307
+ "DEFAULT_HIGHLIGHTS": 3,
308
+ }
309
+ )
310
+
311
+ func (x NotificationActivitySettingAction_NotificationActivitySetting) Enum() *NotificationActivitySettingAction_NotificationActivitySetting {
312
+ p := new(NotificationActivitySettingAction_NotificationActivitySetting)
313
+ *p = x
314
+ return p
315
+ }
316
+
317
+ func (x NotificationActivitySettingAction_NotificationActivitySetting) String() string {
318
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
319
+ }
320
+
321
+ func (NotificationActivitySettingAction_NotificationActivitySetting) Descriptor() protoreflect.EnumDescriptor {
322
+ return file_waSyncAction_WASyncAction_proto_enumTypes[4].Descriptor()
323
+ }
324
+
325
+ func (NotificationActivitySettingAction_NotificationActivitySetting) Type() protoreflect.EnumType {
326
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[4]
327
+ }
328
+
329
+ func (x NotificationActivitySettingAction_NotificationActivitySetting) Number() protoreflect.EnumNumber {
330
+ return protoreflect.EnumNumber(x)
331
+ }
332
+
333
+ // Deprecated: Do not use.
334
+ func (x *NotificationActivitySettingAction_NotificationActivitySetting) UnmarshalJSON(b []byte) error {
335
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
336
+ if err != nil {
337
+ return err
338
+ }
339
+ *x = NotificationActivitySettingAction_NotificationActivitySetting(num)
340
+ return nil
341
+ }
342
+
343
+ // Deprecated: Use NotificationActivitySettingAction_NotificationActivitySetting.Descriptor instead.
344
+ func (NotificationActivitySettingAction_NotificationActivitySetting) EnumDescriptor() ([]byte, []int) {
345
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2, 0}
346
+ }
347
+
234
348
  type WaffleAccountLinkStateAction_AccountLinkState int32
235
349
 
236
350
  const (
@@ -258,11 +372,11 @@ func (x WaffleAccountLinkStateAction_AccountLinkState) String() string {
258
372
  }
259
373
 
260
374
  func (WaffleAccountLinkStateAction_AccountLinkState) Descriptor() protoreflect.EnumDescriptor {
261
- return file_waSyncAction_WASyncAction_proto_enumTypes[3].Descriptor()
375
+ return file_waSyncAction_WASyncAction_proto_enumTypes[5].Descriptor()
262
376
  }
263
377
 
264
378
  func (WaffleAccountLinkStateAction_AccountLinkState) Type() protoreflect.EnumType {
265
- return &file_waSyncAction_WASyncAction_proto_enumTypes[3]
379
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[5]
266
380
  }
267
381
 
268
382
  func (x WaffleAccountLinkStateAction_AccountLinkState) Number() protoreflect.EnumNumber {
@@ -281,7 +395,7 @@ func (x *WaffleAccountLinkStateAction_AccountLinkState) UnmarshalJSON(b []byte)
281
395
 
282
396
  // Deprecated: Use WaffleAccountLinkStateAction_AccountLinkState.Descriptor instead.
283
397
  func (WaffleAccountLinkStateAction_AccountLinkState) EnumDescriptor() ([]byte, []int) {
284
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1, 0}
398
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3, 0}
285
399
  }
286
400
 
287
401
  type MerchantPaymentPartnerAction_Status int32
@@ -314,11 +428,11 @@ func (x MerchantPaymentPartnerAction_Status) String() string {
314
428
  }
315
429
 
316
430
  func (MerchantPaymentPartnerAction_Status) Descriptor() protoreflect.EnumDescriptor {
317
- return file_waSyncAction_WASyncAction_proto_enumTypes[4].Descriptor()
431
+ return file_waSyncAction_WASyncAction_proto_enumTypes[6].Descriptor()
318
432
  }
319
433
 
320
434
  func (MerchantPaymentPartnerAction_Status) Type() protoreflect.EnumType {
321
- return &file_waSyncAction_WASyncAction_proto_enumTypes[4]
435
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[6]
322
436
  }
323
437
 
324
438
  func (x MerchantPaymentPartnerAction_Status) Number() protoreflect.EnumNumber {
@@ -337,7 +451,7 @@ func (x *MerchantPaymentPartnerAction_Status) UnmarshalJSON(b []byte) error {
337
451
 
338
452
  // Deprecated: Use MerchantPaymentPartnerAction_Status.Descriptor instead.
339
453
  func (MerchantPaymentPartnerAction_Status) EnumDescriptor() ([]byte, []int) {
340
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2, 0}
454
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4, 0}
341
455
  }
342
456
 
343
457
  type NoteEditAction_NoteType int32
@@ -370,11 +484,11 @@ func (x NoteEditAction_NoteType) String() string {
370
484
  }
371
485
 
372
486
  func (NoteEditAction_NoteType) Descriptor() protoreflect.EnumDescriptor {
373
- return file_waSyncAction_WASyncAction_proto_enumTypes[5].Descriptor()
487
+ return file_waSyncAction_WASyncAction_proto_enumTypes[7].Descriptor()
374
488
  }
375
489
 
376
490
  func (NoteEditAction_NoteType) Type() protoreflect.EnumType {
377
- return &file_waSyncAction_WASyncAction_proto_enumTypes[5]
491
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[7]
378
492
  }
379
493
 
380
494
  func (x NoteEditAction_NoteType) Number() protoreflect.EnumNumber {
@@ -393,7 +507,7 @@ func (x *NoteEditAction_NoteType) UnmarshalJSON(b []byte) error {
393
507
 
394
508
  // Deprecated: Use NoteEditAction_NoteType.Descriptor instead.
395
509
  func (NoteEditAction_NoteType) EnumDescriptor() ([]byte, []int) {
396
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3, 0}
510
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5, 0}
397
511
  }
398
512
 
399
513
  type StatusPrivacyAction_StatusDistributionMode int32
@@ -429,11 +543,11 @@ func (x StatusPrivacyAction_StatusDistributionMode) String() string {
429
543
  }
430
544
 
431
545
  func (StatusPrivacyAction_StatusDistributionMode) Descriptor() protoreflect.EnumDescriptor {
432
- return file_waSyncAction_WASyncAction_proto_enumTypes[6].Descriptor()
546
+ return file_waSyncAction_WASyncAction_proto_enumTypes[8].Descriptor()
433
547
  }
434
548
 
435
549
  func (StatusPrivacyAction_StatusDistributionMode) Type() protoreflect.EnumType {
436
- return &file_waSyncAction_WASyncAction_proto_enumTypes[6]
550
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[8]
437
551
  }
438
552
 
439
553
  func (x StatusPrivacyAction_StatusDistributionMode) Number() protoreflect.EnumNumber {
@@ -452,7 +566,7 @@ func (x *StatusPrivacyAction_StatusDistributionMode) UnmarshalJSON(b []byte) err
452
566
 
453
567
  // Deprecated: Use StatusPrivacyAction_StatusDistributionMode.Descriptor instead.
454
568
  func (StatusPrivacyAction_StatusDistributionMode) EnumDescriptor() ([]byte, []int) {
455
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4, 0}
569
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6, 0}
456
570
  }
457
571
 
458
572
  type MarketingMessageAction_MarketingMessagePrototypeType int32
@@ -482,11 +596,11 @@ func (x MarketingMessageAction_MarketingMessagePrototypeType) String() string {
482
596
  }
483
597
 
484
598
  func (MarketingMessageAction_MarketingMessagePrototypeType) Descriptor() protoreflect.EnumDescriptor {
485
- return file_waSyncAction_WASyncAction_proto_enumTypes[7].Descriptor()
599
+ return file_waSyncAction_WASyncAction_proto_enumTypes[9].Descriptor()
486
600
  }
487
601
 
488
602
  func (MarketingMessageAction_MarketingMessagePrototypeType) Type() protoreflect.EnumType {
489
- return &file_waSyncAction_WASyncAction_proto_enumTypes[7]
603
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[9]
490
604
  }
491
605
 
492
606
  func (x MarketingMessageAction_MarketingMessagePrototypeType) Number() protoreflect.EnumNumber {
@@ -505,7 +619,7 @@ func (x *MarketingMessageAction_MarketingMessagePrototypeType) UnmarshalJSON(b [
505
619
 
506
620
  // Deprecated: Use MarketingMessageAction_MarketingMessagePrototypeType.Descriptor instead.
507
621
  func (MarketingMessageAction_MarketingMessagePrototypeType) EnumDescriptor() ([]byte, []int) {
508
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5, 0}
622
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7, 0}
509
623
  }
510
624
 
511
625
  type UsernameChatStartModeAction_ChatStartMode int32
@@ -538,11 +652,11 @@ func (x UsernameChatStartModeAction_ChatStartMode) String() string {
538
652
  }
539
653
 
540
654
  func (UsernameChatStartModeAction_ChatStartMode) Descriptor() protoreflect.EnumDescriptor {
541
- return file_waSyncAction_WASyncAction_proto_enumTypes[8].Descriptor()
655
+ return file_waSyncAction_WASyncAction_proto_enumTypes[10].Descriptor()
542
656
  }
543
657
 
544
658
  func (UsernameChatStartModeAction_ChatStartMode) Type() protoreflect.EnumType {
545
- return &file_waSyncAction_WASyncAction_proto_enumTypes[8]
659
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[10]
546
660
  }
547
661
 
548
662
  func (x UsernameChatStartModeAction_ChatStartMode) Number() protoreflect.EnumNumber {
@@ -561,18 +675,20 @@ func (x *UsernameChatStartModeAction_ChatStartMode) UnmarshalJSON(b []byte) erro
561
675
 
562
676
  // Deprecated: Use UsernameChatStartModeAction_ChatStartMode.Descriptor instead.
563
677
  func (UsernameChatStartModeAction_ChatStartMode) EnumDescriptor() ([]byte, []int) {
564
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6, 0}
678
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8, 0}
565
679
  }
566
680
 
567
681
  type LabelEditAction_ListType int32
568
682
 
569
683
  const (
570
- LabelEditAction_NONE LabelEditAction_ListType = 0
571
- LabelEditAction_UNREAD LabelEditAction_ListType = 1
572
- LabelEditAction_GROUPS LabelEditAction_ListType = 2
573
- LabelEditAction_FAVORITES LabelEditAction_ListType = 3
574
- LabelEditAction_PREDEFINED LabelEditAction_ListType = 4
575
- LabelEditAction_CUSTOM LabelEditAction_ListType = 5
684
+ LabelEditAction_NONE LabelEditAction_ListType = 0
685
+ LabelEditAction_UNREAD LabelEditAction_ListType = 1
686
+ LabelEditAction_GROUPS LabelEditAction_ListType = 2
687
+ LabelEditAction_FAVORITES LabelEditAction_ListType = 3
688
+ LabelEditAction_PREDEFINED LabelEditAction_ListType = 4
689
+ LabelEditAction_CUSTOM LabelEditAction_ListType = 5
690
+ LabelEditAction_COMMUNITY LabelEditAction_ListType = 6
691
+ LabelEditAction_SERVER_ASSIGNED LabelEditAction_ListType = 7
576
692
  )
577
693
 
578
694
  // Enum value maps for LabelEditAction_ListType.
@@ -584,14 +700,18 @@ var (
584
700
  3: "FAVORITES",
585
701
  4: "PREDEFINED",
586
702
  5: "CUSTOM",
703
+ 6: "COMMUNITY",
704
+ 7: "SERVER_ASSIGNED",
587
705
  }
588
706
  LabelEditAction_ListType_value = map[string]int32{
589
- "NONE": 0,
590
- "UNREAD": 1,
591
- "GROUPS": 2,
592
- "FAVORITES": 3,
593
- "PREDEFINED": 4,
594
- "CUSTOM": 5,
707
+ "NONE": 0,
708
+ "UNREAD": 1,
709
+ "GROUPS": 2,
710
+ "FAVORITES": 3,
711
+ "PREDEFINED": 4,
712
+ "CUSTOM": 5,
713
+ "COMMUNITY": 6,
714
+ "SERVER_ASSIGNED": 7,
595
715
  }
596
716
  )
597
717
 
@@ -606,11 +726,11 @@ func (x LabelEditAction_ListType) String() string {
606
726
  }
607
727
 
608
728
  func (LabelEditAction_ListType) Descriptor() protoreflect.EnumDescriptor {
609
- return file_waSyncAction_WASyncAction_proto_enumTypes[9].Descriptor()
729
+ return file_waSyncAction_WASyncAction_proto_enumTypes[11].Descriptor()
610
730
  }
611
731
 
612
732
  func (LabelEditAction_ListType) Type() protoreflect.EnumType {
613
- return &file_waSyncAction_WASyncAction_proto_enumTypes[9]
733
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[11]
614
734
  }
615
735
 
616
736
  func (x LabelEditAction_ListType) Number() protoreflect.EnumNumber {
@@ -629,7 +749,7 @@ func (x *LabelEditAction_ListType) UnmarshalJSON(b []byte) error {
629
749
 
630
750
  // Deprecated: Use LabelEditAction_ListType.Descriptor instead.
631
751
  func (LabelEditAction_ListType) EnumDescriptor() ([]byte, []int) {
632
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7, 0}
752
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9, 0}
633
753
  }
634
754
 
635
755
  type PatchDebugData_Platform int32
@@ -642,6 +762,8 @@ const (
642
762
  PatchDebugData_WEB PatchDebugData_Platform = 4
643
763
  PatchDebugData_UWP PatchDebugData_Platform = 5
644
764
  PatchDebugData_DARWIN PatchDebugData_Platform = 6
765
+ PatchDebugData_IPAD PatchDebugData_Platform = 7
766
+ PatchDebugData_WEAROS PatchDebugData_Platform = 8
645
767
  )
646
768
 
647
769
  // Enum value maps for PatchDebugData_Platform.
@@ -654,6 +776,8 @@ var (
654
776
  4: "WEB",
655
777
  5: "UWP",
656
778
  6: "DARWIN",
779
+ 7: "IPAD",
780
+ 8: "WEAROS",
657
781
  }
658
782
  PatchDebugData_Platform_value = map[string]int32{
659
783
  "ANDROID": 0,
@@ -663,6 +787,8 @@ var (
663
787
  "WEB": 4,
664
788
  "UWP": 5,
665
789
  "DARWIN": 6,
790
+ "IPAD": 7,
791
+ "WEAROS": 8,
666
792
  }
667
793
  )
668
794
 
@@ -677,11 +803,11 @@ func (x PatchDebugData_Platform) String() string {
677
803
  }
678
804
 
679
805
  func (PatchDebugData_Platform) Descriptor() protoreflect.EnumDescriptor {
680
- return file_waSyncAction_WASyncAction_proto_enumTypes[10].Descriptor()
806
+ return file_waSyncAction_WASyncAction_proto_enumTypes[12].Descriptor()
681
807
  }
682
808
 
683
809
  func (PatchDebugData_Platform) Type() protoreflect.EnumType {
684
- return &file_waSyncAction_WASyncAction_proto_enumTypes[10]
810
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[12]
685
811
  }
686
812
 
687
813
  func (x PatchDebugData_Platform) Number() protoreflect.EnumNumber {
@@ -700,7 +826,7 @@ func (x *PatchDebugData_Platform) UnmarshalJSON(b []byte) error {
700
826
 
701
827
  // Deprecated: Use PatchDebugData_Platform.Descriptor instead.
702
828
  func (PatchDebugData_Platform) EnumDescriptor() ([]byte, []int) {
703
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8, 0}
829
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10, 0}
704
830
  }
705
831
 
706
832
  type CallLogRecord struct {
@@ -859,6 +985,102 @@ func (x *CallLogRecord) GetCallType() CallLogRecord_CallType {
859
985
  return CallLogRecord_REGULAR
860
986
  }
861
987
 
988
+ type PaymentTosAction struct {
989
+ state protoimpl.MessageState `protogen:"open.v1"`
990
+ PaymentNotice *PaymentTosAction_PaymentNotice `protobuf:"varint,1,req,name=paymentNotice,enum=WASyncAction.PaymentTosAction_PaymentNotice" json:"paymentNotice,omitempty"`
991
+ Accepted *bool `protobuf:"varint,2,req,name=accepted" json:"accepted,omitempty"`
992
+ unknownFields protoimpl.UnknownFields
993
+ sizeCache protoimpl.SizeCache
994
+ }
995
+
996
+ func (x *PaymentTosAction) Reset() {
997
+ *x = PaymentTosAction{}
998
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
999
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1000
+ ms.StoreMessageInfo(mi)
1001
+ }
1002
+
1003
+ func (x *PaymentTosAction) String() string {
1004
+ return protoimpl.X.MessageStringOf(x)
1005
+ }
1006
+
1007
+ func (*PaymentTosAction) ProtoMessage() {}
1008
+
1009
+ func (x *PaymentTosAction) ProtoReflect() protoreflect.Message {
1010
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1011
+ if x != nil {
1012
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1013
+ if ms.LoadMessageInfo() == nil {
1014
+ ms.StoreMessageInfo(mi)
1015
+ }
1016
+ return ms
1017
+ }
1018
+ return mi.MessageOf(x)
1019
+ }
1020
+
1021
+ // Deprecated: Use PaymentTosAction.ProtoReflect.Descriptor instead.
1022
+ func (*PaymentTosAction) Descriptor() ([]byte, []int) {
1023
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1}
1024
+ }
1025
+
1026
+ func (x *PaymentTosAction) GetPaymentNotice() PaymentTosAction_PaymentNotice {
1027
+ if x != nil && x.PaymentNotice != nil {
1028
+ return *x.PaymentNotice
1029
+ }
1030
+ return PaymentTosAction_BR_PAY_PRIVACY_POLICY
1031
+ }
1032
+
1033
+ func (x *PaymentTosAction) GetAccepted() bool {
1034
+ if x != nil && x.Accepted != nil {
1035
+ return *x.Accepted
1036
+ }
1037
+ return false
1038
+ }
1039
+
1040
+ type NotificationActivitySettingAction struct {
1041
+ state protoimpl.MessageState `protogen:"open.v1"`
1042
+ NotificationActivitySetting *NotificationActivitySettingAction_NotificationActivitySetting `protobuf:"varint,1,opt,name=notificationActivitySetting,enum=WASyncAction.NotificationActivitySettingAction_NotificationActivitySetting" json:"notificationActivitySetting,omitempty"`
1043
+ unknownFields protoimpl.UnknownFields
1044
+ sizeCache protoimpl.SizeCache
1045
+ }
1046
+
1047
+ func (x *NotificationActivitySettingAction) Reset() {
1048
+ *x = NotificationActivitySettingAction{}
1049
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1050
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1051
+ ms.StoreMessageInfo(mi)
1052
+ }
1053
+
1054
+ func (x *NotificationActivitySettingAction) String() string {
1055
+ return protoimpl.X.MessageStringOf(x)
1056
+ }
1057
+
1058
+ func (*NotificationActivitySettingAction) ProtoMessage() {}
1059
+
1060
+ func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message {
1061
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1062
+ if x != nil {
1063
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1064
+ if ms.LoadMessageInfo() == nil {
1065
+ ms.StoreMessageInfo(mi)
1066
+ }
1067
+ return ms
1068
+ }
1069
+ return mi.MessageOf(x)
1070
+ }
1071
+
1072
+ // Deprecated: Use NotificationActivitySettingAction.ProtoReflect.Descriptor instead.
1073
+ func (*NotificationActivitySettingAction) Descriptor() ([]byte, []int) {
1074
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
1075
+ }
1076
+
1077
+ func (x *NotificationActivitySettingAction) GetNotificationActivitySetting() NotificationActivitySettingAction_NotificationActivitySetting {
1078
+ if x != nil && x.NotificationActivitySetting != nil {
1079
+ return *x.NotificationActivitySetting
1080
+ }
1081
+ return NotificationActivitySettingAction_DEFAULT_ALL_MESSAGES
1082
+ }
1083
+
862
1084
  type WaffleAccountLinkStateAction struct {
863
1085
  state protoimpl.MessageState `protogen:"open.v1"`
864
1086
  LinkState *WaffleAccountLinkStateAction_AccountLinkState `protobuf:"varint,2,opt,name=linkState,enum=WASyncAction.WaffleAccountLinkStateAction_AccountLinkState" json:"linkState,omitempty"`
@@ -868,7 +1090,7 @@ type WaffleAccountLinkStateAction struct {
868
1090
 
869
1091
  func (x *WaffleAccountLinkStateAction) Reset() {
870
1092
  *x = WaffleAccountLinkStateAction{}
871
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1093
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
872
1094
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
873
1095
  ms.StoreMessageInfo(mi)
874
1096
  }
@@ -880,7 +1102,7 @@ func (x *WaffleAccountLinkStateAction) String() string {
880
1102
  func (*WaffleAccountLinkStateAction) ProtoMessage() {}
881
1103
 
882
1104
  func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
883
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1105
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
884
1106
  if x != nil {
885
1107
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
886
1108
  if ms.LoadMessageInfo() == nil {
@@ -893,7 +1115,7 @@ func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
893
1115
 
894
1116
  // Deprecated: Use WaffleAccountLinkStateAction.ProtoReflect.Descriptor instead.
895
1117
  func (*WaffleAccountLinkStateAction) Descriptor() ([]byte, []int) {
896
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1}
1118
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
897
1119
  }
898
1120
 
899
1121
  func (x *WaffleAccountLinkStateAction) GetLinkState() WaffleAccountLinkStateAction_AccountLinkState {
@@ -915,7 +1137,7 @@ type MerchantPaymentPartnerAction struct {
915
1137
 
916
1138
  func (x *MerchantPaymentPartnerAction) Reset() {
917
1139
  *x = MerchantPaymentPartnerAction{}
918
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1140
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
919
1141
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
920
1142
  ms.StoreMessageInfo(mi)
921
1143
  }
@@ -927,7 +1149,7 @@ func (x *MerchantPaymentPartnerAction) String() string {
927
1149
  func (*MerchantPaymentPartnerAction) ProtoMessage() {}
928
1150
 
929
1151
  func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
930
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1152
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
931
1153
  if x != nil {
932
1154
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
933
1155
  if ms.LoadMessageInfo() == nil {
@@ -940,7 +1162,7 @@ func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
940
1162
 
941
1163
  // Deprecated: Use MerchantPaymentPartnerAction.ProtoReflect.Descriptor instead.
942
1164
  func (*MerchantPaymentPartnerAction) Descriptor() ([]byte, []int) {
943
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
1165
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
944
1166
  }
945
1167
 
946
1168
  func (x *MerchantPaymentPartnerAction) GetStatus() MerchantPaymentPartnerAction_Status {
@@ -984,7 +1206,7 @@ type NoteEditAction struct {
984
1206
 
985
1207
  func (x *NoteEditAction) Reset() {
986
1208
  *x = NoteEditAction{}
987
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1209
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
988
1210
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
989
1211
  ms.StoreMessageInfo(mi)
990
1212
  }
@@ -996,7 +1218,7 @@ func (x *NoteEditAction) String() string {
996
1218
  func (*NoteEditAction) ProtoMessage() {}
997
1219
 
998
1220
  func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
999
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1221
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1000
1222
  if x != nil {
1001
1223
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1002
1224
  if ms.LoadMessageInfo() == nil {
@@ -1009,7 +1231,7 @@ func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
1009
1231
 
1010
1232
  // Deprecated: Use NoteEditAction.ProtoReflect.Descriptor instead.
1011
1233
  func (*NoteEditAction) Descriptor() ([]byte, []int) {
1012
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
1234
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
1013
1235
  }
1014
1236
 
1015
1237
  func (x *NoteEditAction) GetType() NoteEditAction_NoteType {
@@ -1057,7 +1279,7 @@ type StatusPrivacyAction struct {
1057
1279
 
1058
1280
  func (x *StatusPrivacyAction) Reset() {
1059
1281
  *x = StatusPrivacyAction{}
1060
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1282
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1061
1283
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1062
1284
  ms.StoreMessageInfo(mi)
1063
1285
  }
@@ -1069,7 +1291,7 @@ func (x *StatusPrivacyAction) String() string {
1069
1291
  func (*StatusPrivacyAction) ProtoMessage() {}
1070
1292
 
1071
1293
  func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
1072
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1294
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1073
1295
  if x != nil {
1074
1296
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1075
1297
  if ms.LoadMessageInfo() == nil {
@@ -1082,7 +1304,7 @@ func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
1082
1304
 
1083
1305
  // Deprecated: Use StatusPrivacyAction.ProtoReflect.Descriptor instead.
1084
1306
  func (*StatusPrivacyAction) Descriptor() ([]byte, []int) {
1085
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
1307
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
1086
1308
  }
1087
1309
 
1088
1310
  func (x *StatusPrivacyAction) GetMode() StatusPrivacyAction_StatusDistributionMode {
@@ -1114,7 +1336,7 @@ type MarketingMessageAction struct {
1114
1336
 
1115
1337
  func (x *MarketingMessageAction) Reset() {
1116
1338
  *x = MarketingMessageAction{}
1117
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1339
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1118
1340
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1119
1341
  ms.StoreMessageInfo(mi)
1120
1342
  }
@@ -1126,7 +1348,7 @@ func (x *MarketingMessageAction) String() string {
1126
1348
  func (*MarketingMessageAction) ProtoMessage() {}
1127
1349
 
1128
1350
  func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
1129
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1351
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1130
1352
  if x != nil {
1131
1353
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1132
1354
  if ms.LoadMessageInfo() == nil {
@@ -1139,7 +1361,7 @@ func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
1139
1361
 
1140
1362
  // Deprecated: Use MarketingMessageAction.ProtoReflect.Descriptor instead.
1141
1363
  func (*MarketingMessageAction) Descriptor() ([]byte, []int) {
1142
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
1364
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
1143
1365
  }
1144
1366
 
1145
1367
  func (x *MarketingMessageAction) GetName() string {
@@ -1200,7 +1422,7 @@ type UsernameChatStartModeAction struct {
1200
1422
 
1201
1423
  func (x *UsernameChatStartModeAction) Reset() {
1202
1424
  *x = UsernameChatStartModeAction{}
1203
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1425
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1204
1426
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1205
1427
  ms.StoreMessageInfo(mi)
1206
1428
  }
@@ -1212,7 +1434,7 @@ func (x *UsernameChatStartModeAction) String() string {
1212
1434
  func (*UsernameChatStartModeAction) ProtoMessage() {}
1213
1435
 
1214
1436
  func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
1215
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1437
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1216
1438
  if x != nil {
1217
1439
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1218
1440
  if ms.LoadMessageInfo() == nil {
@@ -1225,7 +1447,7 @@ func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
1225
1447
 
1226
1448
  // Deprecated: Use UsernameChatStartModeAction.ProtoReflect.Descriptor instead.
1227
1449
  func (*UsernameChatStartModeAction) Descriptor() ([]byte, []int) {
1228
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
1450
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
1229
1451
  }
1230
1452
 
1231
1453
  func (x *UsernameChatStartModeAction) GetChatStartMode() UsernameChatStartModeAction_ChatStartMode {
@@ -1244,13 +1466,14 @@ type LabelEditAction struct {
1244
1466
  OrderIndex *int32 `protobuf:"varint,5,opt,name=orderIndex" json:"orderIndex,omitempty"`
1245
1467
  IsActive *bool `protobuf:"varint,6,opt,name=isActive" json:"isActive,omitempty"`
1246
1468
  Type *LabelEditAction_ListType `protobuf:"varint,7,opt,name=type,enum=WASyncAction.LabelEditAction_ListType" json:"type,omitempty"`
1469
+ IsImmutable *bool `protobuf:"varint,8,opt,name=isImmutable" json:"isImmutable,omitempty"`
1247
1470
  unknownFields protoimpl.UnknownFields
1248
1471
  sizeCache protoimpl.SizeCache
1249
1472
  }
1250
1473
 
1251
1474
  func (x *LabelEditAction) Reset() {
1252
1475
  *x = LabelEditAction{}
1253
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1476
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1254
1477
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1255
1478
  ms.StoreMessageInfo(mi)
1256
1479
  }
@@ -1262,7 +1485,7 @@ func (x *LabelEditAction) String() string {
1262
1485
  func (*LabelEditAction) ProtoMessage() {}
1263
1486
 
1264
1487
  func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
1265
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1488
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1266
1489
  if x != nil {
1267
1490
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1268
1491
  if ms.LoadMessageInfo() == nil {
@@ -1275,7 +1498,7 @@ func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
1275
1498
 
1276
1499
  // Deprecated: Use LabelEditAction.ProtoReflect.Descriptor instead.
1277
1500
  func (*LabelEditAction) Descriptor() ([]byte, []int) {
1278
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
1501
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
1279
1502
  }
1280
1503
 
1281
1504
  func (x *LabelEditAction) GetName() string {
@@ -1327,6 +1550,13 @@ func (x *LabelEditAction) GetType() LabelEditAction_ListType {
1327
1550
  return LabelEditAction_NONE
1328
1551
  }
1329
1552
 
1553
+ func (x *LabelEditAction) GetIsImmutable() bool {
1554
+ if x != nil && x.IsImmutable != nil {
1555
+ return *x.IsImmutable
1556
+ }
1557
+ return false
1558
+ }
1559
+
1330
1560
  type PatchDebugData struct {
1331
1561
  state protoimpl.MessageState `protogen:"open.v1"`
1332
1562
  CurrentLthash []byte `protobuf:"bytes,1,opt,name=currentLthash" json:"currentLthash,omitempty"`
@@ -1346,7 +1576,7 @@ type PatchDebugData struct {
1346
1576
 
1347
1577
  func (x *PatchDebugData) Reset() {
1348
1578
  *x = PatchDebugData{}
1349
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1579
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1350
1580
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1351
1581
  ms.StoreMessageInfo(mi)
1352
1582
  }
@@ -1358,7 +1588,7 @@ func (x *PatchDebugData) String() string {
1358
1588
  func (*PatchDebugData) ProtoMessage() {}
1359
1589
 
1360
1590
  func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
1361
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1591
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1362
1592
  if x != nil {
1363
1593
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1364
1594
  if ms.LoadMessageInfo() == nil {
@@ -1371,7 +1601,7 @@ func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
1371
1601
 
1372
1602
  // Deprecated: Use PatchDebugData.ProtoReflect.Descriptor instead.
1373
1603
  func (*PatchDebugData) Descriptor() ([]byte, []int) {
1374
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
1604
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
1375
1605
  }
1376
1606
 
1377
1607
  func (x *PatchDebugData) GetCurrentLthash() []byte {
@@ -1461,7 +1691,7 @@ type RecentEmojiWeight struct {
1461
1691
 
1462
1692
  func (x *RecentEmojiWeight) Reset() {
1463
1693
  *x = RecentEmojiWeight{}
1464
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1694
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1465
1695
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1466
1696
  ms.StoreMessageInfo(mi)
1467
1697
  }
@@ -1473,7 +1703,7 @@ func (x *RecentEmojiWeight) String() string {
1473
1703
  func (*RecentEmojiWeight) ProtoMessage() {}
1474
1704
 
1475
1705
  func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
1476
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1706
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1477
1707
  if x != nil {
1478
1708
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1479
1709
  if ms.LoadMessageInfo() == nil {
@@ -1486,7 +1716,7 @@ func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
1486
1716
 
1487
1717
  // Deprecated: Use RecentEmojiWeight.ProtoReflect.Descriptor instead.
1488
1718
  func (*RecentEmojiWeight) Descriptor() ([]byte, []int) {
1489
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
1719
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
1490
1720
  }
1491
1721
 
1492
1722
  func (x *RecentEmojiWeight) GetEmoji() string {
@@ -1504,67 +1734,73 @@ func (x *RecentEmojiWeight) GetWeight() float32 {
1504
1734
  }
1505
1735
 
1506
1736
  type SyncActionValue struct {
1507
- state protoimpl.MessageState `protogen:"open.v1"`
1508
- Timestamp *int64 `protobuf:"varint,1,opt,name=timestamp" json:"timestamp,omitempty"`
1509
- StarAction *StarAction `protobuf:"bytes,2,opt,name=starAction" json:"starAction,omitempty"`
1510
- ContactAction *ContactAction `protobuf:"bytes,3,opt,name=contactAction" json:"contactAction,omitempty"`
1511
- MuteAction *MuteAction `protobuf:"bytes,4,opt,name=muteAction" json:"muteAction,omitempty"`
1512
- PinAction *PinAction `protobuf:"bytes,5,opt,name=pinAction" json:"pinAction,omitempty"`
1513
- SecurityNotificationSetting *SecurityNotificationSetting `protobuf:"bytes,6,opt,name=securityNotificationSetting" json:"securityNotificationSetting,omitempty"`
1514
- PushNameSetting *PushNameSetting `protobuf:"bytes,7,opt,name=pushNameSetting" json:"pushNameSetting,omitempty"`
1515
- QuickReplyAction *QuickReplyAction `protobuf:"bytes,8,opt,name=quickReplyAction" json:"quickReplyAction,omitempty"`
1516
- RecentEmojiWeightsAction *RecentEmojiWeightsAction `protobuf:"bytes,11,opt,name=recentEmojiWeightsAction" json:"recentEmojiWeightsAction,omitempty"`
1517
- LabelEditAction *LabelEditAction `protobuf:"bytes,14,opt,name=labelEditAction" json:"labelEditAction,omitempty"`
1518
- LabelAssociationAction *LabelAssociationAction `protobuf:"bytes,15,opt,name=labelAssociationAction" json:"labelAssociationAction,omitempty"`
1519
- LocaleSetting *LocaleSetting `protobuf:"bytes,16,opt,name=localeSetting" json:"localeSetting,omitempty"`
1520
- ArchiveChatAction *ArchiveChatAction `protobuf:"bytes,17,opt,name=archiveChatAction" json:"archiveChatAction,omitempty"`
1521
- DeleteMessageForMeAction *DeleteMessageForMeAction `protobuf:"bytes,18,opt,name=deleteMessageForMeAction" json:"deleteMessageForMeAction,omitempty"`
1522
- KeyExpiration *KeyExpiration `protobuf:"bytes,19,opt,name=keyExpiration" json:"keyExpiration,omitempty"`
1523
- MarkChatAsReadAction *MarkChatAsReadAction `protobuf:"bytes,20,opt,name=markChatAsReadAction" json:"markChatAsReadAction,omitempty"`
1524
- ClearChatAction *ClearChatAction `protobuf:"bytes,21,opt,name=clearChatAction" json:"clearChatAction,omitempty"`
1525
- DeleteChatAction *DeleteChatAction `protobuf:"bytes,22,opt,name=deleteChatAction" json:"deleteChatAction,omitempty"`
1526
- UnarchiveChatsSetting *UnarchiveChatsSetting `protobuf:"bytes,23,opt,name=unarchiveChatsSetting" json:"unarchiveChatsSetting,omitempty"`
1527
- PrimaryFeature *PrimaryFeature `protobuf:"bytes,24,opt,name=primaryFeature" json:"primaryFeature,omitempty"`
1528
- AndroidUnsupportedActions *AndroidUnsupportedActions `protobuf:"bytes,26,opt,name=androidUnsupportedActions" json:"androidUnsupportedActions,omitempty"`
1529
- AgentAction *AgentAction `protobuf:"bytes,27,opt,name=agentAction" json:"agentAction,omitempty"`
1530
- SubscriptionAction *SubscriptionAction `protobuf:"bytes,28,opt,name=subscriptionAction" json:"subscriptionAction,omitempty"`
1531
- UserStatusMuteAction *UserStatusMuteAction `protobuf:"bytes,29,opt,name=userStatusMuteAction" json:"userStatusMuteAction,omitempty"`
1532
- TimeFormatAction *TimeFormatAction `protobuf:"bytes,30,opt,name=timeFormatAction" json:"timeFormatAction,omitempty"`
1533
- NuxAction *NuxAction `protobuf:"bytes,31,opt,name=nuxAction" json:"nuxAction,omitempty"`
1534
- PrimaryVersionAction *PrimaryVersionAction `protobuf:"bytes,32,opt,name=primaryVersionAction" json:"primaryVersionAction,omitempty"`
1535
- StickerAction *StickerAction `protobuf:"bytes,33,opt,name=stickerAction" json:"stickerAction,omitempty"`
1536
- RemoveRecentStickerAction *RemoveRecentStickerAction `protobuf:"bytes,34,opt,name=removeRecentStickerAction" json:"removeRecentStickerAction,omitempty"`
1537
- ChatAssignment *ChatAssignmentAction `protobuf:"bytes,35,opt,name=chatAssignment" json:"chatAssignment,omitempty"`
1538
- ChatAssignmentOpenedStatus *ChatAssignmentOpenedStatusAction `protobuf:"bytes,36,opt,name=chatAssignmentOpenedStatus" json:"chatAssignmentOpenedStatus,omitempty"`
1539
- PnForLidChatAction *PnForLidChatAction `protobuf:"bytes,37,opt,name=pnForLidChatAction" json:"pnForLidChatAction,omitempty"`
1540
- MarketingMessageAction *MarketingMessageAction `protobuf:"bytes,38,opt,name=marketingMessageAction" json:"marketingMessageAction,omitempty"`
1541
- MarketingMessageBroadcastAction *MarketingMessageBroadcastAction `protobuf:"bytes,39,opt,name=marketingMessageBroadcastAction" json:"marketingMessageBroadcastAction,omitempty"`
1542
- ExternalWebBetaAction *ExternalWebBetaAction `protobuf:"bytes,40,opt,name=externalWebBetaAction" json:"externalWebBetaAction,omitempty"`
1543
- PrivacySettingRelayAllCalls *PrivacySettingRelayAllCalls `protobuf:"bytes,41,opt,name=privacySettingRelayAllCalls" json:"privacySettingRelayAllCalls,omitempty"`
1544
- CallLogAction *CallLogAction `protobuf:"bytes,42,opt,name=callLogAction" json:"callLogAction,omitempty"`
1545
- StatusPrivacy *StatusPrivacyAction `protobuf:"bytes,44,opt,name=statusPrivacy" json:"statusPrivacy,omitempty"`
1546
- BotWelcomeRequestAction *BotWelcomeRequestAction `protobuf:"bytes,45,opt,name=botWelcomeRequestAction" json:"botWelcomeRequestAction,omitempty"`
1547
- DeleteIndividualCallLog *DeleteIndividualCallLogAction `protobuf:"bytes,46,opt,name=deleteIndividualCallLog" json:"deleteIndividualCallLog,omitempty"`
1548
- LabelReorderingAction *LabelReorderingAction `protobuf:"bytes,47,opt,name=labelReorderingAction" json:"labelReorderingAction,omitempty"`
1549
- PaymentInfoAction *PaymentInfoAction `protobuf:"bytes,48,opt,name=paymentInfoAction" json:"paymentInfoAction,omitempty"`
1550
- CustomPaymentMethodsAction *CustomPaymentMethodsAction `protobuf:"bytes,49,opt,name=customPaymentMethodsAction" json:"customPaymentMethodsAction,omitempty"`
1551
- LockChatAction *LockChatAction `protobuf:"bytes,50,opt,name=lockChatAction" json:"lockChatAction,omitempty"`
1552
- ChatLockSettings *waChatLockSettings.ChatLockSettings `protobuf:"bytes,51,opt,name=chatLockSettings" json:"chatLockSettings,omitempty"`
1553
- WamoUserIdentifierAction *WamoUserIdentifierAction `protobuf:"bytes,52,opt,name=wamoUserIdentifierAction" json:"wamoUserIdentifierAction,omitempty"`
1554
- PrivacySettingDisableLinkPreviewsAction *PrivacySettingDisableLinkPreviewsAction `protobuf:"bytes,53,opt,name=privacySettingDisableLinkPreviewsAction" json:"privacySettingDisableLinkPreviewsAction,omitempty"`
1555
- DeviceCapabilities *waDeviceCapabilities.DeviceCapabilities `protobuf:"bytes,54,opt,name=deviceCapabilities" json:"deviceCapabilities,omitempty"`
1556
- NoteEditAction *NoteEditAction `protobuf:"bytes,55,opt,name=noteEditAction" json:"noteEditAction,omitempty"`
1557
- FavoritesAction *FavoritesAction `protobuf:"bytes,56,opt,name=favoritesAction" json:"favoritesAction,omitempty"`
1558
- MerchantPaymentPartnerAction *MerchantPaymentPartnerAction `protobuf:"bytes,57,opt,name=merchantPaymentPartnerAction" json:"merchantPaymentPartnerAction,omitempty"`
1559
- WaffleAccountLinkStateAction *WaffleAccountLinkStateAction `protobuf:"bytes,58,opt,name=waffleAccountLinkStateAction" json:"waffleAccountLinkStateAction,omitempty"`
1560
- UsernameChatStartMode *UsernameChatStartModeAction `protobuf:"bytes,59,opt,name=usernameChatStartMode" json:"usernameChatStartMode,omitempty"`
1561
- unknownFields protoimpl.UnknownFields
1562
- sizeCache protoimpl.SizeCache
1737
+ state protoimpl.MessageState `protogen:"open.v1"`
1738
+ Timestamp *int64 `protobuf:"varint,1,opt,name=timestamp" json:"timestamp,omitempty"`
1739
+ StarAction *StarAction `protobuf:"bytes,2,opt,name=starAction" json:"starAction,omitempty"`
1740
+ ContactAction *ContactAction `protobuf:"bytes,3,opt,name=contactAction" json:"contactAction,omitempty"`
1741
+ MuteAction *MuteAction `protobuf:"bytes,4,opt,name=muteAction" json:"muteAction,omitempty"`
1742
+ PinAction *PinAction `protobuf:"bytes,5,opt,name=pinAction" json:"pinAction,omitempty"`
1743
+ SecurityNotificationSetting *SecurityNotificationSetting `protobuf:"bytes,6,opt,name=securityNotificationSetting" json:"securityNotificationSetting,omitempty"`
1744
+ PushNameSetting *PushNameSetting `protobuf:"bytes,7,opt,name=pushNameSetting" json:"pushNameSetting,omitempty"`
1745
+ QuickReplyAction *QuickReplyAction `protobuf:"bytes,8,opt,name=quickReplyAction" json:"quickReplyAction,omitempty"`
1746
+ RecentEmojiWeightsAction *RecentEmojiWeightsAction `protobuf:"bytes,11,opt,name=recentEmojiWeightsAction" json:"recentEmojiWeightsAction,omitempty"`
1747
+ LabelEditAction *LabelEditAction `protobuf:"bytes,14,opt,name=labelEditAction" json:"labelEditAction,omitempty"`
1748
+ LabelAssociationAction *LabelAssociationAction `protobuf:"bytes,15,opt,name=labelAssociationAction" json:"labelAssociationAction,omitempty"`
1749
+ LocaleSetting *LocaleSetting `protobuf:"bytes,16,opt,name=localeSetting" json:"localeSetting,omitempty"`
1750
+ ArchiveChatAction *ArchiveChatAction `protobuf:"bytes,17,opt,name=archiveChatAction" json:"archiveChatAction,omitempty"`
1751
+ DeleteMessageForMeAction *DeleteMessageForMeAction `protobuf:"bytes,18,opt,name=deleteMessageForMeAction" json:"deleteMessageForMeAction,omitempty"`
1752
+ KeyExpiration *KeyExpiration `protobuf:"bytes,19,opt,name=keyExpiration" json:"keyExpiration,omitempty"`
1753
+ MarkChatAsReadAction *MarkChatAsReadAction `protobuf:"bytes,20,opt,name=markChatAsReadAction" json:"markChatAsReadAction,omitempty"`
1754
+ ClearChatAction *ClearChatAction `protobuf:"bytes,21,opt,name=clearChatAction" json:"clearChatAction,omitempty"`
1755
+ DeleteChatAction *DeleteChatAction `protobuf:"bytes,22,opt,name=deleteChatAction" json:"deleteChatAction,omitempty"`
1756
+ UnarchiveChatsSetting *UnarchiveChatsSetting `protobuf:"bytes,23,opt,name=unarchiveChatsSetting" json:"unarchiveChatsSetting,omitempty"`
1757
+ PrimaryFeature *PrimaryFeature `protobuf:"bytes,24,opt,name=primaryFeature" json:"primaryFeature,omitempty"`
1758
+ AndroidUnsupportedActions *AndroidUnsupportedActions `protobuf:"bytes,26,opt,name=androidUnsupportedActions" json:"androidUnsupportedActions,omitempty"`
1759
+ AgentAction *AgentAction `protobuf:"bytes,27,opt,name=agentAction" json:"agentAction,omitempty"`
1760
+ SubscriptionAction *SubscriptionAction `protobuf:"bytes,28,opt,name=subscriptionAction" json:"subscriptionAction,omitempty"`
1761
+ UserStatusMuteAction *UserStatusMuteAction `protobuf:"bytes,29,opt,name=userStatusMuteAction" json:"userStatusMuteAction,omitempty"`
1762
+ TimeFormatAction *TimeFormatAction `protobuf:"bytes,30,opt,name=timeFormatAction" json:"timeFormatAction,omitempty"`
1763
+ NuxAction *NuxAction `protobuf:"bytes,31,opt,name=nuxAction" json:"nuxAction,omitempty"`
1764
+ PrimaryVersionAction *PrimaryVersionAction `protobuf:"bytes,32,opt,name=primaryVersionAction" json:"primaryVersionAction,omitempty"`
1765
+ StickerAction *StickerAction `protobuf:"bytes,33,opt,name=stickerAction" json:"stickerAction,omitempty"`
1766
+ RemoveRecentStickerAction *RemoveRecentStickerAction `protobuf:"bytes,34,opt,name=removeRecentStickerAction" json:"removeRecentStickerAction,omitempty"`
1767
+ ChatAssignment *ChatAssignmentAction `protobuf:"bytes,35,opt,name=chatAssignment" json:"chatAssignment,omitempty"`
1768
+ ChatAssignmentOpenedStatus *ChatAssignmentOpenedStatusAction `protobuf:"bytes,36,opt,name=chatAssignmentOpenedStatus" json:"chatAssignmentOpenedStatus,omitempty"`
1769
+ PnForLidChatAction *PnForLidChatAction `protobuf:"bytes,37,opt,name=pnForLidChatAction" json:"pnForLidChatAction,omitempty"`
1770
+ MarketingMessageAction *MarketingMessageAction `protobuf:"bytes,38,opt,name=marketingMessageAction" json:"marketingMessageAction,omitempty"`
1771
+ MarketingMessageBroadcastAction *MarketingMessageBroadcastAction `protobuf:"bytes,39,opt,name=marketingMessageBroadcastAction" json:"marketingMessageBroadcastAction,omitempty"`
1772
+ ExternalWebBetaAction *ExternalWebBetaAction `protobuf:"bytes,40,opt,name=externalWebBetaAction" json:"externalWebBetaAction,omitempty"`
1773
+ PrivacySettingRelayAllCalls *PrivacySettingRelayAllCalls `protobuf:"bytes,41,opt,name=privacySettingRelayAllCalls" json:"privacySettingRelayAllCalls,omitempty"`
1774
+ CallLogAction *CallLogAction `protobuf:"bytes,42,opt,name=callLogAction" json:"callLogAction,omitempty"`
1775
+ StatusPrivacy *StatusPrivacyAction `protobuf:"bytes,44,opt,name=statusPrivacy" json:"statusPrivacy,omitempty"`
1776
+ BotWelcomeRequestAction *BotWelcomeRequestAction `protobuf:"bytes,45,opt,name=botWelcomeRequestAction" json:"botWelcomeRequestAction,omitempty"`
1777
+ DeleteIndividualCallLog *DeleteIndividualCallLogAction `protobuf:"bytes,46,opt,name=deleteIndividualCallLog" json:"deleteIndividualCallLog,omitempty"`
1778
+ LabelReorderingAction *LabelReorderingAction `protobuf:"bytes,47,opt,name=labelReorderingAction" json:"labelReorderingAction,omitempty"`
1779
+ PaymentInfoAction *PaymentInfoAction `protobuf:"bytes,48,opt,name=paymentInfoAction" json:"paymentInfoAction,omitempty"`
1780
+ CustomPaymentMethodsAction *CustomPaymentMethodsAction `protobuf:"bytes,49,opt,name=customPaymentMethodsAction" json:"customPaymentMethodsAction,omitempty"`
1781
+ LockChatAction *LockChatAction `protobuf:"bytes,50,opt,name=lockChatAction" json:"lockChatAction,omitempty"`
1782
+ ChatLockSettings *waChatLockSettings.ChatLockSettings `protobuf:"bytes,51,opt,name=chatLockSettings" json:"chatLockSettings,omitempty"`
1783
+ WamoUserIdentifierAction *WamoUserIdentifierAction `protobuf:"bytes,52,opt,name=wamoUserIdentifierAction" json:"wamoUserIdentifierAction,omitempty"`
1784
+ PrivacySettingDisableLinkPreviewsAction *PrivacySettingDisableLinkPreviewsAction `protobuf:"bytes,53,opt,name=privacySettingDisableLinkPreviewsAction" json:"privacySettingDisableLinkPreviewsAction,omitempty"`
1785
+ DeviceCapabilities *waDeviceCapabilities.DeviceCapabilities `protobuf:"bytes,54,opt,name=deviceCapabilities" json:"deviceCapabilities,omitempty"`
1786
+ NoteEditAction *NoteEditAction `protobuf:"bytes,55,opt,name=noteEditAction" json:"noteEditAction,omitempty"`
1787
+ FavoritesAction *FavoritesAction `protobuf:"bytes,56,opt,name=favoritesAction" json:"favoritesAction,omitempty"`
1788
+ MerchantPaymentPartnerAction *MerchantPaymentPartnerAction `protobuf:"bytes,57,opt,name=merchantPaymentPartnerAction" json:"merchantPaymentPartnerAction,omitempty"`
1789
+ WaffleAccountLinkStateAction *WaffleAccountLinkStateAction `protobuf:"bytes,58,opt,name=waffleAccountLinkStateAction" json:"waffleAccountLinkStateAction,omitempty"`
1790
+ UsernameChatStartMode *UsernameChatStartModeAction `protobuf:"bytes,59,opt,name=usernameChatStartMode" json:"usernameChatStartMode,omitempty"`
1791
+ NotificationActivitySettingAction *NotificationActivitySettingAction `protobuf:"bytes,60,opt,name=notificationActivitySettingAction" json:"notificationActivitySettingAction,omitempty"`
1792
+ LidContactAction *LidContactAction `protobuf:"bytes,61,opt,name=lidContactAction" json:"lidContactAction,omitempty"`
1793
+ CtwaPerCustomerDataSharingAction *CtwaPerCustomerDataSharingAction `protobuf:"bytes,62,opt,name=ctwaPerCustomerDataSharingAction" json:"ctwaPerCustomerDataSharingAction,omitempty"`
1794
+ PaymentTosAction *PaymentTosAction `protobuf:"bytes,63,opt,name=paymentTosAction" json:"paymentTosAction,omitempty"`
1795
+ PrivacySettingChannelsPersonalisedRecommendationAction *PrivacySettingChannelsPersonalisedRecommendationAction `protobuf:"bytes,64,opt,name=privacySettingChannelsPersonalisedRecommendationAction" json:"privacySettingChannelsPersonalisedRecommendationAction,omitempty"`
1796
+ BusinessBroadcastAssociationAction *BusinessBroadcastAssociationAction `protobuf:"bytes,65,opt,name=businessBroadcastAssociationAction" json:"businessBroadcastAssociationAction,omitempty"`
1797
+ unknownFields protoimpl.UnknownFields
1798
+ sizeCache protoimpl.SizeCache
1563
1799
  }
1564
1800
 
1565
1801
  func (x *SyncActionValue) Reset() {
1566
1802
  *x = SyncActionValue{}
1567
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1803
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
1568
1804
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1569
1805
  ms.StoreMessageInfo(mi)
1570
1806
  }
@@ -1576,7 +1812,7 @@ func (x *SyncActionValue) String() string {
1576
1812
  func (*SyncActionValue) ProtoMessage() {}
1577
1813
 
1578
1814
  func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
1579
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1815
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
1580
1816
  if x != nil {
1581
1817
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1582
1818
  if ms.LoadMessageInfo() == nil {
@@ -1589,7 +1825,7 @@ func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
1589
1825
 
1590
1826
  // Deprecated: Use SyncActionValue.ProtoReflect.Descriptor instead.
1591
1827
  func (*SyncActionValue) Descriptor() ([]byte, []int) {
1592
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
1828
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
1593
1829
  }
1594
1830
 
1595
1831
  func (x *SyncActionValue) GetTimestamp() int64 {
@@ -1963,6 +2199,204 @@ func (x *SyncActionValue) GetUsernameChatStartMode() *UsernameChatStartModeActio
1963
2199
  return nil
1964
2200
  }
1965
2201
 
2202
+ func (x *SyncActionValue) GetNotificationActivitySettingAction() *NotificationActivitySettingAction {
2203
+ if x != nil {
2204
+ return x.NotificationActivitySettingAction
2205
+ }
2206
+ return nil
2207
+ }
2208
+
2209
+ func (x *SyncActionValue) GetLidContactAction() *LidContactAction {
2210
+ if x != nil {
2211
+ return x.LidContactAction
2212
+ }
2213
+ return nil
2214
+ }
2215
+
2216
+ func (x *SyncActionValue) GetCtwaPerCustomerDataSharingAction() *CtwaPerCustomerDataSharingAction {
2217
+ if x != nil {
2218
+ return x.CtwaPerCustomerDataSharingAction
2219
+ }
2220
+ return nil
2221
+ }
2222
+
2223
+ func (x *SyncActionValue) GetPaymentTosAction() *PaymentTosAction {
2224
+ if x != nil {
2225
+ return x.PaymentTosAction
2226
+ }
2227
+ return nil
2228
+ }
2229
+
2230
+ func (x *SyncActionValue) GetPrivacySettingChannelsPersonalisedRecommendationAction() *PrivacySettingChannelsPersonalisedRecommendationAction {
2231
+ if x != nil {
2232
+ return x.PrivacySettingChannelsPersonalisedRecommendationAction
2233
+ }
2234
+ return nil
2235
+ }
2236
+
2237
+ func (x *SyncActionValue) GetBusinessBroadcastAssociationAction() *BusinessBroadcastAssociationAction {
2238
+ if x != nil {
2239
+ return x.BusinessBroadcastAssociationAction
2240
+ }
2241
+ return nil
2242
+ }
2243
+
2244
+ type BusinessBroadcastAssociationAction struct {
2245
+ state protoimpl.MessageState `protogen:"open.v1"`
2246
+ Deleted *bool `protobuf:"varint,1,opt,name=deleted" json:"deleted,omitempty"`
2247
+ unknownFields protoimpl.UnknownFields
2248
+ sizeCache protoimpl.SizeCache
2249
+ }
2250
+
2251
+ func (x *BusinessBroadcastAssociationAction) Reset() {
2252
+ *x = BusinessBroadcastAssociationAction{}
2253
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2254
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2255
+ ms.StoreMessageInfo(mi)
2256
+ }
2257
+
2258
+ func (x *BusinessBroadcastAssociationAction) String() string {
2259
+ return protoimpl.X.MessageStringOf(x)
2260
+ }
2261
+
2262
+ func (*BusinessBroadcastAssociationAction) ProtoMessage() {}
2263
+
2264
+ func (x *BusinessBroadcastAssociationAction) ProtoReflect() protoreflect.Message {
2265
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2266
+ if x != nil {
2267
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2268
+ if ms.LoadMessageInfo() == nil {
2269
+ ms.StoreMessageInfo(mi)
2270
+ }
2271
+ return ms
2272
+ }
2273
+ return mi.MessageOf(x)
2274
+ }
2275
+
2276
+ // Deprecated: Use BusinessBroadcastAssociationAction.ProtoReflect.Descriptor instead.
2277
+ func (*BusinessBroadcastAssociationAction) Descriptor() ([]byte, []int) {
2278
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
2279
+ }
2280
+
2281
+ func (x *BusinessBroadcastAssociationAction) GetDeleted() bool {
2282
+ if x != nil && x.Deleted != nil {
2283
+ return *x.Deleted
2284
+ }
2285
+ return false
2286
+ }
2287
+
2288
+ type CtwaPerCustomerDataSharingAction struct {
2289
+ state protoimpl.MessageState `protogen:"open.v1"`
2290
+ IsCtwaPerCustomerDataSharingEnabled *bool `protobuf:"varint,1,opt,name=isCtwaPerCustomerDataSharingEnabled" json:"isCtwaPerCustomerDataSharingEnabled,omitempty"`
2291
+ unknownFields protoimpl.UnknownFields
2292
+ sizeCache protoimpl.SizeCache
2293
+ }
2294
+
2295
+ func (x *CtwaPerCustomerDataSharingAction) Reset() {
2296
+ *x = CtwaPerCustomerDataSharingAction{}
2297
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2298
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2299
+ ms.StoreMessageInfo(mi)
2300
+ }
2301
+
2302
+ func (x *CtwaPerCustomerDataSharingAction) String() string {
2303
+ return protoimpl.X.MessageStringOf(x)
2304
+ }
2305
+
2306
+ func (*CtwaPerCustomerDataSharingAction) ProtoMessage() {}
2307
+
2308
+ func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
2309
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2310
+ if x != nil {
2311
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2312
+ if ms.LoadMessageInfo() == nil {
2313
+ ms.StoreMessageInfo(mi)
2314
+ }
2315
+ return ms
2316
+ }
2317
+ return mi.MessageOf(x)
2318
+ }
2319
+
2320
+ // Deprecated: Use CtwaPerCustomerDataSharingAction.ProtoReflect.Descriptor instead.
2321
+ func (*CtwaPerCustomerDataSharingAction) Descriptor() ([]byte, []int) {
2322
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
2323
+ }
2324
+
2325
+ func (x *CtwaPerCustomerDataSharingAction) GetIsCtwaPerCustomerDataSharingEnabled() bool {
2326
+ if x != nil && x.IsCtwaPerCustomerDataSharingEnabled != nil {
2327
+ return *x.IsCtwaPerCustomerDataSharingEnabled
2328
+ }
2329
+ return false
2330
+ }
2331
+
2332
+ type LidContactAction struct {
2333
+ state protoimpl.MessageState `protogen:"open.v1"`
2334
+ FullName *string `protobuf:"bytes,1,opt,name=fullName" json:"fullName,omitempty"`
2335
+ FirstName *string `protobuf:"bytes,2,opt,name=firstName" json:"firstName,omitempty"`
2336
+ Username *string `protobuf:"bytes,3,opt,name=username" json:"username,omitempty"`
2337
+ SaveOnPrimaryAddressbook *bool `protobuf:"varint,4,opt,name=saveOnPrimaryAddressbook" json:"saveOnPrimaryAddressbook,omitempty"`
2338
+ unknownFields protoimpl.UnknownFields
2339
+ sizeCache protoimpl.SizeCache
2340
+ }
2341
+
2342
+ func (x *LidContactAction) Reset() {
2343
+ *x = LidContactAction{}
2344
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2345
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2346
+ ms.StoreMessageInfo(mi)
2347
+ }
2348
+
2349
+ func (x *LidContactAction) String() string {
2350
+ return protoimpl.X.MessageStringOf(x)
2351
+ }
2352
+
2353
+ func (*LidContactAction) ProtoMessage() {}
2354
+
2355
+ func (x *LidContactAction) ProtoReflect() protoreflect.Message {
2356
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2357
+ if x != nil {
2358
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2359
+ if ms.LoadMessageInfo() == nil {
2360
+ ms.StoreMessageInfo(mi)
2361
+ }
2362
+ return ms
2363
+ }
2364
+ return mi.MessageOf(x)
2365
+ }
2366
+
2367
+ // Deprecated: Use LidContactAction.ProtoReflect.Descriptor instead.
2368
+ func (*LidContactAction) Descriptor() ([]byte, []int) {
2369
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{15}
2370
+ }
2371
+
2372
+ func (x *LidContactAction) GetFullName() string {
2373
+ if x != nil && x.FullName != nil {
2374
+ return *x.FullName
2375
+ }
2376
+ return ""
2377
+ }
2378
+
2379
+ func (x *LidContactAction) GetFirstName() string {
2380
+ if x != nil && x.FirstName != nil {
2381
+ return *x.FirstName
2382
+ }
2383
+ return ""
2384
+ }
2385
+
2386
+ func (x *LidContactAction) GetUsername() string {
2387
+ if x != nil && x.Username != nil {
2388
+ return *x.Username
2389
+ }
2390
+ return ""
2391
+ }
2392
+
2393
+ func (x *LidContactAction) GetSaveOnPrimaryAddressbook() bool {
2394
+ if x != nil && x.SaveOnPrimaryAddressbook != nil {
2395
+ return *x.SaveOnPrimaryAddressbook
2396
+ }
2397
+ return false
2398
+ }
2399
+
1966
2400
  type FavoritesAction struct {
1967
2401
  state protoimpl.MessageState `protogen:"open.v1"`
1968
2402
  Favorites []*FavoritesAction_Favorite `protobuf:"bytes,1,rep,name=favorites" json:"favorites,omitempty"`
@@ -1972,7 +2406,7 @@ type FavoritesAction struct {
1972
2406
 
1973
2407
  func (x *FavoritesAction) Reset() {
1974
2408
  *x = FavoritesAction{}
1975
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
2409
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
1976
2410
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1977
2411
  ms.StoreMessageInfo(mi)
1978
2412
  }
@@ -1984,7 +2418,7 @@ func (x *FavoritesAction) String() string {
1984
2418
  func (*FavoritesAction) ProtoMessage() {}
1985
2419
 
1986
2420
  func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
1987
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
2421
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
1988
2422
  if x != nil {
1989
2423
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1990
2424
  if ms.LoadMessageInfo() == nil {
@@ -1997,7 +2431,7 @@ func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
1997
2431
 
1998
2432
  // Deprecated: Use FavoritesAction.ProtoReflect.Descriptor instead.
1999
2433
  func (*FavoritesAction) Descriptor() ([]byte, []int) {
2000
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
2434
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16}
2001
2435
  }
2002
2436
 
2003
2437
  func (x *FavoritesAction) GetFavorites() []*FavoritesAction_Favorite {
@@ -2007,6 +2441,50 @@ func (x *FavoritesAction) GetFavorites() []*FavoritesAction_Favorite {
2007
2441
  return nil
2008
2442
  }
2009
2443
 
2444
+ type PrivacySettingChannelsPersonalisedRecommendationAction struct {
2445
+ state protoimpl.MessageState `protogen:"open.v1"`
2446
+ IsUserOptedOut *bool `protobuf:"varint,1,opt,name=isUserOptedOut" json:"isUserOptedOut,omitempty"`
2447
+ unknownFields protoimpl.UnknownFields
2448
+ sizeCache protoimpl.SizeCache
2449
+ }
2450
+
2451
+ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) Reset() {
2452
+ *x = PrivacySettingChannelsPersonalisedRecommendationAction{}
2453
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2454
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2455
+ ms.StoreMessageInfo(mi)
2456
+ }
2457
+
2458
+ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) String() string {
2459
+ return protoimpl.X.MessageStringOf(x)
2460
+ }
2461
+
2462
+ func (*PrivacySettingChannelsPersonalisedRecommendationAction) ProtoMessage() {}
2463
+
2464
+ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) ProtoReflect() protoreflect.Message {
2465
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2466
+ if x != nil {
2467
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2468
+ if ms.LoadMessageInfo() == nil {
2469
+ ms.StoreMessageInfo(mi)
2470
+ }
2471
+ return ms
2472
+ }
2473
+ return mi.MessageOf(x)
2474
+ }
2475
+
2476
+ // Deprecated: Use PrivacySettingChannelsPersonalisedRecommendationAction.ProtoReflect.Descriptor instead.
2477
+ func (*PrivacySettingChannelsPersonalisedRecommendationAction) Descriptor() ([]byte, []int) {
2478
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{17}
2479
+ }
2480
+
2481
+ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) GetIsUserOptedOut() bool {
2482
+ if x != nil && x.IsUserOptedOut != nil {
2483
+ return *x.IsUserOptedOut
2484
+ }
2485
+ return false
2486
+ }
2487
+
2010
2488
  type PrivacySettingDisableLinkPreviewsAction struct {
2011
2489
  state protoimpl.MessageState `protogen:"open.v1"`
2012
2490
  IsPreviewsDisabled *bool `protobuf:"varint,1,opt,name=isPreviewsDisabled" json:"isPreviewsDisabled,omitempty"`
@@ -2016,7 +2494,7 @@ type PrivacySettingDisableLinkPreviewsAction struct {
2016
2494
 
2017
2495
  func (x *PrivacySettingDisableLinkPreviewsAction) Reset() {
2018
2496
  *x = PrivacySettingDisableLinkPreviewsAction{}
2019
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
2497
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2020
2498
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2021
2499
  ms.StoreMessageInfo(mi)
2022
2500
  }
@@ -2028,7 +2506,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) String() string {
2028
2506
  func (*PrivacySettingDisableLinkPreviewsAction) ProtoMessage() {}
2029
2507
 
2030
2508
  func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Message {
2031
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
2509
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2032
2510
  if x != nil {
2033
2511
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2034
2512
  if ms.LoadMessageInfo() == nil {
@@ -2041,7 +2519,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Me
2041
2519
 
2042
2520
  // Deprecated: Use PrivacySettingDisableLinkPreviewsAction.ProtoReflect.Descriptor instead.
2043
2521
  func (*PrivacySettingDisableLinkPreviewsAction) Descriptor() ([]byte, []int) {
2044
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
2522
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
2045
2523
  }
2046
2524
 
2047
2525
  func (x *PrivacySettingDisableLinkPreviewsAction) GetIsPreviewsDisabled() bool {
@@ -2060,7 +2538,7 @@ type WamoUserIdentifierAction struct {
2060
2538
 
2061
2539
  func (x *WamoUserIdentifierAction) Reset() {
2062
2540
  *x = WamoUserIdentifierAction{}
2063
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2541
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2064
2542
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2065
2543
  ms.StoreMessageInfo(mi)
2066
2544
  }
@@ -2072,7 +2550,7 @@ func (x *WamoUserIdentifierAction) String() string {
2072
2550
  func (*WamoUserIdentifierAction) ProtoMessage() {}
2073
2551
 
2074
2552
  func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
2075
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2553
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2076
2554
  if x != nil {
2077
2555
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2078
2556
  if ms.LoadMessageInfo() == nil {
@@ -2085,7 +2563,7 @@ func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
2085
2563
 
2086
2564
  // Deprecated: Use WamoUserIdentifierAction.ProtoReflect.Descriptor instead.
2087
2565
  func (*WamoUserIdentifierAction) Descriptor() ([]byte, []int) {
2088
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
2566
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
2089
2567
  }
2090
2568
 
2091
2569
  func (x *WamoUserIdentifierAction) GetIdentifier() string {
@@ -2104,7 +2582,7 @@ type LockChatAction struct {
2104
2582
 
2105
2583
  func (x *LockChatAction) Reset() {
2106
2584
  *x = LockChatAction{}
2107
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2585
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2108
2586
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2109
2587
  ms.StoreMessageInfo(mi)
2110
2588
  }
@@ -2116,7 +2594,7 @@ func (x *LockChatAction) String() string {
2116
2594
  func (*LockChatAction) ProtoMessage() {}
2117
2595
 
2118
2596
  func (x *LockChatAction) ProtoReflect() protoreflect.Message {
2119
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2597
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2120
2598
  if x != nil {
2121
2599
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2122
2600
  if ms.LoadMessageInfo() == nil {
@@ -2129,7 +2607,7 @@ func (x *LockChatAction) ProtoReflect() protoreflect.Message {
2129
2607
 
2130
2608
  // Deprecated: Use LockChatAction.ProtoReflect.Descriptor instead.
2131
2609
  func (*LockChatAction) Descriptor() ([]byte, []int) {
2132
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
2610
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
2133
2611
  }
2134
2612
 
2135
2613
  func (x *LockChatAction) GetLocked() bool {
@@ -2148,7 +2626,7 @@ type CustomPaymentMethodsAction struct {
2148
2626
 
2149
2627
  func (x *CustomPaymentMethodsAction) Reset() {
2150
2628
  *x = CustomPaymentMethodsAction{}
2151
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2629
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2152
2630
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2153
2631
  ms.StoreMessageInfo(mi)
2154
2632
  }
@@ -2160,7 +2638,7 @@ func (x *CustomPaymentMethodsAction) String() string {
2160
2638
  func (*CustomPaymentMethodsAction) ProtoMessage() {}
2161
2639
 
2162
2640
  func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
2163
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2641
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2164
2642
  if x != nil {
2165
2643
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2166
2644
  if ms.LoadMessageInfo() == nil {
@@ -2173,7 +2651,7 @@ func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
2173
2651
 
2174
2652
  // Deprecated: Use CustomPaymentMethodsAction.ProtoReflect.Descriptor instead.
2175
2653
  func (*CustomPaymentMethodsAction) Descriptor() ([]byte, []int) {
2176
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{15}
2654
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
2177
2655
  }
2178
2656
 
2179
2657
  func (x *CustomPaymentMethodsAction) GetCustomPaymentMethods() []*CustomPaymentMethod {
@@ -2195,7 +2673,7 @@ type CustomPaymentMethod struct {
2195
2673
 
2196
2674
  func (x *CustomPaymentMethod) Reset() {
2197
2675
  *x = CustomPaymentMethod{}
2198
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2676
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2199
2677
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2200
2678
  ms.StoreMessageInfo(mi)
2201
2679
  }
@@ -2207,7 +2685,7 @@ func (x *CustomPaymentMethod) String() string {
2207
2685
  func (*CustomPaymentMethod) ProtoMessage() {}
2208
2686
 
2209
2687
  func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
2210
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2688
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2211
2689
  if x != nil {
2212
2690
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2213
2691
  if ms.LoadMessageInfo() == nil {
@@ -2220,7 +2698,7 @@ func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
2220
2698
 
2221
2699
  // Deprecated: Use CustomPaymentMethod.ProtoReflect.Descriptor instead.
2222
2700
  func (*CustomPaymentMethod) Descriptor() ([]byte, []int) {
2223
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16}
2701
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
2224
2702
  }
2225
2703
 
2226
2704
  func (x *CustomPaymentMethod) GetCredentialID() string {
@@ -2261,7 +2739,7 @@ type CustomPaymentMethodMetadata struct {
2261
2739
 
2262
2740
  func (x *CustomPaymentMethodMetadata) Reset() {
2263
2741
  *x = CustomPaymentMethodMetadata{}
2264
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2742
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
2265
2743
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2266
2744
  ms.StoreMessageInfo(mi)
2267
2745
  }
@@ -2273,7 +2751,7 @@ func (x *CustomPaymentMethodMetadata) String() string {
2273
2751
  func (*CustomPaymentMethodMetadata) ProtoMessage() {}
2274
2752
 
2275
2753
  func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
2276
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2754
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
2277
2755
  if x != nil {
2278
2756
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2279
2757
  if ms.LoadMessageInfo() == nil {
@@ -2286,7 +2764,7 @@ func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
2286
2764
 
2287
2765
  // Deprecated: Use CustomPaymentMethodMetadata.ProtoReflect.Descriptor instead.
2288
2766
  func (*CustomPaymentMethodMetadata) Descriptor() ([]byte, []int) {
2289
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{17}
2767
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
2290
2768
  }
2291
2769
 
2292
2770
  func (x *CustomPaymentMethodMetadata) GetKey() string {
@@ -2312,7 +2790,7 @@ type PaymentInfoAction struct {
2312
2790
 
2313
2791
  func (x *PaymentInfoAction) Reset() {
2314
2792
  *x = PaymentInfoAction{}
2315
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2793
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
2316
2794
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2317
2795
  ms.StoreMessageInfo(mi)
2318
2796
  }
@@ -2324,7 +2802,7 @@ func (x *PaymentInfoAction) String() string {
2324
2802
  func (*PaymentInfoAction) ProtoMessage() {}
2325
2803
 
2326
2804
  func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
2327
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2805
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
2328
2806
  if x != nil {
2329
2807
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2330
2808
  if ms.LoadMessageInfo() == nil {
@@ -2337,7 +2815,7 @@ func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
2337
2815
 
2338
2816
  // Deprecated: Use PaymentInfoAction.ProtoReflect.Descriptor instead.
2339
2817
  func (*PaymentInfoAction) Descriptor() ([]byte, []int) {
2340
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
2818
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
2341
2819
  }
2342
2820
 
2343
2821
  func (x *PaymentInfoAction) GetCpi() string {
@@ -2356,7 +2834,7 @@ type LabelReorderingAction struct {
2356
2834
 
2357
2835
  func (x *LabelReorderingAction) Reset() {
2358
2836
  *x = LabelReorderingAction{}
2359
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2837
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
2360
2838
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2361
2839
  ms.StoreMessageInfo(mi)
2362
2840
  }
@@ -2368,7 +2846,7 @@ func (x *LabelReorderingAction) String() string {
2368
2846
  func (*LabelReorderingAction) ProtoMessage() {}
2369
2847
 
2370
2848
  func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
2371
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2849
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
2372
2850
  if x != nil {
2373
2851
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2374
2852
  if ms.LoadMessageInfo() == nil {
@@ -2381,7 +2859,7 @@ func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
2381
2859
 
2382
2860
  // Deprecated: Use LabelReorderingAction.ProtoReflect.Descriptor instead.
2383
2861
  func (*LabelReorderingAction) Descriptor() ([]byte, []int) {
2384
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
2862
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
2385
2863
  }
2386
2864
 
2387
2865
  func (x *LabelReorderingAction) GetSortedLabelIDs() []int32 {
@@ -2401,7 +2879,7 @@ type DeleteIndividualCallLogAction struct {
2401
2879
 
2402
2880
  func (x *DeleteIndividualCallLogAction) Reset() {
2403
2881
  *x = DeleteIndividualCallLogAction{}
2404
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2882
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
2405
2883
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2406
2884
  ms.StoreMessageInfo(mi)
2407
2885
  }
@@ -2413,7 +2891,7 @@ func (x *DeleteIndividualCallLogAction) String() string {
2413
2891
  func (*DeleteIndividualCallLogAction) ProtoMessage() {}
2414
2892
 
2415
2893
  func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
2416
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2894
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
2417
2895
  if x != nil {
2418
2896
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2419
2897
  if ms.LoadMessageInfo() == nil {
@@ -2426,7 +2904,7 @@ func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
2426
2904
 
2427
2905
  // Deprecated: Use DeleteIndividualCallLogAction.ProtoReflect.Descriptor instead.
2428
2906
  func (*DeleteIndividualCallLogAction) Descriptor() ([]byte, []int) {
2429
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
2907
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
2430
2908
  }
2431
2909
 
2432
2910
  func (x *DeleteIndividualCallLogAction) GetPeerJID() string {
@@ -2452,7 +2930,7 @@ type BotWelcomeRequestAction struct {
2452
2930
 
2453
2931
  func (x *BotWelcomeRequestAction) Reset() {
2454
2932
  *x = BotWelcomeRequestAction{}
2455
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2933
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
2456
2934
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2457
2935
  ms.StoreMessageInfo(mi)
2458
2936
  }
@@ -2464,7 +2942,7 @@ func (x *BotWelcomeRequestAction) String() string {
2464
2942
  func (*BotWelcomeRequestAction) ProtoMessage() {}
2465
2943
 
2466
2944
  func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
2467
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2945
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
2468
2946
  if x != nil {
2469
2947
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2470
2948
  if ms.LoadMessageInfo() == nil {
@@ -2477,7 +2955,7 @@ func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
2477
2955
 
2478
2956
  // Deprecated: Use BotWelcomeRequestAction.ProtoReflect.Descriptor instead.
2479
2957
  func (*BotWelcomeRequestAction) Descriptor() ([]byte, []int) {
2480
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
2958
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
2481
2959
  }
2482
2960
 
2483
2961
  func (x *BotWelcomeRequestAction) GetIsSent() bool {
@@ -2496,7 +2974,7 @@ type CallLogAction struct {
2496
2974
 
2497
2975
  func (x *CallLogAction) Reset() {
2498
2976
  *x = CallLogAction{}
2499
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2977
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
2500
2978
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2501
2979
  ms.StoreMessageInfo(mi)
2502
2980
  }
@@ -2508,7 +2986,7 @@ func (x *CallLogAction) String() string {
2508
2986
  func (*CallLogAction) ProtoMessage() {}
2509
2987
 
2510
2988
  func (x *CallLogAction) ProtoReflect() protoreflect.Message {
2511
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2989
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
2512
2990
  if x != nil {
2513
2991
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2514
2992
  if ms.LoadMessageInfo() == nil {
@@ -2521,7 +2999,7 @@ func (x *CallLogAction) ProtoReflect() protoreflect.Message {
2521
2999
 
2522
3000
  // Deprecated: Use CallLogAction.ProtoReflect.Descriptor instead.
2523
3001
  func (*CallLogAction) Descriptor() ([]byte, []int) {
2524
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
3002
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
2525
3003
  }
2526
3004
 
2527
3005
  func (x *CallLogAction) GetCallLogRecord() *CallLogRecord {
@@ -2540,7 +3018,7 @@ type PrivacySettingRelayAllCalls struct {
2540
3018
 
2541
3019
  func (x *PrivacySettingRelayAllCalls) Reset() {
2542
3020
  *x = PrivacySettingRelayAllCalls{}
2543
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
3021
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
2544
3022
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2545
3023
  ms.StoreMessageInfo(mi)
2546
3024
  }
@@ -2552,7 +3030,7 @@ func (x *PrivacySettingRelayAllCalls) String() string {
2552
3030
  func (*PrivacySettingRelayAllCalls) ProtoMessage() {}
2553
3031
 
2554
3032
  func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
2555
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
3033
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
2556
3034
  if x != nil {
2557
3035
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2558
3036
  if ms.LoadMessageInfo() == nil {
@@ -2565,7 +3043,7 @@ func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
2565
3043
 
2566
3044
  // Deprecated: Use PrivacySettingRelayAllCalls.ProtoReflect.Descriptor instead.
2567
3045
  func (*PrivacySettingRelayAllCalls) Descriptor() ([]byte, []int) {
2568
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
3046
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
2569
3047
  }
2570
3048
 
2571
3049
  func (x *PrivacySettingRelayAllCalls) GetIsEnabled() bool {
@@ -2584,7 +3062,7 @@ type ExternalWebBetaAction struct {
2584
3062
 
2585
3063
  func (x *ExternalWebBetaAction) Reset() {
2586
3064
  *x = ExternalWebBetaAction{}
2587
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
3065
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
2588
3066
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2589
3067
  ms.StoreMessageInfo(mi)
2590
3068
  }
@@ -2596,7 +3074,7 @@ func (x *ExternalWebBetaAction) String() string {
2596
3074
  func (*ExternalWebBetaAction) ProtoMessage() {}
2597
3075
 
2598
3076
  func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
2599
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
3077
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
2600
3078
  if x != nil {
2601
3079
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2602
3080
  if ms.LoadMessageInfo() == nil {
@@ -2609,7 +3087,7 @@ func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
2609
3087
 
2610
3088
  // Deprecated: Use ExternalWebBetaAction.ProtoReflect.Descriptor instead.
2611
3089
  func (*ExternalWebBetaAction) Descriptor() ([]byte, []int) {
2612
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
3090
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
2613
3091
  }
2614
3092
 
2615
3093
  func (x *ExternalWebBetaAction) GetIsOptIn() bool {
@@ -2628,7 +3106,7 @@ type MarketingMessageBroadcastAction struct {
2628
3106
 
2629
3107
  func (x *MarketingMessageBroadcastAction) Reset() {
2630
3108
  *x = MarketingMessageBroadcastAction{}
2631
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
3109
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
2632
3110
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2633
3111
  ms.StoreMessageInfo(mi)
2634
3112
  }
@@ -2640,7 +3118,7 @@ func (x *MarketingMessageBroadcastAction) String() string {
2640
3118
  func (*MarketingMessageBroadcastAction) ProtoMessage() {}
2641
3119
 
2642
3120
  func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
2643
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
3121
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
2644
3122
  if x != nil {
2645
3123
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2646
3124
  if ms.LoadMessageInfo() == nil {
@@ -2653,7 +3131,7 @@ func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
2653
3131
 
2654
3132
  // Deprecated: Use MarketingMessageBroadcastAction.ProtoReflect.Descriptor instead.
2655
3133
  func (*MarketingMessageBroadcastAction) Descriptor() ([]byte, []int) {
2656
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
3134
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
2657
3135
  }
2658
3136
 
2659
3137
  func (x *MarketingMessageBroadcastAction) GetRepliedCount() int32 {
@@ -2672,7 +3150,7 @@ type PnForLidChatAction struct {
2672
3150
 
2673
3151
  func (x *PnForLidChatAction) Reset() {
2674
3152
  *x = PnForLidChatAction{}
2675
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
3153
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
2676
3154
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2677
3155
  ms.StoreMessageInfo(mi)
2678
3156
  }
@@ -2684,7 +3162,7 @@ func (x *PnForLidChatAction) String() string {
2684
3162
  func (*PnForLidChatAction) ProtoMessage() {}
2685
3163
 
2686
3164
  func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
2687
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
3165
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
2688
3166
  if x != nil {
2689
3167
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2690
3168
  if ms.LoadMessageInfo() == nil {
@@ -2697,7 +3175,7 @@ func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
2697
3175
 
2698
3176
  // Deprecated: Use PnForLidChatAction.ProtoReflect.Descriptor instead.
2699
3177
  func (*PnForLidChatAction) Descriptor() ([]byte, []int) {
2700
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
3178
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{32}
2701
3179
  }
2702
3180
 
2703
3181
  func (x *PnForLidChatAction) GetPnJID() string {
@@ -2716,7 +3194,7 @@ type ChatAssignmentOpenedStatusAction struct {
2716
3194
 
2717
3195
  func (x *ChatAssignmentOpenedStatusAction) Reset() {
2718
3196
  *x = ChatAssignmentOpenedStatusAction{}
2719
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
3197
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
2720
3198
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2721
3199
  ms.StoreMessageInfo(mi)
2722
3200
  }
@@ -2728,7 +3206,7 @@ func (x *ChatAssignmentOpenedStatusAction) String() string {
2728
3206
  func (*ChatAssignmentOpenedStatusAction) ProtoMessage() {}
2729
3207
 
2730
3208
  func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
2731
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
3209
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
2732
3210
  if x != nil {
2733
3211
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2734
3212
  if ms.LoadMessageInfo() == nil {
@@ -2741,7 +3219,7 @@ func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
2741
3219
 
2742
3220
  // Deprecated: Use ChatAssignmentOpenedStatusAction.ProtoReflect.Descriptor instead.
2743
3221
  func (*ChatAssignmentOpenedStatusAction) Descriptor() ([]byte, []int) {
2744
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
3222
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
2745
3223
  }
2746
3224
 
2747
3225
  func (x *ChatAssignmentOpenedStatusAction) GetChatOpened() bool {
@@ -2760,7 +3238,7 @@ type ChatAssignmentAction struct {
2760
3238
 
2761
3239
  func (x *ChatAssignmentAction) Reset() {
2762
3240
  *x = ChatAssignmentAction{}
2763
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
3241
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
2764
3242
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2765
3243
  ms.StoreMessageInfo(mi)
2766
3244
  }
@@ -2772,7 +3250,7 @@ func (x *ChatAssignmentAction) String() string {
2772
3250
  func (*ChatAssignmentAction) ProtoMessage() {}
2773
3251
 
2774
3252
  func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
2775
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
3253
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
2776
3254
  if x != nil {
2777
3255
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2778
3256
  if ms.LoadMessageInfo() == nil {
@@ -2785,7 +3263,7 @@ func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
2785
3263
 
2786
3264
  // Deprecated: Use ChatAssignmentAction.ProtoReflect.Descriptor instead.
2787
3265
  func (*ChatAssignmentAction) Descriptor() ([]byte, []int) {
2788
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
3266
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
2789
3267
  }
2790
3268
 
2791
3269
  func (x *ChatAssignmentAction) GetDeviceAgentID() string {
@@ -2814,7 +3292,7 @@ type StickerAction struct {
2814
3292
 
2815
3293
  func (x *StickerAction) Reset() {
2816
3294
  *x = StickerAction{}
2817
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
3295
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
2818
3296
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2819
3297
  ms.StoreMessageInfo(mi)
2820
3298
  }
@@ -2826,7 +3304,7 @@ func (x *StickerAction) String() string {
2826
3304
  func (*StickerAction) ProtoMessage() {}
2827
3305
 
2828
3306
  func (x *StickerAction) ProtoReflect() protoreflect.Message {
2829
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
3307
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
2830
3308
  if x != nil {
2831
3309
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2832
3310
  if ms.LoadMessageInfo() == nil {
@@ -2839,7 +3317,7 @@ func (x *StickerAction) ProtoReflect() protoreflect.Message {
2839
3317
 
2840
3318
  // Deprecated: Use StickerAction.ProtoReflect.Descriptor instead.
2841
3319
  func (*StickerAction) Descriptor() ([]byte, []int) {
2842
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
3320
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{35}
2843
3321
  }
2844
3322
 
2845
3323
  func (x *StickerAction) GetURL() string {
@@ -2928,7 +3406,7 @@ type RemoveRecentStickerAction struct {
2928
3406
 
2929
3407
  func (x *RemoveRecentStickerAction) Reset() {
2930
3408
  *x = RemoveRecentStickerAction{}
2931
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
3409
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
2932
3410
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2933
3411
  ms.StoreMessageInfo(mi)
2934
3412
  }
@@ -2940,7 +3418,7 @@ func (x *RemoveRecentStickerAction) String() string {
2940
3418
  func (*RemoveRecentStickerAction) ProtoMessage() {}
2941
3419
 
2942
3420
  func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
2943
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
3421
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
2944
3422
  if x != nil {
2945
3423
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2946
3424
  if ms.LoadMessageInfo() == nil {
@@ -2953,7 +3431,7 @@ func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
2953
3431
 
2954
3432
  // Deprecated: Use RemoveRecentStickerAction.ProtoReflect.Descriptor instead.
2955
3433
  func (*RemoveRecentStickerAction) Descriptor() ([]byte, []int) {
2956
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
3434
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
2957
3435
  }
2958
3436
 
2959
3437
  func (x *RemoveRecentStickerAction) GetLastStickerSentTS() int64 {
@@ -2972,7 +3450,7 @@ type PrimaryVersionAction struct {
2972
3450
 
2973
3451
  func (x *PrimaryVersionAction) Reset() {
2974
3452
  *x = PrimaryVersionAction{}
2975
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
3453
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
2976
3454
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2977
3455
  ms.StoreMessageInfo(mi)
2978
3456
  }
@@ -2984,7 +3462,7 @@ func (x *PrimaryVersionAction) String() string {
2984
3462
  func (*PrimaryVersionAction) ProtoMessage() {}
2985
3463
 
2986
3464
  func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
2987
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
3465
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
2988
3466
  if x != nil {
2989
3467
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2990
3468
  if ms.LoadMessageInfo() == nil {
@@ -2997,7 +3475,7 @@ func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
2997
3475
 
2998
3476
  // Deprecated: Use PrimaryVersionAction.ProtoReflect.Descriptor instead.
2999
3477
  func (*PrimaryVersionAction) Descriptor() ([]byte, []int) {
3000
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
3478
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
3001
3479
  }
3002
3480
 
3003
3481
  func (x *PrimaryVersionAction) GetVersion() string {
@@ -3016,7 +3494,7 @@ type NuxAction struct {
3016
3494
 
3017
3495
  func (x *NuxAction) Reset() {
3018
3496
  *x = NuxAction{}
3019
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
3497
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3020
3498
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3021
3499
  ms.StoreMessageInfo(mi)
3022
3500
  }
@@ -3028,7 +3506,7 @@ func (x *NuxAction) String() string {
3028
3506
  func (*NuxAction) ProtoMessage() {}
3029
3507
 
3030
3508
  func (x *NuxAction) ProtoReflect() protoreflect.Message {
3031
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
3509
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3032
3510
  if x != nil {
3033
3511
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3034
3512
  if ms.LoadMessageInfo() == nil {
@@ -3041,7 +3519,7 @@ func (x *NuxAction) ProtoReflect() protoreflect.Message {
3041
3519
 
3042
3520
  // Deprecated: Use NuxAction.ProtoReflect.Descriptor instead.
3043
3521
  func (*NuxAction) Descriptor() ([]byte, []int) {
3044
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{32}
3522
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
3045
3523
  }
3046
3524
 
3047
3525
  func (x *NuxAction) GetAcknowledged() bool {
@@ -3060,7 +3538,7 @@ type TimeFormatAction struct {
3060
3538
 
3061
3539
  func (x *TimeFormatAction) Reset() {
3062
3540
  *x = TimeFormatAction{}
3063
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
3541
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3064
3542
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3065
3543
  ms.StoreMessageInfo(mi)
3066
3544
  }
@@ -3072,7 +3550,7 @@ func (x *TimeFormatAction) String() string {
3072
3550
  func (*TimeFormatAction) ProtoMessage() {}
3073
3551
 
3074
3552
  func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
3075
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
3553
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3076
3554
  if x != nil {
3077
3555
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3078
3556
  if ms.LoadMessageInfo() == nil {
@@ -3085,7 +3563,7 @@ func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
3085
3563
 
3086
3564
  // Deprecated: Use TimeFormatAction.ProtoReflect.Descriptor instead.
3087
3565
  func (*TimeFormatAction) Descriptor() ([]byte, []int) {
3088
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
3566
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
3089
3567
  }
3090
3568
 
3091
3569
  func (x *TimeFormatAction) GetIsTwentyFourHourFormatEnabled() bool {
@@ -3104,7 +3582,7 @@ type UserStatusMuteAction struct {
3104
3582
 
3105
3583
  func (x *UserStatusMuteAction) Reset() {
3106
3584
  *x = UserStatusMuteAction{}
3107
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3585
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3108
3586
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3109
3587
  ms.StoreMessageInfo(mi)
3110
3588
  }
@@ -3116,7 +3594,7 @@ func (x *UserStatusMuteAction) String() string {
3116
3594
  func (*UserStatusMuteAction) ProtoMessage() {}
3117
3595
 
3118
3596
  func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
3119
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3597
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3120
3598
  if x != nil {
3121
3599
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3122
3600
  if ms.LoadMessageInfo() == nil {
@@ -3129,7 +3607,7 @@ func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
3129
3607
 
3130
3608
  // Deprecated: Use UserStatusMuteAction.ProtoReflect.Descriptor instead.
3131
3609
  func (*UserStatusMuteAction) Descriptor() ([]byte, []int) {
3132
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
3610
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
3133
3611
  }
3134
3612
 
3135
3613
  func (x *UserStatusMuteAction) GetMuted() bool {
@@ -3150,7 +3628,7 @@ type SubscriptionAction struct {
3150
3628
 
3151
3629
  func (x *SubscriptionAction) Reset() {
3152
3630
  *x = SubscriptionAction{}
3153
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3631
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3154
3632
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3155
3633
  ms.StoreMessageInfo(mi)
3156
3634
  }
@@ -3162,7 +3640,7 @@ func (x *SubscriptionAction) String() string {
3162
3640
  func (*SubscriptionAction) ProtoMessage() {}
3163
3641
 
3164
3642
  func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
3165
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3643
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3166
3644
  if x != nil {
3167
3645
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3168
3646
  if ms.LoadMessageInfo() == nil {
@@ -3175,7 +3653,7 @@ func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
3175
3653
 
3176
3654
  // Deprecated: Use SubscriptionAction.ProtoReflect.Descriptor instead.
3177
3655
  func (*SubscriptionAction) Descriptor() ([]byte, []int) {
3178
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{35}
3656
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
3179
3657
  }
3180
3658
 
3181
3659
  func (x *SubscriptionAction) GetIsDeactivated() bool {
@@ -3210,7 +3688,7 @@ type AgentAction struct {
3210
3688
 
3211
3689
  func (x *AgentAction) Reset() {
3212
3690
  *x = AgentAction{}
3213
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3691
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3214
3692
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3215
3693
  ms.StoreMessageInfo(mi)
3216
3694
  }
@@ -3222,7 +3700,7 @@ func (x *AgentAction) String() string {
3222
3700
  func (*AgentAction) ProtoMessage() {}
3223
3701
 
3224
3702
  func (x *AgentAction) ProtoReflect() protoreflect.Message {
3225
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3703
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3226
3704
  if x != nil {
3227
3705
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3228
3706
  if ms.LoadMessageInfo() == nil {
@@ -3235,7 +3713,7 @@ func (x *AgentAction) ProtoReflect() protoreflect.Message {
3235
3713
 
3236
3714
  // Deprecated: Use AgentAction.ProtoReflect.Descriptor instead.
3237
3715
  func (*AgentAction) Descriptor() ([]byte, []int) {
3238
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
3716
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
3239
3717
  }
3240
3718
 
3241
3719
  func (x *AgentAction) GetName() string {
@@ -3268,7 +3746,7 @@ type AndroidUnsupportedActions struct {
3268
3746
 
3269
3747
  func (x *AndroidUnsupportedActions) Reset() {
3270
3748
  *x = AndroidUnsupportedActions{}
3271
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3749
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
3272
3750
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3273
3751
  ms.StoreMessageInfo(mi)
3274
3752
  }
@@ -3280,7 +3758,7 @@ func (x *AndroidUnsupportedActions) String() string {
3280
3758
  func (*AndroidUnsupportedActions) ProtoMessage() {}
3281
3759
 
3282
3760
  func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
3283
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3761
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
3284
3762
  if x != nil {
3285
3763
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3286
3764
  if ms.LoadMessageInfo() == nil {
@@ -3293,7 +3771,7 @@ func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
3293
3771
 
3294
3772
  // Deprecated: Use AndroidUnsupportedActions.ProtoReflect.Descriptor instead.
3295
3773
  func (*AndroidUnsupportedActions) Descriptor() ([]byte, []int) {
3296
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
3774
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
3297
3775
  }
3298
3776
 
3299
3777
  func (x *AndroidUnsupportedActions) GetAllowed() bool {
@@ -3312,7 +3790,7 @@ type PrimaryFeature struct {
3312
3790
 
3313
3791
  func (x *PrimaryFeature) Reset() {
3314
3792
  *x = PrimaryFeature{}
3315
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3793
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
3316
3794
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3317
3795
  ms.StoreMessageInfo(mi)
3318
3796
  }
@@ -3324,7 +3802,7 @@ func (x *PrimaryFeature) String() string {
3324
3802
  func (*PrimaryFeature) ProtoMessage() {}
3325
3803
 
3326
3804
  func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
3327
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3805
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
3328
3806
  if x != nil {
3329
3807
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3330
3808
  if ms.LoadMessageInfo() == nil {
@@ -3337,7 +3815,7 @@ func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
3337
3815
 
3338
3816
  // Deprecated: Use PrimaryFeature.ProtoReflect.Descriptor instead.
3339
3817
  func (*PrimaryFeature) Descriptor() ([]byte, []int) {
3340
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
3818
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
3341
3819
  }
3342
3820
 
3343
3821
  func (x *PrimaryFeature) GetFlags() []string {
@@ -3356,7 +3834,7 @@ type KeyExpiration struct {
3356
3834
 
3357
3835
  func (x *KeyExpiration) Reset() {
3358
3836
  *x = KeyExpiration{}
3359
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3837
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
3360
3838
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3361
3839
  ms.StoreMessageInfo(mi)
3362
3840
  }
@@ -3368,7 +3846,7 @@ func (x *KeyExpiration) String() string {
3368
3846
  func (*KeyExpiration) ProtoMessage() {}
3369
3847
 
3370
3848
  func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
3371
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3849
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
3372
3850
  if x != nil {
3373
3851
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3374
3852
  if ms.LoadMessageInfo() == nil {
@@ -3381,7 +3859,7 @@ func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
3381
3859
 
3382
3860
  // Deprecated: Use KeyExpiration.ProtoReflect.Descriptor instead.
3383
3861
  func (*KeyExpiration) Descriptor() ([]byte, []int) {
3384
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
3862
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
3385
3863
  }
3386
3864
 
3387
3865
  func (x *KeyExpiration) GetExpiredKeyEpoch() int32 {
@@ -3401,7 +3879,7 @@ type SyncActionMessage struct {
3401
3879
 
3402
3880
  func (x *SyncActionMessage) Reset() {
3403
3881
  *x = SyncActionMessage{}
3404
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3882
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
3405
3883
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3406
3884
  ms.StoreMessageInfo(mi)
3407
3885
  }
@@ -3413,7 +3891,7 @@ func (x *SyncActionMessage) String() string {
3413
3891
  func (*SyncActionMessage) ProtoMessage() {}
3414
3892
 
3415
3893
  func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
3416
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3894
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
3417
3895
  if x != nil {
3418
3896
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3419
3897
  if ms.LoadMessageInfo() == nil {
@@ -3426,7 +3904,7 @@ func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
3426
3904
 
3427
3905
  // Deprecated: Use SyncActionMessage.ProtoReflect.Descriptor instead.
3428
3906
  func (*SyncActionMessage) Descriptor() ([]byte, []int) {
3429
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
3907
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
3430
3908
  }
3431
3909
 
3432
3910
  func (x *SyncActionMessage) GetKey() *waCommon.MessageKey {
@@ -3454,7 +3932,7 @@ type SyncActionMessageRange struct {
3454
3932
 
3455
3933
  func (x *SyncActionMessageRange) Reset() {
3456
3934
  *x = SyncActionMessageRange{}
3457
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3935
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
3458
3936
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3459
3937
  ms.StoreMessageInfo(mi)
3460
3938
  }
@@ -3466,7 +3944,7 @@ func (x *SyncActionMessageRange) String() string {
3466
3944
  func (*SyncActionMessageRange) ProtoMessage() {}
3467
3945
 
3468
3946
  func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
3469
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3947
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
3470
3948
  if x != nil {
3471
3949
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3472
3950
  if ms.LoadMessageInfo() == nil {
@@ -3479,7 +3957,7 @@ func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
3479
3957
 
3480
3958
  // Deprecated: Use SyncActionMessageRange.ProtoReflect.Descriptor instead.
3481
3959
  func (*SyncActionMessageRange) Descriptor() ([]byte, []int) {
3482
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
3960
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
3483
3961
  }
3484
3962
 
3485
3963
  func (x *SyncActionMessageRange) GetLastMessageTimestamp() int64 {
@@ -3512,7 +3990,7 @@ type UnarchiveChatsSetting struct {
3512
3990
 
3513
3991
  func (x *UnarchiveChatsSetting) Reset() {
3514
3992
  *x = UnarchiveChatsSetting{}
3515
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3993
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
3516
3994
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3517
3995
  ms.StoreMessageInfo(mi)
3518
3996
  }
@@ -3524,7 +4002,7 @@ func (x *UnarchiveChatsSetting) String() string {
3524
4002
  func (*UnarchiveChatsSetting) ProtoMessage() {}
3525
4003
 
3526
4004
  func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
3527
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
4005
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
3528
4006
  if x != nil {
3529
4007
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3530
4008
  if ms.LoadMessageInfo() == nil {
@@ -3537,7 +4015,7 @@ func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
3537
4015
 
3538
4016
  // Deprecated: Use UnarchiveChatsSetting.ProtoReflect.Descriptor instead.
3539
4017
  func (*UnarchiveChatsSetting) Descriptor() ([]byte, []int) {
3540
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
4018
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
3541
4019
  }
3542
4020
 
3543
4021
  func (x *UnarchiveChatsSetting) GetUnarchiveChats() bool {
@@ -3556,7 +4034,7 @@ type DeleteChatAction struct {
3556
4034
 
3557
4035
  func (x *DeleteChatAction) Reset() {
3558
4036
  *x = DeleteChatAction{}
3559
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
4037
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
3560
4038
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3561
4039
  ms.StoreMessageInfo(mi)
3562
4040
  }
@@ -3568,7 +4046,7 @@ func (x *DeleteChatAction) String() string {
3568
4046
  func (*DeleteChatAction) ProtoMessage() {}
3569
4047
 
3570
4048
  func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
3571
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
4049
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
3572
4050
  if x != nil {
3573
4051
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3574
4052
  if ms.LoadMessageInfo() == nil {
@@ -3581,7 +4059,7 @@ func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
3581
4059
 
3582
4060
  // Deprecated: Use DeleteChatAction.ProtoReflect.Descriptor instead.
3583
4061
  func (*DeleteChatAction) Descriptor() ([]byte, []int) {
3584
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
4062
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
3585
4063
  }
3586
4064
 
3587
4065
  func (x *DeleteChatAction) GetMessageRange() *SyncActionMessageRange {
@@ -3600,7 +4078,7 @@ type ClearChatAction struct {
3600
4078
 
3601
4079
  func (x *ClearChatAction) Reset() {
3602
4080
  *x = ClearChatAction{}
3603
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
4081
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
3604
4082
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3605
4083
  ms.StoreMessageInfo(mi)
3606
4084
  }
@@ -3612,7 +4090,7 @@ func (x *ClearChatAction) String() string {
3612
4090
  func (*ClearChatAction) ProtoMessage() {}
3613
4091
 
3614
4092
  func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
3615
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
4093
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
3616
4094
  if x != nil {
3617
4095
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3618
4096
  if ms.LoadMessageInfo() == nil {
@@ -3625,7 +4103,7 @@ func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
3625
4103
 
3626
4104
  // Deprecated: Use ClearChatAction.ProtoReflect.Descriptor instead.
3627
4105
  func (*ClearChatAction) Descriptor() ([]byte, []int) {
3628
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
4106
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
3629
4107
  }
3630
4108
 
3631
4109
  func (x *ClearChatAction) GetMessageRange() *SyncActionMessageRange {
@@ -3645,7 +4123,7 @@ type MarkChatAsReadAction struct {
3645
4123
 
3646
4124
  func (x *MarkChatAsReadAction) Reset() {
3647
4125
  *x = MarkChatAsReadAction{}
3648
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
4126
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
3649
4127
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3650
4128
  ms.StoreMessageInfo(mi)
3651
4129
  }
@@ -3657,7 +4135,7 @@ func (x *MarkChatAsReadAction) String() string {
3657
4135
  func (*MarkChatAsReadAction) ProtoMessage() {}
3658
4136
 
3659
4137
  func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
3660
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
4138
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
3661
4139
  if x != nil {
3662
4140
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3663
4141
  if ms.LoadMessageInfo() == nil {
@@ -3670,7 +4148,7 @@ func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
3670
4148
 
3671
4149
  // Deprecated: Use MarkChatAsReadAction.ProtoReflect.Descriptor instead.
3672
4150
  func (*MarkChatAsReadAction) Descriptor() ([]byte, []int) {
3673
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
4151
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
3674
4152
  }
3675
4153
 
3676
4154
  func (x *MarkChatAsReadAction) GetRead() bool {
@@ -3697,7 +4175,7 @@ type DeleteMessageForMeAction struct {
3697
4175
 
3698
4176
  func (x *DeleteMessageForMeAction) Reset() {
3699
4177
  *x = DeleteMessageForMeAction{}
3700
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
4178
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
3701
4179
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3702
4180
  ms.StoreMessageInfo(mi)
3703
4181
  }
@@ -3709,7 +4187,7 @@ func (x *DeleteMessageForMeAction) String() string {
3709
4187
  func (*DeleteMessageForMeAction) ProtoMessage() {}
3710
4188
 
3711
4189
  func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
3712
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
4190
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
3713
4191
  if x != nil {
3714
4192
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3715
4193
  if ms.LoadMessageInfo() == nil {
@@ -3722,7 +4200,7 @@ func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
3722
4200
 
3723
4201
  // Deprecated: Use DeleteMessageForMeAction.ProtoReflect.Descriptor instead.
3724
4202
  func (*DeleteMessageForMeAction) Descriptor() ([]byte, []int) {
3725
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
4203
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
3726
4204
  }
3727
4205
 
3728
4206
  func (x *DeleteMessageForMeAction) GetDeleteMedia() bool {
@@ -3749,7 +4227,7 @@ type ArchiveChatAction struct {
3749
4227
 
3750
4228
  func (x *ArchiveChatAction) Reset() {
3751
4229
  *x = ArchiveChatAction{}
3752
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
4230
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
3753
4231
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3754
4232
  ms.StoreMessageInfo(mi)
3755
4233
  }
@@ -3761,7 +4239,7 @@ func (x *ArchiveChatAction) String() string {
3761
4239
  func (*ArchiveChatAction) ProtoMessage() {}
3762
4240
 
3763
4241
  func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
3764
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
4242
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
3765
4243
  if x != nil {
3766
4244
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3767
4245
  if ms.LoadMessageInfo() == nil {
@@ -3774,7 +4252,7 @@ func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
3774
4252
 
3775
4253
  // Deprecated: Use ArchiveChatAction.ProtoReflect.Descriptor instead.
3776
4254
  func (*ArchiveChatAction) Descriptor() ([]byte, []int) {
3777
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
4255
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
3778
4256
  }
3779
4257
 
3780
4258
  func (x *ArchiveChatAction) GetArchived() bool {
@@ -3800,7 +4278,7 @@ type RecentEmojiWeightsAction struct {
3800
4278
 
3801
4279
  func (x *RecentEmojiWeightsAction) Reset() {
3802
4280
  *x = RecentEmojiWeightsAction{}
3803
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
4281
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
3804
4282
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3805
4283
  ms.StoreMessageInfo(mi)
3806
4284
  }
@@ -3812,7 +4290,7 @@ func (x *RecentEmojiWeightsAction) String() string {
3812
4290
  func (*RecentEmojiWeightsAction) ProtoMessage() {}
3813
4291
 
3814
4292
  func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
3815
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
4293
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
3816
4294
  if x != nil {
3817
4295
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3818
4296
  if ms.LoadMessageInfo() == nil {
@@ -3825,7 +4303,7 @@ func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
3825
4303
 
3826
4304
  // Deprecated: Use RecentEmojiWeightsAction.ProtoReflect.Descriptor instead.
3827
4305
  func (*RecentEmojiWeightsAction) Descriptor() ([]byte, []int) {
3828
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
4306
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
3829
4307
  }
3830
4308
 
3831
4309
  func (x *RecentEmojiWeightsAction) GetWeights() []*RecentEmojiWeight {
@@ -3844,7 +4322,7 @@ type LabelAssociationAction struct {
3844
4322
 
3845
4323
  func (x *LabelAssociationAction) Reset() {
3846
4324
  *x = LabelAssociationAction{}
3847
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
4325
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
3848
4326
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3849
4327
  ms.StoreMessageInfo(mi)
3850
4328
  }
@@ -3856,7 +4334,7 @@ func (x *LabelAssociationAction) String() string {
3856
4334
  func (*LabelAssociationAction) ProtoMessage() {}
3857
4335
 
3858
4336
  func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
3859
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
4337
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
3860
4338
  if x != nil {
3861
4339
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3862
4340
  if ms.LoadMessageInfo() == nil {
@@ -3869,7 +4347,7 @@ func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
3869
4347
 
3870
4348
  // Deprecated: Use LabelAssociationAction.ProtoReflect.Descriptor instead.
3871
4349
  func (*LabelAssociationAction) Descriptor() ([]byte, []int) {
3872
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
4350
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
3873
4351
  }
3874
4352
 
3875
4353
  func (x *LabelAssociationAction) GetLabeled() bool {
@@ -3892,7 +4370,7 @@ type QuickReplyAction struct {
3892
4370
 
3893
4371
  func (x *QuickReplyAction) Reset() {
3894
4372
  *x = QuickReplyAction{}
3895
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
4373
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
3896
4374
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3897
4375
  ms.StoreMessageInfo(mi)
3898
4376
  }
@@ -3904,7 +4382,7 @@ func (x *QuickReplyAction) String() string {
3904
4382
  func (*QuickReplyAction) ProtoMessage() {}
3905
4383
 
3906
4384
  func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
3907
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
4385
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
3908
4386
  if x != nil {
3909
4387
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3910
4388
  if ms.LoadMessageInfo() == nil {
@@ -3917,7 +4395,7 @@ func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
3917
4395
 
3918
4396
  // Deprecated: Use QuickReplyAction.ProtoReflect.Descriptor instead.
3919
4397
  func (*QuickReplyAction) Descriptor() ([]byte, []int) {
3920
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
4398
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
3921
4399
  }
3922
4400
 
3923
4401
  func (x *QuickReplyAction) GetShortcut() string {
@@ -3964,7 +4442,7 @@ type LocaleSetting struct {
3964
4442
 
3965
4443
  func (x *LocaleSetting) Reset() {
3966
4444
  *x = LocaleSetting{}
3967
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
4445
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
3968
4446
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3969
4447
  ms.StoreMessageInfo(mi)
3970
4448
  }
@@ -3976,7 +4454,7 @@ func (x *LocaleSetting) String() string {
3976
4454
  func (*LocaleSetting) ProtoMessage() {}
3977
4455
 
3978
4456
  func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
3979
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
4457
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
3980
4458
  if x != nil {
3981
4459
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3982
4460
  if ms.LoadMessageInfo() == nil {
@@ -3989,7 +4467,7 @@ func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
3989
4467
 
3990
4468
  // Deprecated: Use LocaleSetting.ProtoReflect.Descriptor instead.
3991
4469
  func (*LocaleSetting) Descriptor() ([]byte, []int) {
3992
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
4470
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
3993
4471
  }
3994
4472
 
3995
4473
  func (x *LocaleSetting) GetLocale() string {
@@ -4008,7 +4486,7 @@ type PushNameSetting struct {
4008
4486
 
4009
4487
  func (x *PushNameSetting) Reset() {
4010
4488
  *x = PushNameSetting{}
4011
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
4489
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4012
4490
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4013
4491
  ms.StoreMessageInfo(mi)
4014
4492
  }
@@ -4020,7 +4498,7 @@ func (x *PushNameSetting) String() string {
4020
4498
  func (*PushNameSetting) ProtoMessage() {}
4021
4499
 
4022
4500
  func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
4023
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
4501
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4024
4502
  if x != nil {
4025
4503
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4026
4504
  if ms.LoadMessageInfo() == nil {
@@ -4033,7 +4511,7 @@ func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
4033
4511
 
4034
4512
  // Deprecated: Use PushNameSetting.ProtoReflect.Descriptor instead.
4035
4513
  func (*PushNameSetting) Descriptor() ([]byte, []int) {
4036
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
4514
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
4037
4515
  }
4038
4516
 
4039
4517
  func (x *PushNameSetting) GetName() string {
@@ -4052,7 +4530,7 @@ type SecurityNotificationSetting struct {
4052
4530
 
4053
4531
  func (x *SecurityNotificationSetting) Reset() {
4054
4532
  *x = SecurityNotificationSetting{}
4055
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
4533
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4056
4534
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4057
4535
  ms.StoreMessageInfo(mi)
4058
4536
  }
@@ -4064,7 +4542,7 @@ func (x *SecurityNotificationSetting) String() string {
4064
4542
  func (*SecurityNotificationSetting) ProtoMessage() {}
4065
4543
 
4066
4544
  func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
4067
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
4545
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4068
4546
  if x != nil {
4069
4547
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4070
4548
  if ms.LoadMessageInfo() == nil {
@@ -4077,7 +4555,7 @@ func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
4077
4555
 
4078
4556
  // Deprecated: Use SecurityNotificationSetting.ProtoReflect.Descriptor instead.
4079
4557
  func (*SecurityNotificationSetting) Descriptor() ([]byte, []int) {
4080
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
4558
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{59}
4081
4559
  }
4082
4560
 
4083
4561
  func (x *SecurityNotificationSetting) GetShowNotification() bool {
@@ -4096,7 +4574,7 @@ type PinAction struct {
4096
4574
 
4097
4575
  func (x *PinAction) Reset() {
4098
4576
  *x = PinAction{}
4099
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4577
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4100
4578
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4101
4579
  ms.StoreMessageInfo(mi)
4102
4580
  }
@@ -4108,7 +4586,7 @@ func (x *PinAction) String() string {
4108
4586
  func (*PinAction) ProtoMessage() {}
4109
4587
 
4110
4588
  func (x *PinAction) ProtoReflect() protoreflect.Message {
4111
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4589
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4112
4590
  if x != nil {
4113
4591
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4114
4592
  if ms.LoadMessageInfo() == nil {
@@ -4121,7 +4599,7 @@ func (x *PinAction) ProtoReflect() protoreflect.Message {
4121
4599
 
4122
4600
  // Deprecated: Use PinAction.ProtoReflect.Descriptor instead.
4123
4601
  func (*PinAction) Descriptor() ([]byte, []int) {
4124
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
4602
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{60}
4125
4603
  }
4126
4604
 
4127
4605
  func (x *PinAction) GetPinned() bool {
@@ -4142,7 +4620,7 @@ type MuteAction struct {
4142
4620
 
4143
4621
  func (x *MuteAction) Reset() {
4144
4622
  *x = MuteAction{}
4145
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4623
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
4146
4624
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4147
4625
  ms.StoreMessageInfo(mi)
4148
4626
  }
@@ -4154,7 +4632,7 @@ func (x *MuteAction) String() string {
4154
4632
  func (*MuteAction) ProtoMessage() {}
4155
4633
 
4156
4634
  func (x *MuteAction) ProtoReflect() protoreflect.Message {
4157
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4635
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
4158
4636
  if x != nil {
4159
4637
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4160
4638
  if ms.LoadMessageInfo() == nil {
@@ -4167,7 +4645,7 @@ func (x *MuteAction) ProtoReflect() protoreflect.Message {
4167
4645
 
4168
4646
  // Deprecated: Use MuteAction.ProtoReflect.Descriptor instead.
4169
4647
  func (*MuteAction) Descriptor() ([]byte, []int) {
4170
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
4648
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{61}
4171
4649
  }
4172
4650
 
4173
4651
  func (x *MuteAction) GetMuted() bool {
@@ -4197,13 +4675,15 @@ type ContactAction struct {
4197
4675
  FirstName *string `protobuf:"bytes,2,opt,name=firstName" json:"firstName,omitempty"`
4198
4676
  LidJID *string `protobuf:"bytes,3,opt,name=lidJID" json:"lidJID,omitempty"`
4199
4677
  SaveOnPrimaryAddressbook *bool `protobuf:"varint,4,opt,name=saveOnPrimaryAddressbook" json:"saveOnPrimaryAddressbook,omitempty"`
4678
+ PnJID *string `protobuf:"bytes,5,opt,name=pnJID" json:"pnJID,omitempty"`
4679
+ Username *string `protobuf:"bytes,6,opt,name=username" json:"username,omitempty"`
4200
4680
  unknownFields protoimpl.UnknownFields
4201
4681
  sizeCache protoimpl.SizeCache
4202
4682
  }
4203
4683
 
4204
4684
  func (x *ContactAction) Reset() {
4205
4685
  *x = ContactAction{}
4206
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4686
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
4207
4687
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4208
4688
  ms.StoreMessageInfo(mi)
4209
4689
  }
@@ -4215,7 +4695,7 @@ func (x *ContactAction) String() string {
4215
4695
  func (*ContactAction) ProtoMessage() {}
4216
4696
 
4217
4697
  func (x *ContactAction) ProtoReflect() protoreflect.Message {
4218
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4698
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
4219
4699
  if x != nil {
4220
4700
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4221
4701
  if ms.LoadMessageInfo() == nil {
@@ -4228,7 +4708,7 @@ func (x *ContactAction) ProtoReflect() protoreflect.Message {
4228
4708
 
4229
4709
  // Deprecated: Use ContactAction.ProtoReflect.Descriptor instead.
4230
4710
  func (*ContactAction) Descriptor() ([]byte, []int) {
4231
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
4711
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{62}
4232
4712
  }
4233
4713
 
4234
4714
  func (x *ContactAction) GetFullName() string {
@@ -4259,6 +4739,20 @@ func (x *ContactAction) GetSaveOnPrimaryAddressbook() bool {
4259
4739
  return false
4260
4740
  }
4261
4741
 
4742
+ func (x *ContactAction) GetPnJID() string {
4743
+ if x != nil && x.PnJID != nil {
4744
+ return *x.PnJID
4745
+ }
4746
+ return ""
4747
+ }
4748
+
4749
+ func (x *ContactAction) GetUsername() string {
4750
+ if x != nil && x.Username != nil {
4751
+ return *x.Username
4752
+ }
4753
+ return ""
4754
+ }
4755
+
4262
4756
  type StarAction struct {
4263
4757
  state protoimpl.MessageState `protogen:"open.v1"`
4264
4758
  Starred *bool `protobuf:"varint,1,opt,name=starred" json:"starred,omitempty"`
@@ -4268,7 +4762,7 @@ type StarAction struct {
4268
4762
 
4269
4763
  func (x *StarAction) Reset() {
4270
4764
  *x = StarAction{}
4271
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4765
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
4272
4766
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4273
4767
  ms.StoreMessageInfo(mi)
4274
4768
  }
@@ -4280,7 +4774,7 @@ func (x *StarAction) String() string {
4280
4774
  func (*StarAction) ProtoMessage() {}
4281
4775
 
4282
4776
  func (x *StarAction) ProtoReflect() protoreflect.Message {
4283
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4777
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
4284
4778
  if x != nil {
4285
4779
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4286
4780
  if ms.LoadMessageInfo() == nil {
@@ -4293,7 +4787,7 @@ func (x *StarAction) ProtoReflect() protoreflect.Message {
4293
4787
 
4294
4788
  // Deprecated: Use StarAction.ProtoReflect.Descriptor instead.
4295
4789
  func (*StarAction) Descriptor() ([]byte, []int) {
4296
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
4790
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{63}
4297
4791
  }
4298
4792
 
4299
4793
  func (x *StarAction) GetStarred() bool {
@@ -4315,7 +4809,7 @@ type SyncActionData struct {
4315
4809
 
4316
4810
  func (x *SyncActionData) Reset() {
4317
4811
  *x = SyncActionData{}
4318
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4812
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
4319
4813
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4320
4814
  ms.StoreMessageInfo(mi)
4321
4815
  }
@@ -4327,7 +4821,7 @@ func (x *SyncActionData) String() string {
4327
4821
  func (*SyncActionData) ProtoMessage() {}
4328
4822
 
4329
4823
  func (x *SyncActionData) ProtoReflect() protoreflect.Message {
4330
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4824
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
4331
4825
  if x != nil {
4332
4826
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4333
4827
  if ms.LoadMessageInfo() == nil {
@@ -4340,7 +4834,7 @@ func (x *SyncActionData) ProtoReflect() protoreflect.Message {
4340
4834
 
4341
4835
  // Deprecated: Use SyncActionData.ProtoReflect.Descriptor instead.
4342
4836
  func (*SyncActionData) Descriptor() ([]byte, []int) {
4343
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
4837
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{64}
4344
4838
  }
4345
4839
 
4346
4840
  func (x *SyncActionData) GetIndex() []byte {
@@ -4381,7 +4875,7 @@ type CallLogRecord_ParticipantInfo struct {
4381
4875
 
4382
4876
  func (x *CallLogRecord_ParticipantInfo) Reset() {
4383
4877
  *x = CallLogRecord_ParticipantInfo{}
4384
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4878
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
4385
4879
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4386
4880
  ms.StoreMessageInfo(mi)
4387
4881
  }
@@ -4393,7 +4887,7 @@ func (x *CallLogRecord_ParticipantInfo) String() string {
4393
4887
  func (*CallLogRecord_ParticipantInfo) ProtoMessage() {}
4394
4888
 
4395
4889
  func (x *CallLogRecord_ParticipantInfo) ProtoReflect() protoreflect.Message {
4396
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4890
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
4397
4891
  if x != nil {
4398
4892
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4399
4893
  if ms.LoadMessageInfo() == nil {
@@ -4432,7 +4926,7 @@ type FavoritesAction_Favorite struct {
4432
4926
 
4433
4927
  func (x *FavoritesAction_Favorite) Reset() {
4434
4928
  *x = FavoritesAction_Favorite{}
4435
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4929
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
4436
4930
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4437
4931
  ms.StoreMessageInfo(mi)
4438
4932
  }
@@ -4444,7 +4938,7 @@ func (x *FavoritesAction_Favorite) String() string {
4444
4938
  func (*FavoritesAction_Favorite) ProtoMessage() {}
4445
4939
 
4446
4940
  func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
4447
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4941
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
4448
4942
  if x != nil {
4449
4943
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4450
4944
  if ms.LoadMessageInfo() == nil {
@@ -4457,7 +4951,7 @@ func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
4457
4951
 
4458
4952
  // Deprecated: Use FavoritesAction_Favorite.ProtoReflect.Descriptor instead.
4459
4953
  func (*FavoritesAction_Favorite) Descriptor() ([]byte, []int) {
4460
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11, 0}
4954
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16, 0}
4461
4955
  }
4462
4956
 
4463
4957
  func (x *FavoritesAction_Favorite) GetID() string {
@@ -4469,183 +4963,596 @@ func (x *FavoritesAction_Favorite) GetID() string {
4469
4963
 
4470
4964
  var File_waSyncAction_WASyncAction_proto protoreflect.FileDescriptor
4471
4965
 
4472
- //go:embed WASyncAction.pb.raw
4473
- var file_waSyncAction_WASyncAction_proto_rawDesc []byte
4966
+ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
4967
+ "\n" +
4968
+ "\x1fwaSyncAction/WASyncAction.proto\x12\fWASyncAction\x1a4waChatLockSettings/WAProtobufsChatLockSettings.proto\x1a8waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto\x1a\x17waCommon/WACommon.proto\"\xc5\b\n" +
4969
+ "\rCallLogRecord\x12F\n" +
4970
+ "\n" +
4971
+ "callResult\x18\x01 \x01(\x0e2&.WASyncAction.CallLogRecord.CallResultR\n" +
4972
+ "callResult\x12\x1c\n" +
4973
+ "\tisDndMode\x18\x02 \x01(\bR\tisDndMode\x12O\n" +
4974
+ "\rsilenceReason\x18\x03 \x01(\x0e2).WASyncAction.CallLogRecord.SilenceReasonR\rsilenceReason\x12\x1a\n" +
4975
+ "\bduration\x18\x04 \x01(\x03R\bduration\x12\x1c\n" +
4976
+ "\tstartTime\x18\x05 \x01(\x03R\tstartTime\x12\x1e\n" +
4977
+ "\n" +
4978
+ "isIncoming\x18\x06 \x01(\bR\n" +
4979
+ "isIncoming\x12\x18\n" +
4980
+ "\aisVideo\x18\a \x01(\bR\aisVideo\x12\x1e\n" +
4981
+ "\n" +
4982
+ "isCallLink\x18\b \x01(\bR\n" +
4983
+ "isCallLink\x12$\n" +
4984
+ "\rcallLinkToken\x18\t \x01(\tR\rcallLinkToken\x12(\n" +
4985
+ "\x0fscheduledCallID\x18\n" +
4986
+ " \x01(\tR\x0fscheduledCallID\x12\x16\n" +
4987
+ "\x06callID\x18\v \x01(\tR\x06callID\x12&\n" +
4988
+ "\x0ecallCreatorJID\x18\f \x01(\tR\x0ecallCreatorJID\x12\x1a\n" +
4989
+ "\bgroupJID\x18\r \x01(\tR\bgroupJID\x12O\n" +
4990
+ "\fparticipants\x18\x0e \x03(\v2+.WASyncAction.CallLogRecord.ParticipantInfoR\fparticipants\x12@\n" +
4991
+ "\bcallType\x18\x0f \x01(\x0e2$.WASyncAction.CallLogRecord.CallTypeR\bcallType\x1as\n" +
4992
+ "\x0fParticipantInfo\x12\x18\n" +
4993
+ "\auserJID\x18\x01 \x01(\tR\auserJID\x12F\n" +
4994
+ "\n" +
4995
+ "callResult\x18\x02 \x01(\x0e2&.WASyncAction.CallLogRecord.CallResultR\n" +
4996
+ "callResult\";\n" +
4997
+ "\bCallType\x12\v\n" +
4998
+ "\aREGULAR\x10\x00\x12\x12\n" +
4999
+ "\x0eSCHEDULED_CALL\x10\x01\x12\x0e\n" +
5000
+ "\n" +
5001
+ "VOICE_CHAT\x10\x02\"F\n" +
5002
+ "\rSilenceReason\x12\b\n" +
5003
+ "\x04NONE\x10\x00\x12\r\n" +
5004
+ "\tSCHEDULED\x10\x01\x12\v\n" +
5005
+ "\aPRIVACY\x10\x02\x12\x0f\n" +
5006
+ "\vLIGHTWEIGHT\x10\x03\"\xaf\x01\n" +
5007
+ "\n" +
5008
+ "CallResult\x12\r\n" +
5009
+ "\tCONNECTED\x10\x00\x12\f\n" +
5010
+ "\bREJECTED\x10\x01\x12\r\n" +
5011
+ "\tCANCELLED\x10\x02\x12\x15\n" +
5012
+ "\x11ACCEPTEDELSEWHERE\x10\x03\x12\n" +
5013
+ "\n" +
5014
+ "\x06MISSED\x10\x04\x12\v\n" +
5015
+ "\aINVALID\x10\x05\x12\x0f\n" +
5016
+ "\vUNAVAILABLE\x10\x06\x12\f\n" +
5017
+ "\bUPCOMING\x10\a\x12\n" +
5018
+ "\n" +
5019
+ "\x06FAILED\x10\b\x12\r\n" +
5020
+ "\tABANDONED\x10\t\x12\v\n" +
5021
+ "\aONGOING\x10\n" +
5022
+ "\"\xae\x01\n" +
5023
+ "\x10PaymentTosAction\x12R\n" +
5024
+ "\rpaymentNotice\x18\x01 \x02(\x0e2,.WASyncAction.PaymentTosAction.PaymentNoticeR\rpaymentNotice\x12\x1a\n" +
5025
+ "\baccepted\x18\x02 \x02(\bR\baccepted\"*\n" +
5026
+ "\rPaymentNotice\x12\x19\n" +
5027
+ "\x15BR_PAY_PRIVACY_POLICY\x10\x00\"\xa6\x02\n" +
5028
+ "!NotificationActivitySettingAction\x12\x8d\x01\n" +
5029
+ "\x1bnotificationActivitySetting\x18\x01 \x01(\x0e2K.WASyncAction.NotificationActivitySettingAction.NotificationActivitySettingR\x1bnotificationActivitySetting\"q\n" +
5030
+ "\x1bNotificationActivitySetting\x12\x18\n" +
5031
+ "\x14DEFAULT_ALL_MESSAGES\x10\x00\x12\x10\n" +
5032
+ "\fALL_MESSAGES\x10\x01\x12\x0e\n" +
5033
+ "\n" +
5034
+ "HIGHLIGHTS\x10\x02\x12\x16\n" +
5035
+ "\x12DEFAULT_HIGHLIGHTS\x10\x03\"\x99\x01\n" +
5036
+ "\x1cWaffleAccountLinkStateAction\x12Y\n" +
5037
+ "\tlinkState\x18\x02 \x01(\x0e2;.WASyncAction.WaffleAccountLinkStateAction.AccountLinkStateR\tlinkState\"\x1e\n" +
5038
+ "\x10AccountLinkState\x12\n" +
5039
+ "\n" +
5040
+ "\x06ACTIVE\x10\x00\"\xed\x01\n" +
5041
+ "\x1cMerchantPaymentPartnerAction\x12I\n" +
5042
+ "\x06status\x18\x01 \x02(\x0e21.WASyncAction.MerchantPaymentPartnerAction.StatusR\x06status\x12\x18\n" +
5043
+ "\acountry\x18\x02 \x02(\tR\acountry\x12 \n" +
5044
+ "\vgatewayName\x18\x03 \x01(\tR\vgatewayName\x12\"\n" +
5045
+ "\fcredentialID\x18\x04 \x01(\tR\fcredentialID\"\"\n" +
5046
+ "\x06Status\x12\n" +
5047
+ "\n" +
5048
+ "\x06ACTIVE\x10\x00\x12\f\n" +
5049
+ "\bINACTIVE\x10\x01\"\xfd\x01\n" +
5050
+ "\x0eNoteEditAction\x129\n" +
5051
+ "\x04type\x18\x01 \x01(\x0e2%.WASyncAction.NoteEditAction.NoteTypeR\x04type\x12\x18\n" +
5052
+ "\achatJID\x18\x02 \x01(\tR\achatJID\x12\x1c\n" +
5053
+ "\tcreatedAt\x18\x03 \x01(\x03R\tcreatedAt\x12\x18\n" +
5054
+ "\adeleted\x18\x04 \x01(\bR\adeleted\x120\n" +
5055
+ "\x13unstructuredContent\x18\x05 \x01(\tR\x13unstructuredContent\",\n" +
5056
+ "\bNoteType\x12\x10\n" +
5057
+ "\fUNSTRUCTURED\x10\x01\x12\x0e\n" +
5058
+ "\n" +
5059
+ "STRUCTURED\x10\x02\"\xc4\x01\n" +
5060
+ "\x13StatusPrivacyAction\x12L\n" +
5061
+ "\x04mode\x18\x01 \x01(\x0e28.WASyncAction.StatusPrivacyAction.StatusDistributionModeR\x04mode\x12\x18\n" +
5062
+ "\auserJID\x18\x02 \x03(\tR\auserJID\"E\n" +
5063
+ "\x16StatusDistributionMode\x12\x0e\n" +
5064
+ "\n" +
5065
+ "ALLOW_LIST\x10\x00\x12\r\n" +
5066
+ "\tDENY_LIST\x10\x01\x12\f\n" +
5067
+ "\bCONTACTS\x10\x02\"\xc7\x02\n" +
5068
+ "\x16MarketingMessageAction\x12\x12\n" +
5069
+ "\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n" +
5070
+ "\amessage\x18\x02 \x01(\tR\amessage\x12V\n" +
5071
+ "\x04type\x18\x03 \x01(\x0e2B.WASyncAction.MarketingMessageAction.MarketingMessagePrototypeTypeR\x04type\x12\x1c\n" +
5072
+ "\tcreatedAt\x18\x04 \x01(\x03R\tcreatedAt\x12\x1e\n" +
5073
+ "\n" +
5074
+ "lastSentAt\x18\x05 \x01(\x03R\n" +
5075
+ "lastSentAt\x12\x1c\n" +
5076
+ "\tisDeleted\x18\x06 \x01(\bR\tisDeleted\x12\x18\n" +
5077
+ "\amediaID\x18\a \x01(\tR\amediaID\"1\n" +
5078
+ "\x1dMarketingMessagePrototypeType\x12\x10\n" +
5079
+ "\fPERSONALIZED\x10\x00\"\x9e\x01\n" +
5080
+ "\x1bUsernameChatStartModeAction\x12]\n" +
5081
+ "\rchatStartMode\x18\x01 \x01(\x0e27.WASyncAction.UsernameChatStartModeAction.ChatStartModeR\rchatStartMode\" \n" +
5082
+ "\rChatStartMode\x12\a\n" +
5083
+ "\x03LID\x10\x01\x12\x06\n" +
5084
+ "\x02PN\x10\x02\"\x90\x03\n" +
5085
+ "\x0fLabelEditAction\x12\x12\n" +
5086
+ "\x04name\x18\x01 \x01(\tR\x04name\x12\x14\n" +
5087
+ "\x05color\x18\x02 \x01(\x05R\x05color\x12\"\n" +
5088
+ "\fpredefinedID\x18\x03 \x01(\x05R\fpredefinedID\x12\x18\n" +
5089
+ "\adeleted\x18\x04 \x01(\bR\adeleted\x12\x1e\n" +
5090
+ "\n" +
5091
+ "orderIndex\x18\x05 \x01(\x05R\n" +
5092
+ "orderIndex\x12\x1a\n" +
5093
+ "\bisActive\x18\x06 \x01(\bR\bisActive\x12:\n" +
5094
+ "\x04type\x18\a \x01(\x0e2&.WASyncAction.LabelEditAction.ListTypeR\x04type\x12 \n" +
5095
+ "\visImmutable\x18\b \x01(\bR\visImmutable\"{\n" +
5096
+ "\bListType\x12\b\n" +
5097
+ "\x04NONE\x10\x00\x12\n" +
5098
+ "\n" +
5099
+ "\x06UNREAD\x10\x01\x12\n" +
5100
+ "\n" +
5101
+ "\x06GROUPS\x10\x02\x12\r\n" +
5102
+ "\tFAVORITES\x10\x03\x12\x0e\n" +
5103
+ "\n" +
5104
+ "PREDEFINED\x10\x04\x12\n" +
5105
+ "\n" +
5106
+ "\x06CUSTOM\x10\x05\x12\r\n" +
5107
+ "\tCOMMUNITY\x10\x06\x12\x13\n" +
5108
+ "\x0fSERVER_ASSIGNED\x10\a\"\xf8\x04\n" +
5109
+ "\x0ePatchDebugData\x12$\n" +
5110
+ "\rcurrentLthash\x18\x01 \x01(\fR\rcurrentLthash\x12\x1c\n" +
5111
+ "\tnewLthash\x18\x02 \x01(\fR\tnewLthash\x12\"\n" +
5112
+ "\fpatchVersion\x18\x03 \x01(\fR\fpatchVersion\x12&\n" +
5113
+ "\x0ecollectionName\x18\x04 \x01(\fR\x0ecollectionName\x12X\n" +
5114
+ "'firstFourBytesFromAHashOfSnapshotMACKey\x18\x05 \x01(\fR'firstFourBytesFromAHashOfSnapshotMACKey\x12,\n" +
5115
+ "\x11newLthashSubtract\x18\x06 \x01(\fR\x11newLthashSubtract\x12\x1c\n" +
5116
+ "\tnumberAdd\x18\a \x01(\x05R\tnumberAdd\x12\"\n" +
5117
+ "\fnumberRemove\x18\b \x01(\x05R\fnumberRemove\x12&\n" +
5118
+ "\x0enumberOverride\x18\t \x01(\x05R\x0enumberOverride\x12M\n" +
5119
+ "\x0esenderPlatform\x18\n" +
5120
+ " \x01(\x0e2%.WASyncAction.PatchDebugData.PlatformR\x0esenderPlatform\x12(\n" +
5121
+ "\x0fisSenderPrimary\x18\v \x01(\bR\x0fisSenderPrimary\"k\n" +
5122
+ "\bPlatform\x12\v\n" +
5123
+ "\aANDROID\x10\x00\x12\b\n" +
5124
+ "\x04SMBA\x10\x01\x12\n" +
5125
+ "\n" +
5126
+ "\x06IPHONE\x10\x02\x12\b\n" +
5127
+ "\x04SMBI\x10\x03\x12\a\n" +
5128
+ "\x03WEB\x10\x04\x12\a\n" +
5129
+ "\x03UWP\x10\x05\x12\n" +
5130
+ "\n" +
5131
+ "\x06DARWIN\x10\x06\x12\b\n" +
5132
+ "\x04IPAD\x10\a\x12\n" +
5133
+ "\n" +
5134
+ "\x06WEAROS\x10\b\"A\n" +
5135
+ "\x11RecentEmojiWeight\x12\x14\n" +
5136
+ "\x05emoji\x18\x01 \x01(\tR\x05emoji\x12\x16\n" +
5137
+ "\x06weight\x18\x02 \x01(\x02R\x06weight\"\xf8(\n" +
5138
+ "\x0fSyncActionValue\x12\x1c\n" +
5139
+ "\ttimestamp\x18\x01 \x01(\x03R\ttimestamp\x128\n" +
5140
+ "\n" +
5141
+ "starAction\x18\x02 \x01(\v2\x18.WASyncAction.StarActionR\n" +
5142
+ "starAction\x12A\n" +
5143
+ "\rcontactAction\x18\x03 \x01(\v2\x1b.WASyncAction.ContactActionR\rcontactAction\x128\n" +
5144
+ "\n" +
5145
+ "muteAction\x18\x04 \x01(\v2\x18.WASyncAction.MuteActionR\n" +
5146
+ "muteAction\x125\n" +
5147
+ "\tpinAction\x18\x05 \x01(\v2\x17.WASyncAction.PinActionR\tpinAction\x12k\n" +
5148
+ "\x1bsecurityNotificationSetting\x18\x06 \x01(\v2).WASyncAction.SecurityNotificationSettingR\x1bsecurityNotificationSetting\x12G\n" +
5149
+ "\x0fpushNameSetting\x18\a \x01(\v2\x1d.WASyncAction.PushNameSettingR\x0fpushNameSetting\x12J\n" +
5150
+ "\x10quickReplyAction\x18\b \x01(\v2\x1e.WASyncAction.QuickReplyActionR\x10quickReplyAction\x12b\n" +
5151
+ "\x18recentEmojiWeightsAction\x18\v \x01(\v2&.WASyncAction.RecentEmojiWeightsActionR\x18recentEmojiWeightsAction\x12G\n" +
5152
+ "\x0flabelEditAction\x18\x0e \x01(\v2\x1d.WASyncAction.LabelEditActionR\x0flabelEditAction\x12\\\n" +
5153
+ "\x16labelAssociationAction\x18\x0f \x01(\v2$.WASyncAction.LabelAssociationActionR\x16labelAssociationAction\x12A\n" +
5154
+ "\rlocaleSetting\x18\x10 \x01(\v2\x1b.WASyncAction.LocaleSettingR\rlocaleSetting\x12M\n" +
5155
+ "\x11archiveChatAction\x18\x11 \x01(\v2\x1f.WASyncAction.ArchiveChatActionR\x11archiveChatAction\x12b\n" +
5156
+ "\x18deleteMessageForMeAction\x18\x12 \x01(\v2&.WASyncAction.DeleteMessageForMeActionR\x18deleteMessageForMeAction\x12A\n" +
5157
+ "\rkeyExpiration\x18\x13 \x01(\v2\x1b.WASyncAction.KeyExpirationR\rkeyExpiration\x12V\n" +
5158
+ "\x14markChatAsReadAction\x18\x14 \x01(\v2\".WASyncAction.MarkChatAsReadActionR\x14markChatAsReadAction\x12G\n" +
5159
+ "\x0fclearChatAction\x18\x15 \x01(\v2\x1d.WASyncAction.ClearChatActionR\x0fclearChatAction\x12J\n" +
5160
+ "\x10deleteChatAction\x18\x16 \x01(\v2\x1e.WASyncAction.DeleteChatActionR\x10deleteChatAction\x12Y\n" +
5161
+ "\x15unarchiveChatsSetting\x18\x17 \x01(\v2#.WASyncAction.UnarchiveChatsSettingR\x15unarchiveChatsSetting\x12D\n" +
5162
+ "\x0eprimaryFeature\x18\x18 \x01(\v2\x1c.WASyncAction.PrimaryFeatureR\x0eprimaryFeature\x12e\n" +
5163
+ "\x19androidUnsupportedActions\x18\x1a \x01(\v2'.WASyncAction.AndroidUnsupportedActionsR\x19androidUnsupportedActions\x12;\n" +
5164
+ "\vagentAction\x18\x1b \x01(\v2\x19.WASyncAction.AgentActionR\vagentAction\x12P\n" +
5165
+ "\x12subscriptionAction\x18\x1c \x01(\v2 .WASyncAction.SubscriptionActionR\x12subscriptionAction\x12V\n" +
5166
+ "\x14userStatusMuteAction\x18\x1d \x01(\v2\".WASyncAction.UserStatusMuteActionR\x14userStatusMuteAction\x12J\n" +
5167
+ "\x10timeFormatAction\x18\x1e \x01(\v2\x1e.WASyncAction.TimeFormatActionR\x10timeFormatAction\x125\n" +
5168
+ "\tnuxAction\x18\x1f \x01(\v2\x17.WASyncAction.NuxActionR\tnuxAction\x12V\n" +
5169
+ "\x14primaryVersionAction\x18 \x01(\v2\".WASyncAction.PrimaryVersionActionR\x14primaryVersionAction\x12A\n" +
5170
+ "\rstickerAction\x18! \x01(\v2\x1b.WASyncAction.StickerActionR\rstickerAction\x12e\n" +
5171
+ "\x19removeRecentStickerAction\x18\" \x01(\v2'.WASyncAction.RemoveRecentStickerActionR\x19removeRecentStickerAction\x12J\n" +
5172
+ "\x0echatAssignment\x18# \x01(\v2\".WASyncAction.ChatAssignmentActionR\x0echatAssignment\x12n\n" +
5173
+ "\x1achatAssignmentOpenedStatus\x18$ \x01(\v2..WASyncAction.ChatAssignmentOpenedStatusActionR\x1achatAssignmentOpenedStatus\x12P\n" +
5174
+ "\x12pnForLidChatAction\x18% \x01(\v2 .WASyncAction.PnForLidChatActionR\x12pnForLidChatAction\x12\\\n" +
5175
+ "\x16marketingMessageAction\x18& \x01(\v2$.WASyncAction.MarketingMessageActionR\x16marketingMessageAction\x12w\n" +
5176
+ "\x1fmarketingMessageBroadcastAction\x18' \x01(\v2-.WASyncAction.MarketingMessageBroadcastActionR\x1fmarketingMessageBroadcastAction\x12Y\n" +
5177
+ "\x15externalWebBetaAction\x18( \x01(\v2#.WASyncAction.ExternalWebBetaActionR\x15externalWebBetaAction\x12k\n" +
5178
+ "\x1bprivacySettingRelayAllCalls\x18) \x01(\v2).WASyncAction.PrivacySettingRelayAllCallsR\x1bprivacySettingRelayAllCalls\x12A\n" +
5179
+ "\rcallLogAction\x18* \x01(\v2\x1b.WASyncAction.CallLogActionR\rcallLogAction\x12G\n" +
5180
+ "\rstatusPrivacy\x18, \x01(\v2!.WASyncAction.StatusPrivacyActionR\rstatusPrivacy\x12_\n" +
5181
+ "\x17botWelcomeRequestAction\x18- \x01(\v2%.WASyncAction.BotWelcomeRequestActionR\x17botWelcomeRequestAction\x12e\n" +
5182
+ "\x17deleteIndividualCallLog\x18. \x01(\v2+.WASyncAction.DeleteIndividualCallLogActionR\x17deleteIndividualCallLog\x12Y\n" +
5183
+ "\x15labelReorderingAction\x18/ \x01(\v2#.WASyncAction.LabelReorderingActionR\x15labelReorderingAction\x12M\n" +
5184
+ "\x11paymentInfoAction\x180 \x01(\v2\x1f.WASyncAction.PaymentInfoActionR\x11paymentInfoAction\x12h\n" +
5185
+ "\x1acustomPaymentMethodsAction\x181 \x01(\v2(.WASyncAction.CustomPaymentMethodsActionR\x1acustomPaymentMethodsAction\x12D\n" +
5186
+ "\x0elockChatAction\x182 \x01(\v2\x1c.WASyncAction.LockChatActionR\x0elockChatAction\x12Y\n" +
5187
+ "\x10chatLockSettings\x183 \x01(\v2-.WAProtobufsChatLockSettings.ChatLockSettingsR\x10chatLockSettings\x12b\n" +
5188
+ "\x18wamoUserIdentifierAction\x184 \x01(\v2&.WASyncAction.WamoUserIdentifierActionR\x18wamoUserIdentifierAction\x12\x8f\x01\n" +
5189
+ "'privacySettingDisableLinkPreviewsAction\x185 \x01(\v25.WASyncAction.PrivacySettingDisableLinkPreviewsActionR'privacySettingDisableLinkPreviewsAction\x12a\n" +
5190
+ "\x12deviceCapabilities\x186 \x01(\v21.WAProtobufsDeviceCapabilities.DeviceCapabilitiesR\x12deviceCapabilities\x12D\n" +
5191
+ "\x0enoteEditAction\x187 \x01(\v2\x1c.WASyncAction.NoteEditActionR\x0enoteEditAction\x12G\n" +
5192
+ "\x0ffavoritesAction\x188 \x01(\v2\x1d.WASyncAction.FavoritesActionR\x0ffavoritesAction\x12n\n" +
5193
+ "\x1cmerchantPaymentPartnerAction\x189 \x01(\v2*.WASyncAction.MerchantPaymentPartnerActionR\x1cmerchantPaymentPartnerAction\x12n\n" +
5194
+ "\x1cwaffleAccountLinkStateAction\x18: \x01(\v2*.WASyncAction.WaffleAccountLinkStateActionR\x1cwaffleAccountLinkStateAction\x12_\n" +
5195
+ "\x15usernameChatStartMode\x18; \x01(\v2).WASyncAction.UsernameChatStartModeActionR\x15usernameChatStartMode\x12}\n" +
5196
+ "!notificationActivitySettingAction\x18< \x01(\v2/.WASyncAction.NotificationActivitySettingActionR!notificationActivitySettingAction\x12J\n" +
5197
+ "\x10lidContactAction\x18= \x01(\v2\x1e.WASyncAction.LidContactActionR\x10lidContactAction\x12z\n" +
5198
+ " ctwaPerCustomerDataSharingAction\x18> \x01(\v2..WASyncAction.CtwaPerCustomerDataSharingActionR ctwaPerCustomerDataSharingAction\x12J\n" +
5199
+ "\x10paymentTosAction\x18? \x01(\v2\x1e.WASyncAction.PaymentTosActionR\x10paymentTosAction\x12\xbc\x01\n" +
5200
+ "6privacySettingChannelsPersonalisedRecommendationAction\x18@ \x01(\v2D.WASyncAction.PrivacySettingChannelsPersonalisedRecommendationActionR6privacySettingChannelsPersonalisedRecommendationAction\x12\x80\x01\n" +
5201
+ "\"businessBroadcastAssociationAction\x18A \x01(\v20.WASyncAction.BusinessBroadcastAssociationActionR\"businessBroadcastAssociationAction\">\n" +
5202
+ "\"BusinessBroadcastAssociationAction\x12\x18\n" +
5203
+ "\adeleted\x18\x01 \x01(\bR\adeleted\"t\n" +
5204
+ " CtwaPerCustomerDataSharingAction\x12P\n" +
5205
+ "#isCtwaPerCustomerDataSharingEnabled\x18\x01 \x01(\bR#isCtwaPerCustomerDataSharingEnabled\"\xa4\x01\n" +
5206
+ "\x10LidContactAction\x12\x1a\n" +
5207
+ "\bfullName\x18\x01 \x01(\tR\bfullName\x12\x1c\n" +
5208
+ "\tfirstName\x18\x02 \x01(\tR\tfirstName\x12\x1a\n" +
5209
+ "\busername\x18\x03 \x01(\tR\busername\x12:\n" +
5210
+ "\x18saveOnPrimaryAddressbook\x18\x04 \x01(\bR\x18saveOnPrimaryAddressbook\"s\n" +
5211
+ "\x0fFavoritesAction\x12D\n" +
5212
+ "\tfavorites\x18\x01 \x03(\v2&.WASyncAction.FavoritesAction.FavoriteR\tfavorites\x1a\x1a\n" +
5213
+ "\bFavorite\x12\x0e\n" +
5214
+ "\x02ID\x18\x01 \x01(\tR\x02ID\"`\n" +
5215
+ "6PrivacySettingChannelsPersonalisedRecommendationAction\x12&\n" +
5216
+ "\x0eisUserOptedOut\x18\x01 \x01(\bR\x0eisUserOptedOut\"Y\n" +
5217
+ "'PrivacySettingDisableLinkPreviewsAction\x12.\n" +
5218
+ "\x12isPreviewsDisabled\x18\x01 \x01(\bR\x12isPreviewsDisabled\":\n" +
5219
+ "\x18WamoUserIdentifierAction\x12\x1e\n" +
5220
+ "\n" +
5221
+ "identifier\x18\x01 \x01(\tR\n" +
5222
+ "identifier\"(\n" +
5223
+ "\x0eLockChatAction\x12\x16\n" +
5224
+ "\x06locked\x18\x01 \x01(\bR\x06locked\"s\n" +
5225
+ "\x1aCustomPaymentMethodsAction\x12U\n" +
5226
+ "\x14customPaymentMethods\x18\x01 \x03(\v2!.WASyncAction.CustomPaymentMethodR\x14customPaymentMethods\"\xae\x01\n" +
5227
+ "\x13CustomPaymentMethod\x12\"\n" +
5228
+ "\fcredentialID\x18\x01 \x02(\tR\fcredentialID\x12\x18\n" +
5229
+ "\acountry\x18\x02 \x02(\tR\acountry\x12\x12\n" +
5230
+ "\x04type\x18\x03 \x02(\tR\x04type\x12E\n" +
5231
+ "\bmetadata\x18\x04 \x03(\v2).WASyncAction.CustomPaymentMethodMetadataR\bmetadata\"E\n" +
5232
+ "\x1bCustomPaymentMethodMetadata\x12\x10\n" +
5233
+ "\x03key\x18\x01 \x02(\tR\x03key\x12\x14\n" +
5234
+ "\x05value\x18\x02 \x02(\tR\x05value\"%\n" +
5235
+ "\x11PaymentInfoAction\x12\x10\n" +
5236
+ "\x03cpi\x18\x01 \x01(\tR\x03cpi\"?\n" +
5237
+ "\x15LabelReorderingAction\x12&\n" +
5238
+ "\x0esortedLabelIDs\x18\x01 \x03(\x05R\x0esortedLabelIDs\"Y\n" +
5239
+ "\x1dDeleteIndividualCallLogAction\x12\x18\n" +
5240
+ "\apeerJID\x18\x01 \x01(\tR\apeerJID\x12\x1e\n" +
5241
+ "\n" +
5242
+ "isIncoming\x18\x02 \x01(\bR\n" +
5243
+ "isIncoming\"1\n" +
5244
+ "\x17BotWelcomeRequestAction\x12\x16\n" +
5245
+ "\x06isSent\x18\x01 \x01(\bR\x06isSent\"R\n" +
5246
+ "\rCallLogAction\x12A\n" +
5247
+ "\rcallLogRecord\x18\x01 \x01(\v2\x1b.WASyncAction.CallLogRecordR\rcallLogRecord\";\n" +
5248
+ "\x1bPrivacySettingRelayAllCalls\x12\x1c\n" +
5249
+ "\tisEnabled\x18\x01 \x01(\bR\tisEnabled\"1\n" +
5250
+ "\x15ExternalWebBetaAction\x12\x18\n" +
5251
+ "\aisOptIn\x18\x01 \x01(\bR\aisOptIn\"E\n" +
5252
+ "\x1fMarketingMessageBroadcastAction\x12\"\n" +
5253
+ "\frepliedCount\x18\x01 \x01(\x05R\frepliedCount\"*\n" +
5254
+ "\x12PnForLidChatAction\x12\x14\n" +
5255
+ "\x05pnJID\x18\x01 \x01(\tR\x05pnJID\"B\n" +
5256
+ " ChatAssignmentOpenedStatusAction\x12\x1e\n" +
5257
+ "\n" +
5258
+ "chatOpened\x18\x01 \x01(\bR\n" +
5259
+ "chatOpened\"<\n" +
5260
+ "\x14ChatAssignmentAction\x12$\n" +
5261
+ "\rdeviceAgentID\x18\x01 \x01(\tR\rdeviceAgentID\"\xcd\x02\n" +
5262
+ "\rStickerAction\x12\x10\n" +
5263
+ "\x03URL\x18\x01 \x01(\tR\x03URL\x12$\n" +
5264
+ "\rfileEncSHA256\x18\x02 \x01(\fR\rfileEncSHA256\x12\x1a\n" +
5265
+ "\bmediaKey\x18\x03 \x01(\fR\bmediaKey\x12\x1a\n" +
5266
+ "\bmimetype\x18\x04 \x01(\tR\bmimetype\x12\x16\n" +
5267
+ "\x06height\x18\x05 \x01(\rR\x06height\x12\x14\n" +
5268
+ "\x05width\x18\x06 \x01(\rR\x05width\x12\x1e\n" +
5269
+ "\n" +
5270
+ "directPath\x18\a \x01(\tR\n" +
5271
+ "directPath\x12\x1e\n" +
5272
+ "\n" +
5273
+ "fileLength\x18\b \x01(\x04R\n" +
5274
+ "fileLength\x12\x1e\n" +
5275
+ "\n" +
5276
+ "isFavorite\x18\t \x01(\bR\n" +
5277
+ "isFavorite\x12\"\n" +
5278
+ "\fdeviceIDHint\x18\n" +
5279
+ " \x01(\rR\fdeviceIDHint\x12\x1a\n" +
5280
+ "\bisLottie\x18\v \x01(\bR\bisLottie\"I\n" +
5281
+ "\x19RemoveRecentStickerAction\x12,\n" +
5282
+ "\x11lastStickerSentTS\x18\x01 \x01(\x03R\x11lastStickerSentTS\"0\n" +
5283
+ "\x14PrimaryVersionAction\x12\x18\n" +
5284
+ "\aversion\x18\x01 \x01(\tR\aversion\"/\n" +
5285
+ "\tNuxAction\x12\"\n" +
5286
+ "\facknowledged\x18\x01 \x01(\bR\facknowledged\"X\n" +
5287
+ "\x10TimeFormatAction\x12D\n" +
5288
+ "\x1disTwentyFourHourFormatEnabled\x18\x01 \x01(\bR\x1disTwentyFourHourFormatEnabled\",\n" +
5289
+ "\x14UserStatusMuteAction\x12\x14\n" +
5290
+ "\x05muted\x18\x01 \x01(\bR\x05muted\"\x8a\x01\n" +
5291
+ "\x12SubscriptionAction\x12$\n" +
5292
+ "\risDeactivated\x18\x01 \x01(\bR\risDeactivated\x12&\n" +
5293
+ "\x0eisAutoRenewing\x18\x02 \x01(\bR\x0eisAutoRenewing\x12&\n" +
5294
+ "\x0eexpirationDate\x18\x03 \x01(\x03R\x0eexpirationDate\"[\n" +
5295
+ "\vAgentAction\x12\x12\n" +
5296
+ "\x04name\x18\x01 \x01(\tR\x04name\x12\x1a\n" +
5297
+ "\bdeviceID\x18\x02 \x01(\x05R\bdeviceID\x12\x1c\n" +
5298
+ "\tisDeleted\x18\x03 \x01(\bR\tisDeleted\"5\n" +
5299
+ "\x19AndroidUnsupportedActions\x12\x18\n" +
5300
+ "\aallowed\x18\x01 \x01(\bR\aallowed\"&\n" +
5301
+ "\x0ePrimaryFeature\x12\x14\n" +
5302
+ "\x05flags\x18\x01 \x03(\tR\x05flags\"9\n" +
5303
+ "\rKeyExpiration\x12(\n" +
5304
+ "\x0fexpiredKeyEpoch\x18\x01 \x01(\x05R\x0fexpiredKeyEpoch\"Y\n" +
5305
+ "\x11SyncActionMessage\x12&\n" +
5306
+ "\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x12\x1c\n" +
5307
+ "\ttimestamp\x18\x02 \x01(\x03R\ttimestamp\"\xc9\x01\n" +
5308
+ "\x16SyncActionMessageRange\x122\n" +
5309
+ "\x14lastMessageTimestamp\x18\x01 \x01(\x03R\x14lastMessageTimestamp\x12>\n" +
5310
+ "\x1alastSystemMessageTimestamp\x18\x02 \x01(\x03R\x1alastSystemMessageTimestamp\x12;\n" +
5311
+ "\bmessages\x18\x03 \x03(\v2\x1f.WASyncAction.SyncActionMessageR\bmessages\"?\n" +
5312
+ "\x15UnarchiveChatsSetting\x12&\n" +
5313
+ "\x0eunarchiveChats\x18\x01 \x01(\bR\x0eunarchiveChats\"\\\n" +
5314
+ "\x10DeleteChatAction\x12H\n" +
5315
+ "\fmessageRange\x18\x01 \x01(\v2$.WASyncAction.SyncActionMessageRangeR\fmessageRange\"[\n" +
5316
+ "\x0fClearChatAction\x12H\n" +
5317
+ "\fmessageRange\x18\x01 \x01(\v2$.WASyncAction.SyncActionMessageRangeR\fmessageRange\"t\n" +
5318
+ "\x14MarkChatAsReadAction\x12\x12\n" +
5319
+ "\x04read\x18\x01 \x01(\bR\x04read\x12H\n" +
5320
+ "\fmessageRange\x18\x02 \x01(\v2$.WASyncAction.SyncActionMessageRangeR\fmessageRange\"h\n" +
5321
+ "\x18DeleteMessageForMeAction\x12 \n" +
5322
+ "\vdeleteMedia\x18\x01 \x01(\bR\vdeleteMedia\x12*\n" +
5323
+ "\x10messageTimestamp\x18\x02 \x01(\x03R\x10messageTimestamp\"y\n" +
5324
+ "\x11ArchiveChatAction\x12\x1a\n" +
5325
+ "\barchived\x18\x01 \x01(\bR\barchived\x12H\n" +
5326
+ "\fmessageRange\x18\x02 \x01(\v2$.WASyncAction.SyncActionMessageRangeR\fmessageRange\"U\n" +
5327
+ "\x18RecentEmojiWeightsAction\x129\n" +
5328
+ "\aweights\x18\x01 \x03(\v2\x1f.WASyncAction.RecentEmojiWeightR\aweights\"2\n" +
5329
+ "\x16LabelAssociationAction\x12\x18\n" +
5330
+ "\alabeled\x18\x01 \x01(\bR\alabeled\"\x94\x01\n" +
5331
+ "\x10QuickReplyAction\x12\x1a\n" +
5332
+ "\bshortcut\x18\x01 \x01(\tR\bshortcut\x12\x18\n" +
5333
+ "\amessage\x18\x02 \x01(\tR\amessage\x12\x1a\n" +
5334
+ "\bkeywords\x18\x03 \x03(\tR\bkeywords\x12\x14\n" +
5335
+ "\x05count\x18\x04 \x01(\x05R\x05count\x12\x18\n" +
5336
+ "\adeleted\x18\x05 \x01(\bR\adeleted\"'\n" +
5337
+ "\rLocaleSetting\x12\x16\n" +
5338
+ "\x06locale\x18\x01 \x01(\tR\x06locale\"%\n" +
5339
+ "\x0fPushNameSetting\x12\x12\n" +
5340
+ "\x04name\x18\x01 \x01(\tR\x04name\"I\n" +
5341
+ "\x1bSecurityNotificationSetting\x12*\n" +
5342
+ "\x10showNotification\x18\x01 \x01(\bR\x10showNotification\"#\n" +
5343
+ "\tPinAction\x12\x16\n" +
5344
+ "\x06pinned\x18\x01 \x01(\bR\x06pinned\"l\n" +
5345
+ "\n" +
5346
+ "MuteAction\x12\x14\n" +
5347
+ "\x05muted\x18\x01 \x01(\bR\x05muted\x12*\n" +
5348
+ "\x10muteEndTimestamp\x18\x02 \x01(\x03R\x10muteEndTimestamp\x12\x1c\n" +
5349
+ "\tautoMuted\x18\x03 \x01(\bR\tautoMuted\"\xcf\x01\n" +
5350
+ "\rContactAction\x12\x1a\n" +
5351
+ "\bfullName\x18\x01 \x01(\tR\bfullName\x12\x1c\n" +
5352
+ "\tfirstName\x18\x02 \x01(\tR\tfirstName\x12\x16\n" +
5353
+ "\x06lidJID\x18\x03 \x01(\tR\x06lidJID\x12:\n" +
5354
+ "\x18saveOnPrimaryAddressbook\x18\x04 \x01(\bR\x18saveOnPrimaryAddressbook\x12\x14\n" +
5355
+ "\x05pnJID\x18\x05 \x01(\tR\x05pnJID\x12\x1a\n" +
5356
+ "\busername\x18\x06 \x01(\tR\busername\"&\n" +
5357
+ "\n" +
5358
+ "StarAction\x12\x18\n" +
5359
+ "\astarred\x18\x01 \x01(\bR\astarred\"\x8f\x01\n" +
5360
+ "\x0eSyncActionData\x12\x14\n" +
5361
+ "\x05index\x18\x01 \x01(\fR\x05index\x123\n" +
5362
+ "\x05value\x18\x02 \x01(\v2\x1d.WASyncAction.SyncActionValueR\x05value\x12\x18\n" +
5363
+ "\apadding\x18\x03 \x01(\fR\apadding\x12\x18\n" +
5364
+ "\aversion\x18\x04 \x01(\x05R\aversionB(Z&go.mau.fi/whatsmeow/proto/waSyncAction"
4474
5365
 
4475
5366
  var (
4476
5367
  file_waSyncAction_WASyncAction_proto_rawDescOnce sync.Once
4477
- file_waSyncAction_WASyncAction_proto_rawDescData = file_waSyncAction_WASyncAction_proto_rawDesc
5368
+ file_waSyncAction_WASyncAction_proto_rawDescData []byte
4478
5369
  )
4479
5370
 
4480
5371
  func file_waSyncAction_WASyncAction_proto_rawDescGZIP() []byte {
4481
5372
  file_waSyncAction_WASyncAction_proto_rawDescOnce.Do(func() {
4482
- file_waSyncAction_WASyncAction_proto_rawDescData = protoimpl.X.CompressGZIP(file_waSyncAction_WASyncAction_proto_rawDescData)
5373
+ file_waSyncAction_WASyncAction_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waSyncAction_WASyncAction_proto_rawDesc), len(file_waSyncAction_WASyncAction_proto_rawDesc)))
4483
5374
  })
4484
5375
  return file_waSyncAction_WASyncAction_proto_rawDescData
4485
5376
  }
4486
5377
 
4487
- var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 11)
4488
- var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 61)
5378
+ var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 13)
5379
+ var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 67)
4489
5380
  var file_waSyncAction_WASyncAction_proto_goTypes = []any{
4490
- (CallLogRecord_CallType)(0), // 0: WASyncAction.CallLogRecord.CallType
4491
- (CallLogRecord_SilenceReason)(0), // 1: WASyncAction.CallLogRecord.SilenceReason
4492
- (CallLogRecord_CallResult)(0), // 2: WASyncAction.CallLogRecord.CallResult
4493
- (WaffleAccountLinkStateAction_AccountLinkState)(0), // 3: WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
4494
- (MerchantPaymentPartnerAction_Status)(0), // 4: WASyncAction.MerchantPaymentPartnerAction.Status
4495
- (NoteEditAction_NoteType)(0), // 5: WASyncAction.NoteEditAction.NoteType
4496
- (StatusPrivacyAction_StatusDistributionMode)(0), // 6: WASyncAction.StatusPrivacyAction.StatusDistributionMode
4497
- (MarketingMessageAction_MarketingMessagePrototypeType)(0), // 7: WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
4498
- (UsernameChatStartModeAction_ChatStartMode)(0), // 8: WASyncAction.UsernameChatStartModeAction.ChatStartMode
4499
- (LabelEditAction_ListType)(0), // 9: WASyncAction.LabelEditAction.ListType
4500
- (PatchDebugData_Platform)(0), // 10: WASyncAction.PatchDebugData.Platform
4501
- (*CallLogRecord)(nil), // 11: WASyncAction.CallLogRecord
4502
- (*WaffleAccountLinkStateAction)(nil), // 12: WASyncAction.WaffleAccountLinkStateAction
4503
- (*MerchantPaymentPartnerAction)(nil), // 13: WASyncAction.MerchantPaymentPartnerAction
4504
- (*NoteEditAction)(nil), // 14: WASyncAction.NoteEditAction
4505
- (*StatusPrivacyAction)(nil), // 15: WASyncAction.StatusPrivacyAction
4506
- (*MarketingMessageAction)(nil), // 16: WASyncAction.MarketingMessageAction
4507
- (*UsernameChatStartModeAction)(nil), // 17: WASyncAction.UsernameChatStartModeAction
4508
- (*LabelEditAction)(nil), // 18: WASyncAction.LabelEditAction
4509
- (*PatchDebugData)(nil), // 19: WASyncAction.PatchDebugData
4510
- (*RecentEmojiWeight)(nil), // 20: WASyncAction.RecentEmojiWeight
4511
- (*SyncActionValue)(nil), // 21: WASyncAction.SyncActionValue
4512
- (*FavoritesAction)(nil), // 22: WASyncAction.FavoritesAction
4513
- (*PrivacySettingDisableLinkPreviewsAction)(nil), // 23: WASyncAction.PrivacySettingDisableLinkPreviewsAction
4514
- (*WamoUserIdentifierAction)(nil), // 24: WASyncAction.WamoUserIdentifierAction
4515
- (*LockChatAction)(nil), // 25: WASyncAction.LockChatAction
4516
- (*CustomPaymentMethodsAction)(nil), // 26: WASyncAction.CustomPaymentMethodsAction
4517
- (*CustomPaymentMethod)(nil), // 27: WASyncAction.CustomPaymentMethod
4518
- (*CustomPaymentMethodMetadata)(nil), // 28: WASyncAction.CustomPaymentMethodMetadata
4519
- (*PaymentInfoAction)(nil), // 29: WASyncAction.PaymentInfoAction
4520
- (*LabelReorderingAction)(nil), // 30: WASyncAction.LabelReorderingAction
4521
- (*DeleteIndividualCallLogAction)(nil), // 31: WASyncAction.DeleteIndividualCallLogAction
4522
- (*BotWelcomeRequestAction)(nil), // 32: WASyncAction.BotWelcomeRequestAction
4523
- (*CallLogAction)(nil), // 33: WASyncAction.CallLogAction
4524
- (*PrivacySettingRelayAllCalls)(nil), // 34: WASyncAction.PrivacySettingRelayAllCalls
4525
- (*ExternalWebBetaAction)(nil), // 35: WASyncAction.ExternalWebBetaAction
4526
- (*MarketingMessageBroadcastAction)(nil), // 36: WASyncAction.MarketingMessageBroadcastAction
4527
- (*PnForLidChatAction)(nil), // 37: WASyncAction.PnForLidChatAction
4528
- (*ChatAssignmentOpenedStatusAction)(nil), // 38: WASyncAction.ChatAssignmentOpenedStatusAction
4529
- (*ChatAssignmentAction)(nil), // 39: WASyncAction.ChatAssignmentAction
4530
- (*StickerAction)(nil), // 40: WASyncAction.StickerAction
4531
- (*RemoveRecentStickerAction)(nil), // 41: WASyncAction.RemoveRecentStickerAction
4532
- (*PrimaryVersionAction)(nil), // 42: WASyncAction.PrimaryVersionAction
4533
- (*NuxAction)(nil), // 43: WASyncAction.NuxAction
4534
- (*TimeFormatAction)(nil), // 44: WASyncAction.TimeFormatAction
4535
- (*UserStatusMuteAction)(nil), // 45: WASyncAction.UserStatusMuteAction
4536
- (*SubscriptionAction)(nil), // 46: WASyncAction.SubscriptionAction
4537
- (*AgentAction)(nil), // 47: WASyncAction.AgentAction
4538
- (*AndroidUnsupportedActions)(nil), // 48: WASyncAction.AndroidUnsupportedActions
4539
- (*PrimaryFeature)(nil), // 49: WASyncAction.PrimaryFeature
4540
- (*KeyExpiration)(nil), // 50: WASyncAction.KeyExpiration
4541
- (*SyncActionMessage)(nil), // 51: WASyncAction.SyncActionMessage
4542
- (*SyncActionMessageRange)(nil), // 52: WASyncAction.SyncActionMessageRange
4543
- (*UnarchiveChatsSetting)(nil), // 53: WASyncAction.UnarchiveChatsSetting
4544
- (*DeleteChatAction)(nil), // 54: WASyncAction.DeleteChatAction
4545
- (*ClearChatAction)(nil), // 55: WASyncAction.ClearChatAction
4546
- (*MarkChatAsReadAction)(nil), // 56: WASyncAction.MarkChatAsReadAction
4547
- (*DeleteMessageForMeAction)(nil), // 57: WASyncAction.DeleteMessageForMeAction
4548
- (*ArchiveChatAction)(nil), // 58: WASyncAction.ArchiveChatAction
4549
- (*RecentEmojiWeightsAction)(nil), // 59: WASyncAction.RecentEmojiWeightsAction
4550
- (*LabelAssociationAction)(nil), // 60: WASyncAction.LabelAssociationAction
4551
- (*QuickReplyAction)(nil), // 61: WASyncAction.QuickReplyAction
4552
- (*LocaleSetting)(nil), // 62: WASyncAction.LocaleSetting
4553
- (*PushNameSetting)(nil), // 63: WASyncAction.PushNameSetting
4554
- (*SecurityNotificationSetting)(nil), // 64: WASyncAction.SecurityNotificationSetting
4555
- (*PinAction)(nil), // 65: WASyncAction.PinAction
4556
- (*MuteAction)(nil), // 66: WASyncAction.MuteAction
4557
- (*ContactAction)(nil), // 67: WASyncAction.ContactAction
4558
- (*StarAction)(nil), // 68: WASyncAction.StarAction
4559
- (*SyncActionData)(nil), // 69: WASyncAction.SyncActionData
4560
- (*CallLogRecord_ParticipantInfo)(nil), // 70: WASyncAction.CallLogRecord.ParticipantInfo
4561
- (*FavoritesAction_Favorite)(nil), // 71: WASyncAction.FavoritesAction.Favorite
4562
- (*waChatLockSettings.ChatLockSettings)(nil), // 72: WAProtobufsChatLockSettings.ChatLockSettings
4563
- (*waDeviceCapabilities.DeviceCapabilities)(nil), // 73: WAProtobufsDeviceCapabilities.DeviceCapabilities
4564
- (*waCommon.MessageKey)(nil), // 74: WACommon.MessageKey
5381
+ (CallLogRecord_CallType)(0), // 0: WASyncAction.CallLogRecord.CallType
5382
+ (CallLogRecord_SilenceReason)(0), // 1: WASyncAction.CallLogRecord.SilenceReason
5383
+ (CallLogRecord_CallResult)(0), // 2: WASyncAction.CallLogRecord.CallResult
5384
+ (PaymentTosAction_PaymentNotice)(0), // 3: WASyncAction.PaymentTosAction.PaymentNotice
5385
+ (NotificationActivitySettingAction_NotificationActivitySetting)(0), // 4: WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
5386
+ (WaffleAccountLinkStateAction_AccountLinkState)(0), // 5: WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
5387
+ (MerchantPaymentPartnerAction_Status)(0), // 6: WASyncAction.MerchantPaymentPartnerAction.Status
5388
+ (NoteEditAction_NoteType)(0), // 7: WASyncAction.NoteEditAction.NoteType
5389
+ (StatusPrivacyAction_StatusDistributionMode)(0), // 8: WASyncAction.StatusPrivacyAction.StatusDistributionMode
5390
+ (MarketingMessageAction_MarketingMessagePrototypeType)(0), // 9: WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
5391
+ (UsernameChatStartModeAction_ChatStartMode)(0), // 10: WASyncAction.UsernameChatStartModeAction.ChatStartMode
5392
+ (LabelEditAction_ListType)(0), // 11: WASyncAction.LabelEditAction.ListType
5393
+ (PatchDebugData_Platform)(0), // 12: WASyncAction.PatchDebugData.Platform
5394
+ (*CallLogRecord)(nil), // 13: WASyncAction.CallLogRecord
5395
+ (*PaymentTosAction)(nil), // 14: WASyncAction.PaymentTosAction
5396
+ (*NotificationActivitySettingAction)(nil), // 15: WASyncAction.NotificationActivitySettingAction
5397
+ (*WaffleAccountLinkStateAction)(nil), // 16: WASyncAction.WaffleAccountLinkStateAction
5398
+ (*MerchantPaymentPartnerAction)(nil), // 17: WASyncAction.MerchantPaymentPartnerAction
5399
+ (*NoteEditAction)(nil), // 18: WASyncAction.NoteEditAction
5400
+ (*StatusPrivacyAction)(nil), // 19: WASyncAction.StatusPrivacyAction
5401
+ (*MarketingMessageAction)(nil), // 20: WASyncAction.MarketingMessageAction
5402
+ (*UsernameChatStartModeAction)(nil), // 21: WASyncAction.UsernameChatStartModeAction
5403
+ (*LabelEditAction)(nil), // 22: WASyncAction.LabelEditAction
5404
+ (*PatchDebugData)(nil), // 23: WASyncAction.PatchDebugData
5405
+ (*RecentEmojiWeight)(nil), // 24: WASyncAction.RecentEmojiWeight
5406
+ (*SyncActionValue)(nil), // 25: WASyncAction.SyncActionValue
5407
+ (*BusinessBroadcastAssociationAction)(nil), // 26: WASyncAction.BusinessBroadcastAssociationAction
5408
+ (*CtwaPerCustomerDataSharingAction)(nil), // 27: WASyncAction.CtwaPerCustomerDataSharingAction
5409
+ (*LidContactAction)(nil), // 28: WASyncAction.LidContactAction
5410
+ (*FavoritesAction)(nil), // 29: WASyncAction.FavoritesAction
5411
+ (*PrivacySettingChannelsPersonalisedRecommendationAction)(nil), // 30: WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
5412
+ (*PrivacySettingDisableLinkPreviewsAction)(nil), // 31: WASyncAction.PrivacySettingDisableLinkPreviewsAction
5413
+ (*WamoUserIdentifierAction)(nil), // 32: WASyncAction.WamoUserIdentifierAction
5414
+ (*LockChatAction)(nil), // 33: WASyncAction.LockChatAction
5415
+ (*CustomPaymentMethodsAction)(nil), // 34: WASyncAction.CustomPaymentMethodsAction
5416
+ (*CustomPaymentMethod)(nil), // 35: WASyncAction.CustomPaymentMethod
5417
+ (*CustomPaymentMethodMetadata)(nil), // 36: WASyncAction.CustomPaymentMethodMetadata
5418
+ (*PaymentInfoAction)(nil), // 37: WASyncAction.PaymentInfoAction
5419
+ (*LabelReorderingAction)(nil), // 38: WASyncAction.LabelReorderingAction
5420
+ (*DeleteIndividualCallLogAction)(nil), // 39: WASyncAction.DeleteIndividualCallLogAction
5421
+ (*BotWelcomeRequestAction)(nil), // 40: WASyncAction.BotWelcomeRequestAction
5422
+ (*CallLogAction)(nil), // 41: WASyncAction.CallLogAction
5423
+ (*PrivacySettingRelayAllCalls)(nil), // 42: WASyncAction.PrivacySettingRelayAllCalls
5424
+ (*ExternalWebBetaAction)(nil), // 43: WASyncAction.ExternalWebBetaAction
5425
+ (*MarketingMessageBroadcastAction)(nil), // 44: WASyncAction.MarketingMessageBroadcastAction
5426
+ (*PnForLidChatAction)(nil), // 45: WASyncAction.PnForLidChatAction
5427
+ (*ChatAssignmentOpenedStatusAction)(nil), // 46: WASyncAction.ChatAssignmentOpenedStatusAction
5428
+ (*ChatAssignmentAction)(nil), // 47: WASyncAction.ChatAssignmentAction
5429
+ (*StickerAction)(nil), // 48: WASyncAction.StickerAction
5430
+ (*RemoveRecentStickerAction)(nil), // 49: WASyncAction.RemoveRecentStickerAction
5431
+ (*PrimaryVersionAction)(nil), // 50: WASyncAction.PrimaryVersionAction
5432
+ (*NuxAction)(nil), // 51: WASyncAction.NuxAction
5433
+ (*TimeFormatAction)(nil), // 52: WASyncAction.TimeFormatAction
5434
+ (*UserStatusMuteAction)(nil), // 53: WASyncAction.UserStatusMuteAction
5435
+ (*SubscriptionAction)(nil), // 54: WASyncAction.SubscriptionAction
5436
+ (*AgentAction)(nil), // 55: WASyncAction.AgentAction
5437
+ (*AndroidUnsupportedActions)(nil), // 56: WASyncAction.AndroidUnsupportedActions
5438
+ (*PrimaryFeature)(nil), // 57: WASyncAction.PrimaryFeature
5439
+ (*KeyExpiration)(nil), // 58: WASyncAction.KeyExpiration
5440
+ (*SyncActionMessage)(nil), // 59: WASyncAction.SyncActionMessage
5441
+ (*SyncActionMessageRange)(nil), // 60: WASyncAction.SyncActionMessageRange
5442
+ (*UnarchiveChatsSetting)(nil), // 61: WASyncAction.UnarchiveChatsSetting
5443
+ (*DeleteChatAction)(nil), // 62: WASyncAction.DeleteChatAction
5444
+ (*ClearChatAction)(nil), // 63: WASyncAction.ClearChatAction
5445
+ (*MarkChatAsReadAction)(nil), // 64: WASyncAction.MarkChatAsReadAction
5446
+ (*DeleteMessageForMeAction)(nil), // 65: WASyncAction.DeleteMessageForMeAction
5447
+ (*ArchiveChatAction)(nil), // 66: WASyncAction.ArchiveChatAction
5448
+ (*RecentEmojiWeightsAction)(nil), // 67: WASyncAction.RecentEmojiWeightsAction
5449
+ (*LabelAssociationAction)(nil), // 68: WASyncAction.LabelAssociationAction
5450
+ (*QuickReplyAction)(nil), // 69: WASyncAction.QuickReplyAction
5451
+ (*LocaleSetting)(nil), // 70: WASyncAction.LocaleSetting
5452
+ (*PushNameSetting)(nil), // 71: WASyncAction.PushNameSetting
5453
+ (*SecurityNotificationSetting)(nil), // 72: WASyncAction.SecurityNotificationSetting
5454
+ (*PinAction)(nil), // 73: WASyncAction.PinAction
5455
+ (*MuteAction)(nil), // 74: WASyncAction.MuteAction
5456
+ (*ContactAction)(nil), // 75: WASyncAction.ContactAction
5457
+ (*StarAction)(nil), // 76: WASyncAction.StarAction
5458
+ (*SyncActionData)(nil), // 77: WASyncAction.SyncActionData
5459
+ (*CallLogRecord_ParticipantInfo)(nil), // 78: WASyncAction.CallLogRecord.ParticipantInfo
5460
+ (*FavoritesAction_Favorite)(nil), // 79: WASyncAction.FavoritesAction.Favorite
5461
+ (*waChatLockSettings.ChatLockSettings)(nil), // 80: WAProtobufsChatLockSettings.ChatLockSettings
5462
+ (*waDeviceCapabilities.DeviceCapabilities)(nil), // 81: WAProtobufsDeviceCapabilities.DeviceCapabilities
5463
+ (*waCommon.MessageKey)(nil), // 82: WACommon.MessageKey
4565
5464
  }
4566
5465
  var file_waSyncAction_WASyncAction_proto_depIdxs = []int32{
4567
5466
  2, // 0: WASyncAction.CallLogRecord.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
4568
5467
  1, // 1: WASyncAction.CallLogRecord.silenceReason:type_name -> WASyncAction.CallLogRecord.SilenceReason
4569
- 70, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
5468
+ 78, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
4570
5469
  0, // 3: WASyncAction.CallLogRecord.callType:type_name -> WASyncAction.CallLogRecord.CallType
4571
- 3, // 4: WASyncAction.WaffleAccountLinkStateAction.linkState:type_name -> WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
4572
- 4, // 5: WASyncAction.MerchantPaymentPartnerAction.status:type_name -> WASyncAction.MerchantPaymentPartnerAction.Status
4573
- 5, // 6: WASyncAction.NoteEditAction.type:type_name -> WASyncAction.NoteEditAction.NoteType
4574
- 6, // 7: WASyncAction.StatusPrivacyAction.mode:type_name -> WASyncAction.StatusPrivacyAction.StatusDistributionMode
4575
- 7, // 8: WASyncAction.MarketingMessageAction.type:type_name -> WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
4576
- 8, // 9: WASyncAction.UsernameChatStartModeAction.chatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction.ChatStartMode
4577
- 9, // 10: WASyncAction.LabelEditAction.type:type_name -> WASyncAction.LabelEditAction.ListType
4578
- 10, // 11: WASyncAction.PatchDebugData.senderPlatform:type_name -> WASyncAction.PatchDebugData.Platform
4579
- 68, // 12: WASyncAction.SyncActionValue.starAction:type_name -> WASyncAction.StarAction
4580
- 67, // 13: WASyncAction.SyncActionValue.contactAction:type_name -> WASyncAction.ContactAction
4581
- 66, // 14: WASyncAction.SyncActionValue.muteAction:type_name -> WASyncAction.MuteAction
4582
- 65, // 15: WASyncAction.SyncActionValue.pinAction:type_name -> WASyncAction.PinAction
4583
- 64, // 16: WASyncAction.SyncActionValue.securityNotificationSetting:type_name -> WASyncAction.SecurityNotificationSetting
4584
- 63, // 17: WASyncAction.SyncActionValue.pushNameSetting:type_name -> WASyncAction.PushNameSetting
4585
- 61, // 18: WASyncAction.SyncActionValue.quickReplyAction:type_name -> WASyncAction.QuickReplyAction
4586
- 59, // 19: WASyncAction.SyncActionValue.recentEmojiWeightsAction:type_name -> WASyncAction.RecentEmojiWeightsAction
4587
- 18, // 20: WASyncAction.SyncActionValue.labelEditAction:type_name -> WASyncAction.LabelEditAction
4588
- 60, // 21: WASyncAction.SyncActionValue.labelAssociationAction:type_name -> WASyncAction.LabelAssociationAction
4589
- 62, // 22: WASyncAction.SyncActionValue.localeSetting:type_name -> WASyncAction.LocaleSetting
4590
- 58, // 23: WASyncAction.SyncActionValue.archiveChatAction:type_name -> WASyncAction.ArchiveChatAction
4591
- 57, // 24: WASyncAction.SyncActionValue.deleteMessageForMeAction:type_name -> WASyncAction.DeleteMessageForMeAction
4592
- 50, // 25: WASyncAction.SyncActionValue.keyExpiration:type_name -> WASyncAction.KeyExpiration
4593
- 56, // 26: WASyncAction.SyncActionValue.markChatAsReadAction:type_name -> WASyncAction.MarkChatAsReadAction
4594
- 55, // 27: WASyncAction.SyncActionValue.clearChatAction:type_name -> WASyncAction.ClearChatAction
4595
- 54, // 28: WASyncAction.SyncActionValue.deleteChatAction:type_name -> WASyncAction.DeleteChatAction
4596
- 53, // 29: WASyncAction.SyncActionValue.unarchiveChatsSetting:type_name -> WASyncAction.UnarchiveChatsSetting
4597
- 49, // 30: WASyncAction.SyncActionValue.primaryFeature:type_name -> WASyncAction.PrimaryFeature
4598
- 48, // 31: WASyncAction.SyncActionValue.androidUnsupportedActions:type_name -> WASyncAction.AndroidUnsupportedActions
4599
- 47, // 32: WASyncAction.SyncActionValue.agentAction:type_name -> WASyncAction.AgentAction
4600
- 46, // 33: WASyncAction.SyncActionValue.subscriptionAction:type_name -> WASyncAction.SubscriptionAction
4601
- 45, // 34: WASyncAction.SyncActionValue.userStatusMuteAction:type_name -> WASyncAction.UserStatusMuteAction
4602
- 44, // 35: WASyncAction.SyncActionValue.timeFormatAction:type_name -> WASyncAction.TimeFormatAction
4603
- 43, // 36: WASyncAction.SyncActionValue.nuxAction:type_name -> WASyncAction.NuxAction
4604
- 42, // 37: WASyncAction.SyncActionValue.primaryVersionAction:type_name -> WASyncAction.PrimaryVersionAction
4605
- 40, // 38: WASyncAction.SyncActionValue.stickerAction:type_name -> WASyncAction.StickerAction
4606
- 41, // 39: WASyncAction.SyncActionValue.removeRecentStickerAction:type_name -> WASyncAction.RemoveRecentStickerAction
4607
- 39, // 40: WASyncAction.SyncActionValue.chatAssignment:type_name -> WASyncAction.ChatAssignmentAction
4608
- 38, // 41: WASyncAction.SyncActionValue.chatAssignmentOpenedStatus:type_name -> WASyncAction.ChatAssignmentOpenedStatusAction
4609
- 37, // 42: WASyncAction.SyncActionValue.pnForLidChatAction:type_name -> WASyncAction.PnForLidChatAction
4610
- 16, // 43: WASyncAction.SyncActionValue.marketingMessageAction:type_name -> WASyncAction.MarketingMessageAction
4611
- 36, // 44: WASyncAction.SyncActionValue.marketingMessageBroadcastAction:type_name -> WASyncAction.MarketingMessageBroadcastAction
4612
- 35, // 45: WASyncAction.SyncActionValue.externalWebBetaAction:type_name -> WASyncAction.ExternalWebBetaAction
4613
- 34, // 46: WASyncAction.SyncActionValue.privacySettingRelayAllCalls:type_name -> WASyncAction.PrivacySettingRelayAllCalls
4614
- 33, // 47: WASyncAction.SyncActionValue.callLogAction:type_name -> WASyncAction.CallLogAction
4615
- 15, // 48: WASyncAction.SyncActionValue.statusPrivacy:type_name -> WASyncAction.StatusPrivacyAction
4616
- 32, // 49: WASyncAction.SyncActionValue.botWelcomeRequestAction:type_name -> WASyncAction.BotWelcomeRequestAction
4617
- 31, // 50: WASyncAction.SyncActionValue.deleteIndividualCallLog:type_name -> WASyncAction.DeleteIndividualCallLogAction
4618
- 30, // 51: WASyncAction.SyncActionValue.labelReorderingAction:type_name -> WASyncAction.LabelReorderingAction
4619
- 29, // 52: WASyncAction.SyncActionValue.paymentInfoAction:type_name -> WASyncAction.PaymentInfoAction
4620
- 26, // 53: WASyncAction.SyncActionValue.customPaymentMethodsAction:type_name -> WASyncAction.CustomPaymentMethodsAction
4621
- 25, // 54: WASyncAction.SyncActionValue.lockChatAction:type_name -> WASyncAction.LockChatAction
4622
- 72, // 55: WASyncAction.SyncActionValue.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
4623
- 24, // 56: WASyncAction.SyncActionValue.wamoUserIdentifierAction:type_name -> WASyncAction.WamoUserIdentifierAction
4624
- 23, // 57: WASyncAction.SyncActionValue.privacySettingDisableLinkPreviewsAction:type_name -> WASyncAction.PrivacySettingDisableLinkPreviewsAction
4625
- 73, // 58: WASyncAction.SyncActionValue.deviceCapabilities:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities
4626
- 14, // 59: WASyncAction.SyncActionValue.noteEditAction:type_name -> WASyncAction.NoteEditAction
4627
- 22, // 60: WASyncAction.SyncActionValue.favoritesAction:type_name -> WASyncAction.FavoritesAction
4628
- 13, // 61: WASyncAction.SyncActionValue.merchantPaymentPartnerAction:type_name -> WASyncAction.MerchantPaymentPartnerAction
4629
- 12, // 62: WASyncAction.SyncActionValue.waffleAccountLinkStateAction:type_name -> WASyncAction.WaffleAccountLinkStateAction
4630
- 17, // 63: WASyncAction.SyncActionValue.usernameChatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction
4631
- 71, // 64: WASyncAction.FavoritesAction.favorites:type_name -> WASyncAction.FavoritesAction.Favorite
4632
- 27, // 65: WASyncAction.CustomPaymentMethodsAction.customPaymentMethods:type_name -> WASyncAction.CustomPaymentMethod
4633
- 28, // 66: WASyncAction.CustomPaymentMethod.metadata:type_name -> WASyncAction.CustomPaymentMethodMetadata
4634
- 11, // 67: WASyncAction.CallLogAction.callLogRecord:type_name -> WASyncAction.CallLogRecord
4635
- 74, // 68: WASyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
4636
- 51, // 69: WASyncAction.SyncActionMessageRange.messages:type_name -> WASyncAction.SyncActionMessage
4637
- 52, // 70: WASyncAction.DeleteChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
4638
- 52, // 71: WASyncAction.ClearChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
4639
- 52, // 72: WASyncAction.MarkChatAsReadAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
4640
- 52, // 73: WASyncAction.ArchiveChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
4641
- 20, // 74: WASyncAction.RecentEmojiWeightsAction.weights:type_name -> WASyncAction.RecentEmojiWeight
4642
- 21, // 75: WASyncAction.SyncActionData.value:type_name -> WASyncAction.SyncActionValue
4643
- 2, // 76: WASyncAction.CallLogRecord.ParticipantInfo.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
4644
- 77, // [77:77] is the sub-list for method output_type
4645
- 77, // [77:77] is the sub-list for method input_type
4646
- 77, // [77:77] is the sub-list for extension type_name
4647
- 77, // [77:77] is the sub-list for extension extendee
4648
- 0, // [0:77] is the sub-list for field type_name
5470
+ 3, // 4: WASyncAction.PaymentTosAction.paymentNotice:type_name -> WASyncAction.PaymentTosAction.PaymentNotice
5471
+ 4, // 5: WASyncAction.NotificationActivitySettingAction.notificationActivitySetting:type_name -> WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
5472
+ 5, // 6: WASyncAction.WaffleAccountLinkStateAction.linkState:type_name -> WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
5473
+ 6, // 7: WASyncAction.MerchantPaymentPartnerAction.status:type_name -> WASyncAction.MerchantPaymentPartnerAction.Status
5474
+ 7, // 8: WASyncAction.NoteEditAction.type:type_name -> WASyncAction.NoteEditAction.NoteType
5475
+ 8, // 9: WASyncAction.StatusPrivacyAction.mode:type_name -> WASyncAction.StatusPrivacyAction.StatusDistributionMode
5476
+ 9, // 10: WASyncAction.MarketingMessageAction.type:type_name -> WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
5477
+ 10, // 11: WASyncAction.UsernameChatStartModeAction.chatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction.ChatStartMode
5478
+ 11, // 12: WASyncAction.LabelEditAction.type:type_name -> WASyncAction.LabelEditAction.ListType
5479
+ 12, // 13: WASyncAction.PatchDebugData.senderPlatform:type_name -> WASyncAction.PatchDebugData.Platform
5480
+ 76, // 14: WASyncAction.SyncActionValue.starAction:type_name -> WASyncAction.StarAction
5481
+ 75, // 15: WASyncAction.SyncActionValue.contactAction:type_name -> WASyncAction.ContactAction
5482
+ 74, // 16: WASyncAction.SyncActionValue.muteAction:type_name -> WASyncAction.MuteAction
5483
+ 73, // 17: WASyncAction.SyncActionValue.pinAction:type_name -> WASyncAction.PinAction
5484
+ 72, // 18: WASyncAction.SyncActionValue.securityNotificationSetting:type_name -> WASyncAction.SecurityNotificationSetting
5485
+ 71, // 19: WASyncAction.SyncActionValue.pushNameSetting:type_name -> WASyncAction.PushNameSetting
5486
+ 69, // 20: WASyncAction.SyncActionValue.quickReplyAction:type_name -> WASyncAction.QuickReplyAction
5487
+ 67, // 21: WASyncAction.SyncActionValue.recentEmojiWeightsAction:type_name -> WASyncAction.RecentEmojiWeightsAction
5488
+ 22, // 22: WASyncAction.SyncActionValue.labelEditAction:type_name -> WASyncAction.LabelEditAction
5489
+ 68, // 23: WASyncAction.SyncActionValue.labelAssociationAction:type_name -> WASyncAction.LabelAssociationAction
5490
+ 70, // 24: WASyncAction.SyncActionValue.localeSetting:type_name -> WASyncAction.LocaleSetting
5491
+ 66, // 25: WASyncAction.SyncActionValue.archiveChatAction:type_name -> WASyncAction.ArchiveChatAction
5492
+ 65, // 26: WASyncAction.SyncActionValue.deleteMessageForMeAction:type_name -> WASyncAction.DeleteMessageForMeAction
5493
+ 58, // 27: WASyncAction.SyncActionValue.keyExpiration:type_name -> WASyncAction.KeyExpiration
5494
+ 64, // 28: WASyncAction.SyncActionValue.markChatAsReadAction:type_name -> WASyncAction.MarkChatAsReadAction
5495
+ 63, // 29: WASyncAction.SyncActionValue.clearChatAction:type_name -> WASyncAction.ClearChatAction
5496
+ 62, // 30: WASyncAction.SyncActionValue.deleteChatAction:type_name -> WASyncAction.DeleteChatAction
5497
+ 61, // 31: WASyncAction.SyncActionValue.unarchiveChatsSetting:type_name -> WASyncAction.UnarchiveChatsSetting
5498
+ 57, // 32: WASyncAction.SyncActionValue.primaryFeature:type_name -> WASyncAction.PrimaryFeature
5499
+ 56, // 33: WASyncAction.SyncActionValue.androidUnsupportedActions:type_name -> WASyncAction.AndroidUnsupportedActions
5500
+ 55, // 34: WASyncAction.SyncActionValue.agentAction:type_name -> WASyncAction.AgentAction
5501
+ 54, // 35: WASyncAction.SyncActionValue.subscriptionAction:type_name -> WASyncAction.SubscriptionAction
5502
+ 53, // 36: WASyncAction.SyncActionValue.userStatusMuteAction:type_name -> WASyncAction.UserStatusMuteAction
5503
+ 52, // 37: WASyncAction.SyncActionValue.timeFormatAction:type_name -> WASyncAction.TimeFormatAction
5504
+ 51, // 38: WASyncAction.SyncActionValue.nuxAction:type_name -> WASyncAction.NuxAction
5505
+ 50, // 39: WASyncAction.SyncActionValue.primaryVersionAction:type_name -> WASyncAction.PrimaryVersionAction
5506
+ 48, // 40: WASyncAction.SyncActionValue.stickerAction:type_name -> WASyncAction.StickerAction
5507
+ 49, // 41: WASyncAction.SyncActionValue.removeRecentStickerAction:type_name -> WASyncAction.RemoveRecentStickerAction
5508
+ 47, // 42: WASyncAction.SyncActionValue.chatAssignment:type_name -> WASyncAction.ChatAssignmentAction
5509
+ 46, // 43: WASyncAction.SyncActionValue.chatAssignmentOpenedStatus:type_name -> WASyncAction.ChatAssignmentOpenedStatusAction
5510
+ 45, // 44: WASyncAction.SyncActionValue.pnForLidChatAction:type_name -> WASyncAction.PnForLidChatAction
5511
+ 20, // 45: WASyncAction.SyncActionValue.marketingMessageAction:type_name -> WASyncAction.MarketingMessageAction
5512
+ 44, // 46: WASyncAction.SyncActionValue.marketingMessageBroadcastAction:type_name -> WASyncAction.MarketingMessageBroadcastAction
5513
+ 43, // 47: WASyncAction.SyncActionValue.externalWebBetaAction:type_name -> WASyncAction.ExternalWebBetaAction
5514
+ 42, // 48: WASyncAction.SyncActionValue.privacySettingRelayAllCalls:type_name -> WASyncAction.PrivacySettingRelayAllCalls
5515
+ 41, // 49: WASyncAction.SyncActionValue.callLogAction:type_name -> WASyncAction.CallLogAction
5516
+ 19, // 50: WASyncAction.SyncActionValue.statusPrivacy:type_name -> WASyncAction.StatusPrivacyAction
5517
+ 40, // 51: WASyncAction.SyncActionValue.botWelcomeRequestAction:type_name -> WASyncAction.BotWelcomeRequestAction
5518
+ 39, // 52: WASyncAction.SyncActionValue.deleteIndividualCallLog:type_name -> WASyncAction.DeleteIndividualCallLogAction
5519
+ 38, // 53: WASyncAction.SyncActionValue.labelReorderingAction:type_name -> WASyncAction.LabelReorderingAction
5520
+ 37, // 54: WASyncAction.SyncActionValue.paymentInfoAction:type_name -> WASyncAction.PaymentInfoAction
5521
+ 34, // 55: WASyncAction.SyncActionValue.customPaymentMethodsAction:type_name -> WASyncAction.CustomPaymentMethodsAction
5522
+ 33, // 56: WASyncAction.SyncActionValue.lockChatAction:type_name -> WASyncAction.LockChatAction
5523
+ 80, // 57: WASyncAction.SyncActionValue.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
5524
+ 32, // 58: WASyncAction.SyncActionValue.wamoUserIdentifierAction:type_name -> WASyncAction.WamoUserIdentifierAction
5525
+ 31, // 59: WASyncAction.SyncActionValue.privacySettingDisableLinkPreviewsAction:type_name -> WASyncAction.PrivacySettingDisableLinkPreviewsAction
5526
+ 81, // 60: WASyncAction.SyncActionValue.deviceCapabilities:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities
5527
+ 18, // 61: WASyncAction.SyncActionValue.noteEditAction:type_name -> WASyncAction.NoteEditAction
5528
+ 29, // 62: WASyncAction.SyncActionValue.favoritesAction:type_name -> WASyncAction.FavoritesAction
5529
+ 17, // 63: WASyncAction.SyncActionValue.merchantPaymentPartnerAction:type_name -> WASyncAction.MerchantPaymentPartnerAction
5530
+ 16, // 64: WASyncAction.SyncActionValue.waffleAccountLinkStateAction:type_name -> WASyncAction.WaffleAccountLinkStateAction
5531
+ 21, // 65: WASyncAction.SyncActionValue.usernameChatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction
5532
+ 15, // 66: WASyncAction.SyncActionValue.notificationActivitySettingAction:type_name -> WASyncAction.NotificationActivitySettingAction
5533
+ 28, // 67: WASyncAction.SyncActionValue.lidContactAction:type_name -> WASyncAction.LidContactAction
5534
+ 27, // 68: WASyncAction.SyncActionValue.ctwaPerCustomerDataSharingAction:type_name -> WASyncAction.CtwaPerCustomerDataSharingAction
5535
+ 14, // 69: WASyncAction.SyncActionValue.paymentTosAction:type_name -> WASyncAction.PaymentTosAction
5536
+ 30, // 70: WASyncAction.SyncActionValue.privacySettingChannelsPersonalisedRecommendationAction:type_name -> WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
5537
+ 26, // 71: WASyncAction.SyncActionValue.businessBroadcastAssociationAction:type_name -> WASyncAction.BusinessBroadcastAssociationAction
5538
+ 79, // 72: WASyncAction.FavoritesAction.favorites:type_name -> WASyncAction.FavoritesAction.Favorite
5539
+ 35, // 73: WASyncAction.CustomPaymentMethodsAction.customPaymentMethods:type_name -> WASyncAction.CustomPaymentMethod
5540
+ 36, // 74: WASyncAction.CustomPaymentMethod.metadata:type_name -> WASyncAction.CustomPaymentMethodMetadata
5541
+ 13, // 75: WASyncAction.CallLogAction.callLogRecord:type_name -> WASyncAction.CallLogRecord
5542
+ 82, // 76: WASyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
5543
+ 59, // 77: WASyncAction.SyncActionMessageRange.messages:type_name -> WASyncAction.SyncActionMessage
5544
+ 60, // 78: WASyncAction.DeleteChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5545
+ 60, // 79: WASyncAction.ClearChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5546
+ 60, // 80: WASyncAction.MarkChatAsReadAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5547
+ 60, // 81: WASyncAction.ArchiveChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5548
+ 24, // 82: WASyncAction.RecentEmojiWeightsAction.weights:type_name -> WASyncAction.RecentEmojiWeight
5549
+ 25, // 83: WASyncAction.SyncActionData.value:type_name -> WASyncAction.SyncActionValue
5550
+ 2, // 84: WASyncAction.CallLogRecord.ParticipantInfo.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
5551
+ 85, // [85:85] is the sub-list for method output_type
5552
+ 85, // [85:85] is the sub-list for method input_type
5553
+ 85, // [85:85] is the sub-list for extension type_name
5554
+ 85, // [85:85] is the sub-list for extension extendee
5555
+ 0, // [0:85] is the sub-list for field type_name
4649
5556
  }
4650
5557
 
4651
5558
  func init() { file_waSyncAction_WASyncAction_proto_init() }
@@ -4657,9 +5564,9 @@ func file_waSyncAction_WASyncAction_proto_init() {
4657
5564
  out := protoimpl.TypeBuilder{
4658
5565
  File: protoimpl.DescBuilder{
4659
5566
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
4660
- RawDescriptor: file_waSyncAction_WASyncAction_proto_rawDesc,
4661
- NumEnums: 11,
4662
- NumMessages: 61,
5567
+ RawDescriptor: unsafe.Slice(unsafe.StringData(file_waSyncAction_WASyncAction_proto_rawDesc), len(file_waSyncAction_WASyncAction_proto_rawDesc)),
5568
+ NumEnums: 13,
5569
+ NumMessages: 67,
4663
5570
  NumExtensions: 0,
4664
5571
  NumServices: 0,
4665
5572
  },
@@ -4669,7 +5576,6 @@ func file_waSyncAction_WASyncAction_proto_init() {
4669
5576
  MessageInfos: file_waSyncAction_WASyncAction_proto_msgTypes,
4670
5577
  }.Build()
4671
5578
  File_waSyncAction_WASyncAction_proto = out.File
4672
- file_waSyncAction_WASyncAction_proto_rawDesc = nil
4673
5579
  file_waSyncAction_WASyncAction_proto_goTypes = nil
4674
5580
  file_waSyncAction_WASyncAction_proto_depIdxs = nil
4675
5581
  }