slidge-whatsapp 0.2.5__cp311-cp311-manylinux_2_36_aarch64.whl → 0.3.0__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 (484) hide show
  1. slidge_whatsapp/config.py +3 -0
  2. slidge_whatsapp/contact.py +15 -3
  3. slidge_whatsapp/event.go +171 -70
  4. slidge_whatsapp/gateway.go +16 -68
  5. slidge_whatsapp/gateway.py +4 -5
  6. slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.h +168 -151
  7. slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.so +0 -0
  8. slidge_whatsapp/generated/build.py +142 -128
  9. slidge_whatsapp/generated/whatsapp.c +1689 -1417
  10. slidge_whatsapp/generated/whatsapp.go +1011 -900
  11. slidge_whatsapp/generated/whatsapp.py +1175 -1050
  12. slidge_whatsapp/generated/whatsapp_go.h +168 -151
  13. slidge_whatsapp/go.mod +21 -15
  14. slidge_whatsapp/go.sum +49 -31
  15. slidge_whatsapp/group.py +34 -30
  16. slidge_whatsapp/media/media.go +22 -12
  17. slidge_whatsapp/session.go +106 -82
  18. slidge_whatsapp/session.py +46 -14
  19. slidge_whatsapp/vendor/github.com/beeper/argo-go/LICENSE +9 -0
  20. slidge_whatsapp/vendor/github.com/beeper/argo-go/block/blockreader.go +329 -0
  21. slidge_whatsapp/vendor/github.com/beeper/argo-go/block/blockwriter.go +417 -0
  22. slidge_whatsapp/vendor/github.com/beeper/argo-go/codec/decoder.go +652 -0
  23. slidge_whatsapp/vendor/github.com/beeper/argo-go/codec/encoder.go +985 -0
  24. slidge_whatsapp/vendor/github.com/beeper/argo-go/header/header.go +135 -0
  25. slidge_whatsapp/vendor/github.com/beeper/argo-go/internal/util/util.go +133 -0
  26. slidge_whatsapp/vendor/github.com/beeper/argo-go/label/label.go +384 -0
  27. slidge_whatsapp/vendor/github.com/beeper/argo-go/label/wiremarkers.go +37 -0
  28. slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/bitset/bitset.go +197 -0
  29. slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/buf/buf.go +420 -0
  30. slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/varint/varint.go +246 -0
  31. slidge_whatsapp/vendor/github.com/beeper/argo-go/wire/wire.go +614 -0
  32. slidge_whatsapp/vendor/github.com/beeper/argo-go/wirecodec/decode.go +341 -0
  33. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn.go +4 -4
  34. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_darwin.go +0 -5
  35. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_libinit.go +3 -0
  36. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols.go +40 -20
  37. slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/LICENSE +21 -0
  38. slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/list.go +95 -0
  39. slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/orderedmap.go +187 -0
  40. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz.go +1 -0
  41. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo.go +3 -0
  42. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_nocgo.go +4 -5
  43. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_darwin.go +11 -1
  44. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_linux.go +10 -0
  45. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_windows.go +12 -0
  46. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/.gitignore +0 -2
  47. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/CHANGELOG.md +44 -1
  48. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/COPYRIGHT.txt +6 -1
  49. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/README.md +14 -17
  50. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi.go +1 -1
  51. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi2.go +7 -0
  52. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/LICENSE +21 -0
  53. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/darwin_amd64/libffi.8.dylib +0 -0
  54. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/darwin_arm64/libffi.8.dylib +0 -0
  55. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/windows_amd64/libffi-8.dll +0 -0
  56. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/cif.go +15 -0
  57. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/cif_arm64.go +16 -0
  58. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed.go +49 -0
  59. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_darwin_amd64.go +10 -0
  60. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_darwin_arm64.go +10 -0
  61. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_windows_amd64.go +10 -0
  62. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +53 -15
  63. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/fun.go +10 -2
  64. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/init.go +22 -9
  65. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib.go +1 -1
  66. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_unix.go +1 -1
  67. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_windows.go +1 -1
  68. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/README.md +4 -7
  69. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/callback.go +2 -1
  70. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +11545 -6680
  71. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +527 -273
  72. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3.go +57 -23
  73. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.c +4 -0
  74. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.go +4 -0
  75. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth.go +13 -140
  76. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3ext.h +4 -0
  77. slidge_whatsapp/vendor/github.com/petermattis/goid/.gitignore +4 -0
  78. slidge_whatsapp/vendor/github.com/petermattis/goid/LICENSE +202 -0
  79. slidge_whatsapp/vendor/github.com/petermattis/goid/README.md +4 -0
  80. slidge_whatsapp/vendor/github.com/petermattis/goid/goid.go +35 -0
  81. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_gccgo.go +26 -0
  82. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.3.c +23 -0
  83. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.3.go +22 -0
  84. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.4.go +35 -0
  85. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.4.s +18 -0
  86. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.5.go +28 -0
  87. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.5.s +44 -0
  88. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_slow.go +24 -0
  89. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_gccgo_go1.8.go +17 -0
  90. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.23.go +38 -0
  91. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.25.go +37 -0
  92. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.5.go +57 -0
  93. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.6.go +43 -0
  94. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.9.go +37 -0
  95. slidge_whatsapp/vendor/github.com/rs/zerolog/CONTRIBUTING.md +43 -0
  96. slidge_whatsapp/vendor/github.com/rs/zerolog/README.md +31 -0
  97. slidge_whatsapp/vendor/github.com/rs/zerolog/console.go +20 -5
  98. slidge_whatsapp/vendor/github.com/rs/zerolog/log/log.go +131 -0
  99. slidge_whatsapp/vendor/github.com/rs/zerolog/log.go +1 -1
  100. slidge_whatsapp/vendor/github.com/rs/zerolog/sampler.go +4 -1
  101. slidge_whatsapp/vendor/github.com/rs/zerolog/writer.go +9 -0
  102. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/LICENSE +19 -0
  103. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/argmap.go +37 -0
  104. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/collections.go +148 -0
  105. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/comment.go +31 -0
  106. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/decode.go +216 -0
  107. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/definition.go +110 -0
  108. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/directive.go +43 -0
  109. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/document.go +89 -0
  110. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/dumper.go +159 -0
  111. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/fragment.go +41 -0
  112. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/operation.go +32 -0
  113. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/path.go +72 -0
  114. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/selection.go +41 -0
  115. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/source.go +19 -0
  116. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/type.go +68 -0
  117. slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/value.go +122 -0
  118. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupCipher.go +17 -6
  119. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupSessionBuilder.go +17 -7
  120. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/store/SenderKeyStore.go +4 -2
  121. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/chain/ChainKey.go +1 -0
  122. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/identity/IdentityKey.go +1 -0
  123. slidge_whatsapp/vendor/go.mau.fi/libsignal/logger/DefaultLogger.go +2 -2
  124. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/FingerprintProtocol.pb.go +3 -2
  125. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/LocalStorageProtocol.pb.go +3 -2
  126. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/WhisperTextProtocol.pb.go +3 -2
  127. slidge_whatsapp/vendor/go.mau.fi/libsignal/session/Session.go +41 -17
  128. slidge_whatsapp/vendor/go.mau.fi/libsignal/session/SessionCipher.go +64 -30
  129. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/IdentityKeyStore.go +5 -3
  130. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/MessageKeyStore.go +6 -4
  131. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/PreKeyStore.go +6 -4
  132. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SessionStore.go +8 -6
  133. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SignedPreKeyStore.go +7 -5
  134. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/connlog.go +257 -0
  135. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/database.go +309 -0
  136. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/iter.go +233 -0
  137. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/json.go +47 -0
  138. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/log.go +129 -0
  139. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/massinsert.go +164 -0
  140. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/queryhelper.go +137 -0
  141. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/reflectscan.go +30 -0
  142. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/transaction.go +180 -0
  143. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgrades.go +250 -0
  144. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgradetable.go +331 -0
  145. slidge_whatsapp/vendor/go.mau.fi/util/exerrors/dualerror.go +33 -0
  146. slidge_whatsapp/vendor/go.mau.fi/util/exerrors/must.go +23 -0
  147. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/cors.go +32 -0
  148. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/handleerrors.go +98 -0
  149. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/json.go +36 -0
  150. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/middleware.go +30 -0
  151. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/networkerror.go +38 -0
  152. slidge_whatsapp/vendor/go.mau.fi/util/exstrings/stringutil.go +104 -0
  153. slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +104 -0
  154. slidge_whatsapp/vendor/go.mau.fi/util/exsync/returnonce.go +25 -0
  155. slidge_whatsapp/vendor/go.mau.fi/util/exsync/ringbuffer.go +139 -0
  156. slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncmap.go +94 -0
  157. slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncset.go +136 -0
  158. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/callermarshal.go +28 -0
  159. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/defaults.go +32 -0
  160. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/generics.go +45 -0
  161. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/writer.go +81 -0
  162. slidge_whatsapp/vendor/go.mau.fi/util/ptr/ptr.go +43 -0
  163. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.pre-commit-config.yaml +3 -3
  164. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +27 -26
  165. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +4 -3
  166. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +1 -1
  167. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/keys.go +5 -4
  168. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +32 -26
  169. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/argo-wire-type-store.argo +63 -0
  170. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/argo.go +62 -0
  171. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/name-to-queryids.json +306 -0
  172. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +42 -8
  173. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/encoder.go +1 -1
  174. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/broadcast.go +5 -4
  175. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +2 -1
  176. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +134 -55
  177. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +34 -11
  178. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +63 -30
  179. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +78 -34
  180. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +4 -0
  181. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +157 -55
  182. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +202 -154
  183. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +3 -2
  184. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaconn.go +5 -3
  185. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaretry.go +2 -1
  186. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +448 -138
  187. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +106 -31
  188. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +83 -7
  189. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +83 -43
  190. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +9 -6
  191. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +42 -18
  192. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +9 -5
  193. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +17 -7
  194. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/privacysettings.go +10 -11
  195. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/extra.go +7 -0
  196. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go +983 -0
  197. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.proto +85 -0
  198. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/extra.go +3 -0
  199. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.pb.go +197 -0
  200. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.proto +13 -0
  201. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.pb.go +279 -0
  202. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.proto +21 -0
  203. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.pb.go +137 -0
  204. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.proto +10 -0
  205. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.pb.go +313 -0
  206. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.proto +27 -0
  207. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.pb.go +1299 -0
  208. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto +112 -0
  209. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.pb.go +514 -0
  210. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.proto +47 -0
  211. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.pb.go +123 -0
  212. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.proto +7 -0
  213. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/extra.go +3 -0
  214. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.pb.go +720 -0
  215. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.proto +59 -0
  216. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/extra.go +3 -0
  217. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.pb.go +365 -0
  218. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.proto +33 -0
  219. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.pb.go +1238 -0
  220. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.proto +105 -0
  221. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.go +39 -9
  222. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.go +354 -175
  223. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.proto +5 -5
  224. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +170 -15
  225. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +4 -0
  226. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.pb.go +5156 -0
  227. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.proto +516 -0
  228. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.go +29 -9
  229. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.go +13 -9
  230. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.go +344 -31
  231. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.proto +26 -0
  232. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/{WAWebProtobufsCompanionReg.pb.go → WACompanionReg.pb.go} +211 -89
  233. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/{WAWebProtobufsCompanionReg.proto → WACompanionReg.proto} +5 -1
  234. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.go +173 -9
  235. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +78 -16
  236. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +5 -0
  237. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +7463 -5180
  238. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +366 -343
  239. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +485 -135
  240. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +17 -0
  241. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.pb.go +198 -0
  242. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.proto +14 -0
  243. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.go +162 -9
  244. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.proto +1 -0
  245. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.go +32 -9
  246. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.proto +1 -0
  247. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.go +192 -52
  248. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.proto +8 -0
  249. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.go +60 -9
  250. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/extra.go +7 -6
  251. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.go +39 -9
  252. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.go +61 -9
  253. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +952 -0
  254. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +88 -0
  255. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +1802 -453
  256. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +92 -0
  257. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.go +27 -9
  258. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.go +59 -9
  259. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +435 -109
  260. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +11 -0
  261. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +563 -9
  262. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +4 -0
  263. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +32 -9
  264. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingfields.json +1 -0
  265. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingtoken.go +176 -0
  266. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +39 -21
  267. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +267 -79
  268. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +28 -16
  269. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +3 -1
  270. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +87 -44
  271. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/signal.go +75 -88
  272. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +86 -65
  273. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/lidmap.go +186 -0
  274. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +314 -170
  275. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +155 -0
  276. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/03-message-secrets.sql +11 -0
  277. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/04-privacy-tokens.sql +8 -0
  278. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/05-account-jid-format.sql +2 -0
  279. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/06-facebook-uuid.sql +2 -0
  280. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/07-account-lid.sql +2 -0
  281. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/08-lid-mapping.sql +5 -0
  282. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/09-decryption-buffer.sql +10 -0
  283. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/10-chat-db-lid-migration-ts.sql +2 -0
  284. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/upgrades.go +22 -0
  285. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +109 -56
  286. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/botmap.go +210 -0
  287. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +1 -0
  288. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +21 -2
  289. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/group.go +15 -6
  290. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +9 -9
  291. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +18 -0
  292. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +2 -0
  293. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/update.go +3 -2
  294. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/upload.go +1 -1
  295. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +59 -37
  296. slidge_whatsapp/vendor/golang.org/x/crypto/curve25519/curve25519.go +1 -1
  297. slidge_whatsapp/vendor/golang.org/x/exp/LICENSE +27 -0
  298. slidge_whatsapp/vendor/golang.org/x/exp/PATENTS +22 -0
  299. slidge_whatsapp/vendor/golang.org/x/exp/constraints/constraints.go +54 -0
  300. slidge_whatsapp/vendor/golang.org/x/net/http/httpguts/guts.go +50 -0
  301. slidge_whatsapp/vendor/golang.org/x/net/http/httpguts/httplex.go +347 -0
  302. slidge_whatsapp/vendor/golang.org/x/net/http2/.gitignore +2 -0
  303. slidge_whatsapp/vendor/golang.org/x/net/http2/ascii.go +53 -0
  304. slidge_whatsapp/vendor/golang.org/x/net/http2/ciphers.go +641 -0
  305. slidge_whatsapp/vendor/golang.org/x/net/http2/client_conn_pool.go +311 -0
  306. slidge_whatsapp/vendor/golang.org/x/net/http2/config.go +164 -0
  307. slidge_whatsapp/vendor/golang.org/x/net/http2/databuffer.go +149 -0
  308. slidge_whatsapp/vendor/golang.org/x/net/http2/errors.go +145 -0
  309. slidge_whatsapp/vendor/golang.org/x/net/http2/flow.go +120 -0
  310. slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +1702 -0
  311. slidge_whatsapp/vendor/golang.org/x/net/http2/gotrack.go +181 -0
  312. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/encode.go +245 -0
  313. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/hpack.go +523 -0
  314. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/huffman.go +226 -0
  315. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/static_table.go +188 -0
  316. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/tables.go +403 -0
  317. slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +410 -0
  318. slidge_whatsapp/vendor/golang.org/x/net/http2/pipe.go +184 -0
  319. slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +3332 -0
  320. slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +3233 -0
  321. slidge_whatsapp/vendor/golang.org/x/net/http2/unencrypted.go +32 -0
  322. slidge_whatsapp/vendor/golang.org/x/net/http2/write.go +381 -0
  323. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched.go +251 -0
  324. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_priority.go +451 -0
  325. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_random.go +77 -0
  326. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_roundrobin.go +119 -0
  327. slidge_whatsapp/vendor/golang.org/x/net/idna/go118.go +13 -0
  328. slidge_whatsapp/vendor/golang.org/x/net/idna/idna10.0.0.go +769 -0
  329. slidge_whatsapp/vendor/golang.org/x/net/idna/idna9.0.0.go +717 -0
  330. slidge_whatsapp/vendor/golang.org/x/net/idna/pre_go118.go +11 -0
  331. slidge_whatsapp/vendor/golang.org/x/net/idna/punycode.go +217 -0
  332. slidge_whatsapp/vendor/golang.org/x/net/idna/tables10.0.0.go +4559 -0
  333. slidge_whatsapp/vendor/golang.org/x/net/idna/tables11.0.0.go +4653 -0
  334. slidge_whatsapp/vendor/golang.org/x/net/idna/tables12.0.0.go +4733 -0
  335. slidge_whatsapp/vendor/golang.org/x/net/idna/tables13.0.0.go +4959 -0
  336. slidge_whatsapp/vendor/golang.org/x/net/idna/tables15.0.0.go +5144 -0
  337. slidge_whatsapp/vendor/golang.org/x/net/idna/tables9.0.0.go +4486 -0
  338. slidge_whatsapp/vendor/golang.org/x/net/idna/trie.go +51 -0
  339. slidge_whatsapp/vendor/golang.org/x/net/idna/trie12.0.0.go +30 -0
  340. slidge_whatsapp/vendor/golang.org/x/net/idna/trie13.0.0.go +30 -0
  341. slidge_whatsapp/vendor/golang.org/x/net/idna/trieval.go +119 -0
  342. slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/ascii.go +53 -0
  343. slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/headermap.go +115 -0
  344. slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/request.go +467 -0
  345. slidge_whatsapp/vendor/golang.org/x/sys/unix/affinity_linux.go +1 -3
  346. slidge_whatsapp/vendor/golang.org/x/sys/unix/mkerrors.sh +3 -0
  347. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +93 -0
  348. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +16 -26
  349. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris.go +1 -1
  350. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux.go +47 -16
  351. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +3 -0
  352. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +3 -0
  353. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +3 -0
  354. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +3 -0
  355. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +3 -0
  356. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +3 -0
  357. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +3 -0
  358. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +3 -0
  359. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +3 -0
  360. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +3 -0
  361. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +3 -0
  362. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +3 -0
  363. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +3 -0
  364. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +3 -0
  365. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +3 -0
  366. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go +84 -0
  367. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s +20 -0
  368. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go +84 -0
  369. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s +20 -0
  370. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go +4 -4
  371. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go +1 -0
  372. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +1 -0
  373. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go +1 -0
  374. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +1 -0
  375. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +1 -0
  376. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go +1 -0
  377. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go +1 -0
  378. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go +1 -0
  379. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go +1 -0
  380. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go +1 -0
  381. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go +1 -0
  382. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go +1 -0
  383. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +1 -0
  384. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go +1 -0
  385. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go +1 -0
  386. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux.go +168 -12
  387. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_386.go +17 -1
  388. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go +16 -0
  389. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go +18 -2
  390. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go +16 -0
  391. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go +16 -0
  392. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go +17 -1
  393. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go +16 -0
  394. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go +16 -0
  395. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go +17 -1
  396. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go +18 -2
  397. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go +16 -0
  398. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go +16 -0
  399. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go +16 -0
  400. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go +16 -0
  401. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go +16 -0
  402. slidge_whatsapp/vendor/golang.org/x/sys/windows/security_windows.go +44 -5
  403. slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +4 -2
  404. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +245 -0
  405. slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +491 -482
  406. slidge_whatsapp/vendor/golang.org/x/text/LICENSE +27 -0
  407. slidge_whatsapp/vendor/golang.org/x/text/PATENTS +22 -0
  408. slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule.go +336 -0
  409. slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go +11 -0
  410. slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go +14 -0
  411. slidge_whatsapp/vendor/golang.org/x/text/transform/transform.go +709 -0
  412. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bidi.go +359 -0
  413. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bracket.go +335 -0
  414. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/core.go +1071 -0
  415. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/prop.go +206 -0
  416. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go +1815 -0
  417. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go +1887 -0
  418. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go +1923 -0
  419. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go +1955 -0
  420. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables15.0.0.go +2042 -0
  421. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go +1781 -0
  422. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/trieval.go +48 -0
  423. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/composition.go +512 -0
  424. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/forminfo.go +279 -0
  425. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/input.go +109 -0
  426. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/iter.go +458 -0
  427. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/normalize.go +610 -0
  428. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/readwriter.go +125 -0
  429. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables10.0.0.go +7657 -0
  430. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go +7693 -0
  431. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go +7710 -0
  432. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables13.0.0.go +7760 -0
  433. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables15.0.0.go +7907 -0
  434. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go +7637 -0
  435. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/transform.go +88 -0
  436. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/trie.go +54 -0
  437. slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/protowire/wire.go +25 -1
  438. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
  439. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +13 -5
  440. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/presence.go +33 -0
  441. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/api_gen.go +6 -0
  442. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +81 -19
  443. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message_opaque.go +2 -1
  444. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque.go +8 -37
  445. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/presence.go +0 -3
  446. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/{strings_unsafe_go121.go → strings_unsafe.go} +0 -2
  447. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +1 -1
  448. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/merge.go +6 -0
  449. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go +10 -0
  450. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/{value_unsafe_go121.go → value_unsafe.go} +0 -2
  451. slidge_whatsapp/vendor/modules.txt +80 -21
  452. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.3.0.dist-info}/METADATA +5 -4
  453. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.3.0.dist-info}/RECORD +456 -263
  454. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.3.0.dist-info}/WHEEL +1 -1
  455. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi_amd64.go +0 -7
  456. slidge_whatsapp/vendor/github.com/rs/zerolog/CNAME +0 -1
  457. slidge_whatsapp/vendor/github.com/rs/zerolog/_config.yml +0 -1
  458. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.raw +0 -0
  459. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.raw +0 -0
  460. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.raw +0 -0
  461. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.raw +0 -23
  462. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.raw +0 -7
  463. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.raw +0 -0
  464. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.pb.raw +0 -0
  465. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.raw +0 -0
  466. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.raw +0 -0
  467. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.raw +0 -0
  468. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.raw +0 -0
  469. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.raw +0 -0
  470. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.raw +0 -0
  471. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.raw +0 -0
  472. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.raw +0 -0
  473. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.raw +0 -0
  474. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.raw +0 -0
  475. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.raw +0 -0
  476. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.raw +0 -0
  477. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.raw +0 -0
  478. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.raw +0 -0
  479. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.raw +0 -0
  480. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrade.go +0 -296
  481. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe_go120.go +0 -94
  482. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe_go120.go +0 -98
  483. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.3.0.dist-info}/entry_points.txt +0 -0
  484. {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.3.0.dist-info/licenses}/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  // Code generated by protoc-gen-go. DO NOT EDIT.
