slidge-whatsapp 0.2.5__cp313-cp313-manylinux_2_36_aarch64.whl → 0.2.6__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 (320) hide show
  1. slidge_whatsapp/config.py +3 -0
  2. slidge_whatsapp/event.go +23 -24
  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 +181 -181
  6. slidge_whatsapp/generated/_whatsapp.cpython-313-aarch64-linux-gnu.so +0 -0
  7. slidge_whatsapp/generated/build.py +155 -155
  8. slidge_whatsapp/generated/whatsapp.c +1507 -1507
  9. slidge_whatsapp/generated/whatsapp.go +907 -907
  10. slidge_whatsapp/generated/whatsapp.py +1318 -1318
  11. slidge_whatsapp/generated/whatsapp_go.h +181 -181
  12. slidge_whatsapp/go.mod +15 -12
  13. slidge_whatsapp/go.sum +41 -29
  14. slidge_whatsapp/media/media.go +16 -10
  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 +41 -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/exsync/event.go +88 -0
  92. slidge_whatsapp/vendor/go.mau.fi/util/exsync/returnonce.go +25 -0
  93. slidge_whatsapp/vendor/go.mau.fi/util/exsync/ringbuffer.go +139 -0
  94. slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncmap.go +94 -0
  95. slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncset.go +136 -0
  96. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/callermarshal.go +28 -0
  97. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/defaults.go +32 -0
  98. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/generics.go +45 -0
  99. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/writer.go +81 -0
  100. slidge_whatsapp/vendor/go.mau.fi/util/ptr/ptr.go +43 -0
  101. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +27 -26
  102. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +4 -3
  103. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/keys.go +5 -4
  104. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +27 -25
  105. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +3 -2
  106. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/broadcast.go +5 -4
  107. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +60 -15
  108. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +25 -9
  109. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +45 -19
  110. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +52 -28
  111. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +1 -0
  112. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +59 -29
  113. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +166 -146
  114. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +2 -2
  115. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaconn.go +5 -3
  116. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaretry.go +2 -1
  117. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +270 -111
  118. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +118 -31
  119. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +67 -36
  120. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +7 -4
  121. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +42 -18
  122. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +9 -5
  123. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +2 -1
  124. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/privacysettings.go +10 -11
  125. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.go +39 -9
  126. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.go +354 -175
  127. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.proto +5 -5
  128. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +158 -15
  129. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +1 -0
  130. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.go +29 -9
  131. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.go +13 -9
  132. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.go +344 -31
  133. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.proto +26 -0
  134. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/{WAWebProtobufsCompanionReg.pb.go → WACompanionReg.pb.go} +170 -84
  135. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/{WAWebProtobufsCompanionReg.proto → WACompanionReg.proto} +1 -1
  136. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.go +173 -9
  137. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +78 -16
  138. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +5 -0
  139. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +6747 -2230
  140. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +294 -43
  141. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +456 -135
  142. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +14 -0
  143. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.go +162 -9
  144. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.proto +1 -0
  145. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.go +32 -9
  146. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.proto +1 -0
  147. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.go +192 -52
  148. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.proto +8 -0
  149. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.go +60 -9
  150. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.go +39 -9
  151. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.go +61 -9
  152. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +1051 -382
  153. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +32 -0
  154. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.go +27 -9
  155. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.go +59 -9
  156. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +382 -78
  157. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +8 -0
  158. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +555 -9
  159. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +2 -0
  160. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +13 -3
  161. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +29 -19
  162. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +244 -73
  163. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +27 -16
  164. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +3 -1
  165. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +85 -43
  166. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/signal.go +75 -88
  167. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +79 -61
  168. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/lidmap.go +186 -0
  169. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +291 -167
  170. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +153 -0
  171. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/03-message-secrets.sql +11 -0
  172. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/04-privacy-tokens.sql +8 -0
  173. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/05-account-jid-format.sql +2 -0
  174. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/06-facebook-uuid.sql +2 -0
  175. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/07-account-lid.sql +2 -0
  176. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/08-lid-mapping.sql +5 -0
  177. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/09-decryption-buffer.sql +10 -0
  178. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/upgrades.go +22 -0
  179. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +105 -56
  180. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/botmap.go +210 -0
  181. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +8 -0
  182. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/group.go +15 -6
  183. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +7 -8
  184. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +17 -0
  185. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/update.go +3 -2
  186. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/upload.go +1 -1
  187. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +45 -29
  188. slidge_whatsapp/vendor/golang.org/x/exp/LICENSE +27 -0
  189. slidge_whatsapp/vendor/golang.org/x/exp/PATENTS +22 -0
  190. slidge_whatsapp/vendor/golang.org/x/exp/constraints/constraints.go +54 -0
  191. slidge_whatsapp/vendor/golang.org/x/net/http/httpguts/guts.go +50 -0
  192. slidge_whatsapp/vendor/golang.org/x/net/http/httpguts/httplex.go +347 -0
  193. slidge_whatsapp/vendor/golang.org/x/net/http2/.gitignore +2 -0
  194. slidge_whatsapp/vendor/golang.org/x/net/http2/ascii.go +53 -0
  195. slidge_whatsapp/vendor/golang.org/x/net/http2/ciphers.go +641 -0
  196. slidge_whatsapp/vendor/golang.org/x/net/http2/client_conn_pool.go +311 -0
  197. slidge_whatsapp/vendor/golang.org/x/net/http2/config.go +122 -0
  198. slidge_whatsapp/vendor/golang.org/x/net/http2/config_go124.go +61 -0
  199. slidge_whatsapp/vendor/golang.org/x/net/http2/config_pre_go124.go +16 -0
  200. slidge_whatsapp/vendor/golang.org/x/net/http2/databuffer.go +149 -0
  201. slidge_whatsapp/vendor/golang.org/x/net/http2/errors.go +145 -0
  202. slidge_whatsapp/vendor/golang.org/x/net/http2/flow.go +120 -0
  203. slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +1702 -0
  204. slidge_whatsapp/vendor/golang.org/x/net/http2/gotrack.go +170 -0
  205. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/encode.go +245 -0
  206. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/hpack.go +523 -0
  207. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/huffman.go +226 -0
  208. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/static_table.go +188 -0
  209. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/tables.go +403 -0
  210. slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +432 -0
  211. slidge_whatsapp/vendor/golang.org/x/net/http2/pipe.go +184 -0
  212. slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +3350 -0
  213. slidge_whatsapp/vendor/golang.org/x/net/http2/timer.go +20 -0
  214. slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +3287 -0
  215. slidge_whatsapp/vendor/golang.org/x/net/http2/unencrypted.go +32 -0
  216. slidge_whatsapp/vendor/golang.org/x/net/http2/write.go +381 -0
  217. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched.go +251 -0
  218. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_priority.go +451 -0
  219. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_random.go +77 -0
  220. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_roundrobin.go +119 -0
  221. slidge_whatsapp/vendor/golang.org/x/net/idna/go118.go +13 -0
  222. slidge_whatsapp/vendor/golang.org/x/net/idna/idna10.0.0.go +769 -0
  223. slidge_whatsapp/vendor/golang.org/x/net/idna/idna9.0.0.go +717 -0
  224. slidge_whatsapp/vendor/golang.org/x/net/idna/pre_go118.go +11 -0
  225. slidge_whatsapp/vendor/golang.org/x/net/idna/punycode.go +217 -0
  226. slidge_whatsapp/vendor/golang.org/x/net/idna/tables10.0.0.go +4559 -0
  227. slidge_whatsapp/vendor/golang.org/x/net/idna/tables11.0.0.go +4653 -0
  228. slidge_whatsapp/vendor/golang.org/x/net/idna/tables12.0.0.go +4733 -0
  229. slidge_whatsapp/vendor/golang.org/x/net/idna/tables13.0.0.go +4959 -0
  230. slidge_whatsapp/vendor/golang.org/x/net/idna/tables15.0.0.go +5144 -0
  231. slidge_whatsapp/vendor/golang.org/x/net/idna/tables9.0.0.go +4486 -0
  232. slidge_whatsapp/vendor/golang.org/x/net/idna/trie.go +51 -0
  233. slidge_whatsapp/vendor/golang.org/x/net/idna/trie12.0.0.go +30 -0
  234. slidge_whatsapp/vendor/golang.org/x/net/idna/trie13.0.0.go +30 -0
  235. slidge_whatsapp/vendor/golang.org/x/net/idna/trieval.go +119 -0
  236. slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/ascii.go +53 -0
  237. slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/headermap.go +115 -0
  238. slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/request.go +467 -0
  239. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +148 -1
  240. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +16 -26
  241. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go +84 -0
  242. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s +20 -0
  243. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go +84 -0
  244. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s +20 -0
  245. slidge_whatsapp/vendor/golang.org/x/sys/windows/security_windows.go +44 -5
  246. slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +4 -2
  247. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +239 -0
  248. slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +9 -0
  249. slidge_whatsapp/vendor/golang.org/x/text/LICENSE +27 -0
  250. slidge_whatsapp/vendor/golang.org/x/text/PATENTS +22 -0
  251. slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule.go +336 -0
  252. slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go +11 -0
  253. slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go +14 -0
  254. slidge_whatsapp/vendor/golang.org/x/text/transform/transform.go +709 -0
  255. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bidi.go +359 -0
  256. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bracket.go +335 -0
  257. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/core.go +1071 -0
  258. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/prop.go +206 -0
  259. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go +1815 -0
  260. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go +1887 -0
  261. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go +1923 -0
  262. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go +1955 -0
  263. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables15.0.0.go +2042 -0
  264. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go +1781 -0
  265. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/trieval.go +48 -0
  266. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/composition.go +512 -0
  267. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/forminfo.go +279 -0
  268. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/input.go +109 -0
  269. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/iter.go +458 -0
  270. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/normalize.go +610 -0
  271. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/readwriter.go +125 -0
  272. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables10.0.0.go +7657 -0
  273. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go +7693 -0
  274. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go +7710 -0
  275. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables13.0.0.go +7760 -0
  276. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables15.0.0.go +7907 -0
  277. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go +7637 -0
  278. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/transform.go +88 -0
  279. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/trie.go +54 -0
  280. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
  281. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +3 -0
  282. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +16 -0
  283. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/{strings_unsafe_go121.go → strings_unsafe.go} +0 -2
  284. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +1 -1
  285. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/merge.go +6 -0
  286. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go +2 -0
  287. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/{value_unsafe_go121.go → value_unsafe.go} +0 -2
  288. slidge_whatsapp/vendor/modules.txt +38 -13
  289. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.6.dist-info}/METADATA +1 -1
  290. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.6.dist-info}/RECORD +293 -180
  291. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.6.dist-info}/WHEEL +1 -1
  292. slidge_whatsapp/vendor/github.com/rs/zerolog/CNAME +0 -1
  293. slidge_whatsapp/vendor/github.com/rs/zerolog/_config.yml +0 -1
  294. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.raw +0 -0
  295. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.raw +0 -0
  296. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.raw +0 -0
  297. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.raw +0 -23
  298. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.raw +0 -7
  299. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.raw +0 -0
  300. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.pb.raw +0 -0
  301. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.raw +0 -0
  302. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.raw +0 -0
  303. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.raw +0 -0
  304. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.raw +0 -0
  305. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.raw +0 -0
  306. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.raw +0 -0
  307. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.raw +0 -0
  308. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.raw +0 -0
  309. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.raw +0 -0
  310. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.raw +0 -0
  311. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.raw +0 -0
  312. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.raw +0 -0
  313. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.raw +0 -0
  314. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.raw +0 -0
  315. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.raw +0 -0
  316. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrade.go +0 -296
  317. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe_go120.go +0 -94
  318. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe_go120.go +0 -98
  319. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.6.dist-info}/LICENSE +0 -0
  320. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.6.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,68 @@ func (CallLogRecord_CallResult) EnumDescriptor() ([]byte, []int) {
231
230
  return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{0, 2}
232
231
  }
233
232
 
233
+ type NotificationActivitySettingAction_NotificationActivitySetting int32
234
+
235
+ const (
236
+ NotificationActivitySettingAction_DEFAULT_ALL_MESSAGES NotificationActivitySettingAction_NotificationActivitySetting = 0
237
+ NotificationActivitySettingAction_ALL_MESSAGES NotificationActivitySettingAction_NotificationActivitySetting = 1
238
+ NotificationActivitySettingAction_HIGHLIGHTS NotificationActivitySettingAction_NotificationActivitySetting = 2
239
+ NotificationActivitySettingAction_DEFAULT_HIGHLIGHTS NotificationActivitySettingAction_NotificationActivitySetting = 3
240
+ )
241
+
242
+ // Enum value maps for NotificationActivitySettingAction_NotificationActivitySetting.
243
+ var (
244
+ NotificationActivitySettingAction_NotificationActivitySetting_name = map[int32]string{
245
+ 0: "DEFAULT_ALL_MESSAGES",
246
+ 1: "ALL_MESSAGES",
247
+ 2: "HIGHLIGHTS",
248
+ 3: "DEFAULT_HIGHLIGHTS",
249
+ }
250
+ NotificationActivitySettingAction_NotificationActivitySetting_value = map[string]int32{
251
+ "DEFAULT_ALL_MESSAGES": 0,
252
+ "ALL_MESSAGES": 1,
253
+ "HIGHLIGHTS": 2,
254
+ "DEFAULT_HIGHLIGHTS": 3,
255
+ }
256
+ )
257
+
258
+ func (x NotificationActivitySettingAction_NotificationActivitySetting) Enum() *NotificationActivitySettingAction_NotificationActivitySetting {
259
+ p := new(NotificationActivitySettingAction_NotificationActivitySetting)
260
+ *p = x
261
+ return p
262
+ }
263
+
264
+ func (x NotificationActivitySettingAction_NotificationActivitySetting) String() string {
265
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
266
+ }
267
+
268
+ func (NotificationActivitySettingAction_NotificationActivitySetting) Descriptor() protoreflect.EnumDescriptor {
269
+ return file_waSyncAction_WASyncAction_proto_enumTypes[3].Descriptor()
270
+ }
271
+
272
+ func (NotificationActivitySettingAction_NotificationActivitySetting) Type() protoreflect.EnumType {
273
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[3]
274
+ }
275
+
276
+ func (x NotificationActivitySettingAction_NotificationActivitySetting) Number() protoreflect.EnumNumber {
277
+ return protoreflect.EnumNumber(x)
278
+ }
279
+
280
+ // Deprecated: Do not use.
281
+ func (x *NotificationActivitySettingAction_NotificationActivitySetting) UnmarshalJSON(b []byte) error {
282
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
283
+ if err != nil {
284
+ return err
285
+ }
286
+ *x = NotificationActivitySettingAction_NotificationActivitySetting(num)
287
+ return nil
288
+ }
289
+
290
+ // Deprecated: Use NotificationActivitySettingAction_NotificationActivitySetting.Descriptor instead.
291
+ func (NotificationActivitySettingAction_NotificationActivitySetting) EnumDescriptor() ([]byte, []int) {
292
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1, 0}
293
+ }
294
+
234
295
  type WaffleAccountLinkStateAction_AccountLinkState int32
235
296
 
236
297
  const (
@@ -258,11 +319,11 @@ func (x WaffleAccountLinkStateAction_AccountLinkState) String() string {
258
319
  }
259
320
 
260
321
  func (WaffleAccountLinkStateAction_AccountLinkState) Descriptor() protoreflect.EnumDescriptor {
261
- return file_waSyncAction_WASyncAction_proto_enumTypes[3].Descriptor()
322
+ return file_waSyncAction_WASyncAction_proto_enumTypes[4].Descriptor()
262
323
  }
263
324
 
264
325
  func (WaffleAccountLinkStateAction_AccountLinkState) Type() protoreflect.EnumType {
265
- return &file_waSyncAction_WASyncAction_proto_enumTypes[3]
326
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[4]
266
327
  }
267
328
 
268
329
  func (x WaffleAccountLinkStateAction_AccountLinkState) Number() protoreflect.EnumNumber {
@@ -281,7 +342,7 @@ func (x *WaffleAccountLinkStateAction_AccountLinkState) UnmarshalJSON(b []byte)
281
342
 
282
343
  // Deprecated: Use WaffleAccountLinkStateAction_AccountLinkState.Descriptor instead.
283
344
  func (WaffleAccountLinkStateAction_AccountLinkState) EnumDescriptor() ([]byte, []int) {
284
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1, 0}
345
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2, 0}
285
346
  }
286
347
 
287
348
  type MerchantPaymentPartnerAction_Status int32
@@ -314,11 +375,11 @@ func (x MerchantPaymentPartnerAction_Status) String() string {
314
375
  }
315
376
 
316
377
  func (MerchantPaymentPartnerAction_Status) Descriptor() protoreflect.EnumDescriptor {
317
- return file_waSyncAction_WASyncAction_proto_enumTypes[4].Descriptor()
378
+ return file_waSyncAction_WASyncAction_proto_enumTypes[5].Descriptor()
318
379
  }
319
380
 
320
381
  func (MerchantPaymentPartnerAction_Status) Type() protoreflect.EnumType {
321
- return &file_waSyncAction_WASyncAction_proto_enumTypes[4]
382
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[5]
322
383
  }
323
384
 
324
385
  func (x MerchantPaymentPartnerAction_Status) Number() protoreflect.EnumNumber {
@@ -337,7 +398,7 @@ func (x *MerchantPaymentPartnerAction_Status) UnmarshalJSON(b []byte) error {
337
398
 
338
399
  // Deprecated: Use MerchantPaymentPartnerAction_Status.Descriptor instead.
339
400
  func (MerchantPaymentPartnerAction_Status) EnumDescriptor() ([]byte, []int) {
340
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2, 0}
401
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3, 0}
341
402
  }
342
403
 
343
404
  type NoteEditAction_NoteType int32
@@ -370,11 +431,11 @@ func (x NoteEditAction_NoteType) String() string {
370
431
  }
371
432
 
372
433
  func (NoteEditAction_NoteType) Descriptor() protoreflect.EnumDescriptor {
373
- return file_waSyncAction_WASyncAction_proto_enumTypes[5].Descriptor()
434
+ return file_waSyncAction_WASyncAction_proto_enumTypes[6].Descriptor()
374
435
  }
375
436
 
376
437
  func (NoteEditAction_NoteType) Type() protoreflect.EnumType {
377
- return &file_waSyncAction_WASyncAction_proto_enumTypes[5]
438
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[6]
378
439
  }
379
440
 
380
441
  func (x NoteEditAction_NoteType) Number() protoreflect.EnumNumber {
@@ -393,7 +454,7 @@ func (x *NoteEditAction_NoteType) UnmarshalJSON(b []byte) error {
393
454
 
394
455
  // Deprecated: Use NoteEditAction_NoteType.Descriptor instead.
395
456
  func (NoteEditAction_NoteType) EnumDescriptor() ([]byte, []int) {
396
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3, 0}
457
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4, 0}
397
458
  }
398
459
 
399
460
  type StatusPrivacyAction_StatusDistributionMode int32
@@ -429,11 +490,11 @@ func (x StatusPrivacyAction_StatusDistributionMode) String() string {
429
490
  }
430
491
 
431
492
  func (StatusPrivacyAction_StatusDistributionMode) Descriptor() protoreflect.EnumDescriptor {
432
- return file_waSyncAction_WASyncAction_proto_enumTypes[6].Descriptor()
493
+ return file_waSyncAction_WASyncAction_proto_enumTypes[7].Descriptor()
433
494
  }
434
495
 
435
496
  func (StatusPrivacyAction_StatusDistributionMode) Type() protoreflect.EnumType {
436
- return &file_waSyncAction_WASyncAction_proto_enumTypes[6]
497
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[7]
437
498
  }
438
499
 
439
500
  func (x StatusPrivacyAction_StatusDistributionMode) Number() protoreflect.EnumNumber {
@@ -452,7 +513,7 @@ func (x *StatusPrivacyAction_StatusDistributionMode) UnmarshalJSON(b []byte) err
452
513
 
453
514
  // Deprecated: Use StatusPrivacyAction_StatusDistributionMode.Descriptor instead.
454
515
  func (StatusPrivacyAction_StatusDistributionMode) EnumDescriptor() ([]byte, []int) {
455
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4, 0}
516
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5, 0}
456
517
  }
457
518
 
458
519
  type MarketingMessageAction_MarketingMessagePrototypeType int32
@@ -482,11 +543,11 @@ func (x MarketingMessageAction_MarketingMessagePrototypeType) String() string {
482
543
  }
483
544
 
484
545
  func (MarketingMessageAction_MarketingMessagePrototypeType) Descriptor() protoreflect.EnumDescriptor {
485
- return file_waSyncAction_WASyncAction_proto_enumTypes[7].Descriptor()
546
+ return file_waSyncAction_WASyncAction_proto_enumTypes[8].Descriptor()
486
547
  }
487
548
 
488
549
  func (MarketingMessageAction_MarketingMessagePrototypeType) Type() protoreflect.EnumType {
489
- return &file_waSyncAction_WASyncAction_proto_enumTypes[7]
550
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[8]
490
551
  }
491
552
 
