slidge-whatsapp 0.2.2__cp311-cp311-manylinux_2_36_aarch64.whl → 0.2.5__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 (1134) hide show
  1. slidge_whatsapp/__init__.py +26 -8
  2. slidge_whatsapp/__main__.py +3 -0
  3. slidge_whatsapp/contact.py +1 -1
  4. slidge_whatsapp/event.go +56 -0
  5. slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.h +180 -143
  6. slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.so +0 -0
  7. slidge_whatsapp/generated/build.py +134 -109
  8. slidge_whatsapp/generated/go.py +1 -1
  9. slidge_whatsapp/generated/whatsapp.c +1768 -1297
  10. slidge_whatsapp/generated/whatsapp.go +1356 -1111
  11. slidge_whatsapp/generated/whatsapp.py +1389 -1069
  12. slidge_whatsapp/generated/whatsapp_go.h +180 -143
  13. slidge_whatsapp/go.mod +11 -9
  14. slidge_whatsapp/go.sum +16 -16
  15. slidge_whatsapp/group.py +7 -2
  16. slidge_whatsapp/media/__init__.py +0 -0
  17. slidge_whatsapp/media/media.go +8 -3
  18. slidge_whatsapp/session.go +4 -5
  19. slidge_whatsapp/session.py +53 -31
  20. slidge_whatsapp/vendor/filippo.io/edwards25519/LICENSE +27 -0
  21. slidge_whatsapp/vendor/filippo.io/edwards25519/README.md +14 -0
  22. slidge_whatsapp/vendor/filippo.io/edwards25519/doc.go +20 -0
  23. slidge_whatsapp/vendor/filippo.io/edwards25519/edwards25519.go +427 -0
  24. slidge_whatsapp/vendor/filippo.io/edwards25519/extra.go +349 -0
  25. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe.go +420 -0
  26. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_amd64.go +16 -0
  27. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_amd64.s +379 -0
  28. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_amd64_noasm.go +12 -0
  29. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_arm64.go +16 -0
  30. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_arm64.s +42 -0
  31. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_arm64_noasm.go +12 -0
  32. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_extra.go +50 -0
  33. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_generic.go +266 -0
  34. slidge_whatsapp/vendor/filippo.io/edwards25519/scalar.go +343 -0
  35. slidge_whatsapp/vendor/filippo.io/edwards25519/scalar_fiat.go +1147 -0
  36. slidge_whatsapp/vendor/filippo.io/edwards25519/scalarmult.go +214 -0
  37. slidge_whatsapp/vendor/filippo.io/edwards25519/tables.go +129 -0
  38. slidge_whatsapp/vendor/github.com/ebitengine/purego/.gitignore +1 -0
  39. slidge_whatsapp/vendor/github.com/ebitengine/purego/LICENSE +201 -0
  40. slidge_whatsapp/vendor/github.com/ebitengine/purego/README.md +97 -0
  41. slidge_whatsapp/vendor/github.com/ebitengine/purego/abi_amd64.h +99 -0
  42. slidge_whatsapp/vendor/github.com/ebitengine/purego/abi_arm64.h +39 -0
  43. slidge_whatsapp/vendor/github.com/ebitengine/purego/cgo.go +19 -0
  44. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlerror.go +17 -0
  45. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn.go +99 -0
  46. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_android.go +34 -0
  47. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_darwin.go +24 -0
  48. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_freebsd.go +14 -0
  49. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_linux.go +16 -0
  50. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_nocgo_freebsd.go +11 -0
  51. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_nocgo_linux.go +19 -0
  52. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_playground.go +24 -0
  53. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_stubs.s +26 -0
  54. slidge_whatsapp/vendor/github.com/ebitengine/purego/func.go +436 -0
  55. slidge_whatsapp/vendor/github.com/ebitengine/purego/go_runtime.go +13 -0
  56. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/dlfcn_cgo_unix.go +56 -0
  57. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/empty.go +6 -0
  58. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/syscall_cgo_unix.go +55 -0
  59. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/abi_amd64.h +99 -0
  60. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/abi_arm64.h +39 -0
  61. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/asm_amd64.s +39 -0
  62. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/asm_arm64.s +36 -0
  63. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/callbacks.go +93 -0
  64. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/doc.go +32 -0
  65. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/freebsd.go +27 -0
  66. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_darwin_amd64.go +73 -0
  67. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_darwin_arm64.go +88 -0
  68. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_freebsd_amd64.go +95 -0
  69. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_freebsd_arm64.go +98 -0
  70. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_libinit.go +69 -0
  71. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_linux_amd64.go +95 -0
  72. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_linux_arm64.go +98 -0
  73. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_setenv.go +18 -0
  74. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_util.go +37 -0
  75. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/iscgo.go +19 -0
  76. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo.go +39 -0
  77. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_darwin.go +22 -0
  78. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_freebsd.go +16 -0
  79. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_linux.go +16 -0
  80. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/setenv.go +19 -0
  81. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols.go +201 -0
  82. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_darwin.go +29 -0
  83. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_freebsd.go +29 -0
  84. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_linux.go +29 -0
  85. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_amd64.s +104 -0
  86. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_arm64.s +72 -0
  87. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_stubs.s +90 -0
  88. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/strings/strings.go +40 -0
  89. slidge_whatsapp/vendor/github.com/ebitengine/purego/is_ios.go +13 -0
  90. slidge_whatsapp/vendor/github.com/ebitengine/purego/nocgo.go +25 -0
  91. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_amd64.go +260 -0
  92. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_arm64.go +274 -0
  93. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_other.go +16 -0
  94. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_amd64.s +164 -0
  95. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_arm64.s +92 -0
  96. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_unix_arm64.s +70 -0
  97. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall.go +53 -0
  98. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_cgo_linux.go +21 -0
  99. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_sysv.go +223 -0
  100. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_windows.go +46 -0
  101. slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_amd64.s +2014 -0
  102. slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_arm64.s +4014 -0
  103. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/.gitattributes +6 -0
  104. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/AUTHORS +1 -0
  105. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/COPYING +661 -0
  106. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/README.md +71 -0
  107. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz.go +66 -0
  108. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo.go +596 -0
  109. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo_cgo.go +18 -0
  110. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo_extlib.go +11 -0
  111. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo_extlib_pkgconfig.go +9 -0
  112. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_content_types.go +383 -0
  113. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_nocgo.go +1098 -0
  114. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_vendor.go +9 -0
  115. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/archive.h +444 -0
  116. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/band-writer.h +117 -0
  117. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/bidi.h +90 -0
  118. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/bitmap.h +175 -0
  119. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/buffer.h +250 -0
  120. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/color.h +427 -0
  121. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/compress.h +88 -0
  122. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/compressed-buffer.h +185 -0
  123. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/config.h +222 -0
  124. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/context.h +1006 -0
  125. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/crypt.h +270 -0
  126. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/device.h +654 -0
  127. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/display-list.h +142 -0
  128. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/document.h +1108 -0
  129. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/export.h +52 -0
  130. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/filter.h +263 -0
  131. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/font.h +815 -0
  132. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/geometry.h +818 -0
  133. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/getopt.h +128 -0
  134. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/glyph-cache.h +96 -0
  135. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/glyph.h +81 -0
  136. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/hash.h +126 -0
  137. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/heap-imp.h +163 -0
  138. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/heap.h +140 -0
  139. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/image.h +443 -0
  140. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/link.h +130 -0
  141. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/log.h +61 -0
  142. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/outline.h +228 -0
  143. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/output-svg.h +64 -0
  144. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/output.h +415 -0
  145. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/path.h +447 -0
  146. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/pixmap.h +501 -0
  147. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/pool.h +68 -0
  148. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/separation.h +138 -0
  149. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/shade.h +233 -0
  150. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/store.h +456 -0
  151. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/story-writer.h +209 -0
  152. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/story.h +232 -0
  153. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/stream.h +646 -0
  154. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/string-util.h +286 -0
  155. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/structured-text.h +365 -0
  156. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/system.h +459 -0
  157. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/text.h +209 -0
  158. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/track-usage.h +57 -0
  159. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/transition.h +76 -0
  160. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/tree.h +62 -0
  161. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/types.h +41 -0
  162. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/util.h +151 -0
  163. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/vendor.go +3 -0
  164. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/version.h +31 -0
  165. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/write-pixmap.h +499 -0
  166. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/writer.h +266 -0
  167. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/xml.h +397 -0
  168. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz.h +97 -0
  169. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/memento.h +423 -0
  170. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/vendor.go +3 -0
  171. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/libs/libmupdf_linux_arm64.a +0 -0
  172. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/libs/libmupdfthird_linux_arm64.a +0 -0
  173. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/libs/vendor.go +3 -0
  174. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_darwin.go +23 -0
  175. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_linux.go +22 -0
  176. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_windows.go +22 -0
  177. slidge_whatsapp/vendor/github.com/go-python/gopy/LICENSE +23 -0
  178. slidge_whatsapp/vendor/github.com/go-python/gopy/gopyh/handle.go +210 -0
  179. slidge_whatsapp/vendor/github.com/google/uuid/CHANGELOG.md +41 -0
  180. slidge_whatsapp/vendor/github.com/google/uuid/CONTRIBUTING.md +26 -0
  181. slidge_whatsapp/vendor/github.com/google/uuid/CONTRIBUTORS +9 -0
  182. slidge_whatsapp/vendor/github.com/google/uuid/LICENSE +27 -0
  183. slidge_whatsapp/vendor/github.com/google/uuid/README.md +21 -0
  184. slidge_whatsapp/vendor/github.com/google/uuid/dce.go +80 -0
  185. slidge_whatsapp/vendor/github.com/google/uuid/doc.go +12 -0
  186. slidge_whatsapp/vendor/github.com/google/uuid/hash.go +59 -0
  187. slidge_whatsapp/vendor/github.com/google/uuid/marshal.go +38 -0
  188. slidge_whatsapp/vendor/github.com/google/uuid/node.go +90 -0
  189. slidge_whatsapp/vendor/github.com/google/uuid/node_js.go +12 -0
  190. slidge_whatsapp/vendor/github.com/google/uuid/node_net.go +33 -0
  191. slidge_whatsapp/vendor/github.com/google/uuid/null.go +118 -0
  192. slidge_whatsapp/vendor/github.com/google/uuid/sql.go +59 -0
  193. slidge_whatsapp/vendor/github.com/google/uuid/time.go +134 -0
  194. slidge_whatsapp/vendor/github.com/google/uuid/util.go +43 -0
  195. slidge_whatsapp/vendor/github.com/google/uuid/uuid.go +365 -0
  196. slidge_whatsapp/vendor/github.com/google/uuid/version1.go +44 -0
  197. slidge_whatsapp/vendor/github.com/google/uuid/version4.go +76 -0
  198. slidge_whatsapp/vendor/github.com/google/uuid/version6.go +56 -0
  199. slidge_whatsapp/vendor/github.com/google/uuid/version7.go +104 -0
  200. slidge_whatsapp/vendor/github.com/gorilla/websocket/.gitignore +25 -0
  201. slidge_whatsapp/vendor/github.com/gorilla/websocket/AUTHORS +9 -0
  202. slidge_whatsapp/vendor/github.com/gorilla/websocket/LICENSE +22 -0
  203. slidge_whatsapp/vendor/github.com/gorilla/websocket/README.md +33 -0
  204. slidge_whatsapp/vendor/github.com/gorilla/websocket/client.go +434 -0
  205. slidge_whatsapp/vendor/github.com/gorilla/websocket/compression.go +148 -0
  206. slidge_whatsapp/vendor/github.com/gorilla/websocket/conn.go +1238 -0
  207. slidge_whatsapp/vendor/github.com/gorilla/websocket/doc.go +227 -0
  208. slidge_whatsapp/vendor/github.com/gorilla/websocket/join.go +42 -0
  209. slidge_whatsapp/vendor/github.com/gorilla/websocket/json.go +60 -0
  210. slidge_whatsapp/vendor/github.com/gorilla/websocket/mask.go +55 -0
  211. slidge_whatsapp/vendor/github.com/gorilla/websocket/mask_safe.go +16 -0
  212. slidge_whatsapp/vendor/github.com/gorilla/websocket/prepared.go +102 -0
  213. slidge_whatsapp/vendor/github.com/gorilla/websocket/proxy.go +77 -0
  214. slidge_whatsapp/vendor/github.com/gorilla/websocket/server.go +365 -0
  215. slidge_whatsapp/vendor/github.com/gorilla/websocket/tls_handshake.go +21 -0
  216. slidge_whatsapp/vendor/github.com/gorilla/websocket/tls_handshake_116.go +21 -0
  217. slidge_whatsapp/vendor/github.com/gorilla/websocket/util.go +298 -0
  218. slidge_whatsapp/vendor/github.com/gorilla/websocket/x_net_proxy.go +473 -0
  219. slidge_whatsapp/vendor/github.com/h2non/filetype/.editorconfig +12 -0
  220. slidge_whatsapp/vendor/github.com/h2non/filetype/.gitignore +2 -0
  221. slidge_whatsapp/vendor/github.com/h2non/filetype/.travis.yml +16 -0
  222. slidge_whatsapp/vendor/github.com/h2non/filetype/History.md +163 -0
  223. slidge_whatsapp/vendor/github.com/h2non/filetype/LICENSE +24 -0
  224. slidge_whatsapp/vendor/github.com/h2non/filetype/README.md +294 -0
  225. slidge_whatsapp/vendor/github.com/h2non/filetype/filetype.go +102 -0
  226. slidge_whatsapp/vendor/github.com/h2non/filetype/kind.go +91 -0
  227. slidge_whatsapp/vendor/github.com/h2non/filetype/match.go +90 -0
  228. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/application.go +43 -0
  229. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/archive.go +211 -0
  230. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/audio.go +85 -0
  231. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/document.go +197 -0
  232. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/font.go +45 -0
  233. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/image.go +143 -0
  234. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/isobmff/isobmff.go +37 -0
  235. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/matchers.go +51 -0
  236. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/video.go +145 -0
  237. slidge_whatsapp/vendor/github.com/h2non/filetype/types/defaults.go +4 -0
  238. slidge_whatsapp/vendor/github.com/h2non/filetype/types/mime.go +14 -0
  239. slidge_whatsapp/vendor/github.com/h2non/filetype/types/split.go +11 -0
  240. slidge_whatsapp/vendor/github.com/h2non/filetype/types/type.go +16 -0
  241. slidge_whatsapp/vendor/github.com/h2non/filetype/types/types.go +23 -0
  242. slidge_whatsapp/vendor/github.com/h2non/filetype/version.go +4 -0
  243. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/.gitignore +21 -0
  244. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/CHANGELOG.md +56 -0
  245. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/COPYRIGHT.txt +147 -0
  246. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/LICENSE +21 -0
  247. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/README.md +162 -0
  248. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi.go +7 -0
  249. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi_amd64.go +7 -0
  250. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +272 -0
  251. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/fun.go +46 -0
  252. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/init.go +55 -0
  253. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib.go +82 -0
  254. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_unix.go +63 -0
  255. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_windows.go +68 -0
  256. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/tramp_amd64.go +5 -0
  257. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/tramp_arm64.go +5 -0
  258. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/tramp_darwin_arm64.go +5 -0
  259. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/types.go +34 -0
  260. slidge_whatsapp/vendor/github.com/mattn/go-colorable/LICENSE +21 -0
  261. slidge_whatsapp/vendor/github.com/mattn/go-colorable/README.md +48 -0
  262. slidge_whatsapp/vendor/github.com/mattn/go-colorable/colorable_others.go +38 -0
  263. slidge_whatsapp/vendor/github.com/mattn/go-colorable/colorable_windows.go +1047 -0
  264. slidge_whatsapp/vendor/github.com/mattn/go-colorable/go.test.sh +12 -0
  265. slidge_whatsapp/vendor/github.com/mattn/go-colorable/noncolorable.go +57 -0
  266. slidge_whatsapp/vendor/github.com/mattn/go-isatty/LICENSE +9 -0
  267. slidge_whatsapp/vendor/github.com/mattn/go-isatty/README.md +50 -0
  268. slidge_whatsapp/vendor/github.com/mattn/go-isatty/doc.go +2 -0
  269. slidge_whatsapp/vendor/github.com/mattn/go-isatty/go.test.sh +12 -0
  270. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_bsd.go +20 -0
  271. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_others.go +17 -0
  272. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_plan9.go +23 -0
  273. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_solaris.go +21 -0
  274. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_tcgets.go +20 -0
  275. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_windows.go +125 -0
  276. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/.codecov.yml +4 -0
  277. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/.gitignore +14 -0
  278. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/LICENSE +21 -0
  279. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/README.md +603 -0
  280. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/backup.go +85 -0
  281. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/callback.go +411 -0
  282. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/convert.go +299 -0
  283. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/doc.go +134 -0
  284. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/error.go +150 -0
  285. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +258039 -0
  286. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +13526 -0
  287. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3.go +2281 -0
  288. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_context.go +103 -0
  289. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_func_crypt.go +120 -0
  290. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_go18.go +54 -0
  291. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_libsqlite3.go +23 -0
  292. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_load_extension.go +85 -0
  293. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_load_extension_omit.go +25 -0
  294. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_allow_uri_authority.go +16 -0
  295. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_app_armor.go +16 -0
  296. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_column_metadata.go +22 -0
  297. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_foreign_keys.go +16 -0
  298. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_fts5.go +15 -0
  299. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_icu.go +20 -0
  300. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_introspect.go +16 -0
  301. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_math_functions.go +15 -0
  302. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_os_trace.go +15 -0
  303. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_preupdate.go +21 -0
  304. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_preupdate_hook.go +113 -0
  305. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_preupdate_omit.go +22 -0
  306. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_secure_delete.go +16 -0
  307. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_secure_delete_fast.go +16 -0
  308. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_serialize.go +83 -0
  309. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_serialize_omit.go +21 -0
  310. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_stat4.go +16 -0
  311. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.c +85 -0
  312. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.go +93 -0
  313. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth.go +295 -0
  314. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth_omit.go +158 -0
  315. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vacuum_full.go +16 -0
  316. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vacuum_incr.go +16 -0
  317. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vtable.go +721 -0
  318. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_other.go +18 -0
  319. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_solaris.go +15 -0
  320. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_trace.go +288 -0
  321. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_type.go +108 -0
  322. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_usleep_windows.go +42 -0
  323. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_windows.go +18 -0
  324. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3ext.h +728 -0
  325. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/static_mock.go +38 -0
  326. slidge_whatsapp/vendor/github.com/rs/zerolog/.gitignore +25 -0
  327. slidge_whatsapp/vendor/github.com/rs/zerolog/CNAME +1 -0
  328. slidge_whatsapp/vendor/github.com/rs/zerolog/LICENSE +21 -0
  329. slidge_whatsapp/vendor/github.com/rs/zerolog/README.md +782 -0
  330. slidge_whatsapp/vendor/github.com/rs/zerolog/_config.yml +1 -0
  331. slidge_whatsapp/vendor/github.com/rs/zerolog/array.go +240 -0
  332. slidge_whatsapp/vendor/github.com/rs/zerolog/console.go +520 -0
  333. slidge_whatsapp/vendor/github.com/rs/zerolog/context.go +480 -0
  334. slidge_whatsapp/vendor/github.com/rs/zerolog/ctx.go +52 -0
  335. slidge_whatsapp/vendor/github.com/rs/zerolog/encoder.go +56 -0
  336. slidge_whatsapp/vendor/github.com/rs/zerolog/encoder_cbor.go +45 -0
  337. slidge_whatsapp/vendor/github.com/rs/zerolog/encoder_json.go +51 -0
  338. slidge_whatsapp/vendor/github.com/rs/zerolog/event.go +830 -0
  339. slidge_whatsapp/vendor/github.com/rs/zerolog/example.jsonl +7 -0
  340. slidge_whatsapp/vendor/github.com/rs/zerolog/fields.go +292 -0
  341. slidge_whatsapp/vendor/github.com/rs/zerolog/globals.go +190 -0
  342. slidge_whatsapp/vendor/github.com/rs/zerolog/go112.go +7 -0
  343. slidge_whatsapp/vendor/github.com/rs/zerolog/hook.go +64 -0
  344. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/README.md +56 -0
  345. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/base.go +19 -0
  346. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/cbor.go +102 -0
  347. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/decode_stream.go +654 -0
  348. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/string.go +117 -0
  349. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/time.go +93 -0
  350. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/types.go +486 -0
  351. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/base.go +19 -0
  352. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/bytes.go +85 -0
  353. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/string.go +149 -0
  354. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/time.go +113 -0
  355. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/types.go +435 -0
  356. slidge_whatsapp/vendor/github.com/rs/zerolog/log.go +518 -0
  357. slidge_whatsapp/vendor/github.com/rs/zerolog/not_go112.go +5 -0
  358. slidge_whatsapp/vendor/github.com/rs/zerolog/pretty.png +0 -0
  359. slidge_whatsapp/vendor/github.com/rs/zerolog/sampler.go +134 -0
  360. slidge_whatsapp/vendor/github.com/rs/zerolog/syslog.go +89 -0
  361. slidge_whatsapp/vendor/github.com/rs/zerolog/writer.go +346 -0
  362. slidge_whatsapp/vendor/go.mau.fi/libsignal/LICENSE +674 -0
  363. slidge_whatsapp/vendor/go.mau.fi/libsignal/cipher/Cbc.go +101 -0
  364. slidge_whatsapp/vendor/go.mau.fi/libsignal/cipher/Cipher.go +105 -0
  365. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/Curve.go +109 -0
  366. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/DjbECPublicKey.go +29 -0
  367. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/DkbECPrivateKey.go +29 -0
  368. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/Doc.go +3 -0
  369. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/ECKeyPair.go +27 -0
  370. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/ECPrivateKey.go +7 -0
  371. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/ECPublicKey.go +11 -0
  372. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/SignCurve25519.go +97 -0
  373. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupCipher.go +141 -0
  374. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupSessionBuilder.go +84 -0
  375. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/ratchet/Doc.go +3 -0
  376. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/ratchet/SenderChainKey.go +68 -0
  377. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/ratchet/SenderMessageKey.go +89 -0
  378. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/record/Doc.go +2 -0
  379. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/record/SenderKeyRecord.go +149 -0
  380. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/record/SenderKeyState.go +186 -0
  381. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/store/Doc.go +3 -0
  382. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/store/SenderKeyStore.go +11 -0
  383. slidge_whatsapp/vendor/go.mau.fi/libsignal/kdf/HKDF.go +47 -0
  384. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/chain/ChainKey.go +127 -0
  385. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/identity/IdentityKey.go +47 -0
  386. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/identity/IdentityKeyPair.go +39 -0
  387. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/message/MessageKey.go +91 -0
  388. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/prekey/PreKeyBundle.go +86 -0
  389. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/root/RootKey.go +66 -0
  390. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/session/DerivedSecrets.go +29 -0
  391. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/session/Pair.go +43 -0
  392. slidge_whatsapp/vendor/go.mau.fi/libsignal/logger/DefaultLogger.go +85 -0
  393. slidge_whatsapp/vendor/go.mau.fi/libsignal/logger/Logger.go +89 -0
  394. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/CiphertextMessage.go +19 -0
  395. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/Doc.go +3 -0
  396. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/PreKeySignalMessage.go +152 -0
  397. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SenderKeyDistributionMessage.go +147 -0
  398. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SenderKeyMessage.go +168 -0
  399. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SenderKeyName.go +25 -0
  400. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SignalMessage.go +226 -0
  401. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SignalProtocolAddress.go +38 -0
  402. slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/Ratchet.go +197 -0
  403. slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/ReceiverParameters.go +106 -0
  404. slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/SenderParameters.go +106 -0
  405. slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/SymmetricParameters.go +18 -0
  406. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/FingerprintProtocol.pb.go +245 -0
  407. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/FingerprintProtocol.proto +14 -0
  408. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/JSONSerializer.go +303 -0
  409. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/LocalStorageProtocol.pb.go +1500 -0
  410. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/LocalStorageProtocol.proto +114 -0
  411. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/ProtoBufferSerializer.go +262 -0
  412. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/Serializer.go +31 -0
  413. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/WhisperTextProtocol.pb.go +640 -0
  414. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/WhisperTextProtocol.proto +45 -0
  415. slidge_whatsapp/vendor/go.mau.fi/libsignal/session/Session.go +275 -0
  416. slidge_whatsapp/vendor/go.mau.fi/libsignal/session/SessionCipher.go +375 -0
  417. slidge_whatsapp/vendor/go.mau.fi/libsignal/signalerror/errors.go +37 -0
  418. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/ChainState.go +157 -0
  419. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/Doc.go +3 -0
  420. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/PendingKeyExchangeState.go +91 -0
  421. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/PendingPreKeyState.go +62 -0
  422. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/PreKeyRecord.go +90 -0
  423. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/SessionRecord.go +197 -0
  424. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/SessionState.go +531 -0
  425. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/SignedPreKeyRecord.go +112 -0
  426. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/UnacknowledgedPreKey.go +69 -0
  427. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/Doc.go +3 -0
  428. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/IdentityKeyStore.go +29 -0
  429. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/MessageKeyStore.go +21 -0
  430. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/PreKeyStore.go +21 -0
  431. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SessionStore.go +17 -0
  432. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SignalProtocolStore.go +15 -0
  433. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SignedPreKeyStore.go +24 -0
  434. slidge_whatsapp/vendor/go.mau.fi/libsignal/util/bytehelper/ByteHelper.go +97 -0
  435. slidge_whatsapp/vendor/go.mau.fi/libsignal/util/errorhelper/ErrorHelper.go +40 -0
  436. slidge_whatsapp/vendor/go.mau.fi/libsignal/util/keyhelper/KeyHelper.go +95 -0
  437. slidge_whatsapp/vendor/go.mau.fi/libsignal/util/medium/Medium.go +4 -0
  438. slidge_whatsapp/vendor/go.mau.fi/libsignal/util/optional/Integer.go +17 -0
  439. slidge_whatsapp/vendor/go.mau.fi/util/LICENSE +373 -0
  440. slidge_whatsapp/vendor/go.mau.fi/util/fallocate/doc.go +9 -0
  441. slidge_whatsapp/vendor/go.mau.fi/util/fallocate/fallocate_darwin.go +29 -0
  442. slidge_whatsapp/vendor/go.mau.fi/util/fallocate/fallocate_linux.go +24 -0
  443. slidge_whatsapp/vendor/go.mau.fi/util/fallocate/fallocate_unknown.go +17 -0
  444. slidge_whatsapp/vendor/go.mau.fi/util/jsontime/duration.go +155 -0
  445. slidge_whatsapp/vendor/go.mau.fi/util/jsontime/helpers.go +59 -0
  446. slidge_whatsapp/vendor/go.mau.fi/util/jsontime/integer.go +170 -0
  447. slidge_whatsapp/vendor/go.mau.fi/util/jsontime/string.go +95 -0
  448. slidge_whatsapp/vendor/go.mau.fi/util/random/bytes.go +21 -0
  449. slidge_whatsapp/vendor/go.mau.fi/util/random/string.go +87 -0
  450. slidge_whatsapp/vendor/go.mau.fi/util/retryafter/retryafter.go +53 -0
  451. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.editorconfig +13 -0
  452. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.gitattributes +3 -0
  453. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.pre-commit-config.yaml +31 -0
  454. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/LICENSE +374 -0
  455. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/README.md +35 -0
  456. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +311 -0
  457. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +322 -0
  458. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/errors.go +19 -0
  459. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +97 -0
  460. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/keys.go +137 -0
  461. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/lthash/lthash.go +58 -0
  462. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +407 -0
  463. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +99 -0
  464. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/attrs.go +218 -0
  465. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/decoder.go +406 -0
  466. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/encoder.go +308 -0
  467. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/errors.go +12 -0
  468. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/node.go +139 -0
  469. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/token/token.go +94 -0
  470. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/unpack.go +31 -0
  471. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/xml.go +108 -0
  472. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/broadcast.go +142 -0
  473. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +112 -0
  474. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +851 -0
  475. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +196 -0
  476. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +201 -0
  477. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +370 -0
  478. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +260 -0
  479. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +930 -0
  480. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/handshake.go +165 -0
  481. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +660 -0
  482. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +84 -0
  483. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaconn.go +96 -0
  484. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaretry.go +184 -0
  485. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +683 -0
  486. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +287 -0
  487. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +376 -0
  488. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +421 -0
  489. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +242 -0
  490. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +248 -0
  491. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +251 -0
  492. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +138 -0
  493. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/privacysettings.go +171 -0
  494. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/.gitignore +1 -0
  495. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/armadilloutil/decode.go +32 -0
  496. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/extra.go +36 -0
  497. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.go +485 -0
  498. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.raw +0 -0
  499. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.proto +43 -0
  500. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.go +2803 -0
  501. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.raw +0 -0
  502. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.proto +258 -0
  503. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/extra.go +3 -0
  504. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +874 -0
  505. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.raw +0 -0
  506. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +139 -0
  507. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.go +392 -0
  508. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.raw +23 -0
  509. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.proto +34 -0
  510. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.go +134 -0
  511. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.raw +7 -0
  512. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.proto +10 -0
  513. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.go +456 -0
  514. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.raw +0 -0
  515. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.proto +41 -0
  516. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/legacy.go +11 -0
  517. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.pb.go +892 -0
  518. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.pb.raw +0 -0
  519. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.proto +100 -0
  520. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.go +2653 -0
  521. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.raw +0 -0
  522. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.proto +233 -0
  523. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/extra.go +82 -0
  524. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +185 -0
  525. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.raw +0 -0
  526. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +13 -0
  527. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +22080 -0
  528. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.raw +0 -0
  529. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +2299 -0
  530. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/legacy.go +31 -0
  531. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +2047 -0
  532. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.raw +0 -0
  533. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +217 -0
  534. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/legacy.go +11 -0
  535. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.go +1977 -0
  536. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.raw +0 -0
  537. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.proto +190 -0
  538. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.go +249 -0
  539. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.raw +0 -0
  540. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.proto +20 -0
  541. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.go +1016 -0
  542. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.raw +0 -0
  543. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.proto +88 -0
  544. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/extra.go +41 -0
  545. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.go +808 -0
  546. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.raw +0 -0
  547. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.proto +75 -0
  548. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/extra.go +19 -0
  549. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.go +702 -0
  550. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.raw +0 -0
  551. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.proto +57 -0
  552. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/extra.go +3 -0
  553. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.go +805 -0
  554. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.raw +0 -0
  555. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.proto +72 -0
  556. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/legacy.go +31 -0
  557. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +4675 -0
  558. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.raw +0 -0
  559. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +461 -0
  560. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.go +410 -0
  561. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.raw +0 -0
  562. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.proto +33 -0
  563. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.go +802 -0
  564. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.raw +0 -0
  565. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.proto +72 -0
  566. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +2021 -0
  567. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.raw +0 -0
  568. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +245 -0
  569. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +3895 -0
  570. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.raw +0 -0
  571. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +577 -0
  572. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/legacy.go +1 -0
  573. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/push.go +110 -0
  574. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/qrchan.go +180 -0
  575. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +238 -0
  576. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/request.go +225 -0
  577. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +440 -0
  578. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +1128 -0
  579. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +646 -0
  580. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/constants.go +43 -0
  581. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/framesocket.go +235 -0
  582. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/noisehandshake.go +124 -0
  583. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/noisesocket.go +108 -0
  584. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +185 -0
  585. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +214 -0
  586. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/signal.go +195 -0
  587. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +270 -0
  588. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +773 -0
  589. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrade.go +296 -0
  590. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +194 -0
  591. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +21 -0
  592. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/appstate.go +185 -0
  593. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/call.go +77 -0
  594. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +600 -0
  595. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/group.go +155 -0
  596. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +263 -0
  597. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +98 -0
  598. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/newsletter.go +201 -0
  599. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/presence.go +78 -0
  600. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +195 -0
  601. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/update.go +63 -0
  602. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/upload.go +251 -0
  603. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +864 -0
  604. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/cbcutil/cbc.go +217 -0
  605. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/gcmutil/gcm.go +41 -0
  606. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/hkdfutil/hkdf.go +28 -0
  607. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/keys/keypair.go +68 -0
  608. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/log/log.go +83 -0
  609. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/log/zerolog.go +38 -0
  610. slidge_whatsapp/vendor/golang.org/x/crypto/LICENSE +27 -0
  611. slidge_whatsapp/vendor/golang.org/x/crypto/PATENTS +22 -0
  612. slidge_whatsapp/vendor/golang.org/x/crypto/curve25519/curve25519.go +90 -0
  613. slidge_whatsapp/vendor/golang.org/x/crypto/hkdf/hkdf.go +95 -0
  614. slidge_whatsapp/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go +77 -0
  615. slidge_whatsapp/vendor/golang.org/x/image/LICENSE +27 -0
  616. slidge_whatsapp/vendor/golang.org/x/image/PATENTS +22 -0
  617. slidge_whatsapp/vendor/golang.org/x/image/draw/draw.go +67 -0
  618. slidge_whatsapp/vendor/golang.org/x/image/draw/impl.go +8426 -0
  619. slidge_whatsapp/vendor/golang.org/x/image/draw/scale.go +525 -0
  620. slidge_whatsapp/vendor/golang.org/x/image/math/f64/f64.go +37 -0
  621. slidge_whatsapp/vendor/golang.org/x/image/riff/riff.go +193 -0
  622. slidge_whatsapp/vendor/golang.org/x/image/vp8/decode.go +403 -0
  623. slidge_whatsapp/vendor/golang.org/x/image/vp8/filter.go +273 -0
  624. slidge_whatsapp/vendor/golang.org/x/image/vp8/idct.go +98 -0
  625. slidge_whatsapp/vendor/golang.org/x/image/vp8/partition.go +129 -0
  626. slidge_whatsapp/vendor/golang.org/x/image/vp8/pred.go +201 -0
  627. slidge_whatsapp/vendor/golang.org/x/image/vp8/predfunc.go +553 -0
  628. slidge_whatsapp/vendor/golang.org/x/image/vp8/quant.go +98 -0
  629. slidge_whatsapp/vendor/golang.org/x/image/vp8/reconstruct.go +442 -0
  630. slidge_whatsapp/vendor/golang.org/x/image/vp8/token.go +381 -0
  631. slidge_whatsapp/vendor/golang.org/x/image/vp8l/decode.go +603 -0
  632. slidge_whatsapp/vendor/golang.org/x/image/vp8l/huffman.go +245 -0
  633. slidge_whatsapp/vendor/golang.org/x/image/vp8l/transform.go +299 -0
  634. slidge_whatsapp/vendor/golang.org/x/image/webp/decode.go +276 -0
  635. slidge_whatsapp/vendor/golang.org/x/image/webp/doc.go +9 -0
  636. slidge_whatsapp/vendor/golang.org/x/net/LICENSE +27 -0
  637. slidge_whatsapp/vendor/golang.org/x/net/PATENTS +22 -0
  638. slidge_whatsapp/vendor/golang.org/x/net/internal/socks/client.go +168 -0
  639. slidge_whatsapp/vendor/golang.org/x/net/internal/socks/socks.go +317 -0
  640. slidge_whatsapp/vendor/golang.org/x/net/proxy/dial.go +54 -0
  641. slidge_whatsapp/vendor/golang.org/x/net/proxy/direct.go +31 -0
  642. slidge_whatsapp/vendor/golang.org/x/net/proxy/per_host.go +153 -0
  643. slidge_whatsapp/vendor/golang.org/x/net/proxy/proxy.go +149 -0
  644. slidge_whatsapp/vendor/golang.org/x/net/proxy/socks5.go +42 -0
  645. slidge_whatsapp/vendor/golang.org/x/sys/LICENSE +27 -0
  646. slidge_whatsapp/vendor/golang.org/x/sys/PATENTS +22 -0
  647. slidge_whatsapp/vendor/golang.org/x/sys/unix/.gitignore +2 -0
  648. slidge_whatsapp/vendor/golang.org/x/sys/unix/README.md +184 -0
  649. slidge_whatsapp/vendor/golang.org/x/sys/unix/affinity_linux.go +86 -0
  650. slidge_whatsapp/vendor/golang.org/x/sys/unix/aliases.go +13 -0
  651. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s +17 -0
  652. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_386.s +27 -0
  653. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s +27 -0
  654. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_arm.s +27 -0
  655. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s +27 -0
  656. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s +29 -0
  657. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s +27 -0
  658. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_386.s +65 -0
  659. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_amd64.s +57 -0
  660. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_arm.s +56 -0
  661. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_arm64.s +50 -0
  662. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_loong64.s +51 -0
  663. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s +54 -0
  664. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s +52 -0
  665. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s +42 -0
  666. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s +47 -0
  667. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_s390x.s +54 -0
  668. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s +29 -0
  669. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s +17 -0
  670. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_zos_s390x.s +382 -0
  671. slidge_whatsapp/vendor/golang.org/x/sys/unix/auxv.go +36 -0
  672. slidge_whatsapp/vendor/golang.org/x/sys/unix/auxv_unsupported.go +13 -0
  673. slidge_whatsapp/vendor/golang.org/x/sys/unix/bluetooth_linux.go +36 -0
  674. slidge_whatsapp/vendor/golang.org/x/sys/unix/bpxsvc_zos.go +657 -0
  675. slidge_whatsapp/vendor/golang.org/x/sys/unix/bpxsvc_zos.s +192 -0
  676. slidge_whatsapp/vendor/golang.org/x/sys/unix/cap_freebsd.go +195 -0
  677. slidge_whatsapp/vendor/golang.org/x/sys/unix/constants.go +13 -0
  678. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_aix_ppc.go +26 -0
  679. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go +28 -0
  680. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_darwin.go +24 -0
  681. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_dragonfly.go +30 -0
  682. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_freebsd.go +30 -0
  683. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_linux.go +42 -0
  684. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_netbsd.go +29 -0
  685. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_openbsd.go +29 -0
  686. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_zos.go +28 -0
  687. slidge_whatsapp/vendor/golang.org/x/sys/unix/dirent.go +102 -0
  688. slidge_whatsapp/vendor/golang.org/x/sys/unix/endian_big.go +9 -0
  689. slidge_whatsapp/vendor/golang.org/x/sys/unix/endian_little.go +9 -0
  690. slidge_whatsapp/vendor/golang.org/x/sys/unix/env_unix.go +31 -0
  691. slidge_whatsapp/vendor/golang.org/x/sys/unix/fcntl.go +36 -0
  692. slidge_whatsapp/vendor/golang.org/x/sys/unix/fcntl_darwin.go +24 -0
  693. slidge_whatsapp/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go +13 -0
  694. slidge_whatsapp/vendor/golang.org/x/sys/unix/fdset.go +29 -0
  695. slidge_whatsapp/vendor/golang.org/x/sys/unix/gccgo.go +59 -0
  696. slidge_whatsapp/vendor/golang.org/x/sys/unix/gccgo_c.c +44 -0
  697. slidge_whatsapp/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go +20 -0
  698. slidge_whatsapp/vendor/golang.org/x/sys/unix/ifreq_linux.go +141 -0
  699. slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_linux.go +334 -0
  700. slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_signed.go +69 -0
  701. slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_unsigned.go +69 -0
  702. slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_zos.go +71 -0
  703. slidge_whatsapp/vendor/golang.org/x/sys/unix/mkall.sh +249 -0
  704. slidge_whatsapp/vendor/golang.org/x/sys/unix/mkerrors.sh +805 -0
  705. slidge_whatsapp/vendor/golang.org/x/sys/unix/mmap_nomremap.go +13 -0
  706. slidge_whatsapp/vendor/golang.org/x/sys/unix/mremap.go +57 -0
  707. slidge_whatsapp/vendor/golang.org/x/sys/unix/pagesize_unix.go +15 -0
  708. slidge_whatsapp/vendor/golang.org/x/sys/unix/pledge_openbsd.go +111 -0
  709. slidge_whatsapp/vendor/golang.org/x/sys/unix/ptrace_darwin.go +11 -0
  710. slidge_whatsapp/vendor/golang.org/x/sys/unix/ptrace_ios.go +11 -0
  711. slidge_whatsapp/vendor/golang.org/x/sys/unix/race.go +30 -0
  712. slidge_whatsapp/vendor/golang.org/x/sys/unix/race0.go +25 -0
  713. slidge_whatsapp/vendor/golang.org/x/sys/unix/readdirent_getdents.go +12 -0
  714. slidge_whatsapp/vendor/golang.org/x/sys/unix/readdirent_getdirentries.go +19 -0
  715. slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go +16 -0
  716. slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_linux.go +85 -0
  717. slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_unix.go +106 -0
  718. slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go +46 -0
  719. slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_zos.go +58 -0
  720. slidge_whatsapp/vendor/golang.org/x/sys/unix/symaddr_zos_s390x.s +75 -0
  721. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall.go +86 -0
  722. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_aix.go +582 -0
  723. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go +52 -0
  724. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go +83 -0
  725. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_bsd.go +609 -0
  726. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +707 -0
  727. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go +50 -0
  728. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go +50 -0
  729. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go +26 -0
  730. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_dragonfly.go +359 -0
  731. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go +56 -0
  732. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd.go +455 -0
  733. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go +64 -0
  734. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go +64 -0
  735. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go +60 -0
  736. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go +60 -0
  737. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go +60 -0
  738. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_hurd.go +30 -0
  739. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_hurd_386.go +28 -0
  740. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_illumos.go +78 -0
  741. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +2657 -0
  742. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_386.go +314 -0
  743. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_alarm.go +12 -0
  744. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go +145 -0
  745. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go +12 -0
  746. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_arm.go +216 -0
  747. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go +186 -0
  748. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gc.go +14 -0
  749. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go +16 -0
  750. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go +13 -0
  751. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go +30 -0
  752. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go +20 -0
  753. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go +218 -0
  754. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go +188 -0
  755. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go +174 -0
  756. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go +204 -0
  757. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go +115 -0
  758. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go +191 -0
  759. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go +296 -0
  760. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go +112 -0
  761. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd.go +371 -0
  762. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go +37 -0
  763. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go +37 -0
  764. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go +37 -0
  765. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go +37 -0
  766. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd.go +342 -0
  767. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go +41 -0
  768. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go +41 -0
  769. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go +41 -0
  770. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go +41 -0
  771. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_libc.go +26 -0
  772. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go +39 -0
  773. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_ppc64.go +41 -0
  774. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_riscv64.go +41 -0
  775. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris.go +1191 -0
  776. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go +27 -0
  777. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_unix.go +615 -0
  778. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_unix_gc.go +14 -0
  779. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go +22 -0
  780. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go +3213 -0
  781. slidge_whatsapp/vendor/golang.org/x/sys/unix/sysvshm_linux.go +20 -0
  782. slidge_whatsapp/vendor/golang.org/x/sys/unix/sysvshm_unix.go +51 -0
  783. slidge_whatsapp/vendor/golang.org/x/sys/unix/sysvshm_unix_other.go +13 -0
  784. slidge_whatsapp/vendor/golang.org/x/sys/unix/timestruct.go +76 -0
  785. slidge_whatsapp/vendor/golang.org/x/sys/unix/unveil_openbsd.go +51 -0
  786. slidge_whatsapp/vendor/golang.org/x/sys/unix/vgetrandom_linux.go +13 -0
  787. slidge_whatsapp/vendor/golang.org/x/sys/unix/vgetrandom_unsupported.go +11 -0
  788. slidge_whatsapp/vendor/golang.org/x/sys/unix/xattr_bsd.go +280 -0
  789. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go +1384 -0
  790. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go +1385 -0
  791. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go +1922 -0
  792. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go +1922 -0
  793. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go +1737 -0
  794. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go +2042 -0
  795. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go +2039 -0
  796. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go +2033 -0
  797. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go +2033 -0
  798. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go +2147 -0
  799. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux.go +3752 -0
  800. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +873 -0
  801. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +873 -0
  802. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +878 -0
  803. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +875 -0
  804. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +865 -0
  805. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +879 -0
  806. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +879 -0
  807. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +879 -0
  808. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +879 -0
  809. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +931 -0
  810. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +935 -0
  811. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +935 -0
  812. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +862 -0
  813. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +934 -0
  814. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +977 -0
  815. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go +1779 -0
  816. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go +1769 -0
  817. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go +1758 -0
  818. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go +1769 -0
  819. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go +1905 -0
  820. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go +1905 -0
  821. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go +1905 -0
  822. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go +1905 -0
  823. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go +1905 -0
  824. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_ppc64.go +1904 -0
  825. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go +1903 -0
  826. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go +1556 -0
  827. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go +990 -0
  828. slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go +40 -0
  829. slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go +17 -0
  830. slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go +49 -0
  831. slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go +49 -0
  832. slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go +79 -0
  833. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsymaddr_zos_s390x.s +364 -0
  834. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go +1461 -0
  835. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go +1420 -0
  836. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go +1188 -0
  837. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go +1069 -0
  838. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go +2644 -0
  839. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s +779 -0
  840. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go +2644 -0
  841. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s +779 -0
  842. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go +1666 -0
  843. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go +1886 -0
  844. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go +1886 -0
  845. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go +1886 -0
  846. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go +1886 -0
  847. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_riscv64.go +1886 -0
  848. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go +101 -0
  849. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux.go +2240 -0
  850. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go +486 -0
  851. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go +653 -0
  852. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go +601 -0
  853. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go +552 -0
  854. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go +486 -0
  855. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go +653 -0
  856. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go +647 -0
  857. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go +636 -0
  858. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go +653 -0
  859. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go +658 -0
  860. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go +704 -0
  861. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go +704 -0
  862. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go +548 -0
  863. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go +495 -0
  864. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go +648 -0
  865. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go +1848 -0
  866. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go +1848 -0
  867. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go +1848 -0
  868. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go +1848 -0
  869. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go +2323 -0
  870. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s +699 -0
  871. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go +2323 -0
  872. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s +699 -0
  873. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go +2323 -0
  874. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s +699 -0
  875. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go +2323 -0
  876. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s +699 -0
  877. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go +2323 -0
  878. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.s +699 -0
  879. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go +2323 -0
  880. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s +838 -0
  881. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go +2323 -0
  882. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s +699 -0
  883. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go +2217 -0
  884. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go +3458 -0
  885. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go +280 -0
  886. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go +280 -0
  887. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go +280 -0
  888. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go +280 -0
  889. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go +280 -0
  890. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_ppc64.go +280 -0
  891. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_riscv64.go +281 -0
  892. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go +439 -0
  893. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go +437 -0
  894. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go +316 -0
  895. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go +393 -0
  896. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go +393 -0
  897. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go +393 -0
  898. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go +393 -0
  899. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go +393 -0
  900. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go +465 -0
  901. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +388 -0
  902. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go +429 -0
  903. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +332 -0
  904. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +328 -0
  905. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go +449 -0
  906. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go +379 -0
  907. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go +379 -0
  908. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go +449 -0
  909. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go +456 -0
  910. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go +428 -0
  911. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go +428 -0
  912. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +333 -0
  913. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go +394 -0
  914. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go +407 -0
  915. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go +274 -0
  916. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go +274 -0
  917. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go +274 -0
  918. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go +274 -0
  919. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go +219 -0
  920. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go +219 -0
  921. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go +219 -0
  922. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go +218 -0
  923. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go +221 -0
  924. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go +217 -0
  925. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_riscv64.go +218 -0
  926. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go +2852 -0
  927. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go +353 -0
  928. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go +357 -0
  929. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go +878 -0
  930. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go +878 -0
  931. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go +473 -0
  932. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go +651 -0
  933. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go +656 -0
  934. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go +642 -0
  935. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go +636 -0
  936. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go +638 -0
  937. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux.go +6178 -0
  938. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_386.go +689 -0
  939. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go +703 -0
  940. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go +683 -0
  941. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go +682 -0
  942. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go +683 -0
  943. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go +688 -0
  944. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go +685 -0
  945. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go +685 -0
  946. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go +688 -0
  947. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go +696 -0
  948. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go +691 -0
  949. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go +691 -0
  950. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go +770 -0
  951. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go +705 -0
  952. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go +686 -0
  953. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go +585 -0
  954. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go +593 -0
  955. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go +590 -0
  956. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go +593 -0
  957. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go +568 -0
  958. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go +568 -0
  959. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go +575 -0
  960. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go +568 -0
  961. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go +568 -0
  962. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.go +570 -0
  963. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go +570 -0
  964. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go +516 -0
  965. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go +552 -0
  966. slidge_whatsapp/vendor/golang.org/x/sys/windows/aliases.go +12 -0
  967. slidge_whatsapp/vendor/golang.org/x/sys/windows/dll_windows.go +415 -0
  968. slidge_whatsapp/vendor/golang.org/x/sys/windows/env_windows.go +57 -0
  969. slidge_whatsapp/vendor/golang.org/x/sys/windows/eventlog.go +20 -0
  970. slidge_whatsapp/vendor/golang.org/x/sys/windows/exec_windows.go +248 -0
  971. slidge_whatsapp/vendor/golang.org/x/sys/windows/memory_windows.go +48 -0
  972. slidge_whatsapp/vendor/golang.org/x/sys/windows/mkerrors.bash +70 -0
  973. slidge_whatsapp/vendor/golang.org/x/sys/windows/mkknownfolderids.bash +27 -0
  974. slidge_whatsapp/vendor/golang.org/x/sys/windows/mksyscall.go +9 -0
  975. slidge_whatsapp/vendor/golang.org/x/sys/windows/race.go +30 -0
  976. slidge_whatsapp/vendor/golang.org/x/sys/windows/race0.go +25 -0
  977. slidge_whatsapp/vendor/golang.org/x/sys/windows/security_windows.go +1458 -0
  978. slidge_whatsapp/vendor/golang.org/x/sys/windows/service.go +257 -0
  979. slidge_whatsapp/vendor/golang.org/x/sys/windows/setupapi_windows.go +1425 -0
  980. slidge_whatsapp/vendor/golang.org/x/sys/windows/str.go +22 -0
  981. slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall.go +104 -0
  982. slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +1932 -0
  983. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +3603 -0
  984. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_386.go +35 -0
  985. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_amd64.go +34 -0
  986. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_arm.go +35 -0
  987. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_arm64.go +34 -0
  988. slidge_whatsapp/vendor/golang.org/x/sys/windows/zerrors_windows.go +9468 -0
  989. slidge_whatsapp/vendor/golang.org/x/sys/windows/zknownfolderids_windows.go +149 -0
  990. slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +4686 -0
  991. slidge_whatsapp/vendor/google.golang.org/protobuf/LICENSE +27 -0
  992. slidge_whatsapp/vendor/google.golang.org/protobuf/PATENTS +22 -0
  993. slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/prototext/decode.go +767 -0
  994. slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/prototext/doc.go +7 -0
  995. slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/prototext/encode.go +380 -0
  996. slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/protowire/wire.go +547 -0
  997. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/descfmt/stringer.go +414 -0
  998. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/descopts/options.go +29 -0
  999. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/detrand/rand.go +69 -0
  1000. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/defaults.go +12 -0
  1001. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
  1002. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/defval/default.go +213 -0
  1003. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go +242 -0
  1004. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go +201 -0
  1005. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode.go +686 -0
  1006. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go +211 -0
  1007. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode_string.go +161 -0
  1008. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode_token.go +373 -0
  1009. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/doc.go +29 -0
  1010. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/encode.go +272 -0
  1011. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/errors/errors.go +104 -0
  1012. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/build.go +157 -0
  1013. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc.go +748 -0
  1014. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go +560 -0
  1015. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go +694 -0
  1016. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go +457 -0
  1017. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_list_gen.go +367 -0
  1018. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +164 -0
  1019. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go +110 -0
  1020. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filetype/build.go +296 -0
  1021. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/flags/flags.go +24 -0
  1022. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go +10 -0
  1023. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go +10 -0
  1024. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/any_gen.go +34 -0
  1025. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/api_gen.go +106 -0
  1026. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +1270 -0
  1027. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/doc.go +11 -0
  1028. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/duration_gen.go +34 -0
  1029. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/empty_gen.go +19 -0
  1030. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/field_mask_gen.go +31 -0
  1031. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/go_features_gen.go +70 -0
  1032. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/goname.go +20 -0
  1033. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/map_entry.go +16 -0
  1034. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/name.go +12 -0
  1035. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/source_context_gen.go +31 -0
  1036. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/struct_gen.go +121 -0
  1037. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/timestamp_gen.go +34 -0
  1038. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/type_gen.go +228 -0
  1039. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/wrappers.go +13 -0
  1040. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/wrappers_gen.go +175 -0
  1041. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/api_export.go +177 -0
  1042. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/api_export_opaque.go +128 -0
  1043. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/bitmap.go +34 -0
  1044. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/bitmap_race.go +126 -0
  1045. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/checkinit.go +174 -0
  1046. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_extension.go +228 -0
  1047. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_field.go +788 -0
  1048. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_field_opaque.go +264 -0
  1049. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_gen.go +5724 -0
  1050. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_map.go +399 -0
  1051. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message.go +230 -0
  1052. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message_opaque.go +153 -0
  1053. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_messageset.go +145 -0
  1054. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_tables.go +557 -0
  1055. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_unsafe.go +15 -0
  1056. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/convert.go +495 -0
  1057. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/convert_list.go +141 -0
  1058. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/convert_map.go +121 -0
  1059. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/decode.go +333 -0
  1060. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/encode.go +315 -0
  1061. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/enum.go +21 -0
  1062. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/equal.go +224 -0
  1063. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/extension.go +156 -0
  1064. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/lazy.go +433 -0
  1065. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go +219 -0
  1066. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_export.go +92 -0
  1067. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go +177 -0
  1068. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_file.go +81 -0
  1069. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_message.go +569 -0
  1070. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/merge.go +203 -0
  1071. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/merge_gen.go +209 -0
  1072. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message.go +283 -0
  1073. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque.go +627 -0
  1074. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque_gen.go +132 -0
  1075. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect.go +462 -0
  1076. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go +423 -0
  1077. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field_gen.go +273 -0
  1078. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect_gen.go +271 -0
  1079. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe.go +220 -0
  1080. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe_opaque.go +42 -0
  1081. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/presence.go +142 -0
  1082. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/validate.go +570 -0
  1083. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/order/order.go +89 -0
  1084. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/order/range.go +115 -0
  1085. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/pragma/pragma.go +29 -0
  1086. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/protolazy/bufferreader.go +364 -0
  1087. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/protolazy/lazy.go +359 -0
  1088. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/protolazy/pointer_unsafe.go +17 -0
  1089. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/set/ints.go +58 -0
  1090. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings.go +196 -0
  1091. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe_go120.go +94 -0
  1092. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe_go121.go +73 -0
  1093. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +79 -0
  1094. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/checkinit.go +71 -0
  1095. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/decode.go +307 -0
  1096. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/decode_gen.go +603 -0
  1097. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/doc.go +86 -0
  1098. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/encode.go +355 -0
  1099. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/encode_gen.go +97 -0
  1100. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/equal.go +66 -0
  1101. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/extension.go +166 -0
  1102. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/merge.go +139 -0
  1103. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/messageset.go +98 -0
  1104. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/proto.go +45 -0
  1105. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/proto_methods.go +20 -0
  1106. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/proto_reflect.go +20 -0
  1107. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/reset.go +43 -0
  1108. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/size.go +111 -0
  1109. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/size_gen.go +55 -0
  1110. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/wrapperopaque.go +80 -0
  1111. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/wrappers.go +29 -0
  1112. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/methods.go +88 -0
  1113. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go +513 -0
  1114. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source.go +129 -0
  1115. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go +573 -0
  1116. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/type.go +666 -0
  1117. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value.go +285 -0
  1118. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_equal.go +168 -0
  1119. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go +438 -0
  1120. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe_go120.go +98 -0
  1121. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe_go121.go +86 -0
  1122. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go +882 -0
  1123. slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go +15 -0
  1124. slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoiface/methods.go +202 -0
  1125. slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go +48 -0
  1126. slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoimpl/version.go +60 -0
  1127. slidge_whatsapp/vendor/modules.txt +173 -0
  1128. slidge_whatsapp-0.2.5.dist-info/METADATA +63 -0
  1129. slidge_whatsapp-0.2.5.dist-info/RECORD +1140 -0
  1130. {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.5.dist-info}/WHEEL +1 -1
  1131. slidge_whatsapp-0.2.2.dist-info/METADATA +0 -744
  1132. slidge_whatsapp-0.2.2.dist-info/RECORD +0 -31
  1133. {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.5.dist-info}/LICENSE +0 -0
  1134. {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.5.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,2803 @@
1
+ // Code generated by protoc-gen-go. DO NOT EDIT.
2
+ // versions:
3
+ // protoc-gen-go v1.36.1
4
+ // protoc v3.21.12
5
+ // source: waArmadilloApplication/WAArmadilloApplication.proto
6
+
7
+ package waArmadilloApplication
8
+
9
+ import (
10
+ reflect "reflect"
11
+ sync "sync"
12
+
13
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
14
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
15
+
16
+ waArmadilloXMA "go.mau.fi/whatsmeow/proto/waArmadilloXMA"
17
+ waCommon "go.mau.fi/whatsmeow/proto/waCommon"
18
+
19
+ _ "embed"
20
+ )
21
+
22
+ const (
23
+ // Verify that this generated code is sufficiently up-to-date.
24
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
25
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
26
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
27
+ )
28
+
29
+ type Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus int32
30
+
31
+ const (
32
+ Armadillo_Signal_EncryptedBackupsSecrets_Epoch_ES_OPEN Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus = 1
33
+ Armadillo_Signal_EncryptedBackupsSecrets_Epoch_ES_CLOSE Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus = 2
34
+ )
35
+
36
+ // Enum value maps for Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus.
37
+ var (
38
+ Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus_name = map[int32]string{
39
+ 1: "ES_OPEN",
40
+ 2: "ES_CLOSE",
41
+ }
42
+ Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus_value = map[string]int32{
43
+ "ES_OPEN": 1,
44
+ "ES_CLOSE": 2,
45
+ }
46
+ )
47
+
48
+ func (x Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) Enum() *Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus {
49
+ p := new(Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus)
50
+ *p = x
51
+ return p
52
+ }
53
+
54
+ func (x Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) String() string {
55
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
56
+ }
57
+
58
+ func (Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) Descriptor() protoreflect.EnumDescriptor {
59
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[0].Descriptor()
60
+ }
61
+
62
+ func (Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) Type() protoreflect.EnumType {
63
+ return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[0]
64
+ }
65
+
66
+ func (x Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) Number() protoreflect.EnumNumber {
67
+ return protoreflect.EnumNumber(x)
68
+ }
69
+
70
+ // Deprecated: Do not use.
71
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) UnmarshalJSON(b []byte) error {
72
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
73
+ if err != nil {
74
+ return err
75
+ }
76
+ *x = Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus(num)
77
+ return nil
78
+ }
79
+
80
+ // Deprecated: Use Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus.Descriptor instead.
81
+ func (Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) EnumDescriptor() ([]byte, []int) {
82
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 3, 0, 0, 0}
83
+ }
84
+
85
+ type Armadillo_Content_PaymentsTransactionMessage_PaymentStatus int32
86
+
87
+ const (
88
+ Armadillo_Content_PaymentsTransactionMessage_PAYMENT_UNKNOWN Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 0
89
+ Armadillo_Content_PaymentsTransactionMessage_REQUEST_INITED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 4
90
+ Armadillo_Content_PaymentsTransactionMessage_REQUEST_DECLINED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 5
91
+ Armadillo_Content_PaymentsTransactionMessage_REQUEST_TRANSFER_INITED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 6
92
+ Armadillo_Content_PaymentsTransactionMessage_REQUEST_TRANSFER_COMPLETED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 7
93
+ Armadillo_Content_PaymentsTransactionMessage_REQUEST_TRANSFER_FAILED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 8
94
+ Armadillo_Content_PaymentsTransactionMessage_REQUEST_CANCELED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 9
95
+ Armadillo_Content_PaymentsTransactionMessage_REQUEST_EXPIRED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 10
96
+ Armadillo_Content_PaymentsTransactionMessage_TRANSFER_INITED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 11
97
+ Armadillo_Content_PaymentsTransactionMessage_TRANSFER_PENDING Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 12
98
+ Armadillo_Content_PaymentsTransactionMessage_TRANSFER_PENDING_RECIPIENT_VERIFICATION Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 13
99
+ Armadillo_Content_PaymentsTransactionMessage_TRANSFER_CANCELED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 14
100
+ Armadillo_Content_PaymentsTransactionMessage_TRANSFER_COMPLETED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 15
101
+ Armadillo_Content_PaymentsTransactionMessage_TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_CANCELED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 16
102
+ Armadillo_Content_PaymentsTransactionMessage_TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_OTHER Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 17
103
+ Armadillo_Content_PaymentsTransactionMessage_TRANSFER_REFUNDED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 18
104
+ Armadillo_Content_PaymentsTransactionMessage_TRANSFER_PARTIAL_REFUND Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 19
105
+ Armadillo_Content_PaymentsTransactionMessage_TRANSFER_CHARGED_BACK Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 20
106
+ Armadillo_Content_PaymentsTransactionMessage_TRANSFER_EXPIRED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 21
107
+ Armadillo_Content_PaymentsTransactionMessage_TRANSFER_DECLINED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 22
108
+ Armadillo_Content_PaymentsTransactionMessage_TRANSFER_UNAVAILABLE Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 23
109
+ )
110
+
111
+ // Enum value maps for Armadillo_Content_PaymentsTransactionMessage_PaymentStatus.
112
+ var (
113
+ Armadillo_Content_PaymentsTransactionMessage_PaymentStatus_name = map[int32]string{
114
+ 0: "PAYMENT_UNKNOWN",
115
+ 4: "REQUEST_INITED",
116
+ 5: "REQUEST_DECLINED",
117
+ 6: "REQUEST_TRANSFER_INITED",
118
+ 7: "REQUEST_TRANSFER_COMPLETED",
119
+ 8: "REQUEST_TRANSFER_FAILED",
120
+ 9: "REQUEST_CANCELED",
121
+ 10: "REQUEST_EXPIRED",
122
+ 11: "TRANSFER_INITED",
123
+ 12: "TRANSFER_PENDING",
124
+ 13: "TRANSFER_PENDING_RECIPIENT_VERIFICATION",
125
+ 14: "TRANSFER_CANCELED",
126
+ 15: "TRANSFER_COMPLETED",
127
+ 16: "TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_CANCELED",
128
+ 17: "TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_OTHER",
129
+ 18: "TRANSFER_REFUNDED",
130
+ 19: "TRANSFER_PARTIAL_REFUND",
131
+ 20: "TRANSFER_CHARGED_BACK",
132
+ 21: "TRANSFER_EXPIRED",
133
+ 22: "TRANSFER_DECLINED",
134
+ 23: "TRANSFER_UNAVAILABLE",
135
+ }
136
+ Armadillo_Content_PaymentsTransactionMessage_PaymentStatus_value = map[string]int32{
137
+ "PAYMENT_UNKNOWN": 0,
138
+ "REQUEST_INITED": 4,
139
+ "REQUEST_DECLINED": 5,
140
+ "REQUEST_TRANSFER_INITED": 6,
141
+ "REQUEST_TRANSFER_COMPLETED": 7,
142
+ "REQUEST_TRANSFER_FAILED": 8,
143
+ "REQUEST_CANCELED": 9,
144
+ "REQUEST_EXPIRED": 10,
145
+ "TRANSFER_INITED": 11,
146
+ "TRANSFER_PENDING": 12,
147
+ "TRANSFER_PENDING_RECIPIENT_VERIFICATION": 13,
148
+ "TRANSFER_CANCELED": 14,
149
+ "TRANSFER_COMPLETED": 15,
150
+ "TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_CANCELED": 16,
151
+ "TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_OTHER": 17,
152
+ "TRANSFER_REFUNDED": 18,
153
+ "TRANSFER_PARTIAL_REFUND": 19,
154
+ "TRANSFER_CHARGED_BACK": 20,
155
+ "TRANSFER_EXPIRED": 21,
156
+ "TRANSFER_DECLINED": 22,
157
+ "TRANSFER_UNAVAILABLE": 23,
158
+ }
159
+ )
160
+
161
+ func (x Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) Enum() *Armadillo_Content_PaymentsTransactionMessage_PaymentStatus {
162
+ p := new(Armadillo_Content_PaymentsTransactionMessage_PaymentStatus)
163
+ *p = x
164
+ return p
165
+ }
166
+
167
+ func (x Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) String() string {
168
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
169
+ }
170
+
171
+ func (Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) Descriptor() protoreflect.EnumDescriptor {
172
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[1].Descriptor()
173
+ }
174
+
175
+ func (Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) Type() protoreflect.EnumType {
176
+ return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[1]
177
+ }
178
+
179
+ func (x Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) Number() protoreflect.EnumNumber {
180
+ return protoreflect.EnumNumber(x)
181
+ }
182
+
183
+ // Deprecated: Do not use.
184
+ func (x *Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) UnmarshalJSON(b []byte) error {
185
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
186
+ if err != nil {
187
+ return err
188
+ }
189
+ *x = Armadillo_Content_PaymentsTransactionMessage_PaymentStatus(num)
190
+ return nil
191
+ }
192
+
193
+ // Deprecated: Use Armadillo_Content_PaymentsTransactionMessage_PaymentStatus.Descriptor instead.
194
+ func (Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) EnumDescriptor() ([]byte, []int) {
195
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 0, 0}
196
+ }
197
+
198
+ type Armadillo_Content_ScreenshotAction_ScreenshotType int32
199
+
200
+ const (
201
+ Armadillo_Content_ScreenshotAction_SCREENSHOT_IMAGE Armadillo_Content_ScreenshotAction_ScreenshotType = 1
202
+ Armadillo_Content_ScreenshotAction_SCREEN_RECORDING Armadillo_Content_ScreenshotAction_ScreenshotType = 2
203
+ )
204
+
205
+ // Enum value maps for Armadillo_Content_ScreenshotAction_ScreenshotType.
206
+ var (
207
+ Armadillo_Content_ScreenshotAction_ScreenshotType_name = map[int32]string{
208
+ 1: "SCREENSHOT_IMAGE",
209
+ 2: "SCREEN_RECORDING",
210
+ }
211
+ Armadillo_Content_ScreenshotAction_ScreenshotType_value = map[string]int32{
212
+ "SCREENSHOT_IMAGE": 1,
213
+ "SCREEN_RECORDING": 2,
214
+ }
215
+ )
216
+
217
+ func (x Armadillo_Content_ScreenshotAction_ScreenshotType) Enum() *Armadillo_Content_ScreenshotAction_ScreenshotType {
218
+ p := new(Armadillo_Content_ScreenshotAction_ScreenshotType)
219
+ *p = x
220
+ return p
221
+ }
222
+
223
+ func (x Armadillo_Content_ScreenshotAction_ScreenshotType) String() string {
224
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
225
+ }
226
+
227
+ func (Armadillo_Content_ScreenshotAction_ScreenshotType) Descriptor() protoreflect.EnumDescriptor {
228
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[2].Descriptor()
229
+ }
230
+
231
+ func (Armadillo_Content_ScreenshotAction_ScreenshotType) Type() protoreflect.EnumType {
232
+ return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[2]
233
+ }
234
+
235
+ func (x Armadillo_Content_ScreenshotAction_ScreenshotType) Number() protoreflect.EnumNumber {
236
+ return protoreflect.EnumNumber(x)
237
+ }
238
+
239
+ // Deprecated: Do not use.
240
+ func (x *Armadillo_Content_ScreenshotAction_ScreenshotType) UnmarshalJSON(b []byte) error {
241
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
242
+ if err != nil {
243
+ return err
244
+ }
245
+ *x = Armadillo_Content_ScreenshotAction_ScreenshotType(num)
246
+ return nil
247
+ }
248
+
249
+ // Deprecated: Use Armadillo_Content_ScreenshotAction_ScreenshotType.Descriptor instead.
250
+ func (Armadillo_Content_ScreenshotAction_ScreenshotType) EnumDescriptor() ([]byte, []int) {
251
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 6, 0}
252
+ }
253
+
254
+ type Armadillo_Content_RavenActionNotifMessage_ActionType int32
255
+
256
+ const (
257
+ Armadillo_Content_RavenActionNotifMessage_PLAYED Armadillo_Content_RavenActionNotifMessage_ActionType = 0
258
+ Armadillo_Content_RavenActionNotifMessage_SCREENSHOT Armadillo_Content_RavenActionNotifMessage_ActionType = 1
259
+ Armadillo_Content_RavenActionNotifMessage_FORCE_DISABLE Armadillo_Content_RavenActionNotifMessage_ActionType = 2
260
+ )
261
+
262
+ // Enum value maps for Armadillo_Content_RavenActionNotifMessage_ActionType.
263
+ var (
264
+ Armadillo_Content_RavenActionNotifMessage_ActionType_name = map[int32]string{
265
+ 0: "PLAYED",
266
+ 1: "SCREENSHOT",
267
+ 2: "FORCE_DISABLE",
268
+ }
269
+ Armadillo_Content_RavenActionNotifMessage_ActionType_value = map[string]int32{
270
+ "PLAYED": 0,
271
+ "SCREENSHOT": 1,
272
+ "FORCE_DISABLE": 2,
273
+ }
274
+ )
275
+
276
+ func (x Armadillo_Content_RavenActionNotifMessage_ActionType) Enum() *Armadillo_Content_RavenActionNotifMessage_ActionType {
277
+ p := new(Armadillo_Content_RavenActionNotifMessage_ActionType)
278
+ *p = x
279
+ return p
280
+ }
281
+
282
+ func (x Armadillo_Content_RavenActionNotifMessage_ActionType) String() string {
283
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
284
+ }
285
+
286
+ func (Armadillo_Content_RavenActionNotifMessage_ActionType) Descriptor() protoreflect.EnumDescriptor {
287
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[3].Descriptor()
288
+ }
289
+
290
+ func (Armadillo_Content_RavenActionNotifMessage_ActionType) Type() protoreflect.EnumType {
291
+ return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[3]
292
+ }
293
+
294
+ func (x Armadillo_Content_RavenActionNotifMessage_ActionType) Number() protoreflect.EnumNumber {
295
+ return protoreflect.EnumNumber(x)
296
+ }
297
+
298
+ // Deprecated: Do not use.
299
+ func (x *Armadillo_Content_RavenActionNotifMessage_ActionType) UnmarshalJSON(b []byte) error {
300
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
301
+ if err != nil {
302
+ return err
303
+ }
304
+ *x = Armadillo_Content_RavenActionNotifMessage_ActionType(num)
305
+ return nil
306
+ }
307
+
308
+ // Deprecated: Use Armadillo_Content_RavenActionNotifMessage_ActionType.Descriptor instead.
309
+ func (Armadillo_Content_RavenActionNotifMessage_ActionType) EnumDescriptor() ([]byte, []int) {
310
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 8, 0}
311
+ }
312
+
313
+ type Armadillo_Content_RavenMessage_EphemeralType int32
314
+
315
+ const (
316
+ Armadillo_Content_RavenMessage_VIEW_ONCE Armadillo_Content_RavenMessage_EphemeralType = 0
317
+ Armadillo_Content_RavenMessage_ALLOW_REPLAY Armadillo_Content_RavenMessage_EphemeralType = 1
318
+ Armadillo_Content_RavenMessage_KEEP_IN_CHAT Armadillo_Content_RavenMessage_EphemeralType = 2
319
+ )
320
+
321
+ // Enum value maps for Armadillo_Content_RavenMessage_EphemeralType.
322
+ var (
323
+ Armadillo_Content_RavenMessage_EphemeralType_name = map[int32]string{
324
+ 0: "VIEW_ONCE",
325
+ 1: "ALLOW_REPLAY",
326
+ 2: "KEEP_IN_CHAT",
327
+ }
328
+ Armadillo_Content_RavenMessage_EphemeralType_value = map[string]int32{
329
+ "VIEW_ONCE": 0,
330
+ "ALLOW_REPLAY": 1,
331
+ "KEEP_IN_CHAT": 2,
332
+ }
333
+ )
334
+
335
+ func (x Armadillo_Content_RavenMessage_EphemeralType) Enum() *Armadillo_Content_RavenMessage_EphemeralType {
336
+ p := new(Armadillo_Content_RavenMessage_EphemeralType)
337
+ *p = x
338
+ return p
339
+ }
340
+
341
+ func (x Armadillo_Content_RavenMessage_EphemeralType) String() string {
342
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
343
+ }
344
+
345
+ func (Armadillo_Content_RavenMessage_EphemeralType) Descriptor() protoreflect.EnumDescriptor {
346
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[4].Descriptor()
347
+ }
348
+
349
+ func (Armadillo_Content_RavenMessage_EphemeralType) Type() protoreflect.EnumType {
350
+ return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[4]
351
+ }
352
+
353
+ func (x Armadillo_Content_RavenMessage_EphemeralType) Number() protoreflect.EnumNumber {
354
+ return protoreflect.EnumNumber(x)
355
+ }
356
+
357
+ // Deprecated: Do not use.
358
+ func (x *Armadillo_Content_RavenMessage_EphemeralType) UnmarshalJSON(b []byte) error {
359
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
360
+ if err != nil {
361
+ return err
362
+ }
363
+ *x = Armadillo_Content_RavenMessage_EphemeralType(num)
364
+ return nil
365
+ }
366
+
367
+ // Deprecated: Use Armadillo_Content_RavenMessage_EphemeralType.Descriptor instead.
368
+ func (Armadillo_Content_RavenMessage_EphemeralType) EnumDescriptor() ([]byte, []int) {
369
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 9, 0}
370
+ }
371
+
372
+ type Armadillo_Content_CommonSticker_StickerType int32
373
+
374
+ const (
375
+ Armadillo_Content_CommonSticker_SMALL_LIKE Armadillo_Content_CommonSticker_StickerType = 1
376
+ Armadillo_Content_CommonSticker_MEDIUM_LIKE Armadillo_Content_CommonSticker_StickerType = 2
377
+ Armadillo_Content_CommonSticker_LARGE_LIKE Armadillo_Content_CommonSticker_StickerType = 3
378
+ )
379
+
380
+ // Enum value maps for Armadillo_Content_CommonSticker_StickerType.
381
+ var (
382
+ Armadillo_Content_CommonSticker_StickerType_name = map[int32]string{
383
+ 1: "SMALL_LIKE",
384
+ 2: "MEDIUM_LIKE",
385
+ 3: "LARGE_LIKE",
386
+ }
387
+ Armadillo_Content_CommonSticker_StickerType_value = map[string]int32{
388
+ "SMALL_LIKE": 1,
389
+ "MEDIUM_LIKE": 2,
390
+ "LARGE_LIKE": 3,
391
+ }
392
+ )
393
+
394
+ func (x Armadillo_Content_CommonSticker_StickerType) Enum() *Armadillo_Content_CommonSticker_StickerType {
395
+ p := new(Armadillo_Content_CommonSticker_StickerType)
396
+ *p = x
397
+ return p
398
+ }
399
+
400
+ func (x Armadillo_Content_CommonSticker_StickerType) String() string {
401
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
402
+ }
403
+
404
+ func (Armadillo_Content_CommonSticker_StickerType) Descriptor() protoreflect.EnumDescriptor {
405
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[5].Descriptor()
406
+ }
407
+
408
+ func (Armadillo_Content_CommonSticker_StickerType) Type() protoreflect.EnumType {
409
+ return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[5]
410
+ }
411
+
412
+ func (x Armadillo_Content_CommonSticker_StickerType) Number() protoreflect.EnumNumber {
413
+ return protoreflect.EnumNumber(x)
414
+ }
415
+
416
+ // Deprecated: Do not use.
417
+ func (x *Armadillo_Content_CommonSticker_StickerType) UnmarshalJSON(b []byte) error {
418
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
419
+ if err != nil {
420
+ return err
421
+ }
422
+ *x = Armadillo_Content_CommonSticker_StickerType(num)
423
+ return nil
424
+ }
425
+
426
+ // Deprecated: Use Armadillo_Content_CommonSticker_StickerType.Descriptor instead.
427
+ func (Armadillo_Content_CommonSticker_StickerType) EnumDescriptor() ([]byte, []int) {
428
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 10, 0}
429
+ }
430
+
431
+ type Armadillo struct {
432
+ state protoimpl.MessageState `protogen:"open.v1"`
433
+ Payload *Armadillo_Payload `protobuf:"bytes,1,opt,name=payload" json:"payload,omitempty"`
434
+ Metadata *Armadillo_Metadata `protobuf:"bytes,2,opt,name=metadata" json:"metadata,omitempty"`
435
+ unknownFields protoimpl.UnknownFields
436
+ sizeCache protoimpl.SizeCache
437
+ }
438
+
439
+ func (x *Armadillo) Reset() {
440
+ *x = Armadillo{}
441
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[0]
442
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
443
+ ms.StoreMessageInfo(mi)
444
+ }
445
+
446
+ func (x *Armadillo) String() string {
447
+ return protoimpl.X.MessageStringOf(x)
448
+ }
449
+
450
+ func (*Armadillo) ProtoMessage() {}
451
+
452
+ func (x *Armadillo) ProtoReflect() protoreflect.Message {
453
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[0]
454
+ if x != nil {
455
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
456
+ if ms.LoadMessageInfo() == nil {
457
+ ms.StoreMessageInfo(mi)
458
+ }
459
+ return ms
460
+ }
461
+ return mi.MessageOf(x)
462
+ }
463
+
464
+ // Deprecated: Use Armadillo.ProtoReflect.Descriptor instead.
465
+ func (*Armadillo) Descriptor() ([]byte, []int) {
466
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0}
467
+ }
468
+
469
+ func (x *Armadillo) GetPayload() *Armadillo_Payload {
470
+ if x != nil {
471
+ return x.Payload
472
+ }
473
+ return nil
474
+ }
475
+
476
+ func (x *Armadillo) GetMetadata() *Armadillo_Metadata {
477
+ if x != nil {
478
+ return x.Metadata
479
+ }
480
+ return nil
481
+ }
482
+
483
+ type Armadillo_Metadata struct {
484
+ state protoimpl.MessageState `protogen:"open.v1"`
485
+ unknownFields protoimpl.UnknownFields
486
+ sizeCache protoimpl.SizeCache
487
+ }
488
+
489
+ func (x *Armadillo_Metadata) Reset() {
490
+ *x = Armadillo_Metadata{}
491
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[1]
492
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
493
+ ms.StoreMessageInfo(mi)
494
+ }
495
+
496
+ func (x *Armadillo_Metadata) String() string {
497
+ return protoimpl.X.MessageStringOf(x)
498
+ }
499
+
500
+ func (*Armadillo_Metadata) ProtoMessage() {}
501
+
502
+ func (x *Armadillo_Metadata) ProtoReflect() protoreflect.Message {
503
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[1]
504
+ if x != nil {
505
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
506
+ if ms.LoadMessageInfo() == nil {
507
+ ms.StoreMessageInfo(mi)
508
+ }
509
+ return ms
510
+ }
511
+ return mi.MessageOf(x)
512
+ }
513
+
514
+ // Deprecated: Use Armadillo_Metadata.ProtoReflect.Descriptor instead.
515
+ func (*Armadillo_Metadata) Descriptor() ([]byte, []int) {
516
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 0}
517
+ }
518
+
519
+ type Armadillo_Payload struct {
520
+ state protoimpl.MessageState `protogen:"open.v1"`
521
+ // Types that are valid to be assigned to Payload:
522
+ //
523
+ // *Armadillo_Payload_Content
524
+ // *Armadillo_Payload_ApplicationData
525
+ // *Armadillo_Payload_Signal
526
+ // *Armadillo_Payload_SubProtocol
527
+ Payload isArmadillo_Payload_Payload `protobuf_oneof:"payload"`
528
+ unknownFields protoimpl.UnknownFields
529
+ sizeCache protoimpl.SizeCache
530
+ }
531
+
532
+ func (x *Armadillo_Payload) Reset() {
533
+ *x = Armadillo_Payload{}
534
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[2]
535
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
536
+ ms.StoreMessageInfo(mi)
537
+ }
538
+
539
+ func (x *Armadillo_Payload) String() string {
540
+ return protoimpl.X.MessageStringOf(x)
541
+ }
542
+
543
+ func (*Armadillo_Payload) ProtoMessage() {}
544
+
545
+ func (x *Armadillo_Payload) ProtoReflect() protoreflect.Message {
546
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[2]
547
+ if x != nil {
548
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
549
+ if ms.LoadMessageInfo() == nil {
550
+ ms.StoreMessageInfo(mi)
551
+ }
552
+ return ms
553
+ }
554
+ return mi.MessageOf(x)
555
+ }
556
+
557
+ // Deprecated: Use Armadillo_Payload.ProtoReflect.Descriptor instead.
558
+ func (*Armadillo_Payload) Descriptor() ([]byte, []int) {
559
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 1}
560
+ }
561
+
562
+ func (x *Armadillo_Payload) GetPayload() isArmadillo_Payload_Payload {
563
+ if x != nil {
564
+ return x.Payload
565
+ }
566
+ return nil
567
+ }
568
+
569
+ func (x *Armadillo_Payload) GetContent() *Armadillo_Content {
570
+ if x != nil {
571
+ if x, ok := x.Payload.(*Armadillo_Payload_Content); ok {
572
+ return x.Content
573
+ }
574
+ }
575
+ return nil
576
+ }
577
+
578
+ func (x *Armadillo_Payload) GetApplicationData() *Armadillo_ApplicationData {
579
+ if x != nil {
580
+ if x, ok := x.Payload.(*Armadillo_Payload_ApplicationData); ok {
581
+ return x.ApplicationData
582
+ }
583
+ }
584
+ return nil
585
+ }
586
+
587
+ func (x *Armadillo_Payload) GetSignal() *Armadillo_Signal {
588
+ if x != nil {
589
+ if x, ok := x.Payload.(*Armadillo_Payload_Signal); ok {
590
+ return x.Signal
591
+ }
592
+ }
593
+ return nil
594
+ }
595
+
596
+ func (x *Armadillo_Payload) GetSubProtocol() *Armadillo_SubProtocolPayload {
597
+ if x != nil {
598
+ if x, ok := x.Payload.(*Armadillo_Payload_SubProtocol); ok {
599
+ return x.SubProtocol
600
+ }
601
+ }
602
+ return nil
603
+ }
604
+
605
+ type isArmadillo_Payload_Payload interface {
606
+ isArmadillo_Payload_Payload()
607
+ }
608
+
609
+ type Armadillo_Payload_Content struct {
610
+ Content *Armadillo_Content `protobuf:"bytes,1,opt,name=content,oneof"`
611
+ }
612
+
613
+ type Armadillo_Payload_ApplicationData struct {
614
+ ApplicationData *Armadillo_ApplicationData `protobuf:"bytes,2,opt,name=applicationData,oneof"`
615
+ }
616
+
617
+ type Armadillo_Payload_Signal struct {
618
+ Signal *Armadillo_Signal `protobuf:"bytes,3,opt,name=signal,oneof"`
619
+ }
620
+
621
+ type Armadillo_Payload_SubProtocol struct {
622
+ SubProtocol *Armadillo_SubProtocolPayload `protobuf:"bytes,4,opt,name=subProtocol,oneof"`
623
+ }
624
+
625
+ func (*Armadillo_Payload_Content) isArmadillo_Payload_Payload() {}
626
+
627
+ func (*Armadillo_Payload_ApplicationData) isArmadillo_Payload_Payload() {}
628
+
629
+ func (*Armadillo_Payload_Signal) isArmadillo_Payload_Payload() {}
630
+
631
+ func (*Armadillo_Payload_SubProtocol) isArmadillo_Payload_Payload() {}
632
+
633
+ type Armadillo_SubProtocolPayload struct {
634
+ state protoimpl.MessageState `protogen:"open.v1"`
635
+ FutureProof *waCommon.FutureProofBehavior `protobuf:"varint,1,opt,name=futureProof,enum=WACommon.FutureProofBehavior" json:"futureProof,omitempty"`
636
+ unknownFields protoimpl.UnknownFields
637
+ sizeCache protoimpl.SizeCache
638
+ }
639
+
640
+ func (x *Armadillo_SubProtocolPayload) Reset() {
641
+ *x = Armadillo_SubProtocolPayload{}
642
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[3]
643
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
644
+ ms.StoreMessageInfo(mi)
645
+ }
646
+
647
+ func (x *Armadillo_SubProtocolPayload) String() string {
648
+ return protoimpl.X.MessageStringOf(x)
649
+ }
650
+
651
+ func (*Armadillo_SubProtocolPayload) ProtoMessage() {}
652
+
653
+ func (x *Armadillo_SubProtocolPayload) ProtoReflect() protoreflect.Message {
654
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[3]
655
+ if x != nil {
656
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
657
+ if ms.LoadMessageInfo() == nil {
658
+ ms.StoreMessageInfo(mi)
659
+ }
660
+ return ms
661
+ }
662
+ return mi.MessageOf(x)
663
+ }
664
+
665
+ // Deprecated: Use Armadillo_SubProtocolPayload.ProtoReflect.Descriptor instead.
666
+ func (*Armadillo_SubProtocolPayload) Descriptor() ([]byte, []int) {
667
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 2}
668
+ }
669
+
670
+ func (x *Armadillo_SubProtocolPayload) GetFutureProof() waCommon.FutureProofBehavior {
671
+ if x != nil && x.FutureProof != nil {
672
+ return *x.FutureProof
673
+ }
674
+ return waCommon.FutureProofBehavior(0)
675
+ }
676
+
677
+ type Armadillo_Signal struct {
678
+ state protoimpl.MessageState `protogen:"open.v1"`
679
+ // Types that are valid to be assigned to Signal:
680
+ //
681
+ // *Armadillo_Signal_EncryptedBackupsSecrets_
682
+ Signal isArmadillo_Signal_Signal `protobuf_oneof:"signal"`
683
+ unknownFields protoimpl.UnknownFields
684
+ sizeCache protoimpl.SizeCache
685
+ }
686
+
687
+ func (x *Armadillo_Signal) Reset() {
688
+ *x = Armadillo_Signal{}
689
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[4]
690
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
691
+ ms.StoreMessageInfo(mi)
692
+ }
693
+
694
+ func (x *Armadillo_Signal) String() string {
695
+ return protoimpl.X.MessageStringOf(x)
696
+ }
697
+
698
+ func (*Armadillo_Signal) ProtoMessage() {}
699
+
700
+ func (x *Armadillo_Signal) ProtoReflect() protoreflect.Message {
701
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[4]
702
+ if x != nil {
703
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
704
+ if ms.LoadMessageInfo() == nil {
705
+ ms.StoreMessageInfo(mi)
706
+ }
707
+ return ms
708
+ }
709
+ return mi.MessageOf(x)
710
+ }
711
+
712
+ // Deprecated: Use Armadillo_Signal.ProtoReflect.Descriptor instead.
713
+ func (*Armadillo_Signal) Descriptor() ([]byte, []int) {
714
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 3}
715
+ }
716
+
717
+ func (x *Armadillo_Signal) GetSignal() isArmadillo_Signal_Signal {
718
+ if x != nil {
719
+ return x.Signal
720
+ }
721
+ return nil
722
+ }
723
+
724
+ func (x *Armadillo_Signal) GetEncryptedBackupsSecrets() *Armadillo_Signal_EncryptedBackupsSecrets {
725
+ if x != nil {
726
+ if x, ok := x.Signal.(*Armadillo_Signal_EncryptedBackupsSecrets_); ok {
727
+ return x.EncryptedBackupsSecrets
728
+ }
729
+ }
730
+ return nil
731
+ }
732
+
733
+ type isArmadillo_Signal_Signal interface {
734
+ isArmadillo_Signal_Signal()
735
+ }
736
+
737
+ type Armadillo_Signal_EncryptedBackupsSecrets_ struct {
738
+ EncryptedBackupsSecrets *Armadillo_Signal_EncryptedBackupsSecrets `protobuf:"bytes,1,opt,name=encryptedBackupsSecrets,oneof"`
739
+ }
740
+
741
+ func (*Armadillo_Signal_EncryptedBackupsSecrets_) isArmadillo_Signal_Signal() {}
742
+
743
+ type Armadillo_ApplicationData struct {
744
+ state protoimpl.MessageState `protogen:"open.v1"`
745
+ // Types that are valid to be assigned to ApplicationData:
746
+ //
747
+ // *Armadillo_ApplicationData_MetadataSync
748
+ // *Armadillo_ApplicationData_AiBotResponse
749
+ ApplicationData isArmadillo_ApplicationData_ApplicationData `protobuf_oneof:"applicationData"`
750
+ unknownFields protoimpl.UnknownFields
751
+ sizeCache protoimpl.SizeCache
752
+ }
753
+
754
+ func (x *Armadillo_ApplicationData) Reset() {
755
+ *x = Armadillo_ApplicationData{}
756
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[5]
757
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
758
+ ms.StoreMessageInfo(mi)
759
+ }
760
+
761
+ func (x *Armadillo_ApplicationData) String() string {
762
+ return protoimpl.X.MessageStringOf(x)
763
+ }
764
+
765
+ func (*Armadillo_ApplicationData) ProtoMessage() {}
766
+
767
+ func (x *Armadillo_ApplicationData) ProtoReflect() protoreflect.Message {
768
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[5]
769
+ if x != nil {
770
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
771
+ if ms.LoadMessageInfo() == nil {
772
+ ms.StoreMessageInfo(mi)
773
+ }
774
+ return ms
775
+ }
776
+ return mi.MessageOf(x)
777
+ }
778
+
779
+ // Deprecated: Use Armadillo_ApplicationData.ProtoReflect.Descriptor instead.
780
+ func (*Armadillo_ApplicationData) Descriptor() ([]byte, []int) {
781
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4}
782
+ }
783
+
784
+ func (x *Armadillo_ApplicationData) GetApplicationData() isArmadillo_ApplicationData_ApplicationData {
785
+ if x != nil {
786
+ return x.ApplicationData
787
+ }
788
+ return nil
789
+ }
790
+
791
+ func (x *Armadillo_ApplicationData) GetMetadataSync() *Armadillo_ApplicationData_MetadataSyncNotification {
792
+ if x != nil {
793
+ if x, ok := x.ApplicationData.(*Armadillo_ApplicationData_MetadataSync); ok {
794
+ return x.MetadataSync
795
+ }
796
+ }
797
+ return nil
798
+ }
799
+
800
+ func (x *Armadillo_ApplicationData) GetAiBotResponse() *Armadillo_ApplicationData_AIBotResponseMessage {
801
+ if x != nil {
802
+ if x, ok := x.ApplicationData.(*Armadillo_ApplicationData_AiBotResponse); ok {
803
+ return x.AiBotResponse
804
+ }
805
+ }
806
+ return nil
807
+ }
808
+
809
+ type isArmadillo_ApplicationData_ApplicationData interface {
810
+ isArmadillo_ApplicationData_ApplicationData()
811
+ }
812
+
813
+ type Armadillo_ApplicationData_MetadataSync struct {
814
+ MetadataSync *Armadillo_ApplicationData_MetadataSyncNotification `protobuf:"bytes,1,opt,name=metadataSync,oneof"`
815
+ }
816
+
817
+ type Armadillo_ApplicationData_AiBotResponse struct {
818
+ AiBotResponse *Armadillo_ApplicationData_AIBotResponseMessage `protobuf:"bytes,2,opt,name=aiBotResponse,oneof"`
819
+ }
820
+
821
+ func (*Armadillo_ApplicationData_MetadataSync) isArmadillo_ApplicationData_ApplicationData() {}
822
+
823
+ func (*Armadillo_ApplicationData_AiBotResponse) isArmadillo_ApplicationData_ApplicationData() {}
824
+
825
+ type Armadillo_Content struct {
826
+ state protoimpl.MessageState `protogen:"open.v1"`
827
+ // Types that are valid to be assigned to Content:
828
+ //
829
+ // *Armadillo_Content_CommonSticker_
830
+ // *Armadillo_Content_ScreenshotAction_
831
+ // *Armadillo_Content_ExtendedContentMessage
832
+ // *Armadillo_Content_RavenMessage_
833
+ // *Armadillo_Content_RavenActionNotifMessage_
834
+ // *Armadillo_Content_ExtendedMessageContentWithSear
835
+ // *Armadillo_Content_ImageGalleryMessage_
836
+ // *Armadillo_Content_PaymentsTransactionMessage_
837
+ // *Armadillo_Content_BumpExistingMessage_
838
+ // *Armadillo_Content_NoteReplyMessage_
839
+ // *Armadillo_Content_RavenMessageMsgr
840
+ // *Armadillo_Content_NetworkVerificationMessage_
841
+ // *Armadillo_Content_MessageHistoryDocumentMessage_
842
+ Content isArmadillo_Content_Content `protobuf_oneof:"content"`
843
+ unknownFields protoimpl.UnknownFields
844
+ sizeCache protoimpl.SizeCache
845
+ }
846
+
847
+ func (x *Armadillo_Content) Reset() {
848
+ *x = Armadillo_Content{}
849
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[6]
850
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
851
+ ms.StoreMessageInfo(mi)
852
+ }
853
+
854
+ func (x *Armadillo_Content) String() string {
855
+ return protoimpl.X.MessageStringOf(x)
856
+ }
857
+
858
+ func (*Armadillo_Content) ProtoMessage() {}
859
+
860
+ func (x *Armadillo_Content) ProtoReflect() protoreflect.Message {
861
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[6]
862
+ if x != nil {
863
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
864
+ if ms.LoadMessageInfo() == nil {
865
+ ms.StoreMessageInfo(mi)
866
+ }
867
+ return ms
868
+ }
869
+ return mi.MessageOf(x)
870
+ }
871
+
872
+ // Deprecated: Use Armadillo_Content.ProtoReflect.Descriptor instead.
873
+ func (*Armadillo_Content) Descriptor() ([]byte, []int) {
874
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5}
875
+ }
876
+
877
+ func (x *Armadillo_Content) GetContent() isArmadillo_Content_Content {
878
+ if x != nil {
879
+ return x.Content
880
+ }
881
+ return nil
882
+ }
883
+
884
+ func (x *Armadillo_Content) GetCommonSticker() *Armadillo_Content_CommonSticker {
885
+ if x != nil {
886
+ if x, ok := x.Content.(*Armadillo_Content_CommonSticker_); ok {
887
+ return x.CommonSticker
888
+ }
889
+ }
890
+ return nil
891
+ }
892
+
893
+ func (x *Armadillo_Content) GetScreenshotAction() *Armadillo_Content_ScreenshotAction {
894
+ if x != nil {
895
+ if x, ok := x.Content.(*Armadillo_Content_ScreenshotAction_); ok {
896
+ return x.ScreenshotAction
897
+ }
898
+ }
899
+ return nil
900
+ }
901
+
902
+ func (x *Armadillo_Content) GetExtendedContentMessage() *waArmadilloXMA.ExtendedContentMessage {
903
+ if x != nil {
904
+ if x, ok := x.Content.(*Armadillo_Content_ExtendedContentMessage); ok {
905
+ return x.ExtendedContentMessage
906
+ }
907
+ }
908
+ return nil
909
+ }
910
+
911
+ func (x *Armadillo_Content) GetRavenMessage() *Armadillo_Content_RavenMessage {
912
+ if x != nil {
913
+ if x, ok := x.Content.(*Armadillo_Content_RavenMessage_); ok {
914
+ return x.RavenMessage
915
+ }
916
+ }
917
+ return nil
918
+ }
919
+
920
+ func (x *Armadillo_Content) GetRavenActionNotifMessage() *Armadillo_Content_RavenActionNotifMessage {
921
+ if x != nil {
922
+ if x, ok := x.Content.(*Armadillo_Content_RavenActionNotifMessage_); ok {
923
+ return x.RavenActionNotifMessage
924
+ }
925
+ }
926
+ return nil
927
+ }
928
+
929
+ func (x *Armadillo_Content) GetExtendedMessageContentWithSear() *Armadillo_Content_ExtendedContentMessageWithSear {
930
+ if x != nil {
931
+ if x, ok := x.Content.(*Armadillo_Content_ExtendedMessageContentWithSear); ok {
932
+ return x.ExtendedMessageContentWithSear
933
+ }
934
+ }
935
+ return nil
936
+ }
937
+
938
+ func (x *Armadillo_Content) GetImageGalleryMessage() *Armadillo_Content_ImageGalleryMessage {
939
+ if x != nil {
940
+ if x, ok := x.Content.(*Armadillo_Content_ImageGalleryMessage_); ok {
941
+ return x.ImageGalleryMessage
942
+ }
943
+ }
944
+ return nil
945
+ }
946
+
947
+ func (x *Armadillo_Content) GetPaymentsTransactionMessage() *Armadillo_Content_PaymentsTransactionMessage {
948
+ if x != nil {
949
+ if x, ok := x.Content.(*Armadillo_Content_PaymentsTransactionMessage_); ok {
950
+ return x.PaymentsTransactionMessage
951
+ }
952
+ }
953
+ return nil
954
+ }
955
+
956
+ func (x *Armadillo_Content) GetBumpExistingMessage() *Armadillo_Content_BumpExistingMessage {
957
+ if x != nil {
958
+ if x, ok := x.Content.(*Armadillo_Content_BumpExistingMessage_); ok {
959
+ return x.BumpExistingMessage
960
+ }
961
+ }
962
+ return nil
963
+ }
964
+
965
+ func (x *Armadillo_Content) GetNoteReplyMessage() *Armadillo_Content_NoteReplyMessage {
966
+ if x != nil {
967
+ if x, ok := x.Content.(*Armadillo_Content_NoteReplyMessage_); ok {
968
+ return x.NoteReplyMessage
969
+ }
970
+ }
971
+ return nil
972
+ }
973
+
974
+ func (x *Armadillo_Content) GetRavenMessageMsgr() *Armadillo_Content_RavenMessage {
975
+ if x != nil {
976
+ if x, ok := x.Content.(*Armadillo_Content_RavenMessageMsgr); ok {
977
+ return x.RavenMessageMsgr
978
+ }
979
+ }
980
+ return nil
981
+ }
982
+
983
+ func (x *Armadillo_Content) GetNetworkVerificationMessage() *Armadillo_Content_NetworkVerificationMessage {
984
+ if x != nil {
985
+ if x, ok := x.Content.(*Armadillo_Content_NetworkVerificationMessage_); ok {
986
+ return x.NetworkVerificationMessage
987
+ }
988
+ }
989
+ return nil
990
+ }
991
+
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
+ type isArmadillo_Content_Content interface {
1002
+ isArmadillo_Content_Content()
1003
+ }
1004
+
1005
+ type Armadillo_Content_CommonSticker_ struct {
1006
+ CommonSticker *Armadillo_Content_CommonSticker `protobuf:"bytes,1,opt,name=commonSticker,oneof"`
1007
+ }
1008
+
1009
+ type Armadillo_Content_ScreenshotAction_ struct {
1010
+ ScreenshotAction *Armadillo_Content_ScreenshotAction `protobuf:"bytes,3,opt,name=screenshotAction,oneof"`
1011
+ }
1012
+
1013
+ type Armadillo_Content_ExtendedContentMessage struct {
1014
+ ExtendedContentMessage *waArmadilloXMA.ExtendedContentMessage `protobuf:"bytes,4,opt,name=extendedContentMessage,oneof"`
1015
+ }
1016
+
1017
+ type Armadillo_Content_RavenMessage_ struct {
1018
+ RavenMessage *Armadillo_Content_RavenMessage `protobuf:"bytes,5,opt,name=ravenMessage,oneof"`
1019
+ }
1020
+
1021
+ type Armadillo_Content_RavenActionNotifMessage_ struct {
1022
+ RavenActionNotifMessage *Armadillo_Content_RavenActionNotifMessage `protobuf:"bytes,6,opt,name=ravenActionNotifMessage,oneof"`
1023
+ }
1024
+
1025
+ type Armadillo_Content_ExtendedMessageContentWithSear struct {
1026
+ ExtendedMessageContentWithSear *Armadillo_Content_ExtendedContentMessageWithSear `protobuf:"bytes,7,opt,name=extendedMessageContentWithSear,oneof"`
1027
+ }
1028
+
1029
+ type Armadillo_Content_ImageGalleryMessage_ struct {
1030
+ ImageGalleryMessage *Armadillo_Content_ImageGalleryMessage `protobuf:"bytes,8,opt,name=imageGalleryMessage,oneof"`
1031
+ }
1032
+
1033
+ type Armadillo_Content_PaymentsTransactionMessage_ struct {
1034
+ PaymentsTransactionMessage *Armadillo_Content_PaymentsTransactionMessage `protobuf:"bytes,10,opt,name=paymentsTransactionMessage,oneof"`
1035
+ }
1036
+
1037
+ type Armadillo_Content_BumpExistingMessage_ struct {
1038
+ BumpExistingMessage *Armadillo_Content_BumpExistingMessage `protobuf:"bytes,11,opt,name=bumpExistingMessage,oneof"`
1039
+ }
1040
+
1041
+ type Armadillo_Content_NoteReplyMessage_ struct {
1042
+ NoteReplyMessage *Armadillo_Content_NoteReplyMessage `protobuf:"bytes,13,opt,name=noteReplyMessage,oneof"`
1043
+ }
1044
+
1045
+ type Armadillo_Content_RavenMessageMsgr struct {
1046
+ RavenMessageMsgr *Armadillo_Content_RavenMessage `protobuf:"bytes,14,opt,name=ravenMessageMsgr,oneof"`
1047
+ }
1048
+
1049
+ type Armadillo_Content_NetworkVerificationMessage_ struct {
1050
+ NetworkVerificationMessage *Armadillo_Content_NetworkVerificationMessage `protobuf:"bytes,15,opt,name=networkVerificationMessage,oneof"`
1051
+ }
1052
+
1053
+ type Armadillo_Content_MessageHistoryDocumentMessage_ struct {
1054
+ MessageHistoryDocumentMessage *Armadillo_Content_MessageHistoryDocumentMessage `protobuf:"bytes,16,opt,name=messageHistoryDocumentMessage,oneof"`
1055
+ }
1056
+
1057
+ func (*Armadillo_Content_CommonSticker_) isArmadillo_Content_Content() {}
1058
+
1059
+ func (*Armadillo_Content_ScreenshotAction_) isArmadillo_Content_Content() {}
1060
+
1061
+ func (*Armadillo_Content_ExtendedContentMessage) isArmadillo_Content_Content() {}
1062
+
1063
+ func (*Armadillo_Content_RavenMessage_) isArmadillo_Content_Content() {}
1064
+
1065
+ func (*Armadillo_Content_RavenActionNotifMessage_) isArmadillo_Content_Content() {}
1066
+
1067
+ func (*Armadillo_Content_ExtendedMessageContentWithSear) isArmadillo_Content_Content() {}
1068
+
1069
+ func (*Armadillo_Content_ImageGalleryMessage_) isArmadillo_Content_Content() {}
1070
+
1071
+ func (*Armadillo_Content_PaymentsTransactionMessage_) isArmadillo_Content_Content() {}
1072
+
1073
+ func (*Armadillo_Content_BumpExistingMessage_) isArmadillo_Content_Content() {}
1074
+
1075
+ func (*Armadillo_Content_NoteReplyMessage_) isArmadillo_Content_Content() {}
1076
+
1077
+ func (*Armadillo_Content_RavenMessageMsgr) isArmadillo_Content_Content() {}
1078
+
1079
+ func (*Armadillo_Content_NetworkVerificationMessage_) isArmadillo_Content_Content() {}
1080
+
1081
+ func (*Armadillo_Content_MessageHistoryDocumentMessage_) isArmadillo_Content_Content() {}
1082
+
1083
+ type Armadillo_Signal_EncryptedBackupsSecrets struct {
1084
+ state protoimpl.MessageState `protogen:"open.v1"`
1085
+ BackupID *uint64 `protobuf:"varint,1,opt,name=backupID" json:"backupID,omitempty"`
1086
+ ServerDataID *uint64 `protobuf:"varint,2,opt,name=serverDataID" json:"serverDataID,omitempty"`
1087
+ Epoch []*Armadillo_Signal_EncryptedBackupsSecrets_Epoch `protobuf:"bytes,3,rep,name=epoch" json:"epoch,omitempty"`
1088
+ TempOcmfClientState []byte `protobuf:"bytes,4,opt,name=tempOcmfClientState" json:"tempOcmfClientState,omitempty"`
1089
+ MailboxRootKey []byte `protobuf:"bytes,5,opt,name=mailboxRootKey" json:"mailboxRootKey,omitempty"`
1090
+ ObliviousValidationToken []byte `protobuf:"bytes,6,opt,name=obliviousValidationToken" json:"obliviousValidationToken,omitempty"`
1091
+ unknownFields protoimpl.UnknownFields
1092
+ sizeCache protoimpl.SizeCache
1093
+ }
1094
+
1095
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets) Reset() {
1096
+ *x = Armadillo_Signal_EncryptedBackupsSecrets{}
1097
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[7]
1098
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1099
+ ms.StoreMessageInfo(mi)
1100
+ }
1101
+
1102
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets) String() string {
1103
+ return protoimpl.X.MessageStringOf(x)
1104
+ }
1105
+
1106
+ func (*Armadillo_Signal_EncryptedBackupsSecrets) ProtoMessage() {}
1107
+
1108
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets) ProtoReflect() protoreflect.Message {
1109
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[7]
1110
+ if x != nil {
1111
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1112
+ if ms.LoadMessageInfo() == nil {
1113
+ ms.StoreMessageInfo(mi)
1114
+ }
1115
+ return ms
1116
+ }
1117
+ return mi.MessageOf(x)
1118
+ }
1119
+
1120
+ // Deprecated: Use Armadillo_Signal_EncryptedBackupsSecrets.ProtoReflect.Descriptor instead.
1121
+ func (*Armadillo_Signal_EncryptedBackupsSecrets) Descriptor() ([]byte, []int) {
1122
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 3, 0}
1123
+ }
1124
+
1125
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetBackupID() uint64 {
1126
+ if x != nil && x.BackupID != nil {
1127
+ return *x.BackupID
1128
+ }
1129
+ return 0
1130
+ }
1131
+
1132
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetServerDataID() uint64 {
1133
+ if x != nil && x.ServerDataID != nil {
1134
+ return *x.ServerDataID
1135
+ }
1136
+ return 0
1137
+ }
1138
+
1139
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetEpoch() []*Armadillo_Signal_EncryptedBackupsSecrets_Epoch {
1140
+ if x != nil {
1141
+ return x.Epoch
1142
+ }
1143
+ return nil
1144
+ }
1145
+
1146
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetTempOcmfClientState() []byte {
1147
+ if x != nil {
1148
+ return x.TempOcmfClientState
1149
+ }
1150
+ return nil
1151
+ }
1152
+
1153
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetMailboxRootKey() []byte {
1154
+ if x != nil {
1155
+ return x.MailboxRootKey
1156
+ }
1157
+ return nil
1158
+ }
1159
+
1160
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetObliviousValidationToken() []byte {
1161
+ if x != nil {
1162
+ return x.ObliviousValidationToken
1163
+ }
1164
+ return nil
1165
+ }
1166
+
1167
+ type Armadillo_Signal_EncryptedBackupsSecrets_Epoch struct {
1168
+ state protoimpl.MessageState `protogen:"open.v1"`
1169
+ ID *uint64 `protobuf:"varint,1,opt,name=ID" json:"ID,omitempty"`
1170
+ AnonID []byte `protobuf:"bytes,2,opt,name=anonID" json:"anonID,omitempty"`
1171
+ RootKey []byte `protobuf:"bytes,3,opt,name=rootKey" json:"rootKey,omitempty"`
1172
+ Status *Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus `protobuf:"varint,4,opt,name=status,enum=WAArmadilloApplication.Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus" json:"status,omitempty"`
1173
+ unknownFields protoimpl.UnknownFields
1174
+ sizeCache protoimpl.SizeCache
1175
+ }
1176
+
1177
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) Reset() {
1178
+ *x = Armadillo_Signal_EncryptedBackupsSecrets_Epoch{}
1179
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[8]
1180
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1181
+ ms.StoreMessageInfo(mi)
1182
+ }
1183
+
1184
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) String() string {
1185
+ return protoimpl.X.MessageStringOf(x)
1186
+ }
1187
+
1188
+ func (*Armadillo_Signal_EncryptedBackupsSecrets_Epoch) ProtoMessage() {}
1189
+
1190
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) ProtoReflect() protoreflect.Message {
1191
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[8]
1192
+ if x != nil {
1193
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1194
+ if ms.LoadMessageInfo() == nil {
1195
+ ms.StoreMessageInfo(mi)
1196
+ }
1197
+ return ms
1198
+ }
1199
+ return mi.MessageOf(x)
1200
+ }
1201
+
1202
+ // Deprecated: Use Armadillo_Signal_EncryptedBackupsSecrets_Epoch.ProtoReflect.Descriptor instead.
1203
+ func (*Armadillo_Signal_EncryptedBackupsSecrets_Epoch) Descriptor() ([]byte, []int) {
1204
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 3, 0, 0}
1205
+ }
1206
+
1207
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) GetID() uint64 {
1208
+ if x != nil && x.ID != nil {
1209
+ return *x.ID
1210
+ }
1211
+ return 0
1212
+ }
1213
+
1214
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) GetAnonID() []byte {
1215
+ if x != nil {
1216
+ return x.AnonID
1217
+ }
1218
+ return nil
1219
+ }
1220
+
1221
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) GetRootKey() []byte {
1222
+ if x != nil {
1223
+ return x.RootKey
1224
+ }
1225
+ return nil
1226
+ }
1227
+
1228
+ func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) GetStatus() Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus {
1229
+ if x != nil && x.Status != nil {
1230
+ return *x.Status
1231
+ }
1232
+ return Armadillo_Signal_EncryptedBackupsSecrets_Epoch_ES_OPEN
1233
+ }
1234
+
1235
+ type Armadillo_ApplicationData_AIBotResponseMessage struct {
1236
+ state protoimpl.MessageState `protogen:"open.v1"`
1237
+ SummonToken *string `protobuf:"bytes,1,opt,name=summonToken" json:"summonToken,omitempty"`
1238
+ MessageText *string `protobuf:"bytes,2,opt,name=messageText" json:"messageText,omitempty"`
1239
+ SerializedExtras *string `protobuf:"bytes,3,opt,name=serializedExtras" json:"serializedExtras,omitempty"`
1240
+ unknownFields protoimpl.UnknownFields
1241
+ sizeCache protoimpl.SizeCache
1242
+ }
1243
+
1244
+ func (x *Armadillo_ApplicationData_AIBotResponseMessage) Reset() {
1245
+ *x = Armadillo_ApplicationData_AIBotResponseMessage{}
1246
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[9]
1247
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1248
+ ms.StoreMessageInfo(mi)
1249
+ }
1250
+
1251
+ func (x *Armadillo_ApplicationData_AIBotResponseMessage) String() string {
1252
+ return protoimpl.X.MessageStringOf(x)
1253
+ }
1254
+
1255
+ func (*Armadillo_ApplicationData_AIBotResponseMessage) ProtoMessage() {}
1256
+
1257
+ func (x *Armadillo_ApplicationData_AIBotResponseMessage) ProtoReflect() protoreflect.Message {
1258
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[9]
1259
+ if x != nil {
1260
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1261
+ if ms.LoadMessageInfo() == nil {
1262
+ ms.StoreMessageInfo(mi)
1263
+ }
1264
+ return ms
1265
+ }
1266
+ return mi.MessageOf(x)
1267
+ }
1268
+
1269
+ // Deprecated: Use Armadillo_ApplicationData_AIBotResponseMessage.ProtoReflect.Descriptor instead.
1270
+ func (*Armadillo_ApplicationData_AIBotResponseMessage) Descriptor() ([]byte, []int) {
1271
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 0}
1272
+ }
1273
+
1274
+ func (x *Armadillo_ApplicationData_AIBotResponseMessage) GetSummonToken() string {
1275
+ if x != nil && x.SummonToken != nil {
1276
+ return *x.SummonToken
1277
+ }
1278
+ return ""
1279
+ }
1280
+
1281
+ func (x *Armadillo_ApplicationData_AIBotResponseMessage) GetMessageText() string {
1282
+ if x != nil && x.MessageText != nil {
1283
+ return *x.MessageText
1284
+ }
1285
+ return ""
1286
+ }
1287
+
1288
+ func (x *Armadillo_ApplicationData_AIBotResponseMessage) GetSerializedExtras() string {
1289
+ if x != nil && x.SerializedExtras != nil {
1290
+ return *x.SerializedExtras
1291
+ }
1292
+ return ""
1293
+ }
1294
+
1295
+ type Armadillo_ApplicationData_MetadataSyncAction struct {
1296
+ state protoimpl.MessageState `protogen:"open.v1"`
1297
+ // Types that are valid to be assigned to ActionType:
1298
+ //
1299
+ // *Armadillo_ApplicationData_MetadataSyncAction_ChatAction
1300
+ // *Armadillo_ApplicationData_MetadataSyncAction_MessageAction
1301
+ ActionType isArmadillo_ApplicationData_MetadataSyncAction_ActionType `protobuf_oneof:"actionType"`
1302
+ ActionTimestamp *int64 `protobuf:"varint,1,opt,name=actionTimestamp" json:"actionTimestamp,omitempty"`
1303
+ unknownFields protoimpl.UnknownFields
1304
+ sizeCache protoimpl.SizeCache
1305
+ }
1306
+
1307
+ func (x *Armadillo_ApplicationData_MetadataSyncAction) Reset() {
1308
+ *x = Armadillo_ApplicationData_MetadataSyncAction{}
1309
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[10]
1310
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1311
+ ms.StoreMessageInfo(mi)
1312
+ }
1313
+
1314
+ func (x *Armadillo_ApplicationData_MetadataSyncAction) String() string {
1315
+ return protoimpl.X.MessageStringOf(x)
1316
+ }
1317
+
1318
+ func (*Armadillo_ApplicationData_MetadataSyncAction) ProtoMessage() {}
1319
+
1320
+ func (x *Armadillo_ApplicationData_MetadataSyncAction) ProtoReflect() protoreflect.Message {
1321
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[10]
1322
+ if x != nil {
1323
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1324
+ if ms.LoadMessageInfo() == nil {
1325
+ ms.StoreMessageInfo(mi)
1326
+ }
1327
+ return ms
1328
+ }
1329
+ return mi.MessageOf(x)
1330
+ }
1331
+
1332
+ // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction.ProtoReflect.Descriptor instead.
1333
+ func (*Armadillo_ApplicationData_MetadataSyncAction) Descriptor() ([]byte, []int) {
1334
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1}
1335
+ }
1336
+
1337
+ func (x *Armadillo_ApplicationData_MetadataSyncAction) GetActionType() isArmadillo_ApplicationData_MetadataSyncAction_ActionType {
1338
+ if x != nil {
1339
+ return x.ActionType
1340
+ }
1341
+ return nil
1342
+ }
1343
+
1344
+ func (x *Armadillo_ApplicationData_MetadataSyncAction) GetChatAction() *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction {
1345
+ if x != nil {
1346
+ if x, ok := x.ActionType.(*Armadillo_ApplicationData_MetadataSyncAction_ChatAction); ok {
1347
+ return x.ChatAction
1348
+ }
1349
+ }
1350
+ return nil
1351
+ }
1352
+
1353
+ func (x *Armadillo_ApplicationData_MetadataSyncAction) GetMessageAction() *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction {
1354
+ if x != nil {
1355
+ if x, ok := x.ActionType.(*Armadillo_ApplicationData_MetadataSyncAction_MessageAction); ok {
1356
+ return x.MessageAction
1357
+ }
1358
+ }
1359
+ return nil
1360
+ }
1361
+
1362
+ func (x *Armadillo_ApplicationData_MetadataSyncAction) GetActionTimestamp() int64 {
1363
+ if x != nil && x.ActionTimestamp != nil {
1364
+ return *x.ActionTimestamp
1365
+ }
1366
+ return 0
1367
+ }
1368
+
1369
+ type isArmadillo_ApplicationData_MetadataSyncAction_ActionType interface {
1370
+ isArmadillo_ApplicationData_MetadataSyncAction_ActionType()
1371
+ }
1372
+
1373
+ type Armadillo_ApplicationData_MetadataSyncAction_ChatAction struct {
1374
+ ChatAction *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction `protobuf:"bytes,101,opt,name=chatAction,oneof"`
1375
+ }
1376
+
1377
+ type Armadillo_ApplicationData_MetadataSyncAction_MessageAction struct {
1378
+ MessageAction *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction `protobuf:"bytes,102,opt,name=messageAction,oneof"`
1379
+ }
1380
+
1381
+ func (*Armadillo_ApplicationData_MetadataSyncAction_ChatAction) isArmadillo_ApplicationData_MetadataSyncAction_ActionType() {
1382
+ }
1383
+
1384
+ func (*Armadillo_ApplicationData_MetadataSyncAction_MessageAction) isArmadillo_ApplicationData_MetadataSyncAction_ActionType() {
1385
+ }
1386
+
1387
+ type Armadillo_ApplicationData_MetadataSyncNotification struct {
1388
+ state protoimpl.MessageState `protogen:"open.v1"`
1389
+ Actions []*Armadillo_ApplicationData_MetadataSyncAction `protobuf:"bytes,2,rep,name=actions" json:"actions,omitempty"`
1390
+ unknownFields protoimpl.UnknownFields
1391
+ sizeCache protoimpl.SizeCache
1392
+ }
1393
+
1394
+ func (x *Armadillo_ApplicationData_MetadataSyncNotification) Reset() {
1395
+ *x = Armadillo_ApplicationData_MetadataSyncNotification{}
1396
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[11]
1397
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1398
+ ms.StoreMessageInfo(mi)
1399
+ }
1400
+
1401
+ func (x *Armadillo_ApplicationData_MetadataSyncNotification) String() string {
1402
+ return protoimpl.X.MessageStringOf(x)
1403
+ }
1404
+
1405
+ func (*Armadillo_ApplicationData_MetadataSyncNotification) ProtoMessage() {}
1406
+
1407
+ func (x *Armadillo_ApplicationData_MetadataSyncNotification) ProtoReflect() protoreflect.Message {
1408
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[11]
1409
+ if x != nil {
1410
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1411
+ if ms.LoadMessageInfo() == nil {
1412
+ ms.StoreMessageInfo(mi)
1413
+ }
1414
+ return ms
1415
+ }
1416
+ return mi.MessageOf(x)
1417
+ }
1418
+
1419
+ // Deprecated: Use Armadillo_ApplicationData_MetadataSyncNotification.ProtoReflect.Descriptor instead.
1420
+ func (*Armadillo_ApplicationData_MetadataSyncNotification) Descriptor() ([]byte, []int) {
1421
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2}
1422
+ }
1423
+
1424
+ func (x *Armadillo_ApplicationData_MetadataSyncNotification) GetActions() []*Armadillo_ApplicationData_MetadataSyncAction {
1425
+ if x != nil {
1426
+ return x.Actions
1427
+ }
1428
+ return nil
1429
+ }
1430
+
1431
+ type Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction struct {
1432
+ state protoimpl.MessageState `protogen:"open.v1"`
1433
+ // Types that are valid to be assigned to Action:
1434
+ //
1435
+ // *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete
1436
+ Action isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action `protobuf_oneof:"action"`
1437
+ Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
1438
+ unknownFields protoimpl.UnknownFields
1439
+ sizeCache protoimpl.SizeCache
1440
+ }
1441
+
1442
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) Reset() {
1443
+ *x = Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction{}
1444
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[12]
1445
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1446
+ ms.StoreMessageInfo(mi)
1447
+ }
1448
+
1449
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) String() string {
1450
+ return protoimpl.X.MessageStringOf(x)
1451
+ }
1452
+
1453
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) ProtoMessage() {}
1454
+
1455
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) ProtoReflect() protoreflect.Message {
1456
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[12]
1457
+ if x != nil {
1458
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1459
+ if ms.LoadMessageInfo() == nil {
1460
+ ms.StoreMessageInfo(mi)
1461
+ }
1462
+ return ms
1463
+ }
1464
+ return mi.MessageOf(x)
1465
+ }
1466
+
1467
+ // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction.ProtoReflect.Descriptor instead.
1468
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) Descriptor() ([]byte, []int) {
1469
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1, 0}
1470
+ }
1471
+
1472
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) GetAction() isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action {
1473
+ if x != nil {
1474
+ return x.Action
1475
+ }
1476
+ return nil
1477
+ }
1478
+
1479
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) GetMessageDelete() *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete {
1480
+ if x != nil {
1481
+ if x, ok := x.Action.(*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete); ok {
1482
+ return x.MessageDelete
1483
+ }
1484
+ }
1485
+ return nil
1486
+ }
1487
+
1488
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) GetKey() *waCommon.MessageKey {
1489
+ if x != nil {
1490
+ return x.Key
1491
+ }
1492
+ return nil
1493
+ }
1494
+
1495
+ type isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action interface {
1496
+ isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action()
1497
+ }
1498
+
1499
+ type Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete struct {
1500
+ MessageDelete *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete `protobuf:"bytes,101,opt,name=messageDelete,oneof"`
1501
+ }
1502
+
1503
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete) isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action() {
1504
+ }
1505
+
1506
+ type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction struct {
1507
+ state protoimpl.MessageState `protogen:"open.v1"`
1508
+ // Types that are valid to be assigned to Action:
1509
+ //
1510
+ // *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive
1511
+ // *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete
1512
+ // *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead
1513
+ Action isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action `protobuf_oneof:"action"`
1514
+ ChatID *string `protobuf:"bytes,1,opt,name=chatID" json:"chatID,omitempty"`
1515
+ unknownFields protoimpl.UnknownFields
1516
+ sizeCache protoimpl.SizeCache
1517
+ }
1518
+
1519
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) Reset() {
1520
+ *x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction{}
1521
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[13]
1522
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1523
+ ms.StoreMessageInfo(mi)
1524
+ }
1525
+
1526
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) String() string {
1527
+ return protoimpl.X.MessageStringOf(x)
1528
+ }
1529
+
1530
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) ProtoMessage() {}
1531
+
1532
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) ProtoReflect() protoreflect.Message {
1533
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[13]
1534
+ if x != nil {
1535
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1536
+ if ms.LoadMessageInfo() == nil {
1537
+ ms.StoreMessageInfo(mi)
1538
+ }
1539
+ return ms
1540
+ }
1541
+ return mi.MessageOf(x)
1542
+ }
1543
+
1544
+ // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction.ProtoReflect.Descriptor instead.
1545
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) Descriptor() ([]byte, []int) {
1546
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1, 1}
1547
+ }
1548
+
1549
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetAction() isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action {
1550
+ if x != nil {
1551
+ return x.Action
1552
+ }
1553
+ return nil
1554
+ }
1555
+
1556
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetChatArchive() *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive {
1557
+ if x != nil {
1558
+ if x, ok := x.Action.(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive); ok {
1559
+ return x.ChatArchive
1560
+ }
1561
+ }
1562
+ return nil
1563
+ }
1564
+
1565
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetChatDelete() *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete {
1566
+ if x != nil {
1567
+ if x, ok := x.Action.(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete); ok {
1568
+ return x.ChatDelete
1569
+ }
1570
+ }
1571
+ return nil
1572
+ }
1573
+
1574
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetChatRead() *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead {
1575
+ if x != nil {
1576
+ if x, ok := x.Action.(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead); ok {
1577
+ return x.ChatRead
1578
+ }
1579
+ }
1580
+ return nil
1581
+ }
1582
+
1583
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetChatID() string {
1584
+ if x != nil && x.ChatID != nil {
1585
+ return *x.ChatID
1586
+ }
1587
+ return ""
1588
+ }
1589
+
1590
+ type isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action interface {
1591
+ isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action()
1592
+ }
1593
+
1594
+ type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive struct {
1595
+ ChatArchive *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive `protobuf:"bytes,101,opt,name=chatArchive,oneof"`
1596
+ }
1597
+
1598
+ type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete struct {
1599
+ ChatDelete *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete `protobuf:"bytes,102,opt,name=chatDelete,oneof"`
1600
+ }
1601
+
1602
+ type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead struct {
1603
+ ChatRead *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead `protobuf:"bytes,103,opt,name=chatRead,oneof"`
1604
+ }
1605
+
1606
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive) isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action() {
1607
+ }
1608
+
1609
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete) isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action() {
1610
+ }
1611
+
1612
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead) isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action() {
1613
+ }
1614
+
1615
+ type Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage struct {
1616
+ state protoimpl.MessageState `protogen:"open.v1"`
1617
+ Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
1618
+ Timestamp *int64 `protobuf:"varint,2,opt,name=timestamp" json:"timestamp,omitempty"`
1619
+ unknownFields protoimpl.UnknownFields
1620
+ sizeCache protoimpl.SizeCache
1621
+ }
1622
+
1623
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) Reset() {
1624
+ *x = Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage{}
1625
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[14]
1626
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1627
+ ms.StoreMessageInfo(mi)
1628
+ }
1629
+
1630
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) String() string {
1631
+ return protoimpl.X.MessageStringOf(x)
1632
+ }
1633
+
1634
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) ProtoMessage() {}
1635
+
1636
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) ProtoReflect() protoreflect.Message {
1637
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[14]
1638
+ if x != nil {
1639
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1640
+ if ms.LoadMessageInfo() == nil {
1641
+ ms.StoreMessageInfo(mi)
1642
+ }
1643
+ return ms
1644
+ }
1645
+ return mi.MessageOf(x)
1646
+ }
1647
+
1648
+ // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage.ProtoReflect.Descriptor instead.
1649
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) Descriptor() ([]byte, []int) {
1650
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1, 2}
1651
+ }
1652
+
1653
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) GetKey() *waCommon.MessageKey {
1654
+ if x != nil {
1655
+ return x.Key
1656
+ }
1657
+ return nil
1658
+ }
1659
+
1660
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) GetTimestamp() int64 {
1661
+ if x != nil && x.Timestamp != nil {
1662
+ return *x.Timestamp
1663
+ }
1664
+ return 0
1665
+ }
1666
+
1667
+ type Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange struct {
1668
+ state protoimpl.MessageState `protogen:"open.v1"`
1669
+ LastMessageTimestamp *int64 `protobuf:"varint,1,opt,name=lastMessageTimestamp" json:"lastMessageTimestamp,omitempty"`
1670
+ LastSystemMessageTimestamp *int64 `protobuf:"varint,2,opt,name=lastSystemMessageTimestamp" json:"lastSystemMessageTimestamp,omitempty"`
1671
+ Messages []*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage `protobuf:"bytes,3,rep,name=messages" json:"messages,omitempty"`
1672
+ unknownFields protoimpl.UnknownFields
1673
+ sizeCache protoimpl.SizeCache
1674
+ }
1675
+
1676
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) Reset() {
1677
+ *x = Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange{}
1678
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[15]
1679
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1680
+ ms.StoreMessageInfo(mi)
1681
+ }
1682
+
1683
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) String() string {
1684
+ return protoimpl.X.MessageStringOf(x)
1685
+ }
1686
+
1687
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) ProtoMessage() {}
1688
+
1689
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) ProtoReflect() protoreflect.Message {
1690
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[15]
1691
+ if x != nil {
1692
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1693
+ if ms.LoadMessageInfo() == nil {
1694
+ ms.StoreMessageInfo(mi)
1695
+ }
1696
+ return ms
1697
+ }
1698
+ return mi.MessageOf(x)
1699
+ }
1700
+
1701
+ // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange.ProtoReflect.Descriptor instead.
1702
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) Descriptor() ([]byte, []int) {
1703
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1, 3}
1704
+ }
1705
+
1706
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) GetLastMessageTimestamp() int64 {
1707
+ if x != nil && x.LastMessageTimestamp != nil {
1708
+ return *x.LastMessageTimestamp
1709
+ }
1710
+ return 0
1711
+ }
1712
+
1713
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) GetLastSystemMessageTimestamp() int64 {
1714
+ if x != nil && x.LastSystemMessageTimestamp != nil {
1715
+ return *x.LastSystemMessageTimestamp
1716
+ }
1717
+ return 0
1718
+ }
1719
+
1720
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) GetMessages() []*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage {
1721
+ if x != nil {
1722
+ return x.Messages
1723
+ }
1724
+ return nil
1725
+ }
1726
+
1727
+ type Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete struct {
1728
+ state protoimpl.MessageState `protogen:"open.v1"`
1729
+ unknownFields protoimpl.UnknownFields
1730
+ sizeCache protoimpl.SizeCache
1731
+ }
1732
+
1733
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) Reset() {
1734
+ *x = Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete{}
1735
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[16]
1736
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1737
+ ms.StoreMessageInfo(mi)
1738
+ }
1739
+
1740
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) String() string {
1741
+ return protoimpl.X.MessageStringOf(x)
1742
+ }
1743
+
1744
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) ProtoMessage() {
1745
+ }
1746
+
1747
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) ProtoReflect() protoreflect.Message {
1748
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[16]
1749
+ if x != nil {
1750
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1751
+ if ms.LoadMessageInfo() == nil {
1752
+ ms.StoreMessageInfo(mi)
1753
+ }
1754
+ return ms
1755
+ }
1756
+ return mi.MessageOf(x)
1757
+ }
1758
+
1759
+ // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete.ProtoReflect.Descriptor instead.
1760
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) Descriptor() ([]byte, []int) {
1761
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1, 0, 0}
1762
+ }
1763
+
1764
+ type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead struct {
1765
+ state protoimpl.MessageState `protogen:"open.v1"`
1766
+ MessageRange *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange `protobuf:"bytes,1,opt,name=messageRange" json:"messageRange,omitempty"`
1767
+ Read *bool `protobuf:"varint,2,opt,name=read" json:"read,omitempty"`
1768
+ unknownFields protoimpl.UnknownFields
1769
+ sizeCache protoimpl.SizeCache
1770
+ }
1771
+
1772
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) Reset() {
1773
+ *x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead{}
1774
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[17]
1775
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1776
+ ms.StoreMessageInfo(mi)
1777
+ }
1778
+
1779
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) String() string {
1780
+ return protoimpl.X.MessageStringOf(x)
1781
+ }
1782
+
1783
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) ProtoMessage() {}
1784
+
1785
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) ProtoReflect() protoreflect.Message {
1786
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[17]
1787
+ if x != nil {
1788
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1789
+ if ms.LoadMessageInfo() == nil {
1790
+ ms.StoreMessageInfo(mi)
1791
+ }
1792
+ return ms
1793
+ }
1794
+ return mi.MessageOf(x)
1795
+ }
1796
+
1797
+ // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead.ProtoReflect.Descriptor instead.
1798
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) Descriptor() ([]byte, []int) {
1799
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1, 1, 0}
1800
+ }
1801
+
1802
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) GetMessageRange() *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange {
1803
+ if x != nil {
1804
+ return x.MessageRange
1805
+ }
1806
+ return nil
1807
+ }
1808
+
1809
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) GetRead() bool {
1810
+ if x != nil && x.Read != nil {
1811
+ return *x.Read
1812
+ }
1813
+ return false
1814
+ }
1815
+
1816
+ type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete struct {
1817
+ state protoimpl.MessageState `protogen:"open.v1"`
1818
+ MessageRange *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange `protobuf:"bytes,1,opt,name=messageRange" json:"messageRange,omitempty"`
1819
+ unknownFields protoimpl.UnknownFields
1820
+ sizeCache protoimpl.SizeCache
1821
+ }
1822
+
1823
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) Reset() {
1824
+ *x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete{}
1825
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[18]
1826
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1827
+ ms.StoreMessageInfo(mi)
1828
+ }
1829
+
1830
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) String() string {
1831
+ return protoimpl.X.MessageStringOf(x)
1832
+ }
1833
+
1834
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) ProtoMessage() {}
1835
+
1836
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) ProtoReflect() protoreflect.Message {
1837
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[18]
1838
+ if x != nil {
1839
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1840
+ if ms.LoadMessageInfo() == nil {
1841
+ ms.StoreMessageInfo(mi)
1842
+ }
1843
+ return ms
1844
+ }
1845
+ return mi.MessageOf(x)
1846
+ }
1847
+
1848
+ // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete.ProtoReflect.Descriptor instead.
1849
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) Descriptor() ([]byte, []int) {
1850
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1, 1, 1}
1851
+ }
1852
+
1853
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) GetMessageRange() *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange {
1854
+ if x != nil {
1855
+ return x.MessageRange
1856
+ }
1857
+ return nil
1858
+ }
1859
+
1860
+ type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive struct {
1861
+ state protoimpl.MessageState `protogen:"open.v1"`
1862
+ MessageRange *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange `protobuf:"bytes,1,opt,name=messageRange" json:"messageRange,omitempty"`
1863
+ Archived *bool `protobuf:"varint,2,opt,name=archived" json:"archived,omitempty"`
1864
+ unknownFields protoimpl.UnknownFields
1865
+ sizeCache protoimpl.SizeCache
1866
+ }
1867
+
1868
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) Reset() {
1869
+ *x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive{}
1870
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[19]
1871
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1872
+ ms.StoreMessageInfo(mi)
1873
+ }
1874
+
1875
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) String() string {
1876
+ return protoimpl.X.MessageStringOf(x)
1877
+ }
1878
+
1879
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) ProtoMessage() {
1880
+ }
1881
+
1882
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) ProtoReflect() protoreflect.Message {
1883
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[19]
1884
+ if x != nil {
1885
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1886
+ if ms.LoadMessageInfo() == nil {
1887
+ ms.StoreMessageInfo(mi)
1888
+ }
1889
+ return ms
1890
+ }
1891
+ return mi.MessageOf(x)
1892
+ }
1893
+
1894
+ // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive.ProtoReflect.Descriptor instead.
1895
+ func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) Descriptor() ([]byte, []int) {
1896
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1, 1, 2}
1897
+ }
1898
+
1899
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) GetMessageRange() *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange {
1900
+ if x != nil {
1901
+ return x.MessageRange
1902
+ }
1903
+ return nil
1904
+ }
1905
+
1906
+ func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) GetArchived() bool {
1907
+ if x != nil && x.Archived != nil {
1908
+ return *x.Archived
1909
+ }
1910
+ return false
1911
+ }
1912
+
1913
+ type Armadillo_Content_PaymentsTransactionMessage struct {
1914
+ state protoimpl.MessageState `protogen:"open.v1"`
1915
+ TransactionID *uint64 `protobuf:"varint,1,opt,name=transactionID" json:"transactionID,omitempty"`
1916
+ Amount *string `protobuf:"bytes,2,opt,name=amount" json:"amount,omitempty"`
1917
+ Currency *string `protobuf:"bytes,3,opt,name=currency" json:"currency,omitempty"`
1918
+ PaymentStatus *Armadillo_Content_PaymentsTransactionMessage_PaymentStatus `protobuf:"varint,4,opt,name=paymentStatus,enum=WAArmadilloApplication.Armadillo_Content_PaymentsTransactionMessage_PaymentStatus" json:"paymentStatus,omitempty"`
1919
+ ExtendedContentMessage *waArmadilloXMA.ExtendedContentMessage `protobuf:"bytes,5,opt,name=extendedContentMessage" json:"extendedContentMessage,omitempty"`
1920
+ unknownFields protoimpl.UnknownFields
1921
+ sizeCache protoimpl.SizeCache
1922
+ }
1923
+
1924
+ func (x *Armadillo_Content_PaymentsTransactionMessage) Reset() {
1925
+ *x = Armadillo_Content_PaymentsTransactionMessage{}
1926
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[20]
1927
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1928
+ ms.StoreMessageInfo(mi)
1929
+ }
1930
+
1931
+ func (x *Armadillo_Content_PaymentsTransactionMessage) String() string {
1932
+ return protoimpl.X.MessageStringOf(x)
1933
+ }
1934
+
1935
+ func (*Armadillo_Content_PaymentsTransactionMessage) ProtoMessage() {}
1936
+
1937
+ func (x *Armadillo_Content_PaymentsTransactionMessage) ProtoReflect() protoreflect.Message {
1938
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[20]
1939
+ if x != nil {
1940
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1941
+ if ms.LoadMessageInfo() == nil {
1942
+ ms.StoreMessageInfo(mi)
1943
+ }
1944
+ return ms
1945
+ }
1946
+ return mi.MessageOf(x)
1947
+ }
1948
+
1949
+ // Deprecated: Use Armadillo_Content_PaymentsTransactionMessage.ProtoReflect.Descriptor instead.
1950
+ func (*Armadillo_Content_PaymentsTransactionMessage) Descriptor() ([]byte, []int) {
1951
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 0}
1952
+ }
1953
+
1954
+ func (x *Armadillo_Content_PaymentsTransactionMessage) GetTransactionID() uint64 {
1955
+ if x != nil && x.TransactionID != nil {
1956
+ return *x.TransactionID
1957
+ }
1958
+ return 0
1959
+ }
1960
+
1961
+ func (x *Armadillo_Content_PaymentsTransactionMessage) GetAmount() string {
1962
+ if x != nil && x.Amount != nil {
1963
+ return *x.Amount
1964
+ }
1965
+ return ""
1966
+ }
1967
+
1968
+ func (x *Armadillo_Content_PaymentsTransactionMessage) GetCurrency() string {
1969
+ if x != nil && x.Currency != nil {
1970
+ return *x.Currency
1971
+ }
1972
+ return ""
1973
+ }
1974
+
1975
+ func (x *Armadillo_Content_PaymentsTransactionMessage) GetPaymentStatus() Armadillo_Content_PaymentsTransactionMessage_PaymentStatus {
1976
+ if x != nil && x.PaymentStatus != nil {
1977
+ return *x.PaymentStatus
1978
+ }
1979
+ return Armadillo_Content_PaymentsTransactionMessage_PAYMENT_UNKNOWN
1980
+ }
1981
+
1982
+ func (x *Armadillo_Content_PaymentsTransactionMessage) GetExtendedContentMessage() *waArmadilloXMA.ExtendedContentMessage {
1983
+ if x != nil {
1984
+ return x.ExtendedContentMessage
1985
+ }
1986
+ return nil
1987
+ }
1988
+
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
+ type Armadillo_Content_NetworkVerificationMessage struct {
2034
+ state protoimpl.MessageState `protogen:"open.v1"`
2035
+ CodeText *string `protobuf:"bytes,1,opt,name=codeText" json:"codeText,omitempty"`
2036
+ unknownFields protoimpl.UnknownFields
2037
+ sizeCache protoimpl.SizeCache
2038
+ }
2039
+
2040
+ func (x *Armadillo_Content_NetworkVerificationMessage) Reset() {
2041
+ *x = Armadillo_Content_NetworkVerificationMessage{}
2042
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[22]
2043
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2044
+ ms.StoreMessageInfo(mi)
2045
+ }
2046
+
2047
+ func (x *Armadillo_Content_NetworkVerificationMessage) String() string {
2048
+ return protoimpl.X.MessageStringOf(x)
2049
+ }
2050
+
2051
+ func (*Armadillo_Content_NetworkVerificationMessage) ProtoMessage() {}
2052
+
2053
+ func (x *Armadillo_Content_NetworkVerificationMessage) ProtoReflect() protoreflect.Message {
2054
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[22]
2055
+ if x != nil {
2056
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2057
+ if ms.LoadMessageInfo() == nil {
2058
+ ms.StoreMessageInfo(mi)
2059
+ }
2060
+ return ms
2061
+ }
2062
+ return mi.MessageOf(x)
2063
+ }
2064
+
2065
+ // Deprecated: Use Armadillo_Content_NetworkVerificationMessage.ProtoReflect.Descriptor instead.
2066
+ func (*Armadillo_Content_NetworkVerificationMessage) Descriptor() ([]byte, []int) {
2067
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 2}
2068
+ }
2069
+
2070
+ func (x *Armadillo_Content_NetworkVerificationMessage) GetCodeText() string {
2071
+ if x != nil && x.CodeText != nil {
2072
+ return *x.CodeText
2073
+ }
2074
+ return ""
2075
+ }
2076
+
2077
+ type Armadillo_Content_NoteReplyMessage struct {
2078
+ state protoimpl.MessageState `protogen:"open.v1"`
2079
+ // Types that are valid to be assigned to NoteReplyContent:
2080
+ //
2081
+ // *Armadillo_Content_NoteReplyMessage_TextContent
2082
+ // *Armadillo_Content_NoteReplyMessage_StickerContent
2083
+ // *Armadillo_Content_NoteReplyMessage_VideoContent
2084
+ NoteReplyContent isArmadillo_Content_NoteReplyMessage_NoteReplyContent `protobuf_oneof:"noteReplyContent"`
2085
+ NoteID *string `protobuf:"bytes,1,opt,name=noteID" json:"noteID,omitempty"`
2086
+ NoteText *waCommon.MessageText `protobuf:"bytes,2,opt,name=noteText" json:"noteText,omitempty"`
2087
+ NoteTimestampMS *int64 `protobuf:"varint,3,opt,name=noteTimestampMS" json:"noteTimestampMS,omitempty"`
2088
+ unknownFields protoimpl.UnknownFields
2089
+ sizeCache protoimpl.SizeCache
2090
+ }
2091
+
2092
+ func (x *Armadillo_Content_NoteReplyMessage) Reset() {
2093
+ *x = Armadillo_Content_NoteReplyMessage{}
2094
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[23]
2095
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2096
+ ms.StoreMessageInfo(mi)
2097
+ }
2098
+
2099
+ func (x *Armadillo_Content_NoteReplyMessage) String() string {
2100
+ return protoimpl.X.MessageStringOf(x)
2101
+ }
2102
+
2103
+ func (*Armadillo_Content_NoteReplyMessage) ProtoMessage() {}
2104
+
2105
+ func (x *Armadillo_Content_NoteReplyMessage) ProtoReflect() protoreflect.Message {
2106
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[23]
2107
+ if x != nil {
2108
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2109
+ if ms.LoadMessageInfo() == nil {
2110
+ ms.StoreMessageInfo(mi)
2111
+ }
2112
+ return ms
2113
+ }
2114
+ return mi.MessageOf(x)
2115
+ }
2116
+
2117
+ // Deprecated: Use Armadillo_Content_NoteReplyMessage.ProtoReflect.Descriptor instead.
2118
+ func (*Armadillo_Content_NoteReplyMessage) Descriptor() ([]byte, []int) {
2119
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 3}
2120
+ }
2121
+
2122
+ func (x *Armadillo_Content_NoteReplyMessage) GetNoteReplyContent() isArmadillo_Content_NoteReplyMessage_NoteReplyContent {
2123
+ if x != nil {
2124
+ return x.NoteReplyContent
2125
+ }
2126
+ return nil
2127
+ }
2128
+
2129
+ func (x *Armadillo_Content_NoteReplyMessage) GetTextContent() *waCommon.MessageText {
2130
+ if x != nil {
2131
+ if x, ok := x.NoteReplyContent.(*Armadillo_Content_NoteReplyMessage_TextContent); ok {
2132
+ return x.TextContent
2133
+ }
2134
+ }
2135
+ return nil
2136
+ }
2137
+
2138
+ func (x *Armadillo_Content_NoteReplyMessage) GetStickerContent() *waCommon.SubProtocol {
2139
+ if x != nil {
2140
+ if x, ok := x.NoteReplyContent.(*Armadillo_Content_NoteReplyMessage_StickerContent); ok {
2141
+ return x.StickerContent
2142
+ }
2143
+ }
2144
+ return nil
2145
+ }
2146
+
2147
+ func (x *Armadillo_Content_NoteReplyMessage) GetVideoContent() *waCommon.SubProtocol {
2148
+ if x != nil {
2149
+ if x, ok := x.NoteReplyContent.(*Armadillo_Content_NoteReplyMessage_VideoContent); ok {
2150
+ return x.VideoContent
2151
+ }
2152
+ }
2153
+ return nil
2154
+ }
2155
+
2156
+ func (x *Armadillo_Content_NoteReplyMessage) GetNoteID() string {
2157
+ if x != nil && x.NoteID != nil {
2158
+ return *x.NoteID
2159
+ }
2160
+ return ""
2161
+ }
2162
+
2163
+ func (x *Armadillo_Content_NoteReplyMessage) GetNoteText() *waCommon.MessageText {
2164
+ if x != nil {
2165
+ return x.NoteText
2166
+ }
2167
+ return nil
2168
+ }
2169
+
2170
+ func (x *Armadillo_Content_NoteReplyMessage) GetNoteTimestampMS() int64 {
2171
+ if x != nil && x.NoteTimestampMS != nil {
2172
+ return *x.NoteTimestampMS
2173
+ }
2174
+ return 0
2175
+ }
2176
+
2177
+ type isArmadillo_Content_NoteReplyMessage_NoteReplyContent interface {
2178
+ isArmadillo_Content_NoteReplyMessage_NoteReplyContent()
2179
+ }
2180
+
2181
+ type Armadillo_Content_NoteReplyMessage_TextContent struct {
2182
+ TextContent *waCommon.MessageText `protobuf:"bytes,4,opt,name=textContent,oneof"`
2183
+ }
2184
+
2185
+ type Armadillo_Content_NoteReplyMessage_StickerContent struct {
2186
+ StickerContent *waCommon.SubProtocol `protobuf:"bytes,5,opt,name=stickerContent,oneof"`
2187
+ }
2188
+
2189
+ type Armadillo_Content_NoteReplyMessage_VideoContent struct {
2190
+ VideoContent *waCommon.SubProtocol `protobuf:"bytes,6,opt,name=videoContent,oneof"`
2191
+ }
2192
+
2193
+ func (*Armadillo_Content_NoteReplyMessage_TextContent) isArmadillo_Content_NoteReplyMessage_NoteReplyContent() {
2194
+ }
2195
+
2196
+ func (*Armadillo_Content_NoteReplyMessage_StickerContent) isArmadillo_Content_NoteReplyMessage_NoteReplyContent() {
2197
+ }
2198
+
2199
+ func (*Armadillo_Content_NoteReplyMessage_VideoContent) isArmadillo_Content_NoteReplyMessage_NoteReplyContent() {
2200
+ }
2201
+
2202
+ type Armadillo_Content_BumpExistingMessage struct {
2203
+ state protoimpl.MessageState `protogen:"open.v1"`
2204
+ Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
2205
+ unknownFields protoimpl.UnknownFields
2206
+ sizeCache protoimpl.SizeCache
2207
+ }
2208
+
2209
+ func (x *Armadillo_Content_BumpExistingMessage) Reset() {
2210
+ *x = Armadillo_Content_BumpExistingMessage{}
2211
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[24]
2212
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2213
+ ms.StoreMessageInfo(mi)
2214
+ }
2215
+
2216
+ func (x *Armadillo_Content_BumpExistingMessage) String() string {
2217
+ return protoimpl.X.MessageStringOf(x)
2218
+ }
2219
+
2220
+ func (*Armadillo_Content_BumpExistingMessage) ProtoMessage() {}
2221
+
2222
+ func (x *Armadillo_Content_BumpExistingMessage) ProtoReflect() protoreflect.Message {
2223
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[24]
2224
+ if x != nil {
2225
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2226
+ if ms.LoadMessageInfo() == nil {
2227
+ ms.StoreMessageInfo(mi)
2228
+ }
2229
+ return ms
2230
+ }
2231
+ return mi.MessageOf(x)
2232
+ }
2233
+
2234
+ // Deprecated: Use Armadillo_Content_BumpExistingMessage.ProtoReflect.Descriptor instead.
2235
+ func (*Armadillo_Content_BumpExistingMessage) Descriptor() ([]byte, []int) {
2236
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 4}
2237
+ }
2238
+
2239
+ func (x *Armadillo_Content_BumpExistingMessage) GetKey() *waCommon.MessageKey {
2240
+ if x != nil {
2241
+ return x.Key
2242
+ }
2243
+ return nil
2244
+ }
2245
+
2246
+ type Armadillo_Content_ImageGalleryMessage struct {
2247
+ state protoimpl.MessageState `protogen:"open.v1"`
2248
+ Images []*waCommon.SubProtocol `protobuf:"bytes,1,rep,name=images" json:"images,omitempty"`
2249
+ unknownFields protoimpl.UnknownFields
2250
+ sizeCache protoimpl.SizeCache
2251
+ }
2252
+
2253
+ func (x *Armadillo_Content_ImageGalleryMessage) Reset() {
2254
+ *x = Armadillo_Content_ImageGalleryMessage{}
2255
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[25]
2256
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2257
+ ms.StoreMessageInfo(mi)
2258
+ }
2259
+
2260
+ func (x *Armadillo_Content_ImageGalleryMessage) String() string {
2261
+ return protoimpl.X.MessageStringOf(x)
2262
+ }
2263
+
2264
+ func (*Armadillo_Content_ImageGalleryMessage) ProtoMessage() {}
2265
+
2266
+ func (x *Armadillo_Content_ImageGalleryMessage) ProtoReflect() protoreflect.Message {
2267
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[25]
2268
+ if x != nil {
2269
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2270
+ if ms.LoadMessageInfo() == nil {
2271
+ ms.StoreMessageInfo(mi)
2272
+ }
2273
+ return ms
2274
+ }
2275
+ return mi.MessageOf(x)
2276
+ }
2277
+
2278
+ // Deprecated: Use Armadillo_Content_ImageGalleryMessage.ProtoReflect.Descriptor instead.
2279
+ func (*Armadillo_Content_ImageGalleryMessage) Descriptor() ([]byte, []int) {
2280
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 5}
2281
+ }
2282
+
2283
+ func (x *Armadillo_Content_ImageGalleryMessage) GetImages() []*waCommon.SubProtocol {
2284
+ if x != nil {
2285
+ return x.Images
2286
+ }
2287
+ return nil
2288
+ }
2289
+
2290
+ type Armadillo_Content_ScreenshotAction struct {
2291
+ state protoimpl.MessageState `protogen:"open.v1"`
2292
+ ScreenshotType *Armadillo_Content_ScreenshotAction_ScreenshotType `protobuf:"varint,1,opt,name=screenshotType,enum=WAArmadilloApplication.Armadillo_Content_ScreenshotAction_ScreenshotType" json:"screenshotType,omitempty"`
2293
+ unknownFields protoimpl.UnknownFields
2294
+ sizeCache protoimpl.SizeCache
2295
+ }
2296
+
2297
+ func (x *Armadillo_Content_ScreenshotAction) Reset() {
2298
+ *x = Armadillo_Content_ScreenshotAction{}
2299
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[26]
2300
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2301
+ ms.StoreMessageInfo(mi)
2302
+ }
2303
+
2304
+ func (x *Armadillo_Content_ScreenshotAction) String() string {
2305
+ return protoimpl.X.MessageStringOf(x)
2306
+ }
2307
+
2308
+ func (*Armadillo_Content_ScreenshotAction) ProtoMessage() {}
2309
+
2310
+ func (x *Armadillo_Content_ScreenshotAction) ProtoReflect() protoreflect.Message {
2311
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[26]
2312
+ if x != nil {
2313
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2314
+ if ms.LoadMessageInfo() == nil {
2315
+ ms.StoreMessageInfo(mi)
2316
+ }
2317
+ return ms
2318
+ }
2319
+ return mi.MessageOf(x)
2320
+ }
2321
+
2322
+ // Deprecated: Use Armadillo_Content_ScreenshotAction.ProtoReflect.Descriptor instead.
2323
+ func (*Armadillo_Content_ScreenshotAction) Descriptor() ([]byte, []int) {
2324
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 6}
2325
+ }
2326
+
2327
+ func (x *Armadillo_Content_ScreenshotAction) GetScreenshotType() Armadillo_Content_ScreenshotAction_ScreenshotType {
2328
+ if x != nil && x.ScreenshotType != nil {
2329
+ return *x.ScreenshotType
2330
+ }
2331
+ return Armadillo_Content_ScreenshotAction_SCREENSHOT_IMAGE
2332
+ }
2333
+
2334
+ type Armadillo_Content_ExtendedContentMessageWithSear struct {
2335
+ state protoimpl.MessageState `protogen:"open.v1"`
2336
+ SearID *string `protobuf:"bytes,1,opt,name=searID" json:"searID,omitempty"`
2337
+ Payload []byte `protobuf:"bytes,2,opt,name=payload" json:"payload,omitempty"`
2338
+ NativeURL *string `protobuf:"bytes,3,opt,name=nativeURL" json:"nativeURL,omitempty"`
2339
+ SearAssociatedMessage *waCommon.SubProtocol `protobuf:"bytes,4,opt,name=searAssociatedMessage" json:"searAssociatedMessage,omitempty"`
2340
+ SearSentWithMessageID *string `protobuf:"bytes,5,opt,name=searSentWithMessageID" json:"searSentWithMessageID,omitempty"`
2341
+ unknownFields protoimpl.UnknownFields
2342
+ sizeCache protoimpl.SizeCache
2343
+ }
2344
+
2345
+ func (x *Armadillo_Content_ExtendedContentMessageWithSear) Reset() {
2346
+ *x = Armadillo_Content_ExtendedContentMessageWithSear{}
2347
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[27]
2348
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2349
+ ms.StoreMessageInfo(mi)
2350
+ }
2351
+
2352
+ func (x *Armadillo_Content_ExtendedContentMessageWithSear) String() string {
2353
+ return protoimpl.X.MessageStringOf(x)
2354
+ }
2355
+
2356
+ func (*Armadillo_Content_ExtendedContentMessageWithSear) ProtoMessage() {}
2357
+
2358
+ func (x *Armadillo_Content_ExtendedContentMessageWithSear) ProtoReflect() protoreflect.Message {
2359
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[27]
2360
+ if x != nil {
2361
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2362
+ if ms.LoadMessageInfo() == nil {
2363
+ ms.StoreMessageInfo(mi)
2364
+ }
2365
+ return ms
2366
+ }
2367
+ return mi.MessageOf(x)
2368
+ }
2369
+
2370
+ // Deprecated: Use Armadillo_Content_ExtendedContentMessageWithSear.ProtoReflect.Descriptor instead.
2371
+ func (*Armadillo_Content_ExtendedContentMessageWithSear) Descriptor() ([]byte, []int) {
2372
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 7}
2373
+ }
2374
+
2375
+ func (x *Armadillo_Content_ExtendedContentMessageWithSear) GetSearID() string {
2376
+ if x != nil && x.SearID != nil {
2377
+ return *x.SearID
2378
+ }
2379
+ return ""
2380
+ }
2381
+
2382
+ func (x *Armadillo_Content_ExtendedContentMessageWithSear) GetPayload() []byte {
2383
+ if x != nil {
2384
+ return x.Payload
2385
+ }
2386
+ return nil
2387
+ }
2388
+
2389
+ func (x *Armadillo_Content_ExtendedContentMessageWithSear) GetNativeURL() string {
2390
+ if x != nil && x.NativeURL != nil {
2391
+ return *x.NativeURL
2392
+ }
2393
+ return ""
2394
+ }
2395
+
2396
+ func (x *Armadillo_Content_ExtendedContentMessageWithSear) GetSearAssociatedMessage() *waCommon.SubProtocol {
2397
+ if x != nil {
2398
+ return x.SearAssociatedMessage
2399
+ }
2400
+ return nil
2401
+ }
2402
+
2403
+ func (x *Armadillo_Content_ExtendedContentMessageWithSear) GetSearSentWithMessageID() string {
2404
+ if x != nil && x.SearSentWithMessageID != nil {
2405
+ return *x.SearSentWithMessageID
2406
+ }
2407
+ return ""
2408
+ }
2409
+
2410
+ type Armadillo_Content_RavenActionNotifMessage struct {
2411
+ state protoimpl.MessageState `protogen:"open.v1"`
2412
+ Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
2413
+ ActionTimestamp *int64 `protobuf:"varint,2,opt,name=actionTimestamp" json:"actionTimestamp,omitempty"`
2414
+ ActionType *Armadillo_Content_RavenActionNotifMessage_ActionType `protobuf:"varint,3,opt,name=actionType,enum=WAArmadilloApplication.Armadillo_Content_RavenActionNotifMessage_ActionType" json:"actionType,omitempty"`
2415
+ unknownFields protoimpl.UnknownFields
2416
+ sizeCache protoimpl.SizeCache
2417
+ }
2418
+
2419
+ func (x *Armadillo_Content_RavenActionNotifMessage) Reset() {
2420
+ *x = Armadillo_Content_RavenActionNotifMessage{}
2421
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[28]
2422
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2423
+ ms.StoreMessageInfo(mi)
2424
+ }
2425
+
2426
+ func (x *Armadillo_Content_RavenActionNotifMessage) String() string {
2427
+ return protoimpl.X.MessageStringOf(x)
2428
+ }
2429
+
2430
+ func (*Armadillo_Content_RavenActionNotifMessage) ProtoMessage() {}
2431
+
2432
+ func (x *Armadillo_Content_RavenActionNotifMessage) ProtoReflect() protoreflect.Message {
2433
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[28]
2434
+ if x != nil {
2435
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2436
+ if ms.LoadMessageInfo() == nil {
2437
+ ms.StoreMessageInfo(mi)
2438
+ }
2439
+ return ms
2440
+ }
2441
+ return mi.MessageOf(x)
2442
+ }
2443
+
2444
+ // Deprecated: Use Armadillo_Content_RavenActionNotifMessage.ProtoReflect.Descriptor instead.
2445
+ func (*Armadillo_Content_RavenActionNotifMessage) Descriptor() ([]byte, []int) {
2446
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 8}
2447
+ }
2448
+
2449
+ func (x *Armadillo_Content_RavenActionNotifMessage) GetKey() *waCommon.MessageKey {
2450
+ if x != nil {
2451
+ return x.Key
2452
+ }
2453
+ return nil
2454
+ }
2455
+
2456
+ func (x *Armadillo_Content_RavenActionNotifMessage) GetActionTimestamp() int64 {
2457
+ if x != nil && x.ActionTimestamp != nil {
2458
+ return *x.ActionTimestamp
2459
+ }
2460
+ return 0
2461
+ }
2462
+
2463
+ func (x *Armadillo_Content_RavenActionNotifMessage) GetActionType() Armadillo_Content_RavenActionNotifMessage_ActionType {
2464
+ if x != nil && x.ActionType != nil {
2465
+ return *x.ActionType
2466
+ }
2467
+ return Armadillo_Content_RavenActionNotifMessage_PLAYED
2468
+ }
2469
+
2470
+ type Armadillo_Content_RavenMessage struct {
2471
+ state protoimpl.MessageState `protogen:"open.v1"`
2472
+ // Types that are valid to be assigned to MediaContent:
2473
+ //
2474
+ // *Armadillo_Content_RavenMessage_ImageMessage
2475
+ // *Armadillo_Content_RavenMessage_VideoMessage
2476
+ MediaContent isArmadillo_Content_RavenMessage_MediaContent `protobuf_oneof:"mediaContent"`
2477
+ EphemeralType *Armadillo_Content_RavenMessage_EphemeralType `protobuf:"varint,1,opt,name=ephemeralType,enum=WAArmadilloApplication.Armadillo_Content_RavenMessage_EphemeralType" json:"ephemeralType,omitempty"`
2478
+ unknownFields protoimpl.UnknownFields
2479
+ sizeCache protoimpl.SizeCache
2480
+ }
2481
+
2482
+ func (x *Armadillo_Content_RavenMessage) Reset() {
2483
+ *x = Armadillo_Content_RavenMessage{}
2484
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[29]
2485
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2486
+ ms.StoreMessageInfo(mi)
2487
+ }
2488
+
2489
+ func (x *Armadillo_Content_RavenMessage) String() string {
2490
+ return protoimpl.X.MessageStringOf(x)
2491
+ }
2492
+
2493
+ func (*Armadillo_Content_RavenMessage) ProtoMessage() {}
2494
+
2495
+ func (x *Armadillo_Content_RavenMessage) ProtoReflect() protoreflect.Message {
2496
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[29]
2497
+ if x != nil {
2498
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2499
+ if ms.LoadMessageInfo() == nil {
2500
+ ms.StoreMessageInfo(mi)
2501
+ }
2502
+ return ms
2503
+ }
2504
+ return mi.MessageOf(x)
2505
+ }
2506
+
2507
+ // Deprecated: Use Armadillo_Content_RavenMessage.ProtoReflect.Descriptor instead.
2508
+ func (*Armadillo_Content_RavenMessage) Descriptor() ([]byte, []int) {
2509
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 9}
2510
+ }
2511
+
2512
+ func (x *Armadillo_Content_RavenMessage) GetMediaContent() isArmadillo_Content_RavenMessage_MediaContent {
2513
+ if x != nil {
2514
+ return x.MediaContent
2515
+ }
2516
+ return nil
2517
+ }
2518
+
2519
+ func (x *Armadillo_Content_RavenMessage) GetImageMessage() *waCommon.SubProtocol {
2520
+ if x != nil {
2521
+ if x, ok := x.MediaContent.(*Armadillo_Content_RavenMessage_ImageMessage); ok {
2522
+ return x.ImageMessage
2523
+ }
2524
+ }
2525
+ return nil
2526
+ }
2527
+
2528
+ func (x *Armadillo_Content_RavenMessage) GetVideoMessage() *waCommon.SubProtocol {
2529
+ if x != nil {
2530
+ if x, ok := x.MediaContent.(*Armadillo_Content_RavenMessage_VideoMessage); ok {
2531
+ return x.VideoMessage
2532
+ }
2533
+ }
2534
+ return nil
2535
+ }
2536
+
2537
+ func (x *Armadillo_Content_RavenMessage) GetEphemeralType() Armadillo_Content_RavenMessage_EphemeralType {
2538
+ if x != nil && x.EphemeralType != nil {
2539
+ return *x.EphemeralType
2540
+ }
2541
+ return Armadillo_Content_RavenMessage_VIEW_ONCE
2542
+ }
2543
+
2544
+ type isArmadillo_Content_RavenMessage_MediaContent interface {
2545
+ isArmadillo_Content_RavenMessage_MediaContent()
2546
+ }
2547
+
2548
+ type Armadillo_Content_RavenMessage_ImageMessage struct {
2549
+ ImageMessage *waCommon.SubProtocol `protobuf:"bytes,2,opt,name=imageMessage,oneof"`
2550
+ }
2551
+
2552
+ type Armadillo_Content_RavenMessage_VideoMessage struct {
2553
+ VideoMessage *waCommon.SubProtocol `protobuf:"bytes,3,opt,name=videoMessage,oneof"`
2554
+ }
2555
+
2556
+ func (*Armadillo_Content_RavenMessage_ImageMessage) isArmadillo_Content_RavenMessage_MediaContent() {}
2557
+
2558
+ func (*Armadillo_Content_RavenMessage_VideoMessage) isArmadillo_Content_RavenMessage_MediaContent() {}
2559
+
2560
+ type Armadillo_Content_CommonSticker struct {
2561
+ state protoimpl.MessageState `protogen:"open.v1"`
2562
+ StickerType *Armadillo_Content_CommonSticker_StickerType `protobuf:"varint,1,opt,name=stickerType,enum=WAArmadilloApplication.Armadillo_Content_CommonSticker_StickerType" json:"stickerType,omitempty"`
2563
+ unknownFields protoimpl.UnknownFields
2564
+ sizeCache protoimpl.SizeCache
2565
+ }
2566
+
2567
+ func (x *Armadillo_Content_CommonSticker) Reset() {
2568
+ *x = Armadillo_Content_CommonSticker{}
2569
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[30]
2570
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2571
+ ms.StoreMessageInfo(mi)
2572
+ }
2573
+
2574
+ func (x *Armadillo_Content_CommonSticker) String() string {
2575
+ return protoimpl.X.MessageStringOf(x)
2576
+ }
2577
+
2578
+ func (*Armadillo_Content_CommonSticker) ProtoMessage() {}
2579
+
2580
+ func (x *Armadillo_Content_CommonSticker) ProtoReflect() protoreflect.Message {
2581
+ mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[30]
2582
+ if x != nil {
2583
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2584
+ if ms.LoadMessageInfo() == nil {
2585
+ ms.StoreMessageInfo(mi)
2586
+ }
2587
+ return ms
2588
+ }
2589
+ return mi.MessageOf(x)
2590
+ }
2591
+
2592
+ // Deprecated: Use Armadillo_Content_CommonSticker.ProtoReflect.Descriptor instead.
2593
+ func (*Armadillo_Content_CommonSticker) Descriptor() ([]byte, []int) {
2594
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 10}
2595
+ }
2596
+
2597
+ func (x *Armadillo_Content_CommonSticker) GetStickerType() Armadillo_Content_CommonSticker_StickerType {
2598
+ if x != nil && x.StickerType != nil {
2599
+ return *x.StickerType
2600
+ }
2601
+ return Armadillo_Content_CommonSticker_SMALL_LIKE
2602
+ }
2603
+
2604
+ var File_waArmadilloApplication_WAArmadilloApplication_proto protoreflect.FileDescriptor
2605
+
2606
+ //go:embed WAArmadilloApplication.pb.raw
2607
+ var file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc []byte
2608
+
2609
+ var (
2610
+ file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescOnce sync.Once
2611
+ file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData = file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc
2612
+ )
2613
+
2614
+ func file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP() []byte {
2615
+ file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescOnce.Do(func() {
2616
+ file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData = protoimpl.X.CompressGZIP(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData)
2617
+ })
2618
+ return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData
2619
+ }
2620
+
2621
+ var file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes = make([]protoimpl.EnumInfo, 6)
2622
+ var file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes = make([]protoimpl.MessageInfo, 31)
2623
+ var file_waArmadilloApplication_WAArmadilloApplication_proto_goTypes = []any{
2624
+ (Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus)(0), // 0: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch.EpochStatus
2625
+ (Armadillo_Content_PaymentsTransactionMessage_PaymentStatus)(0), // 1: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.PaymentStatus
2626
+ (Armadillo_Content_ScreenshotAction_ScreenshotType)(0), // 2: WAArmadilloApplication.Armadillo.Content.ScreenshotAction.ScreenshotType
2627
+ (Armadillo_Content_RavenActionNotifMessage_ActionType)(0), // 3: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.ActionType
2628
+ (Armadillo_Content_RavenMessage_EphemeralType)(0), // 4: WAArmadilloApplication.Armadillo.Content.RavenMessage.EphemeralType
2629
+ (Armadillo_Content_CommonSticker_StickerType)(0), // 5: WAArmadilloApplication.Armadillo.Content.CommonSticker.StickerType
2630
+ (*Armadillo)(nil), // 6: WAArmadilloApplication.Armadillo
2631
+ (*Armadillo_Metadata)(nil), // 7: WAArmadilloApplication.Armadillo.Metadata
2632
+ (*Armadillo_Payload)(nil), // 8: WAArmadilloApplication.Armadillo.Payload
2633
+ (*Armadillo_SubProtocolPayload)(nil), // 9: WAArmadilloApplication.Armadillo.SubProtocolPayload
2634
+ (*Armadillo_Signal)(nil), // 10: WAArmadilloApplication.Armadillo.Signal
2635
+ (*Armadillo_ApplicationData)(nil), // 11: WAArmadilloApplication.Armadillo.ApplicationData
2636
+ (*Armadillo_Content)(nil), // 12: WAArmadilloApplication.Armadillo.Content
2637
+ (*Armadillo_Signal_EncryptedBackupsSecrets)(nil), // 13: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets
2638
+ (*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
2652
+ (*Armadillo_Content_NetworkVerificationMessage)(nil), // 28: WAArmadilloApplication.Armadillo.Content.NetworkVerificationMessage
2653
+ (*Armadillo_Content_NoteReplyMessage)(nil), // 29: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage
2654
+ (*Armadillo_Content_BumpExistingMessage)(nil), // 30: WAArmadilloApplication.Armadillo.Content.BumpExistingMessage
2655
+ (*Armadillo_Content_ImageGalleryMessage)(nil), // 31: WAArmadilloApplication.Armadillo.Content.ImageGalleryMessage
2656
+ (*Armadillo_Content_ScreenshotAction)(nil), // 32: WAArmadilloApplication.Armadillo.Content.ScreenshotAction
2657
+ (*Armadillo_Content_ExtendedContentMessageWithSear)(nil), // 33: WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSear
2658
+ (*Armadillo_Content_RavenActionNotifMessage)(nil), // 34: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage
2659
+ (*Armadillo_Content_RavenMessage)(nil), // 35: WAArmadilloApplication.Armadillo.Content.RavenMessage
2660
+ (*Armadillo_Content_CommonSticker)(nil), // 36: WAArmadilloApplication.Armadillo.Content.CommonSticker
2661
+ (waCommon.FutureProofBehavior)(0), // 37: WACommon.FutureProofBehavior
2662
+ (*waArmadilloXMA.ExtendedContentMessage)(nil), // 38: WAArmadilloXMA.ExtendedContentMessage
2663
+ (*waCommon.MessageKey)(nil), // 39: WACommon.MessageKey
2664
+ (*waCommon.SubProtocol)(nil), // 40: WACommon.SubProtocol
2665
+ (*waCommon.MessageText)(nil), // 41: WACommon.MessageText
2666
+ }
2667
+ var file_waArmadilloApplication_WAArmadilloApplication_proto_depIdxs = []int32{
2668
+ 8, // 0: WAArmadilloApplication.Armadillo.payload:type_name -> WAArmadilloApplication.Armadillo.Payload
2669
+ 7, // 1: WAArmadilloApplication.Armadillo.metadata:type_name -> WAArmadilloApplication.Armadillo.Metadata
2670
+ 12, // 2: WAArmadilloApplication.Armadillo.Payload.content:type_name -> WAArmadilloApplication.Armadillo.Content
2671
+ 11, // 3: WAArmadilloApplication.Armadillo.Payload.applicationData:type_name -> WAArmadilloApplication.Armadillo.ApplicationData
2672
+ 10, // 4: WAArmadilloApplication.Armadillo.Payload.signal:type_name -> WAArmadilloApplication.Armadillo.Signal
2673
+ 9, // 5: WAArmadilloApplication.Armadillo.Payload.subProtocol:type_name -> WAArmadilloApplication.Armadillo.SubProtocolPayload
2674
+ 37, // 6: WAArmadilloApplication.Armadillo.SubProtocolPayload.futureProof:type_name -> WACommon.FutureProofBehavior
2675
+ 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
2691
+ 14, // 23: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.epoch:type_name -> WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch
2692
+ 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
2709
+ 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
2712
+ 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
2715
+ 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
2718
+ 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
2721
+ 4, // 53: WAArmadilloApplication.Armadillo.Content.RavenMessage.ephemeralType:type_name -> WAArmadilloApplication.Armadillo.Content.RavenMessage.EphemeralType
2722
+ 5, // 54: WAArmadilloApplication.Armadillo.Content.CommonSticker.stickerType:type_name -> WAArmadilloApplication.Armadillo.Content.CommonSticker.StickerType
2723
+ 55, // [55:55] is the sub-list for method output_type
2724
+ 55, // [55:55] is the sub-list for method input_type
2725
+ 55, // [55:55] is the sub-list for extension type_name
2726
+ 55, // [55:55] is the sub-list for extension extendee
2727
+ 0, // [0:55] is the sub-list for field type_name
2728
+ }
2729
+
2730
+ func init() { file_waArmadilloApplication_WAArmadilloApplication_proto_init() }
2731
+ func file_waArmadilloApplication_WAArmadilloApplication_proto_init() {
2732
+ if File_waArmadilloApplication_WAArmadilloApplication_proto != nil {
2733
+ return
2734
+ }
2735
+ file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[2].OneofWrappers = []any{
2736
+ (*Armadillo_Payload_Content)(nil),
2737
+ (*Armadillo_Payload_ApplicationData)(nil),
2738
+ (*Armadillo_Payload_Signal)(nil),
2739
+ (*Armadillo_Payload_SubProtocol)(nil),
2740
+ }
2741
+ file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[4].OneofWrappers = []any{
2742
+ (*Armadillo_Signal_EncryptedBackupsSecrets_)(nil),
2743
+ }
2744
+ file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[5].OneofWrappers = []any{
2745
+ (*Armadillo_ApplicationData_MetadataSync)(nil),
2746
+ (*Armadillo_ApplicationData_AiBotResponse)(nil),
2747
+ }
2748
+ file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[6].OneofWrappers = []any{
2749
+ (*Armadillo_Content_CommonSticker_)(nil),
2750
+ (*Armadillo_Content_ScreenshotAction_)(nil),
2751
+ (*Armadillo_Content_ExtendedContentMessage)(nil),
2752
+ (*Armadillo_Content_RavenMessage_)(nil),
2753
+ (*Armadillo_Content_RavenActionNotifMessage_)(nil),
2754
+ (*Armadillo_Content_ExtendedMessageContentWithSear)(nil),
2755
+ (*Armadillo_Content_ImageGalleryMessage_)(nil),
2756
+ (*Armadillo_Content_PaymentsTransactionMessage_)(nil),
2757
+ (*Armadillo_Content_BumpExistingMessage_)(nil),
2758
+ (*Armadillo_Content_NoteReplyMessage_)(nil),
2759
+ (*Armadillo_Content_RavenMessageMsgr)(nil),
2760
+ (*Armadillo_Content_NetworkVerificationMessage_)(nil),
2761
+ (*Armadillo_Content_MessageHistoryDocumentMessage_)(nil),
2762
+ }
2763
+ file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[10].OneofWrappers = []any{
2764
+ (*Armadillo_ApplicationData_MetadataSyncAction_ChatAction)(nil),
2765
+ (*Armadillo_ApplicationData_MetadataSyncAction_MessageAction)(nil),
2766
+ }
2767
+ file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[12].OneofWrappers = []any{
2768
+ (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete)(nil),
2769
+ }
2770
+ file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[13].OneofWrappers = []any{
2771
+ (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive)(nil),
2772
+ (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete)(nil),
2773
+ (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead)(nil),
2774
+ }
2775
+ file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[23].OneofWrappers = []any{
2776
+ (*Armadillo_Content_NoteReplyMessage_TextContent)(nil),
2777
+ (*Armadillo_Content_NoteReplyMessage_StickerContent)(nil),
2778
+ (*Armadillo_Content_NoteReplyMessage_VideoContent)(nil),
2779
+ }
2780
+ file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[29].OneofWrappers = []any{
2781
+ (*Armadillo_Content_RavenMessage_ImageMessage)(nil),
2782
+ (*Armadillo_Content_RavenMessage_VideoMessage)(nil),
2783
+ }
2784
+ type x struct{}
2785
+ out := protoimpl.TypeBuilder{
2786
+ File: protoimpl.DescBuilder{
2787
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
2788
+ RawDescriptor: file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc,
2789
+ NumEnums: 6,
2790
+ NumMessages: 31,
2791
+ NumExtensions: 0,
2792
+ NumServices: 0,
2793
+ },
2794
+ GoTypes: file_waArmadilloApplication_WAArmadilloApplication_proto_goTypes,
2795
+ DependencyIndexes: file_waArmadilloApplication_WAArmadilloApplication_proto_depIdxs,
2796
+ EnumInfos: file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes,
2797
+ MessageInfos: file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes,
2798
+ }.Build()
2799
+ File_waArmadilloApplication_WAArmadilloApplication_proto = out.File
2800
+ file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc = nil
2801
+ file_waArmadilloApplication_WAArmadilloApplication_proto_goTypes = nil
2802
+ file_waArmadilloApplication_WAArmadilloApplication_proto_depIdxs = nil
2803
+ }