2
2
  // versions:
3
- // protoc-gen-go v1.36.1
3
+ // protoc-gen-go v1.36.6
4
4
  // protoc v3.21.12
5
5
  // source: waArmadilloApplication/WAArmadilloApplication.proto
6
6
 
@@ -9,14 +9,13 @@ package waArmadilloApplication
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
  waArmadilloXMA "go.mau.fi/whatsmeow/proto/waArmadilloXMA"
17
18
  waCommon "go.mau.fi/whatsmeow/proto/waCommon"
18
-
19
- _ "embed"
20
19
  )
21
20
 
22
21
  const (
@@ -248,7 +247,7 @@ func (x *Armadillo_Content_ScreenshotAction_ScreenshotType) UnmarshalJSON(b []by
248
247
 
249
248
  // Deprecated: Use Armadillo_Content_ScreenshotAction_ScreenshotType.Descriptor instead.
250
249
  func (Armadillo_Content_ScreenshotAction_ScreenshotType) EnumDescriptor() ([]byte, []int) {
251
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 6, 0}
250
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 5, 0}
252
251
  }
253
252
 
254
253
  type Armadillo_Content_RavenActionNotifMessage_ActionType int32
@@ -307,7 +306,7 @@ func (x *Armadillo_Content_RavenActionNotifMessage_ActionType) UnmarshalJSON(b [
307
306
 
308
307
  // Deprecated: Use Armadillo_Content_RavenActionNotifMessage_ActionType.Descriptor instead.
309
308
  func (Armadillo_Content_RavenActionNotifMessage_ActionType) EnumDescriptor() ([]byte, []int) {
310
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 8, 0}
309
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 7, 0}
311
310
  }
