slidge-whatsapp 0.2.2__cp312-cp312-manylinux_2_36_aarch64.whl → 0.2.6__cp312-cp312-manylinux_2_36_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of slidge-whatsapp might be problematic. Click here for more details.
- slidge_whatsapp/__init__.py +26 -8
- slidge_whatsapp/__main__.py +3 -0
- slidge_whatsapp/config.py +3 -0
- slidge_whatsapp/contact.py +1 -1
- slidge_whatsapp/event.go +79 -24
- slidge_whatsapp/gateway.go +13 -9
- slidge_whatsapp/gateway.py +2 -2
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.h +188 -151
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +156 -131
- slidge_whatsapp/generated/go.py +1 -1
- slidge_whatsapp/generated/whatsapp.c +1770 -1299
- slidge_whatsapp/generated/whatsapp.go +1275 -1030
- slidge_whatsapp/generated/whatsapp.py +1262 -942
- slidge_whatsapp/generated/whatsapp_go.h +188 -151
- slidge_whatsapp/go.mod +18 -13
- slidge_whatsapp/go.sum +41 -29
- slidge_whatsapp/group.py +7 -2
- slidge_whatsapp/media/__init__.py +0 -0
- slidge_whatsapp/media/media.go +24 -13
- slidge_whatsapp/session.go +77 -71
- slidge_whatsapp/session.py +53 -31
- slidge_whatsapp/vendor/filippo.io/edwards25519/LICENSE +27 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/README.md +14 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/doc.go +20 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/edwards25519.go +427 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/extra.go +349 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe.go +420 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_amd64.go +16 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_amd64.s +379 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_amd64_noasm.go +12 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_arm64.go +16 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_arm64.s +42 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_arm64_noasm.go +12 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_extra.go +50 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_generic.go +266 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/scalar.go +343 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/scalar_fiat.go +1147 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/scalarmult.go +214 -0
- slidge_whatsapp/vendor/filippo.io/edwards25519/tables.go +129 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/.gitignore +1 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/LICENSE +201 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/README.md +97 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/abi_amd64.h +99 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/abi_arm64.h +39 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/cgo.go +19 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlerror.go +17 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn.go +99 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_android.go +34 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_darwin.go +19 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_freebsd.go +14 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_linux.go +16 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_nocgo_freebsd.go +11 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_nocgo_linux.go +19 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_playground.go +24 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_stubs.s +26 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/func.go +436 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/go_runtime.go +13 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/dlfcn_cgo_unix.go +56 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/empty.go +6 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/syscall_cgo_unix.go +55 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/abi_amd64.h +99 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/abi_arm64.h +39 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/asm_amd64.s +39 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/asm_arm64.s +36 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/callbacks.go +93 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/doc.go +32 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/freebsd.go +27 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_darwin_amd64.go +73 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_darwin_arm64.go +88 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_freebsd_amd64.go +95 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_freebsd_arm64.go +98 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_libinit.go +72 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_linux_amd64.go +95 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_linux_arm64.go +98 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_setenv.go +18 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_util.go +37 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/iscgo.go +19 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo.go +39 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_darwin.go +22 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_freebsd.go +16 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_linux.go +16 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/setenv.go +19 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols.go +221 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_darwin.go +29 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_freebsd.go +29 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_linux.go +29 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_amd64.s +104 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_arm64.s +72 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_stubs.s +90 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/strings/strings.go +40 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/is_ios.go +13 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/nocgo.go +25 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_amd64.go +260 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_arm64.go +274 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_other.go +16 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_amd64.s +164 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_arm64.s +92 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_unix_arm64.s +70 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall.go +53 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_cgo_linux.go +21 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_sysv.go +223 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_windows.go +46 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_amd64.s +2014 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_arm64.s +4014 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/.gitattributes +6 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/AUTHORS +1 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/COPYING +661 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/README.md +71 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz.go +66 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo.go +596 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo_cgo.go +18 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo_extlib.go +11 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo_extlib_pkgconfig.go +9 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_content_types.go +383 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_nocgo.go +1098 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_vendor.go +9 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/archive.h +444 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/band-writer.h +117 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/bidi.h +90 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/bitmap.h +175 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/buffer.h +250 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/color.h +427 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/compress.h +88 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/compressed-buffer.h +185 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/config.h +222 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/context.h +1006 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/crypt.h +270 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/device.h +654 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/display-list.h +142 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/document.h +1108 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/export.h +52 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/filter.h +263 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/font.h +815 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/geometry.h +818 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/getopt.h +128 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/glyph-cache.h +96 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/glyph.h +81 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/hash.h +126 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/heap-imp.h +163 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/heap.h +140 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/image.h +443 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/link.h +130 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/log.h +61 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/outline.h +228 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/output-svg.h +64 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/output.h +415 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/path.h +447 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/pixmap.h +501 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/pool.h +68 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/separation.h +138 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/shade.h +233 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/store.h +456 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/story-writer.h +209 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/story.h +232 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/stream.h +646 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/string-util.h +286 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/structured-text.h +365 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/system.h +459 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/text.h +209 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/track-usage.h +57 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/transition.h +76 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/tree.h +62 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/types.h +41 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/util.h +151 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/vendor.go +3 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/version.h +31 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/write-pixmap.h +499 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/writer.h +266 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/xml.h +397 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz.h +97 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/memento.h +423 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/vendor.go +3 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/libs/libmupdf_linux_arm64.a +0 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/libs/libmupdfthird_linux_arm64.a +0 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/libs/vendor.go +3 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_darwin.go +23 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_linux.go +22 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_windows.go +22 -0
- slidge_whatsapp/vendor/github.com/go-python/gopy/LICENSE +23 -0
- slidge_whatsapp/vendor/github.com/go-python/gopy/gopyh/handle.go +210 -0
- slidge_whatsapp/vendor/github.com/google/uuid/CHANGELOG.md +41 -0
- slidge_whatsapp/vendor/github.com/google/uuid/CONTRIBUTING.md +26 -0
- slidge_whatsapp/vendor/github.com/google/uuid/CONTRIBUTORS +9 -0
- slidge_whatsapp/vendor/github.com/google/uuid/LICENSE +27 -0
- slidge_whatsapp/vendor/github.com/google/uuid/README.md +21 -0
- slidge_whatsapp/vendor/github.com/google/uuid/dce.go +80 -0
- slidge_whatsapp/vendor/github.com/google/uuid/doc.go +12 -0
- slidge_whatsapp/vendor/github.com/google/uuid/hash.go +59 -0
- slidge_whatsapp/vendor/github.com/google/uuid/marshal.go +38 -0
- slidge_whatsapp/vendor/github.com/google/uuid/node.go +90 -0
- slidge_whatsapp/vendor/github.com/google/uuid/node_js.go +12 -0
- slidge_whatsapp/vendor/github.com/google/uuid/node_net.go +33 -0
- slidge_whatsapp/vendor/github.com/google/uuid/null.go +118 -0
- slidge_whatsapp/vendor/github.com/google/uuid/sql.go +59 -0
- slidge_whatsapp/vendor/github.com/google/uuid/time.go +134 -0
- slidge_whatsapp/vendor/github.com/google/uuid/util.go +43 -0
- slidge_whatsapp/vendor/github.com/google/uuid/uuid.go +365 -0
- slidge_whatsapp/vendor/github.com/google/uuid/version1.go +44 -0
- slidge_whatsapp/vendor/github.com/google/uuid/version4.go +76 -0
- slidge_whatsapp/vendor/github.com/google/uuid/version6.go +56 -0
- slidge_whatsapp/vendor/github.com/google/uuid/version7.go +104 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/.gitignore +25 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/AUTHORS +9 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/LICENSE +22 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/README.md +33 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/client.go +434 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/compression.go +148 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/conn.go +1238 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/doc.go +227 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/join.go +42 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/json.go +60 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/mask.go +55 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/mask_safe.go +16 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/prepared.go +102 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/proxy.go +77 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/server.go +365 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/tls_handshake.go +21 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/tls_handshake_116.go +21 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/util.go +298 -0
- slidge_whatsapp/vendor/github.com/gorilla/websocket/x_net_proxy.go +473 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/.editorconfig +12 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/.gitignore +2 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/.travis.yml +16 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/History.md +163 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/LICENSE +24 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/README.md +294 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/filetype.go +102 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/kind.go +91 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/match.go +90 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/application.go +43 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/archive.go +211 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/audio.go +85 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/document.go +197 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/font.go +45 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/image.go +143 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/isobmff/isobmff.go +37 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/matchers.go +51 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/video.go +145 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/types/defaults.go +4 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/types/mime.go +14 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/types/split.go +11 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/types/type.go +16 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/types/types.go +23 -0
- slidge_whatsapp/vendor/github.com/h2non/filetype/version.go +4 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/.gitignore +21 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/CHANGELOG.md +69 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/COPYRIGHT.txt +147 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/README.md +162 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi.go +7 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi_amd64.go +7 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +272 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/fun.go +54 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/init.go +55 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib.go +82 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_unix.go +63 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_windows.go +68 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/tramp_amd64.go +5 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/tramp_arm64.go +5 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/tramp_darwin_arm64.go +5 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/types.go +34 -0
- slidge_whatsapp/vendor/github.com/mattn/go-colorable/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/mattn/go-colorable/README.md +48 -0
- slidge_whatsapp/vendor/github.com/mattn/go-colorable/colorable_others.go +38 -0
- slidge_whatsapp/vendor/github.com/mattn/go-colorable/colorable_windows.go +1047 -0
- slidge_whatsapp/vendor/github.com/mattn/go-colorable/go.test.sh +12 -0
- slidge_whatsapp/vendor/github.com/mattn/go-colorable/noncolorable.go +57 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/LICENSE +9 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/README.md +50 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/doc.go +2 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/go.test.sh +12 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_bsd.go +20 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_others.go +17 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_plan9.go +23 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_solaris.go +21 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_tcgets.go +20 -0
- slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_windows.go +125 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/.codecov.yml +4 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/.gitignore +14 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/README.md +598 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/backup.go +85 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/callback.go +412 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/convert.go +299 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/doc.go +134 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/error.go +150 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +261459 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +13720 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3.go +2315 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_context.go +103 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_func_crypt.go +120 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_go18.go +54 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_libsqlite3.go +23 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_load_extension.go +85 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_load_extension_omit.go +25 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_allow_uri_authority.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_app_armor.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_column_metadata.go +22 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_foreign_keys.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_fts5.go +15 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_icu.go +20 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_introspect.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_math_functions.go +15 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_os_trace.go +15 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_preupdate.go +21 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_preupdate_hook.go +113 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_preupdate_omit.go +22 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_secure_delete.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_secure_delete_fast.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_serialize.go +83 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_serialize_omit.go +21 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_stat4.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.c +89 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.go +97 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth.go +295 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth_omit.go +158 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vacuum_full.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vacuum_incr.go +16 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vtable.go +721 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_other.go +18 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_solaris.go +15 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_trace.go +288 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_type.go +108 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_usleep_windows.go +42 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_windows.go +18 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3ext.h +728 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/static_mock.go +38 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/.gitignore +4 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/LICENSE +202 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/README.md +4 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid.go +35 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_gccgo.go +26 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.3.c +23 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.3.go +22 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.4.go +35 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.4.s +18 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.5.go +28 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.5.s +44 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_slow.go +24 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_gccgo_go1.8.go +17 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.23.go +38 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.5.go +57 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.6.go +43 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.9.go +37 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/.gitignore +25 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/CONTRIBUTING.md +43 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/README.md +813 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/array.go +240 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/console.go +535 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/context.go +480 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/ctx.go +52 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/encoder.go +56 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/encoder_cbor.go +45 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/encoder_json.go +51 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/event.go +830 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/example.jsonl +7 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/fields.go +292 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/globals.go +190 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/go112.go +7 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/hook.go +64 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/README.md +56 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/base.go +19 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/cbor.go +102 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/decode_stream.go +654 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/string.go +117 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/time.go +93 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/types.go +486 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/base.go +19 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/bytes.go +85 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/string.go +149 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/time.go +113 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/types.go +435 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/log/log.go +131 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/log.go +518 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/not_go112.go +5 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/pretty.png +0 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/sampler.go +137 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/syslog.go +89 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/writer.go +355 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/LICENSE +674 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/cipher/Cbc.go +101 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/cipher/Cipher.go +105 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/Curve.go +109 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/DjbECPublicKey.go +29 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/DkbECPrivateKey.go +29 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/Doc.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/ECKeyPair.go +27 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/ECPrivateKey.go +7 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/ECPublicKey.go +11 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/SignCurve25519.go +97 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupCipher.go +152 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupSessionBuilder.go +94 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/ratchet/Doc.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/ratchet/SenderChainKey.go +68 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/ratchet/SenderMessageKey.go +89 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/record/Doc.go +2 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/record/SenderKeyRecord.go +149 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/record/SenderKeyState.go +186 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/store/Doc.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/store/SenderKeyStore.go +13 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/kdf/HKDF.go +47 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/chain/ChainKey.go +128 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/identity/IdentityKey.go +48 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/identity/IdentityKeyPair.go +39 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/message/MessageKey.go +91 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/prekey/PreKeyBundle.go +86 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/root/RootKey.go +66 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/session/DerivedSecrets.go +29 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/session/Pair.go +43 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/logger/DefaultLogger.go +85 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/logger/Logger.go +89 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/CiphertextMessage.go +19 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/Doc.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/PreKeySignalMessage.go +152 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SenderKeyDistributionMessage.go +147 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SenderKeyMessage.go +168 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SenderKeyName.go +25 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SignalMessage.go +226 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SignalProtocolAddress.go +38 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/Ratchet.go +197 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/ReceiverParameters.go +106 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/SenderParameters.go +106 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/SymmetricParameters.go +18 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/FingerprintProtocol.pb.go +246 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/FingerprintProtocol.proto +14 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/JSONSerializer.go +303 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/LocalStorageProtocol.pb.go +1501 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/LocalStorageProtocol.proto +114 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/ProtoBufferSerializer.go +262 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/Serializer.go +31 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/WhisperTextProtocol.pb.go +641 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/WhisperTextProtocol.proto +45 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/session/Session.go +299 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/session/SessionCipher.go +409 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/signalerror/errors.go +37 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/ChainState.go +157 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/Doc.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/PendingKeyExchangeState.go +91 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/PendingPreKeyState.go +62 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/PreKeyRecord.go +90 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/SessionRecord.go +197 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/SessionState.go +531 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/SignedPreKeyRecord.go +112 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/UnacknowledgedPreKey.go +69 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/Doc.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/IdentityKeyStore.go +31 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/MessageKeyStore.go +23 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/PreKeyStore.go +23 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SessionStore.go +19 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SignalProtocolStore.go +15 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SignedPreKeyStore.go +26 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/util/bytehelper/ByteHelper.go +97 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/util/errorhelper/ErrorHelper.go +40 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/util/keyhelper/KeyHelper.go +95 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/util/medium/Medium.go +4 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/util/optional/Integer.go +17 -0
- slidge_whatsapp/vendor/go.mau.fi/util/LICENSE +373 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/connlog.go +257 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/database.go +309 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/iter.go +233 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/json.go +47 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/log.go +129 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/massinsert.go +164 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/queryhelper.go +137 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/reflectscan.go +30 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/transaction.go +180 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgrades.go +250 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgradetable.go +331 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exerrors/dualerror.go +33 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exerrors/must.go +23 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/cors.go +32 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/handleerrors.go +64 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/json.go +41 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/middleware.go +30 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/networkerror.go +37 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +88 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/returnonce.go +25 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/ringbuffer.go +139 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncmap.go +94 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncset.go +136 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/callermarshal.go +28 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/defaults.go +32 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/generics.go +45 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/writer.go +81 -0
- slidge_whatsapp/vendor/go.mau.fi/util/fallocate/doc.go +9 -0
- slidge_whatsapp/vendor/go.mau.fi/util/fallocate/fallocate_darwin.go +29 -0
- slidge_whatsapp/vendor/go.mau.fi/util/fallocate/fallocate_linux.go +24 -0
- slidge_whatsapp/vendor/go.mau.fi/util/fallocate/fallocate_unknown.go +17 -0
- slidge_whatsapp/vendor/go.mau.fi/util/jsontime/duration.go +155 -0
- slidge_whatsapp/vendor/go.mau.fi/util/jsontime/helpers.go +59 -0
- slidge_whatsapp/vendor/go.mau.fi/util/jsontime/integer.go +170 -0
- slidge_whatsapp/vendor/go.mau.fi/util/jsontime/string.go +95 -0
- slidge_whatsapp/vendor/go.mau.fi/util/ptr/ptr.go +43 -0
- slidge_whatsapp/vendor/go.mau.fi/util/random/bytes.go +21 -0
- slidge_whatsapp/vendor/go.mau.fi/util/random/string.go +87 -0
- slidge_whatsapp/vendor/go.mau.fi/util/retryafter/retryafter.go +53 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.editorconfig +13 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.gitattributes +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.pre-commit-config.yaml +31 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/LICENSE +374 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/README.md +35 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +312 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +323 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/errors.go +19 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +97 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/keys.go +138 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/lthash/lthash.go +58 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +409 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +100 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/attrs.go +218 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/decoder.go +406 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/encoder.go +308 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/errors.go +12 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/node.go +139 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/token/token.go +94 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/unpack.go +31 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/xml.go +108 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/broadcast.go +143 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +112 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +896 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +212 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +227 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +394 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +261 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +960 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/handshake.go +165 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +680 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +84 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaconn.go +98 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaretry.go +185 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +842 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +374 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +376 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +452 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +245 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +272 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +255 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +139 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/privacysettings.go +170 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/.gitignore +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/armadilloutil/decode.go +32 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/extra.go +36 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.go +515 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.proto +43 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.go +2982 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.proto +258 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/extra.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +1017 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +140 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.go +412 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.proto +34 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.go +138 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.proto +10 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.go +769 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.proto +67 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/legacy.go +11 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.pb.go +978 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.proto +100 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.go +2817 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.proto +233 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/extra.go +82 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +247 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +18 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +26597 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +2550 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/legacy.go +31 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +2368 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +231 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/legacy.go +11 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.go +2130 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.proto +191 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.go +272 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.proto +21 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.go +1156 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.proto +96 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/extra.go +41 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.go +859 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.proto +75 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/extra.go +19 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.go +732 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.proto +57 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/extra.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.go +857 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.proto +72 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/legacy.go +31 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +5344 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +493 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.go +428 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.proto +33 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.go +852 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.proto +72 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +2325 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +253 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +4441 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +579 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/legacy.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/push.go +110 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/qrchan.go +180 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +248 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/request.go +225 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +450 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +1299 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +657 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/constants.go +43 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/framesocket.go +235 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/noisehandshake.go +124 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/noisesocket.go +108 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +187 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +256 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/signal.go +182 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +288 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/lidmap.go +186 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +897 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +153 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/03-message-secrets.sql +11 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/04-privacy-tokens.sql +8 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/05-account-jid-format.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/06-facebook-uuid.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/07-account-lid.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/08-lid-mapping.sql +5 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/09-decryption-buffer.sql +10 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/upgrades.go +22 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +243 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/botmap.go +210 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +21 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/appstate.go +185 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/call.go +77 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +608 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/group.go +164 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +262 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +115 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/newsletter.go +201 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/presence.go +78 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +195 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/update.go +64 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/upload.go +251 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +880 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/cbcutil/cbc.go +217 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/gcmutil/gcm.go +41 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/hkdfutil/hkdf.go +28 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/keys/keypair.go +68 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/log/log.go +83 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/log/zerolog.go +38 -0
- slidge_whatsapp/vendor/golang.org/x/crypto/LICENSE +27 -0
- slidge_whatsapp/vendor/golang.org/x/crypto/PATENTS +22 -0
- slidge_whatsapp/vendor/golang.org/x/crypto/curve25519/curve25519.go +90 -0
- slidge_whatsapp/vendor/golang.org/x/crypto/hkdf/hkdf.go +95 -0
- slidge_whatsapp/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go +77 -0
- slidge_whatsapp/vendor/golang.org/x/exp/LICENSE +27 -0
- slidge_whatsapp/vendor/golang.org/x/exp/PATENTS +22 -0
- slidge_whatsapp/vendor/golang.org/x/exp/constraints/constraints.go +54 -0
- slidge_whatsapp/vendor/golang.org/x/image/LICENSE +27 -0
- slidge_whatsapp/vendor/golang.org/x/image/PATENTS +22 -0
- slidge_whatsapp/vendor/golang.org/x/image/draw/draw.go +67 -0
- slidge_whatsapp/vendor/golang.org/x/image/draw/impl.go +8426 -0
- slidge_whatsapp/vendor/golang.org/x/image/draw/scale.go +525 -0
- slidge_whatsapp/vendor/golang.org/x/image/math/f64/f64.go +37 -0
- slidge_whatsapp/vendor/golang.org/x/image/riff/riff.go +193 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/decode.go +403 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/filter.go +273 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/idct.go +98 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/partition.go +129 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/pred.go +201 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/predfunc.go +553 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/quant.go +98 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/reconstruct.go +442 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8/token.go +381 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8l/decode.go +603 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8l/huffman.go +245 -0
- slidge_whatsapp/vendor/golang.org/x/image/vp8l/transform.go +299 -0
- slidge_whatsapp/vendor/golang.org/x/image/webp/decode.go +276 -0
- slidge_whatsapp/vendor/golang.org/x/image/webp/doc.go +9 -0
- slidge_whatsapp/vendor/golang.org/x/net/LICENSE +27 -0
- slidge_whatsapp/vendor/golang.org/x/net/PATENTS +22 -0
- slidge_whatsapp/vendor/golang.org/x/net/http/httpguts/guts.go +50 -0
- slidge_whatsapp/vendor/golang.org/x/net/http/httpguts/httplex.go +347 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/.gitignore +2 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/ascii.go +53 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/ciphers.go +641 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/client_conn_pool.go +311 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/config.go +122 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_go124.go +61 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_pre_go124.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/databuffer.go +149 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/errors.go +145 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/flow.go +120 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +1702 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/gotrack.go +170 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/encode.go +245 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/hpack.go +523 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/huffman.go +226 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/static_table.go +188 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/tables.go +403 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +432 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/pipe.go +184 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +3350 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/timer.go +20 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +3287 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/unencrypted.go +32 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/write.go +381 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched.go +251 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_priority.go +451 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_random.go +77 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_roundrobin.go +119 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/go118.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/idna10.0.0.go +769 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/idna9.0.0.go +717 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/pre_go118.go +11 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/punycode.go +217 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables10.0.0.go +4559 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables11.0.0.go +4653 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables12.0.0.go +4733 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables13.0.0.go +4959 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables15.0.0.go +5144 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables9.0.0.go +4486 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/trie.go +51 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/trie12.0.0.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/trie13.0.0.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/trieval.go +119 -0
- slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/ascii.go +53 -0
- slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/headermap.go +115 -0
- slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/request.go +467 -0
- slidge_whatsapp/vendor/golang.org/x/net/internal/socks/client.go +168 -0
- slidge_whatsapp/vendor/golang.org/x/net/internal/socks/socks.go +317 -0
- slidge_whatsapp/vendor/golang.org/x/net/proxy/dial.go +54 -0
- slidge_whatsapp/vendor/golang.org/x/net/proxy/direct.go +31 -0
- slidge_whatsapp/vendor/golang.org/x/net/proxy/per_host.go +153 -0
- slidge_whatsapp/vendor/golang.org/x/net/proxy/proxy.go +149 -0
- slidge_whatsapp/vendor/golang.org/x/net/proxy/socks5.go +42 -0
- slidge_whatsapp/vendor/golang.org/x/sys/LICENSE +27 -0
- slidge_whatsapp/vendor/golang.org/x/sys/PATENTS +22 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/.gitignore +2 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/README.md +184 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/affinity_linux.go +86 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/aliases.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s +17 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_386.s +27 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s +27 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_arm.s +27 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s +27 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s +29 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s +27 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_386.s +65 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_amd64.s +57 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_arm.s +56 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_arm64.s +50 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_loong64.s +51 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s +54 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s +52 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s +42 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s +47 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_s390x.s +54 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s +29 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s +17 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_zos_s390x.s +382 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/auxv.go +36 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/auxv_unsupported.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/bluetooth_linux.go +36 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/bpxsvc_zos.go +657 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/bpxsvc_zos.s +192 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/cap_freebsd.go +195 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/constants.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_aix_ppc.go +26 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go +28 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_darwin.go +24 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_dragonfly.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_freebsd.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_linux.go +42 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_netbsd.go +29 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_openbsd.go +29 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_zos.go +28 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/dirent.go +102 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/endian_big.go +9 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/endian_little.go +9 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/env_unix.go +31 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/fcntl.go +36 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/fcntl_darwin.go +24 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/fdset.go +29 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/gccgo.go +59 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/gccgo_c.c +44 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go +20 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ifreq_linux.go +141 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_linux.go +334 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_signed.go +69 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_unsigned.go +69 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_zos.go +71 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mkall.sh +249 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mkerrors.sh +805 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mmap_nomremap.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mremap.go +57 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/pagesize_unix.go +15 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/pledge_openbsd.go +111 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ptrace_darwin.go +11 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ptrace_ios.go +11 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/race.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/race0.go +25 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/readdirent_getdents.go +12 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/readdirent_getdirentries.go +19 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_linux.go +85 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_unix.go +106 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go +46 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_zos.go +58 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/symaddr_zos_s390x.s +75 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall.go +86 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_aix.go +582 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go +52 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go +83 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_bsd.go +609 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +854 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go +50 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go +50 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go +26 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_dragonfly.go +359 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go +56 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd.go +455 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go +64 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go +64 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go +60 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go +60 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go +60 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_hurd.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_hurd_386.go +28 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_illumos.go +78 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +2647 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_386.go +314 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_alarm.go +12 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go +145 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go +12 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_arm.go +216 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go +186 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gc.go +14 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go +20 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go +218 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go +188 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go +174 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go +204 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go +115 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go +191 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go +296 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go +112 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd.go +371 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go +37 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go +37 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go +37 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go +37 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd.go +342 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go +41 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go +41 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go +41 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go +41 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_libc.go +26 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go +39 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_ppc64.go +41 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_riscv64.go +41 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris.go +1191 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go +27 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_unix.go +615 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_unix_gc.go +14 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go +22 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go +3213 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/sysvshm_linux.go +20 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/sysvshm_unix.go +51 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/sysvshm_unix_other.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/timestruct.go +76 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/unveil_openbsd.go +51 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/vgetrandom_linux.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/vgetrandom_unsupported.go +11 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/xattr_bsd.go +280 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go +1384 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go +1385 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go +1922 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go +1922 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go +1737 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go +2042 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go +2039 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go +2033 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go +2033 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go +2147 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux.go +3752 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +873 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +873 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +878 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +875 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +865 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +879 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +879 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +879 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +879 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +931 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +935 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +935 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +862 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +934 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +977 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go +1779 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go +1769 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go +1758 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go +1769 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go +1905 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go +1905 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go +1905 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go +1905 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go +1905 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_ppc64.go +1904 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go +1903 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go +1556 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go +990 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go +40 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go +17 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go +49 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go +49 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go +79 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsymaddr_zos_s390x.s +364 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go +1461 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go +1420 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go +1188 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go +1069 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go +2728 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s +799 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go +2728 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s +799 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go +1666 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go +1886 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go +1886 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go +1886 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go +1886 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_riscv64.go +1886 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go +101 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux.go +2240 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go +486 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go +653 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go +601 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go +552 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go +486 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go +653 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go +647 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go +636 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go +653 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go +658 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go +704 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go +704 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go +548 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go +495 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go +648 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go +1848 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go +1848 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go +1848 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go +1848 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go +2323 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s +699 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go +2323 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s +699 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go +2323 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s +699 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go +2323 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s +699 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go +2323 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.s +699 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go +2323 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s +838 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go +2323 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s +699 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go +2217 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go +3458 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go +280 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go +280 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go +280 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go +280 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go +280 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_ppc64.go +280 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_riscv64.go +281 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go +439 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go +437 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go +316 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go +393 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go +393 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go +393 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go +393 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go +393 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go +465 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +388 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go +429 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +332 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +328 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go +449 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go +379 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go +379 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go +449 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go +456 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go +428 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go +428 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +333 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go +394 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go +407 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go +274 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go +274 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go +274 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go +274 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go +219 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go +219 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go +219 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go +218 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go +221 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go +217 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_riscv64.go +218 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go +2852 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go +353 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go +357 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go +878 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go +878 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go +473 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go +651 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go +656 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go +642 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go +636 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go +638 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux.go +6178 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_386.go +689 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go +703 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go +683 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go +682 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go +683 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go +688 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go +685 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go +685 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go +688 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go +696 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go +691 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go +691 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go +770 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go +705 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go +686 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go +585 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go +593 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go +590 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go +593 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go +568 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go +568 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go +575 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go +568 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go +568 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.go +570 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go +570 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go +516 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go +552 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/aliases.go +12 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/dll_windows.go +415 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/env_windows.go +57 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/eventlog.go +20 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/exec_windows.go +248 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/memory_windows.go +48 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/mkerrors.bash +70 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/mkknownfolderids.bash +27 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/mksyscall.go +9 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/race.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/race0.go +25 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/security_windows.go +1497 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/service.go +257 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/setupapi_windows.go +1425 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/str.go +22 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall.go +104 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +1934 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +3842 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_386.go +35 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_amd64.go +34 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_arm.go +35 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_arm64.go +34 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zerrors_windows.go +9468 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zknownfolderids_windows.go +149 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +4695 -0
- slidge_whatsapp/vendor/golang.org/x/text/LICENSE +27 -0
- slidge_whatsapp/vendor/golang.org/x/text/PATENTS +22 -0
- slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule.go +336 -0
- slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go +11 -0
- slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go +14 -0
- slidge_whatsapp/vendor/golang.org/x/text/transform/transform.go +709 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bidi.go +359 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bracket.go +335 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/core.go +1071 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/prop.go +206 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go +1815 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go +1887 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go +1923 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go +1955 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables15.0.0.go +2042 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go +1781 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/trieval.go +48 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/composition.go +512 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/forminfo.go +279 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/input.go +109 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/iter.go +458 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/normalize.go +610 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/readwriter.go +125 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables10.0.0.go +7657 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go +7693 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go +7710 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables13.0.0.go +7760 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables15.0.0.go +7907 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go +7637 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/transform.go +88 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/trie.go +54 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/LICENSE +27 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/PATENTS +22 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/prototext/decode.go +767 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/prototext/doc.go +7 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/prototext/encode.go +380 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/protowire/wire.go +547 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/descfmt/stringer.go +414 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/descopts/options.go +29 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/detrand/rand.go +69 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/defaults.go +12 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/defval/default.go +213 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go +242 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go +201 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode.go +686 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go +211 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode_string.go +161 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode_token.go +373 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/doc.go +29 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/encode.go +272 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/errors/errors.go +104 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/build.go +157 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc.go +748 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go +560 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go +694 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go +457 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_list_gen.go +367 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +167 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go +110 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filetype/build.go +296 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/flags/flags.go +24 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go +10 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go +10 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/any_gen.go +34 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/api_gen.go +106 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +1286 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/doc.go +11 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/duration_gen.go +34 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/empty_gen.go +19 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/field_mask_gen.go +31 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/go_features_gen.go +70 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/goname.go +20 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/map_entry.go +16 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/name.go +12 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/source_context_gen.go +31 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/struct_gen.go +121 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/timestamp_gen.go +34 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/type_gen.go +228 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/wrappers.go +13 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/wrappers_gen.go +175 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/api_export.go +177 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/api_export_opaque.go +128 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/bitmap.go +34 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/bitmap_race.go +126 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/checkinit.go +174 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_extension.go +228 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_field.go +788 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_field_opaque.go +264 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_gen.go +5724 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_map.go +399 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message.go +230 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message_opaque.go +153 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_messageset.go +145 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_tables.go +557 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_unsafe.go +15 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/convert.go +495 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/convert_list.go +141 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/convert_map.go +121 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/decode.go +333 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/encode.go +315 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/enum.go +21 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/equal.go +224 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/extension.go +156 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/lazy.go +433 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go +219 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_export.go +92 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go +177 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_file.go +81 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_message.go +569 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/merge.go +203 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/merge_gen.go +209 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message.go +283 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque.go +627 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque_gen.go +132 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect.go +462 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go +423 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field_gen.go +273 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect_gen.go +271 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe.go +220 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe_opaque.go +42 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/presence.go +142 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/validate.go +570 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/order/order.go +89 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/order/range.go +115 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/pragma/pragma.go +29 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/protolazy/bufferreader.go +364 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/protolazy/lazy.go +359 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/protolazy/pointer_unsafe.go +17 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/set/ints.go +58 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings.go +196 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe.go +71 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +79 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/checkinit.go +71 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/decode.go +307 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/decode_gen.go +603 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/doc.go +86 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/encode.go +355 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/encode_gen.go +97 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/equal.go +66 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/extension.go +166 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/merge.go +145 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/messageset.go +98 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/proto.go +45 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/proto_methods.go +20 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/proto_reflect.go +20 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/reset.go +43 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/size.go +111 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/size_gen.go +55 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/wrapperopaque.go +80 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/wrappers.go +29 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/methods.go +88 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go +513 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source.go +129 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go +575 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/type.go +666 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value.go +285 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_equal.go +168 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go +438 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe.go +84 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go +882 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go +15 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoiface/methods.go +202 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go +48 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoimpl/version.go +60 -0
- slidge_whatsapp/vendor/modules.txt +198 -0
- slidge_whatsapp-0.2.6.dist-info/METADATA +63 -0
- slidge_whatsapp-0.2.6.dist-info/RECORD +1253 -0
- {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.6.dist-info}/WHEEL +1 -1
- slidge_whatsapp-0.2.2.dist-info/METADATA +0 -744
- slidge_whatsapp-0.2.2.dist-info/RECORD +0 -31
- {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.6.dist-info}/LICENSE +0 -0
- {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.6.dist-info}/entry_points.txt +0 -0
slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.go
ADDED
|
@@ -0,0 +1,2982 @@
|
|
|
1
|
+
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
2
|
+
// versions:
|
|
3
|
+
// protoc-gen-go v1.36.6
|
|
4
|
+
// protoc v3.21.12
|
|
5
|
+
// source: waArmadilloApplication/WAArmadilloApplication.proto
|
|
6
|
+
|
|
7
|
+
package waArmadilloApplication
|
|
8
|
+
|
|
9
|
+
import (
|
|
10
|
+
reflect "reflect"
|
|
11
|
+
sync "sync"
|
|
12
|
+
unsafe "unsafe"
|
|
13
|
+
|
|
14
|
+
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
15
|
+
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
16
|
+
|
|
17
|
+
waArmadilloXMA "go.mau.fi/whatsmeow/proto/waArmadilloXMA"
|
|
18
|
+
waCommon "go.mau.fi/whatsmeow/proto/waCommon"
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
const (
|
|
22
|
+
// Verify that this generated code is sufficiently up-to-date.
|
|
23
|
+
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
24
|
+
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
25
|
+
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
26
|
+
)
|
|
27
|
+
|
|
28
|
+
type Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus int32
|
|
29
|
+
|
|
30
|
+
const (
|
|
31
|
+
Armadillo_Signal_EncryptedBackupsSecrets_Epoch_ES_OPEN Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus = 1
|
|
32
|
+
Armadillo_Signal_EncryptedBackupsSecrets_Epoch_ES_CLOSE Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus = 2
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
// Enum value maps for Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus.
|
|
36
|
+
var (
|
|
37
|
+
Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus_name = map[int32]string{
|
|
38
|
+
1: "ES_OPEN",
|
|
39
|
+
2: "ES_CLOSE",
|
|
40
|
+
}
|
|
41
|
+
Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus_value = map[string]int32{
|
|
42
|
+
"ES_OPEN": 1,
|
|
43
|
+
"ES_CLOSE": 2,
|
|
44
|
+
}
|
|
45
|
+
)
|
|
46
|
+
|
|
47
|
+
func (x Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) Enum() *Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus {
|
|
48
|
+
p := new(Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus)
|
|
49
|
+
*p = x
|
|
50
|
+
return p
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
func (x Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) String() string {
|
|
54
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
func (Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) Descriptor() protoreflect.EnumDescriptor {
|
|
58
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[0].Descriptor()
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
func (Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) Type() protoreflect.EnumType {
|
|
62
|
+
return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[0]
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
func (x Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) Number() protoreflect.EnumNumber {
|
|
66
|
+
return protoreflect.EnumNumber(x)
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// Deprecated: Do not use.
|
|
70
|
+
func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) UnmarshalJSON(b []byte) error {
|
|
71
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
72
|
+
if err != nil {
|
|
73
|
+
return err
|
|
74
|
+
}
|
|
75
|
+
*x = Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus(num)
|
|
76
|
+
return nil
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
// Deprecated: Use Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus.Descriptor instead.
|
|
80
|
+
func (Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) EnumDescriptor() ([]byte, []int) {
|
|
81
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 3, 0, 0, 0}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
type Armadillo_Content_PaymentsTransactionMessage_PaymentStatus int32
|
|
85
|
+
|
|
86
|
+
const (
|
|
87
|
+
Armadillo_Content_PaymentsTransactionMessage_PAYMENT_UNKNOWN Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 0
|
|
88
|
+
Armadillo_Content_PaymentsTransactionMessage_REQUEST_INITED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 4
|
|
89
|
+
Armadillo_Content_PaymentsTransactionMessage_REQUEST_DECLINED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 5
|
|
90
|
+
Armadillo_Content_PaymentsTransactionMessage_REQUEST_TRANSFER_INITED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 6
|
|
91
|
+
Armadillo_Content_PaymentsTransactionMessage_REQUEST_TRANSFER_COMPLETED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 7
|
|
92
|
+
Armadillo_Content_PaymentsTransactionMessage_REQUEST_TRANSFER_FAILED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 8
|
|
93
|
+
Armadillo_Content_PaymentsTransactionMessage_REQUEST_CANCELED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 9
|
|
94
|
+
Armadillo_Content_PaymentsTransactionMessage_REQUEST_EXPIRED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 10
|
|
95
|
+
Armadillo_Content_PaymentsTransactionMessage_TRANSFER_INITED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 11
|
|
96
|
+
Armadillo_Content_PaymentsTransactionMessage_TRANSFER_PENDING Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 12
|
|
97
|
+
Armadillo_Content_PaymentsTransactionMessage_TRANSFER_PENDING_RECIPIENT_VERIFICATION Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 13
|
|
98
|
+
Armadillo_Content_PaymentsTransactionMessage_TRANSFER_CANCELED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 14
|
|
99
|
+
Armadillo_Content_PaymentsTransactionMessage_TRANSFER_COMPLETED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 15
|
|
100
|
+
Armadillo_Content_PaymentsTransactionMessage_TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_CANCELED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 16
|
|
101
|
+
Armadillo_Content_PaymentsTransactionMessage_TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_OTHER Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 17
|
|
102
|
+
Armadillo_Content_PaymentsTransactionMessage_TRANSFER_REFUNDED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 18
|
|
103
|
+
Armadillo_Content_PaymentsTransactionMessage_TRANSFER_PARTIAL_REFUND Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 19
|
|
104
|
+
Armadillo_Content_PaymentsTransactionMessage_TRANSFER_CHARGED_BACK Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 20
|
|
105
|
+
Armadillo_Content_PaymentsTransactionMessage_TRANSFER_EXPIRED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 21
|
|
106
|
+
Armadillo_Content_PaymentsTransactionMessage_TRANSFER_DECLINED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 22
|
|
107
|
+
Armadillo_Content_PaymentsTransactionMessage_TRANSFER_UNAVAILABLE Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 23
|
|
108
|
+
)
|
|
109
|
+
|
|
110
|
+
// Enum value maps for Armadillo_Content_PaymentsTransactionMessage_PaymentStatus.
|
|
111
|
+
var (
|
|
112
|
+
Armadillo_Content_PaymentsTransactionMessage_PaymentStatus_name = map[int32]string{
|
|
113
|
+
0: "PAYMENT_UNKNOWN",
|
|
114
|
+
4: "REQUEST_INITED",
|
|
115
|
+
5: "REQUEST_DECLINED",
|
|
116
|
+
6: "REQUEST_TRANSFER_INITED",
|
|
117
|
+
7: "REQUEST_TRANSFER_COMPLETED",
|
|
118
|
+
8: "REQUEST_TRANSFER_FAILED",
|
|
119
|
+
9: "REQUEST_CANCELED",
|
|
120
|
+
10: "REQUEST_EXPIRED",
|
|
121
|
+
11: "TRANSFER_INITED",
|
|
122
|
+
12: "TRANSFER_PENDING",
|
|
123
|
+
13: "TRANSFER_PENDING_RECIPIENT_VERIFICATION",
|
|
124
|
+
14: "TRANSFER_CANCELED",
|
|
125
|
+
15: "TRANSFER_COMPLETED",
|
|
126
|
+
16: "TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_CANCELED",
|
|
127
|
+
17: "TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_OTHER",
|
|
128
|
+
18: "TRANSFER_REFUNDED",
|
|
129
|
+
19: "TRANSFER_PARTIAL_REFUND",
|
|
130
|
+
20: "TRANSFER_CHARGED_BACK",
|
|
131
|
+
21: "TRANSFER_EXPIRED",
|
|
132
|
+
22: "TRANSFER_DECLINED",
|
|
133
|
+
23: "TRANSFER_UNAVAILABLE",
|
|
134
|
+
}
|
|
135
|
+
Armadillo_Content_PaymentsTransactionMessage_PaymentStatus_value = map[string]int32{
|
|
136
|
+
"PAYMENT_UNKNOWN": 0,
|
|
137
|
+
"REQUEST_INITED": 4,
|
|
138
|
+
"REQUEST_DECLINED": 5,
|
|
139
|
+
"REQUEST_TRANSFER_INITED": 6,
|
|
140
|
+
"REQUEST_TRANSFER_COMPLETED": 7,
|
|
141
|
+
"REQUEST_TRANSFER_FAILED": 8,
|
|
142
|
+
"REQUEST_CANCELED": 9,
|
|
143
|
+
"REQUEST_EXPIRED": 10,
|
|
144
|
+
"TRANSFER_INITED": 11,
|
|
145
|
+
"TRANSFER_PENDING": 12,
|
|
146
|
+
"TRANSFER_PENDING_RECIPIENT_VERIFICATION": 13,
|
|
147
|
+
"TRANSFER_CANCELED": 14,
|
|
148
|
+
"TRANSFER_COMPLETED": 15,
|
|
149
|
+
"TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_CANCELED": 16,
|
|
150
|
+
"TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_OTHER": 17,
|
|
151
|
+
"TRANSFER_REFUNDED": 18,
|
|
152
|
+
"TRANSFER_PARTIAL_REFUND": 19,
|
|
153
|
+
"TRANSFER_CHARGED_BACK": 20,
|
|
154
|
+
"TRANSFER_EXPIRED": 21,
|
|
155
|
+
"TRANSFER_DECLINED": 22,
|
|
156
|
+
"TRANSFER_UNAVAILABLE": 23,
|
|
157
|
+
}
|
|
158
|
+
)
|
|
159
|
+
|
|
160
|
+
func (x Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) Enum() *Armadillo_Content_PaymentsTransactionMessage_PaymentStatus {
|
|
161
|
+
p := new(Armadillo_Content_PaymentsTransactionMessage_PaymentStatus)
|
|
162
|
+
*p = x
|
|
163
|
+
return p
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
func (x Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) String() string {
|
|
167
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
func (Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) Descriptor() protoreflect.EnumDescriptor {
|
|
171
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[1].Descriptor()
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
func (Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) Type() protoreflect.EnumType {
|
|
175
|
+
return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[1]
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
func (x Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) Number() protoreflect.EnumNumber {
|
|
179
|
+
return protoreflect.EnumNumber(x)
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
// Deprecated: Do not use.
|
|
183
|
+
func (x *Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) UnmarshalJSON(b []byte) error {
|
|
184
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
185
|
+
if err != nil {
|
|
186
|
+
return err
|
|
187
|
+
}
|
|
188
|
+
*x = Armadillo_Content_PaymentsTransactionMessage_PaymentStatus(num)
|
|
189
|
+
return nil
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
// Deprecated: Use Armadillo_Content_PaymentsTransactionMessage_PaymentStatus.Descriptor instead.
|
|
193
|
+
func (Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) EnumDescriptor() ([]byte, []int) {
|
|
194
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 0, 0}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
type Armadillo_Content_ScreenshotAction_ScreenshotType int32
|
|
198
|
+
|
|
199
|
+
const (
|
|
200
|
+
Armadillo_Content_ScreenshotAction_SCREENSHOT_IMAGE Armadillo_Content_ScreenshotAction_ScreenshotType = 1
|
|
201
|
+
Armadillo_Content_ScreenshotAction_SCREEN_RECORDING Armadillo_Content_ScreenshotAction_ScreenshotType = 2
|
|
202
|
+
)
|
|
203
|
+
|
|
204
|
+
// Enum value maps for Armadillo_Content_ScreenshotAction_ScreenshotType.
|
|
205
|
+
var (
|
|
206
|
+
Armadillo_Content_ScreenshotAction_ScreenshotType_name = map[int32]string{
|
|
207
|
+
1: "SCREENSHOT_IMAGE",
|
|
208
|
+
2: "SCREEN_RECORDING",
|
|
209
|
+
}
|
|
210
|
+
Armadillo_Content_ScreenshotAction_ScreenshotType_value = map[string]int32{
|
|
211
|
+
"SCREENSHOT_IMAGE": 1,
|
|
212
|
+
"SCREEN_RECORDING": 2,
|
|
213
|
+
}
|
|
214
|
+
)
|
|
215
|
+
|
|
216
|
+
func (x Armadillo_Content_ScreenshotAction_ScreenshotType) Enum() *Armadillo_Content_ScreenshotAction_ScreenshotType {
|
|
217
|
+
p := new(Armadillo_Content_ScreenshotAction_ScreenshotType)
|
|
218
|
+
*p = x
|
|
219
|
+
return p
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
func (x Armadillo_Content_ScreenshotAction_ScreenshotType) String() string {
|
|
223
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
func (Armadillo_Content_ScreenshotAction_ScreenshotType) Descriptor() protoreflect.EnumDescriptor {
|
|
227
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[2].Descriptor()
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
func (Armadillo_Content_ScreenshotAction_ScreenshotType) Type() protoreflect.EnumType {
|
|
231
|
+
return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[2]
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
func (x Armadillo_Content_ScreenshotAction_ScreenshotType) Number() protoreflect.EnumNumber {
|
|
235
|
+
return protoreflect.EnumNumber(x)
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
// Deprecated: Do not use.
|
|
239
|
+
func (x *Armadillo_Content_ScreenshotAction_ScreenshotType) UnmarshalJSON(b []byte) error {
|
|
240
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
241
|
+
if err != nil {
|
|
242
|
+
return err
|
|
243
|
+
}
|
|
244
|
+
*x = Armadillo_Content_ScreenshotAction_ScreenshotType(num)
|
|
245
|
+
return nil
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
// Deprecated: Use Armadillo_Content_ScreenshotAction_ScreenshotType.Descriptor instead.
|
|
249
|
+
func (Armadillo_Content_ScreenshotAction_ScreenshotType) EnumDescriptor() ([]byte, []int) {
|
|
250
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 5, 0}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
type Armadillo_Content_RavenActionNotifMessage_ActionType int32
|
|
254
|
+
|
|
255
|
+
const (
|
|
256
|
+
Armadillo_Content_RavenActionNotifMessage_PLAYED Armadillo_Content_RavenActionNotifMessage_ActionType = 0
|
|
257
|
+
Armadillo_Content_RavenActionNotifMessage_SCREENSHOT Armadillo_Content_RavenActionNotifMessage_ActionType = 1
|
|
258
|
+
Armadillo_Content_RavenActionNotifMessage_FORCE_DISABLE Armadillo_Content_RavenActionNotifMessage_ActionType = 2
|
|
259
|
+
)
|
|
260
|
+
|
|
261
|
+
// Enum value maps for Armadillo_Content_RavenActionNotifMessage_ActionType.
|
|
262
|
+
var (
|
|
263
|
+
Armadillo_Content_RavenActionNotifMessage_ActionType_name = map[int32]string{
|
|
264
|
+
0: "PLAYED",
|
|
265
|
+
1: "SCREENSHOT",
|
|
266
|
+
2: "FORCE_DISABLE",
|
|
267
|
+
}
|
|
268
|
+
Armadillo_Content_RavenActionNotifMessage_ActionType_value = map[string]int32{
|
|
269
|
+
"PLAYED": 0,
|
|
270
|
+
"SCREENSHOT": 1,
|
|
271
|
+
"FORCE_DISABLE": 2,
|
|
272
|
+
}
|
|
273
|
+
)
|
|
274
|
+
|
|
275
|
+
func (x Armadillo_Content_RavenActionNotifMessage_ActionType) Enum() *Armadillo_Content_RavenActionNotifMessage_ActionType {
|
|
276
|
+
p := new(Armadillo_Content_RavenActionNotifMessage_ActionType)
|
|
277
|
+
*p = x
|
|
278
|
+
return p
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
func (x Armadillo_Content_RavenActionNotifMessage_ActionType) String() string {
|
|
282
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
func (Armadillo_Content_RavenActionNotifMessage_ActionType) Descriptor() protoreflect.EnumDescriptor {
|
|
286
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[3].Descriptor()
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
func (Armadillo_Content_RavenActionNotifMessage_ActionType) Type() protoreflect.EnumType {
|
|
290
|
+
return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[3]
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
func (x Armadillo_Content_RavenActionNotifMessage_ActionType) Number() protoreflect.EnumNumber {
|
|
294
|
+
return protoreflect.EnumNumber(x)
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
// Deprecated: Do not use.
|
|
298
|
+
func (x *Armadillo_Content_RavenActionNotifMessage_ActionType) UnmarshalJSON(b []byte) error {
|
|
299
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
300
|
+
if err != nil {
|
|
301
|
+
return err
|
|
302
|
+
}
|
|
303
|
+
*x = Armadillo_Content_RavenActionNotifMessage_ActionType(num)
|
|
304
|
+
return nil
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
// Deprecated: Use Armadillo_Content_RavenActionNotifMessage_ActionType.Descriptor instead.
|
|
308
|
+
func (Armadillo_Content_RavenActionNotifMessage_ActionType) EnumDescriptor() ([]byte, []int) {
|
|
309
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 7, 0}
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
type Armadillo_Content_RavenMessage_EphemeralType int32
|
|
313
|
+
|
|
314
|
+
const (
|
|
315
|
+
Armadillo_Content_RavenMessage_VIEW_ONCE Armadillo_Content_RavenMessage_EphemeralType = 0
|
|
316
|
+
Armadillo_Content_RavenMessage_ALLOW_REPLAY Armadillo_Content_RavenMessage_EphemeralType = 1
|
|
317
|
+
Armadillo_Content_RavenMessage_KEEP_IN_CHAT Armadillo_Content_RavenMessage_EphemeralType = 2
|
|
318
|
+
)
|
|
319
|
+
|
|
320
|
+
// Enum value maps for Armadillo_Content_RavenMessage_EphemeralType.
|
|
321
|
+
var (
|
|
322
|
+
Armadillo_Content_RavenMessage_EphemeralType_name = map[int32]string{
|
|
323
|
+
0: "VIEW_ONCE",
|
|
324
|
+
1: "ALLOW_REPLAY",
|
|
325
|
+
2: "KEEP_IN_CHAT",
|
|
326
|
+
}
|
|
327
|
+
Armadillo_Content_RavenMessage_EphemeralType_value = map[string]int32{
|
|
328
|
+
"VIEW_ONCE": 0,
|
|
329
|
+
"ALLOW_REPLAY": 1,
|
|
330
|
+
"KEEP_IN_CHAT": 2,
|
|
331
|
+
}
|
|
332
|
+
)
|
|
333
|
+
|
|
334
|
+
func (x Armadillo_Content_RavenMessage_EphemeralType) Enum() *Armadillo_Content_RavenMessage_EphemeralType {
|
|
335
|
+
p := new(Armadillo_Content_RavenMessage_EphemeralType)
|
|
336
|
+
*p = x
|
|
337
|
+
return p
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
func (x Armadillo_Content_RavenMessage_EphemeralType) String() string {
|
|
341
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
func (Armadillo_Content_RavenMessage_EphemeralType) Descriptor() protoreflect.EnumDescriptor {
|
|
345
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[4].Descriptor()
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
func (Armadillo_Content_RavenMessage_EphemeralType) Type() protoreflect.EnumType {
|
|
349
|
+
return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[4]
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
func (x Armadillo_Content_RavenMessage_EphemeralType) Number() protoreflect.EnumNumber {
|
|
353
|
+
return protoreflect.EnumNumber(x)
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
// Deprecated: Do not use.
|
|
357
|
+
func (x *Armadillo_Content_RavenMessage_EphemeralType) UnmarshalJSON(b []byte) error {
|
|
358
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
359
|
+
if err != nil {
|
|
360
|
+
return err
|
|
361
|
+
}
|
|
362
|
+
*x = Armadillo_Content_RavenMessage_EphemeralType(num)
|
|
363
|
+
return nil
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
// Deprecated: Use Armadillo_Content_RavenMessage_EphemeralType.Descriptor instead.
|
|
367
|
+
func (Armadillo_Content_RavenMessage_EphemeralType) EnumDescriptor() ([]byte, []int) {
|
|
368
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 8, 0}
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
type Armadillo_Content_CommonSticker_StickerType int32
|
|
372
|
+
|
|
373
|
+
const (
|
|
374
|
+
Armadillo_Content_CommonSticker_SMALL_LIKE Armadillo_Content_CommonSticker_StickerType = 1
|
|
375
|
+
Armadillo_Content_CommonSticker_MEDIUM_LIKE Armadillo_Content_CommonSticker_StickerType = 2
|
|
376
|
+
Armadillo_Content_CommonSticker_LARGE_LIKE Armadillo_Content_CommonSticker_StickerType = 3
|
|
377
|
+
)
|
|
378
|
+
|
|
379
|
+
// Enum value maps for Armadillo_Content_CommonSticker_StickerType.
|
|
380
|
+
var (
|
|
381
|
+
Armadillo_Content_CommonSticker_StickerType_name = map[int32]string{
|
|
382
|
+
1: "SMALL_LIKE",
|
|
383
|
+
2: "MEDIUM_LIKE",
|
|
384
|
+
3: "LARGE_LIKE",
|
|
385
|
+
}
|
|
386
|
+
Armadillo_Content_CommonSticker_StickerType_value = map[string]int32{
|
|
387
|
+
"SMALL_LIKE": 1,
|
|
388
|
+
"MEDIUM_LIKE": 2,
|
|
389
|
+
"LARGE_LIKE": 3,
|
|
390
|
+
}
|
|
391
|
+
)
|
|
392
|
+
|
|
393
|
+
func (x Armadillo_Content_CommonSticker_StickerType) Enum() *Armadillo_Content_CommonSticker_StickerType {
|
|
394
|
+
p := new(Armadillo_Content_CommonSticker_StickerType)
|
|
395
|
+
*p = x
|
|
396
|
+
return p
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
func (x Armadillo_Content_CommonSticker_StickerType) String() string {
|
|
400
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
func (Armadillo_Content_CommonSticker_StickerType) Descriptor() protoreflect.EnumDescriptor {
|
|
404
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[5].Descriptor()
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
func (Armadillo_Content_CommonSticker_StickerType) Type() protoreflect.EnumType {
|
|
408
|
+
return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[5]
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
func (x Armadillo_Content_CommonSticker_StickerType) Number() protoreflect.EnumNumber {
|
|
412
|
+
return protoreflect.EnumNumber(x)
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
// Deprecated: Do not use.
|
|
416
|
+
func (x *Armadillo_Content_CommonSticker_StickerType) UnmarshalJSON(b []byte) error {
|
|
417
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
418
|
+
if err != nil {
|
|
419
|
+
return err
|
|
420
|
+
}
|
|
421
|
+
*x = Armadillo_Content_CommonSticker_StickerType(num)
|
|
422
|
+
return nil
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
// Deprecated: Use Armadillo_Content_CommonSticker_StickerType.Descriptor instead.
|
|
426
|
+
func (Armadillo_Content_CommonSticker_StickerType) EnumDescriptor() ([]byte, []int) {
|
|
427
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 9, 0}
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
type Armadillo struct {
|
|
431
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
432
|
+
Payload *Armadillo_Payload `protobuf:"bytes,1,opt,name=payload" json:"payload,omitempty"`
|
|
433
|
+
Metadata *Armadillo_Metadata `protobuf:"bytes,2,opt,name=metadata" json:"metadata,omitempty"`
|
|
434
|
+
unknownFields protoimpl.UnknownFields
|
|
435
|
+
sizeCache protoimpl.SizeCache
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
func (x *Armadillo) Reset() {
|
|
439
|
+
*x = Armadillo{}
|
|
440
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[0]
|
|
441
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
442
|
+
ms.StoreMessageInfo(mi)
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
func (x *Armadillo) String() string {
|
|
446
|
+
return protoimpl.X.MessageStringOf(x)
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
func (*Armadillo) ProtoMessage() {}
|
|
450
|
+
|
|
451
|
+
func (x *Armadillo) ProtoReflect() protoreflect.Message {
|
|
452
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[0]
|
|
453
|
+
if x != nil {
|
|
454
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
455
|
+
if ms.LoadMessageInfo() == nil {
|
|
456
|
+
ms.StoreMessageInfo(mi)
|
|
457
|
+
}
|
|
458
|
+
return ms
|
|
459
|
+
}
|
|
460
|
+
return mi.MessageOf(x)
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
// Deprecated: Use Armadillo.ProtoReflect.Descriptor instead.
|
|
464
|
+
func (*Armadillo) Descriptor() ([]byte, []int) {
|
|
465
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0}
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
func (x *Armadillo) GetPayload() *Armadillo_Payload {
|
|
469
|
+
if x != nil {
|
|
470
|
+
return x.Payload
|
|
471
|
+
}
|
|
472
|
+
return nil
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
func (x *Armadillo) GetMetadata() *Armadillo_Metadata {
|
|
476
|
+
if x != nil {
|
|
477
|
+
return x.Metadata
|
|
478
|
+
}
|
|
479
|
+
return nil
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
type Armadillo_Metadata struct {
|
|
483
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
484
|
+
unknownFields protoimpl.UnknownFields
|
|
485
|
+
sizeCache protoimpl.SizeCache
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
func (x *Armadillo_Metadata) Reset() {
|
|
489
|
+
*x = Armadillo_Metadata{}
|
|
490
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[1]
|
|
491
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
492
|
+
ms.StoreMessageInfo(mi)
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
func (x *Armadillo_Metadata) String() string {
|
|
496
|
+
return protoimpl.X.MessageStringOf(x)
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
func (*Armadillo_Metadata) ProtoMessage() {}
|
|
500
|
+
|
|
501
|
+
func (x *Armadillo_Metadata) ProtoReflect() protoreflect.Message {
|
|
502
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[1]
|
|
503
|
+
if x != nil {
|
|
504
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
505
|
+
if ms.LoadMessageInfo() == nil {
|
|
506
|
+
ms.StoreMessageInfo(mi)
|
|
507
|
+
}
|
|
508
|
+
return ms
|
|
509
|
+
}
|
|
510
|
+
return mi.MessageOf(x)
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
// Deprecated: Use Armadillo_Metadata.ProtoReflect.Descriptor instead.
|
|
514
|
+
func (*Armadillo_Metadata) Descriptor() ([]byte, []int) {
|
|
515
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 0}
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
type Armadillo_Payload struct {
|
|
519
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
520
|
+
// Types that are valid to be assigned to Payload:
|
|
521
|
+
//
|
|
522
|
+
// *Armadillo_Payload_Content
|
|
523
|
+
// *Armadillo_Payload_ApplicationData
|
|
524
|
+
// *Armadillo_Payload_Signal
|
|
525
|
+
// *Armadillo_Payload_SubProtocol
|
|
526
|
+
Payload isArmadillo_Payload_Payload `protobuf_oneof:"payload"`
|
|
527
|
+
unknownFields protoimpl.UnknownFields
|
|
528
|
+
sizeCache protoimpl.SizeCache
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
func (x *Armadillo_Payload) Reset() {
|
|
532
|
+
*x = Armadillo_Payload{}
|
|
533
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[2]
|
|
534
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
535
|
+
ms.StoreMessageInfo(mi)
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
func (x *Armadillo_Payload) String() string {
|
|
539
|
+
return protoimpl.X.MessageStringOf(x)
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
func (*Armadillo_Payload) ProtoMessage() {}
|
|
543
|
+
|
|
544
|
+
func (x *Armadillo_Payload) ProtoReflect() protoreflect.Message {
|
|
545
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[2]
|
|
546
|
+
if x != nil {
|
|
547
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
548
|
+
if ms.LoadMessageInfo() == nil {
|
|
549
|
+
ms.StoreMessageInfo(mi)
|
|
550
|
+
}
|
|
551
|
+
return ms
|
|
552
|
+
}
|
|
553
|
+
return mi.MessageOf(x)
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
// Deprecated: Use Armadillo_Payload.ProtoReflect.Descriptor instead.
|
|
557
|
+
func (*Armadillo_Payload) Descriptor() ([]byte, []int) {
|
|
558
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 1}
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
func (x *Armadillo_Payload) GetPayload() isArmadillo_Payload_Payload {
|
|
562
|
+
if x != nil {
|
|
563
|
+
return x.Payload
|
|
564
|
+
}
|
|
565
|
+
return nil
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
func (x *Armadillo_Payload) GetContent() *Armadillo_Content {
|
|
569
|
+
if x != nil {
|
|
570
|
+
if x, ok := x.Payload.(*Armadillo_Payload_Content); ok {
|
|
571
|
+
return x.Content
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
return nil
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
func (x *Armadillo_Payload) GetApplicationData() *Armadillo_ApplicationData {
|
|
578
|
+
if x != nil {
|
|
579
|
+
if x, ok := x.Payload.(*Armadillo_Payload_ApplicationData); ok {
|
|
580
|
+
return x.ApplicationData
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
return nil
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
func (x *Armadillo_Payload) GetSignal() *Armadillo_Signal {
|
|
587
|
+
if x != nil {
|
|
588
|
+
if x, ok := x.Payload.(*Armadillo_Payload_Signal); ok {
|
|
589
|
+
return x.Signal
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
return nil
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
func (x *Armadillo_Payload) GetSubProtocol() *Armadillo_SubProtocolPayload {
|
|
596
|
+
if x != nil {
|
|
597
|
+
if x, ok := x.Payload.(*Armadillo_Payload_SubProtocol); ok {
|
|
598
|
+
return x.SubProtocol
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
|
+
return nil
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
type isArmadillo_Payload_Payload interface {
|
|
605
|
+
isArmadillo_Payload_Payload()
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
type Armadillo_Payload_Content struct {
|
|
609
|
+
Content *Armadillo_Content `protobuf:"bytes,1,opt,name=content,oneof"`
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
type Armadillo_Payload_ApplicationData struct {
|
|
613
|
+
ApplicationData *Armadillo_ApplicationData `protobuf:"bytes,2,opt,name=applicationData,oneof"`
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
type Armadillo_Payload_Signal struct {
|
|
617
|
+
Signal *Armadillo_Signal `protobuf:"bytes,3,opt,name=signal,oneof"`
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
type Armadillo_Payload_SubProtocol struct {
|
|
621
|
+
SubProtocol *Armadillo_SubProtocolPayload `protobuf:"bytes,4,opt,name=subProtocol,oneof"`
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
func (*Armadillo_Payload_Content) isArmadillo_Payload_Payload() {}
|
|
625
|
+
|
|
626
|
+
func (*Armadillo_Payload_ApplicationData) isArmadillo_Payload_Payload() {}
|
|
627
|
+
|
|
628
|
+
func (*Armadillo_Payload_Signal) isArmadillo_Payload_Payload() {}
|
|
629
|
+
|
|
630
|
+
func (*Armadillo_Payload_SubProtocol) isArmadillo_Payload_Payload() {}
|
|
631
|
+
|
|
632
|
+
type Armadillo_SubProtocolPayload struct {
|
|
633
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
634
|
+
FutureProof *waCommon.FutureProofBehavior `protobuf:"varint,1,opt,name=futureProof,enum=WACommon.FutureProofBehavior" json:"futureProof,omitempty"`
|
|
635
|
+
unknownFields protoimpl.UnknownFields
|
|
636
|
+
sizeCache protoimpl.SizeCache
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
func (x *Armadillo_SubProtocolPayload) Reset() {
|
|
640
|
+
*x = Armadillo_SubProtocolPayload{}
|
|
641
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[3]
|
|
642
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
643
|
+
ms.StoreMessageInfo(mi)
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
func (x *Armadillo_SubProtocolPayload) String() string {
|
|
647
|
+
return protoimpl.X.MessageStringOf(x)
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
func (*Armadillo_SubProtocolPayload) ProtoMessage() {}
|
|
651
|
+
|
|
652
|
+
func (x *Armadillo_SubProtocolPayload) ProtoReflect() protoreflect.Message {
|
|
653
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[3]
|
|
654
|
+
if x != nil {
|
|
655
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
656
|
+
if ms.LoadMessageInfo() == nil {
|
|
657
|
+
ms.StoreMessageInfo(mi)
|
|
658
|
+
}
|
|
659
|
+
return ms
|
|
660
|
+
}
|
|
661
|
+
return mi.MessageOf(x)
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
// Deprecated: Use Armadillo_SubProtocolPayload.ProtoReflect.Descriptor instead.
|
|
665
|
+
func (*Armadillo_SubProtocolPayload) Descriptor() ([]byte, []int) {
|
|
666
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 2}
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
func (x *Armadillo_SubProtocolPayload) GetFutureProof() waCommon.FutureProofBehavior {
|
|
670
|
+
if x != nil && x.FutureProof != nil {
|
|
671
|
+
return *x.FutureProof
|
|
672
|
+
}
|
|
673
|
+
return waCommon.FutureProofBehavior(0)
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
type Armadillo_Signal struct {
|
|
677
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
678
|
+
// Types that are valid to be assigned to Signal:
|
|
679
|
+
//
|
|
680
|
+
// *Armadillo_Signal_EncryptedBackupsSecrets_
|
|
681
|
+
Signal isArmadillo_Signal_Signal `protobuf_oneof:"signal"`
|
|
682
|
+
unknownFields protoimpl.UnknownFields
|
|
683
|
+
sizeCache protoimpl.SizeCache
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
func (x *Armadillo_Signal) Reset() {
|
|
687
|
+
*x = Armadillo_Signal{}
|
|
688
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[4]
|
|
689
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
690
|
+
ms.StoreMessageInfo(mi)
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
func (x *Armadillo_Signal) String() string {
|
|
694
|
+
return protoimpl.X.MessageStringOf(x)
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
func (*Armadillo_Signal) ProtoMessage() {}
|
|
698
|
+
|
|
699
|
+
func (x *Armadillo_Signal) ProtoReflect() protoreflect.Message {
|
|
700
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[4]
|
|
701
|
+
if x != nil {
|
|
702
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
703
|
+
if ms.LoadMessageInfo() == nil {
|
|
704
|
+
ms.StoreMessageInfo(mi)
|
|
705
|
+
}
|
|
706
|
+
return ms
|
|
707
|
+
}
|
|
708
|
+
return mi.MessageOf(x)
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
// Deprecated: Use Armadillo_Signal.ProtoReflect.Descriptor instead.
|
|
712
|
+
func (*Armadillo_Signal) Descriptor() ([]byte, []int) {
|
|
713
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 3}
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
func (x *Armadillo_Signal) GetSignal() isArmadillo_Signal_Signal {
|
|
717
|
+
if x != nil {
|
|
718
|
+
return x.Signal
|
|
719
|
+
}
|
|
720
|
+
return nil
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
func (x *Armadillo_Signal) GetEncryptedBackupsSecrets() *Armadillo_Signal_EncryptedBackupsSecrets {
|
|
724
|
+
if x != nil {
|
|
725
|
+
if x, ok := x.Signal.(*Armadillo_Signal_EncryptedBackupsSecrets_); ok {
|
|
726
|
+
return x.EncryptedBackupsSecrets
|
|
727
|
+
}
|
|
728
|
+
}
|
|
729
|
+
return nil
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
type isArmadillo_Signal_Signal interface {
|
|
733
|
+
isArmadillo_Signal_Signal()
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
type Armadillo_Signal_EncryptedBackupsSecrets_ struct {
|
|
737
|
+
EncryptedBackupsSecrets *Armadillo_Signal_EncryptedBackupsSecrets `protobuf:"bytes,1,opt,name=encryptedBackupsSecrets,oneof"`
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
func (*Armadillo_Signal_EncryptedBackupsSecrets_) isArmadillo_Signal_Signal() {}
|
|
741
|
+
|
|
742
|
+
type Armadillo_ApplicationData struct {
|
|
743
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
744
|
+
// Types that are valid to be assigned to ApplicationData:
|
|
745
|
+
//
|
|
746
|
+
// *Armadillo_ApplicationData_MetadataSync
|
|
747
|
+
// *Armadillo_ApplicationData_AiBotResponse
|
|
748
|
+
// *Armadillo_ApplicationData_MessageHistoryDocumentMessage_
|
|
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
|
+
func (x *Armadillo_ApplicationData) GetMessageHistoryDocumentMessage() *Armadillo_ApplicationData_MessageHistoryDocumentMessage {
|
|
810
|
+
if x != nil {
|
|
811
|
+
if x, ok := x.ApplicationData.(*Armadillo_ApplicationData_MessageHistoryDocumentMessage_); ok {
|
|
812
|
+
return x.MessageHistoryDocumentMessage
|
|
813
|
+
}
|
|
814
|
+
}
|
|
815
|
+
return nil
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
type isArmadillo_ApplicationData_ApplicationData interface {
|
|
819
|
+
isArmadillo_ApplicationData_ApplicationData()
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
type Armadillo_ApplicationData_MetadataSync struct {
|
|
823
|
+
MetadataSync *Armadillo_ApplicationData_MetadataSyncNotification `protobuf:"bytes,1,opt,name=metadataSync,oneof"`
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
type Armadillo_ApplicationData_AiBotResponse struct {
|
|
827
|
+
AiBotResponse *Armadillo_ApplicationData_AIBotResponseMessage `protobuf:"bytes,2,opt,name=aiBotResponse,oneof"`
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
type Armadillo_ApplicationData_MessageHistoryDocumentMessage_ struct {
|
|
831
|
+
MessageHistoryDocumentMessage *Armadillo_ApplicationData_MessageHistoryDocumentMessage `protobuf:"bytes,3,opt,name=messageHistoryDocumentMessage,oneof"`
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
func (*Armadillo_ApplicationData_MetadataSync) isArmadillo_ApplicationData_ApplicationData() {}
|
|
835
|
+
|
|
836
|
+
func (*Armadillo_ApplicationData_AiBotResponse) isArmadillo_ApplicationData_ApplicationData() {}
|
|
837
|
+
|
|
838
|
+
func (*Armadillo_ApplicationData_MessageHistoryDocumentMessage_) isArmadillo_ApplicationData_ApplicationData() {
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
type Armadillo_Content struct {
|
|
842
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
843
|
+
// Types that are valid to be assigned to Content:
|
|
844
|
+
//
|
|
845
|
+
// *Armadillo_Content_CommonSticker_
|
|
846
|
+
// *Armadillo_Content_ScreenshotAction_
|
|
847
|
+
// *Armadillo_Content_ExtendedContentMessage
|
|
848
|
+
// *Armadillo_Content_RavenMessage_
|
|
849
|
+
// *Armadillo_Content_RavenActionNotifMessage_
|
|
850
|
+
// *Armadillo_Content_ExtendedMessageContentWithSear
|
|
851
|
+
// *Armadillo_Content_ImageGalleryMessage_
|
|
852
|
+
// *Armadillo_Content_PaymentsTransactionMessage_
|
|
853
|
+
// *Armadillo_Content_BumpExistingMessage_
|
|
854
|
+
// *Armadillo_Content_NoteReplyMessage_
|
|
855
|
+
// *Armadillo_Content_RavenMessageMsgr
|
|
856
|
+
// *Armadillo_Content_NetworkVerificationMessage_
|
|
857
|
+
Content isArmadillo_Content_Content `protobuf_oneof:"content"`
|
|
858
|
+
unknownFields protoimpl.UnknownFields
|
|
859
|
+
sizeCache protoimpl.SizeCache
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
func (x *Armadillo_Content) Reset() {
|
|
863
|
+
*x = Armadillo_Content{}
|
|
864
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[6]
|
|
865
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
866
|
+
ms.StoreMessageInfo(mi)
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
func (x *Armadillo_Content) String() string {
|
|
870
|
+
return protoimpl.X.MessageStringOf(x)
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
func (*Armadillo_Content) ProtoMessage() {}
|
|
874
|
+
|
|
875
|
+
func (x *Armadillo_Content) ProtoReflect() protoreflect.Message {
|
|
876
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[6]
|
|
877
|
+
if x != nil {
|
|
878
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
879
|
+
if ms.LoadMessageInfo() == nil {
|
|
880
|
+
ms.StoreMessageInfo(mi)
|
|
881
|
+
}
|
|
882
|
+
return ms
|
|
883
|
+
}
|
|
884
|
+
return mi.MessageOf(x)
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
// Deprecated: Use Armadillo_Content.ProtoReflect.Descriptor instead.
|
|
888
|
+
func (*Armadillo_Content) Descriptor() ([]byte, []int) {
|
|
889
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5}
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
func (x *Armadillo_Content) GetContent() isArmadillo_Content_Content {
|
|
893
|
+
if x != nil {
|
|
894
|
+
return x.Content
|
|
895
|
+
}
|
|
896
|
+
return nil
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
func (x *Armadillo_Content) GetCommonSticker() *Armadillo_Content_CommonSticker {
|
|
900
|
+
if x != nil {
|
|
901
|
+
if x, ok := x.Content.(*Armadillo_Content_CommonSticker_); ok {
|
|
902
|
+
return x.CommonSticker
|
|
903
|
+
}
|
|
904
|
+
}
|
|
905
|
+
return nil
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
func (x *Armadillo_Content) GetScreenshotAction() *Armadillo_Content_ScreenshotAction {
|
|
909
|
+
if x != nil {
|
|
910
|
+
if x, ok := x.Content.(*Armadillo_Content_ScreenshotAction_); ok {
|
|
911
|
+
return x.ScreenshotAction
|
|
912
|
+
}
|
|
913
|
+
}
|
|
914
|
+
return nil
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
func (x *Armadillo_Content) GetExtendedContentMessage() *waArmadilloXMA.ExtendedContentMessage {
|
|
918
|
+
if x != nil {
|
|
919
|
+
if x, ok := x.Content.(*Armadillo_Content_ExtendedContentMessage); ok {
|
|
920
|
+
return x.ExtendedContentMessage
|
|
921
|
+
}
|
|
922
|
+
}
|
|
923
|
+
return nil
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
func (x *Armadillo_Content) GetRavenMessage() *Armadillo_Content_RavenMessage {
|
|
927
|
+
if x != nil {
|
|
928
|
+
if x, ok := x.Content.(*Armadillo_Content_RavenMessage_); ok {
|
|
929
|
+
return x.RavenMessage
|
|
930
|
+
}
|
|
931
|
+
}
|
|
932
|
+
return nil
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
func (x *Armadillo_Content) GetRavenActionNotifMessage() *Armadillo_Content_RavenActionNotifMessage {
|
|
936
|
+
if x != nil {
|
|
937
|
+
if x, ok := x.Content.(*Armadillo_Content_RavenActionNotifMessage_); ok {
|
|
938
|
+
return x.RavenActionNotifMessage
|
|
939
|
+
}
|
|
940
|
+
}
|
|
941
|
+
return nil
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
func (x *Armadillo_Content) GetExtendedMessageContentWithSear() *Armadillo_Content_ExtendedContentMessageWithSear {
|
|
945
|
+
if x != nil {
|
|
946
|
+
if x, ok := x.Content.(*Armadillo_Content_ExtendedMessageContentWithSear); ok {
|
|
947
|
+
return x.ExtendedMessageContentWithSear
|
|
948
|
+
}
|
|
949
|
+
}
|
|
950
|
+
return nil
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
func (x *Armadillo_Content) GetImageGalleryMessage() *Armadillo_Content_ImageGalleryMessage {
|
|
954
|
+
if x != nil {
|
|
955
|
+
if x, ok := x.Content.(*Armadillo_Content_ImageGalleryMessage_); ok {
|
|
956
|
+
return x.ImageGalleryMessage
|
|
957
|
+
}
|
|
958
|
+
}
|
|
959
|
+
return nil
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
func (x *Armadillo_Content) GetPaymentsTransactionMessage() *Armadillo_Content_PaymentsTransactionMessage {
|
|
963
|
+
if x != nil {
|
|
964
|
+
if x, ok := x.Content.(*Armadillo_Content_PaymentsTransactionMessage_); ok {
|
|
965
|
+
return x.PaymentsTransactionMessage
|
|
966
|
+
}
|
|
967
|
+
}
|
|
968
|
+
return nil
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
func (x *Armadillo_Content) GetBumpExistingMessage() *Armadillo_Content_BumpExistingMessage {
|
|
972
|
+
if x != nil {
|
|
973
|
+
if x, ok := x.Content.(*Armadillo_Content_BumpExistingMessage_); ok {
|
|
974
|
+
return x.BumpExistingMessage
|
|
975
|
+
}
|
|
976
|
+
}
|
|
977
|
+
return nil
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
func (x *Armadillo_Content) GetNoteReplyMessage() *Armadillo_Content_NoteReplyMessage {
|
|
981
|
+
if x != nil {
|
|
982
|
+
if x, ok := x.Content.(*Armadillo_Content_NoteReplyMessage_); ok {
|
|
983
|
+
return x.NoteReplyMessage
|
|
984
|
+
}
|
|
985
|
+
}
|
|
986
|
+
return nil
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
func (x *Armadillo_Content) GetRavenMessageMsgr() *Armadillo_Content_RavenMessage {
|
|
990
|
+
if x != nil {
|
|
991
|
+
if x, ok := x.Content.(*Armadillo_Content_RavenMessageMsgr); ok {
|
|
992
|
+
return x.RavenMessageMsgr
|
|
993
|
+
}
|
|
994
|
+
}
|
|
995
|
+
return nil
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
func (x *Armadillo_Content) GetNetworkVerificationMessage() *Armadillo_Content_NetworkVerificationMessage {
|
|
999
|
+
if x != nil {
|
|
1000
|
+
if x, ok := x.Content.(*Armadillo_Content_NetworkVerificationMessage_); ok {
|
|
1001
|
+
return x.NetworkVerificationMessage
|
|
1002
|
+
}
|
|
1003
|
+
}
|
|
1004
|
+
return nil
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
type isArmadillo_Content_Content interface {
|
|
1008
|
+
isArmadillo_Content_Content()
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
type Armadillo_Content_CommonSticker_ struct {
|
|
1012
|
+
CommonSticker *Armadillo_Content_CommonSticker `protobuf:"bytes,1,opt,name=commonSticker,oneof"`
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
type Armadillo_Content_ScreenshotAction_ struct {
|
|
1016
|
+
ScreenshotAction *Armadillo_Content_ScreenshotAction `protobuf:"bytes,3,opt,name=screenshotAction,oneof"`
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
type Armadillo_Content_ExtendedContentMessage struct {
|
|
1020
|
+
ExtendedContentMessage *waArmadilloXMA.ExtendedContentMessage `protobuf:"bytes,4,opt,name=extendedContentMessage,oneof"`
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
type Armadillo_Content_RavenMessage_ struct {
|
|
1024
|
+
RavenMessage *Armadillo_Content_RavenMessage `protobuf:"bytes,5,opt,name=ravenMessage,oneof"`
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
type Armadillo_Content_RavenActionNotifMessage_ struct {
|
|
1028
|
+
RavenActionNotifMessage *Armadillo_Content_RavenActionNotifMessage `protobuf:"bytes,6,opt,name=ravenActionNotifMessage,oneof"`
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
type Armadillo_Content_ExtendedMessageContentWithSear struct {
|
|
1032
|
+
ExtendedMessageContentWithSear *Armadillo_Content_ExtendedContentMessageWithSear `protobuf:"bytes,7,opt,name=extendedMessageContentWithSear,oneof"`
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
type Armadillo_Content_ImageGalleryMessage_ struct {
|
|
1036
|
+
ImageGalleryMessage *Armadillo_Content_ImageGalleryMessage `protobuf:"bytes,8,opt,name=imageGalleryMessage,oneof"`
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
type Armadillo_Content_PaymentsTransactionMessage_ struct {
|
|
1040
|
+
PaymentsTransactionMessage *Armadillo_Content_PaymentsTransactionMessage `protobuf:"bytes,10,opt,name=paymentsTransactionMessage,oneof"`
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
type Armadillo_Content_BumpExistingMessage_ struct {
|
|
1044
|
+
BumpExistingMessage *Armadillo_Content_BumpExistingMessage `protobuf:"bytes,11,opt,name=bumpExistingMessage,oneof"`
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
type Armadillo_Content_NoteReplyMessage_ struct {
|
|
1048
|
+
NoteReplyMessage *Armadillo_Content_NoteReplyMessage `protobuf:"bytes,13,opt,name=noteReplyMessage,oneof"`
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
type Armadillo_Content_RavenMessageMsgr struct {
|
|
1052
|
+
RavenMessageMsgr *Armadillo_Content_RavenMessage `protobuf:"bytes,14,opt,name=ravenMessageMsgr,oneof"`
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
type Armadillo_Content_NetworkVerificationMessage_ struct {
|
|
1056
|
+
NetworkVerificationMessage *Armadillo_Content_NetworkVerificationMessage `protobuf:"bytes,15,opt,name=networkVerificationMessage,oneof"`
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
func (*Armadillo_Content_CommonSticker_) isArmadillo_Content_Content() {}
|
|
1060
|
+
|
|
1061
|
+
func (*Armadillo_Content_ScreenshotAction_) isArmadillo_Content_Content() {}
|
|
1062
|
+
|
|
1063
|
+
func (*Armadillo_Content_ExtendedContentMessage) isArmadillo_Content_Content() {}
|
|
1064
|
+
|
|
1065
|
+
func (*Armadillo_Content_RavenMessage_) isArmadillo_Content_Content() {}
|
|
1066
|
+
|
|
1067
|
+
func (*Armadillo_Content_RavenActionNotifMessage_) isArmadillo_Content_Content() {}
|
|
1068
|
+
|
|
1069
|
+
func (*Armadillo_Content_ExtendedMessageContentWithSear) isArmadillo_Content_Content() {}
|
|
1070
|
+
|
|
1071
|
+
func (*Armadillo_Content_ImageGalleryMessage_) isArmadillo_Content_Content() {}
|
|
1072
|
+
|
|
1073
|
+
func (*Armadillo_Content_PaymentsTransactionMessage_) isArmadillo_Content_Content() {}
|
|
1074
|
+
|
|
1075
|
+
func (*Armadillo_Content_BumpExistingMessage_) isArmadillo_Content_Content() {}
|
|
1076
|
+
|
|
1077
|
+
func (*Armadillo_Content_NoteReplyMessage_) isArmadillo_Content_Content() {}
|
|
1078
|
+
|
|
1079
|
+
func (*Armadillo_Content_RavenMessageMsgr) isArmadillo_Content_Content() {}
|
|
1080
|
+
|
|
1081
|
+
func (*Armadillo_Content_NetworkVerificationMessage_) 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_MessageHistoryDocumentMessage struct {
|
|
1236
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1237
|
+
Document *waCommon.SubProtocol `protobuf:"bytes,1,opt,name=document" json:"document,omitempty"`
|
|
1238
|
+
unknownFields protoimpl.UnknownFields
|
|
1239
|
+
sizeCache protoimpl.SizeCache
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
func (x *Armadillo_ApplicationData_MessageHistoryDocumentMessage) Reset() {
|
|
1243
|
+
*x = Armadillo_ApplicationData_MessageHistoryDocumentMessage{}
|
|
1244
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[9]
|
|
1245
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1246
|
+
ms.StoreMessageInfo(mi)
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
func (x *Armadillo_ApplicationData_MessageHistoryDocumentMessage) String() string {
|
|
1250
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
func (*Armadillo_ApplicationData_MessageHistoryDocumentMessage) ProtoMessage() {}
|
|
1254
|
+
|
|
1255
|
+
func (x *Armadillo_ApplicationData_MessageHistoryDocumentMessage) ProtoReflect() protoreflect.Message {
|
|
1256
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[9]
|
|
1257
|
+
if x != nil {
|
|
1258
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1259
|
+
if ms.LoadMessageInfo() == nil {
|
|
1260
|
+
ms.StoreMessageInfo(mi)
|
|
1261
|
+
}
|
|
1262
|
+
return ms
|
|
1263
|
+
}
|
|
1264
|
+
return mi.MessageOf(x)
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
// Deprecated: Use Armadillo_ApplicationData_MessageHistoryDocumentMessage.ProtoReflect.Descriptor instead.
|
|
1268
|
+
func (*Armadillo_ApplicationData_MessageHistoryDocumentMessage) Descriptor() ([]byte, []int) {
|
|
1269
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 0}
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
func (x *Armadillo_ApplicationData_MessageHistoryDocumentMessage) GetDocument() *waCommon.SubProtocol {
|
|
1273
|
+
if x != nil {
|
|
1274
|
+
return x.Document
|
|
1275
|
+
}
|
|
1276
|
+
return nil
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
type Armadillo_ApplicationData_AIBotResponseMessage struct {
|
|
1280
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1281
|
+
SummonToken *string `protobuf:"bytes,1,opt,name=summonToken" json:"summonToken,omitempty"`
|
|
1282
|
+
MessageText *string `protobuf:"bytes,2,opt,name=messageText" json:"messageText,omitempty"`
|
|
1283
|
+
SerializedExtras *string `protobuf:"bytes,3,opt,name=serializedExtras" json:"serializedExtras,omitempty"`
|
|
1284
|
+
unknownFields protoimpl.UnknownFields
|
|
1285
|
+
sizeCache protoimpl.SizeCache
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
func (x *Armadillo_ApplicationData_AIBotResponseMessage) Reset() {
|
|
1289
|
+
*x = Armadillo_ApplicationData_AIBotResponseMessage{}
|
|
1290
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[10]
|
|
1291
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1292
|
+
ms.StoreMessageInfo(mi)
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
func (x *Armadillo_ApplicationData_AIBotResponseMessage) String() string {
|
|
1296
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
func (*Armadillo_ApplicationData_AIBotResponseMessage) ProtoMessage() {}
|
|
1300
|
+
|
|
1301
|
+
func (x *Armadillo_ApplicationData_AIBotResponseMessage) ProtoReflect() protoreflect.Message {
|
|
1302
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[10]
|
|
1303
|
+
if x != nil {
|
|
1304
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1305
|
+
if ms.LoadMessageInfo() == nil {
|
|
1306
|
+
ms.StoreMessageInfo(mi)
|
|
1307
|
+
}
|
|
1308
|
+
return ms
|
|
1309
|
+
}
|
|
1310
|
+
return mi.MessageOf(x)
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
// Deprecated: Use Armadillo_ApplicationData_AIBotResponseMessage.ProtoReflect.Descriptor instead.
|
|
1314
|
+
func (*Armadillo_ApplicationData_AIBotResponseMessage) Descriptor() ([]byte, []int) {
|
|
1315
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1}
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
func (x *Armadillo_ApplicationData_AIBotResponseMessage) GetSummonToken() string {
|
|
1319
|
+
if x != nil && x.SummonToken != nil {
|
|
1320
|
+
return *x.SummonToken
|
|
1321
|
+
}
|
|
1322
|
+
return ""
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
func (x *Armadillo_ApplicationData_AIBotResponseMessage) GetMessageText() string {
|
|
1326
|
+
if x != nil && x.MessageText != nil {
|
|
1327
|
+
return *x.MessageText
|
|
1328
|
+
}
|
|
1329
|
+
return ""
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
func (x *Armadillo_ApplicationData_AIBotResponseMessage) GetSerializedExtras() string {
|
|
1333
|
+
if x != nil && x.SerializedExtras != nil {
|
|
1334
|
+
return *x.SerializedExtras
|
|
1335
|
+
}
|
|
1336
|
+
return ""
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
type Armadillo_ApplicationData_MetadataSyncAction struct {
|
|
1340
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1341
|
+
// Types that are valid to be assigned to ActionType:
|
|
1342
|
+
//
|
|
1343
|
+
// *Armadillo_ApplicationData_MetadataSyncAction_ChatAction
|
|
1344
|
+
// *Armadillo_ApplicationData_MetadataSyncAction_MessageAction
|
|
1345
|
+
ActionType isArmadillo_ApplicationData_MetadataSyncAction_ActionType `protobuf_oneof:"actionType"`
|
|
1346
|
+
ActionTimestamp *int64 `protobuf:"varint,1,opt,name=actionTimestamp" json:"actionTimestamp,omitempty"`
|
|
1347
|
+
unknownFields protoimpl.UnknownFields
|
|
1348
|
+
sizeCache protoimpl.SizeCache
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1351
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction) Reset() {
|
|
1352
|
+
*x = Armadillo_ApplicationData_MetadataSyncAction{}
|
|
1353
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[11]
|
|
1354
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1355
|
+
ms.StoreMessageInfo(mi)
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction) String() string {
|
|
1359
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction) ProtoMessage() {}
|
|
1363
|
+
|
|
1364
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction) ProtoReflect() protoreflect.Message {
|
|
1365
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[11]
|
|
1366
|
+
if x != nil {
|
|
1367
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1368
|
+
if ms.LoadMessageInfo() == nil {
|
|
1369
|
+
ms.StoreMessageInfo(mi)
|
|
1370
|
+
}
|
|
1371
|
+
return ms
|
|
1372
|
+
}
|
|
1373
|
+
return mi.MessageOf(x)
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
// Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction.ProtoReflect.Descriptor instead.
|
|
1377
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction) Descriptor() ([]byte, []int) {
|
|
1378
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2}
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction) GetActionType() isArmadillo_ApplicationData_MetadataSyncAction_ActionType {
|
|
1382
|
+
if x != nil {
|
|
1383
|
+
return x.ActionType
|
|
1384
|
+
}
|
|
1385
|
+
return nil
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction) GetChatAction() *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction {
|
|
1389
|
+
if x != nil {
|
|
1390
|
+
if x, ok := x.ActionType.(*Armadillo_ApplicationData_MetadataSyncAction_ChatAction); ok {
|
|
1391
|
+
return x.ChatAction
|
|
1392
|
+
}
|
|
1393
|
+
}
|
|
1394
|
+
return nil
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction) GetMessageAction() *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction {
|
|
1398
|
+
if x != nil {
|
|
1399
|
+
if x, ok := x.ActionType.(*Armadillo_ApplicationData_MetadataSyncAction_MessageAction); ok {
|
|
1400
|
+
return x.MessageAction
|
|
1401
|
+
}
|
|
1402
|
+
}
|
|
1403
|
+
return nil
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction) GetActionTimestamp() int64 {
|
|
1407
|
+
if x != nil && x.ActionTimestamp != nil {
|
|
1408
|
+
return *x.ActionTimestamp
|
|
1409
|
+
}
|
|
1410
|
+
return 0
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
type isArmadillo_ApplicationData_MetadataSyncAction_ActionType interface {
|
|
1414
|
+
isArmadillo_ApplicationData_MetadataSyncAction_ActionType()
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1417
|
+
type Armadillo_ApplicationData_MetadataSyncAction_ChatAction struct {
|
|
1418
|
+
ChatAction *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction `protobuf:"bytes,101,opt,name=chatAction,oneof"`
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
type Armadillo_ApplicationData_MetadataSyncAction_MessageAction struct {
|
|
1422
|
+
MessageAction *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction `protobuf:"bytes,102,opt,name=messageAction,oneof"`
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_ChatAction) isArmadillo_ApplicationData_MetadataSyncAction_ActionType() {
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_MessageAction) isArmadillo_ApplicationData_MetadataSyncAction_ActionType() {
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
type Armadillo_ApplicationData_MetadataSyncNotification struct {
|
|
1432
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1433
|
+
Actions []*Armadillo_ApplicationData_MetadataSyncAction `protobuf:"bytes,2,rep,name=actions" json:"actions,omitempty"`
|
|
1434
|
+
unknownFields protoimpl.UnknownFields
|
|
1435
|
+
sizeCache protoimpl.SizeCache
|
|
1436
|
+
}
|
|
1437
|
+
|
|
1438
|
+
func (x *Armadillo_ApplicationData_MetadataSyncNotification) Reset() {
|
|
1439
|
+
*x = Armadillo_ApplicationData_MetadataSyncNotification{}
|
|
1440
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[12]
|
|
1441
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1442
|
+
ms.StoreMessageInfo(mi)
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
func (x *Armadillo_ApplicationData_MetadataSyncNotification) String() string {
|
|
1446
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
func (*Armadillo_ApplicationData_MetadataSyncNotification) ProtoMessage() {}
|
|
1450
|
+
|
|
1451
|
+
func (x *Armadillo_ApplicationData_MetadataSyncNotification) ProtoReflect() protoreflect.Message {
|
|
1452
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[12]
|
|
1453
|
+
if x != nil {
|
|
1454
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1455
|
+
if ms.LoadMessageInfo() == nil {
|
|
1456
|
+
ms.StoreMessageInfo(mi)
|
|
1457
|
+
}
|
|
1458
|
+
return ms
|
|
1459
|
+
}
|
|
1460
|
+
return mi.MessageOf(x)
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
// Deprecated: Use Armadillo_ApplicationData_MetadataSyncNotification.ProtoReflect.Descriptor instead.
|
|
1464
|
+
func (*Armadillo_ApplicationData_MetadataSyncNotification) Descriptor() ([]byte, []int) {
|
|
1465
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 3}
|
|
1466
|
+
}
|
|
1467
|
+
|
|
1468
|
+
func (x *Armadillo_ApplicationData_MetadataSyncNotification) GetActions() []*Armadillo_ApplicationData_MetadataSyncAction {
|
|
1469
|
+
if x != nil {
|
|
1470
|
+
return x.Actions
|
|
1471
|
+
}
|
|
1472
|
+
return nil
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
type Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction struct {
|
|
1476
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1477
|
+
// Types that are valid to be assigned to Action:
|
|
1478
|
+
//
|
|
1479
|
+
// *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete
|
|
1480
|
+
Action isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action `protobuf_oneof:"action"`
|
|
1481
|
+
Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
1482
|
+
unknownFields protoimpl.UnknownFields
|
|
1483
|
+
sizeCache protoimpl.SizeCache
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) Reset() {
|
|
1487
|
+
*x = Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction{}
|
|
1488
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[13]
|
|
1489
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1490
|
+
ms.StoreMessageInfo(mi)
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) String() string {
|
|
1494
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) ProtoMessage() {}
|
|
1498
|
+
|
|
1499
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) ProtoReflect() protoreflect.Message {
|
|
1500
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[13]
|
|
1501
|
+
if x != nil {
|
|
1502
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1503
|
+
if ms.LoadMessageInfo() == nil {
|
|
1504
|
+
ms.StoreMessageInfo(mi)
|
|
1505
|
+
}
|
|
1506
|
+
return ms
|
|
1507
|
+
}
|
|
1508
|
+
return mi.MessageOf(x)
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1511
|
+
// Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction.ProtoReflect.Descriptor instead.
|
|
1512
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) Descriptor() ([]byte, []int) {
|
|
1513
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 0}
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) GetAction() isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action {
|
|
1517
|
+
if x != nil {
|
|
1518
|
+
return x.Action
|
|
1519
|
+
}
|
|
1520
|
+
return nil
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) GetMessageDelete() *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete {
|
|
1524
|
+
if x != nil {
|
|
1525
|
+
if x, ok := x.Action.(*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete); ok {
|
|
1526
|
+
return x.MessageDelete
|
|
1527
|
+
}
|
|
1528
|
+
}
|
|
1529
|
+
return nil
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) GetKey() *waCommon.MessageKey {
|
|
1533
|
+
if x != nil {
|
|
1534
|
+
return x.Key
|
|
1535
|
+
}
|
|
1536
|
+
return nil
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
type isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action interface {
|
|
1540
|
+
isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action()
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
type Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete struct {
|
|
1544
|
+
MessageDelete *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete `protobuf:"bytes,101,opt,name=messageDelete,oneof"`
|
|
1545
|
+
}
|
|
1546
|
+
|
|
1547
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete) isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action() {
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction struct {
|
|
1551
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1552
|
+
// Types that are valid to be assigned to Action:
|
|
1553
|
+
//
|
|
1554
|
+
// *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive
|
|
1555
|
+
// *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete
|
|
1556
|
+
// *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead
|
|
1557
|
+
Action isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action `protobuf_oneof:"action"`
|
|
1558
|
+
ChatID *string `protobuf:"bytes,1,opt,name=chatID" json:"chatID,omitempty"`
|
|
1559
|
+
unknownFields protoimpl.UnknownFields
|
|
1560
|
+
sizeCache protoimpl.SizeCache
|
|
1561
|
+
}
|
|
1562
|
+
|
|
1563
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) Reset() {
|
|
1564
|
+
*x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction{}
|
|
1565
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[14]
|
|
1566
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1567
|
+
ms.StoreMessageInfo(mi)
|
|
1568
|
+
}
|
|
1569
|
+
|
|
1570
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) String() string {
|
|
1571
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) ProtoMessage() {}
|
|
1575
|
+
|
|
1576
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) ProtoReflect() protoreflect.Message {
|
|
1577
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[14]
|
|
1578
|
+
if x != nil {
|
|
1579
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1580
|
+
if ms.LoadMessageInfo() == nil {
|
|
1581
|
+
ms.StoreMessageInfo(mi)
|
|
1582
|
+
}
|
|
1583
|
+
return ms
|
|
1584
|
+
}
|
|
1585
|
+
return mi.MessageOf(x)
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
// Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction.ProtoReflect.Descriptor instead.
|
|
1589
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) Descriptor() ([]byte, []int) {
|
|
1590
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 1}
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetAction() isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action {
|
|
1594
|
+
if x != nil {
|
|
1595
|
+
return x.Action
|
|
1596
|
+
}
|
|
1597
|
+
return nil
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetChatArchive() *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive {
|
|
1601
|
+
if x != nil {
|
|
1602
|
+
if x, ok := x.Action.(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive); ok {
|
|
1603
|
+
return x.ChatArchive
|
|
1604
|
+
}
|
|
1605
|
+
}
|
|
1606
|
+
return nil
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetChatDelete() *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete {
|
|
1610
|
+
if x != nil {
|
|
1611
|
+
if x, ok := x.Action.(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete); ok {
|
|
1612
|
+
return x.ChatDelete
|
|
1613
|
+
}
|
|
1614
|
+
}
|
|
1615
|
+
return nil
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetChatRead() *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead {
|
|
1619
|
+
if x != nil {
|
|
1620
|
+
if x, ok := x.Action.(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead); ok {
|
|
1621
|
+
return x.ChatRead
|
|
1622
|
+
}
|
|
1623
|
+
}
|
|
1624
|
+
return nil
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetChatID() string {
|
|
1628
|
+
if x != nil && x.ChatID != nil {
|
|
1629
|
+
return *x.ChatID
|
|
1630
|
+
}
|
|
1631
|
+
return ""
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
type isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action interface {
|
|
1635
|
+
isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action()
|
|
1636
|
+
}
|
|
1637
|
+
|
|
1638
|
+
type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive struct {
|
|
1639
|
+
ChatArchive *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive `protobuf:"bytes,101,opt,name=chatArchive,oneof"`
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete struct {
|
|
1643
|
+
ChatDelete *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete `protobuf:"bytes,102,opt,name=chatDelete,oneof"`
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead struct {
|
|
1647
|
+
ChatRead *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead `protobuf:"bytes,103,opt,name=chatRead,oneof"`
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1650
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive) isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action() {
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete) isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action() {
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead) isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action() {
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
type Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage struct {
|
|
1660
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1661
|
+
Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
1662
|
+
Timestamp *int64 `protobuf:"varint,2,opt,name=timestamp" json:"timestamp,omitempty"`
|
|
1663
|
+
unknownFields protoimpl.UnknownFields
|
|
1664
|
+
sizeCache protoimpl.SizeCache
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) Reset() {
|
|
1668
|
+
*x = Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage{}
|
|
1669
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[15]
|
|
1670
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1671
|
+
ms.StoreMessageInfo(mi)
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) String() string {
|
|
1675
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1676
|
+
}
|
|
1677
|
+
|
|
1678
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) ProtoMessage() {}
|
|
1679
|
+
|
|
1680
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) ProtoReflect() protoreflect.Message {
|
|
1681
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[15]
|
|
1682
|
+
if x != nil {
|
|
1683
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1684
|
+
if ms.LoadMessageInfo() == nil {
|
|
1685
|
+
ms.StoreMessageInfo(mi)
|
|
1686
|
+
}
|
|
1687
|
+
return ms
|
|
1688
|
+
}
|
|
1689
|
+
return mi.MessageOf(x)
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
// Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage.ProtoReflect.Descriptor instead.
|
|
1693
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) Descriptor() ([]byte, []int) {
|
|
1694
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 2}
|
|
1695
|
+
}
|
|
1696
|
+
|
|
1697
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) GetKey() *waCommon.MessageKey {
|
|
1698
|
+
if x != nil {
|
|
1699
|
+
return x.Key
|
|
1700
|
+
}
|
|
1701
|
+
return nil
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) GetTimestamp() int64 {
|
|
1705
|
+
if x != nil && x.Timestamp != nil {
|
|
1706
|
+
return *x.Timestamp
|
|
1707
|
+
}
|
|
1708
|
+
return 0
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
type Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange struct {
|
|
1712
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1713
|
+
LastMessageTimestamp *int64 `protobuf:"varint,1,opt,name=lastMessageTimestamp" json:"lastMessageTimestamp,omitempty"`
|
|
1714
|
+
LastSystemMessageTimestamp *int64 `protobuf:"varint,2,opt,name=lastSystemMessageTimestamp" json:"lastSystemMessageTimestamp,omitempty"`
|
|
1715
|
+
Messages []*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage `protobuf:"bytes,3,rep,name=messages" json:"messages,omitempty"`
|
|
1716
|
+
unknownFields protoimpl.UnknownFields
|
|
1717
|
+
sizeCache protoimpl.SizeCache
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) Reset() {
|
|
1721
|
+
*x = Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange{}
|
|
1722
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[16]
|
|
1723
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1724
|
+
ms.StoreMessageInfo(mi)
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1727
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) String() string {
|
|
1728
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1729
|
+
}
|
|
1730
|
+
|
|
1731
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) ProtoMessage() {}
|
|
1732
|
+
|
|
1733
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) ProtoReflect() protoreflect.Message {
|
|
1734
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[16]
|
|
1735
|
+
if x != nil {
|
|
1736
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1737
|
+
if ms.LoadMessageInfo() == nil {
|
|
1738
|
+
ms.StoreMessageInfo(mi)
|
|
1739
|
+
}
|
|
1740
|
+
return ms
|
|
1741
|
+
}
|
|
1742
|
+
return mi.MessageOf(x)
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1745
|
+
// Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange.ProtoReflect.Descriptor instead.
|
|
1746
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) Descriptor() ([]byte, []int) {
|
|
1747
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 3}
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) GetLastMessageTimestamp() int64 {
|
|
1751
|
+
if x != nil && x.LastMessageTimestamp != nil {
|
|
1752
|
+
return *x.LastMessageTimestamp
|
|
1753
|
+
}
|
|
1754
|
+
return 0
|
|
1755
|
+
}
|
|
1756
|
+
|
|
1757
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) GetLastSystemMessageTimestamp() int64 {
|
|
1758
|
+
if x != nil && x.LastSystemMessageTimestamp != nil {
|
|
1759
|
+
return *x.LastSystemMessageTimestamp
|
|
1760
|
+
}
|
|
1761
|
+
return 0
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1764
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) GetMessages() []*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage {
|
|
1765
|
+
if x != nil {
|
|
1766
|
+
return x.Messages
|
|
1767
|
+
}
|
|
1768
|
+
return nil
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
type Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete struct {
|
|
1772
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1773
|
+
unknownFields protoimpl.UnknownFields
|
|
1774
|
+
sizeCache protoimpl.SizeCache
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) Reset() {
|
|
1778
|
+
*x = Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete{}
|
|
1779
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[17]
|
|
1780
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1781
|
+
ms.StoreMessageInfo(mi)
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) String() string {
|
|
1785
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) ProtoMessage() {
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1791
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) ProtoReflect() protoreflect.Message {
|
|
1792
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[17]
|
|
1793
|
+
if x != nil {
|
|
1794
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1795
|
+
if ms.LoadMessageInfo() == nil {
|
|
1796
|
+
ms.StoreMessageInfo(mi)
|
|
1797
|
+
}
|
|
1798
|
+
return ms
|
|
1799
|
+
}
|
|
1800
|
+
return mi.MessageOf(x)
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
// Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete.ProtoReflect.Descriptor instead.
|
|
1804
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) Descriptor() ([]byte, []int) {
|
|
1805
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 0, 0}
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead struct {
|
|
1809
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1810
|
+
MessageRange *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange `protobuf:"bytes,1,opt,name=messageRange" json:"messageRange,omitempty"`
|
|
1811
|
+
Read *bool `protobuf:"varint,2,opt,name=read" json:"read,omitempty"`
|
|
1812
|
+
unknownFields protoimpl.UnknownFields
|
|
1813
|
+
sizeCache protoimpl.SizeCache
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) Reset() {
|
|
1817
|
+
*x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead{}
|
|
1818
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[18]
|
|
1819
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1820
|
+
ms.StoreMessageInfo(mi)
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) String() string {
|
|
1824
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1827
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) ProtoMessage() {}
|
|
1828
|
+
|
|
1829
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) ProtoReflect() protoreflect.Message {
|
|
1830
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[18]
|
|
1831
|
+
if x != nil {
|
|
1832
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1833
|
+
if ms.LoadMessageInfo() == nil {
|
|
1834
|
+
ms.StoreMessageInfo(mi)
|
|
1835
|
+
}
|
|
1836
|
+
return ms
|
|
1837
|
+
}
|
|
1838
|
+
return mi.MessageOf(x)
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
// Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead.ProtoReflect.Descriptor instead.
|
|
1842
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) Descriptor() ([]byte, []int) {
|
|
1843
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 1, 0}
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) GetMessageRange() *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange {
|
|
1847
|
+
if x != nil {
|
|
1848
|
+
return x.MessageRange
|
|
1849
|
+
}
|
|
1850
|
+
return nil
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) GetRead() bool {
|
|
1854
|
+
if x != nil && x.Read != nil {
|
|
1855
|
+
return *x.Read
|
|
1856
|
+
}
|
|
1857
|
+
return false
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete struct {
|
|
1861
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1862
|
+
MessageRange *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange `protobuf:"bytes,1,opt,name=messageRange" json:"messageRange,omitempty"`
|
|
1863
|
+
unknownFields protoimpl.UnknownFields
|
|
1864
|
+
sizeCache protoimpl.SizeCache
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) Reset() {
|
|
1868
|
+
*x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete{}
|
|
1869
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[19]
|
|
1870
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1871
|
+
ms.StoreMessageInfo(mi)
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) String() string {
|
|
1875
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1878
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) ProtoMessage() {}
|
|
1879
|
+
|
|
1880
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) ProtoReflect() protoreflect.Message {
|
|
1881
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[19]
|
|
1882
|
+
if x != nil {
|
|
1883
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1884
|
+
if ms.LoadMessageInfo() == nil {
|
|
1885
|
+
ms.StoreMessageInfo(mi)
|
|
1886
|
+
}
|
|
1887
|
+
return ms
|
|
1888
|
+
}
|
|
1889
|
+
return mi.MessageOf(x)
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
// Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete.ProtoReflect.Descriptor instead.
|
|
1893
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) Descriptor() ([]byte, []int) {
|
|
1894
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 1, 1}
|
|
1895
|
+
}
|
|
1896
|
+
|
|
1897
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) GetMessageRange() *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange {
|
|
1898
|
+
if x != nil {
|
|
1899
|
+
return x.MessageRange
|
|
1900
|
+
}
|
|
1901
|
+
return nil
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive struct {
|
|
1905
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1906
|
+
MessageRange *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange `protobuf:"bytes,1,opt,name=messageRange" json:"messageRange,omitempty"`
|
|
1907
|
+
Archived *bool `protobuf:"varint,2,opt,name=archived" json:"archived,omitempty"`
|
|
1908
|
+
unknownFields protoimpl.UnknownFields
|
|
1909
|
+
sizeCache protoimpl.SizeCache
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) Reset() {
|
|
1913
|
+
*x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive{}
|
|
1914
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[20]
|
|
1915
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1916
|
+
ms.StoreMessageInfo(mi)
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) String() string {
|
|
1920
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1923
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) ProtoMessage() {
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1926
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) ProtoReflect() protoreflect.Message {
|
|
1927
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[20]
|
|
1928
|
+
if x != nil {
|
|
1929
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1930
|
+
if ms.LoadMessageInfo() == nil {
|
|
1931
|
+
ms.StoreMessageInfo(mi)
|
|
1932
|
+
}
|
|
1933
|
+
return ms
|
|
1934
|
+
}
|
|
1935
|
+
return mi.MessageOf(x)
|
|
1936
|
+
}
|
|
1937
|
+
|
|
1938
|
+
// Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive.ProtoReflect.Descriptor instead.
|
|
1939
|
+
func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) Descriptor() ([]byte, []int) {
|
|
1940
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 1, 2}
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) GetMessageRange() *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange {
|
|
1944
|
+
if x != nil {
|
|
1945
|
+
return x.MessageRange
|
|
1946
|
+
}
|
|
1947
|
+
return nil
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1950
|
+
func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) GetArchived() bool {
|
|
1951
|
+
if x != nil && x.Archived != nil {
|
|
1952
|
+
return *x.Archived
|
|
1953
|
+
}
|
|
1954
|
+
return false
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
type Armadillo_Content_PaymentsTransactionMessage struct {
|
|
1958
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1959
|
+
TransactionID *uint64 `protobuf:"varint,1,opt,name=transactionID" json:"transactionID,omitempty"`
|
|
1960
|
+
Amount *string `protobuf:"bytes,2,opt,name=amount" json:"amount,omitempty"`
|
|
1961
|
+
Currency *string `protobuf:"bytes,3,opt,name=currency" json:"currency,omitempty"`
|
|
1962
|
+
PaymentStatus *Armadillo_Content_PaymentsTransactionMessage_PaymentStatus `protobuf:"varint,4,opt,name=paymentStatus,enum=WAArmadilloApplication.Armadillo_Content_PaymentsTransactionMessage_PaymentStatus" json:"paymentStatus,omitempty"`
|
|
1963
|
+
ExtendedContentMessage *waArmadilloXMA.ExtendedContentMessage `protobuf:"bytes,5,opt,name=extendedContentMessage" json:"extendedContentMessage,omitempty"`
|
|
1964
|
+
unknownFields protoimpl.UnknownFields
|
|
1965
|
+
sizeCache protoimpl.SizeCache
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
func (x *Armadillo_Content_PaymentsTransactionMessage) Reset() {
|
|
1969
|
+
*x = Armadillo_Content_PaymentsTransactionMessage{}
|
|
1970
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[21]
|
|
1971
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1972
|
+
ms.StoreMessageInfo(mi)
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1975
|
+
func (x *Armadillo_Content_PaymentsTransactionMessage) String() string {
|
|
1976
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1977
|
+
}
|
|
1978
|
+
|
|
1979
|
+
func (*Armadillo_Content_PaymentsTransactionMessage) ProtoMessage() {}
|
|
1980
|
+
|
|
1981
|
+
func (x *Armadillo_Content_PaymentsTransactionMessage) ProtoReflect() protoreflect.Message {
|
|
1982
|
+
mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[21]
|
|
1983
|
+
if x != nil {
|
|
1984
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1985
|
+
if ms.LoadMessageInfo() == nil {
|
|
1986
|
+
ms.StoreMessageInfo(mi)
|
|
1987
|
+
}
|
|
1988
|
+
return ms
|
|
1989
|
+
}
|
|
1990
|
+
return mi.MessageOf(x)
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
// Deprecated: Use Armadillo_Content_PaymentsTransactionMessage.ProtoReflect.Descriptor instead.
|
|
1994
|
+
func (*Armadillo_Content_PaymentsTransactionMessage) Descriptor() ([]byte, []int) {
|
|
1995
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 0}
|
|
1996
|
+
}
|
|
1997
|
+
|
|
1998
|
+
func (x *Armadillo_Content_PaymentsTransactionMessage) GetTransactionID() uint64 {
|
|
1999
|
+
if x != nil && x.TransactionID != nil {
|
|
2000
|
+
return *x.TransactionID
|
|
2001
|
+
}
|
|
2002
|
+
return 0
|
|
2003
|
+
}
|
|
2004
|
+
|
|
2005
|
+
func (x *Armadillo_Content_PaymentsTransactionMessage) GetAmount() string {
|
|
2006
|
+
if x != nil && x.Amount != nil {
|
|
2007
|
+
return *x.Amount
|
|
2008
|
+
}
|
|
2009
|
+
return ""
|
|
2010
|
+
}
|
|
2011
|
+
|
|
2012
|
+
func (x *Armadillo_Content_PaymentsTransactionMessage) GetCurrency() string {
|
|
2013
|
+
if x != nil && x.Currency != nil {
|
|
2014
|
+
return *x.Currency
|
|
2015
|
+
}
|
|
2016
|
+
return ""
|
|
2017
|
+
}
|
|
2018
|
+
|
|
2019
|
+
func (x *Armadillo_Content_PaymentsTransactionMessage) GetPaymentStatus() Armadillo_Content_PaymentsTransactionMessage_PaymentStatus {
|
|
2020
|
+
if x != nil && x.PaymentStatus != nil {
|
|
2021
|
+
return *x.PaymentStatus
|
|
2022
|
+
}
|
|
2023
|
+
return Armadillo_Content_PaymentsTransactionMessage_PAYMENT_UNKNOWN
|
|
2024
|
+
}
|
|
2025
|
+
|
|
2026
|
+
func (x *Armadillo_Content_PaymentsTransactionMessage) GetExtendedContentMessage() *waArmadilloXMA.ExtendedContentMessage {
|
|
2027
|
+
if x != nil {
|
|
2028
|
+
return x.ExtendedContentMessage
|
|
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, 1}
|
|
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, 2}
|
|
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, 3}
|
|
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, 4}
|
|
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, 5}
|
|
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, 6}
|
|
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, 7}
|
|
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, 8}
|
|
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, 9}
|
|
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
|
+
const file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc = "" +
|
|
2607
|
+
"\n" +
|
|
2608
|
+
"3waArmadilloApplication/WAArmadilloApplication.proto\x12\x16WAArmadilloApplication\x1a#waArmadilloXMA/WAArmadilloXMA.proto\x1a\x17waCommon/WACommon.proto\"\x97?\n" +
|
|
2609
|
+
"\tArmadillo\x12C\n" +
|
|
2610
|
+
"\apayload\x18\x01 \x01(\v2).WAArmadilloApplication.Armadillo.PayloadR\apayload\x12F\n" +
|
|
2611
|
+
"\bmetadata\x18\x02 \x01(\v2*.WAArmadilloApplication.Armadillo.MetadataR\bmetadata\x1a\n" +
|
|
2612
|
+
"\n" +
|
|
2613
|
+
"\bMetadata\x1a\xd8\x02\n" +
|
|
2614
|
+
"\aPayload\x12E\n" +
|
|
2615
|
+
"\acontent\x18\x01 \x01(\v2).WAArmadilloApplication.Armadillo.ContentH\x00R\acontent\x12]\n" +
|
|
2616
|
+
"\x0fapplicationData\x18\x02 \x01(\v21.WAArmadilloApplication.Armadillo.ApplicationDataH\x00R\x0fapplicationData\x12B\n" +
|
|
2617
|
+
"\x06signal\x18\x03 \x01(\v2(.WAArmadilloApplication.Armadillo.SignalH\x00R\x06signal\x12X\n" +
|
|
2618
|
+
"\vsubProtocol\x18\x04 \x01(\v24.WAArmadilloApplication.Armadillo.SubProtocolPayloadH\x00R\vsubProtocolB\t\n" +
|
|
2619
|
+
"\apayload\x1aU\n" +
|
|
2620
|
+
"\x12SubProtocolPayload\x12?\n" +
|
|
2621
|
+
"\vfutureProof\x18\x01 \x01(\x0e2\x1d.WACommon.FutureProofBehaviorR\vfutureProof\x1a\xc2\x05\n" +
|
|
2622
|
+
"\x06Signal\x12|\n" +
|
|
2623
|
+
"\x17encryptedBackupsSecrets\x18\x01 \x01(\v2@.WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecretsH\x00R\x17encryptedBackupsSecrets\x1a\xaf\x04\n" +
|
|
2624
|
+
"\x17EncryptedBackupsSecrets\x12\x1a\n" +
|
|
2625
|
+
"\bbackupID\x18\x01 \x01(\x04R\bbackupID\x12\"\n" +
|
|
2626
|
+
"\fserverDataID\x18\x02 \x01(\x04R\fserverDataID\x12\\\n" +
|
|
2627
|
+
"\x05epoch\x18\x03 \x03(\v2F.WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.EpochR\x05epoch\x120\n" +
|
|
2628
|
+
"\x13tempOcmfClientState\x18\x04 \x01(\fR\x13tempOcmfClientState\x12&\n" +
|
|
2629
|
+
"\x0emailboxRootKey\x18\x05 \x01(\fR\x0emailboxRootKey\x12:\n" +
|
|
2630
|
+
"\x18obliviousValidationToken\x18\x06 \x01(\fR\x18obliviousValidationToken\x1a\xdf\x01\n" +
|
|
2631
|
+
"\x05Epoch\x12\x0e\n" +
|
|
2632
|
+
"\x02ID\x18\x01 \x01(\x04R\x02ID\x12\x16\n" +
|
|
2633
|
+
"\x06anonID\x18\x02 \x01(\fR\x06anonID\x12\x18\n" +
|
|
2634
|
+
"\arootKey\x18\x03 \x01(\fR\arootKey\x12j\n" +
|
|
2635
|
+
"\x06status\x18\x04 \x01(\x0e2R.WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch.EpochStatusR\x06status\"(\n" +
|
|
2636
|
+
"\vEpochStatus\x12\v\n" +
|
|
2637
|
+
"\aES_OPEN\x10\x01\x12\f\n" +
|
|
2638
|
+
"\bES_CLOSE\x10\x02B\b\n" +
|
|
2639
|
+
"\x06signal\x1a\xcf\x14\n" +
|
|
2640
|
+
"\x0fApplicationData\x12p\n" +
|
|
2641
|
+
"\fmetadataSync\x18\x01 \x01(\v2J.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotificationH\x00R\fmetadataSync\x12n\n" +
|
|
2642
|
+
"\raiBotResponse\x18\x02 \x01(\v2F.WAArmadilloApplication.Armadillo.ApplicationData.AIBotResponseMessageH\x00R\raiBotResponse\x12\x97\x01\n" +
|
|
2643
|
+
"\x1dmessageHistoryDocumentMessage\x18\x03 \x01(\v2O.WAArmadilloApplication.Armadillo.ApplicationData.MessageHistoryDocumentMessageH\x00R\x1dmessageHistoryDocumentMessage\x1aR\n" +
|
|
2644
|
+
"\x1dMessageHistoryDocumentMessage\x121\n" +
|
|
2645
|
+
"\bdocument\x18\x01 \x01(\v2\x15.WACommon.SubProtocolR\bdocument\x1a\x86\x01\n" +
|
|
2646
|
+
"\x14AIBotResponseMessage\x12 \n" +
|
|
2647
|
+
"\vsummonToken\x18\x01 \x01(\tR\vsummonToken\x12 \n" +
|
|
2648
|
+
"\vmessageText\x18\x02 \x01(\tR\vmessageText\x12*\n" +
|
|
2649
|
+
"\x10serializedExtras\x18\x03 \x01(\tR\x10serializedExtras\x1a\xd3\x0e\n" +
|
|
2650
|
+
"\x12MetadataSyncAction\x12u\n" +
|
|
2651
|
+
"\n" +
|
|
2652
|
+
"chatAction\x18e \x01(\v2S.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatActionH\x00R\n" +
|
|
2653
|
+
"chatAction\x12~\n" +
|
|
2654
|
+
"\rmessageAction\x18f \x01(\v2V.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageActionH\x00R\rmessageAction\x12(\n" +
|
|
2655
|
+
"\x0factionTimestamp\x18\x01 \x01(\x03R\x0factionTimestamp\x1a\xf1\x01\n" +
|
|
2656
|
+
"\x11SyncMessageAction\x12\x92\x01\n" +
|
|
2657
|
+
"\rmessageDelete\x18e \x01(\v2j.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.ActionMessageDeleteH\x00R\rmessageDelete\x12&\n" +
|
|
2658
|
+
"\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x1a\x15\n" +
|
|
2659
|
+
"\x13ActionMessageDeleteB\b\n" +
|
|
2660
|
+
"\x06action\x1a\xbb\a\n" +
|
|
2661
|
+
"\x0eSyncChatAction\x12\x89\x01\n" +
|
|
2662
|
+
"\vchatArchive\x18e \x01(\v2e.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchiveH\x00R\vchatArchive\x12\x86\x01\n" +
|
|
2663
|
+
"\n" +
|
|
2664
|
+
"chatDelete\x18f \x01(\v2d.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDeleteH\x00R\n" +
|
|
2665
|
+
"chatDelete\x12\x80\x01\n" +
|
|
2666
|
+
"\bchatRead\x18g \x01(\v2b.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatReadH\x00R\bchatRead\x12\x16\n" +
|
|
2667
|
+
"\x06chatID\x18\x01 \x01(\tR\x06chatID\x1a\xa5\x01\n" +
|
|
2668
|
+
"\x0eActionChatRead\x12\x7f\n" +
|
|
2669
|
+
"\fmessageRange\x18\x01 \x01(\v2[.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRangeR\fmessageRange\x12\x12\n" +
|
|
2670
|
+
"\x04read\x18\x02 \x01(\bR\x04read\x1a\x93\x01\n" +
|
|
2671
|
+
"\x10ActionChatDelete\x12\x7f\n" +
|
|
2672
|
+
"\fmessageRange\x18\x01 \x01(\v2[.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRangeR\fmessageRange\x1a\xb0\x01\n" +
|
|
2673
|
+
"\x11ActionChatArchive\x12\x7f\n" +
|
|
2674
|
+
"\fmessageRange\x18\x01 \x01(\v2[.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRangeR\fmessageRange\x12\x1a\n" +
|
|
2675
|
+
"\barchived\x18\x02 \x01(\bR\barchivedB\b\n" +
|
|
2676
|
+
"\x06action\x1aY\n" +
|
|
2677
|
+
"\x11SyncActionMessage\x12&\n" +
|
|
2678
|
+
"\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x12\x1c\n" +
|
|
2679
|
+
"\ttimestamp\x18\x02 \x01(\x03R\ttimestamp\x1a\x80\x02\n" +
|
|
2680
|
+
"\x16SyncActionMessageRange\x122\n" +
|
|
2681
|
+
"\x14lastMessageTimestamp\x18\x01 \x01(\x03R\x14lastMessageTimestamp\x12>\n" +
|
|
2682
|
+
"\x1alastSystemMessageTimestamp\x18\x02 \x01(\x03R\x1alastSystemMessageTimestamp\x12r\n" +
|
|
2683
|
+
"\bmessages\x18\x03 \x03(\v2V.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageR\bmessagesB\f\n" +
|
|
2684
|
+
"\n" +
|
|
2685
|
+
"actionType\x1az\n" +
|
|
2686
|
+
"\x18MetadataSyncNotification\x12^\n" +
|
|
2687
|
+
"\aactions\x18\x02 \x03(\v2D.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncActionR\aactionsB\x11\n" +
|
|
2688
|
+
"\x0fapplicationData\x1a\xa7 \n" +
|
|
2689
|
+
"\aContent\x12_\n" +
|
|
2690
|
+
"\rcommonSticker\x18\x01 \x01(\v27.WAArmadilloApplication.Armadillo.Content.CommonStickerH\x00R\rcommonSticker\x12h\n" +
|
|
2691
|
+
"\x10screenshotAction\x18\x03 \x01(\v2:.WAArmadilloApplication.Armadillo.Content.ScreenshotActionH\x00R\x10screenshotAction\x12`\n" +
|
|
2692
|
+
"\x16extendedContentMessage\x18\x04 \x01(\v2&.WAArmadilloXMA.ExtendedContentMessageH\x00R\x16extendedContentMessage\x12\\\n" +
|
|
2693
|
+
"\fravenMessage\x18\x05 \x01(\v26.WAArmadilloApplication.Armadillo.Content.RavenMessageH\x00R\fravenMessage\x12}\n" +
|
|
2694
|
+
"\x17ravenActionNotifMessage\x18\x06 \x01(\v2A.WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessageH\x00R\x17ravenActionNotifMessage\x12\x92\x01\n" +
|
|
2695
|
+
"\x1eextendedMessageContentWithSear\x18\a \x01(\v2H.WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSearH\x00R\x1eextendedMessageContentWithSear\x12q\n" +
|
|
2696
|
+
"\x13imageGalleryMessage\x18\b \x01(\v2=.WAArmadilloApplication.Armadillo.Content.ImageGalleryMessageH\x00R\x13imageGalleryMessage\x12\x86\x01\n" +
|
|
2697
|
+
"\x1apaymentsTransactionMessage\x18\n" +
|
|
2698
|
+
" \x01(\v2D.WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessageH\x00R\x1apaymentsTransactionMessage\x12q\n" +
|
|
2699
|
+
"\x13bumpExistingMessage\x18\v \x01(\v2=.WAArmadilloApplication.Armadillo.Content.BumpExistingMessageH\x00R\x13bumpExistingMessage\x12h\n" +
|
|
2700
|
+
"\x10noteReplyMessage\x18\r \x01(\v2:.WAArmadilloApplication.Armadillo.Content.NoteReplyMessageH\x00R\x10noteReplyMessage\x12d\n" +
|
|
2701
|
+
"\x10ravenMessageMsgr\x18\x0e \x01(\v26.WAArmadilloApplication.Armadillo.Content.RavenMessageH\x00R\x10ravenMessageMsgr\x12\x86\x01\n" +
|
|
2702
|
+
"\x1anetworkVerificationMessage\x18\x0f \x01(\v2D.WAArmadilloApplication.Armadillo.Content.NetworkVerificationMessageH\x00R\x1anetworkVerificationMessage\x1a\xba\a\n" +
|
|
2703
|
+
"\x1aPaymentsTransactionMessage\x12$\n" +
|
|
2704
|
+
"\rtransactionID\x18\x01 \x01(\x04R\rtransactionID\x12\x16\n" +
|
|
2705
|
+
"\x06amount\x18\x02 \x01(\tR\x06amount\x12\x1a\n" +
|
|
2706
|
+
"\bcurrency\x18\x03 \x01(\tR\bcurrency\x12x\n" +
|
|
2707
|
+
"\rpaymentStatus\x18\x04 \x01(\x0e2R.WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.PaymentStatusR\rpaymentStatus\x12^\n" +
|
|
2708
|
+
"\x16extendedContentMessage\x18\x05 \x01(\v2&.WAArmadilloXMA.ExtendedContentMessageR\x16extendedContentMessage\"\xe7\x04\n" +
|
|
2709
|
+
"\rPaymentStatus\x12\x13\n" +
|
|
2710
|
+
"\x0fPAYMENT_UNKNOWN\x10\x00\x12\x12\n" +
|
|
2711
|
+
"\x0eREQUEST_INITED\x10\x04\x12\x14\n" +
|
|
2712
|
+
"\x10REQUEST_DECLINED\x10\x05\x12\x1b\n" +
|
|
2713
|
+
"\x17REQUEST_TRANSFER_INITED\x10\x06\x12\x1e\n" +
|
|
2714
|
+
"\x1aREQUEST_TRANSFER_COMPLETED\x10\a\x12\x1b\n" +
|
|
2715
|
+
"\x17REQUEST_TRANSFER_FAILED\x10\b\x12\x14\n" +
|
|
2716
|
+
"\x10REQUEST_CANCELED\x10\t\x12\x13\n" +
|
|
2717
|
+
"\x0fREQUEST_EXPIRED\x10\n" +
|
|
2718
|
+
"\x12\x13\n" +
|
|
2719
|
+
"\x0fTRANSFER_INITED\x10\v\x12\x14\n" +
|
|
2720
|
+
"\x10TRANSFER_PENDING\x10\f\x12+\n" +
|
|
2721
|
+
"'TRANSFER_PENDING_RECIPIENT_VERIFICATION\x10\r\x12\x15\n" +
|
|
2722
|
+
"\x11TRANSFER_CANCELED\x10\x0e\x12\x16\n" +
|
|
2723
|
+
"\x12TRANSFER_COMPLETED\x10\x0f\x12;\n" +
|
|
2724
|
+
"7TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_CANCELED\x10\x10\x128\n" +
|
|
2725
|
+
"4TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_OTHER\x10\x11\x12\x15\n" +
|
|
2726
|
+
"\x11TRANSFER_REFUNDED\x10\x12\x12\x1b\n" +
|
|
2727
|
+
"\x17TRANSFER_PARTIAL_REFUND\x10\x13\x12\x19\n" +
|
|
2728
|
+
"\x15TRANSFER_CHARGED_BACK\x10\x14\x12\x14\n" +
|
|
2729
|
+
"\x10TRANSFER_EXPIRED\x10\x15\x12\x15\n" +
|
|
2730
|
+
"\x11TRANSFER_DECLINED\x10\x16\x12\x18\n" +
|
|
2731
|
+
"\x14TRANSFER_UNAVAILABLE\x10\x17\x1a8\n" +
|
|
2732
|
+
"\x1aNetworkVerificationMessage\x12\x1a\n" +
|
|
2733
|
+
"\bcodeText\x18\x01 \x01(\tR\bcodeText\x1a\xd4\x02\n" +
|
|
2734
|
+
"\x10NoteReplyMessage\x129\n" +
|
|
2735
|
+
"\vtextContent\x18\x04 \x01(\v2\x15.WACommon.MessageTextH\x00R\vtextContent\x12?\n" +
|
|
2736
|
+
"\x0estickerContent\x18\x05 \x01(\v2\x15.WACommon.SubProtocolH\x00R\x0estickerContent\x12;\n" +
|
|
2737
|
+
"\fvideoContent\x18\x06 \x01(\v2\x15.WACommon.SubProtocolH\x00R\fvideoContent\x12\x16\n" +
|
|
2738
|
+
"\x06noteID\x18\x01 \x01(\tR\x06noteID\x121\n" +
|
|
2739
|
+
"\bnoteText\x18\x02 \x01(\v2\x15.WACommon.MessageTextR\bnoteText\x12(\n" +
|
|
2740
|
+
"\x0fnoteTimestampMS\x18\x03 \x01(\x03R\x0fnoteTimestampMSB\x12\n" +
|
|
2741
|
+
"\x10noteReplyContent\x1a=\n" +
|
|
2742
|
+
"\x13BumpExistingMessage\x12&\n" +
|
|
2743
|
+
"\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x1aD\n" +
|
|
2744
|
+
"\x13ImageGalleryMessage\x12-\n" +
|
|
2745
|
+
"\x06images\x18\x01 \x03(\v2\x15.WACommon.SubProtocolR\x06images\x1a\xc3\x01\n" +
|
|
2746
|
+
"\x10ScreenshotAction\x12q\n" +
|
|
2747
|
+
"\x0escreenshotType\x18\x01 \x01(\x0e2I.WAArmadilloApplication.Armadillo.Content.ScreenshotAction.ScreenshotTypeR\x0escreenshotType\"<\n" +
|
|
2748
|
+
"\x0eScreenshotType\x12\x14\n" +
|
|
2749
|
+
"\x10SCREENSHOT_IMAGE\x10\x01\x12\x14\n" +
|
|
2750
|
+
"\x10SCREEN_RECORDING\x10\x02\x1a\xf3\x01\n" +
|
|
2751
|
+
"\x1eExtendedContentMessageWithSear\x12\x16\n" +
|
|
2752
|
+
"\x06searID\x18\x01 \x01(\tR\x06searID\x12\x18\n" +
|
|
2753
|
+
"\apayload\x18\x02 \x01(\fR\apayload\x12\x1c\n" +
|
|
2754
|
+
"\tnativeURL\x18\x03 \x01(\tR\tnativeURL\x12K\n" +
|
|
2755
|
+
"\x15searAssociatedMessage\x18\x04 \x01(\v2\x15.WACommon.SubProtocolR\x15searAssociatedMessage\x124\n" +
|
|
2756
|
+
"\x15searSentWithMessageID\x18\x05 \x01(\tR\x15searSentWithMessageID\x1a\x96\x02\n" +
|
|
2757
|
+
"\x17RavenActionNotifMessage\x12&\n" +
|
|
2758
|
+
"\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x12(\n" +
|
|
2759
|
+
"\x0factionTimestamp\x18\x02 \x01(\x03R\x0factionTimestamp\x12l\n" +
|
|
2760
|
+
"\n" +
|
|
2761
|
+
"actionType\x18\x03 \x01(\x0e2L.WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.ActionTypeR\n" +
|
|
2762
|
+
"actionType\";\n" +
|
|
2763
|
+
"\n" +
|
|
2764
|
+
"ActionType\x12\n" +
|
|
2765
|
+
"\n" +
|
|
2766
|
+
"\x06PLAYED\x10\x00\x12\x0e\n" +
|
|
2767
|
+
"\n" +
|
|
2768
|
+
"SCREENSHOT\x10\x01\x12\x11\n" +
|
|
2769
|
+
"\rFORCE_DISABLE\x10\x02\x1a\xc8\x02\n" +
|
|
2770
|
+
"\fRavenMessage\x12;\n" +
|
|
2771
|
+
"\fimageMessage\x18\x02 \x01(\v2\x15.WACommon.SubProtocolH\x00R\fimageMessage\x12;\n" +
|
|
2772
|
+
"\fvideoMessage\x18\x03 \x01(\v2\x15.WACommon.SubProtocolH\x00R\fvideoMessage\x12j\n" +
|
|
2773
|
+
"\rephemeralType\x18\x01 \x01(\x0e2D.WAArmadilloApplication.Armadillo.Content.RavenMessage.EphemeralTypeR\rephemeralType\"B\n" +
|
|
2774
|
+
"\rEphemeralType\x12\r\n" +
|
|
2775
|
+
"\tVIEW_ONCE\x10\x00\x12\x10\n" +
|
|
2776
|
+
"\fALLOW_REPLAY\x10\x01\x12\x10\n" +
|
|
2777
|
+
"\fKEEP_IN_CHAT\x10\x02B\x0e\n" +
|
|
2778
|
+
"\fmediaContent\x1a\xb6\x01\n" +
|
|
2779
|
+
"\rCommonSticker\x12e\n" +
|
|
2780
|
+
"\vstickerType\x18\x01 \x01(\x0e2C.WAArmadilloApplication.Armadillo.Content.CommonSticker.StickerTypeR\vstickerType\">\n" +
|
|
2781
|
+
"\vStickerType\x12\x0e\n" +
|
|
2782
|
+
"\n" +
|
|
2783
|
+
"SMALL_LIKE\x10\x01\x12\x0f\n" +
|
|
2784
|
+
"\vMEDIUM_LIKE\x10\x02\x12\x0e\n" +
|
|
2785
|
+
"\n" +
|
|
2786
|
+
"LARGE_LIKE\x10\x03B\t\n" +
|
|
2787
|
+
"\acontentB2Z0go.mau.fi/whatsmeow/proto/waArmadilloApplication"
|
|
2788
|
+
|
|
2789
|
+
var (
|
|
2790
|
+
file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescOnce sync.Once
|
|
2791
|
+
file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData []byte
|
|
2792
|
+
)
|
|
2793
|
+
|
|
2794
|
+
func file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP() []byte {
|
|
2795
|
+
file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescOnce.Do(func() {
|
|
2796
|
+
file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc), len(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc)))
|
|
2797
|
+
})
|
|
2798
|
+
return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData
|
|
2799
|
+
}
|
|
2800
|
+
|
|
2801
|
+
var file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes = make([]protoimpl.EnumInfo, 6)
|
|
2802
|
+
var file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes = make([]protoimpl.MessageInfo, 31)
|
|
2803
|
+
var file_waArmadilloApplication_WAArmadilloApplication_proto_goTypes = []any{
|
|
2804
|
+
(Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus)(0), // 0: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch.EpochStatus
|
|
2805
|
+
(Armadillo_Content_PaymentsTransactionMessage_PaymentStatus)(0), // 1: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.PaymentStatus
|
|
2806
|
+
(Armadillo_Content_ScreenshotAction_ScreenshotType)(0), // 2: WAArmadilloApplication.Armadillo.Content.ScreenshotAction.ScreenshotType
|
|
2807
|
+
(Armadillo_Content_RavenActionNotifMessage_ActionType)(0), // 3: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.ActionType
|
|
2808
|
+
(Armadillo_Content_RavenMessage_EphemeralType)(0), // 4: WAArmadilloApplication.Armadillo.Content.RavenMessage.EphemeralType
|
|
2809
|
+
(Armadillo_Content_CommonSticker_StickerType)(0), // 5: WAArmadilloApplication.Armadillo.Content.CommonSticker.StickerType
|
|
2810
|
+
(*Armadillo)(nil), // 6: WAArmadilloApplication.Armadillo
|
|
2811
|
+
(*Armadillo_Metadata)(nil), // 7: WAArmadilloApplication.Armadillo.Metadata
|
|
2812
|
+
(*Armadillo_Payload)(nil), // 8: WAArmadilloApplication.Armadillo.Payload
|
|
2813
|
+
(*Armadillo_SubProtocolPayload)(nil), // 9: WAArmadilloApplication.Armadillo.SubProtocolPayload
|
|
2814
|
+
(*Armadillo_Signal)(nil), // 10: WAArmadilloApplication.Armadillo.Signal
|
|
2815
|
+
(*Armadillo_ApplicationData)(nil), // 11: WAArmadilloApplication.Armadillo.ApplicationData
|
|
2816
|
+
(*Armadillo_Content)(nil), // 12: WAArmadilloApplication.Armadillo.Content
|
|
2817
|
+
(*Armadillo_Signal_EncryptedBackupsSecrets)(nil), // 13: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets
|
|
2818
|
+
(*Armadillo_Signal_EncryptedBackupsSecrets_Epoch)(nil), // 14: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch
|
|
2819
|
+
(*Armadillo_ApplicationData_MessageHistoryDocumentMessage)(nil), // 15: WAArmadilloApplication.Armadillo.ApplicationData.MessageHistoryDocumentMessage
|
|
2820
|
+
(*Armadillo_ApplicationData_AIBotResponseMessage)(nil), // 16: WAArmadilloApplication.Armadillo.ApplicationData.AIBotResponseMessage
|
|
2821
|
+
(*Armadillo_ApplicationData_MetadataSyncAction)(nil), // 17: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction
|
|
2822
|
+
(*Armadillo_ApplicationData_MetadataSyncNotification)(nil), // 18: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotification
|
|
2823
|
+
(*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction)(nil), // 19: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction
|
|
2824
|
+
(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction)(nil), // 20: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction
|
|
2825
|
+
(*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage)(nil), // 21: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessage
|
|
2826
|
+
(*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange)(nil), // 22: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
|
|
2827
|
+
(*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete)(nil), // 23: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.ActionMessageDelete
|
|
2828
|
+
(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead)(nil), // 24: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatRead
|
|
2829
|
+
(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete)(nil), // 25: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDelete
|
|
2830
|
+
(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive)(nil), // 26: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchive
|
|
2831
|
+
(*Armadillo_Content_PaymentsTransactionMessage)(nil), // 27: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage
|
|
2832
|
+
(*Armadillo_Content_NetworkVerificationMessage)(nil), // 28: WAArmadilloApplication.Armadillo.Content.NetworkVerificationMessage
|
|
2833
|
+
(*Armadillo_Content_NoteReplyMessage)(nil), // 29: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage
|
|
2834
|
+
(*Armadillo_Content_BumpExistingMessage)(nil), // 30: WAArmadilloApplication.Armadillo.Content.BumpExistingMessage
|
|
2835
|
+
(*Armadillo_Content_ImageGalleryMessage)(nil), // 31: WAArmadilloApplication.Armadillo.Content.ImageGalleryMessage
|
|
2836
|
+
(*Armadillo_Content_ScreenshotAction)(nil), // 32: WAArmadilloApplication.Armadillo.Content.ScreenshotAction
|
|
2837
|
+
(*Armadillo_Content_ExtendedContentMessageWithSear)(nil), // 33: WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSear
|
|
2838
|
+
(*Armadillo_Content_RavenActionNotifMessage)(nil), // 34: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage
|
|
2839
|
+
(*Armadillo_Content_RavenMessage)(nil), // 35: WAArmadilloApplication.Armadillo.Content.RavenMessage
|
|
2840
|
+
(*Armadillo_Content_CommonSticker)(nil), // 36: WAArmadilloApplication.Armadillo.Content.CommonSticker
|
|
2841
|
+
(waCommon.FutureProofBehavior)(0), // 37: WACommon.FutureProofBehavior
|
|
2842
|
+
(*waArmadilloXMA.ExtendedContentMessage)(nil), // 38: WAArmadilloXMA.ExtendedContentMessage
|
|
2843
|
+
(*waCommon.SubProtocol)(nil), // 39: WACommon.SubProtocol
|
|
2844
|
+
(*waCommon.MessageKey)(nil), // 40: WACommon.MessageKey
|
|
2845
|
+
(*waCommon.MessageText)(nil), // 41: WACommon.MessageText
|
|
2846
|
+
}
|
|
2847
|
+
var file_waArmadilloApplication_WAArmadilloApplication_proto_depIdxs = []int32{
|
|
2848
|
+
8, // 0: WAArmadilloApplication.Armadillo.payload:type_name -> WAArmadilloApplication.Armadillo.Payload
|
|
2849
|
+
7, // 1: WAArmadilloApplication.Armadillo.metadata:type_name -> WAArmadilloApplication.Armadillo.Metadata
|
|
2850
|
+
12, // 2: WAArmadilloApplication.Armadillo.Payload.content:type_name -> WAArmadilloApplication.Armadillo.Content
|
|
2851
|
+
11, // 3: WAArmadilloApplication.Armadillo.Payload.applicationData:type_name -> WAArmadilloApplication.Armadillo.ApplicationData
|
|
2852
|
+
10, // 4: WAArmadilloApplication.Armadillo.Payload.signal:type_name -> WAArmadilloApplication.Armadillo.Signal
|
|
2853
|
+
9, // 5: WAArmadilloApplication.Armadillo.Payload.subProtocol:type_name -> WAArmadilloApplication.Armadillo.SubProtocolPayload
|
|
2854
|
+
37, // 6: WAArmadilloApplication.Armadillo.SubProtocolPayload.futureProof:type_name -> WACommon.FutureProofBehavior
|
|
2855
|
+
13, // 7: WAArmadilloApplication.Armadillo.Signal.encryptedBackupsSecrets:type_name -> WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets
|
|
2856
|
+
18, // 8: WAArmadilloApplication.Armadillo.ApplicationData.metadataSync:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotification
|
|
2857
|
+
16, // 9: WAArmadilloApplication.Armadillo.ApplicationData.aiBotResponse:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.AIBotResponseMessage
|
|
2858
|
+
15, // 10: WAArmadilloApplication.Armadillo.ApplicationData.messageHistoryDocumentMessage:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MessageHistoryDocumentMessage
|
|
2859
|
+
36, // 11: WAArmadilloApplication.Armadillo.Content.commonSticker:type_name -> WAArmadilloApplication.Armadillo.Content.CommonSticker
|
|
2860
|
+
32, // 12: WAArmadilloApplication.Armadillo.Content.screenshotAction:type_name -> WAArmadilloApplication.Armadillo.Content.ScreenshotAction
|
|
2861
|
+
38, // 13: WAArmadilloApplication.Armadillo.Content.extendedContentMessage:type_name -> WAArmadilloXMA.ExtendedContentMessage
|
|
2862
|
+
35, // 14: WAArmadilloApplication.Armadillo.Content.ravenMessage:type_name -> WAArmadilloApplication.Armadillo.Content.RavenMessage
|
|
2863
|
+
34, // 15: WAArmadilloApplication.Armadillo.Content.ravenActionNotifMessage:type_name -> WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage
|
|
2864
|
+
33, // 16: WAArmadilloApplication.Armadillo.Content.extendedMessageContentWithSear:type_name -> WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSear
|
|
2865
|
+
31, // 17: WAArmadilloApplication.Armadillo.Content.imageGalleryMessage:type_name -> WAArmadilloApplication.Armadillo.Content.ImageGalleryMessage
|
|
2866
|
+
27, // 18: WAArmadilloApplication.Armadillo.Content.paymentsTransactionMessage:type_name -> WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage
|
|
2867
|
+
30, // 19: WAArmadilloApplication.Armadillo.Content.bumpExistingMessage:type_name -> WAArmadilloApplication.Armadillo.Content.BumpExistingMessage
|
|
2868
|
+
29, // 20: WAArmadilloApplication.Armadillo.Content.noteReplyMessage:type_name -> WAArmadilloApplication.Armadillo.Content.NoteReplyMessage
|
|
2869
|
+
35, // 21: WAArmadilloApplication.Armadillo.Content.ravenMessageMsgr:type_name -> WAArmadilloApplication.Armadillo.Content.RavenMessage
|
|
2870
|
+
28, // 22: WAArmadilloApplication.Armadillo.Content.networkVerificationMessage:type_name -> WAArmadilloApplication.Armadillo.Content.NetworkVerificationMessage
|
|
2871
|
+
14, // 23: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.epoch:type_name -> WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch
|
|
2872
|
+
0, // 24: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch.status:type_name -> WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch.EpochStatus
|
|
2873
|
+
39, // 25: WAArmadilloApplication.Armadillo.ApplicationData.MessageHistoryDocumentMessage.document:type_name -> WACommon.SubProtocol
|
|
2874
|
+
20, // 26: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.chatAction:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction
|
|
2875
|
+
19, // 27: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.messageAction:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction
|
|
2876
|
+
17, // 28: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotification.actions:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction
|
|
2877
|
+
23, // 29: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.messageDelete:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.ActionMessageDelete
|
|
2878
|
+
40, // 30: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.key:type_name -> WACommon.MessageKey
|
|
2879
|
+
26, // 31: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.chatArchive:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchive
|
|
2880
|
+
25, // 32: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.chatDelete:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDelete
|
|
2881
|
+
24, // 33: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.chatRead:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatRead
|
|
2882
|
+
40, // 34: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
|
|
2883
|
+
21, // 35: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange.messages:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessage
|
|
2884
|
+
22, // 36: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatRead.messageRange:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
|
|
2885
|
+
22, // 37: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDelete.messageRange:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
|
|
2886
|
+
22, // 38: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchive.messageRange:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
|
|
2887
|
+
1, // 39: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.paymentStatus:type_name -> WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.PaymentStatus
|
|
2888
|
+
38, // 40: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.extendedContentMessage:type_name -> WAArmadilloXMA.ExtendedContentMessage
|
|
2889
|
+
41, // 41: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.textContent:type_name -> WACommon.MessageText
|
|
2890
|
+
39, // 42: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.stickerContent:type_name -> WACommon.SubProtocol
|
|
2891
|
+
39, // 43: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.videoContent:type_name -> WACommon.SubProtocol
|
|
2892
|
+
41, // 44: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.noteText:type_name -> WACommon.MessageText
|
|
2893
|
+
40, // 45: WAArmadilloApplication.Armadillo.Content.BumpExistingMessage.key:type_name -> WACommon.MessageKey
|
|
2894
|
+
39, // 46: WAArmadilloApplication.Armadillo.Content.ImageGalleryMessage.images:type_name -> WACommon.SubProtocol
|
|
2895
|
+
2, // 47: WAArmadilloApplication.Armadillo.Content.ScreenshotAction.screenshotType:type_name -> WAArmadilloApplication.Armadillo.Content.ScreenshotAction.ScreenshotType
|
|
2896
|
+
39, // 48: WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSear.searAssociatedMessage:type_name -> WACommon.SubProtocol
|
|
2897
|
+
40, // 49: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.key:type_name -> WACommon.MessageKey
|
|
2898
|
+
3, // 50: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.actionType:type_name -> WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.ActionType
|
|
2899
|
+
39, // 51: WAArmadilloApplication.Armadillo.Content.RavenMessage.imageMessage:type_name -> WACommon.SubProtocol
|
|
2900
|
+
39, // 52: WAArmadilloApplication.Armadillo.Content.RavenMessage.videoMessage:type_name -> WACommon.SubProtocol
|
|
2901
|
+
4, // 53: WAArmadilloApplication.Armadillo.Content.RavenMessage.ephemeralType:type_name -> WAArmadilloApplication.Armadillo.Content.RavenMessage.EphemeralType
|
|
2902
|
+
5, // 54: WAArmadilloApplication.Armadillo.Content.CommonSticker.stickerType:type_name -> WAArmadilloApplication.Armadillo.Content.CommonSticker.StickerType
|
|
2903
|
+
55, // [55:55] is the sub-list for method output_type
|
|
2904
|
+
55, // [55:55] is the sub-list for method input_type
|
|
2905
|
+
55, // [55:55] is the sub-list for extension type_name
|
|
2906
|
+
55, // [55:55] is the sub-list for extension extendee
|
|
2907
|
+
0, // [0:55] is the sub-list for field type_name
|
|
2908
|
+
}
|
|
2909
|
+
|
|
2910
|
+
func init() { file_waArmadilloApplication_WAArmadilloApplication_proto_init() }
|
|
2911
|
+
func file_waArmadilloApplication_WAArmadilloApplication_proto_init() {
|
|
2912
|
+
if File_waArmadilloApplication_WAArmadilloApplication_proto != nil {
|
|
2913
|
+
return
|
|
2914
|
+
}
|
|
2915
|
+
file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[2].OneofWrappers = []any{
|
|
2916
|
+
(*Armadillo_Payload_Content)(nil),
|
|
2917
|
+
(*Armadillo_Payload_ApplicationData)(nil),
|
|
2918
|
+
(*Armadillo_Payload_Signal)(nil),
|
|
2919
|
+
(*Armadillo_Payload_SubProtocol)(nil),
|
|
2920
|
+
}
|
|
2921
|
+
file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[4].OneofWrappers = []any{
|
|
2922
|
+
(*Armadillo_Signal_EncryptedBackupsSecrets_)(nil),
|
|
2923
|
+
}
|
|
2924
|
+
file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[5].OneofWrappers = []any{
|
|
2925
|
+
(*Armadillo_ApplicationData_MetadataSync)(nil),
|
|
2926
|
+
(*Armadillo_ApplicationData_AiBotResponse)(nil),
|
|
2927
|
+
(*Armadillo_ApplicationData_MessageHistoryDocumentMessage_)(nil),
|
|
2928
|
+
}
|
|
2929
|
+
file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[6].OneofWrappers = []any{
|
|
2930
|
+
(*Armadillo_Content_CommonSticker_)(nil),
|
|
2931
|
+
(*Armadillo_Content_ScreenshotAction_)(nil),
|
|
2932
|
+
(*Armadillo_Content_ExtendedContentMessage)(nil),
|
|
2933
|
+
(*Armadillo_Content_RavenMessage_)(nil),
|
|
2934
|
+
(*Armadillo_Content_RavenActionNotifMessage_)(nil),
|
|
2935
|
+
(*Armadillo_Content_ExtendedMessageContentWithSear)(nil),
|
|
2936
|
+
(*Armadillo_Content_ImageGalleryMessage_)(nil),
|
|
2937
|
+
(*Armadillo_Content_PaymentsTransactionMessage_)(nil),
|
|
2938
|
+
(*Armadillo_Content_BumpExistingMessage_)(nil),
|
|
2939
|
+
(*Armadillo_Content_NoteReplyMessage_)(nil),
|
|
2940
|
+
(*Armadillo_Content_RavenMessageMsgr)(nil),
|
|
2941
|
+
(*Armadillo_Content_NetworkVerificationMessage_)(nil),
|
|
2942
|
+
}
|
|
2943
|
+
file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[11].OneofWrappers = []any{
|
|
2944
|
+
(*Armadillo_ApplicationData_MetadataSyncAction_ChatAction)(nil),
|
|
2945
|
+
(*Armadillo_ApplicationData_MetadataSyncAction_MessageAction)(nil),
|
|
2946
|
+
}
|
|
2947
|
+
file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[13].OneofWrappers = []any{
|
|
2948
|
+
(*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete)(nil),
|
|
2949
|
+
}
|
|
2950
|
+
file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[14].OneofWrappers = []any{
|
|
2951
|
+
(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive)(nil),
|
|
2952
|
+
(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete)(nil),
|
|
2953
|
+
(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead)(nil),
|
|
2954
|
+
}
|
|
2955
|
+
file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[23].OneofWrappers = []any{
|
|
2956
|
+
(*Armadillo_Content_NoteReplyMessage_TextContent)(nil),
|
|
2957
|
+
(*Armadillo_Content_NoteReplyMessage_StickerContent)(nil),
|
|
2958
|
+
(*Armadillo_Content_NoteReplyMessage_VideoContent)(nil),
|
|
2959
|
+
}
|
|
2960
|
+
file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[29].OneofWrappers = []any{
|
|
2961
|
+
(*Armadillo_Content_RavenMessage_ImageMessage)(nil),
|
|
2962
|
+
(*Armadillo_Content_RavenMessage_VideoMessage)(nil),
|
|
2963
|
+
}
|
|
2964
|
+
type x struct{}
|
|
2965
|
+
out := protoimpl.TypeBuilder{
|
|
2966
|
+
File: protoimpl.DescBuilder{
|
|
2967
|
+
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
2968
|
+
RawDescriptor: unsafe.Slice(unsafe.StringData(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc), len(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc)),
|
|
2969
|
+
NumEnums: 6,
|
|
2970
|
+
NumMessages: 31,
|
|
2971
|
+
NumExtensions: 0,
|
|
2972
|
+
NumServices: 0,
|
|
2973
|
+
},
|
|
2974
|
+
GoTypes: file_waArmadilloApplication_WAArmadilloApplication_proto_goTypes,
|
|
2975
|
+
DependencyIndexes: file_waArmadilloApplication_WAArmadilloApplication_proto_depIdxs,
|
|
2976
|
+
EnumInfos: file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes,
|
|
2977
|
+
MessageInfos: file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes,
|
|
2978
|
+
}.Build()
|
|
2979
|
+
File_waArmadilloApplication_WAArmadilloApplication_proto = out.File
|
|
2980
|
+
file_waArmadilloApplication_WAArmadilloApplication_proto_goTypes = nil
|
|
2981
|
+
file_waArmadilloApplication_WAArmadilloApplication_proto_depIdxs = nil
|
|
2982
|
+
}
|