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
@@ -50,6 +50,10 @@ message Armadillo {
50
50
  }
51
51
 
52
52
  message ApplicationData {
53
+ message MessageHistoryDocumentMessage {
54
+ optional WACommon.SubProtocol document = 1;
55
+ }
56
+
53
57
  message AIBotResponseMessage {
54
58
  optional string summonToken = 1;
55
59
  optional string messageText = 2;
@@ -118,6 +122,7 @@ message Armadillo {
118
122
  oneof applicationData {
119
123
  MetadataSyncNotification metadataSync = 1;
120
124
  AIBotResponseMessage aiBotResponse = 2;
125
+ MessageHistoryDocumentMessage messageHistoryDocumentMessage = 3;
121
126
  }
122
127
  }
123
128
 
@@ -154,10 +159,6 @@ message Armadillo {
154
159
  optional WAArmadilloXMA.ExtendedContentMessage extendedContentMessage = 5;
155
160
  }
156
161
 
157
- message MessageHistoryDocumentMessage {
158
- optional WACommon.SubProtocol document = 1;
159
- }
160
-
161
162
  message NetworkVerificationMessage {
162
163
  optional string codeText = 1;
163
164
  }
@@ -249,7 +250,6 @@ message Armadillo {
249
250
  NoteReplyMessage noteReplyMessage = 13;
250
251
  RavenMessage ravenMessageMsgr = 14;
251
252
  NetworkVerificationMessage networkVerificationMessage = 15;
252
- MessageHistoryDocumentMessage messageHistoryDocumentMessage = 16;
253
253
  }
254
254
  }
255
255
 
@@ -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: waArmadilloXMA/WAArmadilloXMA.proto
6
6
 
@@ -9,13 +9,12 @@ package waArmadilloXMA
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
  waCommon "go.mau.fi/whatsmeow/proto/waCommon"
17
-
18
- _ "embed"
19
18
  )
20
19
 
