slidge-whatsapp 0.2.5__cp311-cp311-manylinux_2_36_aarch64.whl → 0.2.7__cp311-cp311-manylinux_2_36_aarch64.whl

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

Potentially problematic release.


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

Files changed (357) hide show
  1. slidge_whatsapp/config.py +3 -0
  2. slidge_whatsapp/event.go +31 -26
  3. slidge_whatsapp/gateway.go +13 -9
  4. slidge_whatsapp/gateway.py +2 -2
  5. slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.h +170 -170
  6. slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.so +0 -0
  7. slidge_whatsapp/generated/build.py +135 -135
  8. slidge_whatsapp/generated/whatsapp.c +1496 -1496
  9. slidge_whatsapp/generated/whatsapp.go +1137 -1137
  10. slidge_whatsapp/generated/whatsapp.py +1216 -1216
  11. slidge_whatsapp/generated/whatsapp_go.h +170 -170
  12. slidge_whatsapp/go.mod +15 -12
  13. slidge_whatsapp/go.sum +35 -29
  14. slidge_whatsapp/media/media.go +21 -11
  15. slidge_whatsapp/session.go +73 -66
  16. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn.go +4 -4
  17. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_darwin.go +0 -5
  18. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_libinit.go +3 -0
  19. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols.go +40 -20
  20. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/CHANGELOG.md +14 -1
  21. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +2 -2
  22. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/fun.go +10 -2
  23. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib.go +1 -1
  24. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_unix.go +1 -1
  25. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_windows.go +1 -1
  26. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/README.md +2 -7
  27. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/callback.go +2 -1
  28. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +8510 -5090
  29. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +344 -150
  30. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3.go +57 -23
  31. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.c +4 -0
  32. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.go +4 -0
  33. slidge_whatsapp/vendor/github.com/petermattis/goid/.gitignore +4 -0
  34. slidge_whatsapp/vendor/github.com/petermattis/goid/LICENSE +202 -0
  35. slidge_whatsapp/vendor/github.com/petermattis/goid/README.md +4 -0
  36. slidge_whatsapp/vendor/github.com/petermattis/goid/goid.go +35 -0
  37. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_gccgo.go +26 -0
  38. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.3.c +23 -0
  39. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.3.go +22 -0
  40. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.4.go +35 -0
  41. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.4.s +18 -0
  42. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.5.go +28 -0
  43. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.5.s +44 -0
  44. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_slow.go +24 -0
  45. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_gccgo_go1.8.go +17 -0
  46. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.23.go +38 -0
  47. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.5.go +57 -0
  48. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.6.go +43 -0
  49. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.9.go +37 -0
  50. slidge_whatsapp/vendor/github.com/rs/zerolog/CONTRIBUTING.md +43 -0
  51. slidge_whatsapp/vendor/github.com/rs/zerolog/README.md +31 -0
  52. slidge_whatsapp/vendor/github.com/rs/zerolog/console.go +20 -5
  53. slidge_whatsapp/vendor/github.com/rs/zerolog/log/log.go +131 -0
  54. slidge_whatsapp/vendor/github.com/rs/zerolog/log.go +1 -1
  55. slidge_whatsapp/vendor/github.com/rs/zerolog/sampler.go +4 -1
  56. slidge_whatsapp/vendor/github.com/rs/zerolog/writer.go +9 -0
  57. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupCipher.go +17 -6
  58. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupSessionBuilder.go +17 -7
  59. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/store/SenderKeyStore.go +4 -2
  60. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/chain/ChainKey.go +1 -0
  61. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/identity/IdentityKey.go +1 -0
  62. slidge_whatsapp/vendor/go.mau.fi/libsignal/logger/DefaultLogger.go +2 -2
  63. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/FingerprintProtocol.pb.go +3 -2
  64. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/LocalStorageProtocol.pb.go +3 -2
  65. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/WhisperTextProtocol.pb.go +3 -2
  66. slidge_whatsapp/vendor/go.mau.fi/libsignal/session/Session.go +41 -17
  67. slidge_whatsapp/vendor/go.mau.fi/libsignal/session/SessionCipher.go +64 -30
  68. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/IdentityKeyStore.go +5 -3
  69. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/MessageKeyStore.go +6 -4
  70. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/PreKeyStore.go +6 -4
  71. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SessionStore.go +8 -6
  72. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SignedPreKeyStore.go +7 -5
  73. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/connlog.go +257 -0
  74. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/database.go +309 -0
  75. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/iter.go +233 -0
  76. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/json.go +47 -0
  77. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/log.go +129 -0
  78. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/massinsert.go +164 -0
  79. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/queryhelper.go +137 -0
  80. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/reflectscan.go +30 -0
  81. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/transaction.go +180 -0
  82. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgrades.go +250 -0
  83. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgradetable.go +331 -0
  84. slidge_whatsapp/vendor/go.mau.fi/util/exerrors/dualerror.go +33 -0
  85. slidge_whatsapp/vendor/go.mau.fi/util/exerrors/must.go +23 -0
  86. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/cors.go +32 -0
  87. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/handleerrors.go +64 -0
  88. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/json.go +36 -0
  89. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/middleware.go +30 -0
  90. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/networkerror.go +37 -0
  91. slidge_whatsapp/vendor/go.mau.fi/util/exstrings/stringutil.go +76 -0
  92. slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +88 -0
  93. slidge_whatsapp/vendor/go.mau.fi/util/exsync/returnonce.go +25 -0
  94. slidge_whatsapp/vendor/go.mau.fi/util/exsync/ringbuffer.go +139 -0
  95. slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncmap.go +94 -0
  96. slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncset.go +136 -0
  97. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/callermarshal.go +28 -0
  98. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/defaults.go +32 -0
  99. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/generics.go +45 -0
  100. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/writer.go +81 -0
  101. slidge_whatsapp/vendor/go.mau.fi/util/ptr/ptr.go +43 -0
  102. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +27 -26
  103. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +4 -3
  104. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/keys.go +5 -4
  105. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +27 -25
  106. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +40 -7
  107. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/encoder.go +1 -1
  108. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/broadcast.go +5 -4
  109. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +1 -1
  110. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +119 -37
  111. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +29 -11
  112. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +63 -30
  113. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +74 -34
  114. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +1 -0
  115. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +61 -31
  116. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +188 -152
  117. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +3 -2
  118. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaconn.go +5 -3
  119. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaretry.go +2 -1
  120. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +444 -135
  121. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +118 -31
  122. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +78 -42
  123. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +7 -4
  124. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +42 -18
  125. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +9 -5
  126. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +2 -1
  127. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/privacysettings.go +10 -11
  128. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/extra.go +7 -0
  129. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go +983 -0
  130. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.proto +85 -0
  131. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/extra.go +3 -0
  132. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.pb.go +197 -0
  133. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.proto +13 -0
  134. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.pb.go +279 -0
  135. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.proto +21 -0
  136. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.pb.go +137 -0
  137. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.proto +10 -0
  138. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.pb.go +313 -0
  139. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.proto +27 -0
  140. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.pb.go +1299 -0
  141. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto +112 -0
  142. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.pb.go +514 -0
  143. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.proto +47 -0
  144. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.pb.go +123 -0
  145. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.proto +7 -0
  146. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/extra.go +3 -0
  147. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.pb.go +720 -0
  148. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.proto +59 -0
  149. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/extra.go +3 -0
  150. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.pb.go +365 -0
  151. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.proto +33 -0
  152. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.pb.go +1238 -0
  153. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.proto +105 -0
  154. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.go +39 -9
  155. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.go +354 -175
  156. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.proto +5 -5
  157. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +170 -15
  158. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +4 -0
  159. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.go +29 -9
  160. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.go +13 -9
  161. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.go +344 -31
  162. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.proto +26 -0
  163. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/{WAWebProtobufsCompanionReg.pb.go → WACompanionReg.pb.go} +184 -89
  164. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/{WAWebProtobufsCompanionReg.proto → WACompanionReg.proto} +2 -1
  165. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.go +173 -9
  166. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +78 -16
  167. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +5 -0
  168. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +7428 -2151
  169. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +373 -44
  170. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +456 -135
  171. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +14 -0
  172. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.pb.go +198 -0
  173. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.proto +14 -0
  174. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.go +162 -9
  175. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.proto +1 -0
  176. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.go +32 -9
  177. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.proto +1 -0
  178. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.go +192 -52
  179. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.proto +8 -0
  180. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.go +60 -9
  181. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/extra.go +7 -6
  182. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.go +39 -9
  183. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.go +61 -9
  184. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +800 -0
  185. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +72 -0
  186. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +1344 -438
  187. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +52 -0
  188. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.go +27 -9
  189. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.go +59 -9
  190. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +382 -78
  191. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +8 -0
  192. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +563 -9
  193. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +4 -0
  194. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +25 -9
  195. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingfields.json +1 -0
  196. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingtoken.go +176 -0
  197. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +39 -21
  198. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +261 -75
  199. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +28 -16
  200. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +3 -1
  201. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +85 -43
  202. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/signal.go +75 -88
  203. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +86 -65
  204. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/lidmap.go +186 -0
  205. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +291 -167
  206. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +155 -0
  207. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/03-message-secrets.sql +11 -0
  208. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/04-privacy-tokens.sql +8 -0
  209. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/05-account-jid-format.sql +2 -0
  210. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/06-facebook-uuid.sql +2 -0
  211. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/07-account-lid.sql +2 -0
  212. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/08-lid-mapping.sql +5 -0
  213. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/09-decryption-buffer.sql +10 -0
  214. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/10-chat-db-lid-migration-ts.sql +2 -0
  215. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/upgrades.go +22 -0
  216. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +107 -56
  217. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/botmap.go +210 -0
  218. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +13 -2
  219. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/group.go +15 -6
  220. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +7 -8
  221. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +18 -0
  222. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/update.go +3 -2
  223. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/upload.go +1 -1
  224. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +47 -29
  225. slidge_whatsapp/vendor/golang.org/x/exp/LICENSE +27 -0
  226. slidge_whatsapp/vendor/golang.org/x/exp/PATENTS +22 -0
  227. slidge_whatsapp/vendor/golang.org/x/exp/constraints/constraints.go +54 -0
  228. slidge_whatsapp/vendor/golang.org/x/net/http/httpguts/guts.go +50 -0
  229. slidge_whatsapp/vendor/golang.org/x/net/http/httpguts/httplex.go +347 -0
  230. slidge_whatsapp/vendor/golang.org/x/net/http2/.gitignore +2 -0
  231. slidge_whatsapp/vendor/golang.org/x/net/http2/ascii.go +53 -0
  232. slidge_whatsapp/vendor/golang.org/x/net/http2/ciphers.go +641 -0
  233. slidge_whatsapp/vendor/golang.org/x/net/http2/client_conn_pool.go +311 -0
  234. slidge_whatsapp/vendor/golang.org/x/net/http2/config.go +122 -0
  235. slidge_whatsapp/vendor/golang.org/x/net/http2/config_go124.go +61 -0
  236. slidge_whatsapp/vendor/golang.org/x/net/http2/config_pre_go124.go +16 -0
  237. slidge_whatsapp/vendor/golang.org/x/net/http2/databuffer.go +149 -0
  238. slidge_whatsapp/vendor/golang.org/x/net/http2/errors.go +145 -0
  239. slidge_whatsapp/vendor/golang.org/x/net/http2/flow.go +120 -0
  240. slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +1702 -0
  241. slidge_whatsapp/vendor/golang.org/x/net/http2/gotrack.go +170 -0
  242. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/encode.go +245 -0
  243. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/hpack.go +523 -0
  244. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/huffman.go +226 -0
  245. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/static_table.go +188 -0
  246. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/tables.go +403 -0
  247. slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +432 -0
  248. slidge_whatsapp/vendor/golang.org/x/net/http2/pipe.go +184 -0
  249. slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +3350 -0
  250. slidge_whatsapp/vendor/golang.org/x/net/http2/timer.go +20 -0
  251. slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +3287 -0
  252. slidge_whatsapp/vendor/golang.org/x/net/http2/unencrypted.go +32 -0
  253. slidge_whatsapp/vendor/golang.org/x/net/http2/write.go +381 -0
  254. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched.go +251 -0
  255. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_priority.go +451 -0
  256. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_random.go +77 -0
  257. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_roundrobin.go +119 -0
  258. slidge_whatsapp/vendor/golang.org/x/net/idna/go118.go +13 -0
  259. slidge_whatsapp/vendor/golang.org/x/net/idna/idna10.0.0.go +769 -0
  260. slidge_whatsapp/vendor/golang.org/x/net/idna/idna9.0.0.go +717 -0
  261. slidge_whatsapp/vendor/golang.org/x/net/idna/pre_go118.go +11 -0
  262. slidge_whatsapp/vendor/golang.org/x/net/idna/punycode.go +217 -0
  263. slidge_whatsapp/vendor/golang.org/x/net/idna/tables10.0.0.go +4559 -0
  264. slidge_whatsapp/vendor/golang.org/x/net/idna/tables11.0.0.go +4653 -0
  265. slidge_whatsapp/vendor/golang.org/x/net/idna/tables12.0.0.go +4733 -0
  266. slidge_whatsapp/vendor/golang.org/x/net/idna/tables13.0.0.go +4959 -0
  267. slidge_whatsapp/vendor/golang.org/x/net/idna/tables15.0.0.go +5144 -0
  268. slidge_whatsapp/vendor/golang.org/x/net/idna/tables9.0.0.go +4486 -0
  269. slidge_whatsapp/vendor/golang.org/x/net/idna/trie.go +51 -0
  270. slidge_whatsapp/vendor/golang.org/x/net/idna/trie12.0.0.go +30 -0
  271. slidge_whatsapp/vendor/golang.org/x/net/idna/trie13.0.0.go +30 -0
  272. slidge_whatsapp/vendor/golang.org/x/net/idna/trieval.go +119 -0
  273. slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/ascii.go +53 -0
  274. slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/headermap.go +115 -0
  275. slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/request.go +467 -0
  276. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +148 -1
  277. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +16 -26
  278. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go +84 -0
  279. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s +20 -0
  280. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go +84 -0
  281. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s +20 -0
  282. slidge_whatsapp/vendor/golang.org/x/sys/windows/security_windows.go +44 -5
  283. slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +4 -2
  284. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +239 -0
  285. slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +9 -0
  286. slidge_whatsapp/vendor/golang.org/x/text/LICENSE +27 -0
  287. slidge_whatsapp/vendor/golang.org/x/text/PATENTS +22 -0
  288. slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule.go +336 -0
  289. slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go +11 -0
  290. slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go +14 -0
  291. slidge_whatsapp/vendor/golang.org/x/text/transform/transform.go +709 -0
  292. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bidi.go +359 -0
  293. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bracket.go +335 -0
  294. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/core.go +1071 -0
  295. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/prop.go +206 -0
  296. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go +1815 -0
  297. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go +1887 -0
  298. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go +1923 -0
  299. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go +1955 -0
  300. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables15.0.0.go +2042 -0
  301. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go +1781 -0
  302. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/trieval.go +48 -0
  303. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/composition.go +512 -0
  304. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/forminfo.go +279 -0
  305. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/input.go +109 -0
  306. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/iter.go +458 -0
  307. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/normalize.go +610 -0
  308. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/readwriter.go +125 -0
  309. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables10.0.0.go +7657 -0
  310. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go +7693 -0
  311. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go +7710 -0
  312. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables13.0.0.go +7760 -0
  313. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables15.0.0.go +7907 -0
  314. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go +7637 -0
  315. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/transform.go +88 -0
  316. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/trie.go +54 -0
  317. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
  318. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +3 -0
  319. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +16 -0
  320. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/{strings_unsafe_go121.go → strings_unsafe.go} +0 -2
  321. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +1 -1
  322. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/merge.go +6 -0
  323. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go +2 -0
  324. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/{value_unsafe_go121.go → value_unsafe.go} +0 -2
  325. slidge_whatsapp/vendor/modules.txt +52 -13
  326. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/METADATA +1 -1
  327. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/RECORD +330 -184
  328. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/WHEEL +1 -1
  329. slidge_whatsapp/vendor/github.com/rs/zerolog/CNAME +0 -1
  330. slidge_whatsapp/vendor/github.com/rs/zerolog/_config.yml +0 -1
  331. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.raw +0 -0
  332. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.raw +0 -0
  333. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.raw +0 -0
  334. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.raw +0 -23
  335. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.raw +0 -7
  336. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.raw +0 -0
  337. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.pb.raw +0 -0
  338. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.raw +0 -0
  339. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.raw +0 -0
  340. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.raw +0 -0
  341. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.raw +0 -0
  342. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.raw +0 -0
  343. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.raw +0 -0
  344. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.raw +0 -0
  345. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.raw +0 -0
  346. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.raw +0 -0
  347. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.raw +0 -0
  348. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.raw +0 -0
  349. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.raw +0 -0
  350. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.raw +0 -0
  351. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.raw +0 -0
  352. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.raw +0 -0
  353. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrade.go +0 -296
  354. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe_go120.go +0 -94
  355. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe_go120.go +0 -98
  356. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/LICENSE +0 -0
  357. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/entry_points.txt +0 -0