492
553
  func (x MarketingMessageAction_MarketingMessagePrototypeType) Number() protoreflect.EnumNumber {
@@ -505,7 +566,7 @@ func (x *MarketingMessageAction_MarketingMessagePrototypeType) UnmarshalJSON(b [
505
566
 
506
567
  // Deprecated: Use MarketingMessageAction_MarketingMessagePrototypeType.Descriptor instead.
507
568
  func (MarketingMessageAction_MarketingMessagePrototypeType) EnumDescriptor() ([]byte, []int) {
508
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5, 0}
569
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6, 0}
509
570
  }
510
571
 
511
572
  type UsernameChatStartModeAction_ChatStartMode int32
@@ -538,11 +599,11 @@ func (x UsernameChatStartModeAction_ChatStartMode) String() string {
538
599
  }
539
600
 
540
601
  func (UsernameChatStartModeAction_ChatStartMode) Descriptor() protoreflect.EnumDescriptor {
541
- return file_waSyncAction_WASyncAction_proto_enumTypes[8].Descriptor()
602
+ return file_waSyncAction_WASyncAction_proto_enumTypes[9].Descriptor()
542
603
  }
543
604
 
544
605
  func (UsernameChatStartModeAction_ChatStartMode) Type() protoreflect.EnumType {
545
- return &file_waSyncAction_WASyncAction_proto_enumTypes[8]
606
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[9]
546
607
  }
547
608
 
548
609
  func (x UsernameChatStartModeAction_ChatStartMode) Number() protoreflect.EnumNumber {
@@ -561,18 +622,20 @@ func (x *UsernameChatStartModeAction_ChatStartMode) UnmarshalJSON(b []byte) erro
561
622
 
562
623
  // Deprecated: Use UsernameChatStartModeAction_ChatStartMode.Descriptor instead.
563
624
  func (UsernameChatStartModeAction_ChatStartMode) EnumDescriptor() ([]byte, []int) {
564
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6, 0}
625
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7, 0}
565
626
  }
566
627
 
567
628
  type LabelEditAction_ListType int32
568
629
 
569
630
  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
631
+ LabelEditAction_NONE LabelEditAction_ListType = 0
632
+ LabelEditAction_UNREAD LabelEditAction_ListType = 1
633
+ LabelEditAction_GROUPS LabelEditAction_ListType = 2
634
+ LabelEditAction_FAVORITES LabelEditAction_ListType = 3
635
+ LabelEditAction_PREDEFINED LabelEditAction_ListType = 4
636
+ LabelEditAction_CUSTOM LabelEditAction_ListType = 5
637
+ LabelEditAction_COMMUNITY LabelEditAction_ListType = 6
638
+ LabelEditAction_SERVER_ASSIGNED LabelEditAction_ListType = 7
576
639
  )
577
640
 
578
641
  // Enum value maps for LabelEditAction_ListType.
@@ -584,14 +647,18 @@ var (
584
647
  3: "FAVORITES",
585
648
  4: "PREDEFINED",
586
649
  5: "CUSTOM",
650
+ 6: "COMMUNITY",
651
+ 7: "SERVER_ASSIGNED",
587
652
  }
588
653
  LabelEditAction_ListType_value = map[string]int32{
589
- "NONE": 0,
590
- "UNREAD": 1,
591
- "GROUPS": 2,
592
- "FAVORITES": 3,
593
- "PREDEFINED": 4,
594
- "CUSTOM": 5,
654
+ "NONE": 0,
655
+ "UNREAD": 1,
656
+ "GROUPS": 2,
657
+ "FAVORITES": 3,
658
+ "PREDEFINED": 4,
659
+ "CUSTOM": 5,
660
+ "COMMUNITY": 6,
661
+ "SERVER_ASSIGNED": 7,
595
662
  }
596
663
  )
597
664
 
@@ -606,11 +673,11 @@ func (x LabelEditAction_ListType) String() string {
606
673
  }
607
674
 
608
675
  func (LabelEditAction_ListType) Descriptor() protoreflect.EnumDescriptor {
609
- return file_waSyncAction_WASyncAction_proto_enumTypes[9].Descriptor()
676
+ return file_waSyncAction_WASyncAction_proto_enumTypes[10].Descriptor()
610
677
  }
611
678
 
612
679
  func (LabelEditAction_ListType) Type() protoreflect.EnumType {
613
- return &file_waSyncAction_WASyncAction_proto_enumTypes[9]
680
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[10]
614
681
  }
615
682
 
616
683
  func (x LabelEditAction_ListType) Number() protoreflect.EnumNumber {
@@ -629,7 +696,7 @@ func (x *LabelEditAction_ListType) UnmarshalJSON(b []byte) error {
629
696
 
630
697
  // Deprecated: Use LabelEditAction_ListType.Descriptor instead.
631
698
  func (LabelEditAction_ListType) EnumDescriptor() ([]byte, []int) {
632
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7, 0}
699
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8, 0}
633
700
  }
634
701
 
635
702
  type PatchDebugData_Platform int32
@@ -642,6 +709,8 @@ const (
642
709
  PatchDebugData_WEB PatchDebugData_Platform = 4
643
710
  PatchDebugData_UWP PatchDebugData_Platform = 5
644
711
  PatchDebugData_DARWIN PatchDebugData_Platform = 6
712
+ PatchDebugData_IPAD PatchDebugData_Platform = 7
713
+ PatchDebugData_WEAROS PatchDebugData_Platform = 8
645
714
  )
646
715
 
647
716
  // Enum value maps for PatchDebugData_Platform.
@@ -654,6 +723,8 @@ var (
654
723
  4: "WEB",
655
724
  5: "UWP",
656
725
  6: "DARWIN",
726
+ 7: "IPAD",
727
+ 8: "WEAROS",
657
728
  }
658
729
  PatchDebugData_Platform_value = map[string]int32{
659
730
  "ANDROID": 0,
@@ -663,6 +734,8 @@ var (
663
734
  "WEB": 4,
664
735
  "UWP": 5,
665
736
  "DARWIN": 6,
737
+ "IPAD": 7,
738
+ "WEAROS": 8,
666
739
  }
667
740
  )
668
741
 
@@ -677,11 +750,11 @@ func (x PatchDebugData_Platform) String() string {
677
750
  }
678
751
 
679
752
  func (PatchDebugData_Platform) Descriptor() protoreflect.EnumDescriptor {
680
- return file_waSyncAction_WASyncAction_proto_enumTypes[10].Descriptor()
753
+ return file_waSyncAction_WASyncAction_proto_enumTypes[11].Descriptor()
681
754
  }
682
755
 
683
756
  func (PatchDebugData_Platform) Type() protoreflect.EnumType {
684
- return &file_waSyncAction_WASyncAction_proto_enumTypes[10]
757
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[11]
685
758
  }
686
759
 
687
760
  func (x PatchDebugData_Platform) Number() protoreflect.EnumNumber {
@@ -700,7 +773,7 @@ func (x *PatchDebugData_Platform) UnmarshalJSON(b []byte) error {
700
773
 
701
774
  // Deprecated: Use PatchDebugData_Platform.Descriptor instead.
702
775
  func (PatchDebugData_Platform) EnumDescriptor() ([]byte, []int) {
703
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8, 0}
776
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9, 0}
704
777
  }
705
778
 