312
311
 
313
312
  type Armadillo_Content_RavenMessage_EphemeralType int32
@@ -366,7 +365,7 @@ func (x *Armadillo_Content_RavenMessage_EphemeralType) UnmarshalJSON(b []byte) e
366
365
 
367
366
  // Deprecated: Use Armadillo_Content_RavenMessage_EphemeralType.Descriptor instead.
368
367
  func (Armadillo_Content_RavenMessage_EphemeralType) EnumDescriptor() ([]byte, []int) {
369
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 9, 0}
368
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 8, 0}
370
369
  }
371
370
 
372
371
  type Armadillo_Content_CommonSticker_StickerType int32
@@ -425,7 +424,7 @@ func (x *Armadillo_Content_CommonSticker_StickerType) UnmarshalJSON(b []byte) er
425
424
 
426
425
  // Deprecated: Use Armadillo_Content_CommonSticker_StickerType.Descriptor instead.
427
426
  func (Armadillo_Content_CommonSticker_StickerType) EnumDescriptor() ([]byte, []int) {
428
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 10, 0}
427
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 9, 0}
429
428
  }
430
429
 
431
430
  type Armadillo struct {
@@ -746,6 +745,7 @@ type Armadillo_ApplicationData struct {
746
745
  //
747
746
  // *Armadillo_ApplicationData_MetadataSync
748
747
  // *Armadillo_ApplicationData_AiBotResponse
748
+ // *Armadillo_ApplicationData_MessageHistoryDocumentMessage_
749
749
  ApplicationData isArmadillo_ApplicationData_ApplicationData `protobuf_oneof:"applicationData"`
750
750
  unknownFields protoimpl.UnknownFields
751
751
  sizeCache protoimpl.SizeCache
@@ -806,6 +806,15 @@ func (x *Armadillo_ApplicationData) GetAiBotResponse() *Armadillo_ApplicationDat
806
806
  return nil
807
807
  }
808
808
 
809
+ func (x *Armadillo_ApplicationData) GetMessageHistoryDocumentMessage() *Armadillo_ApplicationData_MessageHistoryDocumentMessage {
810
+ if x != nil {
811
+ if x, ok := x.ApplicationData.(*Armadillo_ApplicationData_MessageHistoryDocumentMessage_); ok {
812
+ return x.MessageHistoryDocumentMessage
813
+ }
814
+ }
815
+ return nil
816
+ }
817
+
809
818
  type isArmadillo_ApplicationData_ApplicationData interface {
810
819
  isArmadillo_ApplicationData_ApplicationData()
811
820
  }
@@ -818,10 +827,17 @@ type Armadillo_ApplicationData_AiBotResponse struct {
818
827
  AiBotResponse *Armadillo_ApplicationData_AIBotResponseMessage `protobuf:"bytes,2,opt,name=aiBotResponse,oneof"`
819
828
  }
820
829
 
830
+ type Armadillo_ApplicationData_MessageHistoryDocumentMessage_ struct {
831
+ MessageHistoryDocumentMessage *Armadillo_ApplicationData_MessageHistoryDocumentMessage `protobuf:"bytes,3,opt,name=messageHistoryDocumentMessage,oneof"`
832
+ }
833
+
821
834
  func (*Armadillo_ApplicationData_MetadataSync) isArmadillo_ApplicationData_ApplicationData() {}
822
835
 
823
836
  func (*Armadillo_ApplicationData_AiBotResponse) isArmadillo_ApplicationData_ApplicationData() {}
824
837
 
838
+ func (*Armadillo_ApplicationData_MessageHistoryDocumentMessage_) isArmadillo_ApplicationData_ApplicationData() {
839
+ }
840
+
825
841
  type Armadillo_Content struct {
826
842
  state protoimpl.MessageState `protogen:"open.v1"`
827
843
  // Types that are valid to be assigned to Content:
@@ -838,7 +854,6 @@ type Armadillo_Content struct {
838
854
  // *Armadillo_Content_NoteReplyMessage_
839
855
  // *Armadillo_Content_RavenMessageMsgr
840
856
  // *Armadillo_Content_NetworkVerificationMessage_
841
- // *Armadillo_Content_MessageHistoryDocumentMessage_
842
857
  Content isArmadillo_Content_Content `protobuf_oneof:"content"`
843
858
  unknownFields protoimpl.UnknownFields
844
859
  sizeCache protoimpl.SizeCache
@@ -989,15 +1004,6 @@ func (x *Armadillo_Content) GetNetworkVerificationMessage() *Armadillo_Content_N
989
1004
  return nil
990
1005
  }
991
1006
 
992
- func (x *Armadillo_Content) GetMessageHistoryDocumentMessage() *Armadillo_Content_MessageHistoryDocumentMessage {
993
- if x != nil {
994
- if x, ok := x.Content.(*Armadillo_Content_MessageHistoryDocumentMessage_); ok {
995
- return x.MessageHistoryDocumentMessage
996
- }
997
- }
998
- return nil
999
- }
1000
-
1001
1007
  type isArmadillo_Content_Content interface {
1002
1008
  isArmadillo_Content_Content()
1003
1009
  }
@@ -1050,10 +1056,6 @@ type Armadillo_Content_NetworkVerificationMessage_ struct {
1050
1056
  NetworkVerificationMessage *Armadillo_Content_NetworkVerificationMessage `protobuf:"bytes,15,opt,name=networkVerificationMessage,oneof"`
1051
1057
  }
1052
1058
 
1053
- type Armadillo_Content_MessageHistoryDocumentMessage_ struct {
1054
- MessageHistoryDocumentMessage *Armadillo_Content_MessageHistoryDocumentMessage `protobuf:"bytes,16,opt,name=messageHistoryDocumentMessage,oneof"`
1055
- }
1056
-
1057
1059
  func (*Armadillo_Content_CommonSticker_) isArmadillo_Content_Content() {}
1058
1060
 
1059
1061
  func (*Armadillo_Content_ScreenshotAction_) isArmadillo_Content_Content() {}
@@ -1078,8 +1080,6 @@ func (*Armadillo_Content_RavenMessageMsgr) isArmadillo_Content_Content() {}
1078
1080
 
1079
1081
  func (*Armadillo_Content_NetworkVerificationMessage_) isArmadillo_Content_Content() {}
1080
1082
 
1081
- func (*Armadillo_Content_MessageHistoryDocumentMessage_) isArmadillo_Content_Content() {}
1082
-
1083
1083
  type Armadillo_Signal_EncryptedBackupsSecrets struct {
1084
1084
  state protoimpl.MessageState `protogen:"open.v1"`
1085
1085
  BackupID *uint64 `protobuf:"varint,1,opt,name=backupID" json:"backupID,omitempty"`
@@ -1232,6 +1232,50 @@ func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) GetStatus() Armadillo_S
1232
1232
  return Armadillo_Signal_EncryptedBackupsSecrets_Epoch_ES_OPEN
1233
1233
  }
1234
1234
 
1235
+ type Armadillo_ApplicationData_MessageHistoryDocumentMessage struct {
1236
+ state protoimpl.MessageState `protogen:"open.v1"`
1237
+ Document *waCommon.SubProtocol `protobuf:"bytes,1,opt,name=document" json:"document,omitempty"`
1238
+ unknownFields protoimpl.UnknownFields
1239
+ sizeCache protoimpl.SizeCache
1240
+ }
1241
+
1242
+ func (x *Armadillo_ApplicationData_MessageHistoryDocumentMessage) Reset() {
1243
+ *x = Armadillo_ApplicationData_MessageHistoryDocumentMessage{}
1244
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[9]
1245
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1246
+ ms.StoreMessageInfo(mi)
1247
+ }
1248
+
1249
+ func (x *Armadillo_ApplicationData_MessageHistoryDocumentMessage) String() string {
1250
+ return protoimpl.X.MessageStringOf(x)
1251
+ }
1252
+
1253
+ func (*Armadillo_ApplicationData_MessageHistoryDocumentMessage) ProtoMessage() {}
1254
+
1255
+ func (x *Armadillo_ApplicationData_MessageHistoryDocumentMessage) ProtoReflect() protoreflect.Message {
1256
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[9]
1257
+ if x != nil {
1258
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1259
+ if ms.LoadMessageInfo() == nil {
1260
+ ms.StoreMessageInfo(mi)
1261
+ }
1262
+ return ms
1263
+ }
1264
+ return mi.MessageOf(x)
1265
+ }
1266
+
1267
+ // Deprecated: Use Armadillo_ApplicationData_MessageHistoryDocumentMessage.ProtoReflect.Descriptor instead.
1268
+ func (*Armadillo_ApplicationData_MessageHistoryDocumentMessage) Descriptor() ([]byte, []int) {
1269
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 0}
1270
+ }
1271
+
1272
+ func (x *Armadillo_ApplicationData_MessageHistoryDocumentMessage) GetDocument() *waCommon.SubProtocol {
1273
+ if x != nil {
1274
+ return x.Document
1275
+ }
1276
+ return nil
1277
+ }
1278
+
1235
1279
  type Armadillo_ApplicationData_AIBotResponseMessage struct {
1236
1280
  state protoimpl.MessageState `protogen:"open.v1"`
1237
1281
  SummonToken *string `protobuf:"bytes,1,opt,name=summonToken" json:"summonToken,omitempty"`
@@ -1243,7 +1287,7 @@ type Armadillo_ApplicationData_AIBotResponseMessage struct {
1243
1287
 
1244
1288
  func (x *Armadillo_ApplicationData_AIBotResponseMessage) Reset() {
1245
1289
  *x = Armadillo_ApplicationData_AIBotResponseMessage{}
1246
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[9]
1290
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[10]
1247
1291
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1248
1292
  ms.StoreMessageInfo(mi)
1249
1293
  }
@@ -1255,7 +1299,7 @@ func (x *Armadillo_ApplicationData_AIBotResponseMessage) String() string {
1255
1299
  func (*Armadillo_ApplicationData_AIBotResponseMessage) ProtoMessage() {}
1256
1300
 
1257
1301
  func (x *Armadillo_ApplicationData_AIBotResponseMessage) ProtoReflect() protoreflect.Message {
1258
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[9]
1302
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[10]
1259
1303
  if x != nil {
1260
1304
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1261
1305
  if ms.LoadMessageInfo() == nil {
@@ -1268,7 +1312,7 @@ func (x *Armadillo_ApplicationData_AIBotResponseMessage) ProtoReflect() protoref
1268
1312
 
1269
1313
  // Deprecated: Use Armadillo_ApplicationData_AIBotResponseMessage.ProtoReflect.Descriptor instead.
1270
1314
  func (*Armadillo_ApplicationData_AIBotResponseMessage) Descriptor() ([]byte, []int) {
1271
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 0}
1315
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1}
1272
1316
  }
1273
1317
 
1274
1318
  func (x *Armadillo_ApplicationData_AIBotResponseMessage) GetSummonToken() string {
@@ -1306,7 +1350,7 @@ type Armadillo_ApplicationData_MetadataSyncAction struct {
1306
1350
 
1307
1351
  func (x *Armadillo_ApplicationData_MetadataSyncAction) Reset() {
1308
1352
  *x = Armadillo_ApplicationData_MetadataSyncAction{}
1309
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[10]
1353
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[11]
1310
1354
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1311
1355
  ms.StoreMessageInfo(mi)
1312
1356
  }
@@ -1318,7 +1362,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncAction) String() string {
1318
1362
  func (*Armadillo_ApplicationData_MetadataSyncAction) ProtoMessage() {}
1319
1363
 
1320
1364
  func (x *Armadillo_ApplicationData_MetadataSyncAction) ProtoReflect() protoreflect.Message {
1321
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[10]
1365
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[11]
1322
1366
  if x != nil {
1323
1367
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1324
1368
  if ms.LoadMessageInfo() == nil {
@@ -1331,7 +1375,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncAction) ProtoReflect() protorefle
1331
1375
 
1332
1376
  // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction.ProtoReflect.Descriptor instead.
1333
1377
  func (*Armadillo_ApplicationData_MetadataSyncAction) Descriptor() ([]byte, []int) {
1334
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1}
1378
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2}
1335
1379
  }
1336
1380
 
1337
1381
  func (x *Armadillo_ApplicationData_MetadataSyncAction) GetActionType() isArmadillo_ApplicationData_MetadataSyncAction_ActionType {
@@ -1393,7 +1437,7 @@ type Armadillo_ApplicationData_MetadataSyncNotification struct {
1393
1437
 
1394
1438
  func (x *Armadillo_ApplicationData_MetadataSyncNotification) Reset() {
1395
1439
  *x = Armadillo_ApplicationData_MetadataSyncNotification{}
1396
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[11]
1440
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[12]
1397
1441
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1398
1442
  ms.StoreMessageInfo(mi)
1399
1443
  }
@@ -1405,7 +1449,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncNotification) String() string {
1405
1449
  func (*Armadillo_ApplicationData_MetadataSyncNotification) ProtoMessage() {}
1406
1450
 
1407
1451
  func (x *Armadillo_ApplicationData_MetadataSyncNotification) ProtoReflect() protoreflect.Message {
1408
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[11]
1452
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[12]
1409
1453
  if x != nil {
1410
1454
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1411
1455
  if ms.LoadMessageInfo() == nil {
@@ -1418,7 +1462,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncNotification) ProtoReflect() prot
1418
1462
 
1419
1463
  // Deprecated: Use Armadillo_ApplicationData_MetadataSyncNotification.ProtoReflect.Descriptor instead.
1420
1464
  func (*Armadillo_ApplicationData_MetadataSyncNotification) Descriptor() ([]byte, []int) {
1421
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2}
1465
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 3}
1422
1466
  }
1423
1467
 
1424
1468
  func (x *Armadillo_ApplicationData_MetadataSyncNotification) GetActions() []*Armadillo_ApplicationData_MetadataSyncAction {
@@ -1441,7 +1485,7 @@ type Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction struct {
1441
1485
 
1442
1486
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) Reset() {
1443
1487
  *x = Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction{}
1444
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[12]
1488
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[13]
1445
1489
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1446
1490
  ms.StoreMessageInfo(mi)
1447
1491
  }
@@ -1453,7 +1497,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) String(
1453
1497
  func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) ProtoMessage() {}
1454
1498
 
1455
1499
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) ProtoReflect() protoreflect.Message {
1456
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[12]
1500
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[13]
1457
1501
  if x != nil {
1458
1502
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1459
1503
  if ms.LoadMessageInfo() == nil {
@@ -1466,7 +1510,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) ProtoRe
1466
1510
 
1467
1511
  // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction.ProtoReflect.Descriptor instead.
1468
1512
  func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) Descriptor() ([]byte, []int) {
1469
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1, 0}
1513
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 0}
1470
1514
  }
1471
1515
 
1472
1516
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) GetAction() isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action {
@@ -1518,7 +1562,7 @@ type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction struct {
1518
1562
 
1519
1563
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) Reset() {
1520
1564
  *x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction{}
1521
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[13]
1565
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[14]
1522
1566
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1523
1567
  ms.StoreMessageInfo(mi)
1524
1568
  }
@@ -1530,7 +1574,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) String() s
1530
1574
  func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) ProtoMessage() {}
1531
1575
 
1532
1576
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) ProtoReflect() protoreflect.Message {
1533
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[13]
1577
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[14]
1534
1578
  if x != nil {
1535
1579
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1536
1580
  if ms.LoadMessageInfo() == nil {
@@ -1543,7 +1587,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) ProtoRefle
1543
1587
 
1544
1588
  // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction.ProtoReflect.Descriptor instead.
1545
1589
  func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) Descriptor() ([]byte, []int) {
1546
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1, 1}
1590
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 1}
1547
1591
  }
1548
1592
 
1549
1593
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetAction() isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action {
@@ -1622,7 +1666,7 @@ type Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage struct {
1622
1666
 
1623
1667
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) Reset() {
1624
1668
  *x = Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage{}
1625
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[14]
1669
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[15]
1626
1670
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1627
1671
  ms.StoreMessageInfo(mi)
1628
1672
  }
@@ -1634,7 +1678,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) String(
1634
1678
  func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) ProtoMessage() {}
1635
1679
 
1636
1680
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) ProtoReflect() protoreflect.Message {
1637
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[14]
1681
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[15]
1638
1682
  if x != nil {
1639
1683
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1640
1684
  if ms.LoadMessageInfo() == nil {
@@ -1647,7 +1691,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) ProtoRe
1647
1691
 
1648
1692
  // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage.ProtoReflect.Descriptor instead.
1649
1693
  func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) Descriptor() ([]byte, []int) {
1650
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1, 2}
1694
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 2}
1651
1695
  }
