slidge-whatsapp 0.2.2__cp311-cp311-manylinux_2_36_aarch64.whl → 0.2.5__cp311-cp311-manylinux_2_36_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of slidge-whatsapp might be problematic. Click here for more details.
- slidge_whatsapp/__init__.py +26 -8
- slidge_whatsapp/__main__.py +3 -0
- slidge_whatsapp/contact.py +1 -1
- slidge_whatsapp/event.go +56 -0
- slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.h +180 -143
- slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +134 -109
- slidge_whatsapp/generated/go.py +1 -1
- slidge_whatsapp/generated/whatsapp.c +1768 -1297
- slidge_whatsapp/generated/whatsapp.go +1356 -1111
- slidge_whatsapp/generated/whatsapp.py +1389 -1069
- slidge_whatsapp/generated/whatsapp_go.h +180 -143
- slidge_whatsapp/go.mod +11 -9
- slidge_whatsapp/go.sum +16 -16
- slidge_whatsapp/group.py +7 -2
- slidge_whatsapp/media/__init__.py +0 -0
- slidge_whatsapp/media/media.go +8 -3
- slidge_whatsapp/session.go +4 -5
- 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 +24 -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 +69 -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 +201 -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 +56 -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 +46 -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 +603 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/backup.go +85 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/callback.go +411 -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 +258039 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +13526 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3.go +2281 -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 +85 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.go +93 -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/rs/zerolog/.gitignore +25 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/CNAME +1 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/README.md +782 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/_config.yml +1 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/array.go +240 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/console.go +520 -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.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 +134 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/syslog.go +89 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/writer.go +346 -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 +141 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupSessionBuilder.go +84 -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 +11 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/kdf/HKDF.go +47 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/chain/ChainKey.go +127 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/identity/IdentityKey.go +47 -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 +245 -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 +1500 -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 +640 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/WhisperTextProtocol.proto +45 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/session/Session.go +275 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/session/SessionCipher.go +375 -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 +29 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/MessageKeyStore.go +21 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/PreKeyStore.go +21 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SessionStore.go +17 -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 +24 -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/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/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 +311 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +322 -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 +137 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/lthash/lthash.go +58 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +407 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +99 -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 +142 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +112 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +851 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +196 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +201 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +370 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +260 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +930 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/handshake.go +165 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +660 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +84 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaconn.go +96 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaretry.go +184 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +683 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +287 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +376 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +421 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +242 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +248 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +251 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +138 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/privacysettings.go +171 -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 +485 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.raw +0 -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 +2803 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.raw +0 -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 +874 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +139 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.go +392 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.raw +23 -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 +134 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.raw +7 -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 +456 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.proto +41 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/legacy.go +11 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.pb.go +892 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.proto +100 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.go +2653 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.raw +0 -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 +185 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +13 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +22080 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +2299 -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 +2047 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +217 -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 +1977 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.proto +190 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.go +249 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.proto +20 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.go +1016 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.proto +88 -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 +808 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.raw +0 -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 +702 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.raw +0 -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 +805 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.raw +0 -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 +4675 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +461 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.go +410 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.raw +0 -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 +802 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.raw +0 -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 +2021 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +245 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +3895 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +577 -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 +238 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/request.go +225 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +440 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +1128 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +646 -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 +185 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +214 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/signal.go +195 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +270 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +773 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrade.go +296 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +194 -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 +600 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/group.go +155 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +263 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +98 -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 +63 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/upload.go +251 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +864 -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/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/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 +707 -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 +2657 -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 +2644 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s +779 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go +2644 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s +779 -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 +1458 -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 +1932 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +3603 -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 +4686 -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 +164 -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 +1270 -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_go120.go +94 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe_go121.go +73 -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 +139 -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 +573 -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_go120.go +98 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe_go121.go +86 -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 +173 -0
- slidge_whatsapp-0.2.5.dist-info/METADATA +63 -0
- slidge_whatsapp-0.2.5.dist-info/RECORD +1140 -0
- {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.5.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.5.dist-info}/LICENSE +0 -0
- {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.5.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,4675 @@
|
|
|
1
|
+
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
2
|
+
// versions:
|
|
3
|
+
// protoc-gen-go v1.36.1
|
|
4
|
+
// protoc v3.21.12
|
|
5
|
+
// source: waSyncAction/WASyncAction.proto
|
|
6
|
+
|
|
7
|
+
package waSyncAction
|
|
8
|
+
|
|
9
|
+
import (
|
|
10
|
+
reflect "reflect"
|
|
11
|
+
sync "sync"
|
|
12
|
+
|
|
13
|
+
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
14
|
+
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
15
|
+
|
|
16
|
+
waChatLockSettings "go.mau.fi/whatsmeow/proto/waChatLockSettings"
|
|
17
|
+
waCommon "go.mau.fi/whatsmeow/proto/waCommon"
|
|
18
|
+
waDeviceCapabilities "go.mau.fi/whatsmeow/proto/waDeviceCapabilities"
|
|
19
|
+
|
|
20
|
+
_ "embed"
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
const (
|
|
24
|
+
// Verify that this generated code is sufficiently up-to-date.
|
|
25
|
+
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
26
|
+
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
27
|
+
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
type CallLogRecord_CallType int32
|
|
31
|
+
|
|
32
|
+
const (
|
|
33
|
+
CallLogRecord_REGULAR CallLogRecord_CallType = 0
|
|
34
|
+
CallLogRecord_SCHEDULED_CALL CallLogRecord_CallType = 1
|
|
35
|
+
CallLogRecord_VOICE_CHAT CallLogRecord_CallType = 2
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
// Enum value maps for CallLogRecord_CallType.
|
|
39
|
+
var (
|
|
40
|
+
CallLogRecord_CallType_name = map[int32]string{
|
|
41
|
+
0: "REGULAR",
|
|
42
|
+
1: "SCHEDULED_CALL",
|
|
43
|
+
2: "VOICE_CHAT",
|
|
44
|
+
}
|
|
45
|
+
CallLogRecord_CallType_value = map[string]int32{
|
|
46
|
+
"REGULAR": 0,
|
|
47
|
+
"SCHEDULED_CALL": 1,
|
|
48
|
+
"VOICE_CHAT": 2,
|
|
49
|
+
}
|
|
50
|
+
)
|
|
51
|
+
|
|
52
|
+
func (x CallLogRecord_CallType) Enum() *CallLogRecord_CallType {
|
|
53
|
+
p := new(CallLogRecord_CallType)
|
|
54
|
+
*p = x
|
|
55
|
+
return p
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
func (x CallLogRecord_CallType) String() string {
|
|
59
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
func (CallLogRecord_CallType) Descriptor() protoreflect.EnumDescriptor {
|
|
63
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[0].Descriptor()
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
func (CallLogRecord_CallType) Type() protoreflect.EnumType {
|
|
67
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[0]
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
func (x CallLogRecord_CallType) Number() protoreflect.EnumNumber {
|
|
71
|
+
return protoreflect.EnumNumber(x)
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// Deprecated: Do not use.
|
|
75
|
+
func (x *CallLogRecord_CallType) UnmarshalJSON(b []byte) error {
|
|
76
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
77
|
+
if err != nil {
|
|
78
|
+
return err
|
|
79
|
+
}
|
|
80
|
+
*x = CallLogRecord_CallType(num)
|
|
81
|
+
return nil
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
// Deprecated: Use CallLogRecord_CallType.Descriptor instead.
|
|
85
|
+
func (CallLogRecord_CallType) EnumDescriptor() ([]byte, []int) {
|
|
86
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{0, 0}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
type CallLogRecord_SilenceReason int32
|
|
90
|
+
|
|
91
|
+
const (
|
|
92
|
+
CallLogRecord_NONE CallLogRecord_SilenceReason = 0
|
|
93
|
+
CallLogRecord_SCHEDULED CallLogRecord_SilenceReason = 1
|
|
94
|
+
CallLogRecord_PRIVACY CallLogRecord_SilenceReason = 2
|
|
95
|
+
CallLogRecord_LIGHTWEIGHT CallLogRecord_SilenceReason = 3
|
|
96
|
+
)
|
|
97
|
+
|
|
98
|
+
// Enum value maps for CallLogRecord_SilenceReason.
|
|
99
|
+
var (
|
|
100
|
+
CallLogRecord_SilenceReason_name = map[int32]string{
|
|
101
|
+
0: "NONE",
|
|
102
|
+
1: "SCHEDULED",
|
|
103
|
+
2: "PRIVACY",
|
|
104
|
+
3: "LIGHTWEIGHT",
|
|
105
|
+
}
|
|
106
|
+
CallLogRecord_SilenceReason_value = map[string]int32{
|
|
107
|
+
"NONE": 0,
|
|
108
|
+
"SCHEDULED": 1,
|
|
109
|
+
"PRIVACY": 2,
|
|
110
|
+
"LIGHTWEIGHT": 3,
|
|
111
|
+
}
|
|
112
|
+
)
|
|
113
|
+
|
|
114
|
+
func (x CallLogRecord_SilenceReason) Enum() *CallLogRecord_SilenceReason {
|
|
115
|
+
p := new(CallLogRecord_SilenceReason)
|
|
116
|
+
*p = x
|
|
117
|
+
return p
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
func (x CallLogRecord_SilenceReason) String() string {
|
|
121
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
func (CallLogRecord_SilenceReason) Descriptor() protoreflect.EnumDescriptor {
|
|
125
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[1].Descriptor()
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
func (CallLogRecord_SilenceReason) Type() protoreflect.EnumType {
|
|
129
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[1]
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
func (x CallLogRecord_SilenceReason) Number() protoreflect.EnumNumber {
|
|
133
|
+
return protoreflect.EnumNumber(x)
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// Deprecated: Do not use.
|
|
137
|
+
func (x *CallLogRecord_SilenceReason) UnmarshalJSON(b []byte) error {
|
|
138
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
139
|
+
if err != nil {
|
|
140
|
+
return err
|
|
141
|
+
}
|
|
142
|
+
*x = CallLogRecord_SilenceReason(num)
|
|
143
|
+
return nil
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
// Deprecated: Use CallLogRecord_SilenceReason.Descriptor instead.
|
|
147
|
+
func (CallLogRecord_SilenceReason) EnumDescriptor() ([]byte, []int) {
|
|
148
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{0, 1}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
type CallLogRecord_CallResult int32
|
|
152
|
+
|
|
153
|
+
const (
|
|
154
|
+
CallLogRecord_CONNECTED CallLogRecord_CallResult = 0
|
|
155
|
+
CallLogRecord_REJECTED CallLogRecord_CallResult = 1
|
|
156
|
+
CallLogRecord_CANCELLED CallLogRecord_CallResult = 2
|
|
157
|
+
CallLogRecord_ACCEPTEDELSEWHERE CallLogRecord_CallResult = 3
|
|
158
|
+
CallLogRecord_MISSED CallLogRecord_CallResult = 4
|
|
159
|
+
CallLogRecord_INVALID CallLogRecord_CallResult = 5
|
|
160
|
+
CallLogRecord_UNAVAILABLE CallLogRecord_CallResult = 6
|
|
161
|
+
CallLogRecord_UPCOMING CallLogRecord_CallResult = 7
|
|
162
|
+
CallLogRecord_FAILED CallLogRecord_CallResult = 8
|
|
163
|
+
CallLogRecord_ABANDONED CallLogRecord_CallResult = 9
|
|
164
|
+
CallLogRecord_ONGOING CallLogRecord_CallResult = 10
|
|
165
|
+
)
|
|
166
|
+
|
|
167
|
+
// Enum value maps for CallLogRecord_CallResult.
|
|
168
|
+
var (
|
|
169
|
+
CallLogRecord_CallResult_name = map[int32]string{
|
|
170
|
+
0: "CONNECTED",
|
|
171
|
+
1: "REJECTED",
|
|
172
|
+
2: "CANCELLED",
|
|
173
|
+
3: "ACCEPTEDELSEWHERE",
|
|
174
|
+
4: "MISSED",
|
|
175
|
+
5: "INVALID",
|
|
176
|
+
6: "UNAVAILABLE",
|
|
177
|
+
7: "UPCOMING",
|
|
178
|
+
8: "FAILED",
|
|
179
|
+
9: "ABANDONED",
|
|
180
|
+
10: "ONGOING",
|
|
181
|
+
}
|
|
182
|
+
CallLogRecord_CallResult_value = map[string]int32{
|
|
183
|
+
"CONNECTED": 0,
|
|
184
|
+
"REJECTED": 1,
|
|
185
|
+
"CANCELLED": 2,
|
|
186
|
+
"ACCEPTEDELSEWHERE": 3,
|
|
187
|
+
"MISSED": 4,
|
|
188
|
+
"INVALID": 5,
|
|
189
|
+
"UNAVAILABLE": 6,
|
|
190
|
+
"UPCOMING": 7,
|
|
191
|
+
"FAILED": 8,
|
|
192
|
+
"ABANDONED": 9,
|
|
193
|
+
"ONGOING": 10,
|
|
194
|
+
}
|
|
195
|
+
)
|
|
196
|
+
|
|
197
|
+
func (x CallLogRecord_CallResult) Enum() *CallLogRecord_CallResult {
|
|
198
|
+
p := new(CallLogRecord_CallResult)
|
|
199
|
+
*p = x
|
|
200
|
+
return p
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
func (x CallLogRecord_CallResult) String() string {
|
|
204
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
func (CallLogRecord_CallResult) Descriptor() protoreflect.EnumDescriptor {
|
|
208
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[2].Descriptor()
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
func (CallLogRecord_CallResult) Type() protoreflect.EnumType {
|
|
212
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[2]
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
func (x CallLogRecord_CallResult) Number() protoreflect.EnumNumber {
|
|
216
|
+
return protoreflect.EnumNumber(x)
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
// Deprecated: Do not use.
|
|
220
|
+
func (x *CallLogRecord_CallResult) UnmarshalJSON(b []byte) error {
|
|
221
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
222
|
+
if err != nil {
|
|
223
|
+
return err
|
|
224
|
+
}
|
|
225
|
+
*x = CallLogRecord_CallResult(num)
|
|
226
|
+
return nil
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
// Deprecated: Use CallLogRecord_CallResult.Descriptor instead.
|
|
230
|
+
func (CallLogRecord_CallResult) EnumDescriptor() ([]byte, []int) {
|
|
231
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{0, 2}
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
type WaffleAccountLinkStateAction_AccountLinkState int32
|
|
235
|
+
|
|
236
|
+
const (
|
|
237
|
+
WaffleAccountLinkStateAction_ACTIVE WaffleAccountLinkStateAction_AccountLinkState = 0
|
|
238
|
+
)
|
|
239
|
+
|
|
240
|
+
// Enum value maps for WaffleAccountLinkStateAction_AccountLinkState.
|
|
241
|
+
var (
|
|
242
|
+
WaffleAccountLinkStateAction_AccountLinkState_name = map[int32]string{
|
|
243
|
+
0: "ACTIVE",
|
|
244
|
+
}
|
|
245
|
+
WaffleAccountLinkStateAction_AccountLinkState_value = map[string]int32{
|
|
246
|
+
"ACTIVE": 0,
|
|
247
|
+
}
|
|
248
|
+
)
|
|
249
|
+
|
|
250
|
+
func (x WaffleAccountLinkStateAction_AccountLinkState) Enum() *WaffleAccountLinkStateAction_AccountLinkState {
|
|
251
|
+
p := new(WaffleAccountLinkStateAction_AccountLinkState)
|
|
252
|
+
*p = x
|
|
253
|
+
return p
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
func (x WaffleAccountLinkStateAction_AccountLinkState) String() string {
|
|
257
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
func (WaffleAccountLinkStateAction_AccountLinkState) Descriptor() protoreflect.EnumDescriptor {
|
|
261
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[3].Descriptor()
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
func (WaffleAccountLinkStateAction_AccountLinkState) Type() protoreflect.EnumType {
|
|
265
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[3]
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
func (x WaffleAccountLinkStateAction_AccountLinkState) Number() protoreflect.EnumNumber {
|
|
269
|
+
return protoreflect.EnumNumber(x)
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
// Deprecated: Do not use.
|
|
273
|
+
func (x *WaffleAccountLinkStateAction_AccountLinkState) UnmarshalJSON(b []byte) error {
|
|
274
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
275
|
+
if err != nil {
|
|
276
|
+
return err
|
|
277
|
+
}
|
|
278
|
+
*x = WaffleAccountLinkStateAction_AccountLinkState(num)
|
|
279
|
+
return nil
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
// Deprecated: Use WaffleAccountLinkStateAction_AccountLinkState.Descriptor instead.
|
|
283
|
+
func (WaffleAccountLinkStateAction_AccountLinkState) EnumDescriptor() ([]byte, []int) {
|
|
284
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1, 0}
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
type MerchantPaymentPartnerAction_Status int32
|
|
288
|
+
|
|
289
|
+
const (
|
|
290
|
+
MerchantPaymentPartnerAction_ACTIVE MerchantPaymentPartnerAction_Status = 0
|
|
291
|
+
MerchantPaymentPartnerAction_INACTIVE MerchantPaymentPartnerAction_Status = 1
|
|
292
|
+
)
|
|
293
|
+
|
|
294
|
+
// Enum value maps for MerchantPaymentPartnerAction_Status.
|
|
295
|
+
var (
|
|
296
|
+
MerchantPaymentPartnerAction_Status_name = map[int32]string{
|
|
297
|
+
0: "ACTIVE",
|
|
298
|
+
1: "INACTIVE",
|
|
299
|
+
}
|
|
300
|
+
MerchantPaymentPartnerAction_Status_value = map[string]int32{
|
|
301
|
+
"ACTIVE": 0,
|
|
302
|
+
"INACTIVE": 1,
|
|
303
|
+
}
|
|
304
|
+
)
|
|
305
|
+
|
|
306
|
+
func (x MerchantPaymentPartnerAction_Status) Enum() *MerchantPaymentPartnerAction_Status {
|
|
307
|
+
p := new(MerchantPaymentPartnerAction_Status)
|
|
308
|
+
*p = x
|
|
309
|
+
return p
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
func (x MerchantPaymentPartnerAction_Status) String() string {
|
|
313
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
func (MerchantPaymentPartnerAction_Status) Descriptor() protoreflect.EnumDescriptor {
|
|
317
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[4].Descriptor()
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
func (MerchantPaymentPartnerAction_Status) Type() protoreflect.EnumType {
|
|
321
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[4]
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
func (x MerchantPaymentPartnerAction_Status) Number() protoreflect.EnumNumber {
|
|
325
|
+
return protoreflect.EnumNumber(x)
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
// Deprecated: Do not use.
|
|
329
|
+
func (x *MerchantPaymentPartnerAction_Status) UnmarshalJSON(b []byte) error {
|
|
330
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
331
|
+
if err != nil {
|
|
332
|
+
return err
|
|
333
|
+
}
|
|
334
|
+
*x = MerchantPaymentPartnerAction_Status(num)
|
|
335
|
+
return nil
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
// Deprecated: Use MerchantPaymentPartnerAction_Status.Descriptor instead.
|
|
339
|
+
func (MerchantPaymentPartnerAction_Status) EnumDescriptor() ([]byte, []int) {
|
|
340
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2, 0}
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
type NoteEditAction_NoteType int32
|
|
344
|
+
|
|
345
|
+
const (
|
|
346
|
+
NoteEditAction_UNSTRUCTURED NoteEditAction_NoteType = 1
|
|
347
|
+
NoteEditAction_STRUCTURED NoteEditAction_NoteType = 2
|
|
348
|
+
)
|
|
349
|
+
|
|
350
|
+
// Enum value maps for NoteEditAction_NoteType.
|
|
351
|
+
var (
|
|
352
|
+
NoteEditAction_NoteType_name = map[int32]string{
|
|
353
|
+
1: "UNSTRUCTURED",
|
|
354
|
+
2: "STRUCTURED",
|
|
355
|
+
}
|
|
356
|
+
NoteEditAction_NoteType_value = map[string]int32{
|
|
357
|
+
"UNSTRUCTURED": 1,
|
|
358
|
+
"STRUCTURED": 2,
|
|
359
|
+
}
|
|
360
|
+
)
|
|
361
|
+
|
|
362
|
+
func (x NoteEditAction_NoteType) Enum() *NoteEditAction_NoteType {
|
|
363
|
+
p := new(NoteEditAction_NoteType)
|
|
364
|
+
*p = x
|
|
365
|
+
return p
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
func (x NoteEditAction_NoteType) String() string {
|
|
369
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
func (NoteEditAction_NoteType) Descriptor() protoreflect.EnumDescriptor {
|
|
373
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[5].Descriptor()
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
func (NoteEditAction_NoteType) Type() protoreflect.EnumType {
|
|
377
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[5]
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
func (x NoteEditAction_NoteType) Number() protoreflect.EnumNumber {
|
|
381
|
+
return protoreflect.EnumNumber(x)
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
// Deprecated: Do not use.
|
|
385
|
+
func (x *NoteEditAction_NoteType) UnmarshalJSON(b []byte) error {
|
|
386
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
387
|
+
if err != nil {
|
|
388
|
+
return err
|
|
389
|
+
}
|
|
390
|
+
*x = NoteEditAction_NoteType(num)
|
|
391
|
+
return nil
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
// Deprecated: Use NoteEditAction_NoteType.Descriptor instead.
|
|
395
|
+
func (NoteEditAction_NoteType) EnumDescriptor() ([]byte, []int) {
|
|
396
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3, 0}
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
type StatusPrivacyAction_StatusDistributionMode int32
|
|
400
|
+
|
|
401
|
+
const (
|
|
402
|
+
StatusPrivacyAction_ALLOW_LIST StatusPrivacyAction_StatusDistributionMode = 0
|
|
403
|
+
StatusPrivacyAction_DENY_LIST StatusPrivacyAction_StatusDistributionMode = 1
|
|
404
|
+
StatusPrivacyAction_CONTACTS StatusPrivacyAction_StatusDistributionMode = 2
|
|
405
|
+
)
|
|
406
|
+
|
|
407
|
+
// Enum value maps for StatusPrivacyAction_StatusDistributionMode.
|
|
408
|
+
var (
|
|
409
|
+
StatusPrivacyAction_StatusDistributionMode_name = map[int32]string{
|
|
410
|
+
0: "ALLOW_LIST",
|
|
411
|
+
1: "DENY_LIST",
|
|
412
|
+
2: "CONTACTS",
|
|
413
|
+
}
|
|
414
|
+
StatusPrivacyAction_StatusDistributionMode_value = map[string]int32{
|
|
415
|
+
"ALLOW_LIST": 0,
|
|
416
|
+
"DENY_LIST": 1,
|
|
417
|
+
"CONTACTS": 2,
|
|
418
|
+
}
|
|
419
|
+
)
|
|
420
|
+
|
|
421
|
+
func (x StatusPrivacyAction_StatusDistributionMode) Enum() *StatusPrivacyAction_StatusDistributionMode {
|
|
422
|
+
p := new(StatusPrivacyAction_StatusDistributionMode)
|
|
423
|
+
*p = x
|
|
424
|
+
return p
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
func (x StatusPrivacyAction_StatusDistributionMode) String() string {
|
|
428
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
func (StatusPrivacyAction_StatusDistributionMode) Descriptor() protoreflect.EnumDescriptor {
|
|
432
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[6].Descriptor()
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
func (StatusPrivacyAction_StatusDistributionMode) Type() protoreflect.EnumType {
|
|
436
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[6]
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
func (x StatusPrivacyAction_StatusDistributionMode) Number() protoreflect.EnumNumber {
|
|
440
|
+
return protoreflect.EnumNumber(x)
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
// Deprecated: Do not use.
|
|
444
|
+
func (x *StatusPrivacyAction_StatusDistributionMode) UnmarshalJSON(b []byte) error {
|
|
445
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
446
|
+
if err != nil {
|
|
447
|
+
return err
|
|
448
|
+
}
|
|
449
|
+
*x = StatusPrivacyAction_StatusDistributionMode(num)
|
|
450
|
+
return nil
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
// Deprecated: Use StatusPrivacyAction_StatusDistributionMode.Descriptor instead.
|
|
454
|
+
func (StatusPrivacyAction_StatusDistributionMode) EnumDescriptor() ([]byte, []int) {
|
|
455
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4, 0}
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
type MarketingMessageAction_MarketingMessagePrototypeType int32
|
|
459
|
+
|
|
460
|
+
const (
|
|
461
|
+
MarketingMessageAction_PERSONALIZED MarketingMessageAction_MarketingMessagePrototypeType = 0
|
|
462
|
+
)
|
|
463
|
+
|
|
464
|
+
// Enum value maps for MarketingMessageAction_MarketingMessagePrototypeType.
|
|
465
|
+
var (
|
|
466
|
+
MarketingMessageAction_MarketingMessagePrototypeType_name = map[int32]string{
|
|
467
|
+
0: "PERSONALIZED",
|
|
468
|
+
}
|
|
469
|
+
MarketingMessageAction_MarketingMessagePrototypeType_value = map[string]int32{
|
|
470
|
+
"PERSONALIZED": 0,
|
|
471
|
+
}
|
|
472
|
+
)
|
|
473
|
+
|
|
474
|
+
func (x MarketingMessageAction_MarketingMessagePrototypeType) Enum() *MarketingMessageAction_MarketingMessagePrototypeType {
|
|
475
|
+
p := new(MarketingMessageAction_MarketingMessagePrototypeType)
|
|
476
|
+
*p = x
|
|
477
|
+
return p
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
func (x MarketingMessageAction_MarketingMessagePrototypeType) String() string {
|
|
481
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
func (MarketingMessageAction_MarketingMessagePrototypeType) Descriptor() protoreflect.EnumDescriptor {
|
|
485
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[7].Descriptor()
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
func (MarketingMessageAction_MarketingMessagePrototypeType) Type() protoreflect.EnumType {
|
|
489
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[7]
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
func (x MarketingMessageAction_MarketingMessagePrototypeType) Number() protoreflect.EnumNumber {
|
|
493
|
+
return protoreflect.EnumNumber(x)
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
// Deprecated: Do not use.
|
|
497
|
+
func (x *MarketingMessageAction_MarketingMessagePrototypeType) UnmarshalJSON(b []byte) error {
|
|
498
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
499
|
+
if err != nil {
|
|
500
|
+
return err
|
|
501
|
+
}
|
|
502
|
+
*x = MarketingMessageAction_MarketingMessagePrototypeType(num)
|
|
503
|
+
return nil
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
// Deprecated: Use MarketingMessageAction_MarketingMessagePrototypeType.Descriptor instead.
|
|
507
|
+
func (MarketingMessageAction_MarketingMessagePrototypeType) EnumDescriptor() ([]byte, []int) {
|
|
508
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5, 0}
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
type UsernameChatStartModeAction_ChatStartMode int32
|
|
512
|
+
|
|
513
|
+
const (
|
|
514
|
+
UsernameChatStartModeAction_LID UsernameChatStartModeAction_ChatStartMode = 1
|
|
515
|
+
UsernameChatStartModeAction_PN UsernameChatStartModeAction_ChatStartMode = 2
|
|
516
|
+
)
|
|
517
|
+
|
|
518
|
+
// Enum value maps for UsernameChatStartModeAction_ChatStartMode.
|
|
519
|
+
var (
|
|
520
|
+
UsernameChatStartModeAction_ChatStartMode_name = map[int32]string{
|
|
521
|
+
1: "LID",
|
|
522
|
+
2: "PN",
|
|
523
|
+
}
|
|
524
|
+
UsernameChatStartModeAction_ChatStartMode_value = map[string]int32{
|
|
525
|
+
"LID": 1,
|
|
526
|
+
"PN": 2,
|
|
527
|
+
}
|
|
528
|
+
)
|
|
529
|
+
|
|
530
|
+
func (x UsernameChatStartModeAction_ChatStartMode) Enum() *UsernameChatStartModeAction_ChatStartMode {
|
|
531
|
+
p := new(UsernameChatStartModeAction_ChatStartMode)
|
|
532
|
+
*p = x
|
|
533
|
+
return p
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
func (x UsernameChatStartModeAction_ChatStartMode) String() string {
|
|
537
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
func (UsernameChatStartModeAction_ChatStartMode) Descriptor() protoreflect.EnumDescriptor {
|
|
541
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[8].Descriptor()
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
func (UsernameChatStartModeAction_ChatStartMode) Type() protoreflect.EnumType {
|
|
545
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[8]
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
func (x UsernameChatStartModeAction_ChatStartMode) Number() protoreflect.EnumNumber {
|
|
549
|
+
return protoreflect.EnumNumber(x)
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
// Deprecated: Do not use.
|
|
553
|
+
func (x *UsernameChatStartModeAction_ChatStartMode) UnmarshalJSON(b []byte) error {
|
|
554
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
555
|
+
if err != nil {
|
|
556
|
+
return err
|
|
557
|
+
}
|
|
558
|
+
*x = UsernameChatStartModeAction_ChatStartMode(num)
|
|
559
|
+
return nil
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
// Deprecated: Use UsernameChatStartModeAction_ChatStartMode.Descriptor instead.
|
|
563
|
+
func (UsernameChatStartModeAction_ChatStartMode) EnumDescriptor() ([]byte, []int) {
|
|
564
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6, 0}
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
type LabelEditAction_ListType int32
|
|
568
|
+
|
|
569
|
+
const (
|
|
570
|
+
LabelEditAction_NONE LabelEditAction_ListType = 0
|
|
571
|
+
LabelEditAction_UNREAD LabelEditAction_ListType = 1
|
|
572
|
+
LabelEditAction_GROUPS LabelEditAction_ListType = 2
|
|
573
|
+
LabelEditAction_FAVORITES LabelEditAction_ListType = 3
|
|
574
|
+
LabelEditAction_PREDEFINED LabelEditAction_ListType = 4
|
|
575
|
+
LabelEditAction_CUSTOM LabelEditAction_ListType = 5
|
|
576
|
+
)
|
|
577
|
+
|
|
578
|
+
// Enum value maps for LabelEditAction_ListType.
|
|
579
|
+
var (
|
|
580
|
+
LabelEditAction_ListType_name = map[int32]string{
|
|
581
|
+
0: "NONE",
|
|
582
|
+
1: "UNREAD",
|
|
583
|
+
2: "GROUPS",
|
|
584
|
+
3: "FAVORITES",
|
|
585
|
+
4: "PREDEFINED",
|
|
586
|
+
5: "CUSTOM",
|
|
587
|
+
}
|
|
588
|
+
LabelEditAction_ListType_value = map[string]int32{
|
|
589
|
+
"NONE": 0,
|
|
590
|
+
"UNREAD": 1,
|
|
591
|
+
"GROUPS": 2,
|
|
592
|
+
"FAVORITES": 3,
|
|
593
|
+
"PREDEFINED": 4,
|
|
594
|
+
"CUSTOM": 5,
|
|
595
|
+
}
|
|
596
|
+
)
|
|
597
|
+
|
|
598
|
+
func (x LabelEditAction_ListType) Enum() *LabelEditAction_ListType {
|
|
599
|
+
p := new(LabelEditAction_ListType)
|
|
600
|
+
*p = x
|
|
601
|
+
return p
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
func (x LabelEditAction_ListType) String() string {
|
|
605
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
func (LabelEditAction_ListType) Descriptor() protoreflect.EnumDescriptor {
|
|
609
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[9].Descriptor()
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
func (LabelEditAction_ListType) Type() protoreflect.EnumType {
|
|
613
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[9]
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
func (x LabelEditAction_ListType) Number() protoreflect.EnumNumber {
|
|
617
|
+
return protoreflect.EnumNumber(x)
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
// Deprecated: Do not use.
|
|
621
|
+
func (x *LabelEditAction_ListType) UnmarshalJSON(b []byte) error {
|
|
622
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
623
|
+
if err != nil {
|
|
624
|
+
return err
|
|
625
|
+
}
|
|
626
|
+
*x = LabelEditAction_ListType(num)
|
|
627
|
+
return nil
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
// Deprecated: Use LabelEditAction_ListType.Descriptor instead.
|
|
631
|
+
func (LabelEditAction_ListType) EnumDescriptor() ([]byte, []int) {
|
|
632
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7, 0}
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
type PatchDebugData_Platform int32
|
|
636
|
+
|
|
637
|
+
const (
|
|
638
|
+
PatchDebugData_ANDROID PatchDebugData_Platform = 0
|
|
639
|
+
PatchDebugData_SMBA PatchDebugData_Platform = 1
|
|
640
|
+
PatchDebugData_IPHONE PatchDebugData_Platform = 2
|
|
641
|
+
PatchDebugData_SMBI PatchDebugData_Platform = 3
|
|
642
|
+
PatchDebugData_WEB PatchDebugData_Platform = 4
|
|
643
|
+
PatchDebugData_UWP PatchDebugData_Platform = 5
|
|
644
|
+
PatchDebugData_DARWIN PatchDebugData_Platform = 6
|
|
645
|
+
)
|
|
646
|
+
|
|
647
|
+
// Enum value maps for PatchDebugData_Platform.
|
|
648
|
+
var (
|
|
649
|
+
PatchDebugData_Platform_name = map[int32]string{
|
|
650
|
+
0: "ANDROID",
|
|
651
|
+
1: "SMBA",
|
|
652
|
+
2: "IPHONE",
|
|
653
|
+
3: "SMBI",
|
|
654
|
+
4: "WEB",
|
|
655
|
+
5: "UWP",
|
|
656
|
+
6: "DARWIN",
|
|
657
|
+
}
|
|
658
|
+
PatchDebugData_Platform_value = map[string]int32{
|
|
659
|
+
"ANDROID": 0,
|
|
660
|
+
"SMBA": 1,
|
|
661
|
+
"IPHONE": 2,
|
|
662
|
+
"SMBI": 3,
|
|
663
|
+
"WEB": 4,
|
|
664
|
+
"UWP": 5,
|
|
665
|
+
"DARWIN": 6,
|
|
666
|
+
}
|
|
667
|
+
)
|
|
668
|
+
|
|
669
|
+
func (x PatchDebugData_Platform) Enum() *PatchDebugData_Platform {
|
|
670
|
+
p := new(PatchDebugData_Platform)
|
|
671
|
+
*p = x
|
|
672
|
+
return p
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
func (x PatchDebugData_Platform) String() string {
|
|
676
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
func (PatchDebugData_Platform) Descriptor() protoreflect.EnumDescriptor {
|
|
680
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[10].Descriptor()
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
func (PatchDebugData_Platform) Type() protoreflect.EnumType {
|
|
684
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[10]
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
func (x PatchDebugData_Platform) Number() protoreflect.EnumNumber {
|
|
688
|
+
return protoreflect.EnumNumber(x)
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
// Deprecated: Do not use.
|
|
692
|
+
func (x *PatchDebugData_Platform) UnmarshalJSON(b []byte) error {
|
|
693
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
694
|
+
if err != nil {
|
|
695
|
+
return err
|
|
696
|
+
}
|
|
697
|
+
*x = PatchDebugData_Platform(num)
|
|
698
|
+
return nil
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
// Deprecated: Use PatchDebugData_Platform.Descriptor instead.
|
|
702
|
+
func (PatchDebugData_Platform) EnumDescriptor() ([]byte, []int) {
|
|
703
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8, 0}
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
type CallLogRecord struct {
|
|
707
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
708
|
+
CallResult *CallLogRecord_CallResult `protobuf:"varint,1,opt,name=callResult,enum=WASyncAction.CallLogRecord_CallResult" json:"callResult,omitempty"`
|
|
709
|
+
IsDndMode *bool `protobuf:"varint,2,opt,name=isDndMode" json:"isDndMode,omitempty"`
|
|
710
|
+
SilenceReason *CallLogRecord_SilenceReason `protobuf:"varint,3,opt,name=silenceReason,enum=WASyncAction.CallLogRecord_SilenceReason" json:"silenceReason,omitempty"`
|
|
711
|
+
Duration *int64 `protobuf:"varint,4,opt,name=duration" json:"duration,omitempty"`
|
|
712
|
+
StartTime *int64 `protobuf:"varint,5,opt,name=startTime" json:"startTime,omitempty"`
|
|
713
|
+
IsIncoming *bool `protobuf:"varint,6,opt,name=isIncoming" json:"isIncoming,omitempty"`
|
|
714
|
+
IsVideo *bool `protobuf:"varint,7,opt,name=isVideo" json:"isVideo,omitempty"`
|
|
715
|
+
IsCallLink *bool `protobuf:"varint,8,opt,name=isCallLink" json:"isCallLink,omitempty"`
|
|
716
|
+
CallLinkToken *string `protobuf:"bytes,9,opt,name=callLinkToken" json:"callLinkToken,omitempty"`
|
|
717
|
+
ScheduledCallID *string `protobuf:"bytes,10,opt,name=scheduledCallID" json:"scheduledCallID,omitempty"`
|
|
718
|
+
CallID *string `protobuf:"bytes,11,opt,name=callID" json:"callID,omitempty"`
|
|
719
|
+
CallCreatorJID *string `protobuf:"bytes,12,opt,name=callCreatorJID" json:"callCreatorJID,omitempty"`
|
|
720
|
+
GroupJID *string `protobuf:"bytes,13,opt,name=groupJID" json:"groupJID,omitempty"`
|
|
721
|
+
Participants []*CallLogRecord_ParticipantInfo `protobuf:"bytes,14,rep,name=participants" json:"participants,omitempty"`
|
|
722
|
+
CallType *CallLogRecord_CallType `protobuf:"varint,15,opt,name=callType,enum=WASyncAction.CallLogRecord_CallType" json:"callType,omitempty"`
|
|
723
|
+
unknownFields protoimpl.UnknownFields
|
|
724
|
+
sizeCache protoimpl.SizeCache
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
func (x *CallLogRecord) Reset() {
|
|
728
|
+
*x = CallLogRecord{}
|
|
729
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[0]
|
|
730
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
731
|
+
ms.StoreMessageInfo(mi)
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
func (x *CallLogRecord) String() string {
|
|
735
|
+
return protoimpl.X.MessageStringOf(x)
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
func (*CallLogRecord) ProtoMessage() {}
|
|
739
|
+
|
|
740
|
+
func (x *CallLogRecord) ProtoReflect() protoreflect.Message {
|
|
741
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[0]
|
|
742
|
+
if x != nil {
|
|
743
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
744
|
+
if ms.LoadMessageInfo() == nil {
|
|
745
|
+
ms.StoreMessageInfo(mi)
|
|
746
|
+
}
|
|
747
|
+
return ms
|
|
748
|
+
}
|
|
749
|
+
return mi.MessageOf(x)
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
// Deprecated: Use CallLogRecord.ProtoReflect.Descriptor instead.
|
|
753
|
+
func (*CallLogRecord) Descriptor() ([]byte, []int) {
|
|
754
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{0}
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
func (x *CallLogRecord) GetCallResult() CallLogRecord_CallResult {
|
|
758
|
+
if x != nil && x.CallResult != nil {
|
|
759
|
+
return *x.CallResult
|
|
760
|
+
}
|
|
761
|
+
return CallLogRecord_CONNECTED
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
func (x *CallLogRecord) GetIsDndMode() bool {
|
|
765
|
+
if x != nil && x.IsDndMode != nil {
|
|
766
|
+
return *x.IsDndMode
|
|
767
|
+
}
|
|
768
|
+
return false
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
func (x *CallLogRecord) GetSilenceReason() CallLogRecord_SilenceReason {
|
|
772
|
+
if x != nil && x.SilenceReason != nil {
|
|
773
|
+
return *x.SilenceReason
|
|
774
|
+
}
|
|
775
|
+
return CallLogRecord_NONE
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
func (x *CallLogRecord) GetDuration() int64 {
|
|
779
|
+
if x != nil && x.Duration != nil {
|
|
780
|
+
return *x.Duration
|
|
781
|
+
}
|
|
782
|
+
return 0
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
func (x *CallLogRecord) GetStartTime() int64 {
|
|
786
|
+
if x != nil && x.StartTime != nil {
|
|
787
|
+
return *x.StartTime
|
|
788
|
+
}
|
|
789
|
+
return 0
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
func (x *CallLogRecord) GetIsIncoming() bool {
|
|
793
|
+
if x != nil && x.IsIncoming != nil {
|
|
794
|
+
return *x.IsIncoming
|
|
795
|
+
}
|
|
796
|
+
return false
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
func (x *CallLogRecord) GetIsVideo() bool {
|
|
800
|
+
if x != nil && x.IsVideo != nil {
|
|
801
|
+
return *x.IsVideo
|
|
802
|
+
}
|
|
803
|
+
return false
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
func (x *CallLogRecord) GetIsCallLink() bool {
|
|
807
|
+
if x != nil && x.IsCallLink != nil {
|
|
808
|
+
return *x.IsCallLink
|
|
809
|
+
}
|
|
810
|
+
return false
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
func (x *CallLogRecord) GetCallLinkToken() string {
|
|
814
|
+
if x != nil && x.CallLinkToken != nil {
|
|
815
|
+
return *x.CallLinkToken
|
|
816
|
+
}
|
|
817
|
+
return ""
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
func (x *CallLogRecord) GetScheduledCallID() string {
|
|
821
|
+
if x != nil && x.ScheduledCallID != nil {
|
|
822
|
+
return *x.ScheduledCallID
|
|
823
|
+
}
|
|
824
|
+
return ""
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
func (x *CallLogRecord) GetCallID() string {
|
|
828
|
+
if x != nil && x.CallID != nil {
|
|
829
|
+
return *x.CallID
|
|
830
|
+
}
|
|
831
|
+
return ""
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
func (x *CallLogRecord) GetCallCreatorJID() string {
|
|
835
|
+
if x != nil && x.CallCreatorJID != nil {
|
|
836
|
+
return *x.CallCreatorJID
|
|
837
|
+
}
|
|
838
|
+
return ""
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
func (x *CallLogRecord) GetGroupJID() string {
|
|
842
|
+
if x != nil && x.GroupJID != nil {
|
|
843
|
+
return *x.GroupJID
|
|
844
|
+
}
|
|
845
|
+
return ""
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
func (x *CallLogRecord) GetParticipants() []*CallLogRecord_ParticipantInfo {
|
|
849
|
+
if x != nil {
|
|
850
|
+
return x.Participants
|
|
851
|
+
}
|
|
852
|
+
return nil
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
func (x *CallLogRecord) GetCallType() CallLogRecord_CallType {
|
|
856
|
+
if x != nil && x.CallType != nil {
|
|
857
|
+
return *x.CallType
|
|
858
|
+
}
|
|
859
|
+
return CallLogRecord_REGULAR
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
type WaffleAccountLinkStateAction struct {
|
|
863
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
864
|
+
LinkState *WaffleAccountLinkStateAction_AccountLinkState `protobuf:"varint,2,opt,name=linkState,enum=WASyncAction.WaffleAccountLinkStateAction_AccountLinkState" json:"linkState,omitempty"`
|
|
865
|
+
unknownFields protoimpl.UnknownFields
|
|
866
|
+
sizeCache protoimpl.SizeCache
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
func (x *WaffleAccountLinkStateAction) Reset() {
|
|
870
|
+
*x = WaffleAccountLinkStateAction{}
|
|
871
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
|
|
872
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
873
|
+
ms.StoreMessageInfo(mi)
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
func (x *WaffleAccountLinkStateAction) String() string {
|
|
877
|
+
return protoimpl.X.MessageStringOf(x)
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
func (*WaffleAccountLinkStateAction) ProtoMessage() {}
|
|
881
|
+
|
|
882
|
+
func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
|
|
883
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
|
|
884
|
+
if x != nil {
|
|
885
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
886
|
+
if ms.LoadMessageInfo() == nil {
|
|
887
|
+
ms.StoreMessageInfo(mi)
|
|
888
|
+
}
|
|
889
|
+
return ms
|
|
890
|
+
}
|
|
891
|
+
return mi.MessageOf(x)
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
// Deprecated: Use WaffleAccountLinkStateAction.ProtoReflect.Descriptor instead.
|
|
895
|
+
func (*WaffleAccountLinkStateAction) Descriptor() ([]byte, []int) {
|
|
896
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1}
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
func (x *WaffleAccountLinkStateAction) GetLinkState() WaffleAccountLinkStateAction_AccountLinkState {
|
|
900
|
+
if x != nil && x.LinkState != nil {
|
|
901
|
+
return *x.LinkState
|
|
902
|
+
}
|
|
903
|
+
return WaffleAccountLinkStateAction_ACTIVE
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
type MerchantPaymentPartnerAction struct {
|
|
907
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
908
|
+
Status *MerchantPaymentPartnerAction_Status `protobuf:"varint,1,req,name=status,enum=WASyncAction.MerchantPaymentPartnerAction_Status" json:"status,omitempty"`
|
|
909
|
+
Country *string `protobuf:"bytes,2,req,name=country" json:"country,omitempty"`
|
|
910
|
+
GatewayName *string `protobuf:"bytes,3,opt,name=gatewayName" json:"gatewayName,omitempty"`
|
|
911
|
+
CredentialID *string `protobuf:"bytes,4,opt,name=credentialID" json:"credentialID,omitempty"`
|
|
912
|
+
unknownFields protoimpl.UnknownFields
|
|
913
|
+
sizeCache protoimpl.SizeCache
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
func (x *MerchantPaymentPartnerAction) Reset() {
|
|
917
|
+
*x = MerchantPaymentPartnerAction{}
|
|
918
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
|
|
919
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
920
|
+
ms.StoreMessageInfo(mi)
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
func (x *MerchantPaymentPartnerAction) String() string {
|
|
924
|
+
return protoimpl.X.MessageStringOf(x)
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
func (*MerchantPaymentPartnerAction) ProtoMessage() {}
|
|
928
|
+
|
|
929
|
+
func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
|
|
930
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
|
|
931
|
+
if x != nil {
|
|
932
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
933
|
+
if ms.LoadMessageInfo() == nil {
|
|
934
|
+
ms.StoreMessageInfo(mi)
|
|
935
|
+
}
|
|
936
|
+
return ms
|
|
937
|
+
}
|
|
938
|
+
return mi.MessageOf(x)
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
// Deprecated: Use MerchantPaymentPartnerAction.ProtoReflect.Descriptor instead.
|
|
942
|
+
func (*MerchantPaymentPartnerAction) Descriptor() ([]byte, []int) {
|
|
943
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
func (x *MerchantPaymentPartnerAction) GetStatus() MerchantPaymentPartnerAction_Status {
|
|
947
|
+
if x != nil && x.Status != nil {
|
|
948
|
+
return *x.Status
|
|
949
|
+
}
|
|
950
|
+
return MerchantPaymentPartnerAction_ACTIVE
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
func (x *MerchantPaymentPartnerAction) GetCountry() string {
|
|
954
|
+
if x != nil && x.Country != nil {
|
|
955
|
+
return *x.Country
|
|
956
|
+
}
|
|
957
|
+
return ""
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
func (x *MerchantPaymentPartnerAction) GetGatewayName() string {
|
|
961
|
+
if x != nil && x.GatewayName != nil {
|
|
962
|
+
return *x.GatewayName
|
|
963
|
+
}
|
|
964
|
+
return ""
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
func (x *MerchantPaymentPartnerAction) GetCredentialID() string {
|
|
968
|
+
if x != nil && x.CredentialID != nil {
|
|
969
|
+
return *x.CredentialID
|
|
970
|
+
}
|
|
971
|
+
return ""
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
type NoteEditAction struct {
|
|
975
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
976
|
+
Type *NoteEditAction_NoteType `protobuf:"varint,1,opt,name=type,enum=WASyncAction.NoteEditAction_NoteType" json:"type,omitempty"`
|
|
977
|
+
ChatJID *string `protobuf:"bytes,2,opt,name=chatJID" json:"chatJID,omitempty"`
|
|
978
|
+
CreatedAt *int64 `protobuf:"varint,3,opt,name=createdAt" json:"createdAt,omitempty"`
|
|
979
|
+
Deleted *bool `protobuf:"varint,4,opt,name=deleted" json:"deleted,omitempty"`
|
|
980
|
+
UnstructuredContent *string `protobuf:"bytes,5,opt,name=unstructuredContent" json:"unstructuredContent,omitempty"`
|
|
981
|
+
unknownFields protoimpl.UnknownFields
|
|
982
|
+
sizeCache protoimpl.SizeCache
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
func (x *NoteEditAction) Reset() {
|
|
986
|
+
*x = NoteEditAction{}
|
|
987
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
|
|
988
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
989
|
+
ms.StoreMessageInfo(mi)
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
func (x *NoteEditAction) String() string {
|
|
993
|
+
return protoimpl.X.MessageStringOf(x)
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
func (*NoteEditAction) ProtoMessage() {}
|
|
997
|
+
|
|
998
|
+
func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
|
|
999
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
|
|
1000
|
+
if x != nil {
|
|
1001
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1002
|
+
if ms.LoadMessageInfo() == nil {
|
|
1003
|
+
ms.StoreMessageInfo(mi)
|
|
1004
|
+
}
|
|
1005
|
+
return ms
|
|
1006
|
+
}
|
|
1007
|
+
return mi.MessageOf(x)
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
// Deprecated: Use NoteEditAction.ProtoReflect.Descriptor instead.
|
|
1011
|
+
func (*NoteEditAction) Descriptor() ([]byte, []int) {
|
|
1012
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
func (x *NoteEditAction) GetType() NoteEditAction_NoteType {
|
|
1016
|
+
if x != nil && x.Type != nil {
|
|
1017
|
+
return *x.Type
|
|
1018
|
+
}
|
|
1019
|
+
return NoteEditAction_UNSTRUCTURED
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
func (x *NoteEditAction) GetChatJID() string {
|
|
1023
|
+
if x != nil && x.ChatJID != nil {
|
|
1024
|
+
return *x.ChatJID
|
|
1025
|
+
}
|
|
1026
|
+
return ""
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
func (x *NoteEditAction) GetCreatedAt() int64 {
|
|
1030
|
+
if x != nil && x.CreatedAt != nil {
|
|
1031
|
+
return *x.CreatedAt
|
|
1032
|
+
}
|
|
1033
|
+
return 0
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
func (x *NoteEditAction) GetDeleted() bool {
|
|
1037
|
+
if x != nil && x.Deleted != nil {
|
|
1038
|
+
return *x.Deleted
|
|
1039
|
+
}
|
|
1040
|
+
return false
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
func (x *NoteEditAction) GetUnstructuredContent() string {
|
|
1044
|
+
if x != nil && x.UnstructuredContent != nil {
|
|
1045
|
+
return *x.UnstructuredContent
|
|
1046
|
+
}
|
|
1047
|
+
return ""
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
type StatusPrivacyAction struct {
|
|
1051
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1052
|
+
Mode *StatusPrivacyAction_StatusDistributionMode `protobuf:"varint,1,opt,name=mode,enum=WASyncAction.StatusPrivacyAction_StatusDistributionMode" json:"mode,omitempty"`
|
|
1053
|
+
UserJID []string `protobuf:"bytes,2,rep,name=userJID" json:"userJID,omitempty"`
|
|
1054
|
+
unknownFields protoimpl.UnknownFields
|
|
1055
|
+
sizeCache protoimpl.SizeCache
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
func (x *StatusPrivacyAction) Reset() {
|
|
1059
|
+
*x = StatusPrivacyAction{}
|
|
1060
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
|
|
1061
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1062
|
+
ms.StoreMessageInfo(mi)
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
func (x *StatusPrivacyAction) String() string {
|
|
1066
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
func (*StatusPrivacyAction) ProtoMessage() {}
|
|
1070
|
+
|
|
1071
|
+
func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
|
|
1072
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
|
|
1073
|
+
if x != nil {
|
|
1074
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1075
|
+
if ms.LoadMessageInfo() == nil {
|
|
1076
|
+
ms.StoreMessageInfo(mi)
|
|
1077
|
+
}
|
|
1078
|
+
return ms
|
|
1079
|
+
}
|
|
1080
|
+
return mi.MessageOf(x)
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
// Deprecated: Use StatusPrivacyAction.ProtoReflect.Descriptor instead.
|
|
1084
|
+
func (*StatusPrivacyAction) Descriptor() ([]byte, []int) {
|
|
1085
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
func (x *StatusPrivacyAction) GetMode() StatusPrivacyAction_StatusDistributionMode {
|
|
1089
|
+
if x != nil && x.Mode != nil {
|
|
1090
|
+
return *x.Mode
|
|
1091
|
+
}
|
|
1092
|
+
return StatusPrivacyAction_ALLOW_LIST
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
func (x *StatusPrivacyAction) GetUserJID() []string {
|
|
1096
|
+
if x != nil {
|
|
1097
|
+
return x.UserJID
|
|
1098
|
+
}
|
|
1099
|
+
return nil
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
type MarketingMessageAction struct {
|
|
1103
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1104
|
+
Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
|
1105
|
+
Message *string `protobuf:"bytes,2,opt,name=message" json:"message,omitempty"`
|
|
1106
|
+
Type *MarketingMessageAction_MarketingMessagePrototypeType `protobuf:"varint,3,opt,name=type,enum=WASyncAction.MarketingMessageAction_MarketingMessagePrototypeType" json:"type,omitempty"`
|
|
1107
|
+
CreatedAt *int64 `protobuf:"varint,4,opt,name=createdAt" json:"createdAt,omitempty"`
|
|
1108
|
+
LastSentAt *int64 `protobuf:"varint,5,opt,name=lastSentAt" json:"lastSentAt,omitempty"`
|
|
1109
|
+
IsDeleted *bool `protobuf:"varint,6,opt,name=isDeleted" json:"isDeleted,omitempty"`
|
|
1110
|
+
MediaID *string `protobuf:"bytes,7,opt,name=mediaID" json:"mediaID,omitempty"`
|
|
1111
|
+
unknownFields protoimpl.UnknownFields
|
|
1112
|
+
sizeCache protoimpl.SizeCache
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
func (x *MarketingMessageAction) Reset() {
|
|
1116
|
+
*x = MarketingMessageAction{}
|
|
1117
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
|
|
1118
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1119
|
+
ms.StoreMessageInfo(mi)
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
func (x *MarketingMessageAction) String() string {
|
|
1123
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
func (*MarketingMessageAction) ProtoMessage() {}
|
|
1127
|
+
|
|
1128
|
+
func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
|
|
1129
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
|
|
1130
|
+
if x != nil {
|
|
1131
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1132
|
+
if ms.LoadMessageInfo() == nil {
|
|
1133
|
+
ms.StoreMessageInfo(mi)
|
|
1134
|
+
}
|
|
1135
|
+
return ms
|
|
1136
|
+
}
|
|
1137
|
+
return mi.MessageOf(x)
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
// Deprecated: Use MarketingMessageAction.ProtoReflect.Descriptor instead.
|
|
1141
|
+
func (*MarketingMessageAction) Descriptor() ([]byte, []int) {
|
|
1142
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
func (x *MarketingMessageAction) GetName() string {
|
|
1146
|
+
if x != nil && x.Name != nil {
|
|
1147
|
+
return *x.Name
|
|
1148
|
+
}
|
|
1149
|
+
return ""
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
func (x *MarketingMessageAction) GetMessage() string {
|
|
1153
|
+
if x != nil && x.Message != nil {
|
|
1154
|
+
return *x.Message
|
|
1155
|
+
}
|
|
1156
|
+
return ""
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
func (x *MarketingMessageAction) GetType() MarketingMessageAction_MarketingMessagePrototypeType {
|
|
1160
|
+
if x != nil && x.Type != nil {
|
|
1161
|
+
return *x.Type
|
|
1162
|
+
}
|
|
1163
|
+
return MarketingMessageAction_PERSONALIZED
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
func (x *MarketingMessageAction) GetCreatedAt() int64 {
|
|
1167
|
+
if x != nil && x.CreatedAt != nil {
|
|
1168
|
+
return *x.CreatedAt
|
|
1169
|
+
}
|
|
1170
|
+
return 0
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
func (x *MarketingMessageAction) GetLastSentAt() int64 {
|
|
1174
|
+
if x != nil && x.LastSentAt != nil {
|
|
1175
|
+
return *x.LastSentAt
|
|
1176
|
+
}
|
|
1177
|
+
return 0
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
func (x *MarketingMessageAction) GetIsDeleted() bool {
|
|
1181
|
+
if x != nil && x.IsDeleted != nil {
|
|
1182
|
+
return *x.IsDeleted
|
|
1183
|
+
}
|
|
1184
|
+
return false
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
func (x *MarketingMessageAction) GetMediaID() string {
|
|
1188
|
+
if x != nil && x.MediaID != nil {
|
|
1189
|
+
return *x.MediaID
|
|
1190
|
+
}
|
|
1191
|
+
return ""
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
type UsernameChatStartModeAction struct {
|
|
1195
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1196
|
+
ChatStartMode *UsernameChatStartModeAction_ChatStartMode `protobuf:"varint,1,opt,name=chatStartMode,enum=WASyncAction.UsernameChatStartModeAction_ChatStartMode" json:"chatStartMode,omitempty"`
|
|
1197
|
+
unknownFields protoimpl.UnknownFields
|
|
1198
|
+
sizeCache protoimpl.SizeCache
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
func (x *UsernameChatStartModeAction) Reset() {
|
|
1202
|
+
*x = UsernameChatStartModeAction{}
|
|
1203
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
|
|
1204
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1205
|
+
ms.StoreMessageInfo(mi)
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
func (x *UsernameChatStartModeAction) String() string {
|
|
1209
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
func (*UsernameChatStartModeAction) ProtoMessage() {}
|
|
1213
|
+
|
|
1214
|
+
func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
|
|
1215
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
|
|
1216
|
+
if x != nil {
|
|
1217
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1218
|
+
if ms.LoadMessageInfo() == nil {
|
|
1219
|
+
ms.StoreMessageInfo(mi)
|
|
1220
|
+
}
|
|
1221
|
+
return ms
|
|
1222
|
+
}
|
|
1223
|
+
return mi.MessageOf(x)
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
// Deprecated: Use UsernameChatStartModeAction.ProtoReflect.Descriptor instead.
|
|
1227
|
+
func (*UsernameChatStartModeAction) Descriptor() ([]byte, []int) {
|
|
1228
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
func (x *UsernameChatStartModeAction) GetChatStartMode() UsernameChatStartModeAction_ChatStartMode {
|
|
1232
|
+
if x != nil && x.ChatStartMode != nil {
|
|
1233
|
+
return *x.ChatStartMode
|
|
1234
|
+
}
|
|
1235
|
+
return UsernameChatStartModeAction_LID
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
type LabelEditAction struct {
|
|
1239
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1240
|
+
Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
|
1241
|
+
Color *int32 `protobuf:"varint,2,opt,name=color" json:"color,omitempty"`
|
|
1242
|
+
PredefinedID *int32 `protobuf:"varint,3,opt,name=predefinedID" json:"predefinedID,omitempty"`
|
|
1243
|
+
Deleted *bool `protobuf:"varint,4,opt,name=deleted" json:"deleted,omitempty"`
|
|
1244
|
+
OrderIndex *int32 `protobuf:"varint,5,opt,name=orderIndex" json:"orderIndex,omitempty"`
|
|
1245
|
+
IsActive *bool `protobuf:"varint,6,opt,name=isActive" json:"isActive,omitempty"`
|
|
1246
|
+
Type *LabelEditAction_ListType `protobuf:"varint,7,opt,name=type,enum=WASyncAction.LabelEditAction_ListType" json:"type,omitempty"`
|
|
1247
|
+
unknownFields protoimpl.UnknownFields
|
|
1248
|
+
sizeCache protoimpl.SizeCache
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
func (x *LabelEditAction) Reset() {
|
|
1252
|
+
*x = LabelEditAction{}
|
|
1253
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
|
|
1254
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1255
|
+
ms.StoreMessageInfo(mi)
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
func (x *LabelEditAction) String() string {
|
|
1259
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
func (*LabelEditAction) ProtoMessage() {}
|
|
1263
|
+
|
|
1264
|
+
func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
|
|
1265
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
|
|
1266
|
+
if x != nil {
|
|
1267
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1268
|
+
if ms.LoadMessageInfo() == nil {
|
|
1269
|
+
ms.StoreMessageInfo(mi)
|
|
1270
|
+
}
|
|
1271
|
+
return ms
|
|
1272
|
+
}
|
|
1273
|
+
return mi.MessageOf(x)
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
// Deprecated: Use LabelEditAction.ProtoReflect.Descriptor instead.
|
|
1277
|
+
func (*LabelEditAction) Descriptor() ([]byte, []int) {
|
|
1278
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
func (x *LabelEditAction) GetName() string {
|
|
1282
|
+
if x != nil && x.Name != nil {
|
|
1283
|
+
return *x.Name
|
|
1284
|
+
}
|
|
1285
|
+
return ""
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
func (x *LabelEditAction) GetColor() int32 {
|
|
1289
|
+
if x != nil && x.Color != nil {
|
|
1290
|
+
return *x.Color
|
|
1291
|
+
}
|
|
1292
|
+
return 0
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
func (x *LabelEditAction) GetPredefinedID() int32 {
|
|
1296
|
+
if x != nil && x.PredefinedID != nil {
|
|
1297
|
+
return *x.PredefinedID
|
|
1298
|
+
}
|
|
1299
|
+
return 0
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
func (x *LabelEditAction) GetDeleted() bool {
|
|
1303
|
+
if x != nil && x.Deleted != nil {
|
|
1304
|
+
return *x.Deleted
|
|
1305
|
+
}
|
|
1306
|
+
return false
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
func (x *LabelEditAction) GetOrderIndex() int32 {
|
|
1310
|
+
if x != nil && x.OrderIndex != nil {
|
|
1311
|
+
return *x.OrderIndex
|
|
1312
|
+
}
|
|
1313
|
+
return 0
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
func (x *LabelEditAction) GetIsActive() bool {
|
|
1317
|
+
if x != nil && x.IsActive != nil {
|
|
1318
|
+
return *x.IsActive
|
|
1319
|
+
}
|
|
1320
|
+
return false
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
func (x *LabelEditAction) GetType() LabelEditAction_ListType {
|
|
1324
|
+
if x != nil && x.Type != nil {
|
|
1325
|
+
return *x.Type
|
|
1326
|
+
}
|
|
1327
|
+
return LabelEditAction_NONE
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
type PatchDebugData struct {
|
|
1331
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1332
|
+
CurrentLthash []byte `protobuf:"bytes,1,opt,name=currentLthash" json:"currentLthash,omitempty"`
|
|
1333
|
+
NewLthash []byte `protobuf:"bytes,2,opt,name=newLthash" json:"newLthash,omitempty"`
|
|
1334
|
+
PatchVersion []byte `protobuf:"bytes,3,opt,name=patchVersion" json:"patchVersion,omitempty"`
|
|
1335
|
+
CollectionName []byte `protobuf:"bytes,4,opt,name=collectionName" json:"collectionName,omitempty"`
|
|
1336
|
+
FirstFourBytesFromAHashOfSnapshotMACKey []byte `protobuf:"bytes,5,opt,name=firstFourBytesFromAHashOfSnapshotMACKey" json:"firstFourBytesFromAHashOfSnapshotMACKey,omitempty"`
|
|
1337
|
+
NewLthashSubtract []byte `protobuf:"bytes,6,opt,name=newLthashSubtract" json:"newLthashSubtract,omitempty"`
|
|
1338
|
+
NumberAdd *int32 `protobuf:"varint,7,opt,name=numberAdd" json:"numberAdd,omitempty"`
|
|
1339
|
+
NumberRemove *int32 `protobuf:"varint,8,opt,name=numberRemove" json:"numberRemove,omitempty"`
|
|
1340
|
+
NumberOverride *int32 `protobuf:"varint,9,opt,name=numberOverride" json:"numberOverride,omitempty"`
|
|
1341
|
+
SenderPlatform *PatchDebugData_Platform `protobuf:"varint,10,opt,name=senderPlatform,enum=WASyncAction.PatchDebugData_Platform" json:"senderPlatform,omitempty"`
|
|
1342
|
+
IsSenderPrimary *bool `protobuf:"varint,11,opt,name=isSenderPrimary" json:"isSenderPrimary,omitempty"`
|
|
1343
|
+
unknownFields protoimpl.UnknownFields
|
|
1344
|
+
sizeCache protoimpl.SizeCache
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
func (x *PatchDebugData) Reset() {
|
|
1348
|
+
*x = PatchDebugData{}
|
|
1349
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
|
|
1350
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1351
|
+
ms.StoreMessageInfo(mi)
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
func (x *PatchDebugData) String() string {
|
|
1355
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
func (*PatchDebugData) ProtoMessage() {}
|
|
1359
|
+
|
|
1360
|
+
func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
|
|
1361
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
|
|
1362
|
+
if x != nil {
|
|
1363
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1364
|
+
if ms.LoadMessageInfo() == nil {
|
|
1365
|
+
ms.StoreMessageInfo(mi)
|
|
1366
|
+
}
|
|
1367
|
+
return ms
|
|
1368
|
+
}
|
|
1369
|
+
return mi.MessageOf(x)
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
// Deprecated: Use PatchDebugData.ProtoReflect.Descriptor instead.
|
|
1373
|
+
func (*PatchDebugData) Descriptor() ([]byte, []int) {
|
|
1374
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
func (x *PatchDebugData) GetCurrentLthash() []byte {
|
|
1378
|
+
if x != nil {
|
|
1379
|
+
return x.CurrentLthash
|
|
1380
|
+
}
|
|
1381
|
+
return nil
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
func (x *PatchDebugData) GetNewLthash() []byte {
|
|
1385
|
+
if x != nil {
|
|
1386
|
+
return x.NewLthash
|
|
1387
|
+
}
|
|
1388
|
+
return nil
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
func (x *PatchDebugData) GetPatchVersion() []byte {
|
|
1392
|
+
if x != nil {
|
|
1393
|
+
return x.PatchVersion
|
|
1394
|
+
}
|
|
1395
|
+
return nil
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
func (x *PatchDebugData) GetCollectionName() []byte {
|
|
1399
|
+
if x != nil {
|
|
1400
|
+
return x.CollectionName
|
|
1401
|
+
}
|
|
1402
|
+
return nil
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
func (x *PatchDebugData) GetFirstFourBytesFromAHashOfSnapshotMACKey() []byte {
|
|
1406
|
+
if x != nil {
|
|
1407
|
+
return x.FirstFourBytesFromAHashOfSnapshotMACKey
|
|
1408
|
+
}
|
|
1409
|
+
return nil
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
func (x *PatchDebugData) GetNewLthashSubtract() []byte {
|
|
1413
|
+
if x != nil {
|
|
1414
|
+
return x.NewLthashSubtract
|
|
1415
|
+
}
|
|
1416
|
+
return nil
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
func (x *PatchDebugData) GetNumberAdd() int32 {
|
|
1420
|
+
if x != nil && x.NumberAdd != nil {
|
|
1421
|
+
return *x.NumberAdd
|
|
1422
|
+
}
|
|
1423
|
+
return 0
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
func (x *PatchDebugData) GetNumberRemove() int32 {
|
|
1427
|
+
if x != nil && x.NumberRemove != nil {
|
|
1428
|
+
return *x.NumberRemove
|
|
1429
|
+
}
|
|
1430
|
+
return 0
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
func (x *PatchDebugData) GetNumberOverride() int32 {
|
|
1434
|
+
if x != nil && x.NumberOverride != nil {
|
|
1435
|
+
return *x.NumberOverride
|
|
1436
|
+
}
|
|
1437
|
+
return 0
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
func (x *PatchDebugData) GetSenderPlatform() PatchDebugData_Platform {
|
|
1441
|
+
if x != nil && x.SenderPlatform != nil {
|
|
1442
|
+
return *x.SenderPlatform
|
|
1443
|
+
}
|
|
1444
|
+
return PatchDebugData_ANDROID
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1447
|
+
func (x *PatchDebugData) GetIsSenderPrimary() bool {
|
|
1448
|
+
if x != nil && x.IsSenderPrimary != nil {
|
|
1449
|
+
return *x.IsSenderPrimary
|
|
1450
|
+
}
|
|
1451
|
+
return false
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
type RecentEmojiWeight struct {
|
|
1455
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1456
|
+
Emoji *string `protobuf:"bytes,1,opt,name=emoji" json:"emoji,omitempty"`
|
|
1457
|
+
Weight *float32 `protobuf:"fixed32,2,opt,name=weight" json:"weight,omitempty"`
|
|
1458
|
+
unknownFields protoimpl.UnknownFields
|
|
1459
|
+
sizeCache protoimpl.SizeCache
|
|
1460
|
+
}
|
|
1461
|
+
|
|
1462
|
+
func (x *RecentEmojiWeight) Reset() {
|
|
1463
|
+
*x = RecentEmojiWeight{}
|
|
1464
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
|
|
1465
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1466
|
+
ms.StoreMessageInfo(mi)
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
func (x *RecentEmojiWeight) String() string {
|
|
1470
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
func (*RecentEmojiWeight) ProtoMessage() {}
|
|
1474
|
+
|
|
1475
|
+
func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
|
|
1476
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
|
|
1477
|
+
if x != nil {
|
|
1478
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1479
|
+
if ms.LoadMessageInfo() == nil {
|
|
1480
|
+
ms.StoreMessageInfo(mi)
|
|
1481
|
+
}
|
|
1482
|
+
return ms
|
|
1483
|
+
}
|
|
1484
|
+
return mi.MessageOf(x)
|
|
1485
|
+
}
|
|
1486
|
+
|
|
1487
|
+
// Deprecated: Use RecentEmojiWeight.ProtoReflect.Descriptor instead.
|
|
1488
|
+
func (*RecentEmojiWeight) Descriptor() ([]byte, []int) {
|
|
1489
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
func (x *RecentEmojiWeight) GetEmoji() string {
|
|
1493
|
+
if x != nil && x.Emoji != nil {
|
|
1494
|
+
return *x.Emoji
|
|
1495
|
+
}
|
|
1496
|
+
return ""
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
func (x *RecentEmojiWeight) GetWeight() float32 {
|
|
1500
|
+
if x != nil && x.Weight != nil {
|
|
1501
|
+
return *x.Weight
|
|
1502
|
+
}
|
|
1503
|
+
return 0
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
type SyncActionValue struct {
|
|
1507
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1508
|
+
Timestamp *int64 `protobuf:"varint,1,opt,name=timestamp" json:"timestamp,omitempty"`
|
|
1509
|
+
StarAction *StarAction `protobuf:"bytes,2,opt,name=starAction" json:"starAction,omitempty"`
|
|
1510
|
+
ContactAction *ContactAction `protobuf:"bytes,3,opt,name=contactAction" json:"contactAction,omitempty"`
|
|
1511
|
+
MuteAction *MuteAction `protobuf:"bytes,4,opt,name=muteAction" json:"muteAction,omitempty"`
|
|
1512
|
+
PinAction *PinAction `protobuf:"bytes,5,opt,name=pinAction" json:"pinAction,omitempty"`
|
|
1513
|
+
SecurityNotificationSetting *SecurityNotificationSetting `protobuf:"bytes,6,opt,name=securityNotificationSetting" json:"securityNotificationSetting,omitempty"`
|
|
1514
|
+
PushNameSetting *PushNameSetting `protobuf:"bytes,7,opt,name=pushNameSetting" json:"pushNameSetting,omitempty"`
|
|
1515
|
+
QuickReplyAction *QuickReplyAction `protobuf:"bytes,8,opt,name=quickReplyAction" json:"quickReplyAction,omitempty"`
|
|
1516
|
+
RecentEmojiWeightsAction *RecentEmojiWeightsAction `protobuf:"bytes,11,opt,name=recentEmojiWeightsAction" json:"recentEmojiWeightsAction,omitempty"`
|
|
1517
|
+
LabelEditAction *LabelEditAction `protobuf:"bytes,14,opt,name=labelEditAction" json:"labelEditAction,omitempty"`
|
|
1518
|
+
LabelAssociationAction *LabelAssociationAction `protobuf:"bytes,15,opt,name=labelAssociationAction" json:"labelAssociationAction,omitempty"`
|
|
1519
|
+
LocaleSetting *LocaleSetting `protobuf:"bytes,16,opt,name=localeSetting" json:"localeSetting,omitempty"`
|
|
1520
|
+
ArchiveChatAction *ArchiveChatAction `protobuf:"bytes,17,opt,name=archiveChatAction" json:"archiveChatAction,omitempty"`
|
|
1521
|
+
DeleteMessageForMeAction *DeleteMessageForMeAction `protobuf:"bytes,18,opt,name=deleteMessageForMeAction" json:"deleteMessageForMeAction,omitempty"`
|
|
1522
|
+
KeyExpiration *KeyExpiration `protobuf:"bytes,19,opt,name=keyExpiration" json:"keyExpiration,omitempty"`
|
|
1523
|
+
MarkChatAsReadAction *MarkChatAsReadAction `protobuf:"bytes,20,opt,name=markChatAsReadAction" json:"markChatAsReadAction,omitempty"`
|
|
1524
|
+
ClearChatAction *ClearChatAction `protobuf:"bytes,21,opt,name=clearChatAction" json:"clearChatAction,omitempty"`
|
|
1525
|
+
DeleteChatAction *DeleteChatAction `protobuf:"bytes,22,opt,name=deleteChatAction" json:"deleteChatAction,omitempty"`
|
|
1526
|
+
UnarchiveChatsSetting *UnarchiveChatsSetting `protobuf:"bytes,23,opt,name=unarchiveChatsSetting" json:"unarchiveChatsSetting,omitempty"`
|
|
1527
|
+
PrimaryFeature *PrimaryFeature `protobuf:"bytes,24,opt,name=primaryFeature" json:"primaryFeature,omitempty"`
|
|
1528
|
+
AndroidUnsupportedActions *AndroidUnsupportedActions `protobuf:"bytes,26,opt,name=androidUnsupportedActions" json:"androidUnsupportedActions,omitempty"`
|
|
1529
|
+
AgentAction *AgentAction `protobuf:"bytes,27,opt,name=agentAction" json:"agentAction,omitempty"`
|
|
1530
|
+
SubscriptionAction *SubscriptionAction `protobuf:"bytes,28,opt,name=subscriptionAction" json:"subscriptionAction,omitempty"`
|
|
1531
|
+
UserStatusMuteAction *UserStatusMuteAction `protobuf:"bytes,29,opt,name=userStatusMuteAction" json:"userStatusMuteAction,omitempty"`
|
|
1532
|
+
TimeFormatAction *TimeFormatAction `protobuf:"bytes,30,opt,name=timeFormatAction" json:"timeFormatAction,omitempty"`
|
|
1533
|
+
NuxAction *NuxAction `protobuf:"bytes,31,opt,name=nuxAction" json:"nuxAction,omitempty"`
|
|
1534
|
+
PrimaryVersionAction *PrimaryVersionAction `protobuf:"bytes,32,opt,name=primaryVersionAction" json:"primaryVersionAction,omitempty"`
|
|
1535
|
+
StickerAction *StickerAction `protobuf:"bytes,33,opt,name=stickerAction" json:"stickerAction,omitempty"`
|
|
1536
|
+
RemoveRecentStickerAction *RemoveRecentStickerAction `protobuf:"bytes,34,opt,name=removeRecentStickerAction" json:"removeRecentStickerAction,omitempty"`
|
|
1537
|
+
ChatAssignment *ChatAssignmentAction `protobuf:"bytes,35,opt,name=chatAssignment" json:"chatAssignment,omitempty"`
|
|
1538
|
+
ChatAssignmentOpenedStatus *ChatAssignmentOpenedStatusAction `protobuf:"bytes,36,opt,name=chatAssignmentOpenedStatus" json:"chatAssignmentOpenedStatus,omitempty"`
|
|
1539
|
+
PnForLidChatAction *PnForLidChatAction `protobuf:"bytes,37,opt,name=pnForLidChatAction" json:"pnForLidChatAction,omitempty"`
|
|
1540
|
+
MarketingMessageAction *MarketingMessageAction `protobuf:"bytes,38,opt,name=marketingMessageAction" json:"marketingMessageAction,omitempty"`
|
|
1541
|
+
MarketingMessageBroadcastAction *MarketingMessageBroadcastAction `protobuf:"bytes,39,opt,name=marketingMessageBroadcastAction" json:"marketingMessageBroadcastAction,omitempty"`
|
|
1542
|
+
ExternalWebBetaAction *ExternalWebBetaAction `protobuf:"bytes,40,opt,name=externalWebBetaAction" json:"externalWebBetaAction,omitempty"`
|
|
1543
|
+
PrivacySettingRelayAllCalls *PrivacySettingRelayAllCalls `protobuf:"bytes,41,opt,name=privacySettingRelayAllCalls" json:"privacySettingRelayAllCalls,omitempty"`
|
|
1544
|
+
CallLogAction *CallLogAction `protobuf:"bytes,42,opt,name=callLogAction" json:"callLogAction,omitempty"`
|
|
1545
|
+
StatusPrivacy *StatusPrivacyAction `protobuf:"bytes,44,opt,name=statusPrivacy" json:"statusPrivacy,omitempty"`
|
|
1546
|
+
BotWelcomeRequestAction *BotWelcomeRequestAction `protobuf:"bytes,45,opt,name=botWelcomeRequestAction" json:"botWelcomeRequestAction,omitempty"`
|
|
1547
|
+
DeleteIndividualCallLog *DeleteIndividualCallLogAction `protobuf:"bytes,46,opt,name=deleteIndividualCallLog" json:"deleteIndividualCallLog,omitempty"`
|
|
1548
|
+
LabelReorderingAction *LabelReorderingAction `protobuf:"bytes,47,opt,name=labelReorderingAction" json:"labelReorderingAction,omitempty"`
|
|
1549
|
+
PaymentInfoAction *PaymentInfoAction `protobuf:"bytes,48,opt,name=paymentInfoAction" json:"paymentInfoAction,omitempty"`
|
|
1550
|
+
CustomPaymentMethodsAction *CustomPaymentMethodsAction `protobuf:"bytes,49,opt,name=customPaymentMethodsAction" json:"customPaymentMethodsAction,omitempty"`
|
|
1551
|
+
LockChatAction *LockChatAction `protobuf:"bytes,50,opt,name=lockChatAction" json:"lockChatAction,omitempty"`
|
|
1552
|
+
ChatLockSettings *waChatLockSettings.ChatLockSettings `protobuf:"bytes,51,opt,name=chatLockSettings" json:"chatLockSettings,omitempty"`
|
|
1553
|
+
WamoUserIdentifierAction *WamoUserIdentifierAction `protobuf:"bytes,52,opt,name=wamoUserIdentifierAction" json:"wamoUserIdentifierAction,omitempty"`
|
|
1554
|
+
PrivacySettingDisableLinkPreviewsAction *PrivacySettingDisableLinkPreviewsAction `protobuf:"bytes,53,opt,name=privacySettingDisableLinkPreviewsAction" json:"privacySettingDisableLinkPreviewsAction,omitempty"`
|
|
1555
|
+
DeviceCapabilities *waDeviceCapabilities.DeviceCapabilities `protobuf:"bytes,54,opt,name=deviceCapabilities" json:"deviceCapabilities,omitempty"`
|
|
1556
|
+
NoteEditAction *NoteEditAction `protobuf:"bytes,55,opt,name=noteEditAction" json:"noteEditAction,omitempty"`
|
|
1557
|
+
FavoritesAction *FavoritesAction `protobuf:"bytes,56,opt,name=favoritesAction" json:"favoritesAction,omitempty"`
|
|
1558
|
+
MerchantPaymentPartnerAction *MerchantPaymentPartnerAction `protobuf:"bytes,57,opt,name=merchantPaymentPartnerAction" json:"merchantPaymentPartnerAction,omitempty"`
|
|
1559
|
+
WaffleAccountLinkStateAction *WaffleAccountLinkStateAction `protobuf:"bytes,58,opt,name=waffleAccountLinkStateAction" json:"waffleAccountLinkStateAction,omitempty"`
|
|
1560
|
+
UsernameChatStartMode *UsernameChatStartModeAction `protobuf:"bytes,59,opt,name=usernameChatStartMode" json:"usernameChatStartMode,omitempty"`
|
|
1561
|
+
unknownFields protoimpl.UnknownFields
|
|
1562
|
+
sizeCache protoimpl.SizeCache
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
func (x *SyncActionValue) Reset() {
|
|
1566
|
+
*x = SyncActionValue{}
|
|
1567
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
|
|
1568
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1569
|
+
ms.StoreMessageInfo(mi)
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
func (x *SyncActionValue) String() string {
|
|
1573
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1576
|
+
func (*SyncActionValue) ProtoMessage() {}
|
|
1577
|
+
|
|
1578
|
+
func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
|
|
1579
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
|
|
1580
|
+
if x != nil {
|
|
1581
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1582
|
+
if ms.LoadMessageInfo() == nil {
|
|
1583
|
+
ms.StoreMessageInfo(mi)
|
|
1584
|
+
}
|
|
1585
|
+
return ms
|
|
1586
|
+
}
|
|
1587
|
+
return mi.MessageOf(x)
|
|
1588
|
+
}
|
|
1589
|
+
|
|
1590
|
+
// Deprecated: Use SyncActionValue.ProtoReflect.Descriptor instead.
|
|
1591
|
+
func (*SyncActionValue) Descriptor() ([]byte, []int) {
|
|
1592
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
func (x *SyncActionValue) GetTimestamp() int64 {
|
|
1596
|
+
if x != nil && x.Timestamp != nil {
|
|
1597
|
+
return *x.Timestamp
|
|
1598
|
+
}
|
|
1599
|
+
return 0
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
func (x *SyncActionValue) GetStarAction() *StarAction {
|
|
1603
|
+
if x != nil {
|
|
1604
|
+
return x.StarAction
|
|
1605
|
+
}
|
|
1606
|
+
return nil
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
func (x *SyncActionValue) GetContactAction() *ContactAction {
|
|
1610
|
+
if x != nil {
|
|
1611
|
+
return x.ContactAction
|
|
1612
|
+
}
|
|
1613
|
+
return nil
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
func (x *SyncActionValue) GetMuteAction() *MuteAction {
|
|
1617
|
+
if x != nil {
|
|
1618
|
+
return x.MuteAction
|
|
1619
|
+
}
|
|
1620
|
+
return nil
|
|
1621
|
+
}
|
|
1622
|
+
|
|
1623
|
+
func (x *SyncActionValue) GetPinAction() *PinAction {
|
|
1624
|
+
if x != nil {
|
|
1625
|
+
return x.PinAction
|
|
1626
|
+
}
|
|
1627
|
+
return nil
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
func (x *SyncActionValue) GetSecurityNotificationSetting() *SecurityNotificationSetting {
|
|
1631
|
+
if x != nil {
|
|
1632
|
+
return x.SecurityNotificationSetting
|
|
1633
|
+
}
|
|
1634
|
+
return nil
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
func (x *SyncActionValue) GetPushNameSetting() *PushNameSetting {
|
|
1638
|
+
if x != nil {
|
|
1639
|
+
return x.PushNameSetting
|
|
1640
|
+
}
|
|
1641
|
+
return nil
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
func (x *SyncActionValue) GetQuickReplyAction() *QuickReplyAction {
|
|
1645
|
+
if x != nil {
|
|
1646
|
+
return x.QuickReplyAction
|
|
1647
|
+
}
|
|
1648
|
+
return nil
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
func (x *SyncActionValue) GetRecentEmojiWeightsAction() *RecentEmojiWeightsAction {
|
|
1652
|
+
if x != nil {
|
|
1653
|
+
return x.RecentEmojiWeightsAction
|
|
1654
|
+
}
|
|
1655
|
+
return nil
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
func (x *SyncActionValue) GetLabelEditAction() *LabelEditAction {
|
|
1659
|
+
if x != nil {
|
|
1660
|
+
return x.LabelEditAction
|
|
1661
|
+
}
|
|
1662
|
+
return nil
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
func (x *SyncActionValue) GetLabelAssociationAction() *LabelAssociationAction {
|
|
1666
|
+
if x != nil {
|
|
1667
|
+
return x.LabelAssociationAction
|
|
1668
|
+
}
|
|
1669
|
+
return nil
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
func (x *SyncActionValue) GetLocaleSetting() *LocaleSetting {
|
|
1673
|
+
if x != nil {
|
|
1674
|
+
return x.LocaleSetting
|
|
1675
|
+
}
|
|
1676
|
+
return nil
|
|
1677
|
+
}
|
|
1678
|
+
|
|
1679
|
+
func (x *SyncActionValue) GetArchiveChatAction() *ArchiveChatAction {
|
|
1680
|
+
if x != nil {
|
|
1681
|
+
return x.ArchiveChatAction
|
|
1682
|
+
}
|
|
1683
|
+
return nil
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
func (x *SyncActionValue) GetDeleteMessageForMeAction() *DeleteMessageForMeAction {
|
|
1687
|
+
if x != nil {
|
|
1688
|
+
return x.DeleteMessageForMeAction
|
|
1689
|
+
}
|
|
1690
|
+
return nil
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
func (x *SyncActionValue) GetKeyExpiration() *KeyExpiration {
|
|
1694
|
+
if x != nil {
|
|
1695
|
+
return x.KeyExpiration
|
|
1696
|
+
}
|
|
1697
|
+
return nil
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
func (x *SyncActionValue) GetMarkChatAsReadAction() *MarkChatAsReadAction {
|
|
1701
|
+
if x != nil {
|
|
1702
|
+
return x.MarkChatAsReadAction
|
|
1703
|
+
}
|
|
1704
|
+
return nil
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1707
|
+
func (x *SyncActionValue) GetClearChatAction() *ClearChatAction {
|
|
1708
|
+
if x != nil {
|
|
1709
|
+
return x.ClearChatAction
|
|
1710
|
+
}
|
|
1711
|
+
return nil
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
func (x *SyncActionValue) GetDeleteChatAction() *DeleteChatAction {
|
|
1715
|
+
if x != nil {
|
|
1716
|
+
return x.DeleteChatAction
|
|
1717
|
+
}
|
|
1718
|
+
return nil
|
|
1719
|
+
}
|
|
1720
|
+
|
|
1721
|
+
func (x *SyncActionValue) GetUnarchiveChatsSetting() *UnarchiveChatsSetting {
|
|
1722
|
+
if x != nil {
|
|
1723
|
+
return x.UnarchiveChatsSetting
|
|
1724
|
+
}
|
|
1725
|
+
return nil
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
func (x *SyncActionValue) GetPrimaryFeature() *PrimaryFeature {
|
|
1729
|
+
if x != nil {
|
|
1730
|
+
return x.PrimaryFeature
|
|
1731
|
+
}
|
|
1732
|
+
return nil
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
func (x *SyncActionValue) GetAndroidUnsupportedActions() *AndroidUnsupportedActions {
|
|
1736
|
+
if x != nil {
|
|
1737
|
+
return x.AndroidUnsupportedActions
|
|
1738
|
+
}
|
|
1739
|
+
return nil
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
func (x *SyncActionValue) GetAgentAction() *AgentAction {
|
|
1743
|
+
if x != nil {
|
|
1744
|
+
return x.AgentAction
|
|
1745
|
+
}
|
|
1746
|
+
return nil
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
func (x *SyncActionValue) GetSubscriptionAction() *SubscriptionAction {
|
|
1750
|
+
if x != nil {
|
|
1751
|
+
return x.SubscriptionAction
|
|
1752
|
+
}
|
|
1753
|
+
return nil
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1756
|
+
func (x *SyncActionValue) GetUserStatusMuteAction() *UserStatusMuteAction {
|
|
1757
|
+
if x != nil {
|
|
1758
|
+
return x.UserStatusMuteAction
|
|
1759
|
+
}
|
|
1760
|
+
return nil
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
func (x *SyncActionValue) GetTimeFormatAction() *TimeFormatAction {
|
|
1764
|
+
if x != nil {
|
|
1765
|
+
return x.TimeFormatAction
|
|
1766
|
+
}
|
|
1767
|
+
return nil
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
func (x *SyncActionValue) GetNuxAction() *NuxAction {
|
|
1771
|
+
if x != nil {
|
|
1772
|
+
return x.NuxAction
|
|
1773
|
+
}
|
|
1774
|
+
return nil
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
func (x *SyncActionValue) GetPrimaryVersionAction() *PrimaryVersionAction {
|
|
1778
|
+
if x != nil {
|
|
1779
|
+
return x.PrimaryVersionAction
|
|
1780
|
+
}
|
|
1781
|
+
return nil
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
func (x *SyncActionValue) GetStickerAction() *StickerAction {
|
|
1785
|
+
if x != nil {
|
|
1786
|
+
return x.StickerAction
|
|
1787
|
+
}
|
|
1788
|
+
return nil
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1791
|
+
func (x *SyncActionValue) GetRemoveRecentStickerAction() *RemoveRecentStickerAction {
|
|
1792
|
+
if x != nil {
|
|
1793
|
+
return x.RemoveRecentStickerAction
|
|
1794
|
+
}
|
|
1795
|
+
return nil
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
func (x *SyncActionValue) GetChatAssignment() *ChatAssignmentAction {
|
|
1799
|
+
if x != nil {
|
|
1800
|
+
return x.ChatAssignment
|
|
1801
|
+
}
|
|
1802
|
+
return nil
|
|
1803
|
+
}
|
|
1804
|
+
|
|
1805
|
+
func (x *SyncActionValue) GetChatAssignmentOpenedStatus() *ChatAssignmentOpenedStatusAction {
|
|
1806
|
+
if x != nil {
|
|
1807
|
+
return x.ChatAssignmentOpenedStatus
|
|
1808
|
+
}
|
|
1809
|
+
return nil
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
func (x *SyncActionValue) GetPnForLidChatAction() *PnForLidChatAction {
|
|
1813
|
+
if x != nil {
|
|
1814
|
+
return x.PnForLidChatAction
|
|
1815
|
+
}
|
|
1816
|
+
return nil
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
func (x *SyncActionValue) GetMarketingMessageAction() *MarketingMessageAction {
|
|
1820
|
+
if x != nil {
|
|
1821
|
+
return x.MarketingMessageAction
|
|
1822
|
+
}
|
|
1823
|
+
return nil
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
func (x *SyncActionValue) GetMarketingMessageBroadcastAction() *MarketingMessageBroadcastAction {
|
|
1827
|
+
if x != nil {
|
|
1828
|
+
return x.MarketingMessageBroadcastAction
|
|
1829
|
+
}
|
|
1830
|
+
return nil
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
func (x *SyncActionValue) GetExternalWebBetaAction() *ExternalWebBetaAction {
|
|
1834
|
+
if x != nil {
|
|
1835
|
+
return x.ExternalWebBetaAction
|
|
1836
|
+
}
|
|
1837
|
+
return nil
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
func (x *SyncActionValue) GetPrivacySettingRelayAllCalls() *PrivacySettingRelayAllCalls {
|
|
1841
|
+
if x != nil {
|
|
1842
|
+
return x.PrivacySettingRelayAllCalls
|
|
1843
|
+
}
|
|
1844
|
+
return nil
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
func (x *SyncActionValue) GetCallLogAction() *CallLogAction {
|
|
1848
|
+
if x != nil {
|
|
1849
|
+
return x.CallLogAction
|
|
1850
|
+
}
|
|
1851
|
+
return nil
|
|
1852
|
+
}
|
|
1853
|
+
|
|
1854
|
+
func (x *SyncActionValue) GetStatusPrivacy() *StatusPrivacyAction {
|
|
1855
|
+
if x != nil {
|
|
1856
|
+
return x.StatusPrivacy
|
|
1857
|
+
}
|
|
1858
|
+
return nil
|
|
1859
|
+
}
|
|
1860
|
+
|
|
1861
|
+
func (x *SyncActionValue) GetBotWelcomeRequestAction() *BotWelcomeRequestAction {
|
|
1862
|
+
if x != nil {
|
|
1863
|
+
return x.BotWelcomeRequestAction
|
|
1864
|
+
}
|
|
1865
|
+
return nil
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
func (x *SyncActionValue) GetDeleteIndividualCallLog() *DeleteIndividualCallLogAction {
|
|
1869
|
+
if x != nil {
|
|
1870
|
+
return x.DeleteIndividualCallLog
|
|
1871
|
+
}
|
|
1872
|
+
return nil
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
func (x *SyncActionValue) GetLabelReorderingAction() *LabelReorderingAction {
|
|
1876
|
+
if x != nil {
|
|
1877
|
+
return x.LabelReorderingAction
|
|
1878
|
+
}
|
|
1879
|
+
return nil
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
func (x *SyncActionValue) GetPaymentInfoAction() *PaymentInfoAction {
|
|
1883
|
+
if x != nil {
|
|
1884
|
+
return x.PaymentInfoAction
|
|
1885
|
+
}
|
|
1886
|
+
return nil
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1889
|
+
func (x *SyncActionValue) GetCustomPaymentMethodsAction() *CustomPaymentMethodsAction {
|
|
1890
|
+
if x != nil {
|
|
1891
|
+
return x.CustomPaymentMethodsAction
|
|
1892
|
+
}
|
|
1893
|
+
return nil
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1896
|
+
func (x *SyncActionValue) GetLockChatAction() *LockChatAction {
|
|
1897
|
+
if x != nil {
|
|
1898
|
+
return x.LockChatAction
|
|
1899
|
+
}
|
|
1900
|
+
return nil
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
func (x *SyncActionValue) GetChatLockSettings() *waChatLockSettings.ChatLockSettings {
|
|
1904
|
+
if x != nil {
|
|
1905
|
+
return x.ChatLockSettings
|
|
1906
|
+
}
|
|
1907
|
+
return nil
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
func (x *SyncActionValue) GetWamoUserIdentifierAction() *WamoUserIdentifierAction {
|
|
1911
|
+
if x != nil {
|
|
1912
|
+
return x.WamoUserIdentifierAction
|
|
1913
|
+
}
|
|
1914
|
+
return nil
|
|
1915
|
+
}
|
|
1916
|
+
|
|
1917
|
+
func (x *SyncActionValue) GetPrivacySettingDisableLinkPreviewsAction() *PrivacySettingDisableLinkPreviewsAction {
|
|
1918
|
+
if x != nil {
|
|
1919
|
+
return x.PrivacySettingDisableLinkPreviewsAction
|
|
1920
|
+
}
|
|
1921
|
+
return nil
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
func (x *SyncActionValue) GetDeviceCapabilities() *waDeviceCapabilities.DeviceCapabilities {
|
|
1925
|
+
if x != nil {
|
|
1926
|
+
return x.DeviceCapabilities
|
|
1927
|
+
}
|
|
1928
|
+
return nil
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1931
|
+
func (x *SyncActionValue) GetNoteEditAction() *NoteEditAction {
|
|
1932
|
+
if x != nil {
|
|
1933
|
+
return x.NoteEditAction
|
|
1934
|
+
}
|
|
1935
|
+
return nil
|
|
1936
|
+
}
|
|
1937
|
+
|
|
1938
|
+
func (x *SyncActionValue) GetFavoritesAction() *FavoritesAction {
|
|
1939
|
+
if x != nil {
|
|
1940
|
+
return x.FavoritesAction
|
|
1941
|
+
}
|
|
1942
|
+
return nil
|
|
1943
|
+
}
|
|
1944
|
+
|
|
1945
|
+
func (x *SyncActionValue) GetMerchantPaymentPartnerAction() *MerchantPaymentPartnerAction {
|
|
1946
|
+
if x != nil {
|
|
1947
|
+
return x.MerchantPaymentPartnerAction
|
|
1948
|
+
}
|
|
1949
|
+
return nil
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
func (x *SyncActionValue) GetWaffleAccountLinkStateAction() *WaffleAccountLinkStateAction {
|
|
1953
|
+
if x != nil {
|
|
1954
|
+
return x.WaffleAccountLinkStateAction
|
|
1955
|
+
}
|
|
1956
|
+
return nil
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1959
|
+
func (x *SyncActionValue) GetUsernameChatStartMode() *UsernameChatStartModeAction {
|
|
1960
|
+
if x != nil {
|
|
1961
|
+
return x.UsernameChatStartMode
|
|
1962
|
+
}
|
|
1963
|
+
return nil
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1966
|
+
type FavoritesAction struct {
|
|
1967
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1968
|
+
Favorites []*FavoritesAction_Favorite `protobuf:"bytes,1,rep,name=favorites" json:"favorites,omitempty"`
|
|
1969
|
+
unknownFields protoimpl.UnknownFields
|
|
1970
|
+
sizeCache protoimpl.SizeCache
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1973
|
+
func (x *FavoritesAction) Reset() {
|
|
1974
|
+
*x = FavoritesAction{}
|
|
1975
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
|
|
1976
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1977
|
+
ms.StoreMessageInfo(mi)
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
func (x *FavoritesAction) String() string {
|
|
1981
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
func (*FavoritesAction) ProtoMessage() {}
|
|
1985
|
+
|
|
1986
|
+
func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
|
|
1987
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
|
|
1988
|
+
if x != nil {
|
|
1989
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1990
|
+
if ms.LoadMessageInfo() == nil {
|
|
1991
|
+
ms.StoreMessageInfo(mi)
|
|
1992
|
+
}
|
|
1993
|
+
return ms
|
|
1994
|
+
}
|
|
1995
|
+
return mi.MessageOf(x)
|
|
1996
|
+
}
|
|
1997
|
+
|
|
1998
|
+
// Deprecated: Use FavoritesAction.ProtoReflect.Descriptor instead.
|
|
1999
|
+
func (*FavoritesAction) Descriptor() ([]byte, []int) {
|
|
2000
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
|
|
2001
|
+
}
|
|
2002
|
+
|
|
2003
|
+
func (x *FavoritesAction) GetFavorites() []*FavoritesAction_Favorite {
|
|
2004
|
+
if x != nil {
|
|
2005
|
+
return x.Favorites
|
|
2006
|
+
}
|
|
2007
|
+
return nil
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
type PrivacySettingDisableLinkPreviewsAction struct {
|
|
2011
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2012
|
+
IsPreviewsDisabled *bool `protobuf:"varint,1,opt,name=isPreviewsDisabled" json:"isPreviewsDisabled,omitempty"`
|
|
2013
|
+
unknownFields protoimpl.UnknownFields
|
|
2014
|
+
sizeCache protoimpl.SizeCache
|
|
2015
|
+
}
|
|
2016
|
+
|
|
2017
|
+
func (x *PrivacySettingDisableLinkPreviewsAction) Reset() {
|
|
2018
|
+
*x = PrivacySettingDisableLinkPreviewsAction{}
|
|
2019
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
|
|
2020
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2021
|
+
ms.StoreMessageInfo(mi)
|
|
2022
|
+
}
|
|
2023
|
+
|
|
2024
|
+
func (x *PrivacySettingDisableLinkPreviewsAction) String() string {
|
|
2025
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2026
|
+
}
|
|
2027
|
+
|
|
2028
|
+
func (*PrivacySettingDisableLinkPreviewsAction) ProtoMessage() {}
|
|
2029
|
+
|
|
2030
|
+
func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Message {
|
|
2031
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
|
|
2032
|
+
if x != nil {
|
|
2033
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2034
|
+
if ms.LoadMessageInfo() == nil {
|
|
2035
|
+
ms.StoreMessageInfo(mi)
|
|
2036
|
+
}
|
|
2037
|
+
return ms
|
|
2038
|
+
}
|
|
2039
|
+
return mi.MessageOf(x)
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2042
|
+
// Deprecated: Use PrivacySettingDisableLinkPreviewsAction.ProtoReflect.Descriptor instead.
|
|
2043
|
+
func (*PrivacySettingDisableLinkPreviewsAction) Descriptor() ([]byte, []int) {
|
|
2044
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
|
|
2045
|
+
}
|
|
2046
|
+
|
|
2047
|
+
func (x *PrivacySettingDisableLinkPreviewsAction) GetIsPreviewsDisabled() bool {
|
|
2048
|
+
if x != nil && x.IsPreviewsDisabled != nil {
|
|
2049
|
+
return *x.IsPreviewsDisabled
|
|
2050
|
+
}
|
|
2051
|
+
return false
|
|
2052
|
+
}
|
|
2053
|
+
|
|
2054
|
+
type WamoUserIdentifierAction struct {
|
|
2055
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2056
|
+
Identifier *string `protobuf:"bytes,1,opt,name=identifier" json:"identifier,omitempty"`
|
|
2057
|
+
unknownFields protoimpl.UnknownFields
|
|
2058
|
+
sizeCache protoimpl.SizeCache
|
|
2059
|
+
}
|
|
2060
|
+
|
|
2061
|
+
func (x *WamoUserIdentifierAction) Reset() {
|
|
2062
|
+
*x = WamoUserIdentifierAction{}
|
|
2063
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
|
|
2064
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2065
|
+
ms.StoreMessageInfo(mi)
|
|
2066
|
+
}
|
|
2067
|
+
|
|
2068
|
+
func (x *WamoUserIdentifierAction) String() string {
|
|
2069
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2072
|
+
func (*WamoUserIdentifierAction) ProtoMessage() {}
|
|
2073
|
+
|
|
2074
|
+
func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
|
|
2075
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
|
|
2076
|
+
if x != nil {
|
|
2077
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2078
|
+
if ms.LoadMessageInfo() == nil {
|
|
2079
|
+
ms.StoreMessageInfo(mi)
|
|
2080
|
+
}
|
|
2081
|
+
return ms
|
|
2082
|
+
}
|
|
2083
|
+
return mi.MessageOf(x)
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2086
|
+
// Deprecated: Use WamoUserIdentifierAction.ProtoReflect.Descriptor instead.
|
|
2087
|
+
func (*WamoUserIdentifierAction) Descriptor() ([]byte, []int) {
|
|
2088
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
|
|
2089
|
+
}
|
|
2090
|
+
|
|
2091
|
+
func (x *WamoUserIdentifierAction) GetIdentifier() string {
|
|
2092
|
+
if x != nil && x.Identifier != nil {
|
|
2093
|
+
return *x.Identifier
|
|
2094
|
+
}
|
|
2095
|
+
return ""
|
|
2096
|
+
}
|
|
2097
|
+
|
|
2098
|
+
type LockChatAction struct {
|
|
2099
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2100
|
+
Locked *bool `protobuf:"varint,1,opt,name=locked" json:"locked,omitempty"`
|
|
2101
|
+
unknownFields protoimpl.UnknownFields
|
|
2102
|
+
sizeCache protoimpl.SizeCache
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2105
|
+
func (x *LockChatAction) Reset() {
|
|
2106
|
+
*x = LockChatAction{}
|
|
2107
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
|
|
2108
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2109
|
+
ms.StoreMessageInfo(mi)
|
|
2110
|
+
}
|
|
2111
|
+
|
|
2112
|
+
func (x *LockChatAction) String() string {
|
|
2113
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2114
|
+
}
|
|
2115
|
+
|
|
2116
|
+
func (*LockChatAction) ProtoMessage() {}
|
|
2117
|
+
|
|
2118
|
+
func (x *LockChatAction) ProtoReflect() protoreflect.Message {
|
|
2119
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
|
|
2120
|
+
if x != nil {
|
|
2121
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2122
|
+
if ms.LoadMessageInfo() == nil {
|
|
2123
|
+
ms.StoreMessageInfo(mi)
|
|
2124
|
+
}
|
|
2125
|
+
return ms
|
|
2126
|
+
}
|
|
2127
|
+
return mi.MessageOf(x)
|
|
2128
|
+
}
|
|
2129
|
+
|
|
2130
|
+
// Deprecated: Use LockChatAction.ProtoReflect.Descriptor instead.
|
|
2131
|
+
func (*LockChatAction) Descriptor() ([]byte, []int) {
|
|
2132
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
func (x *LockChatAction) GetLocked() bool {
|
|
2136
|
+
if x != nil && x.Locked != nil {
|
|
2137
|
+
return *x.Locked
|
|
2138
|
+
}
|
|
2139
|
+
return false
|
|
2140
|
+
}
|
|
2141
|
+
|
|
2142
|
+
type CustomPaymentMethodsAction struct {
|
|
2143
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2144
|
+
CustomPaymentMethods []*CustomPaymentMethod `protobuf:"bytes,1,rep,name=customPaymentMethods" json:"customPaymentMethods,omitempty"`
|
|
2145
|
+
unknownFields protoimpl.UnknownFields
|
|
2146
|
+
sizeCache protoimpl.SizeCache
|
|
2147
|
+
}
|
|
2148
|
+
|
|
2149
|
+
func (x *CustomPaymentMethodsAction) Reset() {
|
|
2150
|
+
*x = CustomPaymentMethodsAction{}
|
|
2151
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
|
|
2152
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2153
|
+
ms.StoreMessageInfo(mi)
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
func (x *CustomPaymentMethodsAction) String() string {
|
|
2157
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2158
|
+
}
|
|
2159
|
+
|
|
2160
|
+
func (*CustomPaymentMethodsAction) ProtoMessage() {}
|
|
2161
|
+
|
|
2162
|
+
func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
|
|
2163
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
|
|
2164
|
+
if x != nil {
|
|
2165
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2166
|
+
if ms.LoadMessageInfo() == nil {
|
|
2167
|
+
ms.StoreMessageInfo(mi)
|
|
2168
|
+
}
|
|
2169
|
+
return ms
|
|
2170
|
+
}
|
|
2171
|
+
return mi.MessageOf(x)
|
|
2172
|
+
}
|
|
2173
|
+
|
|
2174
|
+
// Deprecated: Use CustomPaymentMethodsAction.ProtoReflect.Descriptor instead.
|
|
2175
|
+
func (*CustomPaymentMethodsAction) Descriptor() ([]byte, []int) {
|
|
2176
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{15}
|
|
2177
|
+
}
|
|
2178
|
+
|
|
2179
|
+
func (x *CustomPaymentMethodsAction) GetCustomPaymentMethods() []*CustomPaymentMethod {
|
|
2180
|
+
if x != nil {
|
|
2181
|
+
return x.CustomPaymentMethods
|
|
2182
|
+
}
|
|
2183
|
+
return nil
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
type CustomPaymentMethod struct {
|
|
2187
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2188
|
+
CredentialID *string `protobuf:"bytes,1,req,name=credentialID" json:"credentialID,omitempty"`
|
|
2189
|
+
Country *string `protobuf:"bytes,2,req,name=country" json:"country,omitempty"`
|
|
2190
|
+
Type *string `protobuf:"bytes,3,req,name=type" json:"type,omitempty"`
|
|
2191
|
+
Metadata []*CustomPaymentMethodMetadata `protobuf:"bytes,4,rep,name=metadata" json:"metadata,omitempty"`
|
|
2192
|
+
unknownFields protoimpl.UnknownFields
|
|
2193
|
+
sizeCache protoimpl.SizeCache
|
|
2194
|
+
}
|
|
2195
|
+
|
|
2196
|
+
func (x *CustomPaymentMethod) Reset() {
|
|
2197
|
+
*x = CustomPaymentMethod{}
|
|
2198
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
|
|
2199
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2200
|
+
ms.StoreMessageInfo(mi)
|
|
2201
|
+
}
|
|
2202
|
+
|
|
2203
|
+
func (x *CustomPaymentMethod) String() string {
|
|
2204
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2205
|
+
}
|
|
2206
|
+
|
|
2207
|
+
func (*CustomPaymentMethod) ProtoMessage() {}
|
|
2208
|
+
|
|
2209
|
+
func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
|
|
2210
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
|
|
2211
|
+
if x != nil {
|
|
2212
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2213
|
+
if ms.LoadMessageInfo() == nil {
|
|
2214
|
+
ms.StoreMessageInfo(mi)
|
|
2215
|
+
}
|
|
2216
|
+
return ms
|
|
2217
|
+
}
|
|
2218
|
+
return mi.MessageOf(x)
|
|
2219
|
+
}
|
|
2220
|
+
|
|
2221
|
+
// Deprecated: Use CustomPaymentMethod.ProtoReflect.Descriptor instead.
|
|
2222
|
+
func (*CustomPaymentMethod) Descriptor() ([]byte, []int) {
|
|
2223
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16}
|
|
2224
|
+
}
|
|
2225
|
+
|
|
2226
|
+
func (x *CustomPaymentMethod) GetCredentialID() string {
|
|
2227
|
+
if x != nil && x.CredentialID != nil {
|
|
2228
|
+
return *x.CredentialID
|
|
2229
|
+
}
|
|
2230
|
+
return ""
|
|
2231
|
+
}
|
|
2232
|
+
|
|
2233
|
+
func (x *CustomPaymentMethod) GetCountry() string {
|
|
2234
|
+
if x != nil && x.Country != nil {
|
|
2235
|
+
return *x.Country
|
|
2236
|
+
}
|
|
2237
|
+
return ""
|
|
2238
|
+
}
|
|
2239
|
+
|
|
2240
|
+
func (x *CustomPaymentMethod) GetType() string {
|
|
2241
|
+
if x != nil && x.Type != nil {
|
|
2242
|
+
return *x.Type
|
|
2243
|
+
}
|
|
2244
|
+
return ""
|
|
2245
|
+
}
|
|
2246
|
+
|
|
2247
|
+
func (x *CustomPaymentMethod) GetMetadata() []*CustomPaymentMethodMetadata {
|
|
2248
|
+
if x != nil {
|
|
2249
|
+
return x.Metadata
|
|
2250
|
+
}
|
|
2251
|
+
return nil
|
|
2252
|
+
}
|
|
2253
|
+
|
|
2254
|
+
type CustomPaymentMethodMetadata struct {
|
|
2255
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2256
|
+
Key *string `protobuf:"bytes,1,req,name=key" json:"key,omitempty"`
|
|
2257
|
+
Value *string `protobuf:"bytes,2,req,name=value" json:"value,omitempty"`
|
|
2258
|
+
unknownFields protoimpl.UnknownFields
|
|
2259
|
+
sizeCache protoimpl.SizeCache
|
|
2260
|
+
}
|
|
2261
|
+
|
|
2262
|
+
func (x *CustomPaymentMethodMetadata) Reset() {
|
|
2263
|
+
*x = CustomPaymentMethodMetadata{}
|
|
2264
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
|
|
2265
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2266
|
+
ms.StoreMessageInfo(mi)
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2269
|
+
func (x *CustomPaymentMethodMetadata) String() string {
|
|
2270
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2271
|
+
}
|
|
2272
|
+
|
|
2273
|
+
func (*CustomPaymentMethodMetadata) ProtoMessage() {}
|
|
2274
|
+
|
|
2275
|
+
func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
|
|
2276
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
|
|
2277
|
+
if x != nil {
|
|
2278
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2279
|
+
if ms.LoadMessageInfo() == nil {
|
|
2280
|
+
ms.StoreMessageInfo(mi)
|
|
2281
|
+
}
|
|
2282
|
+
return ms
|
|
2283
|
+
}
|
|
2284
|
+
return mi.MessageOf(x)
|
|
2285
|
+
}
|
|
2286
|
+
|
|
2287
|
+
// Deprecated: Use CustomPaymentMethodMetadata.ProtoReflect.Descriptor instead.
|
|
2288
|
+
func (*CustomPaymentMethodMetadata) Descriptor() ([]byte, []int) {
|
|
2289
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{17}
|
|
2290
|
+
}
|
|
2291
|
+
|
|
2292
|
+
func (x *CustomPaymentMethodMetadata) GetKey() string {
|
|
2293
|
+
if x != nil && x.Key != nil {
|
|
2294
|
+
return *x.Key
|
|
2295
|
+
}
|
|
2296
|
+
return ""
|
|
2297
|
+
}
|
|
2298
|
+
|
|
2299
|
+
func (x *CustomPaymentMethodMetadata) GetValue() string {
|
|
2300
|
+
if x != nil && x.Value != nil {
|
|
2301
|
+
return *x.Value
|
|
2302
|
+
}
|
|
2303
|
+
return ""
|
|
2304
|
+
}
|
|
2305
|
+
|
|
2306
|
+
type PaymentInfoAction struct {
|
|
2307
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2308
|
+
Cpi *string `protobuf:"bytes,1,opt,name=cpi" json:"cpi,omitempty"`
|
|
2309
|
+
unknownFields protoimpl.UnknownFields
|
|
2310
|
+
sizeCache protoimpl.SizeCache
|
|
2311
|
+
}
|
|
2312
|
+
|
|
2313
|
+
func (x *PaymentInfoAction) Reset() {
|
|
2314
|
+
*x = PaymentInfoAction{}
|
|
2315
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
|
|
2316
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2317
|
+
ms.StoreMessageInfo(mi)
|
|
2318
|
+
}
|
|
2319
|
+
|
|
2320
|
+
func (x *PaymentInfoAction) String() string {
|
|
2321
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2322
|
+
}
|
|
2323
|
+
|
|
2324
|
+
func (*PaymentInfoAction) ProtoMessage() {}
|
|
2325
|
+
|
|
2326
|
+
func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
|
|
2327
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
|
|
2328
|
+
if x != nil {
|
|
2329
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2330
|
+
if ms.LoadMessageInfo() == nil {
|
|
2331
|
+
ms.StoreMessageInfo(mi)
|
|
2332
|
+
}
|
|
2333
|
+
return ms
|
|
2334
|
+
}
|
|
2335
|
+
return mi.MessageOf(x)
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2338
|
+
// Deprecated: Use PaymentInfoAction.ProtoReflect.Descriptor instead.
|
|
2339
|
+
func (*PaymentInfoAction) Descriptor() ([]byte, []int) {
|
|
2340
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2343
|
+
func (x *PaymentInfoAction) GetCpi() string {
|
|
2344
|
+
if x != nil && x.Cpi != nil {
|
|
2345
|
+
return *x.Cpi
|
|
2346
|
+
}
|
|
2347
|
+
return ""
|
|
2348
|
+
}
|
|
2349
|
+
|
|
2350
|
+
type LabelReorderingAction struct {
|
|
2351
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2352
|
+
SortedLabelIDs []int32 `protobuf:"varint,1,rep,name=sortedLabelIDs" json:"sortedLabelIDs,omitempty"`
|
|
2353
|
+
unknownFields protoimpl.UnknownFields
|
|
2354
|
+
sizeCache protoimpl.SizeCache
|
|
2355
|
+
}
|
|
2356
|
+
|
|
2357
|
+
func (x *LabelReorderingAction) Reset() {
|
|
2358
|
+
*x = LabelReorderingAction{}
|
|
2359
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
|
|
2360
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2361
|
+
ms.StoreMessageInfo(mi)
|
|
2362
|
+
}
|
|
2363
|
+
|
|
2364
|
+
func (x *LabelReorderingAction) String() string {
|
|
2365
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2366
|
+
}
|
|
2367
|
+
|
|
2368
|
+
func (*LabelReorderingAction) ProtoMessage() {}
|
|
2369
|
+
|
|
2370
|
+
func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
|
|
2371
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
|
|
2372
|
+
if x != nil {
|
|
2373
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2374
|
+
if ms.LoadMessageInfo() == nil {
|
|
2375
|
+
ms.StoreMessageInfo(mi)
|
|
2376
|
+
}
|
|
2377
|
+
return ms
|
|
2378
|
+
}
|
|
2379
|
+
return mi.MessageOf(x)
|
|
2380
|
+
}
|
|
2381
|
+
|
|
2382
|
+
// Deprecated: Use LabelReorderingAction.ProtoReflect.Descriptor instead.
|
|
2383
|
+
func (*LabelReorderingAction) Descriptor() ([]byte, []int) {
|
|
2384
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2387
|
+
func (x *LabelReorderingAction) GetSortedLabelIDs() []int32 {
|
|
2388
|
+
if x != nil {
|
|
2389
|
+
return x.SortedLabelIDs
|
|
2390
|
+
}
|
|
2391
|
+
return nil
|
|
2392
|
+
}
|
|
2393
|
+
|
|
2394
|
+
type DeleteIndividualCallLogAction struct {
|
|
2395
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2396
|
+
PeerJID *string `protobuf:"bytes,1,opt,name=peerJID" json:"peerJID,omitempty"`
|
|
2397
|
+
IsIncoming *bool `protobuf:"varint,2,opt,name=isIncoming" json:"isIncoming,omitempty"`
|
|
2398
|
+
unknownFields protoimpl.UnknownFields
|
|
2399
|
+
sizeCache protoimpl.SizeCache
|
|
2400
|
+
}
|
|
2401
|
+
|
|
2402
|
+
func (x *DeleteIndividualCallLogAction) Reset() {
|
|
2403
|
+
*x = DeleteIndividualCallLogAction{}
|
|
2404
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
|
|
2405
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2406
|
+
ms.StoreMessageInfo(mi)
|
|
2407
|
+
}
|
|
2408
|
+
|
|
2409
|
+
func (x *DeleteIndividualCallLogAction) String() string {
|
|
2410
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2411
|
+
}
|
|
2412
|
+
|
|
2413
|
+
func (*DeleteIndividualCallLogAction) ProtoMessage() {}
|
|
2414
|
+
|
|
2415
|
+
func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
|
|
2416
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
|
|
2417
|
+
if x != nil {
|
|
2418
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2419
|
+
if ms.LoadMessageInfo() == nil {
|
|
2420
|
+
ms.StoreMessageInfo(mi)
|
|
2421
|
+
}
|
|
2422
|
+
return ms
|
|
2423
|
+
}
|
|
2424
|
+
return mi.MessageOf(x)
|
|
2425
|
+
}
|
|
2426
|
+
|
|
2427
|
+
// Deprecated: Use DeleteIndividualCallLogAction.ProtoReflect.Descriptor instead.
|
|
2428
|
+
func (*DeleteIndividualCallLogAction) Descriptor() ([]byte, []int) {
|
|
2429
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
|
|
2430
|
+
}
|
|
2431
|
+
|
|
2432
|
+
func (x *DeleteIndividualCallLogAction) GetPeerJID() string {
|
|
2433
|
+
if x != nil && x.PeerJID != nil {
|
|
2434
|
+
return *x.PeerJID
|
|
2435
|
+
}
|
|
2436
|
+
return ""
|
|
2437
|
+
}
|
|
2438
|
+
|
|
2439
|
+
func (x *DeleteIndividualCallLogAction) GetIsIncoming() bool {
|
|
2440
|
+
if x != nil && x.IsIncoming != nil {
|
|
2441
|
+
return *x.IsIncoming
|
|
2442
|
+
}
|
|
2443
|
+
return false
|
|
2444
|
+
}
|
|
2445
|
+
|
|
2446
|
+
type BotWelcomeRequestAction struct {
|
|
2447
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2448
|
+
IsSent *bool `protobuf:"varint,1,opt,name=isSent" json:"isSent,omitempty"`
|
|
2449
|
+
unknownFields protoimpl.UnknownFields
|
|
2450
|
+
sizeCache protoimpl.SizeCache
|
|
2451
|
+
}
|
|
2452
|
+
|
|
2453
|
+
func (x *BotWelcomeRequestAction) Reset() {
|
|
2454
|
+
*x = BotWelcomeRequestAction{}
|
|
2455
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
|
|
2456
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2457
|
+
ms.StoreMessageInfo(mi)
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2460
|
+
func (x *BotWelcomeRequestAction) String() string {
|
|
2461
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
func (*BotWelcomeRequestAction) ProtoMessage() {}
|
|
2465
|
+
|
|
2466
|
+
func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
|
|
2467
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
|
|
2468
|
+
if x != nil {
|
|
2469
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2470
|
+
if ms.LoadMessageInfo() == nil {
|
|
2471
|
+
ms.StoreMessageInfo(mi)
|
|
2472
|
+
}
|
|
2473
|
+
return ms
|
|
2474
|
+
}
|
|
2475
|
+
return mi.MessageOf(x)
|
|
2476
|
+
}
|
|
2477
|
+
|
|
2478
|
+
// Deprecated: Use BotWelcomeRequestAction.ProtoReflect.Descriptor instead.
|
|
2479
|
+
func (*BotWelcomeRequestAction) Descriptor() ([]byte, []int) {
|
|
2480
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
|
|
2481
|
+
}
|
|
2482
|
+
|
|
2483
|
+
func (x *BotWelcomeRequestAction) GetIsSent() bool {
|
|
2484
|
+
if x != nil && x.IsSent != nil {
|
|
2485
|
+
return *x.IsSent
|
|
2486
|
+
}
|
|
2487
|
+
return false
|
|
2488
|
+
}
|
|
2489
|
+
|
|
2490
|
+
type CallLogAction struct {
|
|
2491
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2492
|
+
CallLogRecord *CallLogRecord `protobuf:"bytes,1,opt,name=callLogRecord" json:"callLogRecord,omitempty"`
|
|
2493
|
+
unknownFields protoimpl.UnknownFields
|
|
2494
|
+
sizeCache protoimpl.SizeCache
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2497
|
+
func (x *CallLogAction) Reset() {
|
|
2498
|
+
*x = CallLogAction{}
|
|
2499
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
|
|
2500
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2501
|
+
ms.StoreMessageInfo(mi)
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
func (x *CallLogAction) String() string {
|
|
2505
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2506
|
+
}
|
|
2507
|
+
|
|
2508
|
+
func (*CallLogAction) ProtoMessage() {}
|
|
2509
|
+
|
|
2510
|
+
func (x *CallLogAction) ProtoReflect() protoreflect.Message {
|
|
2511
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
|
|
2512
|
+
if x != nil {
|
|
2513
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2514
|
+
if ms.LoadMessageInfo() == nil {
|
|
2515
|
+
ms.StoreMessageInfo(mi)
|
|
2516
|
+
}
|
|
2517
|
+
return ms
|
|
2518
|
+
}
|
|
2519
|
+
return mi.MessageOf(x)
|
|
2520
|
+
}
|
|
2521
|
+
|
|
2522
|
+
// Deprecated: Use CallLogAction.ProtoReflect.Descriptor instead.
|
|
2523
|
+
func (*CallLogAction) Descriptor() ([]byte, []int) {
|
|
2524
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
|
|
2525
|
+
}
|
|
2526
|
+
|
|
2527
|
+
func (x *CallLogAction) GetCallLogRecord() *CallLogRecord {
|
|
2528
|
+
if x != nil {
|
|
2529
|
+
return x.CallLogRecord
|
|
2530
|
+
}
|
|
2531
|
+
return nil
|
|
2532
|
+
}
|
|
2533
|
+
|
|
2534
|
+
type PrivacySettingRelayAllCalls struct {
|
|
2535
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2536
|
+
IsEnabled *bool `protobuf:"varint,1,opt,name=isEnabled" json:"isEnabled,omitempty"`
|
|
2537
|
+
unknownFields protoimpl.UnknownFields
|
|
2538
|
+
sizeCache protoimpl.SizeCache
|
|
2539
|
+
}
|
|
2540
|
+
|
|
2541
|
+
func (x *PrivacySettingRelayAllCalls) Reset() {
|
|
2542
|
+
*x = PrivacySettingRelayAllCalls{}
|
|
2543
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
|
|
2544
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2545
|
+
ms.StoreMessageInfo(mi)
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2548
|
+
func (x *PrivacySettingRelayAllCalls) String() string {
|
|
2549
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2550
|
+
}
|
|
2551
|
+
|
|
2552
|
+
func (*PrivacySettingRelayAllCalls) ProtoMessage() {}
|
|
2553
|
+
|
|
2554
|
+
func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
|
|
2555
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
|
|
2556
|
+
if x != nil {
|
|
2557
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2558
|
+
if ms.LoadMessageInfo() == nil {
|
|
2559
|
+
ms.StoreMessageInfo(mi)
|
|
2560
|
+
}
|
|
2561
|
+
return ms
|
|
2562
|
+
}
|
|
2563
|
+
return mi.MessageOf(x)
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2566
|
+
// Deprecated: Use PrivacySettingRelayAllCalls.ProtoReflect.Descriptor instead.
|
|
2567
|
+
func (*PrivacySettingRelayAllCalls) Descriptor() ([]byte, []int) {
|
|
2568
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
|
|
2569
|
+
}
|
|
2570
|
+
|
|
2571
|
+
func (x *PrivacySettingRelayAllCalls) GetIsEnabled() bool {
|
|
2572
|
+
if x != nil && x.IsEnabled != nil {
|
|
2573
|
+
return *x.IsEnabled
|
|
2574
|
+
}
|
|
2575
|
+
return false
|
|
2576
|
+
}
|
|
2577
|
+
|
|
2578
|
+
type ExternalWebBetaAction struct {
|
|
2579
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2580
|
+
IsOptIn *bool `protobuf:"varint,1,opt,name=isOptIn" json:"isOptIn,omitempty"`
|
|
2581
|
+
unknownFields protoimpl.UnknownFields
|
|
2582
|
+
sizeCache protoimpl.SizeCache
|
|
2583
|
+
}
|
|
2584
|
+
|
|
2585
|
+
func (x *ExternalWebBetaAction) Reset() {
|
|
2586
|
+
*x = ExternalWebBetaAction{}
|
|
2587
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
|
|
2588
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2589
|
+
ms.StoreMessageInfo(mi)
|
|
2590
|
+
}
|
|
2591
|
+
|
|
2592
|
+
func (x *ExternalWebBetaAction) String() string {
|
|
2593
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2596
|
+
func (*ExternalWebBetaAction) ProtoMessage() {}
|
|
2597
|
+
|
|
2598
|
+
func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
|
|
2599
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
|
|
2600
|
+
if x != nil {
|
|
2601
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2602
|
+
if ms.LoadMessageInfo() == nil {
|
|
2603
|
+
ms.StoreMessageInfo(mi)
|
|
2604
|
+
}
|
|
2605
|
+
return ms
|
|
2606
|
+
}
|
|
2607
|
+
return mi.MessageOf(x)
|
|
2608
|
+
}
|
|
2609
|
+
|
|
2610
|
+
// Deprecated: Use ExternalWebBetaAction.ProtoReflect.Descriptor instead.
|
|
2611
|
+
func (*ExternalWebBetaAction) Descriptor() ([]byte, []int) {
|
|
2612
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
|
|
2613
|
+
}
|
|
2614
|
+
|
|
2615
|
+
func (x *ExternalWebBetaAction) GetIsOptIn() bool {
|
|
2616
|
+
if x != nil && x.IsOptIn != nil {
|
|
2617
|
+
return *x.IsOptIn
|
|
2618
|
+
}
|
|
2619
|
+
return false
|
|
2620
|
+
}
|
|
2621
|
+
|
|
2622
|
+
type MarketingMessageBroadcastAction struct {
|
|
2623
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2624
|
+
RepliedCount *int32 `protobuf:"varint,1,opt,name=repliedCount" json:"repliedCount,omitempty"`
|
|
2625
|
+
unknownFields protoimpl.UnknownFields
|
|
2626
|
+
sizeCache protoimpl.SizeCache
|
|
2627
|
+
}
|
|
2628
|
+
|
|
2629
|
+
func (x *MarketingMessageBroadcastAction) Reset() {
|
|
2630
|
+
*x = MarketingMessageBroadcastAction{}
|
|
2631
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
|
|
2632
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2633
|
+
ms.StoreMessageInfo(mi)
|
|
2634
|
+
}
|
|
2635
|
+
|
|
2636
|
+
func (x *MarketingMessageBroadcastAction) String() string {
|
|
2637
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2638
|
+
}
|
|
2639
|
+
|
|
2640
|
+
func (*MarketingMessageBroadcastAction) ProtoMessage() {}
|
|
2641
|
+
|
|
2642
|
+
func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
|
|
2643
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
|
|
2644
|
+
if x != nil {
|
|
2645
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2646
|
+
if ms.LoadMessageInfo() == nil {
|
|
2647
|
+
ms.StoreMessageInfo(mi)
|
|
2648
|
+
}
|
|
2649
|
+
return ms
|
|
2650
|
+
}
|
|
2651
|
+
return mi.MessageOf(x)
|
|
2652
|
+
}
|
|
2653
|
+
|
|
2654
|
+
// Deprecated: Use MarketingMessageBroadcastAction.ProtoReflect.Descriptor instead.
|
|
2655
|
+
func (*MarketingMessageBroadcastAction) Descriptor() ([]byte, []int) {
|
|
2656
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
|
|
2657
|
+
}
|
|
2658
|
+
|
|
2659
|
+
func (x *MarketingMessageBroadcastAction) GetRepliedCount() int32 {
|
|
2660
|
+
if x != nil && x.RepliedCount != nil {
|
|
2661
|
+
return *x.RepliedCount
|
|
2662
|
+
}
|
|
2663
|
+
return 0
|
|
2664
|
+
}
|
|
2665
|
+
|
|
2666
|
+
type PnForLidChatAction struct {
|
|
2667
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2668
|
+
PnJID *string `protobuf:"bytes,1,opt,name=pnJID" json:"pnJID,omitempty"`
|
|
2669
|
+
unknownFields protoimpl.UnknownFields
|
|
2670
|
+
sizeCache protoimpl.SizeCache
|
|
2671
|
+
}
|
|
2672
|
+
|
|
2673
|
+
func (x *PnForLidChatAction) Reset() {
|
|
2674
|
+
*x = PnForLidChatAction{}
|
|
2675
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
|
|
2676
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2677
|
+
ms.StoreMessageInfo(mi)
|
|
2678
|
+
}
|
|
2679
|
+
|
|
2680
|
+
func (x *PnForLidChatAction) String() string {
|
|
2681
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2682
|
+
}
|
|
2683
|
+
|
|
2684
|
+
func (*PnForLidChatAction) ProtoMessage() {}
|
|
2685
|
+
|
|
2686
|
+
func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
|
|
2687
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
|
|
2688
|
+
if x != nil {
|
|
2689
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2690
|
+
if ms.LoadMessageInfo() == nil {
|
|
2691
|
+
ms.StoreMessageInfo(mi)
|
|
2692
|
+
}
|
|
2693
|
+
return ms
|
|
2694
|
+
}
|
|
2695
|
+
return mi.MessageOf(x)
|
|
2696
|
+
}
|
|
2697
|
+
|
|
2698
|
+
// Deprecated: Use PnForLidChatAction.ProtoReflect.Descriptor instead.
|
|
2699
|
+
func (*PnForLidChatAction) Descriptor() ([]byte, []int) {
|
|
2700
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
|
|
2701
|
+
}
|
|
2702
|
+
|
|
2703
|
+
func (x *PnForLidChatAction) GetPnJID() string {
|
|
2704
|
+
if x != nil && x.PnJID != nil {
|
|
2705
|
+
return *x.PnJID
|
|
2706
|
+
}
|
|
2707
|
+
return ""
|
|
2708
|
+
}
|
|
2709
|
+
|
|
2710
|
+
type ChatAssignmentOpenedStatusAction struct {
|
|
2711
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2712
|
+
ChatOpened *bool `protobuf:"varint,1,opt,name=chatOpened" json:"chatOpened,omitempty"`
|
|
2713
|
+
unknownFields protoimpl.UnknownFields
|
|
2714
|
+
sizeCache protoimpl.SizeCache
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2717
|
+
func (x *ChatAssignmentOpenedStatusAction) Reset() {
|
|
2718
|
+
*x = ChatAssignmentOpenedStatusAction{}
|
|
2719
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
|
|
2720
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2721
|
+
ms.StoreMessageInfo(mi)
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2724
|
+
func (x *ChatAssignmentOpenedStatusAction) String() string {
|
|
2725
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2726
|
+
}
|
|
2727
|
+
|
|
2728
|
+
func (*ChatAssignmentOpenedStatusAction) ProtoMessage() {}
|
|
2729
|
+
|
|
2730
|
+
func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
|
|
2731
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
|
|
2732
|
+
if x != nil {
|
|
2733
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2734
|
+
if ms.LoadMessageInfo() == nil {
|
|
2735
|
+
ms.StoreMessageInfo(mi)
|
|
2736
|
+
}
|
|
2737
|
+
return ms
|
|
2738
|
+
}
|
|
2739
|
+
return mi.MessageOf(x)
|
|
2740
|
+
}
|
|
2741
|
+
|
|
2742
|
+
// Deprecated: Use ChatAssignmentOpenedStatusAction.ProtoReflect.Descriptor instead.
|
|
2743
|
+
func (*ChatAssignmentOpenedStatusAction) Descriptor() ([]byte, []int) {
|
|
2744
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
|
|
2745
|
+
}
|
|
2746
|
+
|
|
2747
|
+
func (x *ChatAssignmentOpenedStatusAction) GetChatOpened() bool {
|
|
2748
|
+
if x != nil && x.ChatOpened != nil {
|
|
2749
|
+
return *x.ChatOpened
|
|
2750
|
+
}
|
|
2751
|
+
return false
|
|
2752
|
+
}
|
|
2753
|
+
|
|
2754
|
+
type ChatAssignmentAction struct {
|
|
2755
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2756
|
+
DeviceAgentID *string `protobuf:"bytes,1,opt,name=deviceAgentID" json:"deviceAgentID,omitempty"`
|
|
2757
|
+
unknownFields protoimpl.UnknownFields
|
|
2758
|
+
sizeCache protoimpl.SizeCache
|
|
2759
|
+
}
|
|
2760
|
+
|
|
2761
|
+
func (x *ChatAssignmentAction) Reset() {
|
|
2762
|
+
*x = ChatAssignmentAction{}
|
|
2763
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
|
|
2764
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2765
|
+
ms.StoreMessageInfo(mi)
|
|
2766
|
+
}
|
|
2767
|
+
|
|
2768
|
+
func (x *ChatAssignmentAction) String() string {
|
|
2769
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2772
|
+
func (*ChatAssignmentAction) ProtoMessage() {}
|
|
2773
|
+
|
|
2774
|
+
func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
|
|
2775
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
|
|
2776
|
+
if x != nil {
|
|
2777
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2778
|
+
if ms.LoadMessageInfo() == nil {
|
|
2779
|
+
ms.StoreMessageInfo(mi)
|
|
2780
|
+
}
|
|
2781
|
+
return ms
|
|
2782
|
+
}
|
|
2783
|
+
return mi.MessageOf(x)
|
|
2784
|
+
}
|
|
2785
|
+
|
|
2786
|
+
// Deprecated: Use ChatAssignmentAction.ProtoReflect.Descriptor instead.
|
|
2787
|
+
func (*ChatAssignmentAction) Descriptor() ([]byte, []int) {
|
|
2788
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
|
|
2789
|
+
}
|
|
2790
|
+
|
|
2791
|
+
func (x *ChatAssignmentAction) GetDeviceAgentID() string {
|
|
2792
|
+
if x != nil && x.DeviceAgentID != nil {
|
|
2793
|
+
return *x.DeviceAgentID
|
|
2794
|
+
}
|
|
2795
|
+
return ""
|
|
2796
|
+
}
|
|
2797
|
+
|
|
2798
|
+
type StickerAction struct {
|
|
2799
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2800
|
+
URL *string `protobuf:"bytes,1,opt,name=URL" json:"URL,omitempty"`
|
|
2801
|
+
FileEncSHA256 []byte `protobuf:"bytes,2,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
|
|
2802
|
+
MediaKey []byte `protobuf:"bytes,3,opt,name=mediaKey" json:"mediaKey,omitempty"`
|
|
2803
|
+
Mimetype *string `protobuf:"bytes,4,opt,name=mimetype" json:"mimetype,omitempty"`
|
|
2804
|
+
Height *uint32 `protobuf:"varint,5,opt,name=height" json:"height,omitempty"`
|
|
2805
|
+
Width *uint32 `protobuf:"varint,6,opt,name=width" json:"width,omitempty"`
|
|
2806
|
+
DirectPath *string `protobuf:"bytes,7,opt,name=directPath" json:"directPath,omitempty"`
|
|
2807
|
+
FileLength *uint64 `protobuf:"varint,8,opt,name=fileLength" json:"fileLength,omitempty"`
|
|
2808
|
+
IsFavorite *bool `protobuf:"varint,9,opt,name=isFavorite" json:"isFavorite,omitempty"`
|
|
2809
|
+
DeviceIDHint *uint32 `protobuf:"varint,10,opt,name=deviceIDHint" json:"deviceIDHint,omitempty"`
|
|
2810
|
+
IsLottie *bool `protobuf:"varint,11,opt,name=isLottie" json:"isLottie,omitempty"`
|
|
2811
|
+
unknownFields protoimpl.UnknownFields
|
|
2812
|
+
sizeCache protoimpl.SizeCache
|
|
2813
|
+
}
|
|
2814
|
+
|
|
2815
|
+
func (x *StickerAction) Reset() {
|
|
2816
|
+
*x = StickerAction{}
|
|
2817
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
|
|
2818
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2819
|
+
ms.StoreMessageInfo(mi)
|
|
2820
|
+
}
|
|
2821
|
+
|
|
2822
|
+
func (x *StickerAction) String() string {
|
|
2823
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2824
|
+
}
|
|
2825
|
+
|
|
2826
|
+
func (*StickerAction) ProtoMessage() {}
|
|
2827
|
+
|
|
2828
|
+
func (x *StickerAction) ProtoReflect() protoreflect.Message {
|
|
2829
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
|
|
2830
|
+
if x != nil {
|
|
2831
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2832
|
+
if ms.LoadMessageInfo() == nil {
|
|
2833
|
+
ms.StoreMessageInfo(mi)
|
|
2834
|
+
}
|
|
2835
|
+
return ms
|
|
2836
|
+
}
|
|
2837
|
+
return mi.MessageOf(x)
|
|
2838
|
+
}
|
|
2839
|
+
|
|
2840
|
+
// Deprecated: Use StickerAction.ProtoReflect.Descriptor instead.
|
|
2841
|
+
func (*StickerAction) Descriptor() ([]byte, []int) {
|
|
2842
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
|
|
2843
|
+
}
|
|
2844
|
+
|
|
2845
|
+
func (x *StickerAction) GetURL() string {
|
|
2846
|
+
if x != nil && x.URL != nil {
|
|
2847
|
+
return *x.URL
|
|
2848
|
+
}
|
|
2849
|
+
return ""
|
|
2850
|
+
}
|
|
2851
|
+
|
|
2852
|
+
func (x *StickerAction) GetFileEncSHA256() []byte {
|
|
2853
|
+
if x != nil {
|
|
2854
|
+
return x.FileEncSHA256
|
|
2855
|
+
}
|
|
2856
|
+
return nil
|
|
2857
|
+
}
|
|
2858
|
+
|
|
2859
|
+
func (x *StickerAction) GetMediaKey() []byte {
|
|
2860
|
+
if x != nil {
|
|
2861
|
+
return x.MediaKey
|
|
2862
|
+
}
|
|
2863
|
+
return nil
|
|
2864
|
+
}
|
|
2865
|
+
|
|
2866
|
+
func (x *StickerAction) GetMimetype() string {
|
|
2867
|
+
if x != nil && x.Mimetype != nil {
|
|
2868
|
+
return *x.Mimetype
|
|
2869
|
+
}
|
|
2870
|
+
return ""
|
|
2871
|
+
}
|
|
2872
|
+
|
|
2873
|
+
func (x *StickerAction) GetHeight() uint32 {
|
|
2874
|
+
if x != nil && x.Height != nil {
|
|
2875
|
+
return *x.Height
|
|
2876
|
+
}
|
|
2877
|
+
return 0
|
|
2878
|
+
}
|
|
2879
|
+
|
|
2880
|
+
func (x *StickerAction) GetWidth() uint32 {
|
|
2881
|
+
if x != nil && x.Width != nil {
|
|
2882
|
+
return *x.Width
|
|
2883
|
+
}
|
|
2884
|
+
return 0
|
|
2885
|
+
}
|
|
2886
|
+
|
|
2887
|
+
func (x *StickerAction) GetDirectPath() string {
|
|
2888
|
+
if x != nil && x.DirectPath != nil {
|
|
2889
|
+
return *x.DirectPath
|
|
2890
|
+
}
|
|
2891
|
+
return ""
|
|
2892
|
+
}
|
|
2893
|
+
|
|
2894
|
+
func (x *StickerAction) GetFileLength() uint64 {
|
|
2895
|
+
if x != nil && x.FileLength != nil {
|
|
2896
|
+
return *x.FileLength
|
|
2897
|
+
}
|
|
2898
|
+
return 0
|
|
2899
|
+
}
|
|
2900
|
+
|
|
2901
|
+
func (x *StickerAction) GetIsFavorite() bool {
|
|
2902
|
+
if x != nil && x.IsFavorite != nil {
|
|
2903
|
+
return *x.IsFavorite
|
|
2904
|
+
}
|
|
2905
|
+
return false
|
|
2906
|
+
}
|
|
2907
|
+
|
|
2908
|
+
func (x *StickerAction) GetDeviceIDHint() uint32 {
|
|
2909
|
+
if x != nil && x.DeviceIDHint != nil {
|
|
2910
|
+
return *x.DeviceIDHint
|
|
2911
|
+
}
|
|
2912
|
+
return 0
|
|
2913
|
+
}
|
|
2914
|
+
|
|
2915
|
+
func (x *StickerAction) GetIsLottie() bool {
|
|
2916
|
+
if x != nil && x.IsLottie != nil {
|
|
2917
|
+
return *x.IsLottie
|
|
2918
|
+
}
|
|
2919
|
+
return false
|
|
2920
|
+
}
|
|
2921
|
+
|
|
2922
|
+
type RemoveRecentStickerAction struct {
|
|
2923
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2924
|
+
LastStickerSentTS *int64 `protobuf:"varint,1,opt,name=lastStickerSentTS" json:"lastStickerSentTS,omitempty"`
|
|
2925
|
+
unknownFields protoimpl.UnknownFields
|
|
2926
|
+
sizeCache protoimpl.SizeCache
|
|
2927
|
+
}
|
|
2928
|
+
|
|
2929
|
+
func (x *RemoveRecentStickerAction) Reset() {
|
|
2930
|
+
*x = RemoveRecentStickerAction{}
|
|
2931
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
|
|
2932
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2933
|
+
ms.StoreMessageInfo(mi)
|
|
2934
|
+
}
|
|
2935
|
+
|
|
2936
|
+
func (x *RemoveRecentStickerAction) String() string {
|
|
2937
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2938
|
+
}
|
|
2939
|
+
|
|
2940
|
+
func (*RemoveRecentStickerAction) ProtoMessage() {}
|
|
2941
|
+
|
|
2942
|
+
func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
|
|
2943
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
|
|
2944
|
+
if x != nil {
|
|
2945
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2946
|
+
if ms.LoadMessageInfo() == nil {
|
|
2947
|
+
ms.StoreMessageInfo(mi)
|
|
2948
|
+
}
|
|
2949
|
+
return ms
|
|
2950
|
+
}
|
|
2951
|
+
return mi.MessageOf(x)
|
|
2952
|
+
}
|
|
2953
|
+
|
|
2954
|
+
// Deprecated: Use RemoveRecentStickerAction.ProtoReflect.Descriptor instead.
|
|
2955
|
+
func (*RemoveRecentStickerAction) Descriptor() ([]byte, []int) {
|
|
2956
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
|
|
2957
|
+
}
|
|
2958
|
+
|
|
2959
|
+
func (x *RemoveRecentStickerAction) GetLastStickerSentTS() int64 {
|
|
2960
|
+
if x != nil && x.LastStickerSentTS != nil {
|
|
2961
|
+
return *x.LastStickerSentTS
|
|
2962
|
+
}
|
|
2963
|
+
return 0
|
|
2964
|
+
}
|
|
2965
|
+
|
|
2966
|
+
type PrimaryVersionAction struct {
|
|
2967
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2968
|
+
Version *string `protobuf:"bytes,1,opt,name=version" json:"version,omitempty"`
|
|
2969
|
+
unknownFields protoimpl.UnknownFields
|
|
2970
|
+
sizeCache protoimpl.SizeCache
|
|
2971
|
+
}
|
|
2972
|
+
|
|
2973
|
+
func (x *PrimaryVersionAction) Reset() {
|
|
2974
|
+
*x = PrimaryVersionAction{}
|
|
2975
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
|
|
2976
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2977
|
+
ms.StoreMessageInfo(mi)
|
|
2978
|
+
}
|
|
2979
|
+
|
|
2980
|
+
func (x *PrimaryVersionAction) String() string {
|
|
2981
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2982
|
+
}
|
|
2983
|
+
|
|
2984
|
+
func (*PrimaryVersionAction) ProtoMessage() {}
|
|
2985
|
+
|
|
2986
|
+
func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
|
|
2987
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
|
|
2988
|
+
if x != nil {
|
|
2989
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2990
|
+
if ms.LoadMessageInfo() == nil {
|
|
2991
|
+
ms.StoreMessageInfo(mi)
|
|
2992
|
+
}
|
|
2993
|
+
return ms
|
|
2994
|
+
}
|
|
2995
|
+
return mi.MessageOf(x)
|
|
2996
|
+
}
|
|
2997
|
+
|
|
2998
|
+
// Deprecated: Use PrimaryVersionAction.ProtoReflect.Descriptor instead.
|
|
2999
|
+
func (*PrimaryVersionAction) Descriptor() ([]byte, []int) {
|
|
3000
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
|
|
3001
|
+
}
|
|
3002
|
+
|
|
3003
|
+
func (x *PrimaryVersionAction) GetVersion() string {
|
|
3004
|
+
if x != nil && x.Version != nil {
|
|
3005
|
+
return *x.Version
|
|
3006
|
+
}
|
|
3007
|
+
return ""
|
|
3008
|
+
}
|
|
3009
|
+
|
|
3010
|
+
type NuxAction struct {
|
|
3011
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3012
|
+
Acknowledged *bool `protobuf:"varint,1,opt,name=acknowledged" json:"acknowledged,omitempty"`
|
|
3013
|
+
unknownFields protoimpl.UnknownFields
|
|
3014
|
+
sizeCache protoimpl.SizeCache
|
|
3015
|
+
}
|
|
3016
|
+
|
|
3017
|
+
func (x *NuxAction) Reset() {
|
|
3018
|
+
*x = NuxAction{}
|
|
3019
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
|
|
3020
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3021
|
+
ms.StoreMessageInfo(mi)
|
|
3022
|
+
}
|
|
3023
|
+
|
|
3024
|
+
func (x *NuxAction) String() string {
|
|
3025
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3026
|
+
}
|
|
3027
|
+
|
|
3028
|
+
func (*NuxAction) ProtoMessage() {}
|
|
3029
|
+
|
|
3030
|
+
func (x *NuxAction) ProtoReflect() protoreflect.Message {
|
|
3031
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
|
|
3032
|
+
if x != nil {
|
|
3033
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3034
|
+
if ms.LoadMessageInfo() == nil {
|
|
3035
|
+
ms.StoreMessageInfo(mi)
|
|
3036
|
+
}
|
|
3037
|
+
return ms
|
|
3038
|
+
}
|
|
3039
|
+
return mi.MessageOf(x)
|
|
3040
|
+
}
|
|
3041
|
+
|
|
3042
|
+
// Deprecated: Use NuxAction.ProtoReflect.Descriptor instead.
|
|
3043
|
+
func (*NuxAction) Descriptor() ([]byte, []int) {
|
|
3044
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{32}
|
|
3045
|
+
}
|
|
3046
|
+
|
|
3047
|
+
func (x *NuxAction) GetAcknowledged() bool {
|
|
3048
|
+
if x != nil && x.Acknowledged != nil {
|
|
3049
|
+
return *x.Acknowledged
|
|
3050
|
+
}
|
|
3051
|
+
return false
|
|
3052
|
+
}
|
|
3053
|
+
|
|
3054
|
+
type TimeFormatAction struct {
|
|
3055
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3056
|
+
IsTwentyFourHourFormatEnabled *bool `protobuf:"varint,1,opt,name=isTwentyFourHourFormatEnabled" json:"isTwentyFourHourFormatEnabled,omitempty"`
|
|
3057
|
+
unknownFields protoimpl.UnknownFields
|
|
3058
|
+
sizeCache protoimpl.SizeCache
|
|
3059
|
+
}
|
|
3060
|
+
|
|
3061
|
+
func (x *TimeFormatAction) Reset() {
|
|
3062
|
+
*x = TimeFormatAction{}
|
|
3063
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
|
|
3064
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3065
|
+
ms.StoreMessageInfo(mi)
|
|
3066
|
+
}
|
|
3067
|
+
|
|
3068
|
+
func (x *TimeFormatAction) String() string {
|
|
3069
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3070
|
+
}
|
|
3071
|
+
|
|
3072
|
+
func (*TimeFormatAction) ProtoMessage() {}
|
|
3073
|
+
|
|
3074
|
+
func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
|
|
3075
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
|
|
3076
|
+
if x != nil {
|
|
3077
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3078
|
+
if ms.LoadMessageInfo() == nil {
|
|
3079
|
+
ms.StoreMessageInfo(mi)
|
|
3080
|
+
}
|
|
3081
|
+
return ms
|
|
3082
|
+
}
|
|
3083
|
+
return mi.MessageOf(x)
|
|
3084
|
+
}
|
|
3085
|
+
|
|
3086
|
+
// Deprecated: Use TimeFormatAction.ProtoReflect.Descriptor instead.
|
|
3087
|
+
func (*TimeFormatAction) Descriptor() ([]byte, []int) {
|
|
3088
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
|
|
3089
|
+
}
|
|
3090
|
+
|
|
3091
|
+
func (x *TimeFormatAction) GetIsTwentyFourHourFormatEnabled() bool {
|
|
3092
|
+
if x != nil && x.IsTwentyFourHourFormatEnabled != nil {
|
|
3093
|
+
return *x.IsTwentyFourHourFormatEnabled
|
|
3094
|
+
}
|
|
3095
|
+
return false
|
|
3096
|
+
}
|
|
3097
|
+
|
|
3098
|
+
type UserStatusMuteAction struct {
|
|
3099
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3100
|
+
Muted *bool `protobuf:"varint,1,opt,name=muted" json:"muted,omitempty"`
|
|
3101
|
+
unknownFields protoimpl.UnknownFields
|
|
3102
|
+
sizeCache protoimpl.SizeCache
|
|
3103
|
+
}
|
|
3104
|
+
|
|
3105
|
+
func (x *UserStatusMuteAction) Reset() {
|
|
3106
|
+
*x = UserStatusMuteAction{}
|
|
3107
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
|
|
3108
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3109
|
+
ms.StoreMessageInfo(mi)
|
|
3110
|
+
}
|
|
3111
|
+
|
|
3112
|
+
func (x *UserStatusMuteAction) String() string {
|
|
3113
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3114
|
+
}
|
|
3115
|
+
|
|
3116
|
+
func (*UserStatusMuteAction) ProtoMessage() {}
|
|
3117
|
+
|
|
3118
|
+
func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
|
|
3119
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
|
|
3120
|
+
if x != nil {
|
|
3121
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3122
|
+
if ms.LoadMessageInfo() == nil {
|
|
3123
|
+
ms.StoreMessageInfo(mi)
|
|
3124
|
+
}
|
|
3125
|
+
return ms
|
|
3126
|
+
}
|
|
3127
|
+
return mi.MessageOf(x)
|
|
3128
|
+
}
|
|
3129
|
+
|
|
3130
|
+
// Deprecated: Use UserStatusMuteAction.ProtoReflect.Descriptor instead.
|
|
3131
|
+
func (*UserStatusMuteAction) Descriptor() ([]byte, []int) {
|
|
3132
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
|
|
3133
|
+
}
|
|
3134
|
+
|
|
3135
|
+
func (x *UserStatusMuteAction) GetMuted() bool {
|
|
3136
|
+
if x != nil && x.Muted != nil {
|
|
3137
|
+
return *x.Muted
|
|
3138
|
+
}
|
|
3139
|
+
return false
|
|
3140
|
+
}
|
|
3141
|
+
|
|
3142
|
+
type SubscriptionAction struct {
|
|
3143
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3144
|
+
IsDeactivated *bool `protobuf:"varint,1,opt,name=isDeactivated" json:"isDeactivated,omitempty"`
|
|
3145
|
+
IsAutoRenewing *bool `protobuf:"varint,2,opt,name=isAutoRenewing" json:"isAutoRenewing,omitempty"`
|
|
3146
|
+
ExpirationDate *int64 `protobuf:"varint,3,opt,name=expirationDate" json:"expirationDate,omitempty"`
|
|
3147
|
+
unknownFields protoimpl.UnknownFields
|
|
3148
|
+
sizeCache protoimpl.SizeCache
|
|
3149
|
+
}
|
|
3150
|
+
|
|
3151
|
+
func (x *SubscriptionAction) Reset() {
|
|
3152
|
+
*x = SubscriptionAction{}
|
|
3153
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
|
|
3154
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3155
|
+
ms.StoreMessageInfo(mi)
|
|
3156
|
+
}
|
|
3157
|
+
|
|
3158
|
+
func (x *SubscriptionAction) String() string {
|
|
3159
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3160
|
+
}
|
|
3161
|
+
|
|
3162
|
+
func (*SubscriptionAction) ProtoMessage() {}
|
|
3163
|
+
|
|
3164
|
+
func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
|
|
3165
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
|
|
3166
|
+
if x != nil {
|
|
3167
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3168
|
+
if ms.LoadMessageInfo() == nil {
|
|
3169
|
+
ms.StoreMessageInfo(mi)
|
|
3170
|
+
}
|
|
3171
|
+
return ms
|
|
3172
|
+
}
|
|
3173
|
+
return mi.MessageOf(x)
|
|
3174
|
+
}
|
|
3175
|
+
|
|
3176
|
+
// Deprecated: Use SubscriptionAction.ProtoReflect.Descriptor instead.
|
|
3177
|
+
func (*SubscriptionAction) Descriptor() ([]byte, []int) {
|
|
3178
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{35}
|
|
3179
|
+
}
|
|
3180
|
+
|
|
3181
|
+
func (x *SubscriptionAction) GetIsDeactivated() bool {
|
|
3182
|
+
if x != nil && x.IsDeactivated != nil {
|
|
3183
|
+
return *x.IsDeactivated
|
|
3184
|
+
}
|
|
3185
|
+
return false
|
|
3186
|
+
}
|
|
3187
|
+
|
|
3188
|
+
func (x *SubscriptionAction) GetIsAutoRenewing() bool {
|
|
3189
|
+
if x != nil && x.IsAutoRenewing != nil {
|
|
3190
|
+
return *x.IsAutoRenewing
|
|
3191
|
+
}
|
|
3192
|
+
return false
|
|
3193
|
+
}
|
|
3194
|
+
|
|
3195
|
+
func (x *SubscriptionAction) GetExpirationDate() int64 {
|
|
3196
|
+
if x != nil && x.ExpirationDate != nil {
|
|
3197
|
+
return *x.ExpirationDate
|
|
3198
|
+
}
|
|
3199
|
+
return 0
|
|
3200
|
+
}
|
|
3201
|
+
|
|
3202
|
+
type AgentAction struct {
|
|
3203
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3204
|
+
Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
|
3205
|
+
DeviceID *int32 `protobuf:"varint,2,opt,name=deviceID" json:"deviceID,omitempty"`
|
|
3206
|
+
IsDeleted *bool `protobuf:"varint,3,opt,name=isDeleted" json:"isDeleted,omitempty"`
|
|
3207
|
+
unknownFields protoimpl.UnknownFields
|
|
3208
|
+
sizeCache protoimpl.SizeCache
|
|
3209
|
+
}
|
|
3210
|
+
|
|
3211
|
+
func (x *AgentAction) Reset() {
|
|
3212
|
+
*x = AgentAction{}
|
|
3213
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
|
|
3214
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3215
|
+
ms.StoreMessageInfo(mi)
|
|
3216
|
+
}
|
|
3217
|
+
|
|
3218
|
+
func (x *AgentAction) String() string {
|
|
3219
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3220
|
+
}
|
|
3221
|
+
|
|
3222
|
+
func (*AgentAction) ProtoMessage() {}
|
|
3223
|
+
|
|
3224
|
+
func (x *AgentAction) ProtoReflect() protoreflect.Message {
|
|
3225
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
|
|
3226
|
+
if x != nil {
|
|
3227
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3228
|
+
if ms.LoadMessageInfo() == nil {
|
|
3229
|
+
ms.StoreMessageInfo(mi)
|
|
3230
|
+
}
|
|
3231
|
+
return ms
|
|
3232
|
+
}
|
|
3233
|
+
return mi.MessageOf(x)
|
|
3234
|
+
}
|
|
3235
|
+
|
|
3236
|
+
// Deprecated: Use AgentAction.ProtoReflect.Descriptor instead.
|
|
3237
|
+
func (*AgentAction) Descriptor() ([]byte, []int) {
|
|
3238
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
|
|
3239
|
+
}
|
|
3240
|
+
|
|
3241
|
+
func (x *AgentAction) GetName() string {
|
|
3242
|
+
if x != nil && x.Name != nil {
|
|
3243
|
+
return *x.Name
|
|
3244
|
+
}
|
|
3245
|
+
return ""
|
|
3246
|
+
}
|
|
3247
|
+
|
|
3248
|
+
func (x *AgentAction) GetDeviceID() int32 {
|
|
3249
|
+
if x != nil && x.DeviceID != nil {
|
|
3250
|
+
return *x.DeviceID
|
|
3251
|
+
}
|
|
3252
|
+
return 0
|
|
3253
|
+
}
|
|
3254
|
+
|
|
3255
|
+
func (x *AgentAction) GetIsDeleted() bool {
|
|
3256
|
+
if x != nil && x.IsDeleted != nil {
|
|
3257
|
+
return *x.IsDeleted
|
|
3258
|
+
}
|
|
3259
|
+
return false
|
|
3260
|
+
}
|
|
3261
|
+
|
|
3262
|
+
type AndroidUnsupportedActions struct {
|
|
3263
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3264
|
+
Allowed *bool `protobuf:"varint,1,opt,name=allowed" json:"allowed,omitempty"`
|
|
3265
|
+
unknownFields protoimpl.UnknownFields
|
|
3266
|
+
sizeCache protoimpl.SizeCache
|
|
3267
|
+
}
|
|
3268
|
+
|
|
3269
|
+
func (x *AndroidUnsupportedActions) Reset() {
|
|
3270
|
+
*x = AndroidUnsupportedActions{}
|
|
3271
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
|
|
3272
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3273
|
+
ms.StoreMessageInfo(mi)
|
|
3274
|
+
}
|
|
3275
|
+
|
|
3276
|
+
func (x *AndroidUnsupportedActions) String() string {
|
|
3277
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3278
|
+
}
|
|
3279
|
+
|
|
3280
|
+
func (*AndroidUnsupportedActions) ProtoMessage() {}
|
|
3281
|
+
|
|
3282
|
+
func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
|
|
3283
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
|
|
3284
|
+
if x != nil {
|
|
3285
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3286
|
+
if ms.LoadMessageInfo() == nil {
|
|
3287
|
+
ms.StoreMessageInfo(mi)
|
|
3288
|
+
}
|
|
3289
|
+
return ms
|
|
3290
|
+
}
|
|
3291
|
+
return mi.MessageOf(x)
|
|
3292
|
+
}
|
|
3293
|
+
|
|
3294
|
+
// Deprecated: Use AndroidUnsupportedActions.ProtoReflect.Descriptor instead.
|
|
3295
|
+
func (*AndroidUnsupportedActions) Descriptor() ([]byte, []int) {
|
|
3296
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
|
|
3297
|
+
}
|
|
3298
|
+
|
|
3299
|
+
func (x *AndroidUnsupportedActions) GetAllowed() bool {
|
|
3300
|
+
if x != nil && x.Allowed != nil {
|
|
3301
|
+
return *x.Allowed
|
|
3302
|
+
}
|
|
3303
|
+
return false
|
|
3304
|
+
}
|
|
3305
|
+
|
|
3306
|
+
type PrimaryFeature struct {
|
|
3307
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3308
|
+
Flags []string `protobuf:"bytes,1,rep,name=flags" json:"flags,omitempty"`
|
|
3309
|
+
unknownFields protoimpl.UnknownFields
|
|
3310
|
+
sizeCache protoimpl.SizeCache
|
|
3311
|
+
}
|
|
3312
|
+
|
|
3313
|
+
func (x *PrimaryFeature) Reset() {
|
|
3314
|
+
*x = PrimaryFeature{}
|
|
3315
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
|
|
3316
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3317
|
+
ms.StoreMessageInfo(mi)
|
|
3318
|
+
}
|
|
3319
|
+
|
|
3320
|
+
func (x *PrimaryFeature) String() string {
|
|
3321
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3322
|
+
}
|
|
3323
|
+
|
|
3324
|
+
func (*PrimaryFeature) ProtoMessage() {}
|
|
3325
|
+
|
|
3326
|
+
func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
|
|
3327
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
|
|
3328
|
+
if x != nil {
|
|
3329
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3330
|
+
if ms.LoadMessageInfo() == nil {
|
|
3331
|
+
ms.StoreMessageInfo(mi)
|
|
3332
|
+
}
|
|
3333
|
+
return ms
|
|
3334
|
+
}
|
|
3335
|
+
return mi.MessageOf(x)
|
|
3336
|
+
}
|
|
3337
|
+
|
|
3338
|
+
// Deprecated: Use PrimaryFeature.ProtoReflect.Descriptor instead.
|
|
3339
|
+
func (*PrimaryFeature) Descriptor() ([]byte, []int) {
|
|
3340
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
|
|
3341
|
+
}
|
|
3342
|
+
|
|
3343
|
+
func (x *PrimaryFeature) GetFlags() []string {
|
|
3344
|
+
if x != nil {
|
|
3345
|
+
return x.Flags
|
|
3346
|
+
}
|
|
3347
|
+
return nil
|
|
3348
|
+
}
|
|
3349
|
+
|
|
3350
|
+
type KeyExpiration struct {
|
|
3351
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3352
|
+
ExpiredKeyEpoch *int32 `protobuf:"varint,1,opt,name=expiredKeyEpoch" json:"expiredKeyEpoch,omitempty"`
|
|
3353
|
+
unknownFields protoimpl.UnknownFields
|
|
3354
|
+
sizeCache protoimpl.SizeCache
|
|
3355
|
+
}
|
|
3356
|
+
|
|
3357
|
+
func (x *KeyExpiration) Reset() {
|
|
3358
|
+
*x = KeyExpiration{}
|
|
3359
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
|
|
3360
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3361
|
+
ms.StoreMessageInfo(mi)
|
|
3362
|
+
}
|
|
3363
|
+
|
|
3364
|
+
func (x *KeyExpiration) String() string {
|
|
3365
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3366
|
+
}
|
|
3367
|
+
|
|
3368
|
+
func (*KeyExpiration) ProtoMessage() {}
|
|
3369
|
+
|
|
3370
|
+
func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
|
|
3371
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
|
|
3372
|
+
if x != nil {
|
|
3373
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3374
|
+
if ms.LoadMessageInfo() == nil {
|
|
3375
|
+
ms.StoreMessageInfo(mi)
|
|
3376
|
+
}
|
|
3377
|
+
return ms
|
|
3378
|
+
}
|
|
3379
|
+
return mi.MessageOf(x)
|
|
3380
|
+
}
|
|
3381
|
+
|
|
3382
|
+
// Deprecated: Use KeyExpiration.ProtoReflect.Descriptor instead.
|
|
3383
|
+
func (*KeyExpiration) Descriptor() ([]byte, []int) {
|
|
3384
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
|
|
3385
|
+
}
|
|
3386
|
+
|
|
3387
|
+
func (x *KeyExpiration) GetExpiredKeyEpoch() int32 {
|
|
3388
|
+
if x != nil && x.ExpiredKeyEpoch != nil {
|
|
3389
|
+
return *x.ExpiredKeyEpoch
|
|
3390
|
+
}
|
|
3391
|
+
return 0
|
|
3392
|
+
}
|
|
3393
|
+
|
|
3394
|
+
type SyncActionMessage struct {
|
|
3395
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3396
|
+
Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
3397
|
+
Timestamp *int64 `protobuf:"varint,2,opt,name=timestamp" json:"timestamp,omitempty"`
|
|
3398
|
+
unknownFields protoimpl.UnknownFields
|
|
3399
|
+
sizeCache protoimpl.SizeCache
|
|
3400
|
+
}
|
|
3401
|
+
|
|
3402
|
+
func (x *SyncActionMessage) Reset() {
|
|
3403
|
+
*x = SyncActionMessage{}
|
|
3404
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
|
|
3405
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3406
|
+
ms.StoreMessageInfo(mi)
|
|
3407
|
+
}
|
|
3408
|
+
|
|
3409
|
+
func (x *SyncActionMessage) String() string {
|
|
3410
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3411
|
+
}
|
|
3412
|
+
|
|
3413
|
+
func (*SyncActionMessage) ProtoMessage() {}
|
|
3414
|
+
|
|
3415
|
+
func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
|
|
3416
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
|
|
3417
|
+
if x != nil {
|
|
3418
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3419
|
+
if ms.LoadMessageInfo() == nil {
|
|
3420
|
+
ms.StoreMessageInfo(mi)
|
|
3421
|
+
}
|
|
3422
|
+
return ms
|
|
3423
|
+
}
|
|
3424
|
+
return mi.MessageOf(x)
|
|
3425
|
+
}
|
|
3426
|
+
|
|
3427
|
+
// Deprecated: Use SyncActionMessage.ProtoReflect.Descriptor instead.
|
|
3428
|
+
func (*SyncActionMessage) Descriptor() ([]byte, []int) {
|
|
3429
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
|
|
3430
|
+
}
|
|
3431
|
+
|
|
3432
|
+
func (x *SyncActionMessage) GetKey() *waCommon.MessageKey {
|
|
3433
|
+
if x != nil {
|
|
3434
|
+
return x.Key
|
|
3435
|
+
}
|
|
3436
|
+
return nil
|
|
3437
|
+
}
|
|
3438
|
+
|
|
3439
|
+
func (x *SyncActionMessage) GetTimestamp() int64 {
|
|
3440
|
+
if x != nil && x.Timestamp != nil {
|
|
3441
|
+
return *x.Timestamp
|
|
3442
|
+
}
|
|
3443
|
+
return 0
|
|
3444
|
+
}
|
|
3445
|
+
|
|
3446
|
+
type SyncActionMessageRange struct {
|
|
3447
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3448
|
+
LastMessageTimestamp *int64 `protobuf:"varint,1,opt,name=lastMessageTimestamp" json:"lastMessageTimestamp,omitempty"`
|
|
3449
|
+
LastSystemMessageTimestamp *int64 `protobuf:"varint,2,opt,name=lastSystemMessageTimestamp" json:"lastSystemMessageTimestamp,omitempty"`
|
|
3450
|
+
Messages []*SyncActionMessage `protobuf:"bytes,3,rep,name=messages" json:"messages,omitempty"`
|
|
3451
|
+
unknownFields protoimpl.UnknownFields
|
|
3452
|
+
sizeCache protoimpl.SizeCache
|
|
3453
|
+
}
|
|
3454
|
+
|
|
3455
|
+
func (x *SyncActionMessageRange) Reset() {
|
|
3456
|
+
*x = SyncActionMessageRange{}
|
|
3457
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
|
|
3458
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3459
|
+
ms.StoreMessageInfo(mi)
|
|
3460
|
+
}
|
|
3461
|
+
|
|
3462
|
+
func (x *SyncActionMessageRange) String() string {
|
|
3463
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3464
|
+
}
|
|
3465
|
+
|
|
3466
|
+
func (*SyncActionMessageRange) ProtoMessage() {}
|
|
3467
|
+
|
|
3468
|
+
func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
|
|
3469
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
|
|
3470
|
+
if x != nil {
|
|
3471
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3472
|
+
if ms.LoadMessageInfo() == nil {
|
|
3473
|
+
ms.StoreMessageInfo(mi)
|
|
3474
|
+
}
|
|
3475
|
+
return ms
|
|
3476
|
+
}
|
|
3477
|
+
return mi.MessageOf(x)
|
|
3478
|
+
}
|
|
3479
|
+
|
|
3480
|
+
// Deprecated: Use SyncActionMessageRange.ProtoReflect.Descriptor instead.
|
|
3481
|
+
func (*SyncActionMessageRange) Descriptor() ([]byte, []int) {
|
|
3482
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
|
|
3483
|
+
}
|
|
3484
|
+
|
|
3485
|
+
func (x *SyncActionMessageRange) GetLastMessageTimestamp() int64 {
|
|
3486
|
+
if x != nil && x.LastMessageTimestamp != nil {
|
|
3487
|
+
return *x.LastMessageTimestamp
|
|
3488
|
+
}
|
|
3489
|
+
return 0
|
|
3490
|
+
}
|
|
3491
|
+
|
|
3492
|
+
func (x *SyncActionMessageRange) GetLastSystemMessageTimestamp() int64 {
|
|
3493
|
+
if x != nil && x.LastSystemMessageTimestamp != nil {
|
|
3494
|
+
return *x.LastSystemMessageTimestamp
|
|
3495
|
+
}
|
|
3496
|
+
return 0
|
|
3497
|
+
}
|
|
3498
|
+
|
|
3499
|
+
func (x *SyncActionMessageRange) GetMessages() []*SyncActionMessage {
|
|
3500
|
+
if x != nil {
|
|
3501
|
+
return x.Messages
|
|
3502
|
+
}
|
|
3503
|
+
return nil
|
|
3504
|
+
}
|
|
3505
|
+
|
|
3506
|
+
type UnarchiveChatsSetting struct {
|
|
3507
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3508
|
+
UnarchiveChats *bool `protobuf:"varint,1,opt,name=unarchiveChats" json:"unarchiveChats,omitempty"`
|
|
3509
|
+
unknownFields protoimpl.UnknownFields
|
|
3510
|
+
sizeCache protoimpl.SizeCache
|
|
3511
|
+
}
|
|
3512
|
+
|
|
3513
|
+
func (x *UnarchiveChatsSetting) Reset() {
|
|
3514
|
+
*x = UnarchiveChatsSetting{}
|
|
3515
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
|
|
3516
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3517
|
+
ms.StoreMessageInfo(mi)
|
|
3518
|
+
}
|
|
3519
|
+
|
|
3520
|
+
func (x *UnarchiveChatsSetting) String() string {
|
|
3521
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3522
|
+
}
|
|
3523
|
+
|
|
3524
|
+
func (*UnarchiveChatsSetting) ProtoMessage() {}
|
|
3525
|
+
|
|
3526
|
+
func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
|
|
3527
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
|
|
3528
|
+
if x != nil {
|
|
3529
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3530
|
+
if ms.LoadMessageInfo() == nil {
|
|
3531
|
+
ms.StoreMessageInfo(mi)
|
|
3532
|
+
}
|
|
3533
|
+
return ms
|
|
3534
|
+
}
|
|
3535
|
+
return mi.MessageOf(x)
|
|
3536
|
+
}
|
|
3537
|
+
|
|
3538
|
+
// Deprecated: Use UnarchiveChatsSetting.ProtoReflect.Descriptor instead.
|
|
3539
|
+
func (*UnarchiveChatsSetting) Descriptor() ([]byte, []int) {
|
|
3540
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
|
|
3541
|
+
}
|
|
3542
|
+
|
|
3543
|
+
func (x *UnarchiveChatsSetting) GetUnarchiveChats() bool {
|
|
3544
|
+
if x != nil && x.UnarchiveChats != nil {
|
|
3545
|
+
return *x.UnarchiveChats
|
|
3546
|
+
}
|
|
3547
|
+
return false
|
|
3548
|
+
}
|
|
3549
|
+
|
|
3550
|
+
type DeleteChatAction struct {
|
|
3551
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3552
|
+
MessageRange *SyncActionMessageRange `protobuf:"bytes,1,opt,name=messageRange" json:"messageRange,omitempty"`
|
|
3553
|
+
unknownFields protoimpl.UnknownFields
|
|
3554
|
+
sizeCache protoimpl.SizeCache
|
|
3555
|
+
}
|
|
3556
|
+
|
|
3557
|
+
func (x *DeleteChatAction) Reset() {
|
|
3558
|
+
*x = DeleteChatAction{}
|
|
3559
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
|
|
3560
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3561
|
+
ms.StoreMessageInfo(mi)
|
|
3562
|
+
}
|
|
3563
|
+
|
|
3564
|
+
func (x *DeleteChatAction) String() string {
|
|
3565
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3566
|
+
}
|
|
3567
|
+
|
|
3568
|
+
func (*DeleteChatAction) ProtoMessage() {}
|
|
3569
|
+
|
|
3570
|
+
func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
|
|
3571
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
|
|
3572
|
+
if x != nil {
|
|
3573
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3574
|
+
if ms.LoadMessageInfo() == nil {
|
|
3575
|
+
ms.StoreMessageInfo(mi)
|
|
3576
|
+
}
|
|
3577
|
+
return ms
|
|
3578
|
+
}
|
|
3579
|
+
return mi.MessageOf(x)
|
|
3580
|
+
}
|
|
3581
|
+
|
|
3582
|
+
// Deprecated: Use DeleteChatAction.ProtoReflect.Descriptor instead.
|
|
3583
|
+
func (*DeleteChatAction) Descriptor() ([]byte, []int) {
|
|
3584
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
|
|
3585
|
+
}
|
|
3586
|
+
|
|
3587
|
+
func (x *DeleteChatAction) GetMessageRange() *SyncActionMessageRange {
|
|
3588
|
+
if x != nil {
|
|
3589
|
+
return x.MessageRange
|
|
3590
|
+
}
|
|
3591
|
+
return nil
|
|
3592
|
+
}
|
|
3593
|
+
|
|
3594
|
+
type ClearChatAction struct {
|
|
3595
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3596
|
+
MessageRange *SyncActionMessageRange `protobuf:"bytes,1,opt,name=messageRange" json:"messageRange,omitempty"`
|
|
3597
|
+
unknownFields protoimpl.UnknownFields
|
|
3598
|
+
sizeCache protoimpl.SizeCache
|
|
3599
|
+
}
|
|
3600
|
+
|
|
3601
|
+
func (x *ClearChatAction) Reset() {
|
|
3602
|
+
*x = ClearChatAction{}
|
|
3603
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
|
|
3604
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3605
|
+
ms.StoreMessageInfo(mi)
|
|
3606
|
+
}
|
|
3607
|
+
|
|
3608
|
+
func (x *ClearChatAction) String() string {
|
|
3609
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3610
|
+
}
|
|
3611
|
+
|
|
3612
|
+
func (*ClearChatAction) ProtoMessage() {}
|
|
3613
|
+
|
|
3614
|
+
func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
|
|
3615
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
|
|
3616
|
+
if x != nil {
|
|
3617
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3618
|
+
if ms.LoadMessageInfo() == nil {
|
|
3619
|
+
ms.StoreMessageInfo(mi)
|
|
3620
|
+
}
|
|
3621
|
+
return ms
|
|
3622
|
+
}
|
|
3623
|
+
return mi.MessageOf(x)
|
|
3624
|
+
}
|
|
3625
|
+
|
|
3626
|
+
// Deprecated: Use ClearChatAction.ProtoReflect.Descriptor instead.
|
|
3627
|
+
func (*ClearChatAction) Descriptor() ([]byte, []int) {
|
|
3628
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
|
|
3629
|
+
}
|
|
3630
|
+
|
|
3631
|
+
func (x *ClearChatAction) GetMessageRange() *SyncActionMessageRange {
|
|
3632
|
+
if x != nil {
|
|
3633
|
+
return x.MessageRange
|
|
3634
|
+
}
|
|
3635
|
+
return nil
|
|
3636
|
+
}
|
|
3637
|
+
|
|
3638
|
+
type MarkChatAsReadAction struct {
|
|
3639
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3640
|
+
Read *bool `protobuf:"varint,1,opt,name=read" json:"read,omitempty"`
|
|
3641
|
+
MessageRange *SyncActionMessageRange `protobuf:"bytes,2,opt,name=messageRange" json:"messageRange,omitempty"`
|
|
3642
|
+
unknownFields protoimpl.UnknownFields
|
|
3643
|
+
sizeCache protoimpl.SizeCache
|
|
3644
|
+
}
|
|
3645
|
+
|
|
3646
|
+
func (x *MarkChatAsReadAction) Reset() {
|
|
3647
|
+
*x = MarkChatAsReadAction{}
|
|
3648
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
|
|
3649
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3650
|
+
ms.StoreMessageInfo(mi)
|
|
3651
|
+
}
|
|
3652
|
+
|
|
3653
|
+
func (x *MarkChatAsReadAction) String() string {
|
|
3654
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3655
|
+
}
|
|
3656
|
+
|
|
3657
|
+
func (*MarkChatAsReadAction) ProtoMessage() {}
|
|
3658
|
+
|
|
3659
|
+
func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
|
|
3660
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
|
|
3661
|
+
if x != nil {
|
|
3662
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3663
|
+
if ms.LoadMessageInfo() == nil {
|
|
3664
|
+
ms.StoreMessageInfo(mi)
|
|
3665
|
+
}
|
|
3666
|
+
return ms
|
|
3667
|
+
}
|
|
3668
|
+
return mi.MessageOf(x)
|
|
3669
|
+
}
|
|
3670
|
+
|
|
3671
|
+
// Deprecated: Use MarkChatAsReadAction.ProtoReflect.Descriptor instead.
|
|
3672
|
+
func (*MarkChatAsReadAction) Descriptor() ([]byte, []int) {
|
|
3673
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
|
|
3674
|
+
}
|
|
3675
|
+
|
|
3676
|
+
func (x *MarkChatAsReadAction) GetRead() bool {
|
|
3677
|
+
if x != nil && x.Read != nil {
|
|
3678
|
+
return *x.Read
|
|
3679
|
+
}
|
|
3680
|
+
return false
|
|
3681
|
+
}
|
|
3682
|
+
|
|
3683
|
+
func (x *MarkChatAsReadAction) GetMessageRange() *SyncActionMessageRange {
|
|
3684
|
+
if x != nil {
|
|
3685
|
+
return x.MessageRange
|
|
3686
|
+
}
|
|
3687
|
+
return nil
|
|
3688
|
+
}
|
|
3689
|
+
|
|
3690
|
+
type DeleteMessageForMeAction struct {
|
|
3691
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3692
|
+
DeleteMedia *bool `protobuf:"varint,1,opt,name=deleteMedia" json:"deleteMedia,omitempty"`
|
|
3693
|
+
MessageTimestamp *int64 `protobuf:"varint,2,opt,name=messageTimestamp" json:"messageTimestamp,omitempty"`
|
|
3694
|
+
unknownFields protoimpl.UnknownFields
|
|
3695
|
+
sizeCache protoimpl.SizeCache
|
|
3696
|
+
}
|
|
3697
|
+
|
|
3698
|
+
func (x *DeleteMessageForMeAction) Reset() {
|
|
3699
|
+
*x = DeleteMessageForMeAction{}
|
|
3700
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
|
|
3701
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3702
|
+
ms.StoreMessageInfo(mi)
|
|
3703
|
+
}
|
|
3704
|
+
|
|
3705
|
+
func (x *DeleteMessageForMeAction) String() string {
|
|
3706
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3709
|
+
func (*DeleteMessageForMeAction) ProtoMessage() {}
|
|
3710
|
+
|
|
3711
|
+
func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
|
|
3712
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
|
|
3713
|
+
if x != nil {
|
|
3714
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3715
|
+
if ms.LoadMessageInfo() == nil {
|
|
3716
|
+
ms.StoreMessageInfo(mi)
|
|
3717
|
+
}
|
|
3718
|
+
return ms
|
|
3719
|
+
}
|
|
3720
|
+
return mi.MessageOf(x)
|
|
3721
|
+
}
|
|
3722
|
+
|
|
3723
|
+
// Deprecated: Use DeleteMessageForMeAction.ProtoReflect.Descriptor instead.
|
|
3724
|
+
func (*DeleteMessageForMeAction) Descriptor() ([]byte, []int) {
|
|
3725
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
|
|
3726
|
+
}
|
|
3727
|
+
|
|
3728
|
+
func (x *DeleteMessageForMeAction) GetDeleteMedia() bool {
|
|
3729
|
+
if x != nil && x.DeleteMedia != nil {
|
|
3730
|
+
return *x.DeleteMedia
|
|
3731
|
+
}
|
|
3732
|
+
return false
|
|
3733
|
+
}
|
|
3734
|
+
|
|
3735
|
+
func (x *DeleteMessageForMeAction) GetMessageTimestamp() int64 {
|
|
3736
|
+
if x != nil && x.MessageTimestamp != nil {
|
|
3737
|
+
return *x.MessageTimestamp
|
|
3738
|
+
}
|
|
3739
|
+
return 0
|
|
3740
|
+
}
|
|
3741
|
+
|
|
3742
|
+
type ArchiveChatAction struct {
|
|
3743
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3744
|
+
Archived *bool `protobuf:"varint,1,opt,name=archived" json:"archived,omitempty"`
|
|
3745
|
+
MessageRange *SyncActionMessageRange `protobuf:"bytes,2,opt,name=messageRange" json:"messageRange,omitempty"`
|
|
3746
|
+
unknownFields protoimpl.UnknownFields
|
|
3747
|
+
sizeCache protoimpl.SizeCache
|
|
3748
|
+
}
|
|
3749
|
+
|
|
3750
|
+
func (x *ArchiveChatAction) Reset() {
|
|
3751
|
+
*x = ArchiveChatAction{}
|
|
3752
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
|
|
3753
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3754
|
+
ms.StoreMessageInfo(mi)
|
|
3755
|
+
}
|
|
3756
|
+
|
|
3757
|
+
func (x *ArchiveChatAction) String() string {
|
|
3758
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3759
|
+
}
|
|
3760
|
+
|
|
3761
|
+
func (*ArchiveChatAction) ProtoMessage() {}
|
|
3762
|
+
|
|
3763
|
+
func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
|
|
3764
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
|
|
3765
|
+
if x != nil {
|
|
3766
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3767
|
+
if ms.LoadMessageInfo() == nil {
|
|
3768
|
+
ms.StoreMessageInfo(mi)
|
|
3769
|
+
}
|
|
3770
|
+
return ms
|
|
3771
|
+
}
|
|
3772
|
+
return mi.MessageOf(x)
|
|
3773
|
+
}
|
|
3774
|
+
|
|
3775
|
+
// Deprecated: Use ArchiveChatAction.ProtoReflect.Descriptor instead.
|
|
3776
|
+
func (*ArchiveChatAction) Descriptor() ([]byte, []int) {
|
|
3777
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
|
|
3778
|
+
}
|
|
3779
|
+
|
|
3780
|
+
func (x *ArchiveChatAction) GetArchived() bool {
|
|
3781
|
+
if x != nil && x.Archived != nil {
|
|
3782
|
+
return *x.Archived
|
|
3783
|
+
}
|
|
3784
|
+
return false
|
|
3785
|
+
}
|
|
3786
|
+
|
|
3787
|
+
func (x *ArchiveChatAction) GetMessageRange() *SyncActionMessageRange {
|
|
3788
|
+
if x != nil {
|
|
3789
|
+
return x.MessageRange
|
|
3790
|
+
}
|
|
3791
|
+
return nil
|
|
3792
|
+
}
|
|
3793
|
+
|
|
3794
|
+
type RecentEmojiWeightsAction struct {
|
|
3795
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3796
|
+
Weights []*RecentEmojiWeight `protobuf:"bytes,1,rep,name=weights" json:"weights,omitempty"`
|
|
3797
|
+
unknownFields protoimpl.UnknownFields
|
|
3798
|
+
sizeCache protoimpl.SizeCache
|
|
3799
|
+
}
|
|
3800
|
+
|
|
3801
|
+
func (x *RecentEmojiWeightsAction) Reset() {
|
|
3802
|
+
*x = RecentEmojiWeightsAction{}
|
|
3803
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
|
|
3804
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3805
|
+
ms.StoreMessageInfo(mi)
|
|
3806
|
+
}
|
|
3807
|
+
|
|
3808
|
+
func (x *RecentEmojiWeightsAction) String() string {
|
|
3809
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3810
|
+
}
|
|
3811
|
+
|
|
3812
|
+
func (*RecentEmojiWeightsAction) ProtoMessage() {}
|
|
3813
|
+
|
|
3814
|
+
func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
|
|
3815
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
|
|
3816
|
+
if x != nil {
|
|
3817
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3818
|
+
if ms.LoadMessageInfo() == nil {
|
|
3819
|
+
ms.StoreMessageInfo(mi)
|
|
3820
|
+
}
|
|
3821
|
+
return ms
|
|
3822
|
+
}
|
|
3823
|
+
return mi.MessageOf(x)
|
|
3824
|
+
}
|
|
3825
|
+
|
|
3826
|
+
// Deprecated: Use RecentEmojiWeightsAction.ProtoReflect.Descriptor instead.
|
|
3827
|
+
func (*RecentEmojiWeightsAction) Descriptor() ([]byte, []int) {
|
|
3828
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
|
|
3829
|
+
}
|
|
3830
|
+
|
|
3831
|
+
func (x *RecentEmojiWeightsAction) GetWeights() []*RecentEmojiWeight {
|
|
3832
|
+
if x != nil {
|
|
3833
|
+
return x.Weights
|
|
3834
|
+
}
|
|
3835
|
+
return nil
|
|
3836
|
+
}
|
|
3837
|
+
|
|
3838
|
+
type LabelAssociationAction struct {
|
|
3839
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3840
|
+
Labeled *bool `protobuf:"varint,1,opt,name=labeled" json:"labeled,omitempty"`
|
|
3841
|
+
unknownFields protoimpl.UnknownFields
|
|
3842
|
+
sizeCache protoimpl.SizeCache
|
|
3843
|
+
}
|
|
3844
|
+
|
|
3845
|
+
func (x *LabelAssociationAction) Reset() {
|
|
3846
|
+
*x = LabelAssociationAction{}
|
|
3847
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
|
|
3848
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3849
|
+
ms.StoreMessageInfo(mi)
|
|
3850
|
+
}
|
|
3851
|
+
|
|
3852
|
+
func (x *LabelAssociationAction) String() string {
|
|
3853
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3854
|
+
}
|
|
3855
|
+
|
|
3856
|
+
func (*LabelAssociationAction) ProtoMessage() {}
|
|
3857
|
+
|
|
3858
|
+
func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
|
|
3859
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
|
|
3860
|
+
if x != nil {
|
|
3861
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3862
|
+
if ms.LoadMessageInfo() == nil {
|
|
3863
|
+
ms.StoreMessageInfo(mi)
|
|
3864
|
+
}
|
|
3865
|
+
return ms
|
|
3866
|
+
}
|
|
3867
|
+
return mi.MessageOf(x)
|
|
3868
|
+
}
|
|
3869
|
+
|
|
3870
|
+
// Deprecated: Use LabelAssociationAction.ProtoReflect.Descriptor instead.
|
|
3871
|
+
func (*LabelAssociationAction) Descriptor() ([]byte, []int) {
|
|
3872
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
|
|
3873
|
+
}
|
|
3874
|
+
|
|
3875
|
+
func (x *LabelAssociationAction) GetLabeled() bool {
|
|
3876
|
+
if x != nil && x.Labeled != nil {
|
|
3877
|
+
return *x.Labeled
|
|
3878
|
+
}
|
|
3879
|
+
return false
|
|
3880
|
+
}
|
|
3881
|
+
|
|
3882
|
+
type QuickReplyAction struct {
|
|
3883
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3884
|
+
Shortcut *string `protobuf:"bytes,1,opt,name=shortcut" json:"shortcut,omitempty"`
|
|
3885
|
+
Message *string `protobuf:"bytes,2,opt,name=message" json:"message,omitempty"`
|
|
3886
|
+
Keywords []string `protobuf:"bytes,3,rep,name=keywords" json:"keywords,omitempty"`
|
|
3887
|
+
Count *int32 `protobuf:"varint,4,opt,name=count" json:"count,omitempty"`
|
|
3888
|
+
Deleted *bool `protobuf:"varint,5,opt,name=deleted" json:"deleted,omitempty"`
|
|
3889
|
+
unknownFields protoimpl.UnknownFields
|
|
3890
|
+
sizeCache protoimpl.SizeCache
|
|
3891
|
+
}
|
|
3892
|
+
|
|
3893
|
+
func (x *QuickReplyAction) Reset() {
|
|
3894
|
+
*x = QuickReplyAction{}
|
|
3895
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
|
|
3896
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3897
|
+
ms.StoreMessageInfo(mi)
|
|
3898
|
+
}
|
|
3899
|
+
|
|
3900
|
+
func (x *QuickReplyAction) String() string {
|
|
3901
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3902
|
+
}
|
|
3903
|
+
|
|
3904
|
+
func (*QuickReplyAction) ProtoMessage() {}
|
|
3905
|
+
|
|
3906
|
+
func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
|
|
3907
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
|
|
3908
|
+
if x != nil {
|
|
3909
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3910
|
+
if ms.LoadMessageInfo() == nil {
|
|
3911
|
+
ms.StoreMessageInfo(mi)
|
|
3912
|
+
}
|
|
3913
|
+
return ms
|
|
3914
|
+
}
|
|
3915
|
+
return mi.MessageOf(x)
|
|
3916
|
+
}
|
|
3917
|
+
|
|
3918
|
+
// Deprecated: Use QuickReplyAction.ProtoReflect.Descriptor instead.
|
|
3919
|
+
func (*QuickReplyAction) Descriptor() ([]byte, []int) {
|
|
3920
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
|
|
3921
|
+
}
|
|
3922
|
+
|
|
3923
|
+
func (x *QuickReplyAction) GetShortcut() string {
|
|
3924
|
+
if x != nil && x.Shortcut != nil {
|
|
3925
|
+
return *x.Shortcut
|
|
3926
|
+
}
|
|
3927
|
+
return ""
|
|
3928
|
+
}
|
|
3929
|
+
|
|
3930
|
+
func (x *QuickReplyAction) GetMessage() string {
|
|
3931
|
+
if x != nil && x.Message != nil {
|
|
3932
|
+
return *x.Message
|
|
3933
|
+
}
|
|
3934
|
+
return ""
|
|
3935
|
+
}
|
|
3936
|
+
|
|
3937
|
+
func (x *QuickReplyAction) GetKeywords() []string {
|
|
3938
|
+
if x != nil {
|
|
3939
|
+
return x.Keywords
|
|
3940
|
+
}
|
|
3941
|
+
return nil
|
|
3942
|
+
}
|
|
3943
|
+
|
|
3944
|
+
func (x *QuickReplyAction) GetCount() int32 {
|
|
3945
|
+
if x != nil && x.Count != nil {
|
|
3946
|
+
return *x.Count
|
|
3947
|
+
}
|
|
3948
|
+
return 0
|
|
3949
|
+
}
|
|
3950
|
+
|
|
3951
|
+
func (x *QuickReplyAction) GetDeleted() bool {
|
|
3952
|
+
if x != nil && x.Deleted != nil {
|
|
3953
|
+
return *x.Deleted
|
|
3954
|
+
}
|
|
3955
|
+
return false
|
|
3956
|
+
}
|
|
3957
|
+
|
|
3958
|
+
type LocaleSetting struct {
|
|
3959
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3960
|
+
Locale *string `protobuf:"bytes,1,opt,name=locale" json:"locale,omitempty"`
|
|
3961
|
+
unknownFields protoimpl.UnknownFields
|
|
3962
|
+
sizeCache protoimpl.SizeCache
|
|
3963
|
+
}
|
|
3964
|
+
|
|
3965
|
+
func (x *LocaleSetting) Reset() {
|
|
3966
|
+
*x = LocaleSetting{}
|
|
3967
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
|
|
3968
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3969
|
+
ms.StoreMessageInfo(mi)
|
|
3970
|
+
}
|
|
3971
|
+
|
|
3972
|
+
func (x *LocaleSetting) String() string {
|
|
3973
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3974
|
+
}
|
|
3975
|
+
|
|
3976
|
+
func (*LocaleSetting) ProtoMessage() {}
|
|
3977
|
+
|
|
3978
|
+
func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
|
|
3979
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
|
|
3980
|
+
if x != nil {
|
|
3981
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3982
|
+
if ms.LoadMessageInfo() == nil {
|
|
3983
|
+
ms.StoreMessageInfo(mi)
|
|
3984
|
+
}
|
|
3985
|
+
return ms
|
|
3986
|
+
}
|
|
3987
|
+
return mi.MessageOf(x)
|
|
3988
|
+
}
|
|
3989
|
+
|
|
3990
|
+
// Deprecated: Use LocaleSetting.ProtoReflect.Descriptor instead.
|
|
3991
|
+
func (*LocaleSetting) Descriptor() ([]byte, []int) {
|
|
3992
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
|
|
3993
|
+
}
|
|
3994
|
+
|
|
3995
|
+
func (x *LocaleSetting) GetLocale() string {
|
|
3996
|
+
if x != nil && x.Locale != nil {
|
|
3997
|
+
return *x.Locale
|
|
3998
|
+
}
|
|
3999
|
+
return ""
|
|
4000
|
+
}
|
|
4001
|
+
|
|
4002
|
+
type PushNameSetting struct {
|
|
4003
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
4004
|
+
Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
|
4005
|
+
unknownFields protoimpl.UnknownFields
|
|
4006
|
+
sizeCache protoimpl.SizeCache
|
|
4007
|
+
}
|
|
4008
|
+
|
|
4009
|
+
func (x *PushNameSetting) Reset() {
|
|
4010
|
+
*x = PushNameSetting{}
|
|
4011
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
|
|
4012
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4013
|
+
ms.StoreMessageInfo(mi)
|
|
4014
|
+
}
|
|
4015
|
+
|
|
4016
|
+
func (x *PushNameSetting) String() string {
|
|
4017
|
+
return protoimpl.X.MessageStringOf(x)
|
|
4018
|
+
}
|
|
4019
|
+
|
|
4020
|
+
func (*PushNameSetting) ProtoMessage() {}
|
|
4021
|
+
|
|
4022
|
+
func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
|
|
4023
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
|
|
4024
|
+
if x != nil {
|
|
4025
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4026
|
+
if ms.LoadMessageInfo() == nil {
|
|
4027
|
+
ms.StoreMessageInfo(mi)
|
|
4028
|
+
}
|
|
4029
|
+
return ms
|
|
4030
|
+
}
|
|
4031
|
+
return mi.MessageOf(x)
|
|
4032
|
+
}
|
|
4033
|
+
|
|
4034
|
+
// Deprecated: Use PushNameSetting.ProtoReflect.Descriptor instead.
|
|
4035
|
+
func (*PushNameSetting) Descriptor() ([]byte, []int) {
|
|
4036
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
|
|
4037
|
+
}
|
|
4038
|
+
|
|
4039
|
+
func (x *PushNameSetting) GetName() string {
|
|
4040
|
+
if x != nil && x.Name != nil {
|
|
4041
|
+
return *x.Name
|
|
4042
|
+
}
|
|
4043
|
+
return ""
|
|
4044
|
+
}
|
|
4045
|
+
|
|
4046
|
+
type SecurityNotificationSetting struct {
|
|
4047
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
4048
|
+
ShowNotification *bool `protobuf:"varint,1,opt,name=showNotification" json:"showNotification,omitempty"`
|
|
4049
|
+
unknownFields protoimpl.UnknownFields
|
|
4050
|
+
sizeCache protoimpl.SizeCache
|
|
4051
|
+
}
|
|
4052
|
+
|
|
4053
|
+
func (x *SecurityNotificationSetting) Reset() {
|
|
4054
|
+
*x = SecurityNotificationSetting{}
|
|
4055
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
|
|
4056
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4057
|
+
ms.StoreMessageInfo(mi)
|
|
4058
|
+
}
|
|
4059
|
+
|
|
4060
|
+
func (x *SecurityNotificationSetting) String() string {
|
|
4061
|
+
return protoimpl.X.MessageStringOf(x)
|
|
4062
|
+
}
|
|
4063
|
+
|
|
4064
|
+
func (*SecurityNotificationSetting) ProtoMessage() {}
|
|
4065
|
+
|
|
4066
|
+
func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
|
|
4067
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
|
|
4068
|
+
if x != nil {
|
|
4069
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4070
|
+
if ms.LoadMessageInfo() == nil {
|
|
4071
|
+
ms.StoreMessageInfo(mi)
|
|
4072
|
+
}
|
|
4073
|
+
return ms
|
|
4074
|
+
}
|
|
4075
|
+
return mi.MessageOf(x)
|
|
4076
|
+
}
|
|
4077
|
+
|
|
4078
|
+
// Deprecated: Use SecurityNotificationSetting.ProtoReflect.Descriptor instead.
|
|
4079
|
+
func (*SecurityNotificationSetting) Descriptor() ([]byte, []int) {
|
|
4080
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
|
|
4081
|
+
}
|
|
4082
|
+
|
|
4083
|
+
func (x *SecurityNotificationSetting) GetShowNotification() bool {
|
|
4084
|
+
if x != nil && x.ShowNotification != nil {
|
|
4085
|
+
return *x.ShowNotification
|
|
4086
|
+
}
|
|
4087
|
+
return false
|
|
4088
|
+
}
|
|
4089
|
+
|
|
4090
|
+
type PinAction struct {
|
|
4091
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
4092
|
+
Pinned *bool `protobuf:"varint,1,opt,name=pinned" json:"pinned,omitempty"`
|
|
4093
|
+
unknownFields protoimpl.UnknownFields
|
|
4094
|
+
sizeCache protoimpl.SizeCache
|
|
4095
|
+
}
|
|
4096
|
+
|
|
4097
|
+
func (x *PinAction) Reset() {
|
|
4098
|
+
*x = PinAction{}
|
|
4099
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
|
|
4100
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4101
|
+
ms.StoreMessageInfo(mi)
|
|
4102
|
+
}
|
|
4103
|
+
|
|
4104
|
+
func (x *PinAction) String() string {
|
|
4105
|
+
return protoimpl.X.MessageStringOf(x)
|
|
4106
|
+
}
|
|
4107
|
+
|
|
4108
|
+
func (*PinAction) ProtoMessage() {}
|
|
4109
|
+
|
|
4110
|
+
func (x *PinAction) ProtoReflect() protoreflect.Message {
|
|
4111
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
|
|
4112
|
+
if x != nil {
|
|
4113
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4114
|
+
if ms.LoadMessageInfo() == nil {
|
|
4115
|
+
ms.StoreMessageInfo(mi)
|
|
4116
|
+
}
|
|
4117
|
+
return ms
|
|
4118
|
+
}
|
|
4119
|
+
return mi.MessageOf(x)
|
|
4120
|
+
}
|
|
4121
|
+
|
|
4122
|
+
// Deprecated: Use PinAction.ProtoReflect.Descriptor instead.
|
|
4123
|
+
func (*PinAction) Descriptor() ([]byte, []int) {
|
|
4124
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
|
|
4125
|
+
}
|
|
4126
|
+
|
|
4127
|
+
func (x *PinAction) GetPinned() bool {
|
|
4128
|
+
if x != nil && x.Pinned != nil {
|
|
4129
|
+
return *x.Pinned
|
|
4130
|
+
}
|
|
4131
|
+
return false
|
|
4132
|
+
}
|
|
4133
|
+
|
|
4134
|
+
type MuteAction struct {
|
|
4135
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
4136
|
+
Muted *bool `protobuf:"varint,1,opt,name=muted" json:"muted,omitempty"`
|
|
4137
|
+
MuteEndTimestamp *int64 `protobuf:"varint,2,opt,name=muteEndTimestamp" json:"muteEndTimestamp,omitempty"`
|
|
4138
|
+
AutoMuted *bool `protobuf:"varint,3,opt,name=autoMuted" json:"autoMuted,omitempty"`
|
|
4139
|
+
unknownFields protoimpl.UnknownFields
|
|
4140
|
+
sizeCache protoimpl.SizeCache
|
|
4141
|
+
}
|
|
4142
|
+
|
|
4143
|
+
func (x *MuteAction) Reset() {
|
|
4144
|
+
*x = MuteAction{}
|
|
4145
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
|
|
4146
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4147
|
+
ms.StoreMessageInfo(mi)
|
|
4148
|
+
}
|
|
4149
|
+
|
|
4150
|
+
func (x *MuteAction) String() string {
|
|
4151
|
+
return protoimpl.X.MessageStringOf(x)
|
|
4152
|
+
}
|
|
4153
|
+
|
|
4154
|
+
func (*MuteAction) ProtoMessage() {}
|
|
4155
|
+
|
|
4156
|
+
func (x *MuteAction) ProtoReflect() protoreflect.Message {
|
|
4157
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
|
|
4158
|
+
if x != nil {
|
|
4159
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4160
|
+
if ms.LoadMessageInfo() == nil {
|
|
4161
|
+
ms.StoreMessageInfo(mi)
|
|
4162
|
+
}
|
|
4163
|
+
return ms
|
|
4164
|
+
}
|
|
4165
|
+
return mi.MessageOf(x)
|
|
4166
|
+
}
|
|
4167
|
+
|
|
4168
|
+
// Deprecated: Use MuteAction.ProtoReflect.Descriptor instead.
|
|
4169
|
+
func (*MuteAction) Descriptor() ([]byte, []int) {
|
|
4170
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
|
|
4171
|
+
}
|
|
4172
|
+
|
|
4173
|
+
func (x *MuteAction) GetMuted() bool {
|
|
4174
|
+
if x != nil && x.Muted != nil {
|
|
4175
|
+
return *x.Muted
|
|
4176
|
+
}
|
|
4177
|
+
return false
|
|
4178
|
+
}
|
|
4179
|
+
|
|
4180
|
+
func (x *MuteAction) GetMuteEndTimestamp() int64 {
|
|
4181
|
+
if x != nil && x.MuteEndTimestamp != nil {
|
|
4182
|
+
return *x.MuteEndTimestamp
|
|
4183
|
+
}
|
|
4184
|
+
return 0
|
|
4185
|
+
}
|
|
4186
|
+
|
|
4187
|
+
func (x *MuteAction) GetAutoMuted() bool {
|
|
4188
|
+
if x != nil && x.AutoMuted != nil {
|
|
4189
|
+
return *x.AutoMuted
|
|
4190
|
+
}
|
|
4191
|
+
return false
|
|
4192
|
+
}
|
|
4193
|
+
|
|
4194
|
+
type ContactAction struct {
|
|
4195
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
4196
|
+
FullName *string `protobuf:"bytes,1,opt,name=fullName" json:"fullName,omitempty"`
|
|
4197
|
+
FirstName *string `protobuf:"bytes,2,opt,name=firstName" json:"firstName,omitempty"`
|
|
4198
|
+
LidJID *string `protobuf:"bytes,3,opt,name=lidJID" json:"lidJID,omitempty"`
|
|
4199
|
+
SaveOnPrimaryAddressbook *bool `protobuf:"varint,4,opt,name=saveOnPrimaryAddressbook" json:"saveOnPrimaryAddressbook,omitempty"`
|
|
4200
|
+
unknownFields protoimpl.UnknownFields
|
|
4201
|
+
sizeCache protoimpl.SizeCache
|
|
4202
|
+
}
|
|
4203
|
+
|
|
4204
|
+
func (x *ContactAction) Reset() {
|
|
4205
|
+
*x = ContactAction{}
|
|
4206
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
|
|
4207
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4208
|
+
ms.StoreMessageInfo(mi)
|
|
4209
|
+
}
|
|
4210
|
+
|
|
4211
|
+
func (x *ContactAction) String() string {
|
|
4212
|
+
return protoimpl.X.MessageStringOf(x)
|
|
4213
|
+
}
|
|
4214
|
+
|
|
4215
|
+
func (*ContactAction) ProtoMessage() {}
|
|
4216
|
+
|
|
4217
|
+
func (x *ContactAction) ProtoReflect() protoreflect.Message {
|
|
4218
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
|
|
4219
|
+
if x != nil {
|
|
4220
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4221
|
+
if ms.LoadMessageInfo() == nil {
|
|
4222
|
+
ms.StoreMessageInfo(mi)
|
|
4223
|
+
}
|
|
4224
|
+
return ms
|
|
4225
|
+
}
|
|
4226
|
+
return mi.MessageOf(x)
|
|
4227
|
+
}
|
|
4228
|
+
|
|
4229
|
+
// Deprecated: Use ContactAction.ProtoReflect.Descriptor instead.
|
|
4230
|
+
func (*ContactAction) Descriptor() ([]byte, []int) {
|
|
4231
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
|
|
4232
|
+
}
|
|
4233
|
+
|
|
4234
|
+
func (x *ContactAction) GetFullName() string {
|
|
4235
|
+
if x != nil && x.FullName != nil {
|
|
4236
|
+
return *x.FullName
|
|
4237
|
+
}
|
|
4238
|
+
return ""
|
|
4239
|
+
}
|
|
4240
|
+
|
|
4241
|
+
func (x *ContactAction) GetFirstName() string {
|
|
4242
|
+
if x != nil && x.FirstName != nil {
|
|
4243
|
+
return *x.FirstName
|
|
4244
|
+
}
|
|
4245
|
+
return ""
|
|
4246
|
+
}
|
|
4247
|
+
|
|
4248
|
+
func (x *ContactAction) GetLidJID() string {
|
|
4249
|
+
if x != nil && x.LidJID != nil {
|
|
4250
|
+
return *x.LidJID
|
|
4251
|
+
}
|
|
4252
|
+
return ""
|
|
4253
|
+
}
|
|
4254
|
+
|
|
4255
|
+
func (x *ContactAction) GetSaveOnPrimaryAddressbook() bool {
|
|
4256
|
+
if x != nil && x.SaveOnPrimaryAddressbook != nil {
|
|
4257
|
+
return *x.SaveOnPrimaryAddressbook
|
|
4258
|
+
}
|
|
4259
|
+
return false
|
|
4260
|
+
}
|
|
4261
|
+
|
|
4262
|
+
type StarAction struct {
|
|
4263
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
4264
|
+
Starred *bool `protobuf:"varint,1,opt,name=starred" json:"starred,omitempty"`
|
|
4265
|
+
unknownFields protoimpl.UnknownFields
|
|
4266
|
+
sizeCache protoimpl.SizeCache
|
|
4267
|
+
}
|
|
4268
|
+
|
|
4269
|
+
func (x *StarAction) Reset() {
|
|
4270
|
+
*x = StarAction{}
|
|
4271
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
|
|
4272
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4273
|
+
ms.StoreMessageInfo(mi)
|
|
4274
|
+
}
|
|
4275
|
+
|
|
4276
|
+
func (x *StarAction) String() string {
|
|
4277
|
+
return protoimpl.X.MessageStringOf(x)
|
|
4278
|
+
}
|
|
4279
|
+
|
|
4280
|
+
func (*StarAction) ProtoMessage() {}
|
|
4281
|
+
|
|
4282
|
+
func (x *StarAction) ProtoReflect() protoreflect.Message {
|
|
4283
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
|
|
4284
|
+
if x != nil {
|
|
4285
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4286
|
+
if ms.LoadMessageInfo() == nil {
|
|
4287
|
+
ms.StoreMessageInfo(mi)
|
|
4288
|
+
}
|
|
4289
|
+
return ms
|
|
4290
|
+
}
|
|
4291
|
+
return mi.MessageOf(x)
|
|
4292
|
+
}
|
|
4293
|
+
|
|
4294
|
+
// Deprecated: Use StarAction.ProtoReflect.Descriptor instead.
|
|
4295
|
+
func (*StarAction) Descriptor() ([]byte, []int) {
|
|
4296
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
|
|
4297
|
+
}
|
|
4298
|
+
|
|
4299
|
+
func (x *StarAction) GetStarred() bool {
|
|
4300
|
+
if x != nil && x.Starred != nil {
|
|
4301
|
+
return *x.Starred
|
|
4302
|
+
}
|
|
4303
|
+
return false
|
|
4304
|
+
}
|
|
4305
|
+
|
|
4306
|
+
type SyncActionData struct {
|
|
4307
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
4308
|
+
Index []byte `protobuf:"bytes,1,opt,name=index" json:"index,omitempty"`
|
|
4309
|
+
Value *SyncActionValue `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
|
|
4310
|
+
Padding []byte `protobuf:"bytes,3,opt,name=padding" json:"padding,omitempty"`
|
|
4311
|
+
Version *int32 `protobuf:"varint,4,opt,name=version" json:"version,omitempty"`
|
|
4312
|
+
unknownFields protoimpl.UnknownFields
|
|
4313
|
+
sizeCache protoimpl.SizeCache
|
|
4314
|
+
}
|
|
4315
|
+
|
|
4316
|
+
func (x *SyncActionData) Reset() {
|
|
4317
|
+
*x = SyncActionData{}
|
|
4318
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
|
|
4319
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4320
|
+
ms.StoreMessageInfo(mi)
|
|
4321
|
+
}
|
|
4322
|
+
|
|
4323
|
+
func (x *SyncActionData) String() string {
|
|
4324
|
+
return protoimpl.X.MessageStringOf(x)
|
|
4325
|
+
}
|
|
4326
|
+
|
|
4327
|
+
func (*SyncActionData) ProtoMessage() {}
|
|
4328
|
+
|
|
4329
|
+
func (x *SyncActionData) ProtoReflect() protoreflect.Message {
|
|
4330
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
|
|
4331
|
+
if x != nil {
|
|
4332
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4333
|
+
if ms.LoadMessageInfo() == nil {
|
|
4334
|
+
ms.StoreMessageInfo(mi)
|
|
4335
|
+
}
|
|
4336
|
+
return ms
|
|
4337
|
+
}
|
|
4338
|
+
return mi.MessageOf(x)
|
|
4339
|
+
}
|
|
4340
|
+
|
|
4341
|
+
// Deprecated: Use SyncActionData.ProtoReflect.Descriptor instead.
|
|
4342
|
+
func (*SyncActionData) Descriptor() ([]byte, []int) {
|
|
4343
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
|
|
4344
|
+
}
|
|
4345
|
+
|
|
4346
|
+
func (x *SyncActionData) GetIndex() []byte {
|
|
4347
|
+
if x != nil {
|
|
4348
|
+
return x.Index
|
|
4349
|
+
}
|
|
4350
|
+
return nil
|
|
4351
|
+
}
|
|
4352
|
+
|
|
4353
|
+
func (x *SyncActionData) GetValue() *SyncActionValue {
|
|
4354
|
+
if x != nil {
|
|
4355
|
+
return x.Value
|
|
4356
|
+
}
|
|
4357
|
+
return nil
|
|
4358
|
+
}
|
|
4359
|
+
|
|
4360
|
+
func (x *SyncActionData) GetPadding() []byte {
|
|
4361
|
+
if x != nil {
|
|
4362
|
+
return x.Padding
|
|
4363
|
+
}
|
|
4364
|
+
return nil
|
|
4365
|
+
}
|
|
4366
|
+
|
|
4367
|
+
func (x *SyncActionData) GetVersion() int32 {
|
|
4368
|
+
if x != nil && x.Version != nil {
|
|
4369
|
+
return *x.Version
|
|
4370
|
+
}
|
|
4371
|
+
return 0
|
|
4372
|
+
}
|
|
4373
|
+
|
|
4374
|
+
type CallLogRecord_ParticipantInfo struct {
|
|
4375
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
4376
|
+
UserJID *string `protobuf:"bytes,1,opt,name=userJID" json:"userJID,omitempty"`
|
|
4377
|
+
CallResult *CallLogRecord_CallResult `protobuf:"varint,2,opt,name=callResult,enum=WASyncAction.CallLogRecord_CallResult" json:"callResult,omitempty"`
|
|
4378
|
+
unknownFields protoimpl.UnknownFields
|
|
4379
|
+
sizeCache protoimpl.SizeCache
|
|
4380
|
+
}
|
|
4381
|
+
|
|
4382
|
+
func (x *CallLogRecord_ParticipantInfo) Reset() {
|
|
4383
|
+
*x = CallLogRecord_ParticipantInfo{}
|
|
4384
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
|
|
4385
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4386
|
+
ms.StoreMessageInfo(mi)
|
|
4387
|
+
}
|
|
4388
|
+
|
|
4389
|
+
func (x *CallLogRecord_ParticipantInfo) String() string {
|
|
4390
|
+
return protoimpl.X.MessageStringOf(x)
|
|
4391
|
+
}
|
|
4392
|
+
|
|
4393
|
+
func (*CallLogRecord_ParticipantInfo) ProtoMessage() {}
|
|
4394
|
+
|
|
4395
|
+
func (x *CallLogRecord_ParticipantInfo) ProtoReflect() protoreflect.Message {
|
|
4396
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
|
|
4397
|
+
if x != nil {
|
|
4398
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4399
|
+
if ms.LoadMessageInfo() == nil {
|
|
4400
|
+
ms.StoreMessageInfo(mi)
|
|
4401
|
+
}
|
|
4402
|
+
return ms
|
|
4403
|
+
}
|
|
4404
|
+
return mi.MessageOf(x)
|
|
4405
|
+
}
|
|
4406
|
+
|
|
4407
|
+
// Deprecated: Use CallLogRecord_ParticipantInfo.ProtoReflect.Descriptor instead.
|
|
4408
|
+
func (*CallLogRecord_ParticipantInfo) Descriptor() ([]byte, []int) {
|
|
4409
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{0, 0}
|
|
4410
|
+
}
|
|
4411
|
+
|
|
4412
|
+
func (x *CallLogRecord_ParticipantInfo) GetUserJID() string {
|
|
4413
|
+
if x != nil && x.UserJID != nil {
|
|
4414
|
+
return *x.UserJID
|
|
4415
|
+
}
|
|
4416
|
+
return ""
|
|
4417
|
+
}
|
|
4418
|
+
|
|
4419
|
+
func (x *CallLogRecord_ParticipantInfo) GetCallResult() CallLogRecord_CallResult {
|
|
4420
|
+
if x != nil && x.CallResult != nil {
|
|
4421
|
+
return *x.CallResult
|
|
4422
|
+
}
|
|
4423
|
+
return CallLogRecord_CONNECTED
|
|
4424
|
+
}
|
|
4425
|
+
|
|
4426
|
+
type FavoritesAction_Favorite struct {
|
|
4427
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
4428
|
+
ID *string `protobuf:"bytes,1,opt,name=ID" json:"ID,omitempty"`
|
|
4429
|
+
unknownFields protoimpl.UnknownFields
|
|
4430
|
+
sizeCache protoimpl.SizeCache
|
|
4431
|
+
}
|
|
4432
|
+
|
|
4433
|
+
func (x *FavoritesAction_Favorite) Reset() {
|
|
4434
|
+
*x = FavoritesAction_Favorite{}
|
|
4435
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
|
|
4436
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4437
|
+
ms.StoreMessageInfo(mi)
|
|
4438
|
+
}
|
|
4439
|
+
|
|
4440
|
+
func (x *FavoritesAction_Favorite) String() string {
|
|
4441
|
+
return protoimpl.X.MessageStringOf(x)
|
|
4442
|
+
}
|
|
4443
|
+
|
|
4444
|
+
func (*FavoritesAction_Favorite) ProtoMessage() {}
|
|
4445
|
+
|
|
4446
|
+
func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
|
|
4447
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
|
|
4448
|
+
if x != nil {
|
|
4449
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4450
|
+
if ms.LoadMessageInfo() == nil {
|
|
4451
|
+
ms.StoreMessageInfo(mi)
|
|
4452
|
+
}
|
|
4453
|
+
return ms
|
|
4454
|
+
}
|
|
4455
|
+
return mi.MessageOf(x)
|
|
4456
|
+
}
|
|
4457
|
+
|
|
4458
|
+
// Deprecated: Use FavoritesAction_Favorite.ProtoReflect.Descriptor instead.
|
|
4459
|
+
func (*FavoritesAction_Favorite) Descriptor() ([]byte, []int) {
|
|
4460
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11, 0}
|
|
4461
|
+
}
|
|
4462
|
+
|
|
4463
|
+
func (x *FavoritesAction_Favorite) GetID() string {
|
|
4464
|
+
if x != nil && x.ID != nil {
|
|
4465
|
+
return *x.ID
|
|
4466
|
+
}
|
|
4467
|
+
return ""
|
|
4468
|
+
}
|
|
4469
|
+
|
|
4470
|
+
var File_waSyncAction_WASyncAction_proto protoreflect.FileDescriptor
|
|
4471
|
+
|
|
4472
|
+
//go:embed WASyncAction.pb.raw
|
|
4473
|
+
var file_waSyncAction_WASyncAction_proto_rawDesc []byte
|
|
4474
|
+
|
|
4475
|
+
var (
|
|
4476
|
+
file_waSyncAction_WASyncAction_proto_rawDescOnce sync.Once
|
|
4477
|
+
file_waSyncAction_WASyncAction_proto_rawDescData = file_waSyncAction_WASyncAction_proto_rawDesc
|
|
4478
|
+
)
|
|
4479
|
+
|
|
4480
|
+
func file_waSyncAction_WASyncAction_proto_rawDescGZIP() []byte {
|
|
4481
|
+
file_waSyncAction_WASyncAction_proto_rawDescOnce.Do(func() {
|
|
4482
|
+
file_waSyncAction_WASyncAction_proto_rawDescData = protoimpl.X.CompressGZIP(file_waSyncAction_WASyncAction_proto_rawDescData)
|
|
4483
|
+
})
|
|
4484
|
+
return file_waSyncAction_WASyncAction_proto_rawDescData
|
|
4485
|
+
}
|
|
4486
|
+
|
|
4487
|
+
var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 11)
|
|
4488
|
+
var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 61)
|
|
4489
|
+
var file_waSyncAction_WASyncAction_proto_goTypes = []any{
|
|
4490
|
+
(CallLogRecord_CallType)(0), // 0: WASyncAction.CallLogRecord.CallType
|
|
4491
|
+
(CallLogRecord_SilenceReason)(0), // 1: WASyncAction.CallLogRecord.SilenceReason
|
|
4492
|
+
(CallLogRecord_CallResult)(0), // 2: WASyncAction.CallLogRecord.CallResult
|
|
4493
|
+
(WaffleAccountLinkStateAction_AccountLinkState)(0), // 3: WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
|
|
4494
|
+
(MerchantPaymentPartnerAction_Status)(0), // 4: WASyncAction.MerchantPaymentPartnerAction.Status
|
|
4495
|
+
(NoteEditAction_NoteType)(0), // 5: WASyncAction.NoteEditAction.NoteType
|
|
4496
|
+
(StatusPrivacyAction_StatusDistributionMode)(0), // 6: WASyncAction.StatusPrivacyAction.StatusDistributionMode
|
|
4497
|
+
(MarketingMessageAction_MarketingMessagePrototypeType)(0), // 7: WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
|
|
4498
|
+
(UsernameChatStartModeAction_ChatStartMode)(0), // 8: WASyncAction.UsernameChatStartModeAction.ChatStartMode
|
|
4499
|
+
(LabelEditAction_ListType)(0), // 9: WASyncAction.LabelEditAction.ListType
|
|
4500
|
+
(PatchDebugData_Platform)(0), // 10: WASyncAction.PatchDebugData.Platform
|
|
4501
|
+
(*CallLogRecord)(nil), // 11: WASyncAction.CallLogRecord
|
|
4502
|
+
(*WaffleAccountLinkStateAction)(nil), // 12: WASyncAction.WaffleAccountLinkStateAction
|
|
4503
|
+
(*MerchantPaymentPartnerAction)(nil), // 13: WASyncAction.MerchantPaymentPartnerAction
|
|
4504
|
+
(*NoteEditAction)(nil), // 14: WASyncAction.NoteEditAction
|
|
4505
|
+
(*StatusPrivacyAction)(nil), // 15: WASyncAction.StatusPrivacyAction
|
|
4506
|
+
(*MarketingMessageAction)(nil), // 16: WASyncAction.MarketingMessageAction
|
|
4507
|
+
(*UsernameChatStartModeAction)(nil), // 17: WASyncAction.UsernameChatStartModeAction
|
|
4508
|
+
(*LabelEditAction)(nil), // 18: WASyncAction.LabelEditAction
|
|
4509
|
+
(*PatchDebugData)(nil), // 19: WASyncAction.PatchDebugData
|
|
4510
|
+
(*RecentEmojiWeight)(nil), // 20: WASyncAction.RecentEmojiWeight
|
|
4511
|
+
(*SyncActionValue)(nil), // 21: WASyncAction.SyncActionValue
|
|
4512
|
+
(*FavoritesAction)(nil), // 22: WASyncAction.FavoritesAction
|
|
4513
|
+
(*PrivacySettingDisableLinkPreviewsAction)(nil), // 23: WASyncAction.PrivacySettingDisableLinkPreviewsAction
|
|
4514
|
+
(*WamoUserIdentifierAction)(nil), // 24: WASyncAction.WamoUserIdentifierAction
|
|
4515
|
+
(*LockChatAction)(nil), // 25: WASyncAction.LockChatAction
|
|
4516
|
+
(*CustomPaymentMethodsAction)(nil), // 26: WASyncAction.CustomPaymentMethodsAction
|
|
4517
|
+
(*CustomPaymentMethod)(nil), // 27: WASyncAction.CustomPaymentMethod
|
|
4518
|
+
(*CustomPaymentMethodMetadata)(nil), // 28: WASyncAction.CustomPaymentMethodMetadata
|
|
4519
|
+
(*PaymentInfoAction)(nil), // 29: WASyncAction.PaymentInfoAction
|
|
4520
|
+
(*LabelReorderingAction)(nil), // 30: WASyncAction.LabelReorderingAction
|
|
4521
|
+
(*DeleteIndividualCallLogAction)(nil), // 31: WASyncAction.DeleteIndividualCallLogAction
|
|
4522
|
+
(*BotWelcomeRequestAction)(nil), // 32: WASyncAction.BotWelcomeRequestAction
|
|
4523
|
+
(*CallLogAction)(nil), // 33: WASyncAction.CallLogAction
|
|
4524
|
+
(*PrivacySettingRelayAllCalls)(nil), // 34: WASyncAction.PrivacySettingRelayAllCalls
|
|
4525
|
+
(*ExternalWebBetaAction)(nil), // 35: WASyncAction.ExternalWebBetaAction
|
|
4526
|
+
(*MarketingMessageBroadcastAction)(nil), // 36: WASyncAction.MarketingMessageBroadcastAction
|
|
4527
|
+
(*PnForLidChatAction)(nil), // 37: WASyncAction.PnForLidChatAction
|
|
4528
|
+
(*ChatAssignmentOpenedStatusAction)(nil), // 38: WASyncAction.ChatAssignmentOpenedStatusAction
|
|
4529
|
+
(*ChatAssignmentAction)(nil), // 39: WASyncAction.ChatAssignmentAction
|
|
4530
|
+
(*StickerAction)(nil), // 40: WASyncAction.StickerAction
|
|
4531
|
+
(*RemoveRecentStickerAction)(nil), // 41: WASyncAction.RemoveRecentStickerAction
|
|
4532
|
+
(*PrimaryVersionAction)(nil), // 42: WASyncAction.PrimaryVersionAction
|
|
4533
|
+
(*NuxAction)(nil), // 43: WASyncAction.NuxAction
|
|
4534
|
+
(*TimeFormatAction)(nil), // 44: WASyncAction.TimeFormatAction
|
|
4535
|
+
(*UserStatusMuteAction)(nil), // 45: WASyncAction.UserStatusMuteAction
|
|
4536
|
+
(*SubscriptionAction)(nil), // 46: WASyncAction.SubscriptionAction
|
|
4537
|
+
(*AgentAction)(nil), // 47: WASyncAction.AgentAction
|
|
4538
|
+
(*AndroidUnsupportedActions)(nil), // 48: WASyncAction.AndroidUnsupportedActions
|
|
4539
|
+
(*PrimaryFeature)(nil), // 49: WASyncAction.PrimaryFeature
|
|
4540
|
+
(*KeyExpiration)(nil), // 50: WASyncAction.KeyExpiration
|
|
4541
|
+
(*SyncActionMessage)(nil), // 51: WASyncAction.SyncActionMessage
|
|
4542
|
+
(*SyncActionMessageRange)(nil), // 52: WASyncAction.SyncActionMessageRange
|
|
4543
|
+
(*UnarchiveChatsSetting)(nil), // 53: WASyncAction.UnarchiveChatsSetting
|
|
4544
|
+
(*DeleteChatAction)(nil), // 54: WASyncAction.DeleteChatAction
|
|
4545
|
+
(*ClearChatAction)(nil), // 55: WASyncAction.ClearChatAction
|
|
4546
|
+
(*MarkChatAsReadAction)(nil), // 56: WASyncAction.MarkChatAsReadAction
|
|
4547
|
+
(*DeleteMessageForMeAction)(nil), // 57: WASyncAction.DeleteMessageForMeAction
|
|
4548
|
+
(*ArchiveChatAction)(nil), // 58: WASyncAction.ArchiveChatAction
|
|
4549
|
+
(*RecentEmojiWeightsAction)(nil), // 59: WASyncAction.RecentEmojiWeightsAction
|
|
4550
|
+
(*LabelAssociationAction)(nil), // 60: WASyncAction.LabelAssociationAction
|
|
4551
|
+
(*QuickReplyAction)(nil), // 61: WASyncAction.QuickReplyAction
|
|
4552
|
+
(*LocaleSetting)(nil), // 62: WASyncAction.LocaleSetting
|
|
4553
|
+
(*PushNameSetting)(nil), // 63: WASyncAction.PushNameSetting
|
|
4554
|
+
(*SecurityNotificationSetting)(nil), // 64: WASyncAction.SecurityNotificationSetting
|
|
4555
|
+
(*PinAction)(nil), // 65: WASyncAction.PinAction
|
|
4556
|
+
(*MuteAction)(nil), // 66: WASyncAction.MuteAction
|
|
4557
|
+
(*ContactAction)(nil), // 67: WASyncAction.ContactAction
|
|
4558
|
+
(*StarAction)(nil), // 68: WASyncAction.StarAction
|
|
4559
|
+
(*SyncActionData)(nil), // 69: WASyncAction.SyncActionData
|
|
4560
|
+
(*CallLogRecord_ParticipantInfo)(nil), // 70: WASyncAction.CallLogRecord.ParticipantInfo
|
|
4561
|
+
(*FavoritesAction_Favorite)(nil), // 71: WASyncAction.FavoritesAction.Favorite
|
|
4562
|
+
(*waChatLockSettings.ChatLockSettings)(nil), // 72: WAProtobufsChatLockSettings.ChatLockSettings
|
|
4563
|
+
(*waDeviceCapabilities.DeviceCapabilities)(nil), // 73: WAProtobufsDeviceCapabilities.DeviceCapabilities
|
|
4564
|
+
(*waCommon.MessageKey)(nil), // 74: WACommon.MessageKey
|
|
4565
|
+
}
|
|
4566
|
+
var file_waSyncAction_WASyncAction_proto_depIdxs = []int32{
|
|
4567
|
+
2, // 0: WASyncAction.CallLogRecord.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
|
|
4568
|
+
1, // 1: WASyncAction.CallLogRecord.silenceReason:type_name -> WASyncAction.CallLogRecord.SilenceReason
|
|
4569
|
+
70, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
|
|
4570
|
+
0, // 3: WASyncAction.CallLogRecord.callType:type_name -> WASyncAction.CallLogRecord.CallType
|
|
4571
|
+
3, // 4: WASyncAction.WaffleAccountLinkStateAction.linkState:type_name -> WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
|
|
4572
|
+
4, // 5: WASyncAction.MerchantPaymentPartnerAction.status:type_name -> WASyncAction.MerchantPaymentPartnerAction.Status
|
|
4573
|
+
5, // 6: WASyncAction.NoteEditAction.type:type_name -> WASyncAction.NoteEditAction.NoteType
|
|
4574
|
+
6, // 7: WASyncAction.StatusPrivacyAction.mode:type_name -> WASyncAction.StatusPrivacyAction.StatusDistributionMode
|
|
4575
|
+
7, // 8: WASyncAction.MarketingMessageAction.type:type_name -> WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
|
|
4576
|
+
8, // 9: WASyncAction.UsernameChatStartModeAction.chatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction.ChatStartMode
|
|
4577
|
+
9, // 10: WASyncAction.LabelEditAction.type:type_name -> WASyncAction.LabelEditAction.ListType
|
|
4578
|
+
10, // 11: WASyncAction.PatchDebugData.senderPlatform:type_name -> WASyncAction.PatchDebugData.Platform
|
|
4579
|
+
68, // 12: WASyncAction.SyncActionValue.starAction:type_name -> WASyncAction.StarAction
|
|
4580
|
+
67, // 13: WASyncAction.SyncActionValue.contactAction:type_name -> WASyncAction.ContactAction
|
|
4581
|
+
66, // 14: WASyncAction.SyncActionValue.muteAction:type_name -> WASyncAction.MuteAction
|
|
4582
|
+
65, // 15: WASyncAction.SyncActionValue.pinAction:type_name -> WASyncAction.PinAction
|
|
4583
|
+
64, // 16: WASyncAction.SyncActionValue.securityNotificationSetting:type_name -> WASyncAction.SecurityNotificationSetting
|
|
4584
|
+
63, // 17: WASyncAction.SyncActionValue.pushNameSetting:type_name -> WASyncAction.PushNameSetting
|
|
4585
|
+
61, // 18: WASyncAction.SyncActionValue.quickReplyAction:type_name -> WASyncAction.QuickReplyAction
|
|
4586
|
+
59, // 19: WASyncAction.SyncActionValue.recentEmojiWeightsAction:type_name -> WASyncAction.RecentEmojiWeightsAction
|
|
4587
|
+
18, // 20: WASyncAction.SyncActionValue.labelEditAction:type_name -> WASyncAction.LabelEditAction
|
|
4588
|
+
60, // 21: WASyncAction.SyncActionValue.labelAssociationAction:type_name -> WASyncAction.LabelAssociationAction
|
|
4589
|
+
62, // 22: WASyncAction.SyncActionValue.localeSetting:type_name -> WASyncAction.LocaleSetting
|
|
4590
|
+
58, // 23: WASyncAction.SyncActionValue.archiveChatAction:type_name -> WASyncAction.ArchiveChatAction
|
|
4591
|
+
57, // 24: WASyncAction.SyncActionValue.deleteMessageForMeAction:type_name -> WASyncAction.DeleteMessageForMeAction
|
|
4592
|
+
50, // 25: WASyncAction.SyncActionValue.keyExpiration:type_name -> WASyncAction.KeyExpiration
|
|
4593
|
+
56, // 26: WASyncAction.SyncActionValue.markChatAsReadAction:type_name -> WASyncAction.MarkChatAsReadAction
|
|
4594
|
+
55, // 27: WASyncAction.SyncActionValue.clearChatAction:type_name -> WASyncAction.ClearChatAction
|
|
4595
|
+
54, // 28: WASyncAction.SyncActionValue.deleteChatAction:type_name -> WASyncAction.DeleteChatAction
|
|
4596
|
+
53, // 29: WASyncAction.SyncActionValue.unarchiveChatsSetting:type_name -> WASyncAction.UnarchiveChatsSetting
|
|
4597
|
+
49, // 30: WASyncAction.SyncActionValue.primaryFeature:type_name -> WASyncAction.PrimaryFeature
|
|
4598
|
+
48, // 31: WASyncAction.SyncActionValue.androidUnsupportedActions:type_name -> WASyncAction.AndroidUnsupportedActions
|
|
4599
|
+
47, // 32: WASyncAction.SyncActionValue.agentAction:type_name -> WASyncAction.AgentAction
|
|
4600
|
+
46, // 33: WASyncAction.SyncActionValue.subscriptionAction:type_name -> WASyncAction.SubscriptionAction
|
|
4601
|
+
45, // 34: WASyncAction.SyncActionValue.userStatusMuteAction:type_name -> WASyncAction.UserStatusMuteAction
|
|
4602
|
+
44, // 35: WASyncAction.SyncActionValue.timeFormatAction:type_name -> WASyncAction.TimeFormatAction
|
|
4603
|
+
43, // 36: WASyncAction.SyncActionValue.nuxAction:type_name -> WASyncAction.NuxAction
|
|
4604
|
+
42, // 37: WASyncAction.SyncActionValue.primaryVersionAction:type_name -> WASyncAction.PrimaryVersionAction
|
|
4605
|
+
40, // 38: WASyncAction.SyncActionValue.stickerAction:type_name -> WASyncAction.StickerAction
|
|
4606
|
+
41, // 39: WASyncAction.SyncActionValue.removeRecentStickerAction:type_name -> WASyncAction.RemoveRecentStickerAction
|
|
4607
|
+
39, // 40: WASyncAction.SyncActionValue.chatAssignment:type_name -> WASyncAction.ChatAssignmentAction
|
|
4608
|
+
38, // 41: WASyncAction.SyncActionValue.chatAssignmentOpenedStatus:type_name -> WASyncAction.ChatAssignmentOpenedStatusAction
|
|
4609
|
+
37, // 42: WASyncAction.SyncActionValue.pnForLidChatAction:type_name -> WASyncAction.PnForLidChatAction
|
|
4610
|
+
16, // 43: WASyncAction.SyncActionValue.marketingMessageAction:type_name -> WASyncAction.MarketingMessageAction
|
|
4611
|
+
36, // 44: WASyncAction.SyncActionValue.marketingMessageBroadcastAction:type_name -> WASyncAction.MarketingMessageBroadcastAction
|
|
4612
|
+
35, // 45: WASyncAction.SyncActionValue.externalWebBetaAction:type_name -> WASyncAction.ExternalWebBetaAction
|
|
4613
|
+
34, // 46: WASyncAction.SyncActionValue.privacySettingRelayAllCalls:type_name -> WASyncAction.PrivacySettingRelayAllCalls
|
|
4614
|
+
33, // 47: WASyncAction.SyncActionValue.callLogAction:type_name -> WASyncAction.CallLogAction
|
|
4615
|
+
15, // 48: WASyncAction.SyncActionValue.statusPrivacy:type_name -> WASyncAction.StatusPrivacyAction
|
|
4616
|
+
32, // 49: WASyncAction.SyncActionValue.botWelcomeRequestAction:type_name -> WASyncAction.BotWelcomeRequestAction
|
|
4617
|
+
31, // 50: WASyncAction.SyncActionValue.deleteIndividualCallLog:type_name -> WASyncAction.DeleteIndividualCallLogAction
|
|
4618
|
+
30, // 51: WASyncAction.SyncActionValue.labelReorderingAction:type_name -> WASyncAction.LabelReorderingAction
|
|
4619
|
+
29, // 52: WASyncAction.SyncActionValue.paymentInfoAction:type_name -> WASyncAction.PaymentInfoAction
|
|
4620
|
+
26, // 53: WASyncAction.SyncActionValue.customPaymentMethodsAction:type_name -> WASyncAction.CustomPaymentMethodsAction
|
|
4621
|
+
25, // 54: WASyncAction.SyncActionValue.lockChatAction:type_name -> WASyncAction.LockChatAction
|
|
4622
|
+
72, // 55: WASyncAction.SyncActionValue.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
|
|
4623
|
+
24, // 56: WASyncAction.SyncActionValue.wamoUserIdentifierAction:type_name -> WASyncAction.WamoUserIdentifierAction
|
|
4624
|
+
23, // 57: WASyncAction.SyncActionValue.privacySettingDisableLinkPreviewsAction:type_name -> WASyncAction.PrivacySettingDisableLinkPreviewsAction
|
|
4625
|
+
73, // 58: WASyncAction.SyncActionValue.deviceCapabilities:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities
|
|
4626
|
+
14, // 59: WASyncAction.SyncActionValue.noteEditAction:type_name -> WASyncAction.NoteEditAction
|
|
4627
|
+
22, // 60: WASyncAction.SyncActionValue.favoritesAction:type_name -> WASyncAction.FavoritesAction
|
|
4628
|
+
13, // 61: WASyncAction.SyncActionValue.merchantPaymentPartnerAction:type_name -> WASyncAction.MerchantPaymentPartnerAction
|
|
4629
|
+
12, // 62: WASyncAction.SyncActionValue.waffleAccountLinkStateAction:type_name -> WASyncAction.WaffleAccountLinkStateAction
|
|
4630
|
+
17, // 63: WASyncAction.SyncActionValue.usernameChatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction
|
|
4631
|
+
71, // 64: WASyncAction.FavoritesAction.favorites:type_name -> WASyncAction.FavoritesAction.Favorite
|
|
4632
|
+
27, // 65: WASyncAction.CustomPaymentMethodsAction.customPaymentMethods:type_name -> WASyncAction.CustomPaymentMethod
|
|
4633
|
+
28, // 66: WASyncAction.CustomPaymentMethod.metadata:type_name -> WASyncAction.CustomPaymentMethodMetadata
|
|
4634
|
+
11, // 67: WASyncAction.CallLogAction.callLogRecord:type_name -> WASyncAction.CallLogRecord
|
|
4635
|
+
74, // 68: WASyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
|
|
4636
|
+
51, // 69: WASyncAction.SyncActionMessageRange.messages:type_name -> WASyncAction.SyncActionMessage
|
|
4637
|
+
52, // 70: WASyncAction.DeleteChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
4638
|
+
52, // 71: WASyncAction.ClearChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
4639
|
+
52, // 72: WASyncAction.MarkChatAsReadAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
4640
|
+
52, // 73: WASyncAction.ArchiveChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
4641
|
+
20, // 74: WASyncAction.RecentEmojiWeightsAction.weights:type_name -> WASyncAction.RecentEmojiWeight
|
|
4642
|
+
21, // 75: WASyncAction.SyncActionData.value:type_name -> WASyncAction.SyncActionValue
|
|
4643
|
+
2, // 76: WASyncAction.CallLogRecord.ParticipantInfo.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
|
|
4644
|
+
77, // [77:77] is the sub-list for method output_type
|
|
4645
|
+
77, // [77:77] is the sub-list for method input_type
|
|
4646
|
+
77, // [77:77] is the sub-list for extension type_name
|
|
4647
|
+
77, // [77:77] is the sub-list for extension extendee
|
|
4648
|
+
0, // [0:77] is the sub-list for field type_name
|
|
4649
|
+
}
|
|
4650
|
+
|
|
4651
|
+
func init() { file_waSyncAction_WASyncAction_proto_init() }
|
|
4652
|
+
func file_waSyncAction_WASyncAction_proto_init() {
|
|
4653
|
+
if File_waSyncAction_WASyncAction_proto != nil {
|
|
4654
|
+
return
|
|
4655
|
+
}
|
|
4656
|
+
type x struct{}
|
|
4657
|
+
out := protoimpl.TypeBuilder{
|
|
4658
|
+
File: protoimpl.DescBuilder{
|
|
4659
|
+
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
4660
|
+
RawDescriptor: file_waSyncAction_WASyncAction_proto_rawDesc,
|
|
4661
|
+
NumEnums: 11,
|
|
4662
|
+
NumMessages: 61,
|
|
4663
|
+
NumExtensions: 0,
|
|
4664
|
+
NumServices: 0,
|
|
4665
|
+
},
|
|
4666
|
+
GoTypes: file_waSyncAction_WASyncAction_proto_goTypes,
|
|
4667
|
+
DependencyIndexes: file_waSyncAction_WASyncAction_proto_depIdxs,
|
|
4668
|
+
EnumInfos: file_waSyncAction_WASyncAction_proto_enumTypes,
|
|
4669
|
+
MessageInfos: file_waSyncAction_WASyncAction_proto_msgTypes,
|
|
4670
|
+
}.Build()
|
|
4671
|
+
File_waSyncAction_WASyncAction_proto = out.File
|
|
4672
|
+
file_waSyncAction_WASyncAction_proto_rawDesc = nil
|
|
4673
|
+
file_waSyncAction_WASyncAction_proto_goTypes = nil
|
|
4674
|
+
file_waSyncAction_WASyncAction_proto_depIdxs = nil
|
|
4675
|
+
}
|