slidge-whatsapp 0.2.5__cp312-cp312-manylinux_2_36_aarch64.whl → 0.2.6__cp312-cp312-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-312-aarch64-linux-gnu.h +169 -169
  6. slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.so +0 -0
  7. slidge_whatsapp/generated/build.py +135 -135
  8. slidge_whatsapp/generated/whatsapp.c +1455 -1455
  9. slidge_whatsapp/generated/whatsapp.go +737 -737
  10. slidge_whatsapp/generated/whatsapp.py +1038 -1038
  11. slidge_whatsapp/generated/whatsapp_go.h +169 -169
  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: waHistorySync/WAWebProtobufsHistorySync.proto
6
6
 
@@ -9,16 +9,16 @@ package waHistorySync
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"
15
16
 
16
17
  waChatLockSettings "go.mau.fi/whatsmeow/proto/waChatLockSettings"
18
+ waCommon "go.mau.fi/whatsmeow/proto/waCommon"
17
19
  waE2E "go.mau.fi/whatsmeow/proto/waE2E"
18
20
  waSyncAction "go.mau.fi/whatsmeow/proto/waSyncAction"
19
21
  waWeb "go.mau.fi/whatsmeow/proto/waWeb"
20
-
21
- _ "embed"
22
22
  )
23
23
 