1652
1696
 
1653
1697
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) GetKey() *waCommon.MessageKey {
@@ -1675,7 +1719,7 @@ type Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange struct
1675
1719
 
1676
1720
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) Reset() {
1677
1721
  *x = Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange{}
1678
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[15]
1722
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[16]
1679
1723
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1680
1724
  ms.StoreMessageInfo(mi)
1681
1725
  }
@@ -1687,7 +1731,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) St
1687
1731
  func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) ProtoMessage() {}
1688
1732
 
1689
1733
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) ProtoReflect() protoreflect.Message {
1690
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[15]
1734
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[16]
1691
1735
  if x != nil {
1692
1736
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1693
1737
  if ms.LoadMessageInfo() == nil {
@@ -1700,7 +1744,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) Pr
1700
1744
 
1701
1745
  // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange.ProtoReflect.Descriptor instead.
1702
1746
  func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) Descriptor() ([]byte, []int) {
1703
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1, 3}
1747
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 3}
1704
1748
  }
1705
1749
 
1706
1750
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) GetLastMessageTimestamp() int64 {
@@ -1732,7 +1776,7 @@ type Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessag
1732
1776
 
1733
1777
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) Reset() {
1734
1778
  *x = Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete{}
1735
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[16]
1779
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[17]
1736
1780
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1737
1781
  ms.StoreMessageInfo(mi)
1738
1782
  }
@@ -1745,7 +1789,7 @@ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMess
1745
1789
  }
1746
1790
 
1747
1791
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) ProtoReflect() protoreflect.Message {
1748
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[16]
1792
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[17]
1749
1793
  if x != nil {
1750
1794
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1751
1795
  if ms.LoadMessageInfo() == nil {
@@ -1758,7 +1802,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMe
1758
1802
 
1759
1803
  // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete.ProtoReflect.Descriptor instead.
1760
1804
  func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) Descriptor() ([]byte, []int) {
1761
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1, 0, 0}
1805
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 0, 0}
1762
1806
  }
1763
1807
 
1764
1808
  type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead struct {
@@ -1771,7 +1815,7 @@ type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead
1771
1815
 
1772
1816
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) Reset() {
1773
1817
  *x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead{}
1774
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[17]
1818
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[18]
1775
1819
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1776
1820
  ms.StoreMessageInfo(mi)
1777
1821
  }
@@ -1783,7 +1827,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatR
1783
1827
  func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) ProtoMessage() {}
1784
1828
 
1785
1829
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) ProtoReflect() protoreflect.Message {
1786
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[17]
1830
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[18]
1787
1831
  if x != nil {
1788
1832
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1789
1833
  if ms.LoadMessageInfo() == nil {
@@ -1796,7 +1840,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatR
1796
1840
 
1797
1841
  // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead.ProtoReflect.Descriptor instead.
1798
1842
  func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) Descriptor() ([]byte, []int) {
1799
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1, 1, 0}
1843
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 1, 0}
1800
1844
  }
1801
1845
 
1802
1846
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) GetMessageRange() *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange {
@@ -1822,7 +1866,7 @@ type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelet
1822
1866
 
1823
1867
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) Reset() {
1824
1868
  *x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete{}
1825
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[18]
1869
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[19]
1826
1870
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1827
1871
  ms.StoreMessageInfo(mi)
1828
1872
  }
@@ -1834,7 +1878,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatD
1834
1878
  func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) ProtoMessage() {}
1835
1879
 
1836
1880
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) ProtoReflect() protoreflect.Message {
1837
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[18]
1881
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[19]
1838
1882
  if x != nil {
1839
1883
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1840
1884
  if ms.LoadMessageInfo() == nil {
@@ -1847,7 +1891,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatD
1847
1891
 
1848
1892
  // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete.ProtoReflect.Descriptor instead.
1849
1893
  func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) Descriptor() ([]byte, []int) {
1850
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1, 1, 1}
1894
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 1, 1}
1851
1895
  }
1852
1896
 
1853
1897
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) GetMessageRange() *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange {
@@ -1867,7 +1911,7 @@ type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchi
1867
1911
 
1868
1912
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) Reset() {
1869
1913
  *x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive{}
1870
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[19]
1914
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[20]
1871
1915
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1872
1916
  ms.StoreMessageInfo(mi)
1873
1917
  }
@@ -1880,7 +1924,7 @@ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArc
1880
1924
  }
1881
1925
 
1882
1926
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) ProtoReflect() protoreflect.Message {
1883
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[19]
1927
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[20]
1884
1928
  if x != nil {
1885
1929
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1886
1930
  if ms.LoadMessageInfo() == nil {
@@ -1893,7 +1937,7 @@ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatA
1893
1937
 
1894
1938
  // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive.ProtoReflect.Descriptor instead.
1895
1939
  func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) Descriptor() ([]byte, []int) {
1896
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1, 1, 2}
1940
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 1, 2}
1897
1941
  }
1898
1942
 