706
779
  type CallLogRecord struct {
@@ -859,6 +932,50 @@ func (x *CallLogRecord) GetCallType() CallLogRecord_CallType {
859
932
  return CallLogRecord_REGULAR
860
933
  }
861
934
 
935
+ type NotificationActivitySettingAction struct {
936
+ state protoimpl.MessageState `protogen:"open.v1"`
937
+ NotificationActivitySetting *NotificationActivitySettingAction_NotificationActivitySetting `protobuf:"varint,1,opt,name=notificationActivitySetting,enum=WASyncAction.NotificationActivitySettingAction_NotificationActivitySetting" json:"notificationActivitySetting,omitempty"`
938
+ unknownFields protoimpl.UnknownFields
939
+ sizeCache protoimpl.SizeCache
940
+ }
941
+
942
+ func (x *NotificationActivitySettingAction) Reset() {
943
+ *x = NotificationActivitySettingAction{}
944
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
945
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
946
+ ms.StoreMessageInfo(mi)
947
+ }
948
+
949
+ func (x *NotificationActivitySettingAction) String() string {
950
+ return protoimpl.X.MessageStringOf(x)
951
+ }
952
+
953
+ func (*NotificationActivitySettingAction) ProtoMessage() {}
954
+
955
+ func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message {
956
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
957
+ if x != nil {
958
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
959
+ if ms.LoadMessageInfo() == nil {
960
+ ms.StoreMessageInfo(mi)
961
+ }
962
+ return ms
963
+ }
964
+ return mi.MessageOf(x)
965
+ }
966
+
967
+ // Deprecated: Use NotificationActivitySettingAction.ProtoReflect.Descriptor instead.
968
+ func (*NotificationActivitySettingAction) Descriptor() ([]byte, []int) {
969
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1}
970
+ }
971
+
972
+ func (x *NotificationActivitySettingAction) GetNotificationActivitySetting() NotificationActivitySettingAction_NotificationActivitySetting {
973
+ if x != nil && x.NotificationActivitySetting != nil {
974
+ return *x.NotificationActivitySetting
975
+ }
976
+ return NotificationActivitySettingAction_DEFAULT_ALL_MESSAGES
977
+ }
978
+
862
979
  type WaffleAccountLinkStateAction struct {
863
980
  state protoimpl.MessageState `protogen:"open.v1"`
864
981
  LinkState *WaffleAccountLinkStateAction_AccountLinkState `protobuf:"varint,2,opt,name=linkState,enum=WASyncAction.WaffleAccountLinkStateAction_AccountLinkState" json:"linkState,omitempty"`
@@ -868,7 +985,7 @@ type WaffleAccountLinkStateAction struct {
868
985
 
869
986
  func (x *WaffleAccountLinkStateAction) Reset() {
870
987
  *x = WaffleAccountLinkStateAction{}
871
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
988
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
872
989
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
873
990
  ms.StoreMessageInfo(mi)
874
991
  }
@@ -880,7 +997,7 @@ func (x *WaffleAccountLinkStateAction) String() string {
880
997
  func (*WaffleAccountLinkStateAction) ProtoMessage() {}
881
998
 
882
999
  func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
883
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1000
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
884
1001
  if x != nil {
885
1002
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
886
1003
  if ms.LoadMessageInfo() == nil {
@@ -893,7 +1010,7 @@ func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
893
1010
 
894
1011
  // Deprecated: Use WaffleAccountLinkStateAction.ProtoReflect.Descriptor instead.
895
1012
  func (*WaffleAccountLinkStateAction) Descriptor() ([]byte, []int) {
896
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1}
1013
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
897
1014
  }
898
1015
 
899
1016
  func (x *WaffleAccountLinkStateAction) GetLinkState() WaffleAccountLinkStateAction_AccountLinkState {
@@ -915,7 +1032,7 @@ type MerchantPaymentPartnerAction struct {
915
1032
 
916
1033
  func (x *MerchantPaymentPartnerAction) Reset() {
917
1034
  *x = MerchantPaymentPartnerAction{}
918
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1035
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
919
1036
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
920
1037
  ms.StoreMessageInfo(mi)
921
1038
  }
@@ -927,7 +1044,7 @@ func (x *MerchantPaymentPartnerAction) String() string {
927
1044
  func (*MerchantPaymentPartnerAction) ProtoMessage() {}
928
1045
 
929
1046
  func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
930
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1047
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
931
1048
  if x != nil {
932
1049
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
933
1050
  if ms.LoadMessageInfo() == nil {
@@ -940,7 +1057,7 @@ func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
940
1057
 
941
1058
  // Deprecated: Use MerchantPaymentPartnerAction.ProtoReflect.Descriptor instead.
942
1059
  func (*MerchantPaymentPartnerAction) Descriptor() ([]byte, []int) {
943
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
1060
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
944
1061
  }
945
1062
 
946
1063
  func (x *MerchantPaymentPartnerAction) GetStatus() MerchantPaymentPartnerAction_Status {
@@ -984,7 +1101,7 @@ type NoteEditAction struct {
984
1101
 
985
1102
  func (x *NoteEditAction) Reset() {
986
1103
  *x = NoteEditAction{}
987
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1104
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
988
1105
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
989
1106
  ms.StoreMessageInfo(mi)
990
1107
  }
@@ -996,7 +1113,7 @@ func (x *NoteEditAction) String() string {
996
1113
  func (*NoteEditAction) ProtoMessage() {}
997
1114
 
998
1115
  func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
999
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1116
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1000
1117
  if x != nil {
1001
1118
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1002
1119
  if ms.LoadMessageInfo() == nil {
@@ -1009,7 +1126,7 @@ func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
1009
1126
 
1010
1127
  // Deprecated: Use NoteEditAction.ProtoReflect.Descriptor instead.
1011
1128
  func (*NoteEditAction) Descriptor() ([]byte, []int) {
1012
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
1129
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
1013
1130
  }
1014
1131
 
1015
1132
  func (x *NoteEditAction) GetType() NoteEditAction_NoteType {
@@ -1057,7 +1174,7 @@ type StatusPrivacyAction struct {
1057
1174
 
1058
1175
  func (x *StatusPrivacyAction) Reset() {
1059
1176
  *x = StatusPrivacyAction{}
1060
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1177
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1061
1178
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1062
1179
  ms.StoreMessageInfo(mi)
1063
1180
  }
@@ -1069,7 +1186,7 @@ func (x *StatusPrivacyAction) String() string {
1069
1186
  func (*StatusPrivacyAction) ProtoMessage() {}
1070
1187
 
1071
1188
  func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
1072
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1189
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1073
1190
  if x != nil {
1074
1191
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1075
1192
  if ms.LoadMessageInfo() == nil {
@@ -1082,7 +1199,7 @@ func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
1082
1199
 
1083
1200
  // Deprecated: Use StatusPrivacyAction.ProtoReflect.Descriptor instead.
1084
1201
  func (*StatusPrivacyAction) Descriptor() ([]byte, []int) {
1085
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
1202
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
1086
1203
  }
1087
1204
 
1088
1205
  func (x *StatusPrivacyAction) GetMode() StatusPrivacyAction_StatusDistributionMode {
@@ -1114,7 +1231,7 @@ type MarketingMessageAction struct {
1114
1231
 
1115
1232
  func (x *MarketingMessageAction) Reset() {
1116
1233
  *x = MarketingMessageAction{}
1117
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1234
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1118
1235
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1119
1236
  ms.StoreMessageInfo(mi)
1120
1237
  }
@@ -1126,7 +1243,7 @@ func (x *MarketingMessageAction) String() string {
1126
1243
  func (*MarketingMessageAction) ProtoMessage() {}
1127
1244
 
1128
1245
  func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
1129
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1246
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1130
1247
  if x != nil {
1131
1248
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1132
1249
  if ms.LoadMessageInfo() == nil {
@@ -1139,7 +1256,7 @@ func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
1139
1256
 
1140
1257
  // Deprecated: Use MarketingMessageAction.ProtoReflect.Descriptor instead.
1141
1258
  func (*MarketingMessageAction) Descriptor() ([]byte, []int) {
1142
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
1259
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
1143
1260
  }
1144
1261
 
1145
1262
  func (x *MarketingMessageAction) GetName() string {
@@ -1200,7 +1317,7 @@ type UsernameChatStartModeAction struct {
1200
1317
 
1201
1318
  func (x *UsernameChatStartModeAction) Reset() {
1202
1319
  *x = UsernameChatStartModeAction{}
1203
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1320
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1204
1321
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1205
1322
  ms.StoreMessageInfo(mi)
1206
1323
  }
@@ -1212,7 +1329,7 @@ func (x *UsernameChatStartModeAction) String() string {
1212
1329
  func (*UsernameChatStartModeAction) ProtoMessage() {}
1213
1330
 
1214
1331
  func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
1215
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1332
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1216
1333
  if x != nil {
1217
1334
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1218
1335
  if ms.LoadMessageInfo() == nil {
@@ -1225,7 +1342,7 @@ func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
1225
1342
 
1226
1343
  // Deprecated: Use UsernameChatStartModeAction.ProtoReflect.Descriptor instead.
1227
1344
  func (*UsernameChatStartModeAction) Descriptor() ([]byte, []int) {
1228
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
1345
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
1229
1346
  }
1230
1347
 
1231
1348
  func (x *UsernameChatStartModeAction) GetChatStartMode() UsernameChatStartModeAction_ChatStartMode {
@@ -1244,13 +1361,14 @@ type LabelEditAction struct {
1244
1361
  OrderIndex *int32 `protobuf:"varint,5,opt,name=orderIndex" json:"orderIndex,omitempty"`
1245
1362
  IsActive *bool `protobuf:"varint,6,opt,name=isActive" json:"isActive,omitempty"`
1246
1363
  Type *LabelEditAction_ListType `protobuf:"varint,7,opt,name=type,enum=WASyncAction.LabelEditAction_ListType" json:"type,omitempty"`
1364
+ IsImmutable *bool `protobuf:"varint,8,opt,name=isImmutable" json:"isImmutable,omitempty"`
1247
1365
  unknownFields protoimpl.UnknownFields
1248
1366
  sizeCache protoimpl.SizeCache
1249
1367
  }
1250
1368
 
1251
1369
  func (x *LabelEditAction) Reset() {
1252
1370
  *x = LabelEditAction{}
1253
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1371
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1254
1372
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1255
1373
  ms.StoreMessageInfo(mi)
1256
1374
  }
@@ -1262,7 +1380,7 @@ func (x *LabelEditAction) String() string {
1262
1380
  func (*LabelEditAction) ProtoMessage() {}
1263
1381
 
1264
1382
  func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
1265
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1383
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1266
1384
  if x != nil {
1267
1385
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1268
1386
  if ms.LoadMessageInfo() == nil {
@@ -1275,7 +1393,7 @@ func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
1275
1393
 
1276
1394
  // Deprecated: Use LabelEditAction.ProtoReflect.Descriptor instead.
1277
1395
  func (*LabelEditAction) Descriptor() ([]byte, []int) {
1278
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
1396
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
1279
1397
  }
1280
1398
 
1281
1399
  func (x *LabelEditAction) GetName() string {
@@ -1327,6 +1445,13 @@ func (x *LabelEditAction) GetType() LabelEditAction_ListType {
1327
1445
  return LabelEditAction_NONE
1328
1446
  }
1329
1447
 
1448
+ func (x *LabelEditAction) GetIsImmutable() bool {
1449
+ if x != nil && x.IsImmutable != nil {
1450
+ return *x.IsImmutable
1451
+ }
1452
+ return false
1453
+ }
1454
+
1330
1455
  type PatchDebugData struct {
1331
1456
  state protoimpl.MessageState `protogen:"open.v1"`
1332
1457
  CurrentLthash []byte `protobuf:"bytes,1,opt,name=currentLthash" json:"currentLthash,omitempty"`
@@ -1346,7 +1471,7 @@ type PatchDebugData struct {
1346
1471
 
1347
1472
  func (x *PatchDebugData) Reset() {
1348
1473
  *x = PatchDebugData{}
1349
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1474
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1350
1475
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1351
1476
  ms.StoreMessageInfo(mi)
1352
1477
  }
@@ -1358,7 +1483,7 @@ func (x *PatchDebugData) String() string {
1358
1483
  func (*PatchDebugData) ProtoMessage() {}
1359
1484
 
1360
1485
  func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
1361
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1486
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1362
1487
  if x != nil {
1363
1488
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1364
1489
  if ms.LoadMessageInfo() == nil {
@@ -1371,7 +1496,7 @@ func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
1371
1496
 
1372
1497
  // Deprecated: Use PatchDebugData.ProtoReflect.Descriptor instead.
1373
1498
  func (*PatchDebugData) Descriptor() ([]byte, []int) {
1374
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
1499
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
1375
1500
  }
1376
1501
 
1377
1502
  func (x *PatchDebugData) GetCurrentLthash() []byte {
@@ -1461,7 +1586,7 @@ type RecentEmojiWeight struct {
1461
1586
 
1462
1587
  func (x *RecentEmojiWeight) Reset() {
1463
1588
  *x = RecentEmojiWeight{}
1464
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1589
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1465
1590
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1466
1591
  ms.StoreMessageInfo(mi)
1467
1592
  }
@@ -1473,7 +1598,7 @@ func (x *RecentEmojiWeight) String() string {
1473
1598
  func (*RecentEmojiWeight) ProtoMessage() {}
1474
1599
 
1475
1600
  func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
1476
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1601
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1477
1602
  if x != nil {
1478
1603
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1479
1604
  if ms.LoadMessageInfo() == nil {
@@ -1486,7 +1611,7 @@ func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
1486
1611
 
1487
1612
  // Deprecated: Use RecentEmojiWeight.ProtoReflect.Descriptor instead.
1488
1613
  func (*RecentEmojiWeight) Descriptor() ([]byte, []int) {
1489
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
1614
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
1490
1615
  }
1491
1616
 
1492
1617
  func (x *RecentEmojiWeight) GetEmoji() string {
@@ -1558,13 +1683,16 @@ type SyncActionValue struct {
1558
1683
  MerchantPaymentPartnerAction *MerchantPaymentPartnerAction `protobuf:"bytes,57,opt,name=merchantPaymentPartnerAction" json:"merchantPaymentPartnerAction,omitempty"`
1559
1684
  WaffleAccountLinkStateAction *WaffleAccountLinkStateAction `protobuf:"bytes,58,opt,name=waffleAccountLinkStateAction" json:"waffleAccountLinkStateAction,omitempty"`
1560
1685
  UsernameChatStartMode *UsernameChatStartModeAction `protobuf:"bytes,59,opt,name=usernameChatStartMode" json:"usernameChatStartMode,omitempty"`
1686
+ NotificationActivitySettingAction *NotificationActivitySettingAction `protobuf:"bytes,60,opt,name=notificationActivitySettingAction" json:"notificationActivitySettingAction,omitempty"`
1687
+ LidContactAction *LidContactAction `protobuf:"bytes,61,opt,name=lidContactAction" json:"lidContactAction,omitempty"`
1688
+ CtwaPerCustomerDataSharingAction *CtwaPerCustomerDataSharingAction `protobuf:"bytes,62,opt,name=ctwaPerCustomerDataSharingAction" json:"ctwaPerCustomerDataSharingAction,omitempty"`
1561
1689
  unknownFields protoimpl.UnknownFields
1562
1690
  sizeCache protoimpl.SizeCache
1563
1691
  }
1564
1692
 
1565
1693
  func (x *SyncActionValue) Reset() {
1566
1694
  *x = SyncActionValue{}
1567
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1695
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1568
1696
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1569
1697
  ms.StoreMessageInfo(mi)
1570
1698
  }
@@ -1576,7 +1704,7 @@ func (x *SyncActionValue) String() string {
1576
1704
  func (*SyncActionValue) ProtoMessage() {}
1577
1705
 
1578
1706
  func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
1579
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1707
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1580
1708
  if x != nil {
1581
1709
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1582
1710
  if ms.LoadMessageInfo() == nil {
@@ -1589,7 +1717,7 @@ func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
1589
1717
 
1590
1718
  // Deprecated: Use SyncActionValue.ProtoReflect.Descriptor instead.
1591
1719
  func (*SyncActionValue) Descriptor() ([]byte, []int) {
1592
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
1720
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
1593
1721
  }
1594
1722
 
1595
1723
  func (x *SyncActionValue) GetTimestamp() int64 {
@@ -1963,6 +2091,139 @@ func (x *SyncActionValue) GetUsernameChatStartMode() *UsernameChatStartModeActio
1963
2091
  return nil
1964
2092
  }
1965
2093
 
2094
+ func (x *SyncActionValue) GetNotificationActivitySettingAction() *NotificationActivitySettingAction {
2095
+ if x != nil {
2096
+ return x.NotificationActivitySettingAction
2097
+ }
2098
+ return nil
2099
+ }
2100
+
2101
+ func (x *SyncActionValue) GetLidContactAction() *LidContactAction {
2102
+ if x != nil {
2103
+ return x.LidContactAction
2104
+ }
2105
+ return nil
2106
+ }
2107
+
2108
+ func (x *SyncActionValue) GetCtwaPerCustomerDataSharingAction() *CtwaPerCustomerDataSharingAction {
2109
+ if x != nil {
2110
+ return x.CtwaPerCustomerDataSharingAction
2111
+ }
2112
+ return nil
2113
+ }
2114
+
2115
+ type CtwaPerCustomerDataSharingAction struct {
2116
+ state protoimpl.MessageState `protogen:"open.v1"`
2117
+ IsCtwaPerCustomerDataSharingEnabled *bool `protobuf:"varint,1,opt,name=isCtwaPerCustomerDataSharingEnabled" json:"isCtwaPerCustomerDataSharingEnabled,omitempty"`
2118
+ unknownFields protoimpl.UnknownFields
2119
+ sizeCache protoimpl.SizeCache
2120
+ }
2121
+
2122
+ func (x *CtwaPerCustomerDataSharingAction) Reset() {
2123
+ *x = CtwaPerCustomerDataSharingAction{}
2124
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
2125
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2126
+ ms.StoreMessageInfo(mi)
2127
+ }
2128
+
2129
+ func (x *CtwaPerCustomerDataSharingAction) String() string {
2130
+ return protoimpl.X.MessageStringOf(x)
2131
+ }
2132
+
2133
+ func (*CtwaPerCustomerDataSharingAction) ProtoMessage() {}
2134
+
2135
+ func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
2136
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
2137
+ if x != nil {
2138
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2139
+ if ms.LoadMessageInfo() == nil {
2140
+ ms.StoreMessageInfo(mi)
2141
+ }
2142
+ return ms
2143
+ }
2144
+ return mi.MessageOf(x)
2145
+ }
2146
+
2147
+ // Deprecated: Use CtwaPerCustomerDataSharingAction.ProtoReflect.Descriptor instead.
2148
+ func (*CtwaPerCustomerDataSharingAction) Descriptor() ([]byte, []int) {
2149
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
2150
+ }
2151
+
2152
+ func (x *CtwaPerCustomerDataSharingAction) GetIsCtwaPerCustomerDataSharingEnabled() bool {
2153
+ if x != nil && x.IsCtwaPerCustomerDataSharingEnabled != nil {
2154
+ return *x.IsCtwaPerCustomerDataSharingEnabled
2155
+ }
2156
+ return false
2157
+ }
2158
+
2159
+ type LidContactAction struct {
2160
+ state protoimpl.MessageState `protogen:"open.v1"`
2161
+ FullName *string `protobuf:"bytes,1,opt,name=fullName" json:"fullName,omitempty"`
2162
+ FirstName *string `protobuf:"bytes,2,opt,name=firstName" json:"firstName,omitempty"`
2163
+ Username *string `protobuf:"bytes,3,opt,name=username" json:"username,omitempty"`
2164
+ SaveOnPrimaryAddressbook *bool `protobuf:"varint,4,opt,name=saveOnPrimaryAddressbook" json:"saveOnPrimaryAddressbook,omitempty"`
2165
+ unknownFields protoimpl.UnknownFields
2166
+ sizeCache protoimpl.SizeCache
2167
+ }
2168
+
2169
+ func (x *LidContactAction) Reset() {
2170
+ *x = LidContactAction{}
2171
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2172
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2173
+ ms.StoreMessageInfo(mi)
2174
+ }
2175
+
2176
+ func (x *LidContactAction) String() string {
2177
+ return protoimpl.X.MessageStringOf(x)
2178
+ }
2179
+
2180
+ func (*LidContactAction) ProtoMessage() {}
2181
+
2182
+ func (x *LidContactAction) ProtoReflect() protoreflect.Message {
2183
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2184
+ if x != nil {
2185
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2186
+ if ms.LoadMessageInfo() == nil {
2187
+ ms.StoreMessageInfo(mi)
2188
+ }
2189
+ return ms
2190
+ }
2191
+ return mi.MessageOf(x)
2192
+ }
2193
+
2194
+ // Deprecated: Use LidContactAction.ProtoReflect.Descriptor instead.
2195
+ func (*LidContactAction) Descriptor() ([]byte, []int) {
2196
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
2197
+ }
2198
+
2199
+ func (x *LidContactAction) GetFullName() string {
2200
+ if x != nil && x.FullName != nil {
2201
+ return *x.FullName
2202
+ }
2203
+ return ""
2204
+ }
2205
+
2206
+ func (x *LidContactAction) GetFirstName() string {
2207
+ if x != nil && x.FirstName != nil {
2208
+ return *x.FirstName
2209
+ }
2210
+ return ""
2211
+ }
2212
+
2213
+ func (x *LidContactAction) GetUsername() string {
2214
+ if x != nil && x.Username != nil {
2215
+ return *x.Username
2216
+ }
2217
+ return ""
2218
+ }
2219
+
2220
+ func (x *LidContactAction) GetSaveOnPrimaryAddressbook() bool {
2221
+ if x != nil && x.SaveOnPrimaryAddressbook != nil {
2222
+ return *x.SaveOnPrimaryAddressbook
2223
+ }
2224
+ return false
2225
+ }
2226
+
1966
2227
  type FavoritesAction struct {
1967
2228
  state protoimpl.MessageState `protogen:"open.v1"`
1968
2229
  Favorites []*FavoritesAction_Favorite `protobuf:"bytes,1,rep,name=favorites" json:"favorites,omitempty"`
@@ -1972,7 +2233,7 @@ type FavoritesAction struct {
1972
2233
 
1973
2234
  func (x *FavoritesAction) Reset() {
1974
2235
  *x = FavoritesAction{}
1975
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
2236
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
1976
2237
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1977
2238
  ms.StoreMessageInfo(mi)
1978
2239
  }
@@ -1984,7 +2245,7 @@ func (x *FavoritesAction) String() string {
1984
2245
  func (*FavoritesAction) ProtoMessage() {}
1985
2246
 
1986
2247
  func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
1987
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
2248
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
1988
2249
  if x != nil {
1989
2250
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1990
2251
  if ms.LoadMessageInfo() == nil {
@@ -1997,7 +2258,7 @@ func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
1997
2258
 
1998
2259
  // Deprecated: Use FavoritesAction.ProtoReflect.Descriptor instead.
1999
2260
  func (*FavoritesAction) Descriptor() ([]byte, []int) {
2000
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
2261
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
2001
2262
  }
2002
2263
 
2003
2264
  func (x *FavoritesAction) GetFavorites() []*FavoritesAction_Favorite {
@@ -2016,7 +2277,7 @@ type PrivacySettingDisableLinkPreviewsAction struct {
2016
2277
 
2017
2278
  func (x *PrivacySettingDisableLinkPreviewsAction) Reset() {
2018
2279
  *x = PrivacySettingDisableLinkPreviewsAction{}
2019
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
2280
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2020
2281
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2021
2282
  ms.StoreMessageInfo(mi)
2022
2283
  }
@@ -2028,7 +2289,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) String() string {
2028
2289
  func (*PrivacySettingDisableLinkPreviewsAction) ProtoMessage() {}
2029
2290
 
2030
2291
  func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Message {
2031
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
2292
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2032
2293
  if x != nil {
2033
2294
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2034
2295
  if ms.LoadMessageInfo() == nil {
@@ -2041,7 +2302,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Me
2041
2302
 
2042
2303
  // Deprecated: Use PrivacySettingDisableLinkPreviewsAction.ProtoReflect.Descriptor instead.
2043
2304
  func (*PrivacySettingDisableLinkPreviewsAction) Descriptor() ([]byte, []int) {
2044
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
2305
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{15}
2045
2306
  }
2046
2307
 
2047
2308
  func (x *PrivacySettingDisableLinkPreviewsAction) GetIsPreviewsDisabled() bool {
@@ -2060,7 +2321,7 @@ type WamoUserIdentifierAction struct {
2060
2321
 
2061
2322
  func (x *WamoUserIdentifierAction) Reset() {
2062
2323
  *x = WamoUserIdentifierAction{}
2063
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2324
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2064
2325
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2065
2326
  ms.StoreMessageInfo(mi)
2066
2327
  }
@@ -2072,7 +2333,7 @@ func (x *WamoUserIdentifierAction) String() string {
2072
2333
  func (*WamoUserIdentifierAction) ProtoMessage() {}
2073
2334
 
2074
2335
  func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
2075
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2336
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2076
2337
  if x != nil {
2077
2338
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2078
2339
  if ms.LoadMessageInfo() == nil {
@@ -2085,7 +2346,7 @@ func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
2085
2346
 
2086
2347
  // Deprecated: Use WamoUserIdentifierAction.ProtoReflect.Descriptor instead.
2087
2348
  func (*WamoUserIdentifierAction) Descriptor() ([]byte, []int) {
2088
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
2349
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16}
2089
2350
  }
2090
2351
 
2091
2352
  func (x *WamoUserIdentifierAction) GetIdentifier() string {
@@ -2104,7 +2365,7 @@ type LockChatAction struct {
2104
2365
 
2105
2366
  func (x *LockChatAction) Reset() {
2106
2367
  *x = LockChatAction{}
2107
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2368
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2108
2369
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2109
2370
  ms.StoreMessageInfo(mi)
2110
2371
  }
@@ -2116,7 +2377,7 @@ func (x *LockChatAction) String() string {
2116
2377
  func (*LockChatAction) ProtoMessage() {}
2117
2378
 
2118
2379
  func (x *LockChatAction) ProtoReflect() protoreflect.Message {
2119
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2380
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2120
2381
  if x != nil {
2121
2382
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2122
2383
  if ms.LoadMessageInfo() == nil {
@@ -2129,7 +2390,7 @@ func (x *LockChatAction) ProtoReflect() protoreflect.Message {
2129
2390
 
2130
2391
  // Deprecated: Use LockChatAction.ProtoReflect.Descriptor instead.
2131
2392
  func (*LockChatAction) Descriptor() ([]byte, []int) {
2132
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
2393
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{17}
2133
2394
  }
2134
2395
 
2135
2396
  func (x *LockChatAction) GetLocked() bool {
@@ -2148,7 +2409,7 @@ type CustomPaymentMethodsAction struct {
2148
2409
 
2149
2410
  func (x *CustomPaymentMethodsAction) Reset() {
2150
2411
  *x = CustomPaymentMethodsAction{}
2151
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2412
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2152
2413
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2153
2414
  ms.StoreMessageInfo(mi)
2154
2415
  }
@@ -2160,7 +2421,7 @@ func (x *CustomPaymentMethodsAction) String() string {
2160
2421
  func (*CustomPaymentMethodsAction) ProtoMessage() {}
2161
2422
 
2162
2423
  func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
2163
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2424
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2164
2425
  if x != nil {
2165
2426
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2166
2427
  if ms.LoadMessageInfo() == nil {
@@ -2173,7 +2434,7 @@ func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
2173
2434
 
2174
2435
  // Deprecated: Use CustomPaymentMethodsAction.ProtoReflect.Descriptor instead.
2175
2436
  func (*CustomPaymentMethodsAction) Descriptor() ([]byte, []int) {
2176
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{15}
2437
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
2177
2438
  }
2178
2439
 
2179
2440
  func (x *CustomPaymentMethodsAction) GetCustomPaymentMethods() []*CustomPaymentMethod {
@@ -2195,7 +2456,7 @@ type CustomPaymentMethod struct {
2195
2456
 
2196
2457
  func (x *CustomPaymentMethod) Reset() {
2197
2458
  *x = CustomPaymentMethod{}
2198
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2459
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2199
2460
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2200
2461
  ms.StoreMessageInfo(mi)
2201
2462
  }
@@ -2207,7 +2468,7 @@ func (x *CustomPaymentMethod) String() string {
2207
2468
  func (*CustomPaymentMethod) ProtoMessage() {}
2208
2469
 
2209
2470
  func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
2210
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2471
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2211
2472
  if x != nil {
2212
2473
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2213
2474
  if ms.LoadMessageInfo() == nil {
@@ -2220,7 +2481,7 @@ func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
2220
2481
 
2221
2482
  // Deprecated: Use CustomPaymentMethod.ProtoReflect.Descriptor instead.
2222
2483
  func (*CustomPaymentMethod) Descriptor() ([]byte, []int) {
2223
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16}
2484
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
2224
2485
  }
2225
2486
 
2226
2487
  func (x *CustomPaymentMethod) GetCredentialID() string {
@@ -2261,7 +2522,7 @@ type CustomPaymentMethodMetadata struct {
2261
2522
 
2262
2523
  func (x *CustomPaymentMethodMetadata) Reset() {
2263
2524
  *x = CustomPaymentMethodMetadata{}
2264
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2525
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2265
2526
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2266
2527
  ms.StoreMessageInfo(mi)
2267
2528
  }
@@ -2273,7 +2534,7 @@ func (x *CustomPaymentMethodMetadata) String() string {
2273
2534
  func (*CustomPaymentMethodMetadata) ProtoMessage() {}
2274
2535
 
2275
2536
  func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
2276
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2537
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2277
2538
  if x != nil {
2278
2539
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2279
2540
  if ms.LoadMessageInfo() == nil {
@@ -2286,7 +2547,7 @@ func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
2286
2547
 
2287
2548
  // Deprecated: Use CustomPaymentMethodMetadata.ProtoReflect.Descriptor instead.
2288
2549
  func (*CustomPaymentMethodMetadata) Descriptor() ([]byte, []int) {
2289
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{17}
2550
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
2290
2551
  }
2291
2552
 
2292
2553
  func (x *CustomPaymentMethodMetadata) GetKey() string {
@@ -2312,7 +2573,7 @@ type PaymentInfoAction struct {
2312
2573
 
2313
2574
  func (x *PaymentInfoAction) Reset() {
2314
2575
  *x = PaymentInfoAction{}
2315
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2576
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2316
2577
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2317
2578
  ms.StoreMessageInfo(mi)
2318
2579
  }
@@ -2324,7 +2585,7 @@ func (x *PaymentInfoAction) String() string {
2324
2585
  func (*PaymentInfoAction) ProtoMessage() {}
2325
2586
 
2326
2587
  func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
2327
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2588
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2328
2589
  if x != nil {
2329
2590
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2330
2591
  if ms.LoadMessageInfo() == nil {
@@ -2337,7 +2598,7 @@ func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
2337
2598
 
2338
2599
  // Deprecated: Use PaymentInfoAction.ProtoReflect.Descriptor instead.
2339
2600
  func (*PaymentInfoAction) Descriptor() ([]byte, []int) {
2340
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
2601
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
2341
2602
  }
2342
2603
 
2343
2604
  func (x *PaymentInfoAction) GetCpi() string {
@@ -2356,7 +2617,7 @@ type LabelReorderingAction struct {
2356
2617
 
2357
2618
  func (x *LabelReorderingAction) Reset() {
2358
2619
  *x = LabelReorderingAction{}
2359
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2620
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2360
2621
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2361
2622
  ms.StoreMessageInfo(mi)
2362
2623
  }
@@ -2368,7 +2629,7 @@ func (x *LabelReorderingAction) String() string {
2368
2629
  func (*LabelReorderingAction) ProtoMessage() {}
2369
2630
 
2370
2631
  func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
2371
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2632
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2372
2633
  if x != nil {
2373
2634
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2374
2635
  if ms.LoadMessageInfo() == nil {
@@ -2381,7 +2642,7 @@ func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
2381
2642
 
2382
2643
  // Deprecated: Use LabelReorderingAction.ProtoReflect.Descriptor instead.
2383
2644
  func (*LabelReorderingAction) Descriptor() ([]byte, []int) {
2384
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
2645
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
2385
2646
  }
2386
2647
 
2387
2648
  func (x *LabelReorderingAction) GetSortedLabelIDs() []int32 {
@@ -2401,7 +2662,7 @@ type DeleteIndividualCallLogAction struct {
2401
2662
 
2402
2663
  func (x *DeleteIndividualCallLogAction) Reset() {
2403
2664
  *x = DeleteIndividualCallLogAction{}
2404
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2665
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
2405
2666
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2406
2667
  ms.StoreMessageInfo(mi)
2407
2668
  }
@@ -2413,7 +2674,7 @@ func (x *DeleteIndividualCallLogAction) String() string {
2413
2674
  func (*DeleteIndividualCallLogAction) ProtoMessage() {}
2414
2675
 
2415
2676
  func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
2416
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2677
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
2417
2678
  if x != nil {
2418
2679
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2419
2680
  if ms.LoadMessageInfo() == nil {
@@ -2426,7 +2687,7 @@ func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
2426
2687
 
2427
2688
  // Deprecated: Use DeleteIndividualCallLogAction.ProtoReflect.Descriptor instead.
2428
2689
  func (*DeleteIndividualCallLogAction) Descriptor() ([]byte, []int) {
2429
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
2690
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
2430
2691
  }
2431
2692
 
2432
2693
  func (x *DeleteIndividualCallLogAction) GetPeerJID() string {
@@ -2452,7 +2713,7 @@ type BotWelcomeRequestAction struct {
2452
2713
 
2453
2714
  func (x *BotWelcomeRequestAction) Reset() {
2454
2715
  *x = BotWelcomeRequestAction{}
2455
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2716
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
2456
2717
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2457
2718
  ms.StoreMessageInfo(mi)
2458
2719
  }
@@ -2464,7 +2725,7 @@ func (x *BotWelcomeRequestAction) String() string {
2464
2725
  func (*BotWelcomeRequestAction) ProtoMessage() {}
2465
2726
 
2466
2727
  func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
2467
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2728
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
2468
2729
  if x != nil {
2469
2730
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2470
2731
  if ms.LoadMessageInfo() == nil {
@@ -2477,7 +2738,7 @@ func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
2477
2738
 
2478
2739
  // Deprecated: Use BotWelcomeRequestAction.ProtoReflect.Descriptor instead.
2479
2740
  func (*BotWelcomeRequestAction) Descriptor() ([]byte, []int) {
2480
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
2741
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
2481
2742
  }
2482
2743
 
2483
2744
  func (x *BotWelcomeRequestAction) GetIsSent() bool {
@@ -2496,7 +2757,7 @@ type CallLogAction struct {
2496
2757
 
2497
2758
  func (x *CallLogAction) Reset() {
2498
2759
  *x = CallLogAction{}
2499
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2760
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
2500
2761
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2501
2762
  ms.StoreMessageInfo(mi)
2502
2763
  }
@@ -2508,7 +2769,7 @@ func (x *CallLogAction) String() string {
2508
2769
  func (*CallLogAction) ProtoMessage() {}
2509
2770
 
2510
2771
  func (x *CallLogAction) ProtoReflect() protoreflect.Message {
2511
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2772
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
2512
2773
  if x != nil {
2513
2774
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2514
2775
  if ms.LoadMessageInfo() == nil {
@@ -2521,7 +2782,7 @@ func (x *CallLogAction) ProtoReflect() protoreflect.Message {
2521
2782
 
2522
2783
  // Deprecated: Use CallLogAction.ProtoReflect.Descriptor instead.
2523
2784
  func (*CallLogAction) Descriptor() ([]byte, []int) {
2524
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
2785
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
2525
2786
  }
2526
2787
 
2527
2788
  func (x *CallLogAction) GetCallLogRecord() *CallLogRecord {
@@ -2540,7 +2801,7 @@ type PrivacySettingRelayAllCalls struct {
2540
2801
 
2541
2802
  func (x *PrivacySettingRelayAllCalls) Reset() {
2542
2803
  *x = PrivacySettingRelayAllCalls{}
2543
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
2804
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
2544
2805
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2545
2806
  ms.StoreMessageInfo(mi)
2546
2807
  }
@@ -2552,7 +2813,7 @@ func (x *PrivacySettingRelayAllCalls) String() string {
2552
2813
  func (*PrivacySettingRelayAllCalls) ProtoMessage() {}
2553
2814
 
2554
2815
  func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
2555
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
2816
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
2556
2817
  if x != nil {
2557
2818
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2558
2819
  if ms.LoadMessageInfo() == nil {
@@ -2565,7 +2826,7 @@ func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
2565
2826
 
2566
2827
  // Deprecated: Use PrivacySettingRelayAllCalls.ProtoReflect.Descriptor instead.
2567
2828
  func (*PrivacySettingRelayAllCalls) Descriptor() ([]byte, []int) {
2568
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
2829
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
2569
2830
  }
2570
2831
 
2571
2832
  func (x *PrivacySettingRelayAllCalls) GetIsEnabled() bool {
@@ -2584,7 +2845,7 @@ type ExternalWebBetaAction struct {
2584
2845
 
2585
2846
  func (x *ExternalWebBetaAction) Reset() {
2586
2847
  *x = ExternalWebBetaAction{}
2587
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
2848
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
2588
2849
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2589
2850
  ms.StoreMessageInfo(mi)
2590
2851
  }
@@ -2596,7 +2857,7 @@ func (x *ExternalWebBetaAction) String() string {
2596
2857
  func (*ExternalWebBetaAction) ProtoMessage() {}
2597
2858
 
2598
2859
  func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
2599
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
2860
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
2600
2861
  if x != nil {
2601
2862
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2602
2863
  if ms.LoadMessageInfo() == nil {
@@ -2609,7 +2870,7 @@ func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
2609
2870
 
2610
2871
  // Deprecated: Use ExternalWebBetaAction.ProtoReflect.Descriptor instead.
2611
2872
  func (*ExternalWebBetaAction) Descriptor() ([]byte, []int) {
2612
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
2873
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
2613
2874
  }
2614
2875
 
2615
2876
  func (x *ExternalWebBetaAction) GetIsOptIn() bool {
@@ -2628,7 +2889,7 @@ type MarketingMessageBroadcastAction struct {
2628
2889
 
2629
2890
  func (x *MarketingMessageBroadcastAction) Reset() {
2630
2891
  *x = MarketingMessageBroadcastAction{}
2631
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
2892
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
2632
2893
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2633
2894
  ms.StoreMessageInfo(mi)
2634
2895
  }
@@ -2640,7 +2901,7 @@ func (x *MarketingMessageBroadcastAction) String() string {
2640
2901
  func (*MarketingMessageBroadcastAction) ProtoMessage() {}
2641
2902
 
2642
2903
  func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
2643
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
2904
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
2644
2905
  if x != nil {
2645
2906
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2646
2907
  if ms.LoadMessageInfo() == nil {
@@ -2653,7 +2914,7 @@ func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
2653
2914
 
2654
2915
  // Deprecated: Use MarketingMessageBroadcastAction.ProtoReflect.Descriptor instead.
2655
2916
  func (*MarketingMessageBroadcastAction) Descriptor() ([]byte, []int) {
2656
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
2917
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
2657
2918
  }
2658
2919
 
2659
2920
  func (x *MarketingMessageBroadcastAction) GetRepliedCount() int32 {
@@ -2672,7 +2933,7 @@ type PnForLidChatAction struct {
2672
2933
 
2673
2934
  func (x *PnForLidChatAction) Reset() {
2674
2935
  *x = PnForLidChatAction{}
2675
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
2936
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
2676
2937
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2677
2938
  ms.StoreMessageInfo(mi)
2678
2939
  }
@@ -2684,7 +2945,7 @@ func (x *PnForLidChatAction) String() string {
2684
2945
  func (*PnForLidChatAction) ProtoMessage() {}
2685
2946
 
2686
2947
  func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
2687
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
2948
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
2688
2949
  if x != nil {
2689
2950
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2690
2951
  if ms.LoadMessageInfo() == nil {
@@ -2697,7 +2958,7 @@ func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
2697
2958
 
2698
2959
  // Deprecated: Use PnForLidChatAction.ProtoReflect.Descriptor instead.
2699
2960
  func (*PnForLidChatAction) Descriptor() ([]byte, []int) {
2700
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
2961
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
2701
2962
  }
2702
2963
 
2703
2964
  func (x *PnForLidChatAction) GetPnJID() string {
@@ -2716,7 +2977,7 @@ type ChatAssignmentOpenedStatusAction struct {
2716
2977
 
2717
2978
  func (x *ChatAssignmentOpenedStatusAction) Reset() {
2718
2979
  *x = ChatAssignmentOpenedStatusAction{}
2719
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
2980
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
2720
2981
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2721
2982
  ms.StoreMessageInfo(mi)
2722
2983
  }
@@ -2728,7 +2989,7 @@ func (x *ChatAssignmentOpenedStatusAction) String() string {
2728
2989
  func (*ChatAssignmentOpenedStatusAction) ProtoMessage() {}
2729
2990
 
2730
2991
  func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
2731
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
2992
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
2732
2993
  if x != nil {
2733
2994
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2734
2995
  if ms.LoadMessageInfo() == nil {
@@ -2741,7 +3002,7 @@ func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
2741
3002
 
2742
3003
  // Deprecated: Use ChatAssignmentOpenedStatusAction.ProtoReflect.Descriptor instead.
2743
3004
  func (*ChatAssignmentOpenedStatusAction) Descriptor() ([]byte, []int) {
2744
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
3005
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
2745
3006
  }
2746
3007
 
2747
3008
  func (x *ChatAssignmentOpenedStatusAction) GetChatOpened() bool {
@@ -2760,7 +3021,7 @@ type ChatAssignmentAction struct {
2760
3021
 
2761
3022
  func (x *ChatAssignmentAction) Reset() {
2762
3023
  *x = ChatAssignmentAction{}
2763
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
3024
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
2764
3025
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2765
3026
  ms.StoreMessageInfo(mi)
2766
3027
  }
@@ -2772,7 +3033,7 @@ func (x *ChatAssignmentAction) String() string {
2772
3033
  func (*ChatAssignmentAction) ProtoMessage() {}
2773
3034
 
2774
3035
  func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
2775
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
3036
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
2776
3037
  if x != nil {
2777
3038
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2778
3039
  if ms.LoadMessageInfo() == nil {
@@ -2785,7 +3046,7 @@ func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
2785
3046
 
2786
3047
  // Deprecated: Use ChatAssignmentAction.ProtoReflect.Descriptor instead.
2787
3048
  func (*ChatAssignmentAction) Descriptor() ([]byte, []int) {
2788
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
3049
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
2789
3050
  }
2790
3051
 
2791
3052
  func (x *ChatAssignmentAction) GetDeviceAgentID() string {
@@ -2814,7 +3075,7 @@ type StickerAction struct {
2814
3075
 
2815
3076
  func (x *StickerAction) Reset() {
2816
3077
  *x = StickerAction{}
2817
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
3078
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
2818
3079
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2819
3080
  ms.StoreMessageInfo(mi)
2820
3081
  }
@@ -2826,7 +3087,7 @@ func (x *StickerAction) String() string {
2826
3087
  func (*StickerAction) ProtoMessage() {}
2827
3088
 
2828
3089
  func (x *StickerAction) ProtoReflect() protoreflect.Message {
2829
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
3090
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
2830
3091
  if x != nil {
2831
3092
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2832
3093
  if ms.LoadMessageInfo() == nil {
@@ -2839,7 +3100,7 @@ func (x *StickerAction) ProtoReflect() protoreflect.Message {
2839
3100
 
2840
3101
  // Deprecated: Use StickerAction.ProtoReflect.Descriptor instead.
2841
3102
  func (*StickerAction) Descriptor() ([]byte, []int) {
2842
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
3103
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{32}
2843
3104
  }
2844
3105
 
2845
3106
  func (x *StickerAction) GetURL() string {
@@ -2928,7 +3189,7 @@ type RemoveRecentStickerAction struct {
2928
3189
 
2929
3190
  func (x *RemoveRecentStickerAction) Reset() {
2930
3191
  *x = RemoveRecentStickerAction{}
2931
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
3192
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
2932
3193
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2933
3194
  ms.StoreMessageInfo(mi)
2934
3195
  }
@@ -2940,7 +3201,7 @@ func (x *RemoveRecentStickerAction) String() string {
2940
3201
  func (*RemoveRecentStickerAction) ProtoMessage() {}
2941
3202
 
2942
3203
  func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
2943
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
3204
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
2944
3205
  if x != nil {
2945
3206
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2946
3207
  if ms.LoadMessageInfo() == nil {
@@ -2953,7 +3214,7 @@ func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
2953
3214
 
2954
3215
  // Deprecated: Use RemoveRecentStickerAction.ProtoReflect.Descriptor instead.
2955
3216
  func (*RemoveRecentStickerAction) Descriptor() ([]byte, []int) {
2956
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
3217
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
2957
3218
  }
2958
3219
 
2959
3220
  func (x *RemoveRecentStickerAction) GetLastStickerSentTS() int64 {
@@ -2972,7 +3233,7 @@ type PrimaryVersionAction struct {
2972
3233
 
2973
3234
  func (x *PrimaryVersionAction) Reset() {
2974
3235
  *x = PrimaryVersionAction{}
2975
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
3236
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
2976
3237
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2977
3238
  ms.StoreMessageInfo(mi)
2978
3239
  }
@@ -2984,7 +3245,7 @@ func (x *PrimaryVersionAction) String() string {
2984
3245
  func (*PrimaryVersionAction) ProtoMessage() {}
2985
3246
 
2986
3247
  func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
2987
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
3248
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
2988
3249
  if x != nil {
2989
3250
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2990
3251
  if ms.LoadMessageInfo() == nil {
@@ -2997,7 +3258,7 @@ func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
2997
3258
 
2998
3259
  // Deprecated: Use PrimaryVersionAction.ProtoReflect.Descriptor instead.
2999
3260
  func (*PrimaryVersionAction) Descriptor() ([]byte, []int) {
3000
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
3261
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
3001
3262
  }
3002
3263
 
3003
3264
  func (x *PrimaryVersionAction) GetVersion() string {
@@ -3016,7 +3277,7 @@ type NuxAction struct {
3016
3277
 
3017
3278
  func (x *NuxAction) Reset() {
3018
3279
  *x = NuxAction{}
3019
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
3280
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3020
3281
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3021
3282
  ms.StoreMessageInfo(mi)
3022
3283
  }
@@ -3028,7 +3289,7 @@ func (x *NuxAction) String() string {
3028
3289
  func (*NuxAction) ProtoMessage() {}
3029
3290
 
3030
3291
  func (x *NuxAction) ProtoReflect() protoreflect.Message {
3031
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
3292
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3032
3293
  if x != nil {
3033
3294
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3034
3295
  if ms.LoadMessageInfo() == nil {
@@ -3041,7 +3302,7 @@ func (x *NuxAction) ProtoReflect() protoreflect.Message {
3041
3302
 
3042
3303
  // Deprecated: Use NuxAction.ProtoReflect.Descriptor instead.
3043
3304
  func (*NuxAction) Descriptor() ([]byte, []int) {
3044
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{32}
3305
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{35}
3045
3306
  }
3046
3307
 
3047
3308
  func (x *NuxAction) GetAcknowledged() bool {
@@ -3060,7 +3321,7 @@ type TimeFormatAction struct {
3060
3321
 
3061
3322
  func (x *TimeFormatAction) Reset() {
3062
3323
  *x = TimeFormatAction{}
3063
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
3324
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3064
3325
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3065
3326
  ms.StoreMessageInfo(mi)
3066
3327
  }
@@ -3072,7 +3333,7 @@ func (x *TimeFormatAction) String() string {
3072
3333
  func (*TimeFormatAction) ProtoMessage() {}
3073
3334
 
3074
3335
  func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
3075
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
3336
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3076
3337
  if x != nil {
3077
3338
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3078
3339
  if ms.LoadMessageInfo() == nil {
@@ -3085,7 +3346,7 @@ func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
3085
3346
 
3086
3347
  // Deprecated: Use TimeFormatAction.ProtoReflect.Descriptor instead.
3087
3348
  func (*TimeFormatAction) Descriptor() ([]byte, []int) {
3088
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
3349
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
3089
3350
  }
3090
3351
 
3091
3352
  func (x *TimeFormatAction) GetIsTwentyFourHourFormatEnabled() bool {
@@ -3104,7 +3365,7 @@ type UserStatusMuteAction struct {
3104
3365
 
3105
3366
  func (x *UserStatusMuteAction) Reset() {
3106
3367
  *x = UserStatusMuteAction{}
3107
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3368
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3108
3369
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3109
3370
  ms.StoreMessageInfo(mi)
3110
3371
  }
@@ -3116,7 +3377,7 @@ func (x *UserStatusMuteAction) String() string {
3116
3377
  func (*UserStatusMuteAction) ProtoMessage() {}
3117
3378
 
3118
3379
  func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
3119
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3380
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3120
3381
  if x != nil {
3121
3382
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3122
3383
  if ms.LoadMessageInfo() == nil {
@@ -3129,7 +3390,7 @@ func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
3129
3390
 
3130
3391
  // Deprecated: Use UserStatusMuteAction.ProtoReflect.Descriptor instead.
3131
3392
  func (*UserStatusMuteAction) Descriptor() ([]byte, []int) {
3132
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
3393
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
3133
3394
  }
3134
3395
 
3135
3396
  func (x *UserStatusMuteAction) GetMuted() bool {
@@ -3150,7 +3411,7 @@ type SubscriptionAction struct {
3150
3411
 
3151
3412
  func (x *SubscriptionAction) Reset() {
3152
3413
  *x = SubscriptionAction{}
3153
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3414
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3154
3415
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3155
3416
  ms.StoreMessageInfo(mi)
3156
3417
  }
@@ -3162,7 +3423,7 @@ func (x *SubscriptionAction) String() string {
3162
3423
  func (*SubscriptionAction) ProtoMessage() {}
3163
3424
 
3164
3425
  func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
3165
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3426
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3166
3427
  if x != nil {
3167
3428
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3168
3429
  if ms.LoadMessageInfo() == nil {
@@ -3175,7 +3436,7 @@ func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
3175
3436
 
3176
3437
  // Deprecated: Use SubscriptionAction.ProtoReflect.Descriptor instead.
3177
3438
  func (*SubscriptionAction) Descriptor() ([]byte, []int) {
3178
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{35}
3439
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
3179
3440
  }
3180
3441
 
3181
3442
  func (x *SubscriptionAction) GetIsDeactivated() bool {
@@ -3210,7 +3471,7 @@ type AgentAction struct {
3210
3471
 
3211
3472
  func (x *AgentAction) Reset() {
3212
3473
  *x = AgentAction{}
3213
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3474
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3214
3475
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3215
3476
  ms.StoreMessageInfo(mi)
3216
3477
  }
@@ -3222,7 +3483,7 @@ func (x *AgentAction) String() string {
3222
3483
  func (*AgentAction) ProtoMessage() {}
3223
3484
 
3224
3485
  func (x *AgentAction) ProtoReflect() protoreflect.Message {
3225
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3486
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3226
3487
  if x != nil {
3227
3488
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3228
3489
  if ms.LoadMessageInfo() == nil {
@@ -3235,7 +3496,7 @@ func (x *AgentAction) ProtoReflect() protoreflect.Message {
3235
3496
 
3236
3497
  // Deprecated: Use AgentAction.ProtoReflect.Descriptor instead.
3237
3498
  func (*AgentAction) Descriptor() ([]byte, []int) {
3238
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
3499
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
3239
3500
  }
3240
3501
 
3241
3502
  func (x *AgentAction) GetName() string {
@@ -3268,7 +3529,7 @@ type AndroidUnsupportedActions struct {
3268
3529
 
3269
3530
  func (x *AndroidUnsupportedActions) Reset() {
3270
3531
  *x = AndroidUnsupportedActions{}
3271
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3532
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3272
3533
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3273
3534
  ms.StoreMessageInfo(mi)
3274
3535
  }
@@ -3280,7 +3541,7 @@ func (x *AndroidUnsupportedActions) String() string {
3280
3541
  func (*AndroidUnsupportedActions) ProtoMessage() {}
3281
3542
 
3282
3543
  func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
3283
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3544
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3284
3545
  if x != nil {
3285
3546
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3286
3547
  if ms.LoadMessageInfo() == nil {
@@ -3293,7 +3554,7 @@ func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
3293
3554
 
3294
3555
  // Deprecated: Use AndroidUnsupportedActions.ProtoReflect.Descriptor instead.
3295
3556
  func (*AndroidUnsupportedActions) Descriptor() ([]byte, []int) {
3296
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
3557
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
3297
3558
  }
3298
3559
 
3299
3560
  func (x *AndroidUnsupportedActions) GetAllowed() bool {
@@ -3312,7 +3573,7 @@ type PrimaryFeature struct {
3312
3573
 
3313
3574
  func (x *PrimaryFeature) Reset() {
3314
3575
  *x = PrimaryFeature{}
3315
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3576
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3316
3577
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3317
3578
  ms.StoreMessageInfo(mi)
3318
3579
  }
@@ -3324,7 +3585,7 @@ func (x *PrimaryFeature) String() string {
3324
3585
  func (*PrimaryFeature) ProtoMessage() {}
3325
3586
 
3326
3587
  func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
3327
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3588
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3328
3589
  if x != nil {
3329
3590
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3330
3591
  if ms.LoadMessageInfo() == nil {
@@ -3337,7 +3598,7 @@ func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
3337
3598
 
3338
3599
  // Deprecated: Use PrimaryFeature.ProtoReflect.Descriptor instead.
3339
3600
  func (*PrimaryFeature) Descriptor() ([]byte, []int) {
3340
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
3601
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
3341
3602
  }
3342
3603
 
3343
3604
  func (x *PrimaryFeature) GetFlags() []string {
@@ -3356,7 +3617,7 @@ type KeyExpiration struct {
3356
3617
 
3357
3618
  func (x *KeyExpiration) Reset() {
3358
3619
  *x = KeyExpiration{}
3359
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3620
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3360
3621
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3361
3622
  ms.StoreMessageInfo(mi)
3362
3623
  }
@@ -3368,7 +3629,7 @@ func (x *KeyExpiration) String() string {
3368
3629
  func (*KeyExpiration) ProtoMessage() {}
3369
3630
 
3370
3631
  func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
3371
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3632
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3372
3633
  if x != nil {
3373
3634
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3374
3635
  if ms.LoadMessageInfo() == nil {
@@ -3381,7 +3642,7 @@ func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
3381
3642
 
3382
3643
  // Deprecated: Use KeyExpiration.ProtoReflect.Descriptor instead.
3383
3644
  func (*KeyExpiration) Descriptor() ([]byte, []int) {
3384
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
3645
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
3385
3646
  }
3386
3647
 
3387
3648
  func (x *KeyExpiration) GetExpiredKeyEpoch() int32 {
@@ -3401,7 +3662,7 @@ type SyncActionMessage struct {
3401
3662
 
3402
3663
  func (x *SyncActionMessage) Reset() {
3403
3664
  *x = SyncActionMessage{}
3404
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3665
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
3405
3666
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3406
3667
  ms.StoreMessageInfo(mi)
3407
3668
  }
@@ -3413,7 +3674,7 @@ func (x *SyncActionMessage) String() string {
3413
3674
  func (*SyncActionMessage) ProtoMessage() {}
3414
3675
 
3415
3676
  func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
3416
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3677
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
3417
3678
  if x != nil {
3418
3679
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3419
3680
  if ms.LoadMessageInfo() == nil {
@@ -3426,7 +3687,7 @@ func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
3426
3687
 
3427
3688
  // Deprecated: Use SyncActionMessage.ProtoReflect.Descriptor instead.
3428
3689
  func (*SyncActionMessage) Descriptor() ([]byte, []int) {
3429
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
3690
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
3430
3691
  }
3431
3692
 
3432
3693
  func (x *SyncActionMessage) GetKey() *waCommon.MessageKey {
@@ -3454,7 +3715,7 @@ type SyncActionMessageRange struct {
3454
3715
 
3455
3716
  func (x *SyncActionMessageRange) Reset() {
3456
3717
  *x = SyncActionMessageRange{}
3457
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3718
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
3458
3719
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3459
3720
  ms.StoreMessageInfo(mi)
3460
3721
  }
@@ -3466,7 +3727,7 @@ func (x *SyncActionMessageRange) String() string {
3466
3727
  func (*SyncActionMessageRange) ProtoMessage() {}
3467
3728
 
3468
3729
  func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
3469
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3730
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
3470
3731
  if x != nil {
3471
3732
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3472
3733
  if ms.LoadMessageInfo() == nil {
@@ -3479,7 +3740,7 @@ func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
3479
3740
 
3480
3741
  // Deprecated: Use SyncActionMessageRange.ProtoReflect.Descriptor instead.
3481
3742
  func (*SyncActionMessageRange) Descriptor() ([]byte, []int) {
3482
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
3743
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
3483
3744
  }
3484
3745
 
3485
3746
  func (x *SyncActionMessageRange) GetLastMessageTimestamp() int64 {
@@ -3512,7 +3773,7 @@ type UnarchiveChatsSetting struct {
3512
3773
 
3513
3774
  func (x *UnarchiveChatsSetting) Reset() {
3514
3775
  *x = UnarchiveChatsSetting{}
3515
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3776
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
3516
3777
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3517
3778
  ms.StoreMessageInfo(mi)
3518
3779
  }
@@ -3524,7 +3785,7 @@ func (x *UnarchiveChatsSetting) String() string {
3524
3785
  func (*UnarchiveChatsSetting) ProtoMessage() {}
3525
3786
 
3526
3787
  func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
3527
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3788
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
3528
3789
  if x != nil {
3529
3790
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3530
3791
  if ms.LoadMessageInfo() == nil {
@@ -3537,7 +3798,7 @@ func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
3537
3798
 
3538
3799
  // Deprecated: Use UnarchiveChatsSetting.ProtoReflect.Descriptor instead.
3539
3800
  func (*UnarchiveChatsSetting) Descriptor() ([]byte, []int) {
3540
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
3801
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
3541
3802
  }
3542
3803
 
3543
3804
  func (x *UnarchiveChatsSetting) GetUnarchiveChats() bool {
@@ -3556,7 +3817,7 @@ type DeleteChatAction struct {
3556
3817
 
3557
3818
  func (x *DeleteChatAction) Reset() {
3558
3819
  *x = DeleteChatAction{}
3559
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
3820
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
3560
3821
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3561
3822
  ms.StoreMessageInfo(mi)
3562
3823
  }
@@ -3568,7 +3829,7 @@ func (x *DeleteChatAction) String() string {
3568
3829
  func (*DeleteChatAction) ProtoMessage() {}
3569
3830
 
3570
3831
  func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
3571
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
3832
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
3572
3833
  if x != nil {
3573
3834
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3574
3835
  if ms.LoadMessageInfo() == nil {
@@ -3581,7 +3842,7 @@ func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
3581
3842
 
3582
3843
  // Deprecated: Use DeleteChatAction.ProtoReflect.Descriptor instead.
3583
3844
  func (*DeleteChatAction) Descriptor() ([]byte, []int) {
3584
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
3845
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
3585
3846
  }
3586
3847
 
3587
3848
  func (x *DeleteChatAction) GetMessageRange() *SyncActionMessageRange {
@@ -3600,7 +3861,7 @@ type ClearChatAction struct {
3600
3861
 
3601
3862
  func (x *ClearChatAction) Reset() {
3602
3863
  *x = ClearChatAction{}
3603
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
3864
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
3604
3865
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3605
3866
  ms.StoreMessageInfo(mi)
3606
3867
  }
@@ -3612,7 +3873,7 @@ func (x *ClearChatAction) String() string {
3612
3873
  func (*ClearChatAction) ProtoMessage() {}
3613
3874
 
3614
3875
  func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
3615
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
3876
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
3616
3877
  if x != nil {
3617
3878
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3618
3879
  if ms.LoadMessageInfo() == nil {
@@ -3625,7 +3886,7 @@ func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
3625
3886
 
3626
3887
  // Deprecated: Use ClearChatAction.ProtoReflect.Descriptor instead.
3627
3888
  func (*ClearChatAction) Descriptor() ([]byte, []int) {
3628
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
3889
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
3629
3890
  }
3630
3891
 
3631
3892
  func (x *ClearChatAction) GetMessageRange() *SyncActionMessageRange {
@@ -3645,7 +3906,7 @@ type MarkChatAsReadAction struct {
3645
3906
 
3646
3907
  func (x *MarkChatAsReadAction) Reset() {
3647
3908
  *x = MarkChatAsReadAction{}
3648
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
3909
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
3649
3910
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3650
3911
  ms.StoreMessageInfo(mi)
3651
3912
  }
@@ -3657,7 +3918,7 @@ func (x *MarkChatAsReadAction) String() string {
3657
3918
  func (*MarkChatAsReadAction) ProtoMessage() {}
3658
3919
 
3659
3920
  func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
3660
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
3921
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
3661
3922
  if x != nil {
3662
3923
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3663
3924
  if ms.LoadMessageInfo() == nil {
@@ -3670,7 +3931,7 @@ func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
3670
3931
 
3671
3932
  // Deprecated: Use MarkChatAsReadAction.ProtoReflect.Descriptor instead.
3672
3933
  func (*MarkChatAsReadAction) Descriptor() ([]byte, []int) {
3673
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
3934
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
3674
3935
  }
3675
3936
 
3676
3937
  func (x *MarkChatAsReadAction) GetRead() bool {
@@ -3697,7 +3958,7 @@ type DeleteMessageForMeAction struct {
3697
3958
 
3698
3959
  func (x *DeleteMessageForMeAction) Reset() {
3699
3960
  *x = DeleteMessageForMeAction{}
3700
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
3961
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
3701
3962
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3702
3963
  ms.StoreMessageInfo(mi)
3703
3964
  }
@@ -3709,7 +3970,7 @@ func (x *DeleteMessageForMeAction) String() string {
3709
3970
  func (*DeleteMessageForMeAction) ProtoMessage() {}
3710
3971
 
3711
3972
  func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
3712
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
3973
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
3713
3974
  if x != nil {
3714
3975
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3715
3976
  if ms.LoadMessageInfo() == nil {
@@ -3722,7 +3983,7 @@ func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
3722
3983
 
3723
3984
  // Deprecated: Use DeleteMessageForMeAction.ProtoReflect.Descriptor instead.
3724
3985
  func (*DeleteMessageForMeAction) Descriptor() ([]byte, []int) {
3725
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
3986
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
3726
3987
  }
3727
3988
 
3728
3989
  func (x *DeleteMessageForMeAction) GetDeleteMedia() bool {
@@ -3749,7 +4010,7 @@ type ArchiveChatAction struct {
3749
4010
 
3750
4011
  func (x *ArchiveChatAction) Reset() {
3751
4012
  *x = ArchiveChatAction{}
3752
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
4013
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
3753
4014
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3754
4015
  ms.StoreMessageInfo(mi)
3755
4016
  }
@@ -3761,7 +4022,7 @@ func (x *ArchiveChatAction) String() string {
3761
4022
  func (*ArchiveChatAction) ProtoMessage() {}
3762
4023
 
3763
4024
  func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
3764
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
4025
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
3765
4026
  if x != nil {
3766
4027
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3767
4028
  if ms.LoadMessageInfo() == nil {
@@ -3774,7 +4035,7 @@ func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
3774
4035
 
3775
4036
  // Deprecated: Use ArchiveChatAction.ProtoReflect.Descriptor instead.
3776
4037
  func (*ArchiveChatAction) Descriptor() ([]byte, []int) {
3777
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
4038
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
3778
4039
  }
3779
4040
 
3780
4041
  func (x *ArchiveChatAction) GetArchived() bool {
@@ -3800,7 +4061,7 @@ type RecentEmojiWeightsAction struct {
3800
4061
 
3801
4062
  func (x *RecentEmojiWeightsAction) Reset() {
3802
4063
  *x = RecentEmojiWeightsAction{}
3803
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
4064
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
3804
4065
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3805
4066
  ms.StoreMessageInfo(mi)
3806
4067
  }
@@ -3812,7 +4073,7 @@ func (x *RecentEmojiWeightsAction) String() string {
3812
4073
  func (*RecentEmojiWeightsAction) ProtoMessage() {}
3813
4074
 
3814
4075
  func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
3815
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
4076
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
3816
4077
  if x != nil {
3817
4078
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3818
4079
  if ms.LoadMessageInfo() == nil {
@@ -3825,7 +4086,7 @@ func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
3825
4086
 
3826
4087
  // Deprecated: Use RecentEmojiWeightsAction.ProtoReflect.Descriptor instead.
3827
4088
  func (*RecentEmojiWeightsAction) Descriptor() ([]byte, []int) {
3828
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
4089
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
3829
4090
  }
3830
4091
 
3831
4092
  func (x *RecentEmojiWeightsAction) GetWeights() []*RecentEmojiWeight {
@@ -3844,7 +4105,7 @@ type LabelAssociationAction struct {
3844
4105
 
3845
4106
  func (x *LabelAssociationAction) Reset() {
3846
4107
  *x = LabelAssociationAction{}
3847
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
4108
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
3848
4109
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3849
4110
  ms.StoreMessageInfo(mi)
3850
4111
  }
@@ -3856,7 +4117,7 @@ func (x *LabelAssociationAction) String() string {
3856
4117
  func (*LabelAssociationAction) ProtoMessage() {}
3857
4118
 
3858
4119
  func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
3859
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
4120
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
3860
4121
  if x != nil {
3861
4122
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3862
4123
  if ms.LoadMessageInfo() == nil {
@@ -3869,7 +4130,7 @@ func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
3869
4130
 
3870
4131
  // Deprecated: Use LabelAssociationAction.ProtoReflect.Descriptor instead.
3871
4132
  func (*LabelAssociationAction) Descriptor() ([]byte, []int) {
3872
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
4133
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
3873
4134
  }
3874
4135
 
3875
4136
  func (x *LabelAssociationAction) GetLabeled() bool {
@@ -3892,7 +4153,7 @@ type QuickReplyAction struct {
3892
4153
 
3893
4154
  func (x *QuickReplyAction) Reset() {
3894
4155
  *x = QuickReplyAction{}
3895
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
4156
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
3896
4157
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3897
4158
  ms.StoreMessageInfo(mi)
3898
4159
  }
@@ -3904,7 +4165,7 @@ func (x *QuickReplyAction) String() string {
3904
4165
  func (*QuickReplyAction) ProtoMessage() {}
3905
4166
 
3906
4167
  func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
3907
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
4168
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
3908
4169
  if x != nil {
3909
4170
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3910
4171
  if ms.LoadMessageInfo() == nil {
@@ -3917,7 +4178,7 @@ func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
3917
4178
 
3918
4179
  // Deprecated: Use QuickReplyAction.ProtoReflect.Descriptor instead.
3919
4180
  func (*QuickReplyAction) Descriptor() ([]byte, []int) {
3920
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
4181
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
3921
4182
  }
3922
4183
 
3923
4184
  func (x *QuickReplyAction) GetShortcut() string {
@@ -3964,7 +4225,7 @@ type LocaleSetting struct {
3964
4225
 
3965
4226
  func (x *LocaleSetting) Reset() {
3966
4227
  *x = LocaleSetting{}
3967
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
4228
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
3968
4229
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3969
4230
  ms.StoreMessageInfo(mi)
3970
4231
  }
@@ -3976,7 +4237,7 @@ func (x *LocaleSetting) String() string {
3976
4237
  func (*LocaleSetting) ProtoMessage() {}
3977
4238
 
3978
4239
  func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
3979
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
4240
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
3980
4241
  if x != nil {
3981
4242
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3982
4243
  if ms.LoadMessageInfo() == nil {
@@ -3989,7 +4250,7 @@ func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
3989
4250
 
3990
4251
  // Deprecated: Use LocaleSetting.ProtoReflect.Descriptor instead.
3991
4252
  func (*LocaleSetting) Descriptor() ([]byte, []int) {
3992
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
4253
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
3993
4254
  }
3994
4255
 
3995
4256
  func (x *LocaleSetting) GetLocale() string {
@@ -4008,7 +4269,7 @@ type PushNameSetting struct {
4008
4269
 
4009
4270
  func (x *PushNameSetting) Reset() {
4010
4271
  *x = PushNameSetting{}
4011
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
4272
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4012
4273
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4013
4274
  ms.StoreMessageInfo(mi)
4014
4275
  }
@@ -4020,7 +4281,7 @@ func (x *PushNameSetting) String() string {
4020
4281
  func (*PushNameSetting) ProtoMessage() {}
4021
4282
 
4022
4283
  func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
4023
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
4284
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4024
4285
  if x != nil {
4025
4286
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4026
4287
  if ms.LoadMessageInfo() == nil {
@@ -4033,7 +4294,7 @@ func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
4033
4294
 
4034
4295
  // Deprecated: Use PushNameSetting.ProtoReflect.Descriptor instead.
4035
4296
  func (*PushNameSetting) Descriptor() ([]byte, []int) {
4036
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
4297
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
4037
4298
  }
4038
4299
 
4039
4300
  func (x *PushNameSetting) GetName() string {
@@ -4052,7 +4313,7 @@ type SecurityNotificationSetting struct {
4052
4313
 
4053
4314
  func (x *SecurityNotificationSetting) Reset() {
4054
4315
  *x = SecurityNotificationSetting{}
4055
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
4316
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4056
4317
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4057
4318
  ms.StoreMessageInfo(mi)
4058
4319
  }
@@ -4064,7 +4325,7 @@ func (x *SecurityNotificationSetting) String() string {
4064
4325
  func (*SecurityNotificationSetting) ProtoMessage() {}
4065
4326
 
4066
4327
  func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
4067
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
4328
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4068
4329
  if x != nil {
4069
4330
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4070
4331
  if ms.LoadMessageInfo() == nil {
@@ -4077,7 +4338,7 @@ func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
4077
4338
 
4078
4339
  // Deprecated: Use SecurityNotificationSetting.ProtoReflect.Descriptor instead.
4079
4340
  func (*SecurityNotificationSetting) Descriptor() ([]byte, []int) {
4080
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
4341
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
4081
4342
  }
4082
4343
 
4083
4344
  func (x *SecurityNotificationSetting) GetShowNotification() bool {
@@ -4096,7 +4357,7 @@ type PinAction struct {
4096
4357
 
4097
4358
  func (x *PinAction) Reset() {
4098
4359
  *x = PinAction{}
4099
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4360
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4100
4361
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4101
4362
  ms.StoreMessageInfo(mi)
4102
4363
  }
@@ -4108,7 +4369,7 @@ func (x *PinAction) String() string {
4108
4369
  func (*PinAction) ProtoMessage() {}
4109
4370
 
4110
4371
  func (x *PinAction) ProtoReflect() protoreflect.Message {
4111
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4372
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4112
4373
  if x != nil {
4113
4374
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4114
4375
  if ms.LoadMessageInfo() == nil {
@@ -4121,7 +4382,7 @@ func (x *PinAction) ProtoReflect() protoreflect.Message {
4121
4382
 
4122
4383
  // Deprecated: Use PinAction.ProtoReflect.Descriptor instead.
4123
4384
  func (*PinAction) Descriptor() ([]byte, []int) {
4124
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
4385
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
4125
4386
  }
4126
4387
 
4127
4388
  func (x *PinAction) GetPinned() bool {
@@ -4142,7 +4403,7 @@ type MuteAction struct {
4142
4403
 
4143
4404
  func (x *MuteAction) Reset() {
4144
4405
  *x = MuteAction{}
4145
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4406
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4146
4407
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4147
4408
  ms.StoreMessageInfo(mi)
4148
4409
  }
@@ -4154,7 +4415,7 @@ func (x *MuteAction) String() string {
4154
4415
  func (*MuteAction) ProtoMessage() {}
4155
4416
 
4156
4417
  func (x *MuteAction) ProtoReflect() protoreflect.Message {
4157
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4418
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4158
4419
  if x != nil {
4159
4420
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4160
4421
  if ms.LoadMessageInfo() == nil {
@@ -4167,7 +4428,7 @@ func (x *MuteAction) ProtoReflect() protoreflect.Message {
4167
4428
 
4168
4429
  // Deprecated: Use MuteAction.ProtoReflect.Descriptor instead.
4169
4430
  func (*MuteAction) Descriptor() ([]byte, []int) {
4170
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
4431
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
4171
4432
  }
4172
4433
 
4173
4434
  func (x *MuteAction) GetMuted() bool {
@@ -4197,13 +4458,15 @@ type ContactAction struct {
4197
4458
  FirstName *string `protobuf:"bytes,2,opt,name=firstName" json:"firstName,omitempty"`
4198
4459
  LidJID *string `protobuf:"bytes,3,opt,name=lidJID" json:"lidJID,omitempty"`
4199
4460
  SaveOnPrimaryAddressbook *bool `protobuf:"varint,4,opt,name=saveOnPrimaryAddressbook" json:"saveOnPrimaryAddressbook,omitempty"`
4461
+ PnJID *string `protobuf:"bytes,5,opt,name=pnJID" json:"pnJID,omitempty"`
4462
+ Username *string `protobuf:"bytes,6,opt,name=username" json:"username,omitempty"`
4200
4463
  unknownFields protoimpl.UnknownFields
4201
4464
  sizeCache protoimpl.SizeCache
4202
4465
  }
4203
4466
 
4204
4467
  func (x *ContactAction) Reset() {
4205
4468
  *x = ContactAction{}
4206
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4469
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4207
4470
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4208
4471
  ms.StoreMessageInfo(mi)
4209
4472
  }
@@ -4215,7 +4478,7 @@ func (x *ContactAction) String() string {
4215
4478
  func (*ContactAction) ProtoMessage() {}
4216
4479
 
4217
4480
  func (x *ContactAction) ProtoReflect() protoreflect.Message {
4218
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4481
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4219
4482
  if x != nil {
4220
4483
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4221
4484
  if ms.LoadMessageInfo() == nil {
@@ -4228,7 +4491,7 @@ func (x *ContactAction) ProtoReflect() protoreflect.Message {
4228
4491
 
4229
4492
  // Deprecated: Use ContactAction.ProtoReflect.Descriptor instead.
4230
4493
  func (*ContactAction) Descriptor() ([]byte, []int) {
4231
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
4494
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{59}
4232
4495
  }
4233
4496
 
4234
4497
  func (x *ContactAction) GetFullName() string {
@@ -4259,6 +4522,20 @@ func (x *ContactAction) GetSaveOnPrimaryAddressbook() bool {
4259
4522
  return false
4260
4523
  }
4261
4524
 
4525
+ func (x *ContactAction) GetPnJID() string {
4526
+ if x != nil && x.PnJID != nil {
4527
+ return *x.PnJID
4528
+ }
4529
+ return ""
4530
+ }
4531
+
4532
+ func (x *ContactAction) GetUsername() string {
4533
+ if x != nil && x.Username != nil {
4534
+ return *x.Username
4535
+ }
4536
+ return ""
4537
+ }
4538
+
4262
4539
  type StarAction struct {
4263
4540
  state protoimpl.MessageState `protogen:"open.v1"`
4264
4541
  Starred *bool `protobuf:"varint,1,opt,name=starred" json:"starred,omitempty"`
@@ -4268,7 +4545,7 @@ type StarAction struct {
4268
4545
 
4269
4546
  func (x *StarAction) Reset() {
4270
4547
  *x = StarAction{}
4271
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4548
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4272
4549
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4273
4550
  ms.StoreMessageInfo(mi)
4274
4551
  }
@@ -4280,7 +4557,7 @@ func (x *StarAction) String() string {
4280
4557
  func (*StarAction) ProtoMessage() {}
4281
4558
 
4282
4559
  func (x *StarAction) ProtoReflect() protoreflect.Message {
4283
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4560
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4284
4561
  if x != nil {
4285
4562
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4286
4563
  if ms.LoadMessageInfo() == nil {
@@ -4293,7 +4570,7 @@ func (x *StarAction) ProtoReflect() protoreflect.Message {
4293
4570
 
4294
4571
  // Deprecated: Use StarAction.ProtoReflect.Descriptor instead.
4295
4572
  func (*StarAction) Descriptor() ([]byte, []int) {
4296
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
4573
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{60}
4297
4574
  }
4298
4575
 
4299
4576
  func (x *StarAction) GetStarred() bool {
@@ -4315,7 +4592,7 @@ type SyncActionData struct {
4315
4592
 
4316
4593
  func (x *SyncActionData) Reset() {
4317
4594
  *x = SyncActionData{}
4318
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4595
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
4319
4596
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4320
4597
  ms.StoreMessageInfo(mi)
4321
4598
  }
@@ -4327,7 +4604,7 @@ func (x *SyncActionData) String() string {
4327
4604
  func (*SyncActionData) ProtoMessage() {}
4328
4605
 
4329
4606
  func (x *SyncActionData) ProtoReflect() protoreflect.Message {
4330
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4607
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
4331
4608
  if x != nil {
4332
4609
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4333
4610
  if ms.LoadMessageInfo() == nil {
@@ -4340,7 +4617,7 @@ func (x *SyncActionData) ProtoReflect() protoreflect.Message {
4340
4617
 
4341
4618
  // Deprecated: Use SyncActionData.ProtoReflect.Descriptor instead.
4342
4619
  func (*SyncActionData) Descriptor() ([]byte, []int) {
4343
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
4620
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{61}
4344
4621
  }
4345
4622
 
4346
4623
  func (x *SyncActionData) GetIndex() []byte {
@@ -4381,7 +4658,7 @@ type CallLogRecord_ParticipantInfo struct {
4381
4658
 
4382
4659
  func (x *CallLogRecord_ParticipantInfo) Reset() {
4383
4660
  *x = CallLogRecord_ParticipantInfo{}
4384
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4661
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
4385
4662
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4386
4663
  ms.StoreMessageInfo(mi)
4387
4664
  }
@@ -4393,7 +4670,7 @@ func (x *CallLogRecord_ParticipantInfo) String() string {
4393
4670
  func (*CallLogRecord_ParticipantInfo) ProtoMessage() {}
4394
4671
 
4395
4672
  func (x *CallLogRecord_ParticipantInfo) ProtoReflect() protoreflect.Message {
4396
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4673
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
4397
4674
  if x != nil {
4398
4675
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4399
4676
  if ms.LoadMessageInfo() == nil {
@@ -4432,7 +4709,7 @@ type FavoritesAction_Favorite struct {
4432
4709
 
4433
4710
  func (x *FavoritesAction_Favorite) Reset() {
4434
4711
  *x = FavoritesAction_Favorite{}
4435
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4712
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
4436
4713
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4437
4714
  ms.StoreMessageInfo(mi)
4438
4715
  }
@@ -4444,7 +4721,7 @@ func (x *FavoritesAction_Favorite) String() string {
4444
4721
  func (*FavoritesAction_Favorite) ProtoMessage() {}
4445
4722
 
4446
4723
  func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
4447
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4724
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
4448
4725
  if x != nil {
4449
4726
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4450
4727
  if ms.LoadMessageInfo() == nil {
@@ -4457,7 +4734,7 @@ func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
4457
4734
 
4458
4735
  // Deprecated: Use FavoritesAction_Favorite.ProtoReflect.Descriptor instead.
4459
4736
  func (*FavoritesAction_Favorite) Descriptor() ([]byte, []int) {
4460
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11, 0}
4737
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14, 0}
4461
4738
  }
4462
4739
 
4463
4740
  func (x *FavoritesAction_Favorite) GetID() string {
@@ -4469,183 +4746,576 @@ func (x *FavoritesAction_Favorite) GetID() string {
4469
4746
 
4470
4747
  var File_waSyncAction_WASyncAction_proto protoreflect.FileDescriptor
4471
4748
 
4472
- //go:embed WASyncAction.pb.raw
4473
- var file_waSyncAction_WASyncAction_proto_rawDesc []byte
4749
+ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
4750
+ "\n" +
4751
+ "\x1fwaSyncAction/WASyncAction.proto\x12\fWASyncAction\x1a4waChatLockSettings/WAProtobufsChatLockSettings.proto\x1a8waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto\x1a\x17waCommon/WACommon.proto\"\xc5\b\n" +
4752
+ "\rCallLogRecord\x12F\n" +
4753
+ "\n" +
4754
+ "callResult\x18\x01 \x01(\x0e2&.WASyncAction.CallLogRecord.CallResultR\n" +
4755
+ "callResult\x12\x1c\n" +
4756
+ "\tisDndMode\x18\x02 \x01(\bR\tisDndMode\x12O\n" +
4757
+ "\rsilenceReason\x18\x03 \x01(\x0e2).WASyncAction.CallLogRecord.SilenceReasonR\rsilenceReason\x12\x1a\n" +
4758
+ "\bduration\x18\x04 \x01(\x03R\bduration\x12\x1c\n" +
4759
+ "\tstartTime\x18\x05 \x01(\x03R\tstartTime\x12\x1e\n" +
4760
+ "\n" +
4761
+ "isIncoming\x18\x06 \x01(\bR\n" +
4762
+ "isIncoming\x12\x18\n" +
4763
+ "\aisVideo\x18\a \x01(\bR\aisVideo\x12\x1e\n" +
4764
+ "\n" +
4765
+ "isCallLink\x18\b \x01(\bR\n" +
4766
+ "isCallLink\x12$\n" +
4767
+ "\rcallLinkToken\x18\t \x01(\tR\rcallLinkToken\x12(\n" +
4768
+ "\x0fscheduledCallID\x18\n" +
4769
+ " \x01(\tR\x0fscheduledCallID\x12\x16\n" +
4770
+ "\x06callID\x18\v \x01(\tR\x06callID\x12&\n" +
4771
+ "\x0ecallCreatorJID\x18\f \x01(\tR\x0ecallCreatorJID\x12\x1a\n" +
4772
+ "\bgroupJID\x18\r \x01(\tR\bgroupJID\x12O\n" +
4773
+ "\fparticipants\x18\x0e \x03(\v2+.WASyncAction.CallLogRecord.ParticipantInfoR\fparticipants\x12@\n" +
4774
+ "\bcallType\x18\x0f \x01(\x0e2$.WASyncAction.CallLogRecord.CallTypeR\bcallType\x1as\n" +
4775
+ "\x0fParticipantInfo\x12\x18\n" +
4776
+ "\auserJID\x18\x01 \x01(\tR\auserJID\x12F\n" +
4777
+ "\n" +
4778
+ "callResult\x18\x02 \x01(\x0e2&.WASyncAction.CallLogRecord.CallResultR\n" +
4779
+ "callResult\";\n" +
4780
+ "\bCallType\x12\v\n" +
4781
+ "\aREGULAR\x10\x00\x12\x12\n" +
4782
+ "\x0eSCHEDULED_CALL\x10\x01\x12\x0e\n" +
4783
+ "\n" +
4784
+ "VOICE_CHAT\x10\x02\"F\n" +
4785
+ "\rSilenceReason\x12\b\n" +
4786
+ "\x04NONE\x10\x00\x12\r\n" +
4787
+ "\tSCHEDULED\x10\x01\x12\v\n" +
4788
+ "\aPRIVACY\x10\x02\x12\x0f\n" +
4789
+ "\vLIGHTWEIGHT\x10\x03\"\xaf\x01\n" +
4790
+ "\n" +
4791
+ "CallResult\x12\r\n" +
4792
+ "\tCONNECTED\x10\x00\x12\f\n" +
4793
+ "\bREJECTED\x10\x01\x12\r\n" +
4794
+ "\tCANCELLED\x10\x02\x12\x15\n" +
4795
+ "\x11ACCEPTEDELSEWHERE\x10\x03\x12\n" +
4796
+ "\n" +
4797
+ "\x06MISSED\x10\x04\x12\v\n" +
4798
+ "\aINVALID\x10\x05\x12\x0f\n" +
4799
+ "\vUNAVAILABLE\x10\x06\x12\f\n" +
4800
+ "\bUPCOMING\x10\a\x12\n" +
4801
+ "\n" +
4802
+ "\x06FAILED\x10\b\x12\r\n" +
4803
+ "\tABANDONED\x10\t\x12\v\n" +
4804
+ "\aONGOING\x10\n" +
4805
+ "\"\xa6\x02\n" +
4806
+ "!NotificationActivitySettingAction\x12\x8d\x01\n" +
4807
+ "\x1bnotificationActivitySetting\x18\x01 \x01(\x0e2K.WASyncAction.NotificationActivitySettingAction.NotificationActivitySettingR\x1bnotificationActivitySetting\"q\n" +
4808
+ "\x1bNotificationActivitySetting\x12\x18\n" +
4809
+ "\x14DEFAULT_ALL_MESSAGES\x10\x00\x12\x10\n" +
4810
+ "\fALL_MESSAGES\x10\x01\x12\x0e\n" +
4811
+ "\n" +
4812
+ "HIGHLIGHTS\x10\x02\x12\x16\n" +
4813
+ "\x12DEFAULT_HIGHLIGHTS\x10\x03\"\x99\x01\n" +
4814
+ "\x1cWaffleAccountLinkStateAction\x12Y\n" +
4815
+ "\tlinkState\x18\x02 \x01(\x0e2;.WASyncAction.WaffleAccountLinkStateAction.AccountLinkStateR\tlinkState\"\x1e\n" +
4816
+ "\x10AccountLinkState\x12\n" +
4817
+ "\n" +
4818
+ "\x06ACTIVE\x10\x00\"\xed\x01\n" +
4819
+ "\x1cMerchantPaymentPartnerAction\x12I\n" +
4820
+ "\x06status\x18\x01 \x02(\x0e21.WASyncAction.MerchantPaymentPartnerAction.StatusR\x06status\x12\x18\n" +
4821
+ "\acountry\x18\x02 \x02(\tR\acountry\x12 \n" +
4822
+ "\vgatewayName\x18\x03 \x01(\tR\vgatewayName\x12\"\n" +
4823
+ "\fcredentialID\x18\x04 \x01(\tR\fcredentialID\"\"\n" +
4824
+ "\x06Status\x12\n" +
4825
+ "\n" +
4826
+ "\x06ACTIVE\x10\x00\x12\f\n" +
4827
+ "\bINACTIVE\x10\x01\"\xfd\x01\n" +
4828
+ "\x0eNoteEditAction\x129\n" +
4829
+ "\x04type\x18\x01 \x01(\x0e2%.WASyncAction.NoteEditAction.NoteTypeR\x04type\x12\x18\n" +
4830
+ "\achatJID\x18\x02 \x01(\tR\achatJID\x12\x1c\n" +
4831
+ "\tcreatedAt\x18\x03 \x01(\x03R\tcreatedAt\x12\x18\n" +
4832
+ "\adeleted\x18\x04 \x01(\bR\adeleted\x120\n" +
4833
+ "\x13unstructuredContent\x18\x05 \x01(\tR\x13unstructuredContent\",\n" +
4834
+ "\bNoteType\x12\x10\n" +
4835
+ "\fUNSTRUCTURED\x10\x01\x12\x0e\n" +
4836
+ "\n" +
4837
+ "STRUCTURED\x10\x02\"\xc4\x01\n" +
4838
+ "\x13StatusPrivacyAction\x12L\n" +
4839
+ "\x04mode\x18\x01 \x01(\x0e28.WASyncAction.StatusPrivacyAction.StatusDistributionModeR\x04mode\x12\x18\n" +
4840
+ "\auserJID\x18\x02 \x03(\tR\auserJID\"E\n" +
4841
+ "\x16StatusDistributionMode\x12\x0e\n" +
4842
+ "\n" +
4843
+ "ALLOW_LIST\x10\x00\x12\r\n" +
4844
+ "\tDENY_LIST\x10\x01\x12\f\n" +
4845
+ "\bCONTACTS\x10\x02\"\xc7\x02\n" +
4846
+ "\x16MarketingMessageAction\x12\x12\n" +
4847
+ "\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n" +
4848
+ "\amessage\x18\x02 \x01(\tR\amessage\x12V\n" +
4849
+ "\x04type\x18\x03 \x01(\x0e2B.WASyncAction.MarketingMessageAction.MarketingMessagePrototypeTypeR\x04type\x12\x1c\n" +
4850
+ "\tcreatedAt\x18\x04 \x01(\x03R\tcreatedAt\x12\x1e\n" +
4851
+ "\n" +
4852
+ "lastSentAt\x18\x05 \x01(\x03R\n" +
4853
+ "lastSentAt\x12\x1c\n" +
4854
+ "\tisDeleted\x18\x06 \x01(\bR\tisDeleted\x12\x18\n" +
4855
+ "\amediaID\x18\a \x01(\tR\amediaID\"1\n" +
4856
+ "\x1dMarketingMessagePrototypeType\x12\x10\n" +
4857
+ "\fPERSONALIZED\x10\x00\"\x9e\x01\n" +
4858
+ "\x1bUsernameChatStartModeAction\x12]\n" +
4859
+ "\rchatStartMode\x18\x01 \x01(\x0e27.WASyncAction.UsernameChatStartModeAction.ChatStartModeR\rchatStartMode\" \n" +
4860
+ "\rChatStartMode\x12\a\n" +
4861
+ "\x03LID\x10\x01\x12\x06\n" +
4862
+ "\x02PN\x10\x02\"\x90\x03\n" +
4863
+ "\x0fLabelEditAction\x12\x12\n" +
4864
+ "\x04name\x18\x01 \x01(\tR\x04name\x12\x14\n" +
4865
+ "\x05color\x18\x02 \x01(\x05R\x05color\x12\"\n" +
4866
+ "\fpredefinedID\x18\x03 \x01(\x05R\fpredefinedID\x12\x18\n" +
4867
+ "\adeleted\x18\x04 \x01(\bR\adeleted\x12\x1e\n" +
4868
+ "\n" +
4869
+ "orderIndex\x18\x05 \x01(\x05R\n" +
4870
+ "orderIndex\x12\x1a\n" +
4871
+ "\bisActive\x18\x06 \x01(\bR\bisActive\x12:\n" +
4872
+ "\x04type\x18\a \x01(\x0e2&.WASyncAction.LabelEditAction.ListTypeR\x04type\x12 \n" +
4873
+ "\visImmutable\x18\b \x01(\bR\visImmutable\"{\n" +
4874
+ "\bListType\x12\b\n" +
4875
+ "\x04NONE\x10\x00\x12\n" +
4876
+ "\n" +
4877
+ "\x06UNREAD\x10\x01\x12\n" +
4878
+ "\n" +
4879
+ "\x06GROUPS\x10\x02\x12\r\n" +
4880
+ "\tFAVORITES\x10\x03\x12\x0e\n" +
4881
+ "\n" +
4882
+ "PREDEFINED\x10\x04\x12\n" +
4883
+ "\n" +
4884
+ "\x06CUSTOM\x10\x05\x12\r\n" +
4885
+ "\tCOMMUNITY\x10\x06\x12\x13\n" +
4886
+ "\x0fSERVER_ASSIGNED\x10\a\"\xf8\x04\n" +
4887
+ "\x0ePatchDebugData\x12$\n" +
4888
+ "\rcurrentLthash\x18\x01 \x01(\fR\rcurrentLthash\x12\x1c\n" +
4889
+ "\tnewLthash\x18\x02 \x01(\fR\tnewLthash\x12\"\n" +
4890
+ "\fpatchVersion\x18\x03 \x01(\fR\fpatchVersion\x12&\n" +
4891
+ "\x0ecollectionName\x18\x04 \x01(\fR\x0ecollectionName\x12X\n" +
4892
+ "'firstFourBytesFromAHashOfSnapshotMACKey\x18\x05 \x01(\fR'firstFourBytesFromAHashOfSnapshotMACKey\x12,\n" +
4893
+ "\x11newLthashSubtract\x18\x06 \x01(\fR\x11newLthashSubtract\x12\x1c\n" +
4894
+ "\tnumberAdd\x18\a \x01(\x05R\tnumberAdd\x12\"\n" +
4895
+ "\fnumberRemove\x18\b \x01(\x05R\fnumberRemove\x12&\n" +
4896
+ "\x0enumberOverride\x18\t \x01(\x05R\x0enumberOverride\x12M\n" +
4897
+ "\x0esenderPlatform\x18\n" +
4898
+ " \x01(\x0e2%.WASyncAction.PatchDebugData.PlatformR\x0esenderPlatform\x12(\n" +
4899
+ "\x0fisSenderPrimary\x18\v \x01(\bR\x0fisSenderPrimary\"k\n" +
4900
+ "\bPlatform\x12\v\n" +
4901
+ "\aANDROID\x10\x00\x12\b\n" +
4902
+ "\x04SMBA\x10\x01\x12\n" +
4903
+ "\n" +
4904
+ "\x06IPHONE\x10\x02\x12\b\n" +
4905
+ "\x04SMBI\x10\x03\x12\a\n" +
4906
+ "\x03WEB\x10\x04\x12\a\n" +
4907
+ "\x03UWP\x10\x05\x12\n" +
4908
+ "\n" +
4909
+ "\x06DARWIN\x10\x06\x12\b\n" +
4910
+ "\x04IPAD\x10\a\x12\n" +
4911
+ "\n" +
4912
+ "\x06WEAROS\x10\b\"A\n" +
4913
+ "\x11RecentEmojiWeight\x12\x14\n" +
4914
+ "\x05emoji\x18\x01 \x01(\tR\x05emoji\x12\x16\n" +
4915
+ "\x06weight\x18\x02 \x01(\x02R\x06weight\"\xea%\n" +
4916
+ "\x0fSyncActionValue\x12\x1c\n" +
4917
+ "\ttimestamp\x18\x01 \x01(\x03R\ttimestamp\x128\n" +
4918
+ "\n" +
4919
+ "starAction\x18\x02 \x01(\v2\x18.WASyncAction.StarActionR\n" +
4920
+ "starAction\x12A\n" +
4921
+ "\rcontactAction\x18\x03 \x01(\v2\x1b.WASyncAction.ContactActionR\rcontactAction\x128\n" +
4922
+ "\n" +
4923
+ "muteAction\x18\x04 \x01(\v2\x18.WASyncAction.MuteActionR\n" +
4924
+ "muteAction\x125\n" +
4925
+ "\tpinAction\x18\x05 \x01(\v2\x17.WASyncAction.PinActionR\tpinAction\x12k\n" +
4926
+ "\x1bsecurityNotificationSetting\x18\x06 \x01(\v2).WASyncAction.SecurityNotificationSettingR\x1bsecurityNotificationSetting\x12G\n" +
4927
+ "\x0fpushNameSetting\x18\a \x01(\v2\x1d.WASyncAction.PushNameSettingR\x0fpushNameSetting\x12J\n" +
4928
+ "\x10quickReplyAction\x18\b \x01(\v2\x1e.WASyncAction.QuickReplyActionR\x10quickReplyAction\x12b\n" +
4929
+ "\x18recentEmojiWeightsAction\x18\v \x01(\v2&.WASyncAction.RecentEmojiWeightsActionR\x18recentEmojiWeightsAction\x12G\n" +
4930
+ "\x0flabelEditAction\x18\x0e \x01(\v2\x1d.WASyncAction.LabelEditActionR\x0flabelEditAction\x12\\\n" +
4931
+ "\x16labelAssociationAction\x18\x0f \x01(\v2$.WASyncAction.LabelAssociationActionR\x16labelAssociationAction\x12A\n" +
4932
+ "\rlocaleSetting\x18\x10 \x01(\v2\x1b.WASyncAction.LocaleSettingR\rlocaleSetting\x12M\n" +
4933
+ "\x11archiveChatAction\x18\x11 \x01(\v2\x1f.WASyncAction.ArchiveChatActionR\x11archiveChatAction\x12b\n" +
4934
+ "\x18deleteMessageForMeAction\x18\x12 \x01(\v2&.WASyncAction.DeleteMessageForMeActionR\x18deleteMessageForMeAction\x12A\n" +
4935
+ "\rkeyExpiration\x18\x13 \x01(\v2\x1b.WASyncAction.KeyExpirationR\rkeyExpiration\x12V\n" +
4936
+ "\x14markChatAsReadAction\x18\x14 \x01(\v2\".WASyncAction.MarkChatAsReadActionR\x14markChatAsReadAction\x12G\n" +
4937
+ "\x0fclearChatAction\x18\x15 \x01(\v2\x1d.WASyncAction.ClearChatActionR\x0fclearChatAction\x12J\n" +
4938
+ "\x10deleteChatAction\x18\x16 \x01(\v2\x1e.WASyncAction.DeleteChatActionR\x10deleteChatAction\x12Y\n" +
4939
+ "\x15unarchiveChatsSetting\x18\x17 \x01(\v2#.WASyncAction.UnarchiveChatsSettingR\x15unarchiveChatsSetting\x12D\n" +
4940
+ "\x0eprimaryFeature\x18\x18 \x01(\v2\x1c.WASyncAction.PrimaryFeatureR\x0eprimaryFeature\x12e\n" +
4941
+ "\x19androidUnsupportedActions\x18\x1a \x01(\v2'.WASyncAction.AndroidUnsupportedActionsR\x19androidUnsupportedActions\x12;\n" +
4942
+ "\vagentAction\x18\x1b \x01(\v2\x19.WASyncAction.AgentActionR\vagentAction\x12P\n" +
4943
+ "\x12subscriptionAction\x18\x1c \x01(\v2 .WASyncAction.SubscriptionActionR\x12subscriptionAction\x12V\n" +
4944
+ "\x14userStatusMuteAction\x18\x1d \x01(\v2\".WASyncAction.UserStatusMuteActionR\x14userStatusMuteAction\x12J\n" +
4945
+ "\x10timeFormatAction\x18\x1e \x01(\v2\x1e.WASyncAction.TimeFormatActionR\x10timeFormatAction\x125\n" +
4946
+ "\tnuxAction\x18\x1f \x01(\v2\x17.WASyncAction.NuxActionR\tnuxAction\x12V\n" +
4947
+ "\x14primaryVersionAction\x18 \x01(\v2\".WASyncAction.PrimaryVersionActionR\x14primaryVersionAction\x12A\n" +
4948
+ "\rstickerAction\x18! \x01(\v2\x1b.WASyncAction.StickerActionR\rstickerAction\x12e\n" +
4949
+ "\x19removeRecentStickerAction\x18\" \x01(\v2'.WASyncAction.RemoveRecentStickerActionR\x19removeRecentStickerAction\x12J\n" +
4950
+ "\x0echatAssignment\x18# \x01(\v2\".WASyncAction.ChatAssignmentActionR\x0echatAssignment\x12n\n" +
4951
+ "\x1achatAssignmentOpenedStatus\x18$ \x01(\v2..WASyncAction.ChatAssignmentOpenedStatusActionR\x1achatAssignmentOpenedStatus\x12P\n" +
4952
+ "\x12pnForLidChatAction\x18% \x01(\v2 .WASyncAction.PnForLidChatActionR\x12pnForLidChatAction\x12\\\n" +
4953
+ "\x16marketingMessageAction\x18& \x01(\v2$.WASyncAction.MarketingMessageActionR\x16marketingMessageAction\x12w\n" +
4954
+ "\x1fmarketingMessageBroadcastAction\x18' \x01(\v2-.WASyncAction.MarketingMessageBroadcastActionR\x1fmarketingMessageBroadcastAction\x12Y\n" +
4955
+ "\x15externalWebBetaAction\x18( \x01(\v2#.WASyncAction.ExternalWebBetaActionR\x15externalWebBetaAction\x12k\n" +
4956
+ "\x1bprivacySettingRelayAllCalls\x18) \x01(\v2).WASyncAction.PrivacySettingRelayAllCallsR\x1bprivacySettingRelayAllCalls\x12A\n" +
4957
+ "\rcallLogAction\x18* \x01(\v2\x1b.WASyncAction.CallLogActionR\rcallLogAction\x12G\n" +
4958
+ "\rstatusPrivacy\x18, \x01(\v2!.WASyncAction.StatusPrivacyActionR\rstatusPrivacy\x12_\n" +
4959
+ "\x17botWelcomeRequestAction\x18- \x01(\v2%.WASyncAction.BotWelcomeRequestActionR\x17botWelcomeRequestAction\x12e\n" +
4960
+ "\x17deleteIndividualCallLog\x18. \x01(\v2+.WASyncAction.DeleteIndividualCallLogActionR\x17deleteIndividualCallLog\x12Y\n" +
4961
+ "\x15labelReorderingAction\x18/ \x01(\v2#.WASyncAction.LabelReorderingActionR\x15labelReorderingAction\x12M\n" +
4962
+ "\x11paymentInfoAction\x180 \x01(\v2\x1f.WASyncAction.PaymentInfoActionR\x11paymentInfoAction\x12h\n" +
4963
+ "\x1acustomPaymentMethodsAction\x181 \x01(\v2(.WASyncAction.CustomPaymentMethodsActionR\x1acustomPaymentMethodsAction\x12D\n" +
4964
+ "\x0elockChatAction\x182 \x01(\v2\x1c.WASyncAction.LockChatActionR\x0elockChatAction\x12Y\n" +
4965
+ "\x10chatLockSettings\x183 \x01(\v2-.WAProtobufsChatLockSettings.ChatLockSettingsR\x10chatLockSettings\x12b\n" +
4966
+ "\x18wamoUserIdentifierAction\x184 \x01(\v2&.WASyncAction.WamoUserIdentifierActionR\x18wamoUserIdentifierAction\x12\x8f\x01\n" +
4967
+ "'privacySettingDisableLinkPreviewsAction\x185 \x01(\v25.WASyncAction.PrivacySettingDisableLinkPreviewsActionR'privacySettingDisableLinkPreviewsAction\x12a\n" +
4968
+ "\x12deviceCapabilities\x186 \x01(\v21.WAProtobufsDeviceCapabilities.DeviceCapabilitiesR\x12deviceCapabilities\x12D\n" +
4969
+ "\x0enoteEditAction\x187 \x01(\v2\x1c.WASyncAction.NoteEditActionR\x0enoteEditAction\x12G\n" +
4970
+ "\x0ffavoritesAction\x188 \x01(\v2\x1d.WASyncAction.FavoritesActionR\x0ffavoritesAction\x12n\n" +
4971
+ "\x1cmerchantPaymentPartnerAction\x189 \x01(\v2*.WASyncAction.MerchantPaymentPartnerActionR\x1cmerchantPaymentPartnerAction\x12n\n" +
4972
+ "\x1cwaffleAccountLinkStateAction\x18: \x01(\v2*.WASyncAction.WaffleAccountLinkStateActionR\x1cwaffleAccountLinkStateAction\x12_\n" +
4973
+ "\x15usernameChatStartMode\x18; \x01(\v2).WASyncAction.UsernameChatStartModeActionR\x15usernameChatStartMode\x12}\n" +
4974
+ "!notificationActivitySettingAction\x18< \x01(\v2/.WASyncAction.NotificationActivitySettingActionR!notificationActivitySettingAction\x12J\n" +
4975
+ "\x10lidContactAction\x18= \x01(\v2\x1e.WASyncAction.LidContactActionR\x10lidContactAction\x12z\n" +
4976
+ " ctwaPerCustomerDataSharingAction\x18> \x01(\v2..WASyncAction.CtwaPerCustomerDataSharingActionR ctwaPerCustomerDataSharingAction\"t\n" +
4977
+ " CtwaPerCustomerDataSharingAction\x12P\n" +
4978
+ "#isCtwaPerCustomerDataSharingEnabled\x18\x01 \x01(\bR#isCtwaPerCustomerDataSharingEnabled\"\xa4\x01\n" +
4979
+ "\x10LidContactAction\x12\x1a\n" +
4980
+ "\bfullName\x18\x01 \x01(\tR\bfullName\x12\x1c\n" +
4981
+ "\tfirstName\x18\x02 \x01(\tR\tfirstName\x12\x1a\n" +
4982
+ "\busername\x18\x03 \x01(\tR\busername\x12:\n" +
4983
+ "\x18saveOnPrimaryAddressbook\x18\x04 \x01(\bR\x18saveOnPrimaryAddressbook\"s\n" +
4984
+ "\x0fFavoritesAction\x12D\n" +
4985
+ "\tfavorites\x18\x01 \x03(\v2&.WASyncAction.FavoritesAction.FavoriteR\tfavorites\x1a\x1a\n" +
4986
+ "\bFavorite\x12\x0e\n" +
4987
+ "\x02ID\x18\x01 \x01(\tR\x02ID\"Y\n" +
4988
+ "'PrivacySettingDisableLinkPreviewsAction\x12.\n" +
4989
+ "\x12isPreviewsDisabled\x18\x01 \x01(\bR\x12isPreviewsDisabled\":\n" +
4990
+ "\x18WamoUserIdentifierAction\x12\x1e\n" +
4991
+ "\n" +
4992
+ "identifier\x18\x01 \x01(\tR\n" +
4993
+ "identifier\"(\n" +
4994
+ "\x0eLockChatAction\x12\x16\n" +
4995
+ "\x06locked\x18\x01 \x01(\bR\x06locked\"s\n" +
4996
+ "\x1aCustomPaymentMethodsAction\x12U\n" +
4997
+ "\x14customPaymentMethods\x18\x01 \x03(\v2!.WASyncAction.CustomPaymentMethodR\x14customPaymentMethods\"\xae\x01\n" +
4998
+ "\x13CustomPaymentMethod\x12\"\n" +
4999
+ "\fcredentialID\x18\x01 \x02(\tR\fcredentialID\x12\x18\n" +
5000
+ "\acountry\x18\x02 \x02(\tR\acountry\x12\x12\n" +
5001
+ "\x04type\x18\x03 \x02(\tR\x04type\x12E\n" +
5002
+ "\bmetadata\x18\x04 \x03(\v2).WASyncAction.CustomPaymentMethodMetadataR\bmetadata\"E\n" +
5003
+ "\x1bCustomPaymentMethodMetadata\x12\x10\n" +
5004
+ "\x03key\x18\x01 \x02(\tR\x03key\x12\x14\n" +
5005
+ "\x05value\x18\x02 \x02(\tR\x05value\"%\n" +
5006
+ "\x11PaymentInfoAction\x12\x10\n" +
5007
+ "\x03cpi\x18\x01 \x01(\tR\x03cpi\"?\n" +
5008
+ "\x15LabelReorderingAction\x12&\n" +
5009
+ "\x0esortedLabelIDs\x18\x01 \x03(\x05R\x0esortedLabelIDs\"Y\n" +
5010
+ "\x1dDeleteIndividualCallLogAction\x12\x18\n" +
5011
+ "\apeerJID\x18\x01 \x01(\tR\apeerJID\x12\x1e\n" +
5012
+ "\n" +
5013
+ "isIncoming\x18\x02 \x01(\bR\n" +
5014
+ "isIncoming\"1\n" +
5015
+ "\x17BotWelcomeRequestAction\x12\x16\n" +
5016
+ "\x06isSent\x18\x01 \x01(\bR\x06isSent\"R\n" +
5017
+ "\rCallLogAction\x12A\n" +
5018
+ "\rcallLogRecord\x18\x01 \x01(\v2\x1b.WASyncAction.CallLogRecordR\rcallLogRecord\";\n" +
5019
+ "\x1bPrivacySettingRelayAllCalls\x12\x1c\n" +
5020
+ "\tisEnabled\x18\x01 \x01(\bR\tisEnabled\"1\n" +
5021
+ "\x15ExternalWebBetaAction\x12\x18\n" +
5022
+ "\aisOptIn\x18\x01 \x01(\bR\aisOptIn\"E\n" +
5023
+ "\x1fMarketingMessageBroadcastAction\x12\"\n" +
5024
+ "\frepliedCount\x18\x01 \x01(\x05R\frepliedCount\"*\n" +
5025
+ "\x12PnForLidChatAction\x12\x14\n" +
5026
+ "\x05pnJID\x18\x01 \x01(\tR\x05pnJID\"B\n" +
5027
+ " ChatAssignmentOpenedStatusAction\x12\x1e\n" +
5028
+ "\n" +
5029
+ "chatOpened\x18\x01 \x01(\bR\n" +
5030
+ "chatOpened\"<\n" +
5031
+ "\x14ChatAssignmentAction\x12$\n" +
5032
+ "\rdeviceAgentID\x18\x01 \x01(\tR\rdeviceAgentID\"\xcd\x02\n" +
5033
+ "\rStickerAction\x12\x10\n" +
5034
+ "\x03URL\x18\x01 \x01(\tR\x03URL\x12$\n" +
5035
+ "\rfileEncSHA256\x18\x02 \x01(\fR\rfileEncSHA256\x12\x1a\n" +
5036
+ "\bmediaKey\x18\x03 \x01(\fR\bmediaKey\x12\x1a\n" +
5037
+ "\bmimetype\x18\x04 \x01(\tR\bmimetype\x12\x16\n" +
5038
+ "\x06height\x18\x05 \x01(\rR\x06height\x12\x14\n" +
5039
+ "\x05width\x18\x06 \x01(\rR\x05width\x12\x1e\n" +
5040
+ "\n" +
5041
+ "directPath\x18\a \x01(\tR\n" +
5042
+ "directPath\x12\x1e\n" +
5043
+ "\n" +
5044
+ "fileLength\x18\b \x01(\x04R\n" +
5045
+ "fileLength\x12\x1e\n" +
5046
+ "\n" +
5047
+ "isFavorite\x18\t \x01(\bR\n" +
5048
+ "isFavorite\x12\"\n" +
5049
+ "\fdeviceIDHint\x18\n" +
5050
+ " \x01(\rR\fdeviceIDHint\x12\x1a\n" +
5051
+ "\bisLottie\x18\v \x01(\bR\bisLottie\"I\n" +
5052
+ "\x19RemoveRecentStickerAction\x12,\n" +
5053
+ "\x11lastStickerSentTS\x18\x01 \x01(\x03R\x11lastStickerSentTS\"0\n" +
5054
+ "\x14PrimaryVersionAction\x12\x18\n" +
5055
+ "\aversion\x18\x01 \x01(\tR\aversion\"/\n" +
5056
+ "\tNuxAction\x12\"\n" +
5057
+ "\facknowledged\x18\x01 \x01(\bR\facknowledged\"X\n" +
5058
+ "\x10TimeFormatAction\x12D\n" +
5059
+ "\x1disTwentyFourHourFormatEnabled\x18\x01 \x01(\bR\x1disTwentyFourHourFormatEnabled\",\n" +
5060
+ "\x14UserStatusMuteAction\x12\x14\n" +
5061
+ "\x05muted\x18\x01 \x01(\bR\x05muted\"\x8a\x01\n" +
5062
+ "\x12SubscriptionAction\x12$\n" +
5063
+ "\risDeactivated\x18\x01 \x01(\bR\risDeactivated\x12&\n" +
5064
+ "\x0eisAutoRenewing\x18\x02 \x01(\bR\x0eisAutoRenewing\x12&\n" +
5065
+ "\x0eexpirationDate\x18\x03 \x01(\x03R\x0eexpirationDate\"[\n" +
5066
+ "\vAgentAction\x12\x12\n" +
5067
+ "\x04name\x18\x01 \x01(\tR\x04name\x12\x1a\n" +
5068
+ "\bdeviceID\x18\x02 \x01(\x05R\bdeviceID\x12\x1c\n" +
5069
+ "\tisDeleted\x18\x03 \x01(\bR\tisDeleted\"5\n" +
5070
+ "\x19AndroidUnsupportedActions\x12\x18\n" +
5071
+ "\aallowed\x18\x01 \x01(\bR\aallowed\"&\n" +
5072
+ "\x0ePrimaryFeature\x12\x14\n" +
5073
+ "\x05flags\x18\x01 \x03(\tR\x05flags\"9\n" +
5074
+ "\rKeyExpiration\x12(\n" +
5075
+ "\x0fexpiredKeyEpoch\x18\x01 \x01(\x05R\x0fexpiredKeyEpoch\"Y\n" +
5076
+ "\x11SyncActionMessage\x12&\n" +
5077
+ "\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x12\x1c\n" +
5078
+ "\ttimestamp\x18\x02 \x01(\x03R\ttimestamp\"\xc9\x01\n" +
5079
+ "\x16SyncActionMessageRange\x122\n" +
5080
+ "\x14lastMessageTimestamp\x18\x01 \x01(\x03R\x14lastMessageTimestamp\x12>\n" +
5081
+ "\x1alastSystemMessageTimestamp\x18\x02 \x01(\x03R\x1alastSystemMessageTimestamp\x12;\n" +
5082
+ "\bmessages\x18\x03 \x03(\v2\x1f.WASyncAction.SyncActionMessageR\bmessages\"?\n" +
5083
+ "\x15UnarchiveChatsSetting\x12&\n" +
5084
+ "\x0eunarchiveChats\x18\x01 \x01(\bR\x0eunarchiveChats\"\\\n" +
5085
+ "\x10DeleteChatAction\x12H\n" +
5086
+ "\fmessageRange\x18\x01 \x01(\v2$.WASyncAction.SyncActionMessageRangeR\fmessageRange\"[\n" +
5087
+ "\x0fClearChatAction\x12H\n" +
5088
+ "\fmessageRange\x18\x01 \x01(\v2$.WASyncAction.SyncActionMessageRangeR\fmessageRange\"t\n" +
5089
+ "\x14MarkChatAsReadAction\x12\x12\n" +
5090
+ "\x04read\x18\x01 \x01(\bR\x04read\x12H\n" +
5091
+ "\fmessageRange\x18\x02 \x01(\v2$.WASyncAction.SyncActionMessageRangeR\fmessageRange\"h\n" +
5092
+ "\x18DeleteMessageForMeAction\x12 \n" +
5093
+ "\vdeleteMedia\x18\x01 \x01(\bR\vdeleteMedia\x12*\n" +
5094
+ "\x10messageTimestamp\x18\x02 \x01(\x03R\x10messageTimestamp\"y\n" +
5095
+ "\x11ArchiveChatAction\x12\x1a\n" +
5096
+ "\barchived\x18\x01 \x01(\bR\barchived\x12H\n" +
5097
+ "\fmessageRange\x18\x02 \x01(\v2$.WASyncAction.SyncActionMessageRangeR\fmessageRange\"U\n" +
5098
+ "\x18RecentEmojiWeightsAction\x129\n" +
5099
+ "\aweights\x18\x01 \x03(\v2\x1f.WASyncAction.RecentEmojiWeightR\aweights\"2\n" +
5100
+ "\x16LabelAssociationAction\x12\x18\n" +
5101
+ "\alabeled\x18\x01 \x01(\bR\alabeled\"\x94\x01\n" +
5102
+ "\x10QuickReplyAction\x12\x1a\n" +
5103
+ "\bshortcut\x18\x01 \x01(\tR\bshortcut\x12\x18\n" +
5104
+ "\amessage\x18\x02 \x01(\tR\amessage\x12\x1a\n" +
5105
+ "\bkeywords\x18\x03 \x03(\tR\bkeywords\x12\x14\n" +
5106
+ "\x05count\x18\x04 \x01(\x05R\x05count\x12\x18\n" +
5107
+ "\adeleted\x18\x05 \x01(\bR\adeleted\"'\n" +
5108
+ "\rLocaleSetting\x12\x16\n" +
5109
+ "\x06locale\x18\x01 \x01(\tR\x06locale\"%\n" +
5110
+ "\x0fPushNameSetting\x12\x12\n" +
5111
+ "\x04name\x18\x01 \x01(\tR\x04name\"I\n" +
5112
+ "\x1bSecurityNotificationSetting\x12*\n" +
5113
+ "\x10showNotification\x18\x01 \x01(\bR\x10showNotification\"#\n" +
5114
+ "\tPinAction\x12\x16\n" +
5115
+ "\x06pinned\x18\x01 \x01(\bR\x06pinned\"l\n" +
5116
+ "\n" +
5117
+ "MuteAction\x12\x14\n" +
5118
+ "\x05muted\x18\x01 \x01(\bR\x05muted\x12*\n" +
5119
+ "\x10muteEndTimestamp\x18\x02 \x01(\x03R\x10muteEndTimestamp\x12\x1c\n" +
5120
+ "\tautoMuted\x18\x03 \x01(\bR\tautoMuted\"\xcf\x01\n" +
5121
+ "\rContactAction\x12\x1a\n" +
5122
+ "\bfullName\x18\x01 \x01(\tR\bfullName\x12\x1c\n" +
5123
+ "\tfirstName\x18\x02 \x01(\tR\tfirstName\x12\x16\n" +
5124
+ "\x06lidJID\x18\x03 \x01(\tR\x06lidJID\x12:\n" +
5125
+ "\x18saveOnPrimaryAddressbook\x18\x04 \x01(\bR\x18saveOnPrimaryAddressbook\x12\x14\n" +
5126
+ "\x05pnJID\x18\x05 \x01(\tR\x05pnJID\x12\x1a\n" +
5127
+ "\busername\x18\x06 \x01(\tR\busername\"&\n" +
5128
+ "\n" +
5129
+ "StarAction\x12\x18\n" +
5130
+ "\astarred\x18\x01 \x01(\bR\astarred\"\x8f\x01\n" +
5131
+ "\x0eSyncActionData\x12\x14\n" +
5132
+ "\x05index\x18\x01 \x01(\fR\x05index\x123\n" +
5133
+ "\x05value\x18\x02 \x01(\v2\x1d.WASyncAction.SyncActionValueR\x05value\x12\x18\n" +
5134
+ "\apadding\x18\x03 \x01(\fR\apadding\x12\x18\n" +
5135
+ "\aversion\x18\x04 \x01(\x05R\aversionB(Z&go.mau.fi/whatsmeow/proto/waSyncAction"
4474
5136
 
4475
5137
  var (
4476
5138
  file_waSyncAction_WASyncAction_proto_rawDescOnce sync.Once
4477
- file_waSyncAction_WASyncAction_proto_rawDescData = file_waSyncAction_WASyncAction_proto_rawDesc
5139
+ file_waSyncAction_WASyncAction_proto_rawDescData []byte
4478
5140
  )
4479
5141
 
4480
5142
  func file_waSyncAction_WASyncAction_proto_rawDescGZIP() []byte {
4481
5143
  file_waSyncAction_WASyncAction_proto_rawDescOnce.Do(func() {
4482
- file_waSyncAction_WASyncAction_proto_rawDescData = protoimpl.X.CompressGZIP(file_waSyncAction_WASyncAction_proto_rawDescData)
5144
+ file_waSyncAction_WASyncAction_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waSyncAction_WASyncAction_proto_rawDesc), len(file_waSyncAction_WASyncAction_proto_rawDesc)))
4483
5145
  })
4484
5146
  return file_waSyncAction_WASyncAction_proto_rawDescData
4485
5147
  }
4486
5148
 
4487
- var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 11)
4488
- var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 61)
5149
+ var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 12)
5150
+ var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 64)
4489
5151
  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
5152
+ (CallLogRecord_CallType)(0), // 0: WASyncAction.CallLogRecord.CallType
5153
+ (CallLogRecord_SilenceReason)(0), // 1: WASyncAction.CallLogRecord.SilenceReason
5154
+ (CallLogRecord_CallResult)(0), // 2: WASyncAction.CallLogRecord.CallResult
5155
+ (NotificationActivitySettingAction_NotificationActivitySetting)(0), // 3: WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
5156
+ (WaffleAccountLinkStateAction_AccountLinkState)(0), // 4: WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
5157
+ (MerchantPaymentPartnerAction_Status)(0), // 5: WASyncAction.MerchantPaymentPartnerAction.Status
5158
+ (NoteEditAction_NoteType)(0), // 6: WASyncAction.NoteEditAction.NoteType
5159
+ (StatusPrivacyAction_StatusDistributionMode)(0), // 7: WASyncAction.StatusPrivacyAction.StatusDistributionMode
5160
+ (MarketingMessageAction_MarketingMessagePrototypeType)(0), // 8: WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
5161
+ (UsernameChatStartModeAction_ChatStartMode)(0), // 9: WASyncAction.UsernameChatStartModeAction.ChatStartMode
5162
+ (LabelEditAction_ListType)(0), // 10: WASyncAction.LabelEditAction.ListType
5163
+ (PatchDebugData_Platform)(0), // 11: WASyncAction.PatchDebugData.Platform
5164
+ (*CallLogRecord)(nil), // 12: WASyncAction.CallLogRecord
5165
+ (*NotificationActivitySettingAction)(nil), // 13: WASyncAction.NotificationActivitySettingAction
5166
+ (*WaffleAccountLinkStateAction)(nil), // 14: WASyncAction.WaffleAccountLinkStateAction
5167
+ (*MerchantPaymentPartnerAction)(nil), // 15: WASyncAction.MerchantPaymentPartnerAction
5168
+ (*NoteEditAction)(nil), // 16: WASyncAction.NoteEditAction
5169
+ (*StatusPrivacyAction)(nil), // 17: WASyncAction.StatusPrivacyAction
5170
+ (*MarketingMessageAction)(nil), // 18: WASyncAction.MarketingMessageAction
5171
+ (*UsernameChatStartModeAction)(nil), // 19: WASyncAction.UsernameChatStartModeAction
5172
+ (*LabelEditAction)(nil), // 20: WASyncAction.LabelEditAction
5173
+ (*PatchDebugData)(nil), // 21: WASyncAction.PatchDebugData
5174
+ (*RecentEmojiWeight)(nil), // 22: WASyncAction.RecentEmojiWeight
5175
+ (*SyncActionValue)(nil), // 23: WASyncAction.SyncActionValue
5176
+ (*CtwaPerCustomerDataSharingAction)(nil), // 24: WASyncAction.CtwaPerCustomerDataSharingAction
5177
+ (*LidContactAction)(nil), // 25: WASyncAction.LidContactAction
5178
+ (*FavoritesAction)(nil), // 26: WASyncAction.FavoritesAction
5179
+ (*PrivacySettingDisableLinkPreviewsAction)(nil), // 27: WASyncAction.PrivacySettingDisableLinkPreviewsAction
5180
+ (*WamoUserIdentifierAction)(nil), // 28: WASyncAction.WamoUserIdentifierAction
5181
+ (*LockChatAction)(nil), // 29: WASyncAction.LockChatAction
5182
+ (*CustomPaymentMethodsAction)(nil), // 30: WASyncAction.CustomPaymentMethodsAction
5183
+ (*CustomPaymentMethod)(nil), // 31: WASyncAction.CustomPaymentMethod
5184
+ (*CustomPaymentMethodMetadata)(nil), // 32: WASyncAction.CustomPaymentMethodMetadata
5185
+ (*PaymentInfoAction)(nil), // 33: WASyncAction.PaymentInfoAction
5186
+ (*LabelReorderingAction)(nil), // 34: WASyncAction.LabelReorderingAction
5187
+ (*DeleteIndividualCallLogAction)(nil), // 35: WASyncAction.DeleteIndividualCallLogAction
5188
+ (*BotWelcomeRequestAction)(nil), // 36: WASyncAction.BotWelcomeRequestAction
5189
+ (*CallLogAction)(nil), // 37: WASyncAction.CallLogAction
5190
+ (*PrivacySettingRelayAllCalls)(nil), // 38: WASyncAction.PrivacySettingRelayAllCalls
5191
+ (*ExternalWebBetaAction)(nil), // 39: WASyncAction.ExternalWebBetaAction
5192
+ (*MarketingMessageBroadcastAction)(nil), // 40: WASyncAction.MarketingMessageBroadcastAction
5193
+ (*PnForLidChatAction)(nil), // 41: WASyncAction.PnForLidChatAction
5194
+ (*ChatAssignmentOpenedStatusAction)(nil), // 42: WASyncAction.ChatAssignmentOpenedStatusAction
5195
+ (*ChatAssignmentAction)(nil), // 43: WASyncAction.ChatAssignmentAction
5196
+ (*StickerAction)(nil), // 44: WASyncAction.StickerAction
5197
+ (*RemoveRecentStickerAction)(nil), // 45: WASyncAction.RemoveRecentStickerAction
5198
+ (*PrimaryVersionAction)(nil), // 46: WASyncAction.PrimaryVersionAction
5199
+ (*NuxAction)(nil), // 47: WASyncAction.NuxAction
5200
+ (*TimeFormatAction)(nil), // 48: WASyncAction.TimeFormatAction
5201
+ (*UserStatusMuteAction)(nil), // 49: WASyncAction.UserStatusMuteAction
5202
+ (*SubscriptionAction)(nil), // 50: WASyncAction.SubscriptionAction
5203
+ (*AgentAction)(nil), // 51: WASyncAction.AgentAction
5204
+ (*AndroidUnsupportedActions)(nil), // 52: WASyncAction.AndroidUnsupportedActions
5205
+ (*PrimaryFeature)(nil), // 53: WASyncAction.PrimaryFeature
5206
+ (*KeyExpiration)(nil), // 54: WASyncAction.KeyExpiration
5207
+ (*SyncActionMessage)(nil), // 55: WASyncAction.SyncActionMessage
5208
+ (*SyncActionMessageRange)(nil), // 56: WASyncAction.SyncActionMessageRange
5209
+ (*UnarchiveChatsSetting)(nil), // 57: WASyncAction.UnarchiveChatsSetting
5210
+ (*DeleteChatAction)(nil), // 58: WASyncAction.DeleteChatAction
5211
+ (*ClearChatAction)(nil), // 59: WASyncAction.ClearChatAction
5212
+ (*MarkChatAsReadAction)(nil), // 60: WASyncAction.MarkChatAsReadAction
5213
+ (*DeleteMessageForMeAction)(nil), // 61: WASyncAction.DeleteMessageForMeAction
5214
+ (*ArchiveChatAction)(nil), // 62: WASyncAction.ArchiveChatAction
5215
+ (*RecentEmojiWeightsAction)(nil), // 63: WASyncAction.RecentEmojiWeightsAction
5216
+ (*LabelAssociationAction)(nil), // 64: WASyncAction.LabelAssociationAction
5217
+ (*QuickReplyAction)(nil), // 65: WASyncAction.QuickReplyAction
5218
+ (*LocaleSetting)(nil), // 66: WASyncAction.LocaleSetting
5219
+ (*PushNameSetting)(nil), // 67: WASyncAction.PushNameSetting
5220
+ (*SecurityNotificationSetting)(nil), // 68: WASyncAction.SecurityNotificationSetting
5221
+ (*PinAction)(nil), // 69: WASyncAction.PinAction
5222
+ (*MuteAction)(nil), // 70: WASyncAction.MuteAction
5223
+ (*ContactAction)(nil), // 71: WASyncAction.ContactAction
5224
+ (*StarAction)(nil), // 72: WASyncAction.StarAction
5225
+ (*SyncActionData)(nil), // 73: WASyncAction.SyncActionData
5226
+ (*CallLogRecord_ParticipantInfo)(nil), // 74: WASyncAction.CallLogRecord.ParticipantInfo
5227
+ (*FavoritesAction_Favorite)(nil), // 75: WASyncAction.FavoritesAction.Favorite
5228
+ (*waChatLockSettings.ChatLockSettings)(nil), // 76: WAProtobufsChatLockSettings.ChatLockSettings
5229
+ (*waDeviceCapabilities.DeviceCapabilities)(nil), // 77: WAProtobufsDeviceCapabilities.DeviceCapabilities
5230
+ (*waCommon.MessageKey)(nil), // 78: WACommon.MessageKey
4565
5231
  }
4566
5232
  var file_waSyncAction_WASyncAction_proto_depIdxs = []int32{
4567
5233
  2, // 0: WASyncAction.CallLogRecord.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
4568
5234
  1, // 1: WASyncAction.CallLogRecord.silenceReason:type_name -> WASyncAction.CallLogRecord.SilenceReason
4569
- 70, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
5235
+ 74, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
4570
5236
  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
5237
+ 3, // 4: WASyncAction.NotificationActivitySettingAction.notificationActivitySetting:type_name -> WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
5238
+ 4, // 5: WASyncAction.WaffleAccountLinkStateAction.linkState:type_name -> WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
5239
+ 5, // 6: WASyncAction.MerchantPaymentPartnerAction.status:type_name -> WASyncAction.MerchantPaymentPartnerAction.Status
5240
+ 6, // 7: WASyncAction.NoteEditAction.type:type_name -> WASyncAction.NoteEditAction.NoteType
5241
+ 7, // 8: WASyncAction.StatusPrivacyAction.mode:type_name -> WASyncAction.StatusPrivacyAction.StatusDistributionMode
5242
+ 8, // 9: WASyncAction.MarketingMessageAction.type:type_name -> WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
5243
+ 9, // 10: WASyncAction.UsernameChatStartModeAction.chatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction.ChatStartMode
5244
+ 10, // 11: WASyncAction.LabelEditAction.type:type_name -> WASyncAction.LabelEditAction.ListType
5245
+ 11, // 12: WASyncAction.PatchDebugData.senderPlatform:type_name -> WASyncAction.PatchDebugData.Platform
5246
+ 72, // 13: WASyncAction.SyncActionValue.starAction:type_name -> WASyncAction.StarAction
5247
+ 71, // 14: WASyncAction.SyncActionValue.contactAction:type_name -> WASyncAction.ContactAction
5248
+ 70, // 15: WASyncAction.SyncActionValue.muteAction:type_name -> WASyncAction.MuteAction
5249
+ 69, // 16: WASyncAction.SyncActionValue.pinAction:type_name -> WASyncAction.PinAction
5250
+ 68, // 17: WASyncAction.SyncActionValue.securityNotificationSetting:type_name -> WASyncAction.SecurityNotificationSetting
5251
+ 67, // 18: WASyncAction.SyncActionValue.pushNameSetting:type_name -> WASyncAction.PushNameSetting
5252
+ 65, // 19: WASyncAction.SyncActionValue.quickReplyAction:type_name -> WASyncAction.QuickReplyAction
5253
+ 63, // 20: WASyncAction.SyncActionValue.recentEmojiWeightsAction:type_name -> WASyncAction.RecentEmojiWeightsAction
5254
+ 20, // 21: WASyncAction.SyncActionValue.labelEditAction:type_name -> WASyncAction.LabelEditAction
5255
+ 64, // 22: WASyncAction.SyncActionValue.labelAssociationAction:type_name -> WASyncAction.LabelAssociationAction
5256
+ 66, // 23: WASyncAction.SyncActionValue.localeSetting:type_name -> WASyncAction.LocaleSetting
5257
+ 62, // 24: WASyncAction.SyncActionValue.archiveChatAction:type_name -> WASyncAction.ArchiveChatAction
5258
+ 61, // 25: WASyncAction.SyncActionValue.deleteMessageForMeAction:type_name -> WASyncAction.DeleteMessageForMeAction
5259
+ 54, // 26: WASyncAction.SyncActionValue.keyExpiration:type_name -> WASyncAction.KeyExpiration
5260
+ 60, // 27: WASyncAction.SyncActionValue.markChatAsReadAction:type_name -> WASyncAction.MarkChatAsReadAction
5261
+ 59, // 28: WASyncAction.SyncActionValue.clearChatAction:type_name -> WASyncAction.ClearChatAction
5262
+ 58, // 29: WASyncAction.SyncActionValue.deleteChatAction:type_name -> WASyncAction.DeleteChatAction
5263
+ 57, // 30: WASyncAction.SyncActionValue.unarchiveChatsSetting:type_name -> WASyncAction.UnarchiveChatsSetting
5264
+ 53, // 31: WASyncAction.SyncActionValue.primaryFeature:type_name -> WASyncAction.PrimaryFeature
5265
+ 52, // 32: WASyncAction.SyncActionValue.androidUnsupportedActions:type_name -> WASyncAction.AndroidUnsupportedActions
5266
+ 51, // 33: WASyncAction.SyncActionValue.agentAction:type_name -> WASyncAction.AgentAction
5267
+ 50, // 34: WASyncAction.SyncActionValue.subscriptionAction:type_name -> WASyncAction.SubscriptionAction
5268
+ 49, // 35: WASyncAction.SyncActionValue.userStatusMuteAction:type_name -> WASyncAction.UserStatusMuteAction
5269
+ 48, // 36: WASyncAction.SyncActionValue.timeFormatAction:type_name -> WASyncAction.TimeFormatAction
5270
+ 47, // 37: WASyncAction.SyncActionValue.nuxAction:type_name -> WASyncAction.NuxAction
5271
+ 46, // 38: WASyncAction.SyncActionValue.primaryVersionAction:type_name -> WASyncAction.PrimaryVersionAction
5272
+ 44, // 39: WASyncAction.SyncActionValue.stickerAction:type_name -> WASyncAction.StickerAction
5273
+ 45, // 40: WASyncAction.SyncActionValue.removeRecentStickerAction:type_name -> WASyncAction.RemoveRecentStickerAction
5274
+ 43, // 41: WASyncAction.SyncActionValue.chatAssignment:type_name -> WASyncAction.ChatAssignmentAction
5275
+ 42, // 42: WASyncAction.SyncActionValue.chatAssignmentOpenedStatus:type_name -> WASyncAction.ChatAssignmentOpenedStatusAction
5276
+ 41, // 43: WASyncAction.SyncActionValue.pnForLidChatAction:type_name -> WASyncAction.PnForLidChatAction
5277
+ 18, // 44: WASyncAction.SyncActionValue.marketingMessageAction:type_name -> WASyncAction.MarketingMessageAction
5278
+ 40, // 45: WASyncAction.SyncActionValue.marketingMessageBroadcastAction:type_name -> WASyncAction.MarketingMessageBroadcastAction
5279
+ 39, // 46: WASyncAction.SyncActionValue.externalWebBetaAction:type_name -> WASyncAction.ExternalWebBetaAction
5280
+ 38, // 47: WASyncAction.SyncActionValue.privacySettingRelayAllCalls:type_name -> WASyncAction.PrivacySettingRelayAllCalls
5281
+ 37, // 48: WASyncAction.SyncActionValue.callLogAction:type_name -> WASyncAction.CallLogAction
5282
+ 17, // 49: WASyncAction.SyncActionValue.statusPrivacy:type_name -> WASyncAction.StatusPrivacyAction
5283
+ 36, // 50: WASyncAction.SyncActionValue.botWelcomeRequestAction:type_name -> WASyncAction.BotWelcomeRequestAction
5284
+ 35, // 51: WASyncAction.SyncActionValue.deleteIndividualCallLog:type_name -> WASyncAction.DeleteIndividualCallLogAction
5285
+ 34, // 52: WASyncAction.SyncActionValue.labelReorderingAction:type_name -> WASyncAction.LabelReorderingAction
5286
+ 33, // 53: WASyncAction.SyncActionValue.paymentInfoAction:type_name -> WASyncAction.PaymentInfoAction
5287
+ 30, // 54: WASyncAction.SyncActionValue.customPaymentMethodsAction:type_name -> WASyncAction.CustomPaymentMethodsAction
5288
+ 29, // 55: WASyncAction.SyncActionValue.lockChatAction:type_name -> WASyncAction.LockChatAction
5289
+ 76, // 56: WASyncAction.SyncActionValue.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
5290
+ 28, // 57: WASyncAction.SyncActionValue.wamoUserIdentifierAction:type_name -> WASyncAction.WamoUserIdentifierAction
5291
+ 27, // 58: WASyncAction.SyncActionValue.privacySettingDisableLinkPreviewsAction:type_name -> WASyncAction.PrivacySettingDisableLinkPreviewsAction
5292
+ 77, // 59: WASyncAction.SyncActionValue.deviceCapabilities:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities
5293
+ 16, // 60: WASyncAction.SyncActionValue.noteEditAction:type_name -> WASyncAction.NoteEditAction
5294
+ 26, // 61: WASyncAction.SyncActionValue.favoritesAction:type_name -> WASyncAction.FavoritesAction
5295
+ 15, // 62: WASyncAction.SyncActionValue.merchantPaymentPartnerAction:type_name -> WASyncAction.MerchantPaymentPartnerAction
5296
+ 14, // 63: WASyncAction.SyncActionValue.waffleAccountLinkStateAction:type_name -> WASyncAction.WaffleAccountLinkStateAction
5297
+ 19, // 64: WASyncAction.SyncActionValue.usernameChatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction
5298
+ 13, // 65: WASyncAction.SyncActionValue.notificationActivitySettingAction:type_name -> WASyncAction.NotificationActivitySettingAction
5299
+ 25, // 66: WASyncAction.SyncActionValue.lidContactAction:type_name -> WASyncAction.LidContactAction
5300
+ 24, // 67: WASyncAction.SyncActionValue.ctwaPerCustomerDataSharingAction:type_name -> WASyncAction.CtwaPerCustomerDataSharingAction
5301
+ 75, // 68: WASyncAction.FavoritesAction.favorites:type_name -> WASyncAction.FavoritesAction.Favorite
5302
+ 31, // 69: WASyncAction.CustomPaymentMethodsAction.customPaymentMethods:type_name -> WASyncAction.CustomPaymentMethod
5303
+ 32, // 70: WASyncAction.CustomPaymentMethod.metadata:type_name -> WASyncAction.CustomPaymentMethodMetadata
5304
+ 12, // 71: WASyncAction.CallLogAction.callLogRecord:type_name -> WASyncAction.CallLogRecord
5305
+ 78, // 72: WASyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
5306
+ 55, // 73: WASyncAction.SyncActionMessageRange.messages:type_name -> WASyncAction.SyncActionMessage
5307
+ 56, // 74: WASyncAction.DeleteChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5308
+ 56, // 75: WASyncAction.ClearChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5309
+ 56, // 76: WASyncAction.MarkChatAsReadAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5310
+ 56, // 77: WASyncAction.ArchiveChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5311
+ 22, // 78: WASyncAction.RecentEmojiWeightsAction.weights:type_name -> WASyncAction.RecentEmojiWeight
5312
+ 23, // 79: WASyncAction.SyncActionData.value:type_name -> WASyncAction.SyncActionValue
5313
+ 2, // 80: WASyncAction.CallLogRecord.ParticipantInfo.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
5314
+ 81, // [81:81] is the sub-list for method output_type
5315
+ 81, // [81:81] is the sub-list for method input_type
5316
+ 81, // [81:81] is the sub-list for extension type_name
5317
+ 81, // [81:81] is the sub-list for extension extendee
5318
+ 0, // [0:81] is the sub-list for field type_name
4649
5319
  }
4650
5320
 
4651
5321
  func init() { file_waSyncAction_WASyncAction_proto_init() }
@@ -4657,9 +5327,9 @@ func file_waSyncAction_WASyncAction_proto_init() {
4657
5327
  out := protoimpl.TypeBuilder{
4658
5328
  File: protoimpl.DescBuilder{
4659
5329
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
4660
- RawDescriptor: file_waSyncAction_WASyncAction_proto_rawDesc,
4661
- NumEnums: 11,
4662
- NumMessages: 61,
5330
+ RawDescriptor: unsafe.Slice(unsafe.StringData(file_waSyncAction_WASyncAction_proto_rawDesc), len(file_waSyncAction_WASyncAction_proto_rawDesc)),
5331
+ NumEnums: 12,
5332
+ NumMessages: 64,
4663
5333
  NumExtensions: 0,
4664
5334
  NumServices: 0,
4665
5335
  },
@@ -4669,7 +5339,6 @@ func file_waSyncAction_WASyncAction_proto_init() {
4669
5339
  MessageInfos: file_waSyncAction_WASyncAction_proto_msgTypes,
4670
5340
  }.Build()
4671
5341
  File_waSyncAction_WASyncAction_proto = out.File
4672
- file_waSyncAction_WASyncAction_proto_rawDesc = nil
4673
5342
  file_waSyncAction_WASyncAction_proto_goTypes = nil
4674
5343
  file_waSyncAction_WASyncAction_proto_depIdxs = nil
4675
5344
  }