21
20
  const (
@@ -507,6 +506,7 @@ type ExtendedContentMessage struct {
507
506
  ContentRef *string `protobuf:"bytes,23,opt,name=contentRef" json:"contentRef,omitempty"`
508
507
  MentionedJID []string `protobuf:"bytes,24,rep,name=mentionedJID" json:"mentionedJID,omitempty"`
509
508
  Commands []*waCommon.Command `protobuf:"bytes,25,rep,name=commands" json:"commands,omitempty"`
509
+ Mentions []*waCommon.Mention `protobuf:"bytes,26,rep,name=mentions" json:"mentions,omitempty"`
510
510
  unknownFields protoimpl.UnknownFields
511
511
  sizeCache protoimpl.SizeCache
512
512
  }
@@ -716,6 +716,13 @@ func (x *ExtendedContentMessage) GetCommands() []*waCommon.Command {
716
716
  return nil
717
717
  }
718
718
 
719
+ func (x *ExtendedContentMessage) GetMentions() []*waCommon.Mention {
720
+ if x != nil {
721
+ return x.Mentions
722
+ }
723
+ return nil
724
+ }
725
+
719
726
  type ExtendedContentMessage_CTA struct {
720
727
  state protoimpl.MessageState `protogen:"open.v1"`
721
728
  ButtonType *ExtendedContentMessage_CtaButtonType `protobuf:"varint,1,opt,name=buttonType,enum=WAArmadilloXMA.ExtendedContentMessage_CtaButtonType" json:"buttonType,omitempty"`
@@ -802,17 +809,152 @@ func (x *ExtendedContentMessage_CTA) GetActionContentBlob() string {
802
809
 
803
810
  var File_waArmadilloXMA_WAArmadilloXMA_proto protoreflect.FileDescriptor
804
811
 
805
- //go:embed WAArmadilloXMA.pb.raw
806
- var file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc []byte
812
+ const file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc = "" +
813
+ "\n" +
814
+ "#waArmadilloXMA/WAArmadilloXMA.proto\x12\x0eWAArmadilloXMA\x1a\x17waCommon/WACommon.proto\"\xf0\x1c\n" +
815
+ "\x16ExtendedContentMessage\x12C\n" +
816
+ "\x11associatedMessage\x18\x01 \x01(\v2\x15.WACommon.SubProtocolR\x11associatedMessage\x12Z\n" +
817
+ "\n" +
818
+ "targetType\x18\x02 \x01(\x0e2:.WAArmadilloXMA.ExtendedContentMessage.ExtendedContentTypeR\n" +
819
+ "targetType\x12&\n" +
820
+ "\x0etargetUsername\x18\x03 \x01(\tR\x0etargetUsername\x12\x1a\n" +
821
+ "\btargetID\x18\x04 \x01(\tR\btargetID\x120\n" +
822
+ "\x13targetExpiringAtSec\x18\x05 \x01(\x03R\x13targetExpiringAtSec\x12Z\n" +
823
+ "\rxmaLayoutType\x18\x06 \x01(\x0e24.WAArmadilloXMA.ExtendedContentMessage.XmaLayoutTypeR\rxmaLayoutType\x12>\n" +
824
+ "\x04ctas\x18\a \x03(\v2*.WAArmadilloXMA.ExtendedContentMessage.CTAR\x04ctas\x121\n" +
825
+ "\bpreviews\x18\b \x03(\v2\x15.WACommon.SubProtocolR\bpreviews\x12\x1c\n" +
826
+ "\ttitleText\x18\t \x01(\tR\ttitleText\x12\"\n" +
827
+ "\fsubtitleText\x18\n" +
828
+ " \x01(\tR\fsubtitleText\x12.\n" +
829
+ "\x12maxTitleNumOfLines\x18\v \x01(\rR\x12maxTitleNumOfLines\x124\n" +
830
+ "\x15maxSubtitleNumOfLines\x18\f \x01(\rR\x15maxSubtitleNumOfLines\x12/\n" +
831
+ "\afavicon\x18\r \x01(\v2\x15.WACommon.SubProtocolR\afavicon\x127\n" +
832
+ "\vheaderImage\x18\x0e \x01(\v2\x15.WACommon.SubProtocolR\vheaderImage\x12 \n" +
833
+ "\vheaderTitle\x18\x0f \x01(\tR\vheaderTitle\x12c\n" +
834
+ "\x10overlayIconGlyph\x18\x10 \x01(\x0e27.WAArmadilloXMA.ExtendedContentMessage.OverlayIconGlyphR\x10overlayIconGlyph\x12\"\n" +
835
+ "\foverlayTitle\x18\x11 \x01(\tR\foverlayTitle\x12.\n" +
836
+ "\x12overlayDescription\x18\x12 \x01(\tR\x12overlayDescription\x12,\n" +
837
+ "\x11sentWithMessageID\x18\x13 \x01(\tR\x11sentWithMessageID\x12 \n" +
838
+ "\vmessageText\x18\x14 \x01(\tR\vmessageText\x12&\n" +
839
+ "\x0eheaderSubtitle\x18\x15 \x01(\tR\x0eheaderSubtitle\x12\"\n" +
840
+ "\fxmaDataclass\x18\x16 \x01(\tR\fxmaDataclass\x12\x1e\n" +
841
+ "\n" +
842
+ "contentRef\x18\x17 \x01(\tR\n" +
843
+ "contentRef\x12\"\n" +
844
+ "\fmentionedJID\x18\x18 \x03(\tR\fmentionedJID\x12-\n" +
845
+ "\bcommands\x18\x19 \x03(\v2\x11.WACommon.CommandR\bcommands\x12-\n" +
846
+ "\bmentions\x18\x1a \x03(\v2\x11.WACommon.MentionR\bmentions\x1a\xf5\x01\n" +
847
+ "\x03CTA\x12T\n" +
848
+ "\n" +
849
+ "buttonType\x18\x01 \x01(\x0e24.WAArmadilloXMA.ExtendedContentMessage.CtaButtonTypeR\n" +
850
+ "buttonType\x12\x14\n" +
851
+ "\x05title\x18\x02 \x01(\tR\x05title\x12\x1c\n" +
852
+ "\tactionURL\x18\x03 \x01(\tR\tactionURL\x12\x1c\n" +
853
+ "\tnativeURL\x18\x04 \x01(\tR\tnativeURL\x12\x18\n" +
854
+ "\actaType\x18\x05 \x01(\tR\actaType\x12,\n" +
855
+ "\x11actionContentBlob\x18\x06 \x01(\tR\x11actionContentBlob\"\xa1\x01\n" +
856
+ "\x10OverlayIconGlyph\x12\b\n" +
857
+ "\x04INFO\x10\x00\x12\v\n" +
858
+ "\aEYE_OFF\x10\x01\x12\f\n" +
859
+ "\bNEWS_OFF\x10\x02\x12\v\n" +
860
+ "\aWARNING\x10\x03\x12\v\n" +
861
+ "\aPRIVATE\x10\x04\x12\b\n" +
862
+ "\x04NONE\x10\x05\x12\x0f\n" +
863
+ "\vMEDIA_LABEL\x10\x06\x12\x0e\n" +
864
+ "\n" +
865
+ "POST_COVER\x10\a\x12\x0e\n" +
866
+ "\n" +
867
+ "POST_LABEL\x10\b\x12\x13\n" +
868
+ "\x0fWARNING_SCREENS\x10\t\" \n" +
869
+ "\rCtaButtonType\x12\x0f\n" +
870
+ "\vOPEN_NATIVE\x10\v\"b\n" +
871
+ "\rXmaLayoutType\x12\n" +
872
+ "\n" +
873
+ "\x06SINGLE\x10\x00\x12\v\n" +
874
+ "\aHSCROLL\x10\x01\x12\f\n" +
875
+ "\bPORTRAIT\x10\x03\x12\x11\n" +
876
+ "\rSTANDARD_DXMA\x10\f\x12\r\n" +
877
+ "\tLIST_DXMA\x10\x0f\x12\b\n" +
878
+ "\x04GRID\x10\x10\"\xa2\x0e\n" +
879
+ "\x13ExtendedContentType\x12\x0f\n" +
880
+ "\vUNSUPPORTED\x10\x00\x12\x1a\n" +
881
+ "\x16IG_STORY_PHOTO_MENTION\x10\x04\x12\x1e\n" +
882
+ "\x1aIG_SINGLE_IMAGE_POST_SHARE\x10\t\x12\x16\n" +
883
+ "\x12IG_MULTIPOST_SHARE\x10\n" +
884
+ "\x12\x1e\n" +
885
+ "\x1aIG_SINGLE_VIDEO_POST_SHARE\x10\v\x12\x18\n" +
886
+ "\x14IG_STORY_PHOTO_SHARE\x10\f\x12\x18\n" +
887
+ "\x14IG_STORY_VIDEO_SHARE\x10\r\x12\x12\n" +
888
+ "\x0eIG_CLIPS_SHARE\x10\x0e\x12\x11\n" +
889
+ "\rIG_IGTV_SHARE\x10\x0f\x12\x11\n" +
890
+ "\rIG_SHOP_SHARE\x10\x10\x12\x14\n" +
891
+ "\x10IG_PROFILE_SHARE\x10\x13\x12\"\n" +
892
+ "\x1eIG_STORY_PHOTO_HIGHLIGHT_SHARE\x10\x14\x12\"\n" +
893
+ "\x1eIG_STORY_VIDEO_HIGHLIGHT_SHARE\x10\x15\x12\x12\n" +
894
+ "\x0eIG_STORY_REPLY\x10\x16\x12\x15\n" +
895
+ "\x11IG_STORY_REACTION\x10\x17\x12\x1a\n" +
896
+ "\x16IG_STORY_VIDEO_MENTION\x10\x18\x12\x1c\n" +
897
+ "\x18IG_STORY_HIGHLIGHT_REPLY\x10\x19\x12\x1f\n" +
898
+ "\x1bIG_STORY_HIGHLIGHT_REACTION\x10\x1a\x12\x14\n" +
899
+ "\x10IG_EXTERNAL_LINK\x10\x1b\x12\x15\n" +
900
+ "\x11IG_RECEIVER_FETCH\x10\x1c\x12\x12\n" +
901
+ "\rFB_FEED_SHARE\x10\xe8\a\x12\x13\n" +
902
+ "\x0eFB_STORY_REPLY\x10\xe9\a\x12\x13\n" +
903
+ "\x0eFB_STORY_SHARE\x10\xea\a\x12\x15\n" +
904
+ "\x10FB_STORY_MENTION\x10\xeb\a\x12\x18\n" +
905
+ "\x13FB_FEED_VIDEO_SHARE\x10\xec\a\x12\x1c\n" +
906
+ "\x17FB_GAMING_CUSTOM_UPDATE\x10\xed\a\x12\x1c\n" +
907
+ "\x17FB_PRODUCER_STORY_REPLY\x10\xee\a\x12\r\n" +
908
+ "\bFB_EVENT\x10\xef\a\x12\x1f\n" +
909
+ "\x1aFB_FEED_POST_PRIVATE_REPLY\x10\xf0\a\x12\r\n" +
910
+ "\bFB_SHORT\x10\xf1\a\x12\x1d\n" +
911
+ "\x18FB_COMMENT_MENTION_SHARE\x10\xf2\a\x12\x14\n" +
912
+ "\x0fFB_POST_MENTION\x10\xf3\a\x12\x1c\n" +
913
+ "\x17MSG_EXTERNAL_LINK_SHARE\x10\xd0\x0f\x12\x14\n" +
914
+ "\x0fMSG_P2P_PAYMENT\x10\xd1\x0f\x12\x19\n" +
915
+ "\x14MSG_LOCATION_SHARING\x10\xd2\x0f\x12\x1c\n" +
916
+ "\x17MSG_LOCATION_SHARING_V2\x10\xd3\x0f\x12,\n" +
917
+ "'MSG_HIGHLIGHTS_TAB_FRIEND_UPDATES_REPLY\x10\xd4\x0f\x12)\n" +
918
+ "$MSG_HIGHLIGHTS_TAB_LOCAL_EVENT_REPLY\x10\xd5\x0f\x12\x17\n" +
919
+ "\x12MSG_RECEIVER_FETCH\x10\xd6\x0f\x12\x17\n" +
920
+ "\x12MSG_IG_MEDIA_SHARE\x10\xd7\x0f\x12&\n" +
921
+ "!MSG_GEN_AI_SEARCH_PLUGIN_RESPONSE\x10\xd8\x0f\x12\x13\n" +
922
+ "\x0eMSG_REELS_LIST\x10\xd9\x0f\x12\x10\n" +
923
+ "\vMSG_CONTACT\x10\xda\x0f\x12\x1b\n" +
924
+ "\x16MSG_THREADS_POST_SHARE\x10\xdb\x0f\x12\r\n" +
925
+ "\bMSG_FILE\x10\xdc\x0f\x12\x17\n" +
926
+ "\x12MSG_AVATAR_DETAILS\x10\xdd\x0f\x12\x13\n" +
927
+ "\x0eMSG_AI_CONTACT\x10\xde\x0f\x12\x17\n" +
928
+ "\x12MSG_MEMORIES_SHARE\x10\xdf\x0f\x12\x1b\n" +
929
+ "\x16MSG_SHARED_ALBUM_REPLY\x10\xe0\x0f\x12\x15\n" +
930
+ "\x10MSG_SHARED_ALBUM\x10\xe1\x0f\x12\x18\n" +
931
+ "\x13MSG_OCCAMADILLO_XMA\x10\xe2\x0f\x12\x1c\n" +
932
+ "\x17MSG_GEN_AI_SUBSCRIPTION\x10\xe5\x0f\x12\x18\n" +
933
+ "\x13MSG_GEN_AI_REMINDER\x10\xe6\x0f\x12(\n" +
934
+ "#MSG_GEN_AI_MEMU_ONBOARDING_RESPONSE\x10\xe7\x0f\x12\x13\n" +
935
+ "\x0eMSG_NOTE_REPLY\x10\xe8\x0f\x12\x15\n" +
936
+ "\x10MSG_NOTE_MENTION\x10\xe9\x0f\x12\x13\n" +
937
+ "\x0eRTC_AUDIO_CALL\x10\xb8\x17\x12\x13\n" +
938
+ "\x0eRTC_VIDEO_CALL\x10\xb9\x17\x12\x1a\n" +
939
+ "\x15RTC_MISSED_AUDIO_CALL\x10\xba\x17\x12\x1a\n" +
940
+ "\x15RTC_MISSED_VIDEO_CALL\x10\xbb\x17\x12\x19\n" +
941
+ "\x14RTC_GROUP_AUDIO_CALL\x10\xbc\x17\x12\x19\n" +
942
+ "\x14RTC_GROUP_VIDEO_CALL\x10\xbd\x17\x12 \n" +
943
+ "\x1bRTC_MISSED_GROUP_AUDIO_CALL\x10\xbe\x17\x12 \n" +
944
+ "\x1bRTC_MISSED_GROUP_VIDEO_CALL\x10\xbf\x17\x12\x1b\n" +
945
+ "\x16RTC_ONGOING_AUDIO_CALL\x10\xc0\x17\x12\x1b\n" +
946
+ "\x16RTC_ONGOING_VIDEO_CALL\x10\xc1\x17\x12 \n" +
947
+ "\x1bMSG_RECEIVER_FETCH_FALLBACK\x10\xd1\x17\x12\x1a\n" +
948
+ "\x15DATACLASS_SENDER_COPY\x10\xa0\x1fB*Z(go.mau.fi/whatsmeow/proto/waArmadilloXMA"
807
949
 
808
950
  var (
809
951
  file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescOnce sync.Once
810
- file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescData = file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc
952
+ file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescData []byte
811
953
  )
812
954
 
813
955
  func file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescGZIP() []byte {
814
956
  file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescOnce.Do(func() {
815
- file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescData = protoimpl.X.CompressGZIP(file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescData)
957
+ file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc), len(file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc)))
816
958
  })
817
959
  return file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescData
818
960
  }