@@ -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 (
@@ -261,6 +260,8 @@ const (
261
260
  ExtendedContentMessage_FB_SHORT ExtendedContentMessage_ExtendedContentType = 1009
262
261
  ExtendedContentMessage_FB_COMMENT_MENTION_SHARE ExtendedContentMessage_ExtendedContentType = 1010
263
262
  ExtendedContentMessage_FB_POST_MENTION ExtendedContentMessage_ExtendedContentType = 1011
263
+ ExtendedContentMessage_FB_PROFILE_DIRECTORY_ITEM ExtendedContentMessage_ExtendedContentType = 1013
264
+ ExtendedContentMessage_FB_FEED_POST_REACTION_REPLY ExtendedContentMessage_ExtendedContentType = 1014
264
265
  ExtendedContentMessage_MSG_EXTERNAL_LINK_SHARE ExtendedContentMessage_ExtendedContentType = 2000
265
266
  ExtendedContentMessage_MSG_P2P_PAYMENT ExtendedContentMessage_ExtendedContentType = 2001
266
267
  ExtendedContentMessage_MSG_LOCATION_SHARING ExtendedContentMessage_ExtendedContentType = 2002
@@ -285,6 +286,7 @@ const (
285
286
  ExtendedContentMessage_MSG_GEN_AI_MEMU_ONBOARDING_RESPONSE ExtendedContentMessage_ExtendedContentType = 2023
286
287
  ExtendedContentMessage_MSG_NOTE_REPLY ExtendedContentMessage_ExtendedContentType = 2024
287
288
  ExtendedContentMessage_MSG_NOTE_MENTION ExtendedContentMessage_ExtendedContentType = 2025
289
+ ExtendedContentMessage_GEN_AI_ENTITY ExtendedContentMessage_ExtendedContentType = 2026
288
290
  ExtendedContentMessage_RTC_AUDIO_CALL ExtendedContentMessage_ExtendedContentType = 3000
289
291
  ExtendedContentMessage_RTC_VIDEO_CALL ExtendedContentMessage_ExtendedContentType = 3001
290
292
  ExtendedContentMessage_RTC_MISSED_AUDIO_CALL ExtendedContentMessage_ExtendedContentType = 3002
@@ -334,6 +336,8 @@ var (
334
336
  1009: "FB_SHORT",
335
337
  1010: "FB_COMMENT_MENTION_SHARE",
336
338
  1011: "FB_POST_MENTION",
339
+ 1013: "FB_PROFILE_DIRECTORY_ITEM",
340
+ 1014: "FB_FEED_POST_REACTION_REPLY",
337
341
  2000: "MSG_EXTERNAL_LINK_SHARE",
338
342
  2001: "MSG_P2P_PAYMENT",
339
343
  2002: "MSG_LOCATION_SHARING",
@@ -358,6 +362,7 @@ var (
358
362
  2023: "MSG_GEN_AI_MEMU_ONBOARDING_RESPONSE",
359
363
  2024: "MSG_NOTE_REPLY",
360
364
  2025: "MSG_NOTE_MENTION",
365
+ 2026: "GEN_AI_ENTITY",
361
366
  3000: "RTC_AUDIO_CALL",
362
367
  3001: "RTC_VIDEO_CALL",
363
368
  3002: "RTC_MISSED_AUDIO_CALL",
@@ -404,6 +409,8 @@ var (
404
409
  "FB_SHORT": 1009,
405
410
  "FB_COMMENT_MENTION_SHARE": 1010,
406
411
  "FB_POST_MENTION": 1011,
412
+ "FB_PROFILE_DIRECTORY_ITEM": 1013,
413
+ "FB_FEED_POST_REACTION_REPLY": 1014,
407
414
  "MSG_EXTERNAL_LINK_SHARE": 2000,
408
415
  "MSG_P2P_PAYMENT": 2001,
409
416
  "MSG_LOCATION_SHARING": 2002,
@@ -428,6 +435,7 @@ var (
428
435
  "MSG_GEN_AI_MEMU_ONBOARDING_RESPONSE": 2023,
429
436
  "MSG_NOTE_REPLY": 2024,
430
437
  "MSG_NOTE_MENTION": 2025,
438
+ "GEN_AI_ENTITY": 2026,
431
439
  "RTC_AUDIO_CALL": 3000,
432
440
  "RTC_VIDEO_CALL": 3001,
433
441
  "RTC_MISSED_AUDIO_CALL": 3002,
@@ -507,6 +515,7 @@ type ExtendedContentMessage struct {
507
515
  ContentRef *string `protobuf:"bytes,23,opt,name=contentRef" json:"contentRef,omitempty"`
508
516
  MentionedJID []string `protobuf:"bytes,24,rep,name=mentionedJID" json:"mentionedJID,omitempty"`
509
517
  Commands []*waCommon.Command `protobuf:"bytes,25,rep,name=commands" json:"commands,omitempty"`
518
+ Mentions []*waCommon.Mention `protobuf:"bytes,26,rep,name=mentions" json:"mentions,omitempty"`
510
519
  unknownFields protoimpl.UnknownFields
511
520
  sizeCache protoimpl.SizeCache
512
521
  }
@@ -716,6 +725,13 @@ func (x *ExtendedContentMessage) GetCommands() []*waCommon.Command {
716
725
  return nil
717
726
  }
718
727
 
728
+ func (x *ExtendedContentMessage) GetMentions() []*waCommon.Mention {
729
+ if x != nil {
730
+ return x.Mentions
731
+ }
732
+ return nil
733
+ }
734
+
719
735
  type ExtendedContentMessage_CTA struct {
720
736
  state protoimpl.MessageState `protogen:"open.v1"`
721
737
  ButtonType *ExtendedContentMessage_CtaButtonType `protobuf:"varint,1,opt,name=buttonType,enum=WAArmadilloXMA.ExtendedContentMessage_CtaButtonType" json:"buttonType,omitempty"`
@@ -802,17 +818,155 @@ func (x *ExtendedContentMessage_CTA) GetActionContentBlob() string {
802
818
 
803
819
  var File_waArmadilloXMA_WAArmadilloXMA_proto protoreflect.FileDescriptor
804
820
 
805
- //go:embed WAArmadilloXMA.pb.raw
806
- var file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc []byte
821
+ const file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc = "" +
822
+ "\n" +
823
+ "#waArmadilloXMA/WAArmadilloXMA.proto\x12\x0eWAArmadilloXMA\x1a\x17waCommon/WACommon.proto\"\xc6\x1d\n" +
824
+ "\x16ExtendedContentMessage\x12C\n" +
825
+ "\x11associatedMessage\x18\x01 \x01(\v2\x15.WACommon.SubProtocolR\x11associatedMessage\x12Z\n" +
826
+ "\n" +
827
+ "targetType\x18\x02 \x01(\x0e2:.WAArmadilloXMA.ExtendedContentMessage.ExtendedContentTypeR\n" +
828
+ "targetType\x12&\n" +
829
+ "\x0etargetUsername\x18\x03 \x01(\tR\x0etargetUsername\x12\x1a\n" +
830
+ "\btargetID\x18\x04 \x01(\tR\btargetID\x120\n" +
831
+ "\x13targetExpiringAtSec\x18\x05 \x01(\x03R\x13targetExpiringAtSec\x12Z\n" +
832
+ "\rxmaLayoutType\x18\x06 \x01(\x0e24.WAArmadilloXMA.ExtendedContentMessage.XmaLayoutTypeR\rxmaLayoutType\x12>\n" +
833
+ "\x04ctas\x18\a \x03(\v2*.WAArmadilloXMA.ExtendedContentMessage.CTAR\x04ctas\x121\n" +
834
+ "\bpreviews\x18\b \x03(\v2\x15.WACommon.SubProtocolR\bpreviews\x12\x1c\n" +
835
+ "\ttitleText\x18\t \x01(\tR\ttitleText\x12\"\n" +
836
+ "\fsubtitleText\x18\n" +
837
+ " \x01(\tR\fsubtitleText\x12.\n" +
838
+ "\x12maxTitleNumOfLines\x18\v \x01(\rR\x12maxTitleNumOfLines\x124\n" +
839
+ "\x15maxSubtitleNumOfLines\x18\f \x01(\rR\x15maxSubtitleNumOfLines\x12/\n" +
840
+ "\afavicon\x18\r \x01(\v2\x15.WACommon.SubProtocolR\afavicon\x127\n" +
841
+ "\vheaderImage\x18\x0e \x01(\v2\x15.WACommon.SubProtocolR\vheaderImage\x12 \n" +
842
+ "\vheaderTitle\x18\x0f \x01(\tR\vheaderTitle\x12c\n" +
843
+ "\x10overlayIconGlyph\x18\x10 \x01(\x0e27.WAArmadilloXMA.ExtendedContentMessage.OverlayIconGlyphR\x10overlayIconGlyph\x12\"\n" +
844
+ "\foverlayTitle\x18\x11 \x01(\tR\foverlayTitle\x12.\n" +
845
+ "\x12overlayDescription\x18\x12 \x01(\tR\x12overlayDescription\x12,\n" +
846
+ "\x11sentWithMessageID\x18\x13 \x01(\tR\x11sentWithMessageID\x12 \n" +
847
+ "\vmessageText\x18\x14 \x01(\tR\vmessageText\x12&\n" +
848
+ "\x0eheaderSubtitle\x18\x15 \x01(\tR\x0eheaderSubtitle\x12\"\n" +
849
+ "\fxmaDataclass\x18\x16 \x01(\tR\fxmaDataclass\x12\x1e\n" +
850
+ "\n" +
851
+ "contentRef\x18\x17 \x01(\tR\n" +
852
+ "contentRef\x12\"\n" +
853
+ "\fmentionedJID\x18\x18 \x03(\tR\fmentionedJID\x12-\n" +
854
+ "\bcommands\x18\x19 \x03(\v2\x11.WACommon.CommandR\bcommands\x12-\n" +
855
+ "\bmentions\x18\x1a \x03(\v2\x11.WACommon.MentionR\bmentions\x1a\xf5\x01\n" +
856
+ "\x03CTA\x12T\n" +
857
+ "\n" +
858
+ "buttonType\x18\x01 \x01(\x0e24.WAArmadilloXMA.ExtendedContentMessage.CtaButtonTypeR\n" +
859
+ "buttonType\x12\x14\n" +
860
+ "\x05title\x18\x02 \x01(\tR\x05title\x12\x1c\n" +
861
+ "\tactionURL\x18\x03 \x01(\tR\tactionURL\x12\x1c\n" +
862
+ "\tnativeURL\x18\x04 \x01(\tR\tnativeURL\x12\x18\n" +
863
+ "\actaType\x18\x05 \x01(\tR\actaType\x12,\n" +
864
+ "\x11actionContentBlob\x18\x06 \x01(\tR\x11actionContentBlob\"\xa1\x01\n" +
865
+ "\x10OverlayIconGlyph\x12\b\n" +
866
+ "\x04INFO\x10\x00\x12\v\n" +
867
+ "\aEYE_OFF\x10\x01\x12\f\n" +
868
+ "\bNEWS_OFF\x10\x02\x12\v\n" +
869
+ "\aWARNING\x10\x03\x12\v\n" +
870
+ "\aPRIVATE\x10\x04\x12\b\n" +
871
+ "\x04NONE\x10\x05\x12\x0f\n" +
872
+ "\vMEDIA_LABEL\x10\x06\x12\x0e\n" +
873
+ "\n" +
874
+ "POST_COVER\x10\a\x12\x0e\n" +
875
+ "\n" +
876
+ "POST_LABEL\x10\b\x12\x13\n" +
877
+ "\x0fWARNING_SCREENS\x10\t\" \n" +
878
+ "\rCtaButtonType\x12\x0f\n" +
879
+ "\vOPEN_NATIVE\x10\v\"b\n" +
880
+ "\rXmaLayoutType\x12\n" +
881
+ "\n" +
882
+ "\x06SINGLE\x10\x00\x12\v\n" +
883
+ "\aHSCROLL\x10\x01\x12\f\n" +
884
+ "\bPORTRAIT\x10\x03\x12\x11\n" +
885
+ "\rSTANDARD_DXMA\x10\f\x12\r\n" +
886
+ "\tLIST_DXMA\x10\x0f\x12\b\n" +
887
+ "\x04GRID\x10\x10\"\xf8\x0e\n" +
888
+ "\x13ExtendedContentType\x12\x0f\n" +
889
+ "\vUNSUPPORTED\x10\x00\x12\x1a\n" +
890
+ "\x16IG_STORY_PHOTO_MENTION\x10\x04\x12\x1e\n" +
891
+ "\x1aIG_SINGLE_IMAGE_POST_SHARE\x10\t\x12\x16\n" +
892
+ "\x12IG_MULTIPOST_SHARE\x10\n" +
893
+ "\x12\x1e\n" +
894
+ "\x1aIG_SINGLE_VIDEO_POST_SHARE\x10\v\x12\x18\n" +
895
+ "\x14IG_STORY_PHOTO_SHARE\x10\f\x12\x18\n" +
896
+ "\x14IG_STORY_VIDEO_SHARE\x10\r\x12\x12\n" +
897
+ "\x0eIG_CLIPS_SHARE\x10\x0e\x12\x11\n" +
898
+ "\rIG_IGTV_SHARE\x10\x0f\x12\x11\n" +
899
+ "\rIG_SHOP_SHARE\x10\x10\x12\x14\n" +
900
+ "\x10IG_PROFILE_SHARE\x10\x13\x12\"\n" +
901
+ "\x1eIG_STORY_PHOTO_HIGHLIGHT_SHARE\x10\x14\x12\"\n" +
902
+ "\x1eIG_STORY_VIDEO_HIGHLIGHT_SHARE\x10\x15\x12\x12\n" +
903
+ "\x0eIG_STORY_REPLY\x10\x16\x12\x15\n" +
904
+ "\x11IG_STORY_REACTION\x10\x17\x12\x1a\n" +
905
+ "\x16IG_STORY_VIDEO_MENTION\x10\x18\x12\x1c\n" +
906
+ "\x18IG_STORY_HIGHLIGHT_REPLY\x10\x19\x12\x1f\n" +
907
+ "\x1bIG_STORY_HIGHLIGHT_REACTION\x10\x1a\x12\x14\n" +
908
+ "\x10IG_EXTERNAL_LINK\x10\x1b\x12\x15\n" +
909
+ "\x11IG_RECEIVER_FETCH\x10\x1c\x12\x12\n" +
910
+ "\rFB_FEED_SHARE\x10\xe8\a\x12\x13\n" +
911
+ "\x0eFB_STORY_REPLY\x10\xe9\a\x12\x13\n" +
912
+ "\x0eFB_STORY_SHARE\x10\xea\a\x12\x15\n" +
913
+ "\x10FB_STORY_MENTION\x10\xeb\a\x12\x18\n" +
914
+ "\x13FB_FEED_VIDEO_SHARE\x10\xec\a\x12\x1c\n" +
915
+ "\x17FB_GAMING_CUSTOM_UPDATE\x10\xed\a\x12\x1c\n" +
916
+ "\x17FB_PRODUCER_STORY_REPLY\x10\xee\a\x12\r\n" +
917
+ "\bFB_EVENT\x10\xef\a\x12\x1f\n" +
918
+ "\x1aFB_FEED_POST_PRIVATE_REPLY\x10\xf0\a\x12\r\n" +
919
+ "\bFB_SHORT\x10\xf1\a\x12\x1d\n" +
920
+ "\x18FB_COMMENT_MENTION_SHARE\x10\xf2\a\x12\x14\n" +
921
+ "\x0fFB_POST_MENTION\x10\xf3\a\x12\x1e\n" +
922
+ "\x19FB_PROFILE_DIRECTORY_ITEM\x10\xf5\a\x12 \n" +
923
+ "\x1bFB_FEED_POST_REACTION_REPLY\x10\xf6\a\x12\x1c\n" +
924
+ "\x17MSG_EXTERNAL_LINK_SHARE\x10\xd0\x0f\x12\x14\n" +
925
+ "\x0fMSG_P2P_PAYMENT\x10\xd1\x0f\x12\x19\n" +
926
+ "\x14MSG_LOCATION_SHARING\x10\xd2\x0f\x12\x1c\n" +
927
+ "\x17MSG_LOCATION_SHARING_V2\x10\xd3\x0f\x12,\n" +
928
+ "'MSG_HIGHLIGHTS_TAB_FRIEND_UPDATES_REPLY\x10\xd4\x0f\x12)\n" +
929
+ "$MSG_HIGHLIGHTS_TAB_LOCAL_EVENT_REPLY\x10\xd5\x0f\x12\x17\n" +
930
+ "\x12MSG_RECEIVER_FETCH\x10\xd6\x0f\x12\x17\n" +
931
+ "\x12MSG_IG_MEDIA_SHARE\x10\xd7\x0f\x12&\n" +
932
+ "!MSG_GEN_AI_SEARCH_PLUGIN_RESPONSE\x10\xd8\x0f\x12\x13\n" +
933
+ "\x0eMSG_REELS_LIST\x10\xd9\x0f\x12\x10\n" +
934
+ "\vMSG_CONTACT\x10\xda\x0f\x12\x1b\n" +
935
+ "\x16MSG_THREADS_POST_SHARE\x10\xdb\x0f\x12\r\n" +
936
+ "\bMSG_FILE\x10\xdc\x0f\x12\x17\n" +
937
+ "\x12MSG_AVATAR_DETAILS\x10\xdd\x0f\x12\x13\n" +
938
+ "\x0eMSG_AI_CONTACT\x10\xde\x0f\x12\x17\n" +
939
+ "\x12MSG_MEMORIES_SHARE\x10\xdf\x0f\x12\x1b\n" +
940
+ "\x16MSG_SHARED_ALBUM_REPLY\x10\xe0\x0f\x12\x15\n" +
941
+ "\x10MSG_SHARED_ALBUM\x10\xe1\x0f\x12\x18\n" +
942
+ "\x13MSG_OCCAMADILLO_XMA\x10\xe2\x0f\x12\x1c\n" +
943
+ "\x17MSG_GEN_AI_SUBSCRIPTION\x10\xe5\x0f\x12\x18\n" +
944
+ "\x13MSG_GEN_AI_REMINDER\x10\xe6\x0f\x12(\n" +
945
+ "#MSG_GEN_AI_MEMU_ONBOARDING_RESPONSE\x10\xe7\x0f\x12\x13\n" +
946
+ "\x0eMSG_NOTE_REPLY\x10\xe8\x0f\x12\x15\n" +
947
+ "\x10MSG_NOTE_MENTION\x10\xe9\x0f\x12\x12\n" +
948
+ "\rGEN_AI_ENTITY\x10\xea\x0f\x12\x13\n" +
949
+ "\x0eRTC_AUDIO_CALL\x10\xb8\x17\x12\x13\n" +
950
+ "\x0eRTC_VIDEO_CALL\x10\xb9\x17\x12\x1a\n" +
951
+ "\x15RTC_MISSED_AUDIO_CALL\x10\xba\x17\x12\x1a\n" +
952
+ "\x15RTC_MISSED_VIDEO_CALL\x10\xbb\x17\x12\x19\n" +
953
+ "\x14RTC_GROUP_AUDIO_CALL\x10\xbc\x17\x12\x19\n" +
954
+ "\x14RTC_GROUP_VIDEO_CALL\x10\xbd\x17\x12 \n" +
955
+ "\x1bRTC_MISSED_GROUP_AUDIO_CALL\x10\xbe\x17\x12 \n" +
956
+ "\x1bRTC_MISSED_GROUP_VIDEO_CALL\x10\xbf\x17\x12\x1b\n" +
957
+ "\x16RTC_ONGOING_AUDIO_CALL\x10\xc0\x17\x12\x1b\n" +
958
+ "\x16RTC_ONGOING_VIDEO_CALL\x10\xc1\x17\x12 \n" +
959
+ "\x1bMSG_RECEIVER_FETCH_FALLBACK\x10\xd1\x17\x12\x1a\n" +
960
+ "\x15DATACLASS_SENDER_COPY\x10\xa0\x1fB*Z(go.mau.fi/whatsmeow/proto/waArmadilloXMA"
807
961
 
808
962
  var (
809
963
  file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescOnce sync.Once
810
- file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescData = file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc
964
+ file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescData []byte
811
965
  )
812
966
 
813
967
  func file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescGZIP() []byte {
814
968
  file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescOnce.Do(func() {
815
- file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescData = protoimpl.X.CompressGZIP(file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescData)
969
+ file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc), len(file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc)))
816
970
  })
817
971
  return file_waArmadilloXMA_WAArmadilloXMA_proto_rawDescData
818
972
  }
@@ -828,6 +982,7 @@ var file_waArmadilloXMA_WAArmadilloXMA_proto_goTypes = []any{
828
982
  (*ExtendedContentMessage_CTA)(nil), // 5: WAArmadilloXMA.ExtendedContentMessage.CTA
829
983
  (*waCommon.SubProtocol)(nil), // 6: WACommon.SubProtocol
830
984
  (*waCommon.Command)(nil), // 7: WACommon.Command
985
+ (*waCommon.Mention)(nil), // 8: WACommon.Mention
831
986
  }
832
987
  var file_waArmadilloXMA_WAArmadilloXMA_proto_depIdxs = []int32{
833
988
  6, // 0: WAArmadilloXMA.ExtendedContentMessage.associatedMessage:type_name -> WACommon.SubProtocol
@@ -839,12 +994,13 @@ var file_waArmadilloXMA_WAArmadilloXMA_proto_depIdxs = []int32{
839
994
  6, // 6: WAArmadilloXMA.ExtendedContentMessage.headerImage:type_name -> WACommon.SubProtocol
840
995
  0, // 7: WAArmadilloXMA.ExtendedContentMessage.overlayIconGlyph:type_name -> WAArmadilloXMA.ExtendedContentMessage.OverlayIconGlyph
841
996
  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
997
+ 8, // 9: WAArmadilloXMA.ExtendedContentMessage.mentions:type_name -> WACommon.Mention
998
+ 1, // 10: WAArmadilloXMA.ExtendedContentMessage.CTA.buttonType:type_name -> WAArmadilloXMA.ExtendedContentMessage.CtaButtonType
999
+ 11, // [11:11] is the sub-list for method output_type
1000
+ 11, // [11:11] is the sub-list for method input_type
1001
+ 11, // [11:11] is the sub-list for extension type_name
1002
+ 11, // [11:11] is the sub-list for extension extendee
1003
+ 0, // [0:11] is the sub-list for field type_name
848
1004
  }
849
1005
 
850
1006
  func init() { file_waArmadilloXMA_WAArmadilloXMA_proto_init() }
@@ -856,7 +1012,7 @@ func file_waArmadilloXMA_WAArmadilloXMA_proto_init() {
856
1012
  out := protoimpl.TypeBuilder{
857
1013
  File: protoimpl.DescBuilder{
858
1014
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
859
- RawDescriptor: file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc,
1015
+ RawDescriptor: unsafe.Slice(unsafe.StringData(file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc), len(file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc)),
860
1016
  NumEnums: 4,
861
1017
  NumMessages: 2,
862
1018
  NumExtensions: 0,
@@ -868,7 +1024,6 @@ func file_waArmadilloXMA_WAArmadilloXMA_proto_init() {
868
1024
  MessageInfos: file_waArmadilloXMA_WAArmadilloXMA_proto_msgTypes,
869
1025
  }.Build()
870
1026
  File_waArmadilloXMA_WAArmadilloXMA_proto = out.File
871
- file_waArmadilloXMA_WAArmadilloXMA_proto_rawDesc = nil
872
1027
  file_waArmadilloXMA_WAArmadilloXMA_proto_goTypes = nil
873
1028
  file_waArmadilloXMA_WAArmadilloXMA_proto_depIdxs = nil
874
1029
  }
@@ -64,6 +64,8 @@ message ExtendedContentMessage {
64
64
  FB_SHORT = 1009;
65
65
  FB_COMMENT_MENTION_SHARE = 1010;
66
66
  FB_POST_MENTION = 1011;
67
+ FB_PROFILE_DIRECTORY_ITEM = 1013;
68
+ FB_FEED_POST_REACTION_REPLY = 1014;
67
69
  MSG_EXTERNAL_LINK_SHARE = 2000;
68
70
  MSG_P2P_PAYMENT = 2001;
69
71
  MSG_LOCATION_SHARING = 2002;
@@ -88,6 +90,7 @@ message ExtendedContentMessage {
88
90
  MSG_GEN_AI_MEMU_ONBOARDING_RESPONSE = 2023;
89
91
  MSG_NOTE_REPLY = 2024;
90
92
  MSG_NOTE_MENTION = 2025;
93
+ GEN_AI_ENTITY = 2026;
91
94
  RTC_AUDIO_CALL = 3000;
92
95
  RTC_VIDEO_CALL = 3001;
93
96
  RTC_MISSED_AUDIO_CALL = 3002;
@@ -136,4 +139,5 @@ message ExtendedContentMessage {
136
139
  optional string contentRef = 23;
137
140
  repeated string mentionedJID = 24;
138
141
  repeated WACommon.Command commands = 25;
142
+ repeated WACommon.Mention mentions = 26;
139
143
  }
@@ -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
  }