24
24
  const (
@@ -465,6 +465,7 @@ type HistorySync struct {
465
465
  PhoneNumberToLidMappings []*PhoneNumberToLIDMapping `protobuf:"bytes,15,rep,name=phoneNumberToLidMappings" json:"phoneNumberToLidMappings,omitempty"`
466
466
  CompanionMetaNonce *string `protobuf:"bytes,16,opt,name=companionMetaNonce" json:"companionMetaNonce,omitempty"`
467
467
  ShareableChatIdentifierEncryptionKey []byte `protobuf:"bytes,17,opt,name=shareableChatIdentifierEncryptionKey" json:"shareableChatIdentifierEncryptionKey,omitempty"`
468
+ Accounts []*Account `protobuf:"bytes,18,rep,name=accounts" json:"accounts,omitempty"`
468
469
  unknownFields protoimpl.UnknownFields
469
470
  sizeCache protoimpl.SizeCache
470
471
  }
@@ -611,59 +612,70 @@ func (x *HistorySync) GetShareableChatIdentifierEncryptionKey() []byte {
611
612
  return nil
612
613
  }
613
614
 
615
+ func (x *HistorySync) GetAccounts() []*Account {
616
+ if x != nil {
617
+ return x.Accounts
618
+ }
619
+ return nil
620
+ }
621
+
614
622
  type Conversation struct {
615
- state protoimpl.MessageState `protogen:"open.v1"`
616
- ID *string `protobuf:"bytes,1,req,name=ID" json:"ID,omitempty"`
617
- Messages []*HistorySyncMsg `protobuf:"bytes,2,rep,name=messages" json:"messages,omitempty"`
618
- NewJID *string `protobuf:"bytes,3,opt,name=newJID" json:"newJID,omitempty"`
619
- OldJID *string `protobuf:"bytes,4,opt,name=oldJID" json:"oldJID,omitempty"`
620
- LastMsgTimestamp *uint64 `protobuf:"varint,5,opt,name=lastMsgTimestamp" json:"lastMsgTimestamp,omitempty"`
621
- UnreadCount *uint32 `protobuf:"varint,6,opt,name=unreadCount" json:"unreadCount,omitempty"`
622
- ReadOnly *bool `protobuf:"varint,7,opt,name=readOnly" json:"readOnly,omitempty"`
623
- EndOfHistoryTransfer *bool `protobuf:"varint,8,opt,name=endOfHistoryTransfer" json:"endOfHistoryTransfer,omitempty"`
624
- EphemeralExpiration *uint32 `protobuf:"varint,9,opt,name=ephemeralExpiration" json:"ephemeralExpiration,omitempty"`
625
- EphemeralSettingTimestamp *int64 `protobuf:"varint,10,opt,name=ephemeralSettingTimestamp" json:"ephemeralSettingTimestamp,omitempty"`
626
- EndOfHistoryTransferType *Conversation_EndOfHistoryTransferType `protobuf:"varint,11,opt,name=endOfHistoryTransferType,enum=WAWebProtobufsHistorySync.Conversation_EndOfHistoryTransferType" json:"endOfHistoryTransferType,omitempty"`
627
- ConversationTimestamp *uint64 `protobuf:"varint,12,opt,name=conversationTimestamp" json:"conversationTimestamp,omitempty"`
628
- Name *string `protobuf:"bytes,13,opt,name=name" json:"name,omitempty"`
629
- PHash *string `protobuf:"bytes,14,opt,name=pHash" json:"pHash,omitempty"`
630
- NotSpam *bool `protobuf:"varint,15,opt,name=notSpam" json:"notSpam,omitempty"`
631
- Archived *bool `protobuf:"varint,16,opt,name=archived" json:"archived,omitempty"`
632
- DisappearingMode *waE2E.DisappearingMode `protobuf:"bytes,17,opt,name=disappearingMode" json:"disappearingMode,omitempty"`
633
- UnreadMentionCount *uint32 `protobuf:"varint,18,opt,name=unreadMentionCount" json:"unreadMentionCount,omitempty"`
634
- MarkedAsUnread *bool `protobuf:"varint,19,opt,name=markedAsUnread" json:"markedAsUnread,omitempty"`
635
- Participant []*GroupParticipant `protobuf:"bytes,20,rep,name=participant" json:"participant,omitempty"`
636
- TcToken []byte `protobuf:"bytes,21,opt,name=tcToken" json:"tcToken,omitempty"`
637
- TcTokenTimestamp *uint64 `protobuf:"varint,22,opt,name=tcTokenTimestamp" json:"tcTokenTimestamp,omitempty"`
638
- ContactPrimaryIdentityKey []byte `protobuf:"bytes,23,opt,name=contactPrimaryIdentityKey" json:"contactPrimaryIdentityKey,omitempty"`
639
- Pinned *uint32 `protobuf:"varint,24,opt,name=pinned" json:"pinned,omitempty"`
640
- MuteEndTime *uint64 `protobuf:"varint,25,opt,name=muteEndTime" json:"muteEndTime,omitempty"`
641
- Wallpaper *WallpaperSettings `protobuf:"bytes,26,opt,name=wallpaper" json:"wallpaper,omitempty"`
642
- MediaVisibility *MediaVisibility `protobuf:"varint,27,opt,name=mediaVisibility,enum=WAWebProtobufsHistorySync.MediaVisibility" json:"mediaVisibility,omitempty"`
643
- TcTokenSenderTimestamp *uint64 `protobuf:"varint,28,opt,name=tcTokenSenderTimestamp" json:"tcTokenSenderTimestamp,omitempty"`
644
- Suspended *bool `protobuf:"varint,29,opt,name=suspended" json:"suspended,omitempty"`
645
- Terminated *bool `protobuf:"varint,30,opt,name=terminated" json:"terminated,omitempty"`
646
- CreatedAt *uint64 `protobuf:"varint,31,opt,name=createdAt" json:"createdAt,omitempty"`
647
- CreatedBy *string `protobuf:"bytes,32,opt,name=createdBy" json:"createdBy,omitempty"`
648
- Description *string `protobuf:"bytes,33,opt,name=description" json:"description,omitempty"`
649
- Support *bool `protobuf:"varint,34,opt,name=support" json:"support,omitempty"`
650
- IsParentGroup *bool `protobuf:"varint,35,opt,name=isParentGroup" json:"isParentGroup,omitempty"`
651
- ParentGroupID *string `protobuf:"bytes,37,opt,name=parentGroupID" json:"parentGroupID,omitempty"`
652
- IsDefaultSubgroup *bool `protobuf:"varint,36,opt,name=isDefaultSubgroup" json:"isDefaultSubgroup,omitempty"`
653
- DisplayName *string `protobuf:"bytes,38,opt,name=displayName" json:"displayName,omitempty"`
654
- PnJID *string `protobuf:"bytes,39,opt,name=pnJID" json:"pnJID,omitempty"`
655
- ShareOwnPn *bool `protobuf:"varint,40,opt,name=shareOwnPn" json:"shareOwnPn,omitempty"`
656
- PnhDuplicateLidThread *bool `protobuf:"varint,41,opt,name=pnhDuplicateLidThread" json:"pnhDuplicateLidThread,omitempty"`
657
- LidJID *string `protobuf:"bytes,42,opt,name=lidJID" json:"lidJID,omitempty"`
658
- Username *string `protobuf:"bytes,43,opt,name=username" json:"username,omitempty"`
659
- LidOriginType *string `protobuf:"bytes,44,opt,name=lidOriginType" json:"lidOriginType,omitempty"`
660
- CommentsCount *uint32 `protobuf:"varint,45,opt,name=commentsCount" json:"commentsCount,omitempty"`
661
- Locked *bool `protobuf:"varint,46,opt,name=locked" json:"locked,omitempty"`
662
- SystemMessageToInsert *PrivacySystemMessage `protobuf:"varint,47,opt,name=systemMessageToInsert,enum=WAWebProtobufsHistorySync.PrivacySystemMessage" json:"systemMessageToInsert,omitempty"`
663
- CapiCreatedGroup *bool `protobuf:"varint,48,opt,name=capiCreatedGroup" json:"capiCreatedGroup,omitempty"`
664
- AccountLid *string `protobuf:"bytes,49,opt,name=accountLid" json:"accountLid,omitempty"`
665
- unknownFields protoimpl.UnknownFields
666
- sizeCache protoimpl.SizeCache
623
+ state protoimpl.MessageState `protogen:"open.v1"`
624
+ ID *string `protobuf:"bytes,1,req,name=ID" json:"ID,omitempty"`
625
+ Messages []*HistorySyncMsg `protobuf:"bytes,2,rep,name=messages" json:"messages,omitempty"`
626
+ NewJID *string `protobuf:"bytes,3,opt,name=newJID" json:"newJID,omitempty"`
627
+ OldJID *string `protobuf:"bytes,4,opt,name=oldJID" json:"oldJID,omitempty"`
628
+ LastMsgTimestamp *uint64 `protobuf:"varint,5,opt,name=lastMsgTimestamp" json:"lastMsgTimestamp,omitempty"`
629
+ UnreadCount *uint32 `protobuf:"varint,6,opt,name=unreadCount" json:"unreadCount,omitempty"`
630
+ ReadOnly *bool `protobuf:"varint,7,opt,name=readOnly" json:"readOnly,omitempty"`
631
+ EndOfHistoryTransfer *bool `protobuf:"varint,8,opt,name=endOfHistoryTransfer" json:"endOfHistoryTransfer,omitempty"`
632
+ EphemeralExpiration *uint32 `protobuf:"varint,9,opt,name=ephemeralExpiration" json:"ephemeralExpiration,omitempty"`
633
+ EphemeralSettingTimestamp *int64 `protobuf:"varint,10,opt,name=ephemeralSettingTimestamp" json:"ephemeralSettingTimestamp,omitempty"`
634
+ EndOfHistoryTransferType *Conversation_EndOfHistoryTransferType `protobuf:"varint,11,opt,name=endOfHistoryTransferType,enum=WAWebProtobufsHistorySync.Conversation_EndOfHistoryTransferType" json:"endOfHistoryTransferType,omitempty"`
635
+ ConversationTimestamp *uint64 `protobuf:"varint,12,opt,name=conversationTimestamp" json:"conversationTimestamp,omitempty"`
636
+ Name *string `protobuf:"bytes,13,opt,name=name" json:"name,omitempty"`
637
+ PHash *string `protobuf:"bytes,14,opt,name=pHash" json:"pHash,omitempty"`
638
+ NotSpam *bool `protobuf:"varint,15,opt,name=notSpam" json:"notSpam,omitempty"`
639
+ Archived *bool `protobuf:"varint,16,opt,name=archived" json:"archived,omitempty"`
640
+ DisappearingMode *waE2E.DisappearingMode `protobuf:"bytes,17,opt,name=disappearingMode" json:"disappearingMode,omitempty"`
641
+ UnreadMentionCount *uint32 `protobuf:"varint,18,opt,name=unreadMentionCount" json:"unreadMentionCount,omitempty"`
642
+ MarkedAsUnread *bool `protobuf:"varint,19,opt,name=markedAsUnread" json:"markedAsUnread,omitempty"`
643
+ Participant []*GroupParticipant `protobuf:"bytes,20,rep,name=participant" json:"participant,omitempty"`
644
+ TcToken []byte `protobuf:"bytes,21,opt,name=tcToken" json:"tcToken,omitempty"`
645
+ TcTokenTimestamp *uint64 `protobuf:"varint,22,opt,name=tcTokenTimestamp" json:"tcTokenTimestamp,omitempty"`
646
+ ContactPrimaryIdentityKey []byte `protobuf:"bytes,23,opt,name=contactPrimaryIdentityKey" json:"contactPrimaryIdentityKey,omitempty"`
647
+ Pinned *uint32 `protobuf:"varint,24,opt,name=pinned" json:"pinned,omitempty"`
648
+ MuteEndTime *uint64 `protobuf:"varint,25,opt,name=muteEndTime" json:"muteEndTime,omitempty"`
649
+ Wallpaper *WallpaperSettings `protobuf:"bytes,26,opt,name=wallpaper" json:"wallpaper,omitempty"`
650
+ MediaVisibility *MediaVisibility `protobuf:"varint,27,opt,name=mediaVisibility,enum=WAWebProtobufsHistorySync.MediaVisibility" json:"mediaVisibility,omitempty"`
651
+ TcTokenSenderTimestamp *uint64 `protobuf:"varint,28,opt,name=tcTokenSenderTimestamp" json:"tcTokenSenderTimestamp,omitempty"`
652
+ Suspended *bool `protobuf:"varint,29,opt,name=suspended" json:"suspended,omitempty"`
653
+ Terminated *bool `protobuf:"varint,30,opt,name=terminated" json:"terminated,omitempty"`
654
+ CreatedAt *uint64 `protobuf:"varint,31,opt,name=createdAt" json:"createdAt,omitempty"`
655
+ CreatedBy *string `protobuf:"bytes,32,opt,name=createdBy" json:"createdBy,omitempty"`
656
+ Description *string `protobuf:"bytes,33,opt,name=description" json:"description,omitempty"`
657
+ Support *bool `protobuf:"varint,34,opt,name=support" json:"support,omitempty"`
658
+ IsParentGroup *bool `protobuf:"varint,35,opt,name=isParentGroup" json:"isParentGroup,omitempty"`
659
+ ParentGroupID *string `protobuf:"bytes,37,opt,name=parentGroupID" json:"parentGroupID,omitempty"`
660
+ IsDefaultSubgroup *bool `protobuf:"varint,36,opt,name=isDefaultSubgroup" json:"isDefaultSubgroup,omitempty"`
661
+ DisplayName *string `protobuf:"bytes,38,opt,name=displayName" json:"displayName,omitempty"`
662
+ PnJID *string `protobuf:"bytes,39,opt,name=pnJID" json:"pnJID,omitempty"`
663
+ ShareOwnPn *bool `protobuf:"varint,40,opt,name=shareOwnPn" json:"shareOwnPn,omitempty"`
664
+ PnhDuplicateLidThread *bool `protobuf:"varint,41,opt,name=pnhDuplicateLidThread" json:"pnhDuplicateLidThread,omitempty"`
665
+ LidJID *string `protobuf:"bytes,42,opt,name=lidJID" json:"lidJID,omitempty"`
666
+ Username *string `protobuf:"bytes,43,opt,name=username" json:"username,omitempty"`
667
+ LidOriginType *string `protobuf:"bytes,44,opt,name=lidOriginType" json:"lidOriginType,omitempty"`
668
+ CommentsCount *uint32 `protobuf:"varint,45,opt,name=commentsCount" json:"commentsCount,omitempty"`
669
+ Locked *bool `protobuf:"varint,46,opt,name=locked" json:"locked,omitempty"`
670
+ SystemMessageToInsert *PrivacySystemMessage `protobuf:"varint,47,opt,name=systemMessageToInsert,enum=WAWebProtobufsHistorySync.PrivacySystemMessage" json:"systemMessageToInsert,omitempty"`
671
+ CapiCreatedGroup *bool `protobuf:"varint,48,opt,name=capiCreatedGroup" json:"capiCreatedGroup,omitempty"`
672
+ AccountLid *string `protobuf:"bytes,49,opt,name=accountLid" json:"accountLid,omitempty"`
673
+ LimitSharing *bool `protobuf:"varint,50,opt,name=limitSharing" json:"limitSharing,omitempty"`
674
+ LimitSharingSettingTimestamp *int64 `protobuf:"varint,51,opt,name=limitSharingSettingTimestamp" json:"limitSharingSettingTimestamp,omitempty"`
675
+ LimitSharingTrigger *waCommon.LimitSharing_Trigger `protobuf:"varint,52,opt,name=limitSharingTrigger,enum=WACommon.LimitSharing_Trigger" json:"limitSharingTrigger,omitempty"`
676
+ LimitSharingInitiatedByMe *bool `protobuf:"varint,53,opt,name=limitSharingInitiatedByMe" json:"limitSharingInitiatedByMe,omitempty"`
677
+ unknownFields protoimpl.UnknownFields
678
+ sizeCache protoimpl.SizeCache
667
679
  }
668
680
 
669
681
  func (x *Conversation) Reset() {
@@ -1039,6 +1051,34 @@ func (x *Conversation) GetAccountLid() string {
1039
1051
  return ""
1040
1052
  }
1041
1053
 
1054
+ func (x *Conversation) GetLimitSharing() bool {
1055
+ if x != nil && x.LimitSharing != nil {
1056
+ return *x.LimitSharing
1057
+ }
1058
+ return false
1059
+ }
1060
+
1061
+ func (x *Conversation) GetLimitSharingSettingTimestamp() int64 {
1062
+ if x != nil && x.LimitSharingSettingTimestamp != nil {
1063
+ return *x.LimitSharingSettingTimestamp
1064
+ }
1065
+ return 0
1066
+ }
1067
+
1068
+ func (x *Conversation) GetLimitSharingTrigger() waCommon.LimitSharing_Trigger {
1069
+ if x != nil && x.LimitSharingTrigger != nil {
1070
+ return *x.LimitSharingTrigger
1071
+ }
1072
+ return waCommon.LimitSharing_Trigger(0)
1073
+ }
1074
+
1075
+ func (x *Conversation) GetLimitSharingInitiatedByMe() bool {
1076
+ if x != nil && x.LimitSharingInitiatedByMe != nil {
1077
+ return *x.LimitSharingInitiatedByMe
1078
+ }
1079
+ return false
1080
+ }
1081
+
1042
1082
  type GroupParticipant struct {
1043
1083
  state protoimpl.MessageState `protogen:"open.v1"`
1044
1084
  UserJID *string `protobuf:"bytes,1,req,name=userJID" json:"userJID,omitempty"`
@@ -1203,6 +1243,74 @@ func (x *PhoneNumberToLIDMapping) GetLidJID() string {
1203
1243
  return ""
1204
1244
  }
1205
1245
 
1246
+ type Account struct {
1247
+ state protoimpl.MessageState `protogen:"open.v1"`
1248
+ Lid *string `protobuf:"bytes,1,opt,name=lid" json:"lid,omitempty"`
1249
+ Username *string `protobuf:"bytes,2,opt,name=username" json:"username,omitempty"`
1250
+ CountryCode *string `protobuf:"bytes,3,opt,name=countryCode" json:"countryCode,omitempty"`
1251
+ IsUsernameDeleted *bool `protobuf:"varint,4,opt,name=isUsernameDeleted" json:"isUsernameDeleted,omitempty"`
1252
+ unknownFields protoimpl.UnknownFields
1253
+ sizeCache protoimpl.SizeCache
1254
+ }
1255
+
1256
+ func (x *Account) Reset() {
1257
+ *x = Account{}
1258
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[5]
1259
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1260
+ ms.StoreMessageInfo(mi)
1261
+ }
1262
+
1263
+ func (x *Account) String() string {
1264
+ return protoimpl.X.MessageStringOf(x)
1265
+ }
1266
+
1267
+ func (*Account) ProtoMessage() {}
1268
+
1269
+ func (x *Account) ProtoReflect() protoreflect.Message {
1270
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[5]
1271
+ if x != nil {
1272
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1273
+ if ms.LoadMessageInfo() == nil {
1274
+ ms.StoreMessageInfo(mi)
1275
+ }
1276
+ return ms
1277
+ }
1278
+ return mi.MessageOf(x)
1279
+ }
1280
+
1281
+ // Deprecated: Use Account.ProtoReflect.Descriptor instead.
1282
+ func (*Account) Descriptor() ([]byte, []int) {
1283
+ return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{5}
1284
+ }
1285
+
1286
+ func (x *Account) GetLid() string {
1287
+ if x != nil && x.Lid != nil {
1288
+ return *x.Lid
1289
+ }
1290
+ return ""
1291
+ }
1292
+
1293
+ func (x *Account) GetUsername() string {
1294
+ if x != nil && x.Username != nil {
1295
+ return *x.Username
1296
+ }
1297
+ return ""
1298
+ }
1299
+
1300
+ func (x *Account) GetCountryCode() string {
1301
+ if x != nil && x.CountryCode != nil {
1302
+ return *x.CountryCode
1303
+ }
1304
+ return ""
1305
+ }
1306
+
1307
+ func (x *Account) GetIsUsernameDeleted() bool {
1308
+ if x != nil && x.IsUsernameDeleted != nil {
1309
+ return *x.IsUsernameDeleted
1310
+ }
1311
+ return false
1312
+ }
1313
+
1206
1314
  type HistorySyncMsg struct {
1207
1315
  state protoimpl.MessageState `protogen:"open.v1"`
1208
1316
  Message *waWeb.WebMessageInfo `protobuf:"bytes,1,opt,name=message" json:"message,omitempty"`
@@ -1213,7 +1321,7 @@ type HistorySyncMsg struct {
1213
1321
 
1214
1322
  func (x *HistorySyncMsg) Reset() {
1215
1323
  *x = HistorySyncMsg{}
1216
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[5]
1324
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[6]
1217
1325
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1218
1326
  ms.StoreMessageInfo(mi)
1219
1327
  }
@@ -1225,7 +1333,7 @@ func (x *HistorySyncMsg) String() string {
1225
1333
  func (*HistorySyncMsg) ProtoMessage() {}
1226
1334
 
1227
1335
  func (x *HistorySyncMsg) ProtoReflect() protoreflect.Message {
1228
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[5]
1336
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[6]
1229
1337
  if x != nil {
1230
1338
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1231
1339
  if ms.LoadMessageInfo() == nil {
@@ -1238,7 +1346,7 @@ func (x *HistorySyncMsg) ProtoReflect() protoreflect.Message {
1238
1346
 
1239
1347
  // Deprecated: Use HistorySyncMsg.ProtoReflect.Descriptor instead.
1240
1348
  func (*HistorySyncMsg) Descriptor() ([]byte, []int) {
1241
- return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{5}
1349
+ return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{6}
1242
1350
  }
1243
1351
 
1244
1352
  func (x *HistorySyncMsg) GetMessage() *waWeb.WebMessageInfo {
@@ -1265,7 +1373,7 @@ type Pushname struct {
1265
1373
 
1266
1374
  func (x *Pushname) Reset() {
1267
1375
  *x = Pushname{}
1268
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[6]
1376
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[7]
1269
1377
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1270
1378
  ms.StoreMessageInfo(mi)
1271
1379
  }
@@ -1277,7 +1385,7 @@ func (x *Pushname) String() string {
1277
1385
  func (*Pushname) ProtoMessage() {}
1278
1386
 
1279
1387
  func (x *Pushname) ProtoReflect() protoreflect.Message {
1280
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[6]
1388
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[7]
1281
1389
  if x != nil {
1282
1390
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1283
1391
  if ms.LoadMessageInfo() == nil {
@@ -1290,7 +1398,7 @@ func (x *Pushname) ProtoReflect() protoreflect.Message {
1290
1398
 
1291
1399
  // Deprecated: Use Pushname.ProtoReflect.Descriptor instead.
1292
1400
  func (*Pushname) Descriptor() ([]byte, []int) {
1293
- return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{6}
1401
+ return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{7}
1294
1402
  }
1295
1403
 
1296
1404
  func (x *Pushname) GetID() string {
@@ -1317,7 +1425,7 @@ type WallpaperSettings struct {
1317
1425
 
1318
1426
  func (x *WallpaperSettings) Reset() {
1319
1427
  *x = WallpaperSettings{}
1320
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[7]
1428
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[8]
1321
1429
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1322
1430
  ms.StoreMessageInfo(mi)
1323
1431
  }
@@ -1329,7 +1437,7 @@ func (x *WallpaperSettings) String() string {
1329
1437
  func (*WallpaperSettings) ProtoMessage() {}
1330
1438
 
1331
1439
  func (x *WallpaperSettings) ProtoReflect() protoreflect.Message {
1332
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[7]
1440
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[8]
1333
1441
  if x != nil {
1334
1442
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1335
1443
  if ms.LoadMessageInfo() == nil {
@@ -1342,7 +1450,7 @@ func (x *WallpaperSettings) ProtoReflect() protoreflect.Message {
1342
1450
 
1343
1451
  // Deprecated: Use WallpaperSettings.ProtoReflect.Descriptor instead.
1344
1452
  func (*WallpaperSettings) Descriptor() ([]byte, []int) {
1345
- return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{7}
1453
+ return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{8}
1346
1454
  }
1347
1455
 
1348
1456
  func (x *WallpaperSettings) GetFilename() string {
@@ -1380,13 +1488,14 @@ type GlobalSettings struct {
1380
1488
  IndividualNotificationSettings *NotificationSettings `protobuf:"bytes,17,opt,name=individualNotificationSettings" json:"individualNotificationSettings,omitempty"`
1381
1489
  GroupNotificationSettings *NotificationSettings `protobuf:"bytes,18,opt,name=groupNotificationSettings" json:"groupNotificationSettings,omitempty"`
1382
1490
  ChatLockSettings *waChatLockSettings.ChatLockSettings `protobuf:"bytes,19,opt,name=chatLockSettings" json:"chatLockSettings,omitempty"`
1491
+ ChatDbLidMigrationTimestamp *int64 `protobuf:"varint,20,opt,name=chatDbLidMigrationTimestamp" json:"chatDbLidMigrationTimestamp,omitempty"`
1383
1492
  unknownFields protoimpl.UnknownFields
1384
1493
  sizeCache protoimpl.SizeCache
1385
1494
  }
1386
1495
 
1387
1496
  func (x *GlobalSettings) Reset() {
1388
1497
  *x = GlobalSettings{}
1389
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[8]
1498
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[9]
1390
1499
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1391
1500
  ms.StoreMessageInfo(mi)
1392
1501
  }
@@ -1398,7 +1507,7 @@ func (x *GlobalSettings) String() string {
1398
1507
  func (*GlobalSettings) ProtoMessage() {}
1399
1508
 
1400
1509
  func (x *GlobalSettings) ProtoReflect() protoreflect.Message {
1401
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[8]
1510
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[9]
1402
1511
  if x != nil {
1403
1512
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1404
1513
  if ms.LoadMessageInfo() == nil {
@@ -1411,7 +1520,7 @@ func (x *GlobalSettings) ProtoReflect() protoreflect.Message {
1411
1520
 
1412
1521
  // Deprecated: Use GlobalSettings.ProtoReflect.Descriptor instead.
1413
1522
  func (*GlobalSettings) Descriptor() ([]byte, []int) {
1414
- return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{8}
1523
+ return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{9}
1415
1524
  }
1416
1525
 
1417
1526
  func (x *GlobalSettings) GetLightThemeWallpaper() *WallpaperSettings {
@@ -1547,6 +1656,13 @@ func (x *GlobalSettings) GetChatLockSettings() *waChatLockSettings.ChatLockSetti
1547
1656
  return nil
1548
1657
  }
1549
1658
 
1659
+ func (x *GlobalSettings) GetChatDbLidMigrationTimestamp() int64 {
1660
+ if x != nil && x.ChatDbLidMigrationTimestamp != nil {
1661
+ return *x.ChatDbLidMigrationTimestamp
1662
+ }
1663
+ return 0
1664
+ }
1665
+
1550
1666
  type AutoDownloadSettings struct {
1551
1667
  state protoimpl.MessageState `protogen:"open.v1"`
1552
1668
  DownloadImages *bool `protobuf:"varint,1,opt,name=downloadImages" json:"downloadImages,omitempty"`
@@ -1559,7 +1675,7 @@ type AutoDownloadSettings struct {
1559
1675
 
1560
1676
  func (x *AutoDownloadSettings) Reset() {
1561
1677
  *x = AutoDownloadSettings{}
1562
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[9]
1678
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[10]
1563
1679
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1564
1680
  ms.StoreMessageInfo(mi)
1565
1681
  }
@@ -1571,7 +1687,7 @@ func (x *AutoDownloadSettings) String() string {
1571
1687
  func (*AutoDownloadSettings) ProtoMessage() {}
1572
1688
 
1573
1689
  func (x *AutoDownloadSettings) ProtoReflect() protoreflect.Message {
1574
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[9]
1690
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[10]
1575
1691
  if x != nil {
1576
1692
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1577
1693
  if ms.LoadMessageInfo() == nil {
@@ -1584,7 +1700,7 @@ func (x *AutoDownloadSettings) ProtoReflect() protoreflect.Message {
1584
1700
 
1585
1701
  // Deprecated: Use AutoDownloadSettings.ProtoReflect.Descriptor instead.
1586
1702
  func (*AutoDownloadSettings) Descriptor() ([]byte, []int) {
1587
- return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{9}
1703
+ return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{10}
1588
1704
  }
1589
1705
 
1590
1706
  func (x *AutoDownloadSettings) GetDownloadImages() bool {
@@ -1635,7 +1751,7 @@ type StickerMetadata struct {
1635
1751
 
1636
1752
  func (x *StickerMetadata) Reset() {
1637
1753
  *x = StickerMetadata{}
1638
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[10]
1754
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[11]
1639
1755
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1640
1756
  ms.StoreMessageInfo(mi)
1641
1757
  }
@@ -1647,7 +1763,7 @@ func (x *StickerMetadata) String() string {
1647
1763
  func (*StickerMetadata) ProtoMessage() {}
1648
1764
 
1649
1765
  func (x *StickerMetadata) ProtoReflect() protoreflect.Message {
1650
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[10]
1766
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[11]
1651
1767
  if x != nil {
1652
1768
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1653
1769
  if ms.LoadMessageInfo() == nil {
@@ -1660,7 +1776,7 @@ func (x *StickerMetadata) ProtoReflect() protoreflect.Message {
1660
1776
 
1661
1777
  // Deprecated: Use StickerMetadata.ProtoReflect.Descriptor instead.
1662
1778
  func (*StickerMetadata) Descriptor() ([]byte, []int) {
1663
- return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{10}
1779
+ return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{11}
1664
1780
  }
1665
1781
 
1666
1782
  func (x *StickerMetadata) GetURL() string {
@@ -1757,7 +1873,7 @@ type PastParticipants struct {
1757
1873
 
1758
1874
  func (x *PastParticipants) Reset() {
1759
1875
  *x = PastParticipants{}
1760
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[11]
1876
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[12]
1761
1877
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1762
1878
  ms.StoreMessageInfo(mi)
1763
1879
  }
@@ -1769,7 +1885,7 @@ func (x *PastParticipants) String() string {
1769
1885
  func (*PastParticipants) ProtoMessage() {}
1770
1886
 
1771
1887
  func (x *PastParticipants) ProtoReflect() protoreflect.Message {
1772
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[11]
1888
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[12]
1773
1889
  if x != nil {
1774
1890
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1775
1891
  if ms.LoadMessageInfo() == nil {
@@ -1782,7 +1898,7 @@ func (x *PastParticipants) ProtoReflect() protoreflect.Message {
1782
1898
 
1783
1899
  // Deprecated: Use PastParticipants.ProtoReflect.Descriptor instead.
1784
1900
  func (*PastParticipants) Descriptor() ([]byte, []int) {
1785
- return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{11}
1901
+ return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{12}
1786
1902
  }
1787
1903
 
1788
1904
  func (x *PastParticipants) GetGroupJID() string {
@@ -1809,7 +1925,7 @@ type AvatarUserSettings struct {
1809
1925
 
1810
1926
  func (x *AvatarUserSettings) Reset() {
1811
1927
  *x = AvatarUserSettings{}
1812
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[12]
1928
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[13]
1813
1929
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1814
1930
  ms.StoreMessageInfo(mi)
1815
1931
  }
@@ -1821,7 +1937,7 @@ func (x *AvatarUserSettings) String() string {
1821
1937
  func (*AvatarUserSettings) ProtoMessage() {}
1822
1938
 
1823
1939
  func (x *AvatarUserSettings) ProtoReflect() protoreflect.Message {
1824
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[12]
1940
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[13]
1825
1941
  if x != nil {
1826
1942
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1827
1943
  if ms.LoadMessageInfo() == nil {
@@ -1834,7 +1950,7 @@ func (x *AvatarUserSettings) ProtoReflect() protoreflect.Message {
1834
1950
 
1835
1951
  // Deprecated: Use AvatarUserSettings.ProtoReflect.Descriptor instead.
1836
1952
  func (*AvatarUserSettings) Descriptor() ([]byte, []int) {
1837
- return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{12}
1953
+ return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{13}
1838
1954
  }
1839
1955
 
1840
1956
  func (x *AvatarUserSettings) GetFBID() string {
@@ -1865,7 +1981,7 @@ type NotificationSettings struct {
1865
1981
 
1866
1982
  func (x *NotificationSettings) Reset() {
1867
1983
  *x = NotificationSettings{}
1868
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[13]
1984
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[14]
1869
1985
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1870
1986
  ms.StoreMessageInfo(mi)
1871
1987
  }
@@ -1877,7 +1993,7 @@ func (x *NotificationSettings) String() string {
1877
1993
  func (*NotificationSettings) ProtoMessage() {}
1878
1994
 
1879
1995
  func (x *NotificationSettings) ProtoReflect() protoreflect.Message {
1880
- mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[13]
1996
+ mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[14]
1881
1997
  if x != nil {
1882
1998
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1883
1999
  if ms.LoadMessageInfo() == nil {
@@ -1890,7 +2006,7 @@ func (x *NotificationSettings) ProtoReflect() protoreflect.Message {
1890
2006
 
1891
2007
  // Deprecated: Use NotificationSettings.ProtoReflect.Descriptor instead.
1892
2008
  func (*NotificationSettings) Descriptor() ([]byte, []int) {
1893
- return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{13}
2009
+ return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{14}
1894
2010
  }
1895
2011
 
1896
2012
  func (x *NotificationSettings) GetMessageVibrate() string {
@@ -1937,23 +2053,225 @@ func (x *NotificationSettings) GetCallVibrate() string {
1937
2053
 
1938
2054
  var File_waHistorySync_WAWebProtobufsHistorySync_proto protoreflect.FileDescriptor
1939
2055
 
1940
- //go:embed WAWebProtobufsHistorySync.pb.raw
1941
- var file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDesc []byte
2056
+ const file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDesc = "" +
2057
+ "\n" +
2058
+ "-waHistorySync/WAWebProtobufsHistorySync.proto\x12\x19WAWebProtobufsHistorySync\x1a\x1fwaSyncAction/WASyncAction.proto\x1a4waChatLockSettings/WAProtobufsChatLockSettings.proto\x1a\x1dwaE2E/WAWebProtobufsE2E.proto\x1a\x17waCommon/WACommon.proto\x1a\x1dwaWeb/WAWebProtobufsWeb.proto\"\x8c\v\n" +
2059
+ "\vHistorySync\x12R\n" +
2060
+ "\bsyncType\x18\x01 \x02(\x0e26.WAWebProtobufsHistorySync.HistorySync.HistorySyncTypeR\bsyncType\x12M\n" +
2061
+ "\rconversations\x18\x02 \x03(\v2'.WAWebProtobufsHistorySync.ConversationR\rconversations\x12M\n" +
2062
+ "\x10statusV3Messages\x18\x03 \x03(\v2!.WAWebProtobufsWeb.WebMessageInfoR\x10statusV3Messages\x12\x1e\n" +
2063
+ "\n" +
2064
+ "chunkOrder\x18\x05 \x01(\rR\n" +
2065
+ "chunkOrder\x12\x1a\n" +
2066
+ "\bprogress\x18\x06 \x01(\rR\bprogress\x12A\n" +
2067
+ "\tpushnames\x18\a \x03(\v2#.WAWebProtobufsHistorySync.PushnameR\tpushnames\x12Q\n" +
2068
+ "\x0eglobalSettings\x18\b \x01(\v2).WAWebProtobufsHistorySync.GlobalSettingsR\x0eglobalSettings\x12.\n" +
2069
+ "\x12threadIDUserSecret\x18\t \x01(\fR\x12threadIDUserSecret\x128\n" +
2070
+ "\x17threadDsTimeframeOffset\x18\n" +
2071
+ " \x01(\rR\x17threadDsTimeframeOffset\x12R\n" +
2072
+ "\x0erecentStickers\x18\v \x03(\v2*.WAWebProtobufsHistorySync.StickerMetadataR\x0erecentStickers\x12W\n" +
2073
+ "\x10pastParticipants\x18\f \x03(\v2+.WAWebProtobufsHistorySync.PastParticipantsR\x10pastParticipants\x12C\n" +
2074
+ "\x0ecallLogRecords\x18\r \x03(\v2\x1b.WASyncAction.CallLogRecordR\x0ecallLogRecords\x12c\n" +
2075
+ "\x0faiWaitListState\x18\x0e \x01(\x0e29.WAWebProtobufsHistorySync.HistorySync.BotAIWaitListStateR\x0faiWaitListState\x12n\n" +
2076
+ "\x18phoneNumberToLidMappings\x18\x0f \x03(\v22.WAWebProtobufsHistorySync.PhoneNumberToLIDMappingR\x18phoneNumberToLidMappings\x12.\n" +
2077
+ "\x12companionMetaNonce\x18\x10 \x01(\tR\x12companionMetaNonce\x12R\n" +
2078
+ "$shareableChatIdentifierEncryptionKey\x18\x11 \x01(\fR$shareableChatIdentifierEncryptionKey\x12>\n" +
2079
+ "\baccounts\x18\x12 \x03(\v2\".WAWebProtobufsHistorySync.AccountR\baccounts\"7\n" +
2080
+ "\x12BotAIWaitListState\x12\x0f\n" +
2081
+ "\vIN_WAITLIST\x10\x00\x12\x10\n" +
2082
+ "\fAI_AVAILABLE\x10\x01\"\x8a\x01\n" +
2083
+ "\x0fHistorySyncType\x12\x15\n" +
2084
+ "\x11INITIAL_BOOTSTRAP\x10\x00\x12\x15\n" +
2085
+ "\x11INITIAL_STATUS_V3\x10\x01\x12\b\n" +
2086
+ "\x04FULL\x10\x02\x12\n" +
2087
+ "\n" +
2088
+ "\x06RECENT\x10\x03\x12\r\n" +
2089
+ "\tPUSH_NAME\x10\x04\x12\x15\n" +
2090
+ "\x11NON_BLOCKING_DATA\x10\x05\x12\r\n" +
2091
+ "\tON_DEMAND\x10\x06\"\x87\x14\n" +
2092
+ "\fConversation\x12\x0e\n" +
2093
+ "\x02ID\x18\x01 \x02(\tR\x02ID\x12E\n" +
2094
+ "\bmessages\x18\x02 \x03(\v2).WAWebProtobufsHistorySync.HistorySyncMsgR\bmessages\x12\x16\n" +
2095
+ "\x06newJID\x18\x03 \x01(\tR\x06newJID\x12\x16\n" +
2096
+ "\x06oldJID\x18\x04 \x01(\tR\x06oldJID\x12*\n" +
2097
+ "\x10lastMsgTimestamp\x18\x05 \x01(\x04R\x10lastMsgTimestamp\x12 \n" +
2098
+ "\vunreadCount\x18\x06 \x01(\rR\vunreadCount\x12\x1a\n" +
2099
+ "\breadOnly\x18\a \x01(\bR\breadOnly\x122\n" +
2100
+ "\x14endOfHistoryTransfer\x18\b \x01(\bR\x14endOfHistoryTransfer\x120\n" +
2101
+ "\x13ephemeralExpiration\x18\t \x01(\rR\x13ephemeralExpiration\x12<\n" +
2102
+ "\x19ephemeralSettingTimestamp\x18\n" +
2103
+ " \x01(\x03R\x19ephemeralSettingTimestamp\x12|\n" +
2104
+ "\x18endOfHistoryTransferType\x18\v \x01(\x0e2@.WAWebProtobufsHistorySync.Conversation.EndOfHistoryTransferTypeR\x18endOfHistoryTransferType\x124\n" +
2105
+ "\x15conversationTimestamp\x18\f \x01(\x04R\x15conversationTimestamp\x12\x12\n" +
2106
+ "\x04name\x18\r \x01(\tR\x04name\x12\x14\n" +
2107
+ "\x05pHash\x18\x0e \x01(\tR\x05pHash\x12\x18\n" +
2108
+ "\anotSpam\x18\x0f \x01(\bR\anotSpam\x12\x1a\n" +
2109
+ "\barchived\x18\x10 \x01(\bR\barchived\x12O\n" +
2110
+ "\x10disappearingMode\x18\x11 \x01(\v2#.WAWebProtobufsE2E.DisappearingModeR\x10disappearingMode\x12.\n" +
2111
+ "\x12unreadMentionCount\x18\x12 \x01(\rR\x12unreadMentionCount\x12&\n" +
2112
+ "\x0emarkedAsUnread\x18\x13 \x01(\bR\x0emarkedAsUnread\x12M\n" +
2113
+ "\vparticipant\x18\x14 \x03(\v2+.WAWebProtobufsHistorySync.GroupParticipantR\vparticipant\x12\x18\n" +
2114
+ "\atcToken\x18\x15 \x01(\fR\atcToken\x12*\n" +
2115
+ "\x10tcTokenTimestamp\x18\x16 \x01(\x04R\x10tcTokenTimestamp\x12<\n" +
2116
+ "\x19contactPrimaryIdentityKey\x18\x17 \x01(\fR\x19contactPrimaryIdentityKey\x12\x16\n" +
2117
+ "\x06pinned\x18\x18 \x01(\rR\x06pinned\x12 \n" +
2118
+ "\vmuteEndTime\x18\x19 \x01(\x04R\vmuteEndTime\x12J\n" +
2119
+ "\twallpaper\x18\x1a \x01(\v2,.WAWebProtobufsHistorySync.WallpaperSettingsR\twallpaper\x12T\n" +
2120
+ "\x0fmediaVisibility\x18\x1b \x01(\x0e2*.WAWebProtobufsHistorySync.MediaVisibilityR\x0fmediaVisibility\x126\n" +
2121
+ "\x16tcTokenSenderTimestamp\x18\x1c \x01(\x04R\x16tcTokenSenderTimestamp\x12\x1c\n" +
2122
+ "\tsuspended\x18\x1d \x01(\bR\tsuspended\x12\x1e\n" +
2123
+ "\n" +
2124
+ "terminated\x18\x1e \x01(\bR\n" +
2125
+ "terminated\x12\x1c\n" +
2126
+ "\tcreatedAt\x18\x1f \x01(\x04R\tcreatedAt\x12\x1c\n" +
2127
+ "\tcreatedBy\x18 \x01(\tR\tcreatedBy\x12 \n" +
2128
+ "\vdescription\x18! \x01(\tR\vdescription\x12\x18\n" +
2129
+ "\asupport\x18\" \x01(\bR\asupport\x12$\n" +
2130
+ "\risParentGroup\x18# \x01(\bR\risParentGroup\x12$\n" +
2131
+ "\rparentGroupID\x18% \x01(\tR\rparentGroupID\x12,\n" +
2132
+ "\x11isDefaultSubgroup\x18$ \x01(\bR\x11isDefaultSubgroup\x12 \n" +
2133
+ "\vdisplayName\x18& \x01(\tR\vdisplayName\x12\x14\n" +
2134
+ "\x05pnJID\x18' \x01(\tR\x05pnJID\x12\x1e\n" +
2135
+ "\n" +
2136
+ "shareOwnPn\x18( \x01(\bR\n" +
2137
+ "shareOwnPn\x124\n" +
2138
+ "\x15pnhDuplicateLidThread\x18) \x01(\bR\x15pnhDuplicateLidThread\x12\x16\n" +
2139
+ "\x06lidJID\x18* \x01(\tR\x06lidJID\x12\x1a\n" +
2140
+ "\busername\x18+ \x01(\tR\busername\x12$\n" +
2141
+ "\rlidOriginType\x18, \x01(\tR\rlidOriginType\x12$\n" +
2142
+ "\rcommentsCount\x18- \x01(\rR\rcommentsCount\x12\x16\n" +
2143
+ "\x06locked\x18. \x01(\bR\x06locked\x12e\n" +
2144
+ "\x15systemMessageToInsert\x18/ \x01(\x0e2/.WAWebProtobufsHistorySync.PrivacySystemMessageR\x15systemMessageToInsert\x12*\n" +
2145
+ "\x10capiCreatedGroup\x180 \x01(\bR\x10capiCreatedGroup\x12\x1e\n" +
2146
+ "\n" +
2147
+ "accountLid\x181 \x01(\tR\n" +
2148
+ "accountLid\x12\"\n" +
2149
+ "\flimitSharing\x182 \x01(\bR\flimitSharing\x12B\n" +
2150
+ "\x1climitSharingSettingTimestamp\x183 \x01(\x03R\x1climitSharingSettingTimestamp\x12P\n" +
2151
+ "\x13limitSharingTrigger\x184 \x01(\x0e2\x1e.WACommon.LimitSharing.TriggerR\x13limitSharingTrigger\x12<\n" +
2152
+ "\x19limitSharingInitiatedByMe\x185 \x01(\bR\x19limitSharingInitiatedByMe\"\xbc\x01\n" +
2153
+ "\x18EndOfHistoryTransferType\x120\n" +
2154
+ ",COMPLETE_BUT_MORE_MESSAGES_REMAIN_ON_PRIMARY\x10\x00\x122\n" +
2155
+ ".COMPLETE_AND_NO_MORE_MESSAGE_REMAIN_ON_PRIMARY\x10\x01\x12:\n" +
2156
+ "6COMPLETE_ON_DEMAND_SYNC_BUT_MORE_MSG_REMAIN_ON_PRIMARY\x10\x02\"\xa2\x01\n" +
2157
+ "\x10GroupParticipant\x12\x18\n" +
2158
+ "\auserJID\x18\x01 \x02(\tR\auserJID\x12D\n" +
2159
+ "\x04rank\x18\x02 \x01(\x0e20.WAWebProtobufsHistorySync.GroupParticipant.RankR\x04rank\".\n" +
2160
+ "\x04Rank\x12\v\n" +
2161
+ "\aREGULAR\x10\x00\x12\t\n" +
2162
+ "\x05ADMIN\x10\x01\x12\x0e\n" +
2163
+ "\n" +
2164
+ "SUPERADMIN\x10\x02\"\xc5\x01\n" +
2165
+ "\x0fPastParticipant\x12\x18\n" +
2166
+ "\auserJID\x18\x01 \x01(\tR\auserJID\x12X\n" +
2167
+ "\vleaveReason\x18\x02 \x01(\x0e26.WAWebProtobufsHistorySync.PastParticipant.LeaveReasonR\vleaveReason\x12\x18\n" +
2168
+ "\aleaveTS\x18\x03 \x01(\x04R\aleaveTS\"$\n" +
2169
+ "\vLeaveReason\x12\b\n" +
2170
+ "\x04LEFT\x10\x00\x12\v\n" +
2171
+ "\aREMOVED\x10\x01\"G\n" +
2172
+ "\x17PhoneNumberToLIDMapping\x12\x14\n" +
2173
+ "\x05pnJID\x18\x01 \x01(\tR\x05pnJID\x12\x16\n" +
2174
+ "\x06lidJID\x18\x02 \x01(\tR\x06lidJID\"\x87\x01\n" +
2175
+ "\aAccount\x12\x10\n" +
2176
+ "\x03lid\x18\x01 \x01(\tR\x03lid\x12\x1a\n" +
2177
+ "\busername\x18\x02 \x01(\tR\busername\x12 \n" +
2178
+ "\vcountryCode\x18\x03 \x01(\tR\vcountryCode\x12,\n" +
2179
+ "\x11isUsernameDeleted\x18\x04 \x01(\bR\x11isUsernameDeleted\"m\n" +
2180
+ "\x0eHistorySyncMsg\x12;\n" +
2181
+ "\amessage\x18\x01 \x01(\v2!.WAWebProtobufsWeb.WebMessageInfoR\amessage\x12\x1e\n" +
2182
+ "\n" +
2183
+ "msgOrderID\x18\x02 \x01(\x04R\n" +
2184
+ "msgOrderID\"6\n" +
2185
+ "\bPushname\x12\x0e\n" +
2186
+ "\x02ID\x18\x01 \x01(\tR\x02ID\x12\x1a\n" +
2187
+ "\bpushname\x18\x02 \x01(\tR\bpushname\"I\n" +
2188
+ "\x11WallpaperSettings\x12\x1a\n" +
2189
+ "\bfilename\x18\x01 \x01(\tR\bfilename\x12\x18\n" +
2190
+ "\aopacity\x18\x02 \x01(\rR\aopacity\"\x97\f\n" +
2191
+ "\x0eGlobalSettings\x12^\n" +
2192
+ "\x13lightThemeWallpaper\x18\x01 \x01(\v2,.WAWebProtobufsHistorySync.WallpaperSettingsR\x13lightThemeWallpaper\x12T\n" +
2193
+ "\x0fmediaVisibility\x18\x02 \x01(\x0e2*.WAWebProtobufsHistorySync.MediaVisibilityR\x0fmediaVisibility\x12\\\n" +
2194
+ "\x12darkThemeWallpaper\x18\x03 \x01(\v2,.WAWebProtobufsHistorySync.WallpaperSettingsR\x12darkThemeWallpaper\x12[\n" +
2195
+ "\x10autoDownloadWiFi\x18\x04 \x01(\v2/.WAWebProtobufsHistorySync.AutoDownloadSettingsR\x10autoDownloadWiFi\x12c\n" +
2196
+ "\x14autoDownloadCellular\x18\x05 \x01(\v2/.WAWebProtobufsHistorySync.AutoDownloadSettingsR\x14autoDownloadCellular\x12a\n" +
2197
+ "\x13autoDownloadRoaming\x18\x06 \x01(\v2/.WAWebProtobufsHistorySync.AutoDownloadSettingsR\x13autoDownloadRoaming\x12N\n" +
2198
+ "\"showIndividualNotificationsPreview\x18\a \x01(\bR\"showIndividualNotificationsPreview\x12D\n" +
2199
+ "\x1dshowGroupNotificationsPreview\x18\b \x01(\bR\x1dshowGroupNotificationsPreview\x12:\n" +
2200
+ "\x18disappearingModeDuration\x18\t \x01(\x05R\x18disappearingModeDuration\x12<\n" +
2201
+ "\x19disappearingModeTimestamp\x18\n" +
2202
+ " \x01(\x03R\x19disappearingModeTimestamp\x12]\n" +
2203
+ "\x12avatarUserSettings\x18\v \x01(\v2-.WAWebProtobufsHistorySync.AvatarUserSettingsR\x12avatarUserSettings\x12\x1a\n" +
2204
+ "\bfontSize\x18\f \x01(\x05R\bfontSize\x124\n" +
2205
+ "\x15securityNotifications\x18\r \x01(\bR\x15securityNotifications\x12.\n" +
2206
+ "\x12autoUnarchiveChats\x18\x0e \x01(\bR\x12autoUnarchiveChats\x12*\n" +
2207
+ "\x10videoQualityMode\x18\x0f \x01(\x05R\x10videoQualityMode\x12*\n" +
2208
+ "\x10photoQualityMode\x18\x10 \x01(\x05R\x10photoQualityMode\x12w\n" +
2209
+ "\x1eindividualNotificationSettings\x18\x11 \x01(\v2/.WAWebProtobufsHistorySync.NotificationSettingsR\x1eindividualNotificationSettings\x12m\n" +
2210
+ "\x19groupNotificationSettings\x18\x12 \x01(\v2/.WAWebProtobufsHistorySync.NotificationSettingsR\x19groupNotificationSettings\x12Y\n" +
2211
+ "\x10chatLockSettings\x18\x13 \x01(\v2-.WAProtobufsChatLockSettings.ChatLockSettingsR\x10chatLockSettings\x12@\n" +
2212
+ "\x1bchatDbLidMigrationTimestamp\x18\x14 \x01(\x03R\x1bchatDbLidMigrationTimestamp\"\xb8\x01\n" +
2213
+ "\x14AutoDownloadSettings\x12&\n" +
2214
+ "\x0edownloadImages\x18\x01 \x01(\bR\x0edownloadImages\x12$\n" +
2215
+ "\rdownloadAudio\x18\x02 \x01(\bR\rdownloadAudio\x12$\n" +
2216
+ "\rdownloadVideo\x18\x03 \x01(\bR\rdownloadVideo\x12,\n" +
2217
+ "\x11downloadDocuments\x18\x04 \x01(\bR\x11downloadDocuments\"\xf1\x02\n" +
2218
+ "\x0fStickerMetadata\x12\x10\n" +
2219
+ "\x03URL\x18\x01 \x01(\tR\x03URL\x12\x1e\n" +
2220
+ "\n" +
2221
+ "fileSHA256\x18\x02 \x01(\fR\n" +
2222
+ "fileSHA256\x12$\n" +
2223
+ "\rfileEncSHA256\x18\x03 \x01(\fR\rfileEncSHA256\x12\x1a\n" +
2224
+ "\bmediaKey\x18\x04 \x01(\fR\bmediaKey\x12\x1a\n" +
2225
+ "\bmimetype\x18\x05 \x01(\tR\bmimetype\x12\x16\n" +
2226
+ "\x06height\x18\x06 \x01(\rR\x06height\x12\x14\n" +
2227
+ "\x05width\x18\a \x01(\rR\x05width\x12\x1e\n" +
2228
+ "\n" +
2229
+ "directPath\x18\b \x01(\tR\n" +
2230
+ "directPath\x12\x1e\n" +
2231
+ "\n" +
2232
+ "fileLength\x18\t \x01(\x04R\n" +
2233
+ "fileLength\x12\x16\n" +
2234
+ "\x06weight\x18\n" +
2235
+ " \x01(\x02R\x06weight\x12,\n" +
2236
+ "\x11lastStickerSentTS\x18\v \x01(\x03R\x11lastStickerSentTS\x12\x1a\n" +
2237
+ "\bisLottie\x18\f \x01(\bR\bisLottie\"\x86\x01\n" +
2238
+ "\x10PastParticipants\x12\x1a\n" +
2239
+ "\bgroupJID\x18\x01 \x01(\tR\bgroupJID\x12V\n" +
2240
+ "\x10pastParticipants\x18\x02 \x03(\v2*.WAWebProtobufsHistorySync.PastParticipantR\x10pastParticipants\"D\n" +
2241
+ "\x12AvatarUserSettings\x12\x12\n" +
2242
+ "\x04FBID\x18\x01 \x01(\tR\x04FBID\x12\x1a\n" +
2243
+ "\bpassword\x18\x02 \x01(\tR\bpassword\"\x8c\x02\n" +
2244
+ "\x14NotificationSettings\x12&\n" +
2245
+ "\x0emessageVibrate\x18\x01 \x01(\tR\x0emessageVibrate\x12\"\n" +
2246
+ "\fmessagePopup\x18\x02 \x01(\tR\fmessagePopup\x12\"\n" +
2247
+ "\fmessageLight\x18\x03 \x01(\tR\fmessageLight\x12:\n" +
2248
+ "\x18lowPriorityNotifications\x18\x04 \x01(\bR\x18lowPriorityNotifications\x12&\n" +
2249
+ "\x0ereactionsMuted\x18\x05 \x01(\bR\x0ereactionsMuted\x12 \n" +
2250
+ "\vcallVibrate\x18\x06 \x01(\tR\vcallVibrate*/\n" +
2251
+ "\x0fMediaVisibility\x12\v\n" +
2252
+ "\aDEFAULT\x10\x00\x12\a\n" +
2253
+ "\x03OFF\x10\x01\x12\x06\n" +
2254
+ "\x02ON\x10\x02*E\n" +
2255
+ "\x14PrivacySystemMessage\x12\f\n" +
2256
+ "\bE2EE_MSG\x10\x01\x12\x0e\n" +
2257
+ "\n" +
2258
+ "NE2EE_SELF\x10\x02\x12\x0f\n" +
2259
+ "\vNE2EE_OTHER\x10\x03B)Z'go.mau.fi/whatsmeow/proto/waHistorySync"
1942
2260
 
1943
2261
  var (
1944
2262
  file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescOnce sync.Once
1945
- file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescData = file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDesc
2263
+ file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescData []byte
1946
2264
  )
1947
2265
 
1948
2266
  func file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP() []byte {
1949
2267
  file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescOnce.Do(func() {
1950
- file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescData = protoimpl.X.CompressGZIP(file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescData)
2268
+ file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDesc), len(file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDesc)))
1951
2269
  })
1952
2270
  return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescData
1953
2271
  }
1954
2272
 
1955
2273
  var file_waHistorySync_WAWebProtobufsHistorySync_proto_enumTypes = make([]protoimpl.EnumInfo, 7)
1956
- var file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes = make([]protoimpl.MessageInfo, 14)
2274
+ var file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes = make([]protoimpl.MessageInfo, 15)
1957
2275
  var file_waHistorySync_WAWebProtobufsHistorySync_proto_goTypes = []any{
1958
2276
  (MediaVisibility)(0), // 0: WAWebProtobufsHistorySync.MediaVisibility
1959
2277
  (PrivacySystemMessage)(0), // 1: WAWebProtobufsHistorySync.PrivacySystemMessage
@@ -1967,57 +2285,61 @@ var file_waHistorySync_WAWebProtobufsHistorySync_proto_goTypes = []any{
1967
2285
  (*GroupParticipant)(nil), // 9: WAWebProtobufsHistorySync.GroupParticipant
1968
2286
  (*PastParticipant)(nil), // 10: WAWebProtobufsHistorySync.PastParticipant
1969
2287
  (*PhoneNumberToLIDMapping)(nil), // 11: WAWebProtobufsHistorySync.PhoneNumberToLIDMapping
1970
- (*HistorySyncMsg)(nil), // 12: WAWebProtobufsHistorySync.HistorySyncMsg
1971
- (*Pushname)(nil), // 13: WAWebProtobufsHistorySync.Pushname
1972
- (*WallpaperSettings)(nil), // 14: WAWebProtobufsHistorySync.WallpaperSettings
1973
- (*GlobalSettings)(nil), // 15: WAWebProtobufsHistorySync.GlobalSettings
1974
- (*AutoDownloadSettings)(nil), // 16: WAWebProtobufsHistorySync.AutoDownloadSettings
1975
- (*StickerMetadata)(nil), // 17: WAWebProtobufsHistorySync.StickerMetadata
1976
- (*PastParticipants)(nil), // 18: WAWebProtobufsHistorySync.PastParticipants
1977
- (*AvatarUserSettings)(nil), // 19: WAWebProtobufsHistorySync.AvatarUserSettings
1978
- (*NotificationSettings)(nil), // 20: WAWebProtobufsHistorySync.NotificationSettings
1979
- (*waWeb.WebMessageInfo)(nil), // 21: WAWebProtobufsWeb.WebMessageInfo
1980
- (*waSyncAction.CallLogRecord)(nil), // 22: WASyncAction.CallLogRecord
1981
- (*waE2E.DisappearingMode)(nil), // 23: WAWebProtobufsE2E.DisappearingMode
1982
- (*waChatLockSettings.ChatLockSettings)(nil), // 24: WAProtobufsChatLockSettings.ChatLockSettings
2288
+ (*Account)(nil), // 12: WAWebProtobufsHistorySync.Account
2289
+ (*HistorySyncMsg)(nil), // 13: WAWebProtobufsHistorySync.HistorySyncMsg
2290
+ (*Pushname)(nil), // 14: WAWebProtobufsHistorySync.Pushname
2291
+ (*WallpaperSettings)(nil), // 15: WAWebProtobufsHistorySync.WallpaperSettings
2292
+ (*GlobalSettings)(nil), // 16: WAWebProtobufsHistorySync.GlobalSettings
2293
+ (*AutoDownloadSettings)(nil), // 17: WAWebProtobufsHistorySync.AutoDownloadSettings
2294
+ (*StickerMetadata)(nil), // 18: WAWebProtobufsHistorySync.StickerMetadata
2295
+ (*PastParticipants)(nil), // 19: WAWebProtobufsHistorySync.PastParticipants
2296
+ (*AvatarUserSettings)(nil), // 20: WAWebProtobufsHistorySync.AvatarUserSettings
2297
+ (*NotificationSettings)(nil), // 21: WAWebProtobufsHistorySync.NotificationSettings
2298
+ (*waWeb.WebMessageInfo)(nil), // 22: WAWebProtobufsWeb.WebMessageInfo
2299
+ (*waSyncAction.CallLogRecord)(nil), // 23: WASyncAction.CallLogRecord
2300
+ (*waE2E.DisappearingMode)(nil), // 24: WAWebProtobufsE2E.DisappearingMode
2301
+ (waCommon.LimitSharing_Trigger)(0), // 25: WACommon.LimitSharing.Trigger
2302
+ (*waChatLockSettings.ChatLockSettings)(nil), // 26: WAProtobufsChatLockSettings.ChatLockSettings
1983
2303
  }
1984
2304
  var file_waHistorySync_WAWebProtobufsHistorySync_proto_depIdxs = []int32{
1985
2305
  3, // 0: WAWebProtobufsHistorySync.HistorySync.syncType:type_name -> WAWebProtobufsHistorySync.HistorySync.HistorySyncType
1986
2306
  8, // 1: WAWebProtobufsHistorySync.HistorySync.conversations:type_name -> WAWebProtobufsHistorySync.Conversation
1987
- 21, // 2: WAWebProtobufsHistorySync.HistorySync.statusV3Messages:type_name -> WAWebProtobufsWeb.WebMessageInfo
1988
- 13, // 3: WAWebProtobufsHistorySync.HistorySync.pushnames:type_name -> WAWebProtobufsHistorySync.Pushname
1989
- 15, // 4: WAWebProtobufsHistorySync.HistorySync.globalSettings:type_name -> WAWebProtobufsHistorySync.GlobalSettings
1990
- 17, // 5: WAWebProtobufsHistorySync.HistorySync.recentStickers:type_name -> WAWebProtobufsHistorySync.StickerMetadata
1991
- 18, // 6: WAWebProtobufsHistorySync.HistorySync.pastParticipants:type_name -> WAWebProtobufsHistorySync.PastParticipants
1992
- 22, // 7: WAWebProtobufsHistorySync.HistorySync.callLogRecords:type_name -> WASyncAction.CallLogRecord
2307
+ 22, // 2: WAWebProtobufsHistorySync.HistorySync.statusV3Messages:type_name -> WAWebProtobufsWeb.WebMessageInfo
2308
+ 14, // 3: WAWebProtobufsHistorySync.HistorySync.pushnames:type_name -> WAWebProtobufsHistorySync.Pushname
2309
+ 16, // 4: WAWebProtobufsHistorySync.HistorySync.globalSettings:type_name -> WAWebProtobufsHistorySync.GlobalSettings
2310
+ 18, // 5: WAWebProtobufsHistorySync.HistorySync.recentStickers:type_name -> WAWebProtobufsHistorySync.StickerMetadata
2311
+ 19, // 6: WAWebProtobufsHistorySync.HistorySync.pastParticipants:type_name -> WAWebProtobufsHistorySync.PastParticipants
2312
+ 23, // 7: WAWebProtobufsHistorySync.HistorySync.callLogRecords:type_name -> WASyncAction.CallLogRecord
1993
2313
  2, // 8: WAWebProtobufsHistorySync.HistorySync.aiWaitListState:type_name -> WAWebProtobufsHistorySync.HistorySync.BotAIWaitListState
1994
2314
  11, // 9: WAWebProtobufsHistorySync.HistorySync.phoneNumberToLidMappings:type_name -> WAWebProtobufsHistorySync.PhoneNumberToLIDMapping
1995
- 12, // 10: WAWebProtobufsHistorySync.Conversation.messages:type_name -> WAWebProtobufsHistorySync.HistorySyncMsg
1996
- 4, // 11: WAWebProtobufsHistorySync.Conversation.endOfHistoryTransferType:type_name -> WAWebProtobufsHistorySync.Conversation.EndOfHistoryTransferType
1997
- 23, // 12: WAWebProtobufsHistorySync.Conversation.disappearingMode:type_name -> WAWebProtobufsE2E.DisappearingMode
1998
- 9, // 13: WAWebProtobufsHistorySync.Conversation.participant:type_name -> WAWebProtobufsHistorySync.GroupParticipant
1999
- 14, // 14: WAWebProtobufsHistorySync.Conversation.wallpaper:type_name -> WAWebProtobufsHistorySync.WallpaperSettings
2000
- 0, // 15: WAWebProtobufsHistorySync.Conversation.mediaVisibility:type_name -> WAWebProtobufsHistorySync.MediaVisibility
2001
- 1, // 16: WAWebProtobufsHistorySync.Conversation.systemMessageToInsert:type_name -> WAWebProtobufsHistorySync.PrivacySystemMessage
2002
- 5, // 17: WAWebProtobufsHistorySync.GroupParticipant.rank:type_name -> WAWebProtobufsHistorySync.GroupParticipant.Rank
2003
- 6, // 18: WAWebProtobufsHistorySync.PastParticipant.leaveReason:type_name -> WAWebProtobufsHistorySync.PastParticipant.LeaveReason
2004
- 21, // 19: WAWebProtobufsHistorySync.HistorySyncMsg.message:type_name -> WAWebProtobufsWeb.WebMessageInfo
2005
- 14, // 20: WAWebProtobufsHistorySync.GlobalSettings.lightThemeWallpaper:type_name -> WAWebProtobufsHistorySync.WallpaperSettings
2006
- 0, // 21: WAWebProtobufsHistorySync.GlobalSettings.mediaVisibility:type_name -> WAWebProtobufsHistorySync.MediaVisibility
2007
- 14, // 22: WAWebProtobufsHistorySync.GlobalSettings.darkThemeWallpaper:type_name -> WAWebProtobufsHistorySync.WallpaperSettings
2008
- 16, // 23: WAWebProtobufsHistorySync.GlobalSettings.autoDownloadWiFi:type_name -> WAWebProtobufsHistorySync.AutoDownloadSettings
2009
- 16, // 24: WAWebProtobufsHistorySync.GlobalSettings.autoDownloadCellular:type_name -> WAWebProtobufsHistorySync.AutoDownloadSettings
2010
- 16, // 25: WAWebProtobufsHistorySync.GlobalSettings.autoDownloadRoaming:type_name -> WAWebProtobufsHistorySync.AutoDownloadSettings
2011
- 19, // 26: WAWebProtobufsHistorySync.GlobalSettings.avatarUserSettings:type_name -> WAWebProtobufsHistorySync.AvatarUserSettings
2012
- 20, // 27: WAWebProtobufsHistorySync.GlobalSettings.individualNotificationSettings:type_name -> WAWebProtobufsHistorySync.NotificationSettings
2013
- 20, // 28: WAWebProtobufsHistorySync.GlobalSettings.groupNotificationSettings:type_name -> WAWebProtobufsHistorySync.NotificationSettings
2014
- 24, // 29: WAWebProtobufsHistorySync.GlobalSettings.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
2015
- 10, // 30: WAWebProtobufsHistorySync.PastParticipants.pastParticipants:type_name -> WAWebProtobufsHistorySync.PastParticipant
2016
- 31, // [31:31] is the sub-list for method output_type
2017
- 31, // [31:31] is the sub-list for method input_type
2018
- 31, // [31:31] is the sub-list for extension type_name
2019
- 31, // [31:31] is the sub-list for extension extendee
2020
- 0, // [0:31] is the sub-list for field type_name
2315
+ 12, // 10: WAWebProtobufsHistorySync.HistorySync.accounts:type_name -> WAWebProtobufsHistorySync.Account
2316
+ 13, // 11: WAWebProtobufsHistorySync.Conversation.messages:type_name -> WAWebProtobufsHistorySync.HistorySyncMsg
2317
+ 4, // 12: WAWebProtobufsHistorySync.Conversation.endOfHistoryTransferType:type_name -> WAWebProtobufsHistorySync.Conversation.EndOfHistoryTransferType
2318
+ 24, // 13: WAWebProtobufsHistorySync.Conversation.disappearingMode:type_name -> WAWebProtobufsE2E.DisappearingMode
2319
+ 9, // 14: WAWebProtobufsHistorySync.Conversation.participant:type_name -> WAWebProtobufsHistorySync.GroupParticipant
2320
+ 15, // 15: WAWebProtobufsHistorySync.Conversation.wallpaper:type_name -> WAWebProtobufsHistorySync.WallpaperSettings
2321
+ 0, // 16: WAWebProtobufsHistorySync.Conversation.mediaVisibility:type_name -> WAWebProtobufsHistorySync.MediaVisibility
2322
+ 1, // 17: WAWebProtobufsHistorySync.Conversation.systemMessageToInsert:type_name -> WAWebProtobufsHistorySync.PrivacySystemMessage
2323
+ 25, // 18: WAWebProtobufsHistorySync.Conversation.limitSharingTrigger:type_name -> WACommon.LimitSharing.Trigger
2324
+ 5, // 19: WAWebProtobufsHistorySync.GroupParticipant.rank:type_name -> WAWebProtobufsHistorySync.GroupParticipant.Rank
2325
+ 6, // 20: WAWebProtobufsHistorySync.PastParticipant.leaveReason:type_name -> WAWebProtobufsHistorySync.PastParticipant.LeaveReason
2326
+ 22, // 21: WAWebProtobufsHistorySync.HistorySyncMsg.message:type_name -> WAWebProtobufsWeb.WebMessageInfo
2327
+ 15, // 22: WAWebProtobufsHistorySync.GlobalSettings.lightThemeWallpaper:type_name -> WAWebProtobufsHistorySync.WallpaperSettings
2328
+ 0, // 23: WAWebProtobufsHistorySync.GlobalSettings.mediaVisibility:type_name -> WAWebProtobufsHistorySync.MediaVisibility
2329
+ 15, // 24: WAWebProtobufsHistorySync.GlobalSettings.darkThemeWallpaper:type_name -> WAWebProtobufsHistorySync.WallpaperSettings
2330
+ 17, // 25: WAWebProtobufsHistorySync.GlobalSettings.autoDownloadWiFi:type_name -> WAWebProtobufsHistorySync.AutoDownloadSettings
2331
+ 17, // 26: WAWebProtobufsHistorySync.GlobalSettings.autoDownloadCellular:type_name -> WAWebProtobufsHistorySync.AutoDownloadSettings
2332
+ 17, // 27: WAWebProtobufsHistorySync.GlobalSettings.autoDownloadRoaming:type_name -> WAWebProtobufsHistorySync.AutoDownloadSettings
2333
+ 20, // 28: WAWebProtobufsHistorySync.GlobalSettings.avatarUserSettings:type_name -> WAWebProtobufsHistorySync.AvatarUserSettings
2334
+ 21, // 29: WAWebProtobufsHistorySync.GlobalSettings.individualNotificationSettings:type_name -> WAWebProtobufsHistorySync.NotificationSettings
2335
+ 21, // 30: WAWebProtobufsHistorySync.GlobalSettings.groupNotificationSettings:type_name -> WAWebProtobufsHistorySync.NotificationSettings
2336
+ 26, // 31: WAWebProtobufsHistorySync.GlobalSettings.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
2337
+ 10, // 32: WAWebProtobufsHistorySync.PastParticipants.pastParticipants:type_name -> WAWebProtobufsHistorySync.PastParticipant
2338
+ 33, // [33:33] is the sub-list for method output_type
2339
+ 33, // [33:33] is the sub-list for method input_type
2340
+ 33, // [33:33] is the sub-list for extension type_name
2341
+ 33, // [33:33] is the sub-list for extension extendee
2342
+ 0, // [0:33] is the sub-list for field type_name
2021
2343
  }
2022
2344
 
2023
2345
  func init() { file_waHistorySync_WAWebProtobufsHistorySync_proto_init() }
@@ -2029,9 +2351,9 @@ func file_waHistorySync_WAWebProtobufsHistorySync_proto_init() {
2029
2351
  out := protoimpl.TypeBuilder{
2030
2352
  File: protoimpl.DescBuilder{
2031
2353
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
2032
- RawDescriptor: file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDesc,
2354
+ RawDescriptor: unsafe.Slice(unsafe.StringData(file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDesc), len(file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDesc)),
2033
2355
  NumEnums: 7,
2034
- NumMessages: 14,
2356
+ NumMessages: 15,
2035
2357
  NumExtensions: 0,
2036
2358
  NumServices: 0,
2037
2359
  },
@@ -2041,7 +2363,6 @@ func file_waHistorySync_WAWebProtobufsHistorySync_proto_init() {
2041
2363
  MessageInfos: file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes,
2042
2364
  }.Build()
2043
2365
  File_waHistorySync_WAWebProtobufsHistorySync_proto = out.File
2044
- file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDesc = nil
2045
2366
  file_waHistorySync_WAWebProtobufsHistorySync_proto_goTypes = nil
2046
2367
  file_waHistorySync_WAWebProtobufsHistorySync_proto_depIdxs = nil
2047
2368
  }