1899
1943
  func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) GetMessageRange() *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange {
@@ -1923,7 +1967,7 @@ type Armadillo_Content_PaymentsTransactionMessage struct {
1923
1967
 
1924
1968
  func (x *Armadillo_Content_PaymentsTransactionMessage) Reset() {
1925
1969
  *x = Armadillo_Content_PaymentsTransactionMessage{}
1926
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[20]
1970
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[21]
1927
1971
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1928
1972
  ms.StoreMessageInfo(mi)
1929
1973
  }
@@ -1935,7 +1979,7 @@ func (x *Armadillo_Content_PaymentsTransactionMessage) String() string {
1935
1979
  func (*Armadillo_Content_PaymentsTransactionMessage) ProtoMessage() {}
1936
1980
 
1937
1981
  func (x *Armadillo_Content_PaymentsTransactionMessage) ProtoReflect() protoreflect.Message {
1938
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[20]
1982
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[21]
1939
1983
  if x != nil {
1940
1984
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1941
1985
  if ms.LoadMessageInfo() == nil {
@@ -1986,50 +2030,6 @@ func (x *Armadillo_Content_PaymentsTransactionMessage) GetExtendedContentMessage
1986
2030
  return nil
1987
2031
  }
1988
2032
 
1989
- type Armadillo_Content_MessageHistoryDocumentMessage struct {
1990
- state protoimpl.MessageState `protogen:"open.v1"`
1991
- Document *waCommon.SubProtocol `protobuf:"bytes,1,opt,name=document" json:"document,omitempty"`
1992
- unknownFields protoimpl.UnknownFields
1993
- sizeCache protoimpl.SizeCache
1994
- }
1995
-
1996
- func (x *Armadillo_Content_MessageHistoryDocumentMessage) Reset() {
1997
- *x = Armadillo_Content_MessageHistoryDocumentMessage{}
1998
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[21]
1999
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2000
- ms.StoreMessageInfo(mi)
2001
- }
2002
-
2003
- func (x *Armadillo_Content_MessageHistoryDocumentMessage) String() string {
2004
- return protoimpl.X.MessageStringOf(x)
2005
- }
2006
-
2007
- func (*Armadillo_Content_MessageHistoryDocumentMessage) ProtoMessage() {}
2008
-
2009
- func (x *Armadillo_Content_MessageHistoryDocumentMessage) ProtoReflect() protoreflect.Message {
2010
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[21]
2011
- if x != nil {
2012
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2013
- if ms.LoadMessageInfo() == nil {
2014
- ms.StoreMessageInfo(mi)
2015
- }
2016
- return ms
2017
- }
2018
- return mi.MessageOf(x)
2019
- }
2020
-
2021
- // Deprecated: Use Armadillo_Content_MessageHistoryDocumentMessage.ProtoReflect.Descriptor instead.
2022
- func (*Armadillo_Content_MessageHistoryDocumentMessage) Descriptor() ([]byte, []int) {
2023
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 1}
2024
- }
2025
-
2026
- func (x *Armadillo_Content_MessageHistoryDocumentMessage) GetDocument() *waCommon.SubProtocol {
2027
- if x != nil {
2028
- return x.Document
2029
- }
2030
- return nil
2031
- }
2032
-
2033
2033
  type Armadillo_Content_NetworkVerificationMessage struct {
2034
2034
  state protoimpl.MessageState `protogen:"open.v1"`
2035
2035
  CodeText *string `protobuf:"bytes,1,opt,name=codeText" json:"codeText,omitempty"`
@@ -2064,7 +2064,7 @@ func (x *Armadillo_Content_NetworkVerificationMessage) ProtoReflect() protorefle
2064
2064
 
2065
2065
  // Deprecated: Use Armadillo_Content_NetworkVerificationMessage.ProtoReflect.Descriptor instead.
2066
2066
  func (*Armadillo_Content_NetworkVerificationMessage) Descriptor() ([]byte, []int) {
2067
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 2}
2067
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 1}
2068
2068
  }
2069
2069
 
2070
2070
  func (x *Armadillo_Content_NetworkVerificationMessage) GetCodeText() string {
@@ -2116,7 +2116,7 @@ func (x *Armadillo_Content_NoteReplyMessage) ProtoReflect() protoreflect.Message
2116
2116
 
2117
2117
  // Deprecated: Use Armadillo_Content_NoteReplyMessage.ProtoReflect.Descriptor instead.
2118
2118
  func (*Armadillo_Content_NoteReplyMessage) Descriptor() ([]byte, []int) {
2119
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 3}
2119
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 2}
2120
2120
  }
2121
2121
 
2122
2122
  func (x *Armadillo_Content_NoteReplyMessage) GetNoteReplyContent() isArmadillo_Content_NoteReplyMessage_NoteReplyContent {
@@ -2233,7 +2233,7 @@ func (x *Armadillo_Content_BumpExistingMessage) ProtoReflect() protoreflect.Mess
2233
2233
 
2234
2234
  // Deprecated: Use Armadillo_Content_BumpExistingMessage.ProtoReflect.Descriptor instead.
2235
2235
  func (*Armadillo_Content_BumpExistingMessage) Descriptor() ([]byte, []int) {
2236
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 4}
2236
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 3}
2237
2237
  }
2238
2238
 
2239
2239
  func (x *Armadillo_Content_BumpExistingMessage) GetKey() *waCommon.MessageKey {
@@ -2277,7 +2277,7 @@ func (x *Armadillo_Content_ImageGalleryMessage) ProtoReflect() protoreflect.Mess
2277
2277
 
2278
2278
  // Deprecated: Use Armadillo_Content_ImageGalleryMessage.ProtoReflect.Descriptor instead.
2279
2279
  func (*Armadillo_Content_ImageGalleryMessage) Descriptor() ([]byte, []int) {
2280
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 5}
2280
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 4}
2281
2281
  }
2282
2282
 
2283
2283
  func (x *Armadillo_Content_ImageGalleryMessage) GetImages() []*waCommon.SubProtocol {
@@ -2321,7 +2321,7 @@ func (x *Armadillo_Content_ScreenshotAction) ProtoReflect() protoreflect.Message
2321
2321
 
2322
2322
  // Deprecated: Use Armadillo_Content_ScreenshotAction.ProtoReflect.Descriptor instead.
2323
2323
  func (*Armadillo_Content_ScreenshotAction) Descriptor() ([]byte, []int) {
2324
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 6}
2324
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 5}
2325
2325
  }
2326
2326
 
2327
2327
  func (x *Armadillo_Content_ScreenshotAction) GetScreenshotType() Armadillo_Content_ScreenshotAction_ScreenshotType {
@@ -2369,7 +2369,7 @@ func (x *Armadillo_Content_ExtendedContentMessageWithSear) ProtoReflect() protor
2369
2369
 
2370
2370
  // Deprecated: Use Armadillo_Content_ExtendedContentMessageWithSear.ProtoReflect.Descriptor instead.
2371
2371
  func (*Armadillo_Content_ExtendedContentMessageWithSear) Descriptor() ([]byte, []int) {
2372
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 7}
2372
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 6}
2373
2373
  }
2374
2374
 
2375
2375
  func (x *Armadillo_Content_ExtendedContentMessageWithSear) GetSearID() string {
@@ -2443,7 +2443,7 @@ func (x *Armadillo_Content_RavenActionNotifMessage) ProtoReflect() protoreflect.
2443
2443
 
2444
2444
  // Deprecated: Use Armadillo_Content_RavenActionNotifMessage.ProtoReflect.Descriptor instead.
2445
2445
  func (*Armadillo_Content_RavenActionNotifMessage) Descriptor() ([]byte, []int) {
2446
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 8}
2446
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 7}
2447
2447
  }
2448
2448
 
2449
2449
  func (x *Armadillo_Content_RavenActionNotifMessage) GetKey() *waCommon.MessageKey {
@@ -2506,7 +2506,7 @@ func (x *Armadillo_Content_RavenMessage) ProtoReflect() protoreflect.Message {
2506
2506
 
2507
2507
  // Deprecated: Use Armadillo_Content_RavenMessage.ProtoReflect.Descriptor instead.
2508
2508
  func (*Armadillo_Content_RavenMessage) Descriptor() ([]byte, []int) {
2509
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 9}
2509
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 8}
2510
2510
  }
2511
2511
 
2512
2512
  func (x *Armadillo_Content_RavenMessage) GetMediaContent() isArmadillo_Content_RavenMessage_MediaContent {
@@ -2591,7 +2591,7 @@ func (x *Armadillo_Content_CommonSticker) ProtoReflect() protoreflect.Message {
2591
2591
 
2592
2592
  // Deprecated: Use Armadillo_Content_CommonSticker.ProtoReflect.Descriptor instead.
2593
2593
  func (*Armadillo_Content_CommonSticker) Descriptor() ([]byte, []int) {
2594
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 10}
2594
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 9}
2595
2595
  }
2596
2596
 