@@ -828,6 +970,7 @@ var file_waArmadilloXMA_WAArmadilloXMA_proto_goTypes = []any{
828
970
  (*ExtendedContentMessage_CTA)(nil), // 5: WAArmadilloXMA.ExtendedContentMessage.CTA
829
971
  (*waCommon.SubProtocol)(nil), // 6: WACommon.SubProtocol
830
972
  (*waCommon.Command)(nil), // 7: WACommon.Command
973
+ (*waCommon.Mention)(nil), // 8: WACommon.Mention
831
974
  }
832
975
  var file_waArmadilloXMA_WAArmadilloXMA_proto_depIdxs = []int32{
833
976
  6, // 0: WAArmadilloXMA.ExtendedContentMessage.associatedMessage:type_name -> WACommon.SubProtocol
@@ -839,12 +982,13 @@ var file_waArmadilloXMA_WAArmadilloXMA_proto_depIdxs = []int32{
839
982
  6, // 6: WAArmadilloXMA.ExtendedContentMessage.headerImage:type_name -> WACommon.SubProtocol
840
983
  0, // 7: WAArmadilloXMA.ExtendedContentMessage.overlayIconGlyph:type_name -> WAArmadilloXMA.ExtendedContentMessage.OverlayIconGlyph
841
984
  7, // 8: WAArmadilloXMA.ExtendedContentMessage.commands:type_name -> WACommon.Command
842
- 1, // 9: WAArmadilloXMA.ExtendedContentMessage.CTA.buttonType:type_name -> WAArmadilloXMA.ExtendedContentMessage.CtaButtonType
843
- 10, // [10:10] is the sub-list for method output_type
844
- 10, // [10:10] is the sub-list for method input_type
845
- 10, // [10:10] is the sub-list for extension type_name
846
- 10, // [10:10] is the sub-list for extension extendee
847
- 0, // [0:10] is the sub-list for field type_name
985
+ 8, // 9: WAArmadilloXMA.ExtendedContentMessage.mentions:type_name -> WACommon.Mention
986
+ 1, // 10: WAArmadilloXMA.ExtendedContentMessage.CTA.buttonType:type_name -> WAArmadilloXMA.ExtendedContentMessage.CtaButtonType
987
+ 11, // [11:11] is the sub-list for method output_type
988
+ 11, // [11:11] is the sub-list for method input_type
989
+ 11, // [11:11] is the sub-list for extension type_name
990
+ 11, // [11:11] is the sub-list for extension extendee
991
+ 0, // [0:11] is the sub-list for field type_name
848
992
  }
849
993
 
850
994
  func init() { file_waArmadilloXMA_WAArmadilloXMA_proto_init() }
@@ -856,7 +1000,7 @@ func file_waArmadilloXMA_WAArmadilloXMA_proto_init() {
856
1000
  out := protoimpl.TypeBuilder{
857
1001
  File: protoimpl.DescBuilder{
858
1002
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
859
- RawDescriptor: file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc,
1003
+ RawDescriptor: unsafe.Slice(unsafe.StringData(file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc), len(file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc)),
860
1004
  NumEnums: 4,
861
1005
  NumMessages: 2,
862
1006
  NumExtensions: 0,
@@ -868,7 +1012,6 @@ func file_waArmadilloXMA_WAArmadilloXMA_proto_init() {
868
1012
  MessageInfos: file_waArmadilloXMA_WAArmadilloXMA_proto_msgTypes,
869
1013
  }.Build()
870
1014
  File_waArmadilloXMA_WAArmadilloXMA_proto = out.File
871
- file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc = nil
872
1015
  file_waArmadilloXMA_WAArmadilloXMA_proto_goTypes = nil
873
1016
  file_waArmadilloXMA_WAArmadilloXMA_proto_depIdxs = nil
874
1017
  }
@@ -136,4 +136,5 @@ message ExtendedContentMessage {
136
136
  optional string contentRef = 23;
137
137
  repeated string mentionedJID = 24;
138
138
  repeated WACommon.Command commands = 25;
139
+ repeated WACommon.Mention mentions = 26;
139
140
  }
@@ -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: waCert/WACert.proto
6
6
 
@@ -9,11 +9,10 @@ package waCert
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
- _ "embed"
17
16
  )
18
17
 
19
18
  const (
@@ -333,17 +332,39 @@ func (x *CertChain_NoiseCertificate_Details) GetNotAfter() uint64 {
333
332
 
334
333
  var File_waCert_WACert_proto protoreflect.FileDescriptor
335
334
 
336
- //go:embed WACert.pb.raw
337
- var file_waCert_WACert_proto_rawDesc []byte
335
+ const file_waCert_WACert_proto_rawDesc = "" +
336
+ "\n" +
337
+ "\x13waCert/WACert.proto\x12\x06WACert\"\xcb\x01\n" +
338
+ "\x10NoiseCertificate\x12\x18\n" +
339
+ "\adetails\x18\x01 \x01(\fR\adetails\x12\x1c\n" +
340
+ "\tsignature\x18\x02 \x01(\fR\tsignature\x1a\x7f\n" +
341
+ "\aDetails\x12\x16\n" +
342
+ "\x06serial\x18\x01 \x01(\rR\x06serial\x12\x16\n" +
343
+ "\x06issuer\x18\x02 \x01(\tR\x06issuer\x12\x18\n" +
344
+ "\aexpires\x18\x03 \x01(\x04R\aexpires\x12\x18\n" +
345
+ "\asubject\x18\x04 \x01(\tR\asubject\x12\x10\n" +
346
+ "\x03key\x18\x05 \x01(\fR\x03key\"\xec\x02\n" +
347
+ "\tCertChain\x126\n" +
348
+ "\x04leaf\x18\x01 \x01(\v2\".WACert.CertChain.NoiseCertificateR\x04leaf\x12F\n" +
349
+ "\fintermediate\x18\x02 \x01(\v2\".WACert.CertChain.NoiseCertificateR\fintermediate\x1a\xde\x01\n" +
350
+ "\x10NoiseCertificate\x12\x18\n" +
351
+ "\adetails\x18\x01 \x01(\fR\adetails\x12\x1c\n" +
352
+ "\tsignature\x18\x02 \x01(\fR\tsignature\x1a\x91\x01\n" +
353
+ "\aDetails\x12\x16\n" +
354
+ "\x06serial\x18\x01 \x01(\rR\x06serial\x12\"\n" +
355
+ "\fissuerSerial\x18\x02 \x01(\rR\fissuerSerial\x12\x10\n" +
356
+ "\x03key\x18\x03 \x01(\fR\x03key\x12\x1c\n" +
357
+ "\tnotBefore\x18\x04 \x01(\x04R\tnotBefore\x12\x1a\n" +
358
+ "\bnotAfter\x18\x05 \x01(\x04R\bnotAfterB\"Z go.mau.fi/whatsmeow/proto/waCert"
338
359
 
339
360
  var (
340
361
  file_waCert_WACert_proto_rawDescOnce sync.Once
341
- file_waCert_WACert_proto_rawDescData = file_waCert_WACert_proto_rawDesc
362
+ file_waCert_WACert_proto_rawDescData []byte
342
363
  )
343
364
 
344
365
  func file_waCert_WACert_proto_rawDescGZIP() []byte {
345
366
  file_waCert_WACert_proto_rawDescOnce.Do(func() {
346
- file_waCert_WACert_proto_rawDescData = protoimpl.X.CompressGZIP(file_waCert_WACert_proto_rawDescData)
367
+ file_waCert_WACert_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waCert_WACert_proto_rawDesc), len(file_waCert_WACert_proto_rawDesc)))
347
368
  })
348
369
  return file_waCert_WACert_proto_rawDescData
349
370
  }
@@ -375,7 +396,7 @@ func file_waCert_WACert_proto_init() {
375
396
  out := protoimpl.TypeBuilder{
376
397
  File: protoimpl.DescBuilder{
377
398
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
378
- RawDescriptor: file_waCert_WACert_proto_rawDesc,
399
+ RawDescriptor: unsafe.Slice(unsafe.StringData(file_waCert_WACert_proto_rawDesc), len(file_waCert_WACert_proto_rawDesc)),
379
400
  NumEnums: 0,
380
401
  NumMessages: 5,
381
402
  NumExtensions: 0,
@@ -386,7 +407,6 @@ func file_waCert_WACert_proto_init() {
386
407
  MessageInfos: file_waCert_WACert_proto_msgTypes,
387
408
  }.Build()
388
409
  File_waCert_WACert_proto = out.File
389
- file_waCert_WACert_proto_rawDesc = nil
390
410
  file_waCert_WACert_proto_goTypes = nil
391
411
  file_waCert_WACert_proto_depIdxs = nil
392
412
  }
@@ -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: waChatLockSettings/WAProtobufsChatLockSettings.proto
6
6
 
@@ -9,13 +9,12 @@ package waChatLockSettings
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
  waUserPassword "go.mau.fi/whatsmeow/proto/waUserPassword"
17
-
18
- _ "embed"
19
18
  )
20
19
 
21
20
  const (
@@ -79,17 +78,23 @@ func (x *ChatLockSettings) GetSecretCode() *waUserPassword.UserPassword {
79
78
 
80
79
  var File_waChatLockSettings_WAProtobufsChatLockSettings_proto protoreflect.FileDescriptor
81
80
 
82
- //go:embed WAProtobufsChatLockSettings.pb.raw
83
- var file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDesc []byte
81
+ const file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDesc = "" +
82
+ "\n" +
83
+ "4waChatLockSettings/WAProtobufsChatLockSettings.proto\x12\x1bWAProtobufsChatLockSettings\x1a,waUserPassword/WAProtobufsUserPassword.proto\"\x83\x01\n" +
84
+ "\x10ChatLockSettings\x12(\n" +
85
+ "\x0fhideLockedChats\x18\x01 \x01(\bR\x0fhideLockedChats\x12E\n" +
86
+ "\n" +
87
+ "secretCode\x18\x02 \x01(\v2%.WAProtobufsUserPassword.UserPasswordR\n" +
88
+ "secretCodeB.Z,go.mau.fi/whatsmeow/proto/waChatLockSettings"
84
89
 
85
90
  var (
86
91
  file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDescOnce sync.Once
87
- file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDescData = file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDesc
92
+ file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDescData []byte
88
93
  )
89
94
 
90
95
  func file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDescGZIP() []byte {
91
96
  file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDescOnce.Do(func() {
92
- file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDescData = protoimpl.X.CompressGZIP(file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDescData)
97
+ file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDesc), len(file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDesc)))
93
98
  })
94
99
  return file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDescData
95
100
  }
@@ -117,7 +122,7 @@ func file_waChatLockSettings_WAProtobufsChatLockSettings_proto_init() {
117
122
  out := protoimpl.TypeBuilder{
118
123
  File: protoimpl.DescBuilder{
119
124
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
120
- RawDescriptor: file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDesc,
125
+ RawDescriptor: unsafe.Slice(unsafe.StringData(file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDesc), len(file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDesc)),
121
126
  NumEnums: 0,
122
127
  NumMessages: 1,
123
128
  NumExtensions: 0,
@@ -128,7 +133,6 @@ func file_waChatLockSettings_WAProtobufsChatLockSettings_proto_init() {
128
133
  MessageInfos: file_waChatLockSettings_WAProtobufsChatLockSettings_proto_msgTypes,
129
134
  }.Build()
130
135
  File_waChatLockSettings_WAProtobufsChatLockSettings_proto = out.File
131
- file_waChatLockSettings_WAProtobufsChatLockSettings_proto_rawDesc = nil
132
136
  file_waChatLockSettings_WAProtobufsChatLockSettings_proto_goTypes = nil
133
137
  file_waChatLockSettings_WAProtobufsChatLockSettings_proto_depIdxs = nil
134
138
  }