2597
2597
  func (x *Armadillo_Content_CommonSticker) GetStickerType() Armadillo_Content_CommonSticker_StickerType {
@@ -2603,17 +2603,197 @@ func (x *Armadillo_Content_CommonSticker) GetStickerType() Armadillo_Content_Com
2603
2603
 
2604
2604
  var File_waArmadilloApplication_WAArmadilloApplication_proto protoreflect.FileDescriptor
2605
2605
 
2606
- //go:embed WAArmadilloApplication.pb.raw
2607
- var file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc []byte
2606
+ const file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc = "" +
2607
+ "\n" +
2608
+ "3waArmadilloApplication/WAArmadilloApplication.proto\x12\x16WAArmadilloApplication\x1a#waArmadilloXMA/WAArmadilloXMA.proto\x1a\x17waCommon/WACommon.proto\"\x97?\n" +
2609
+ "\tArmadillo\x12C\n" +
2610
+ "\apayload\x18\x01 \x01(\v2).WAArmadilloApplication.Armadillo.PayloadR\apayload\x12F\n" +
2611
+ "\bmetadata\x18\x02 \x01(\v2*.WAArmadilloApplication.Armadillo.MetadataR\bmetadata\x1a\n" +
2612
+ "\n" +
2613
+ "\bMetadata\x1a\xd8\x02\n" +
2614
+ "\aPayload\x12E\n" +
2615
+ "\acontent\x18\x01 \x01(\v2).WAArmadilloApplication.Armadillo.ContentH\x00R\acontent\x12]\n" +
2616
+ "\x0fapplicationData\x18\x02 \x01(\v21.WAArmadilloApplication.Armadillo.ApplicationDataH\x00R\x0fapplicationData\x12B\n" +
2617
+ "\x06signal\x18\x03 \x01(\v2(.WAArmadilloApplication.Armadillo.SignalH\x00R\x06signal\x12X\n" +
2618
+ "\vsubProtocol\x18\x04 \x01(\v24.WAArmadilloApplication.Armadillo.SubProtocolPayloadH\x00R\vsubProtocolB\t\n" +
2619
+ "\apayload\x1aU\n" +
2620
+ "\x12SubProtocolPayload\x12?\n" +
2621
+ "\vfutureProof\x18\x01 \x01(\x0e2\x1d.WACommon.FutureProofBehaviorR\vfutureProof\x1a\xc2\x05\n" +
2622
+ "\x06Signal\x12|\n" +
2623
+ "\x17encryptedBackupsSecrets\x18\x01 \x01(\v2@.WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecretsH\x00R\x17encryptedBackupsSecrets\x1a\xaf\x04\n" +
2624
+ "\x17EncryptedBackupsSecrets\x12\x1a\n" +
2625
+ "\bbackupID\x18\x01 \x01(\x04R\bbackupID\x12\"\n" +
2626
+ "\fserverDataID\x18\x02 \x01(\x04R\fserverDataID\x12\\\n" +
2627
+ "\x05epoch\x18\x03 \x03(\v2F.WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.EpochR\x05epoch\x120\n" +
2628
+ "\x13tempOcmfClientState\x18\x04 \x01(\fR\x13tempOcmfClientState\x12&\n" +
2629
+ "\x0emailboxRootKey\x18\x05 \x01(\fR\x0emailboxRootKey\x12:\n" +
2630
+ "\x18obliviousValidationToken\x18\x06 \x01(\fR\x18obliviousValidationToken\x1a\xdf\x01\n" +
2631
+ "\x05Epoch\x12\x0e\n" +
2632
+ "\x02ID\x18\x01 \x01(\x04R\x02ID\x12\x16\n" +
2633
+ "\x06anonID\x18\x02 \x01(\fR\x06anonID\x12\x18\n" +
2634
+ "\arootKey\x18\x03 \x01(\fR\arootKey\x12j\n" +
2635
+ "\x06status\x18\x04 \x01(\x0e2R.WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch.EpochStatusR\x06status\"(\n" +
2636
+ "\vEpochStatus\x12\v\n" +
2637
+ "\aES_OPEN\x10\x01\x12\f\n" +
2638
+ "\bES_CLOSE\x10\x02B\b\n" +
2639
+ "\x06signal\x1a\xcf\x14\n" +
2640
+ "\x0fApplicationData\x12p\n" +
2641
+ "\fmetadataSync\x18\x01 \x01(\v2J.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotificationH\x00R\fmetadataSync\x12n\n" +
2642
+ "\raiBotResponse\x18\x02 \x01(\v2F.WAArmadilloApplication.Armadillo.ApplicationData.AIBotResponseMessageH\x00R\raiBotResponse\x12\x97\x01\n" +
2643
+ "\x1dmessageHistoryDocumentMessage\x18\x03 \x01(\v2O.WAArmadilloApplication.Armadillo.ApplicationData.MessageHistoryDocumentMessageH\x00R\x1dmessageHistoryDocumentMessage\x1aR\n" +
2644
+ "\x1dMessageHistoryDocumentMessage\x121\n" +
2645
+ "\bdocument\x18\x01 \x01(\v2\x15.WACommon.SubProtocolR\bdocument\x1a\x86\x01\n" +
2646
+ "\x14AIBotResponseMessage\x12 \n" +
2647
+ "\vsummonToken\x18\x01 \x01(\tR\vsummonToken\x12 \n" +
2648
+ "\vmessageText\x18\x02 \x01(\tR\vmessageText\x12*\n" +
2649
+ "\x10serializedExtras\x18\x03 \x01(\tR\x10serializedExtras\x1a\xd3\x0e\n" +
2650
+ "\x12MetadataSyncAction\x12u\n" +
2651
+ "\n" +
2652
+ "chatAction\x18e \x01(\v2S.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatActionH\x00R\n" +
2653
+ "chatAction\x12~\n" +
2654
+ "\rmessageAction\x18f \x01(\v2V.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageActionH\x00R\rmessageAction\x12(\n" +
2655
+ "\x0factionTimestamp\x18\x01 \x01(\x03R\x0factionTimestamp\x1a\xf1\x01\n" +
2656
+ "\x11SyncMessageAction\x12\x92\x01\n" +
2657
+ "\rmessageDelete\x18e \x01(\v2j.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.ActionMessageDeleteH\x00R\rmessageDelete\x12&\n" +
2658
+ "\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x1a\x15\n" +
2659
+ "\x13ActionMessageDeleteB\b\n" +
2660
+ "\x06action\x1a\xbb\a\n" +
2661
+ "\x0eSyncChatAction\x12\x89\x01\n" +
2662
+ "\vchatArchive\x18e \x01(\v2e.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchiveH\x00R\vchatArchive\x12\x86\x01\n" +
2663
+ "\n" +
2664
+ "chatDelete\x18f \x01(\v2d.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDeleteH\x00R\n" +
2665
+ "chatDelete\x12\x80\x01\n" +
2666
+ "\bchatRead\x18g \x01(\v2b.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatReadH\x00R\bchatRead\x12\x16\n" +
2667
+ "\x06chatID\x18\x01 \x01(\tR\x06chatID\x1a\xa5\x01\n" +
2668
+ "\x0eActionChatRead\x12\x7f\n" +
2669
+ "\fmessageRange\x18\x01 \x01(\v2[.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRangeR\fmessageRange\x12\x12\n" +
2670
+ "\x04read\x18\x02 \x01(\bR\x04read\x1a\x93\x01\n" +
2671
+ "\x10ActionChatDelete\x12\x7f\n" +
2672
+ "\fmessageRange\x18\x01 \x01(\v2[.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRangeR\fmessageRange\x1a\xb0\x01\n" +
2673
+ "\x11ActionChatArchive\x12\x7f\n" +
2674
+ "\fmessageRange\x18\x01 \x01(\v2[.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRangeR\fmessageRange\x12\x1a\n" +
2675
+ "\barchived\x18\x02 \x01(\bR\barchivedB\b\n" +
2676
+ "\x06action\x1aY\n" +
2677
+ "\x11SyncActionMessage\x12&\n" +
2678
+ "\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x12\x1c\n" +
2679
+ "\ttimestamp\x18\x02 \x01(\x03R\ttimestamp\x1a\x80\x02\n" +
2680
+ "\x16SyncActionMessageRange\x122\n" +
2681
+ "\x14lastMessageTimestamp\x18\x01 \x01(\x03R\x14lastMessageTimestamp\x12>\n" +
2682
+ "\x1alastSystemMessageTimestamp\x18\x02 \x01(\x03R\x1alastSystemMessageTimestamp\x12r\n" +
2683
+ "\bmessages\x18\x03 \x03(\v2V.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageR\bmessagesB\f\n" +
2684
+ "\n" +
2685
+ "actionType\x1az\n" +
2686
+ "\x18MetadataSyncNotification\x12^\n" +
2687
+ "\aactions\x18\x02 \x03(\v2D.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncActionR\aactionsB\x11\n" +
2688
+ "\x0fapplicationData\x1a\xa7 \n" +
2689
+ "\aContent\x12_\n" +
2690
+ "\rcommonSticker\x18\x01 \x01(\v27.WAArmadilloApplication.Armadillo.Content.CommonStickerH\x00R\rcommonSticker\x12h\n" +
2691
+ "\x10screenshotAction\x18\x03 \x01(\v2:.WAArmadilloApplication.Armadillo.Content.ScreenshotActionH\x00R\x10screenshotAction\x12`\n" +
2692
+ "\x16extendedContentMessage\x18\x04 \x01(\v2&.WAArmadilloXMA.ExtendedContentMessageH\x00R\x16extendedContentMessage\x12\\\n" +
2693
+ "\fravenMessage\x18\x05 \x01(\v26.WAArmadilloApplication.Armadillo.Content.RavenMessageH\x00R\fravenMessage\x12}\n" +
2694
+ "\x17ravenActionNotifMessage\x18\x06 \x01(\v2A.WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessageH\x00R\x17ravenActionNotifMessage\x12\x92\x01\n" +
2695
+ "\x1eextendedMessageContentWithSear\x18\a \x01(\v2H.WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSearH\x00R\x1eextendedMessageContentWithSear\x12q\n" +
2696
+ "\x13imageGalleryMessage\x18\b \x01(\v2=.WAArmadilloApplication.Armadillo.Content.ImageGalleryMessageH\x00R\x13imageGalleryMessage\x12\x86\x01\n" +
2697
+ "\x1apaymentsTransactionMessage\x18\n" +
2698
+ " \x01(\v2D.WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessageH\x00R\x1apaymentsTransactionMessage\x12q\n" +
2699
+ "\x13bumpExistingMessage\x18\v \x01(\v2=.WAArmadilloApplication.Armadillo.Content.BumpExistingMessageH\x00R\x13bumpExistingMessage\x12h\n" +
2700
+ "\x10noteReplyMessage\x18\r \x01(\v2:.WAArmadilloApplication.Armadillo.Content.NoteReplyMessageH\x00R\x10noteReplyMessage\x12d\n" +
2701
+ "\x10ravenMessageMsgr\x18\x0e \x01(\v26.WAArmadilloApplication.Armadillo.Content.RavenMessageH\x00R\x10ravenMessageMsgr\x12\x86\x01\n" +
2702
+ "\x1anetworkVerificationMessage\x18\x0f \x01(\v2D.WAArmadilloApplication.Armadillo.Content.NetworkVerificationMessageH\x00R\x1anetworkVerificationMessage\x1a\xba\a\n" +
2703
+ "\x1aPaymentsTransactionMessage\x12$\n" +
2704
+ "\rtransactionID\x18\x01 \x01(\x04R\rtransactionID\x12\x16\n" +
2705
+ "\x06amount\x18\x02 \x01(\tR\x06amount\x12\x1a\n" +
2706
+ "\bcurrency\x18\x03 \x01(\tR\bcurrency\x12x\n" +
2707
+ "\rpaymentStatus\x18\x04 \x01(\x0e2R.WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.PaymentStatusR\rpaymentStatus\x12^\n" +
2708
+ "\x16extendedContentMessage\x18\x05 \x01(\v2&.WAArmadilloXMA.ExtendedContentMessageR\x16extendedContentMessage\"\xe7\x04\n" +
2709
+ "\rPaymentStatus\x12\x13\n" +
2710
+ "\x0fPAYMENT_UNKNOWN\x10\x00\x12\x12\n" +
2711
+ "\x0eREQUEST_INITED\x10\x04\x12\x14\n" +
2712
+ "\x10REQUEST_DECLINED\x10\x05\x12\x1b\n" +
2713
+ "\x17REQUEST_TRANSFER_INITED\x10\x06\x12\x1e\n" +
2714
+ "\x1aREQUEST_TRANSFER_COMPLETED\x10\a\x12\x1b\n" +
2715
+ "\x17REQUEST_TRANSFER_FAILED\x10\b\x12\x14\n" +
2716
+ "\x10REQUEST_CANCELED\x10\t\x12\x13\n" +
2717
+ "\x0fREQUEST_EXPIRED\x10\n" +
2718
+ "\x12\x13\n" +
2719
+ "\x0fTRANSFER_INITED\x10\v\x12\x14\n" +
2720
+ "\x10TRANSFER_PENDING\x10\f\x12+\n" +
2721
+ "'TRANSFER_PENDING_RECIPIENT_VERIFICATION\x10\r\x12\x15\n" +
2722
+ "\x11TRANSFER_CANCELED\x10\x0e\x12\x16\n" +
2723
+ "\x12TRANSFER_COMPLETED\x10\x0f\x12;\n" +
2724
+ "7TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_CANCELED\x10\x10\x128\n" +
2725
+ "4TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_OTHER\x10\x11\x12\x15\n" +
2726
+ "\x11TRANSFER_REFUNDED\x10\x12\x12\x1b\n" +
2727
+ "\x17TRANSFER_PARTIAL_REFUND\x10\x13\x12\x19\n" +
2728
+ "\x15TRANSFER_CHARGED_BACK\x10\x14\x12\x14\n" +
2729
+ "\x10TRANSFER_EXPIRED\x10\x15\x12\x15\n" +
2730
+ "\x11TRANSFER_DECLINED\x10\x16\x12\x18\n" +
2731
+ "\x14TRANSFER_UNAVAILABLE\x10\x17\x1a8\n" +
2732
+ "\x1aNetworkVerificationMessage\x12\x1a\n" +
2733
+ "\bcodeText\x18\x01 \x01(\tR\bcodeText\x1a\xd4\x02\n" +
2734
+ "\x10NoteReplyMessage\x129\n" +
2735
+ "\vtextContent\x18\x04 \x01(\v2\x15.WACommon.MessageTextH\x00R\vtextContent\x12?\n" +
2736
+ "\x0estickerContent\x18\x05 \x01(\v2\x15.WACommon.SubProtocolH\x00R\x0estickerContent\x12;\n" +
2737
+ "\fvideoContent\x18\x06 \x01(\v2\x15.WACommon.SubProtocolH\x00R\fvideoContent\x12\x16\n" +
2738
+ "\x06noteID\x18\x01 \x01(\tR\x06noteID\x121\n" +
2739
+ "\bnoteText\x18\x02 \x01(\v2\x15.WACommon.MessageTextR\bnoteText\x12(\n" +
2740
+ "\x0fnoteTimestampMS\x18\x03 \x01(\x03R\x0fnoteTimestampMSB\x12\n" +
2741
+ "\x10noteReplyContent\x1a=\n" +
2742
+ "\x13BumpExistingMessage\x12&\n" +
2743
+ "\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x1aD\n" +
2744
+ "\x13ImageGalleryMessage\x12-\n" +
2745
+ "\x06images\x18\x01 \x03(\v2\x15.WACommon.SubProtocolR\x06images\x1a\xc3\x01\n" +
2746
+ "\x10ScreenshotAction\x12q\n" +
2747
+ "\x0escreenshotType\x18\x01 \x01(\x0e2I.WAArmadilloApplication.Armadillo.Content.ScreenshotAction.ScreenshotTypeR\x0escreenshotType\"<\n" +
2748
+ "\x0eScreenshotType\x12\x14\n" +
2749
+ "\x10SCREENSHOT_IMAGE\x10\x01\x12\x14\n" +
2750
+ "\x10SCREEN_RECORDING\x10\x02\x1a\xf3\x01\n" +
2751
+ "\x1eExtendedContentMessageWithSear\x12\x16\n" +
2752
+ "\x06searID\x18\x01 \x01(\tR\x06searID\x12\x18\n" +
2753
+ "\apayload\x18\x02 \x01(\fR\apayload\x12\x1c\n" +
2754
+ "\tnativeURL\x18\x03 \x01(\tR\tnativeURL\x12K\n" +
2755
+ "\x15searAssociatedMessage\x18\x04 \x01(\v2\x15.WACommon.SubProtocolR\x15searAssociatedMessage\x124\n" +
2756
+ "\x15searSentWithMessageID\x18\x05 \x01(\tR\x15searSentWithMessageID\x1a\x96\x02\n" +
2757
+ "\x17RavenActionNotifMessage\x12&\n" +
2758
+ "\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x12(\n" +
2759
+ "\x0factionTimestamp\x18\x02 \x01(\x03R\x0factionTimestamp\x12l\n" +
2760
+ "\n" +
2761
+ "actionType\x18\x03 \x01(\x0e2L.WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.ActionTypeR\n" +
2762
+ "actionType\";\n" +
2763
+ "\n" +
2764
+ "ActionType\x12\n" +
2765
+ "\n" +
2766
+ "\x06PLAYED\x10\x00\x12\x0e\n" +
2767
+ "\n" +
2768
+ "SCREENSHOT\x10\x01\x12\x11\n" +
2769
+ "\rFORCE_DISABLE\x10\x02\x1a\xc8\x02\n" +
2770
+ "\fRavenMessage\x12;\n" +
2771
+ "\fimageMessage\x18\x02 \x01(\v2\x15.WACommon.SubProtocolH\x00R\fimageMessage\x12;\n" +
2772
+ "\fvideoMessage\x18\x03 \x01(\v2\x15.WACommon.SubProtocolH\x00R\fvideoMessage\x12j\n" +
2773
+ "\rephemeralType\x18\x01 \x01(\x0e2D.WAArmadilloApplication.Armadillo.Content.RavenMessage.EphemeralTypeR\rephemeralType\"B\n" +
2774
+ "\rEphemeralType\x12\r\n" +
2775
+ "\tVIEW_ONCE\x10\x00\x12\x10\n" +
2776
+ "\fALLOW_REPLAY\x10\x01\x12\x10\n" +
2777
+ "\fKEEP_IN_CHAT\x10\x02B\x0e\n" +
2778
+ "\fmediaContent\x1a\xb6\x01\n" +
2779
+ "\rCommonSticker\x12e\n" +
2780
+ "\vstickerType\x18\x01 \x01(\x0e2C.WAArmadilloApplication.Armadillo.Content.CommonSticker.StickerTypeR\vstickerType\">\n" +
2781
+ "\vStickerType\x12\x0e\n" +
2782
+ "\n" +
2783
+ "SMALL_LIKE\x10\x01\x12\x0f\n" +
2784
+ "\vMEDIUM_LIKE\x10\x02\x12\x0e\n" +
2785
+ "\n" +
2786
+ "LARGE_LIKE\x10\x03B\t\n" +
2787
+ "\acontentB2Z0go.mau.fi/whatsmeow/proto/waArmadilloApplication"
2608
2788
 
2609
2789
  var (
2610
2790
  file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescOnce sync.Once
2611
- file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData = file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc
2791
+ file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData []byte
2612
2792
  )
2613
2793
 
2614
2794
  func file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP() []byte {
2615
2795
  file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescOnce.Do(func() {
2616
- file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData = protoimpl.X.CompressGZIP(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData)
2796
+ file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc), len(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc)))
2617
2797
  })
2618
2798
  return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData
2619
2799
  }
@@ -2636,19 +2816,19 @@ var file_waArmadilloApplication_WAArmadilloApplication_proto_goTypes = []any{
2636
2816
  (*Armadillo_Content)(nil), // 12: WAArmadilloApplication.Armadillo.Content
2637
2817
  (*Armadillo_Signal_EncryptedBackupsSecrets)(nil), // 13: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets
2638
2818
  (*Armadillo_Signal_EncryptedBackupsSecrets_Epoch)(nil), // 14: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch
2639
- (*Armadillo_ApplicationData_AIBotResponseMessage)(nil), // 15: WAArmadilloApplication.Armadillo.ApplicationData.AIBotResponseMessage
2640
- (*Armadillo_ApplicationData_MetadataSyncAction)(nil), // 16: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction
2641
- (*Armadillo_ApplicationData_MetadataSyncNotification)(nil), // 17: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotification
2642
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction)(nil), // 18: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction
2643
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction)(nil), // 19: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction
2644
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage)(nil), // 20: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessage
2645
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange)(nil), // 21: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
2646
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete)(nil), // 22: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.ActionMessageDelete
2647
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead)(nil), // 23: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatRead
2648
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete)(nil), // 24: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDelete
2649
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive)(nil), // 25: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchive
2650
- (*Armadillo_Content_PaymentsTransactionMessage)(nil), // 26: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage
2651
- (*Armadillo_Content_MessageHistoryDocumentMessage)(nil), // 27: WAArmadilloApplication.Armadillo.Content.MessageHistoryDocumentMessage
2819
+ (*Armadillo_ApplicationData_MessageHistoryDocumentMessage)(nil), // 15: WAArmadilloApplication.Armadillo.ApplicationData.MessageHistoryDocumentMessage
2820
+ (*Armadillo_ApplicationData_AIBotResponseMessage)(nil), // 16: WAArmadilloApplication.Armadillo.ApplicationData.AIBotResponseMessage
2821
+ (*Armadillo_ApplicationData_MetadataSyncAction)(nil), // 17: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction
2822
+ (*Armadillo_ApplicationData_MetadataSyncNotification)(nil), // 18: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotification
2823
+ (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction)(nil), // 19: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction
2824
+ (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction)(nil), // 20: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction
2825
+ (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage)(nil), // 21: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessage
2826
+ (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange)(nil), // 22: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
2827
+ (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete)(nil), // 23: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.ActionMessageDelete
2828
+ (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead)(nil), // 24: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatRead
2829
+ (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete)(nil), // 25: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDelete
2830
+ (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive)(nil), // 26: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchive
2831
+ (*Armadillo_Content_PaymentsTransactionMessage)(nil), // 27: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage
2652
2832
  (*Armadillo_Content_NetworkVerificationMessage)(nil), // 28: WAArmadilloApplication.Armadillo.Content.NetworkVerificationMessage
2653
2833
  (*Armadillo_Content_NoteReplyMessage)(nil), // 29: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage
2654
2834
  (*Armadillo_Content_BumpExistingMessage)(nil), // 30: WAArmadilloApplication.Armadillo.Content.BumpExistingMessage
@@ -2660,8 +2840,8 @@ var file_waArmadilloApplication_WAArmadilloApplication_proto_goTypes = []any{
2660
2840
  (*Armadillo_Content_CommonSticker)(nil), // 36: WAArmadilloApplication.Armadillo.Content.CommonSticker
2661
2841
  (waCommon.FutureProofBehavior)(0), // 37: WACommon.FutureProofBehavior
2662
2842
  (*waArmadilloXMA.ExtendedContentMessage)(nil), // 38: WAArmadilloXMA.ExtendedContentMessage
2663
- (*waCommon.MessageKey)(nil), // 39: WACommon.MessageKey
2664
- (*waCommon.SubProtocol)(nil), // 40: WACommon.SubProtocol
2843
+ (*waCommon.SubProtocol)(nil), // 39: WACommon.SubProtocol
2844
+ (*waCommon.MessageKey)(nil), // 40: WACommon.MessageKey
2665
2845
  (*waCommon.MessageText)(nil), // 41: WACommon.MessageText
2666
2846
  }
2667
2847
  var file_waArmadilloApplication_WAArmadilloApplication_proto_depIdxs = []int32{
@@ -2673,51 +2853,51 @@ var file_waArmadilloApplication_WAArmadilloApplication_proto_depIdxs = []int32{
2673
2853
  9, // 5: WAArmadilloApplication.Armadillo.Payload.subProtocol:type_name -> WAArmadilloApplication.Armadillo.SubProtocolPayload
2674
2854
  37, // 6: WAArmadilloApplication.Armadillo.SubProtocolPayload.futureProof:type_name -> WACommon.FutureProofBehavior
2675
2855
  13, // 7: WAArmadilloApplication.Armadillo.Signal.encryptedBackupsSecrets:type_name -> WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets
2676
- 17, // 8: WAArmadilloApplication.Armadillo.ApplicationData.metadataSync:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotification
2677
- 15, // 9: WAArmadilloApplication.Armadillo.ApplicationData.aiBotResponse:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.AIBotResponseMessage
2678
- 36, // 10: WAArmadilloApplication.Armadillo.Content.commonSticker:type_name -> WAArmadilloApplication.Armadillo.Content.CommonSticker
2679
- 32, // 11: WAArmadilloApplication.Armadillo.Content.screenshotAction:type_name -> WAArmadilloApplication.Armadillo.Content.ScreenshotAction
2680
- 38, // 12: WAArmadilloApplication.Armadillo.Content.extendedContentMessage:type_name -> WAArmadilloXMA.ExtendedContentMessage
2681
- 35, // 13: WAArmadilloApplication.Armadillo.Content.ravenMessage:type_name -> WAArmadilloApplication.Armadillo.Content.RavenMessage
2682
- 34, // 14: WAArmadilloApplication.Armadillo.Content.ravenActionNotifMessage:type_name -> WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage
2683
- 33, // 15: WAArmadilloApplication.Armadillo.Content.extendedMessageContentWithSear:type_name -> WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSear
2684
- 31, // 16: WAArmadilloApplication.Armadillo.Content.imageGalleryMessage:type_name -> WAArmadilloApplication.Armadillo.Content.ImageGalleryMessage
2685
- 26, // 17: WAArmadilloApplication.Armadillo.Content.paymentsTransactionMessage:type_name -> WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage
2686
- 30, // 18: WAArmadilloApplication.Armadillo.Content.bumpExistingMessage:type_name -> WAArmadilloApplication.Armadillo.Content.BumpExistingMessage
2687
- 29, // 19: WAArmadilloApplication.Armadillo.Content.noteReplyMessage:type_name -> WAArmadilloApplication.Armadillo.Content.NoteReplyMessage
2688
- 35, // 20: WAArmadilloApplication.Armadillo.Content.ravenMessageMsgr:type_name -> WAArmadilloApplication.Armadillo.Content.RavenMessage
2689
- 28, // 21: WAArmadilloApplication.Armadillo.Content.networkVerificationMessage:type_name -> WAArmadilloApplication.Armadillo.Content.NetworkVerificationMessage
2690
- 27, // 22: WAArmadilloApplication.Armadillo.Content.messageHistoryDocumentMessage:type_name -> WAArmadilloApplication.Armadillo.Content.MessageHistoryDocumentMessage
2856
+ 18, // 8: WAArmadilloApplication.Armadillo.ApplicationData.metadataSync:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotification
2857
+ 16, // 9: WAArmadilloApplication.Armadillo.ApplicationData.aiBotResponse:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.AIBotResponseMessage
2858
+ 15, // 10: WAArmadilloApplication.Armadillo.ApplicationData.messageHistoryDocumentMessage:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MessageHistoryDocumentMessage
2859
+ 36, // 11: WAArmadilloApplication.Armadillo.Content.commonSticker:type_name -> WAArmadilloApplication.Armadillo.Content.CommonSticker
2860
+ 32, // 12: WAArmadilloApplication.Armadillo.Content.screenshotAction:type_name -> WAArmadilloApplication.Armadillo.Content.ScreenshotAction
2861
+ 38, // 13: WAArmadilloApplication.Armadillo.Content.extendedContentMessage:type_name -> WAArmadilloXMA.ExtendedContentMessage
2862
+ 35, // 14: WAArmadilloApplication.Armadillo.Content.ravenMessage:type_name -> WAArmadilloApplication.Armadillo.Content.RavenMessage
2863
+ 34, // 15: WAArmadilloApplication.Armadillo.Content.ravenActionNotifMessage:type_name -> WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage
2864
+ 33, // 16: WAArmadilloApplication.Armadillo.Content.extendedMessageContentWithSear:type_name -> WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSear
2865
+ 31, // 17: WAArmadilloApplication.Armadillo.Content.imageGalleryMessage:type_name -> WAArmadilloApplication.Armadillo.Content.ImageGalleryMessage
2866
+ 27, // 18: WAArmadilloApplication.Armadillo.Content.paymentsTransactionMessage:type_name -> WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage
2867
+ 30, // 19: WAArmadilloApplication.Armadillo.Content.bumpExistingMessage:type_name -> WAArmadilloApplication.Armadillo.Content.BumpExistingMessage
2868
+ 29, // 20: WAArmadilloApplication.Armadillo.Content.noteReplyMessage:type_name -> WAArmadilloApplication.Armadillo.Content.NoteReplyMessage
2869
+ 35, // 21: WAArmadilloApplication.Armadillo.Content.ravenMessageMsgr:type_name -> WAArmadilloApplication.Armadillo.Content.RavenMessage
2870
+ 28, // 22: WAArmadilloApplication.Armadillo.Content.networkVerificationMessage:type_name -> WAArmadilloApplication.Armadillo.Content.NetworkVerificationMessage
2691
2871
  14, // 23: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.epoch:type_name -> WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch
2692
2872
  0, // 24: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch.status:type_name -> WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch.EpochStatus
2693
- 19, // 25: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.chatAction:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction
2694
- 18, // 26: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.messageAction:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction
2695
- 16, // 27: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotification.actions:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction
2696
- 22, // 28: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.messageDelete:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.ActionMessageDelete
2697
- 39, // 29: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.key:type_name -> WACommon.MessageKey
2698
- 25, // 30: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.chatArchive:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchive
2699
- 24, // 31: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.chatDelete:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDelete
2700
- 23, // 32: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.chatRead:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatRead
2701
- 39, // 33: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
2702
- 20, // 34: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange.messages:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessage
2703
- 21, // 35: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatRead.messageRange:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
2704
- 21, // 36: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDelete.messageRange:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
2705
- 21, // 37: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchive.messageRange:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
2706
- 1, // 38: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.paymentStatus:type_name -> WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.PaymentStatus
2707
- 38, // 39: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.extendedContentMessage:type_name -> WAArmadilloXMA.ExtendedContentMessage
2708
- 40, // 40: WAArmadilloApplication.Armadillo.Content.MessageHistoryDocumentMessage.document:type_name -> WACommon.SubProtocol
2873
+ 39, // 25: WAArmadilloApplication.Armadillo.ApplicationData.MessageHistoryDocumentMessage.document:type_name -> WACommon.SubProtocol
2874
+ 20, // 26: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.chatAction:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction
2875
+ 19, // 27: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.messageAction:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction
2876
+ 17, // 28: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotification.actions:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction
2877
+ 23, // 29: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.messageDelete:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.ActionMessageDelete
2878
+ 40, // 30: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.key:type_name -> WACommon.MessageKey
2879
+ 26, // 31: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.chatArchive:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchive
2880
+ 25, // 32: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.chatDelete:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDelete
2881
+ 24, // 33: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.chatRead:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatRead
2882
+ 40, // 34: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
2883
+ 21, // 35: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange.messages:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessage
2884
+ 22, // 36: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatRead.messageRange:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
2885
+ 22, // 37: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDelete.messageRange:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
2886
+ 22, // 38: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchive.messageRange:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
2887
+ 1, // 39: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.paymentStatus:type_name -> WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.PaymentStatus
2888
+ 38, // 40: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.extendedContentMessage:type_name -> WAArmadilloXMA.ExtendedContentMessage
2709
2889
  41, // 41: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.textContent:type_name -> WACommon.MessageText
2710
- 40, // 42: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.stickerContent:type_name -> WACommon.SubProtocol
2711
- 40, // 43: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.videoContent:type_name -> WACommon.SubProtocol
2890
+ 39, // 42: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.stickerContent:type_name -> WACommon.SubProtocol
2891
+ 39, // 43: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.videoContent:type_name -> WACommon.SubProtocol
2712
2892
  41, // 44: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.noteText:type_name -> WACommon.MessageText
2713
- 39, // 45: WAArmadilloApplication.Armadillo.Content.BumpExistingMessage.key:type_name -> WACommon.MessageKey
2714
- 40, // 46: WAArmadilloApplication.Armadillo.Content.ImageGalleryMessage.images:type_name -> WACommon.SubProtocol
2893
+ 40, // 45: WAArmadilloApplication.Armadillo.Content.BumpExistingMessage.key:type_name -> WACommon.MessageKey
2894
+ 39, // 46: WAArmadilloApplication.Armadillo.Content.ImageGalleryMessage.images:type_name -> WACommon.SubProtocol
2715
2895
  2, // 47: WAArmadilloApplication.Armadillo.Content.ScreenshotAction.screenshotType:type_name -> WAArmadilloApplication.Armadillo.Content.ScreenshotAction.ScreenshotType
2716
- 40, // 48: WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSear.searAssociatedMessage:type_name -> WACommon.SubProtocol
2717
- 39, // 49: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.key:type_name -> WACommon.MessageKey
2896
+ 39, // 48: WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSear.searAssociatedMessage:type_name -> WACommon.SubProtocol
2897
+ 40, // 49: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.key:type_name -> WACommon.MessageKey
2718
2898
  3, // 50: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.actionType:type_name -> WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.ActionType
2719
- 40, // 51: WAArmadilloApplication.Armadillo.Content.RavenMessage.imageMessage:type_name -> WACommon.SubProtocol
2720
- 40, // 52: WAArmadilloApplication.Armadillo.Content.RavenMessage.videoMessage:type_name -> WACommon.SubProtocol
2899
+ 39, // 51: WAArmadilloApplication.Armadillo.Content.RavenMessage.imageMessage:type_name -> WACommon.SubProtocol
2900
+ 39, // 52: WAArmadilloApplication.Armadillo.Content.RavenMessage.videoMessage:type_name -> WACommon.SubProtocol
2721
2901
  4, // 53: WAArmadilloApplication.Armadillo.Content.RavenMessage.ephemeralType:type_name -> WAArmadilloApplication.Armadillo.Content.RavenMessage.EphemeralType
2722
2902
  5, // 54: WAArmadilloApplication.Armadillo.Content.CommonSticker.stickerType:type_name -> WAArmadilloApplication.Armadillo.Content.CommonSticker.StickerType
2723
2903
  55, // [55:55] is the sub-list for method output_type
@@ -2744,6 +2924,7 @@ func file_waArmadilloApplication_WAArmadilloApplication_proto_init() {
2744
2924
  file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[5].OneofWrappers = []any{
2745
2925
  (*Armadillo_ApplicationData_MetadataSync)(nil),
2746
2926
  (*Armadillo_ApplicationData_AiBotResponse)(nil),
2927
+ (*Armadillo_ApplicationData_MessageHistoryDocumentMessage_)(nil),
2747
2928
  }
2748
2929
  file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[6].OneofWrappers = []any{
2749
2930
  (*Armadillo_Content_CommonSticker_)(nil),
@@ -2758,16 +2939,15 @@ func file_waArmadilloApplication_WAArmadilloApplication_proto_init() {
2758
2939
  (*Armadillo_Content_NoteReplyMessage_)(nil),
2759
2940
  (*Armadillo_Content_RavenMessageMsgr)(nil),
2760
2941
  (*Armadillo_Content_NetworkVerificationMessage_)(nil),
2761
- (*Armadillo_Content_MessageHistoryDocumentMessage_)(nil),
2762
2942
  }
2763
- file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[10].OneofWrappers = []any{
2943
+ file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[11].OneofWrappers = []any{
2764
2944
  (*Armadillo_ApplicationData_MetadataSyncAction_ChatAction)(nil),
2765
2945
  (*Armadillo_ApplicationData_MetadataSyncAction_MessageAction)(nil),
2766
2946
  }
2767
- file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[12].OneofWrappers = []any{
2947
+ file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[13].OneofWrappers = []any{
2768
2948
  (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete)(nil),
2769
2949
  }
2770
- file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[13].OneofWrappers = []any{
2950
+ file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[14].OneofWrappers = []any{
2771
2951
  (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive)(nil),
2772
2952
  (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete)(nil),
2773
2953
  (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead)(nil),
@@ -2785,7 +2965,7 @@ func file_waArmadilloApplication_WAArmadilloApplication_proto_init() {
2785
2965
  out := protoimpl.TypeBuilder{
2786
2966
  File: protoimpl.DescBuilder{
2787
2967
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
2788
- RawDescriptor: file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc,
2968
+ RawDescriptor: unsafe.Slice(unsafe.StringData(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc), len(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc)),
2789
2969
  NumEnums: 6,
2790
2970
  NumMessages: 31,
2791
2971
  NumExtensions: 0,
@@ -2797,7 +2977,6 @@ func file_waArmadilloApplication_WAArmadilloApplication_proto_init() {
2797
2977
  MessageInfos: file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes,
2798
2978
  }.Build()
2799
2979
  File_waArmadilloApplication_WAArmadilloApplication_proto = out.File
2800
- file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc = nil
2801
2980
  file_waArmadilloApplication_WAArmadilloApplication_proto_goTypes = nil
2802
2981
  file_waArmadilloApplication_WAArmadilloApplication_proto_depIdxs = nil
2803
2982
  }