slidge-whatsapp 0.2.5__cp311-cp311-manylinux_2_36_aarch64.whl → 0.3.0__cp311-cp311-manylinux_2_36_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of slidge-whatsapp might be problematic. Click here for more details.
- slidge_whatsapp/config.py +3 -0
- slidge_whatsapp/contact.py +15 -3
- slidge_whatsapp/event.go +171 -70
- slidge_whatsapp/gateway.go +16 -68
- slidge_whatsapp/gateway.py +4 -5
- slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.h +168 -151
- slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +142 -128
- slidge_whatsapp/generated/whatsapp.c +1689 -1417
- slidge_whatsapp/generated/whatsapp.go +1011 -900
- slidge_whatsapp/generated/whatsapp.py +1175 -1050
- slidge_whatsapp/generated/whatsapp_go.h +168 -151
- slidge_whatsapp/go.mod +21 -15
- slidge_whatsapp/go.sum +49 -31
- slidge_whatsapp/group.py +34 -30
- slidge_whatsapp/media/media.go +22 -12
- slidge_whatsapp/session.go +106 -82
- slidge_whatsapp/session.py +46 -14
- slidge_whatsapp/vendor/github.com/beeper/argo-go/LICENSE +9 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/block/blockreader.go +329 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/block/blockwriter.go +417 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/codec/decoder.go +652 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/codec/encoder.go +985 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/header/header.go +135 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/internal/util/util.go +133 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/label/label.go +384 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/label/wiremarkers.go +37 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/bitset/bitset.go +197 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/buf/buf.go +420 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/varint/varint.go +246 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/wire/wire.go +614 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/wirecodec/decode.go +341 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn.go +4 -4
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_darwin.go +0 -5
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_libinit.go +3 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols.go +40 -20
- slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/list.go +95 -0
- slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/orderedmap.go +187 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz.go +1 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo.go +3 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_nocgo.go +4 -5
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_darwin.go +11 -1
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_linux.go +10 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_windows.go +12 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/.gitignore +0 -2
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/CHANGELOG.md +44 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/COPYRIGHT.txt +6 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/README.md +14 -17
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi.go +1 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi2.go +7 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/darwin_amd64/libffi.8.dylib +0 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/darwin_arm64/libffi.8.dylib +0 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/windows_amd64/libffi-8.dll +0 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/cif.go +15 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/cif_arm64.go +16 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed.go +49 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_darwin_amd64.go +10 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_darwin_arm64.go +10 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_windows_amd64.go +10 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +53 -15
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/fun.go +10 -2
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/init.go +22 -9
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib.go +1 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_unix.go +1 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_windows.go +1 -1
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/README.md +4 -7
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/callback.go +2 -1
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +11545 -6680
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +527 -273
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3.go +57 -23
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.c +4 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.go +4 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth.go +13 -140
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3ext.h +4 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/.gitignore +4 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/LICENSE +202 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/README.md +4 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid.go +35 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_gccgo.go +26 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.3.c +23 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.3.go +22 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.4.go +35 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.4.s +18 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.5.go +28 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.5.s +44 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_slow.go +24 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_gccgo_go1.8.go +17 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.23.go +38 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.25.go +37 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.5.go +57 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.6.go +43 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.9.go +37 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/CONTRIBUTING.md +43 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/README.md +31 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/console.go +20 -5
- slidge_whatsapp/vendor/github.com/rs/zerolog/log/log.go +131 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/log.go +1 -1
- slidge_whatsapp/vendor/github.com/rs/zerolog/sampler.go +4 -1
- slidge_whatsapp/vendor/github.com/rs/zerolog/writer.go +9 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/LICENSE +19 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/argmap.go +37 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/collections.go +148 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/comment.go +31 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/decode.go +216 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/definition.go +110 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/directive.go +43 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/document.go +89 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/dumper.go +159 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/fragment.go +41 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/operation.go +32 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/path.go +72 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/selection.go +41 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/source.go +19 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/type.go +68 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/value.go +122 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupCipher.go +17 -6
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupSessionBuilder.go +17 -7
- slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/store/SenderKeyStore.go +4 -2
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/chain/ChainKey.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/identity/IdentityKey.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/logger/DefaultLogger.go +2 -2
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/FingerprintProtocol.pb.go +3 -2
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/LocalStorageProtocol.pb.go +3 -2
- slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/WhisperTextProtocol.pb.go +3 -2
- slidge_whatsapp/vendor/go.mau.fi/libsignal/session/Session.go +41 -17
- slidge_whatsapp/vendor/go.mau.fi/libsignal/session/SessionCipher.go +64 -30
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/IdentityKeyStore.go +5 -3
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/MessageKeyStore.go +6 -4
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/PreKeyStore.go +6 -4
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SessionStore.go +8 -6
- slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SignedPreKeyStore.go +7 -5
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/connlog.go +257 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/database.go +309 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/iter.go +233 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/json.go +47 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/log.go +129 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/massinsert.go +164 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/queryhelper.go +137 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/reflectscan.go +30 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/transaction.go +180 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgrades.go +250 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgradetable.go +331 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exerrors/dualerror.go +33 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exerrors/must.go +23 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/cors.go +32 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/handleerrors.go +98 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/json.go +36 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/middleware.go +30 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/networkerror.go +38 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exstrings/stringutil.go +104 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +104 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/returnonce.go +25 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/ringbuffer.go +139 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncmap.go +94 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncset.go +136 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/callermarshal.go +28 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/defaults.go +32 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/generics.go +45 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/writer.go +81 -0
- slidge_whatsapp/vendor/go.mau.fi/util/ptr/ptr.go +43 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.pre-commit-config.yaml +3 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +27 -26
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +4 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/keys.go +5 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +32 -26
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/argo-wire-type-store.argo +63 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/argo.go +62 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/name-to-queryids.json +306 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +42 -8
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/encoder.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/broadcast.go +5 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +2 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +134 -55
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +34 -11
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +63 -30
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +78 -34
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +4 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +157 -55
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +202 -154
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +3 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaconn.go +5 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaretry.go +2 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +448 -138
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +106 -31
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +83 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +83 -43
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +9 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +42 -18
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +9 -5
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +17 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/privacysettings.go +10 -11
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/extra.go +7 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go +983 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.proto +85 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/extra.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.pb.go +197 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.proto +13 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.pb.go +279 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.proto +21 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.pb.go +137 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.proto +10 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.pb.go +313 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink/InstamadilloCoreTypeLink.proto +27 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.pb.go +1299 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto +112 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.pb.go +514 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText/InstamadilloCoreTypeText.proto +47 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.pb.go +123 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/InstamadilloDeleteMessage.proto +7 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloDeleteMessage/extra.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.pb.go +720 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/InstamadilloSupplementMessage.proto +59 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloSupplementMessage/extra.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.pb.go +365 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloTransportPayload/InstamadilloTransportPayload.proto +33 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.pb.go +1238 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef/InstamadilloXmaContentRef.proto +105 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.go +39 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.go +354 -175
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.proto +5 -5
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +170 -15
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +4 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.pb.go +5156 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.proto +516 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.go +29 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.go +13 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.go +344 -31
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.proto +26 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/{WAWebProtobufsCompanionReg.pb.go → WACompanionReg.pb.go} +211 -89
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/{WAWebProtobufsCompanionReg.proto → WACompanionReg.proto} +5 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.go +173 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +78 -16
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +5 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +7463 -5180
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +366 -343
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +485 -135
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +17 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.pb.go +198 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.proto +14 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.go +162 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.proto +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.go +32 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.proto +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.go +192 -52
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.proto +8 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.go +60 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/extra.go +7 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.go +39 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.go +61 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +952 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +88 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +1802 -453
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +92 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.go +27 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.go +59 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +435 -109
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +11 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +563 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +4 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +32 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingfields.json +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/reportingtoken.go +176 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +39 -21
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +267 -79
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +28 -16
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +3 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +87 -44
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/signal.go +75 -88
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +86 -65
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/lidmap.go +186 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +314 -170
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +155 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/03-message-secrets.sql +11 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/04-privacy-tokens.sql +8 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/05-account-jid-format.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/06-facebook-uuid.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/07-account-lid.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/08-lid-mapping.sql +5 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/09-decryption-buffer.sql +10 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/10-chat-db-lid-migration-ts.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/upgrades.go +22 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +109 -56
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/botmap.go +210 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +21 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/group.go +15 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +9 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +18 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/update.go +3 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/upload.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +59 -37
- slidge_whatsapp/vendor/golang.org/x/crypto/curve25519/curve25519.go +1 -1
- slidge_whatsapp/vendor/golang.org/x/exp/LICENSE +27 -0
- slidge_whatsapp/vendor/golang.org/x/exp/PATENTS +22 -0
- slidge_whatsapp/vendor/golang.org/x/exp/constraints/constraints.go +54 -0
- slidge_whatsapp/vendor/golang.org/x/net/http/httpguts/guts.go +50 -0
- slidge_whatsapp/vendor/golang.org/x/net/http/httpguts/httplex.go +347 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/.gitignore +2 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/ascii.go +53 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/ciphers.go +641 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/client_conn_pool.go +311 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/config.go +164 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/databuffer.go +149 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/errors.go +145 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/flow.go +120 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +1702 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/gotrack.go +181 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/encode.go +245 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/hpack.go +523 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/huffman.go +226 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/static_table.go +188 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/tables.go +403 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +410 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/pipe.go +184 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +3332 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +3233 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/unencrypted.go +32 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/write.go +381 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched.go +251 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_priority.go +451 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_random.go +77 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_roundrobin.go +119 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/go118.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/idna10.0.0.go +769 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/idna9.0.0.go +717 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/pre_go118.go +11 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/punycode.go +217 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables10.0.0.go +4559 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables11.0.0.go +4653 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables12.0.0.go +4733 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables13.0.0.go +4959 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables15.0.0.go +5144 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables9.0.0.go +4486 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/trie.go +51 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/trie12.0.0.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/trie13.0.0.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/trieval.go +119 -0
- slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/ascii.go +53 -0
- slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/headermap.go +115 -0
- slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/request.go +467 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/affinity_linux.go +1 -3
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mkerrors.sh +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +93 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +16 -26
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris.go +1 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux.go +47 -16
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go +84 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s +20 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go +84 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s +20 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go +4 -4
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux.go +168 -12
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_386.go +17 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go +18 -2
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go +17 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go +17 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go +18 -2
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/security_windows.go +44 -5
- slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +4 -2
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +245 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +491 -482
- slidge_whatsapp/vendor/golang.org/x/text/LICENSE +27 -0
- slidge_whatsapp/vendor/golang.org/x/text/PATENTS +22 -0
- slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule.go +336 -0
- slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go +11 -0
- slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go +14 -0
- slidge_whatsapp/vendor/golang.org/x/text/transform/transform.go +709 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bidi.go +359 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bracket.go +335 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/core.go +1071 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/prop.go +206 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go +1815 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go +1887 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go +1923 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go +1955 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables15.0.0.go +2042 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go +1781 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/trieval.go +48 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/composition.go +512 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/forminfo.go +279 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/input.go +109 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/iter.go +458 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/normalize.go +610 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/readwriter.go +125 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables10.0.0.go +7657 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go +7693 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go +7710 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables13.0.0.go +7760 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables15.0.0.go +7907 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go +7637 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/transform.go +88 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/trie.go +54 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/protowire/wire.go +25 -1
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +13 -5
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/presence.go +33 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/api_gen.go +6 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +81 -19
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message_opaque.go +2 -1
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque.go +8 -37
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/presence.go +0 -3
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/{strings_unsafe_go121.go → strings_unsafe.go} +0 -2
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +1 -1
- slidge_whatsapp/vendor/google.golang.org/protobuf/proto/merge.go +6 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go +10 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/{value_unsafe_go121.go → value_unsafe.go} +0 -2
- slidge_whatsapp/vendor/modules.txt +80 -21
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.3.0.dist-info}/METADATA +5 -4
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.3.0.dist-info}/RECORD +456 -263
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.3.0.dist-info}/WHEEL +1 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi_amd64.go +0 -7
- slidge_whatsapp/vendor/github.com/rs/zerolog/CNAME +0 -1
- slidge_whatsapp/vendor/github.com/rs/zerolog/_config.yml +0 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.raw +0 -23
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.raw +0 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.raw +0 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrade.go +0 -296
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe_go120.go +0 -94
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe_go120.go +0 -98
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.3.0.dist-info}/entry_points.txt +0 -0
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.3.0.dist-info/licenses}/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
2
2
|
// versions:
|
|
3
|
-
// protoc-gen-go v1.36.
|
|
3
|
+
// protoc-gen-go v1.36.6
|
|
4
4
|
// protoc v3.21.12
|
|
5
5
|
// source: waSyncAction/WASyncAction.proto
|
|
6
6
|
|
|
@@ -9,6 +9,7 @@ package waSyncAction
|
|
|
9
9
|
import (
|
|
10
10
|
reflect "reflect"
|
|
11
11
|
sync "sync"
|
|
12
|
+
unsafe "unsafe"
|
|
12
13
|
|
|
13
14
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
14
15
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
@@ -16,8 +17,6 @@ import (
|
|
|
16
17
|
waChatLockSettings "go.mau.fi/whatsmeow/proto/waChatLockSettings"
|
|
17
18
|
waCommon "go.mau.fi/whatsmeow/proto/waCommon"
|
|
18
19
|
waDeviceCapabilities "go.mau.fi/whatsmeow/proto/waDeviceCapabilities"
|
|
19
|
-
|
|
20
|
-
_ "embed"
|
|
21
20
|
)
|
|
22
21
|
|
|
23
22
|
const (
|
|
@@ -231,6 +230,180 @@ func (CallLogRecord_CallResult) EnumDescriptor() ([]byte, []int) {
|
|
|
231
230
|
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{0, 2}
|
|
232
231
|
}
|
|
233
232
|
|
|
233
|
+
type MaibaAIFeaturesControlAction_MaibaAIFeatureStatus int32
|
|
234
|
+
|
|
235
|
+
const (
|
|
236
|
+
MaibaAIFeaturesControlAction_ENABLED MaibaAIFeaturesControlAction_MaibaAIFeatureStatus = 0
|
|
237
|
+
MaibaAIFeaturesControlAction_ENABLED_HAS_LEARNING MaibaAIFeaturesControlAction_MaibaAIFeatureStatus = 1
|
|
238
|
+
MaibaAIFeaturesControlAction_DISABLED MaibaAIFeaturesControlAction_MaibaAIFeatureStatus = 2
|
|
239
|
+
)
|
|
240
|
+
|
|
241
|
+
// Enum value maps for MaibaAIFeaturesControlAction_MaibaAIFeatureStatus.
|
|
242
|
+
var (
|
|
243
|
+
MaibaAIFeaturesControlAction_MaibaAIFeatureStatus_name = map[int32]string{
|
|
244
|
+
0: "ENABLED",
|
|
245
|
+
1: "ENABLED_HAS_LEARNING",
|
|
246
|
+
2: "DISABLED",
|
|
247
|
+
}
|
|
248
|
+
MaibaAIFeaturesControlAction_MaibaAIFeatureStatus_value = map[string]int32{
|
|
249
|
+
"ENABLED": 0,
|
|
250
|
+
"ENABLED_HAS_LEARNING": 1,
|
|
251
|
+
"DISABLED": 2,
|
|
252
|
+
}
|
|
253
|
+
)
|
|
254
|
+
|
|
255
|
+
func (x MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Enum() *MaibaAIFeaturesControlAction_MaibaAIFeatureStatus {
|
|
256
|
+
p := new(MaibaAIFeaturesControlAction_MaibaAIFeatureStatus)
|
|
257
|
+
*p = x
|
|
258
|
+
return p
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
func (x MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) String() string {
|
|
262
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
func (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Descriptor() protoreflect.EnumDescriptor {
|
|
266
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[3].Descriptor()
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
func (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Type() protoreflect.EnumType {
|
|
270
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[3]
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
func (x MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Number() protoreflect.EnumNumber {
|
|
274
|
+
return protoreflect.EnumNumber(x)
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
// Deprecated: Do not use.
|
|
278
|
+
func (x *MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) UnmarshalJSON(b []byte) error {
|
|
279
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
280
|
+
if err != nil {
|
|
281
|
+
return err
|
|
282
|
+
}
|
|
283
|
+
*x = MaibaAIFeaturesControlAction_MaibaAIFeatureStatus(num)
|
|
284
|
+
return nil
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
// Deprecated: Use MaibaAIFeaturesControlAction_MaibaAIFeatureStatus.Descriptor instead.
|
|
288
|
+
func (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) EnumDescriptor() ([]byte, []int) {
|
|
289
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1, 0}
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
type PaymentTosAction_PaymentNotice int32
|
|
293
|
+
|
|
294
|
+
const (
|
|
295
|
+
PaymentTosAction_BR_PAY_PRIVACY_POLICY PaymentTosAction_PaymentNotice = 0
|
|
296
|
+
)
|
|
297
|
+
|
|
298
|
+
// Enum value maps for PaymentTosAction_PaymentNotice.
|
|
299
|
+
var (
|
|
300
|
+
PaymentTosAction_PaymentNotice_name = map[int32]string{
|
|
301
|
+
0: "BR_PAY_PRIVACY_POLICY",
|
|
302
|
+
}
|
|
303
|
+
PaymentTosAction_PaymentNotice_value = map[string]int32{
|
|
304
|
+
"BR_PAY_PRIVACY_POLICY": 0,
|
|
305
|
+
}
|
|
306
|
+
)
|
|
307
|
+
|
|
308
|
+
func (x PaymentTosAction_PaymentNotice) Enum() *PaymentTosAction_PaymentNotice {
|
|
309
|
+
p := new(PaymentTosAction_PaymentNotice)
|
|
310
|
+
*p = x
|
|
311
|
+
return p
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
func (x PaymentTosAction_PaymentNotice) String() string {
|
|
315
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
func (PaymentTosAction_PaymentNotice) Descriptor() protoreflect.EnumDescriptor {
|
|
319
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[4].Descriptor()
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
func (PaymentTosAction_PaymentNotice) Type() protoreflect.EnumType {
|
|
323
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[4]
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
func (x PaymentTosAction_PaymentNotice) Number() protoreflect.EnumNumber {
|
|
327
|
+
return protoreflect.EnumNumber(x)
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
// Deprecated: Do not use.
|
|
331
|
+
func (x *PaymentTosAction_PaymentNotice) UnmarshalJSON(b []byte) error {
|
|
332
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
333
|
+
if err != nil {
|
|
334
|
+
return err
|
|
335
|
+
}
|
|
336
|
+
*x = PaymentTosAction_PaymentNotice(num)
|
|
337
|
+
return nil
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
// Deprecated: Use PaymentTosAction_PaymentNotice.Descriptor instead.
|
|
341
|
+
func (PaymentTosAction_PaymentNotice) EnumDescriptor() ([]byte, []int) {
|
|
342
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2, 0}
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
type NotificationActivitySettingAction_NotificationActivitySetting int32
|
|
346
|
+
|
|
347
|
+
const (
|
|
348
|
+
NotificationActivitySettingAction_DEFAULT_ALL_MESSAGES NotificationActivitySettingAction_NotificationActivitySetting = 0
|
|
349
|
+
NotificationActivitySettingAction_ALL_MESSAGES NotificationActivitySettingAction_NotificationActivitySetting = 1
|
|
350
|
+
NotificationActivitySettingAction_HIGHLIGHTS NotificationActivitySettingAction_NotificationActivitySetting = 2
|
|
351
|
+
NotificationActivitySettingAction_DEFAULT_HIGHLIGHTS NotificationActivitySettingAction_NotificationActivitySetting = 3
|
|
352
|
+
)
|
|
353
|
+
|
|
354
|
+
// Enum value maps for NotificationActivitySettingAction_NotificationActivitySetting.
|
|
355
|
+
var (
|
|
356
|
+
NotificationActivitySettingAction_NotificationActivitySetting_name = map[int32]string{
|
|
357
|
+
0: "DEFAULT_ALL_MESSAGES",
|
|
358
|
+
1: "ALL_MESSAGES",
|
|
359
|
+
2: "HIGHLIGHTS",
|
|
360
|
+
3: "DEFAULT_HIGHLIGHTS",
|
|
361
|
+
}
|
|
362
|
+
NotificationActivitySettingAction_NotificationActivitySetting_value = map[string]int32{
|
|
363
|
+
"DEFAULT_ALL_MESSAGES": 0,
|
|
364
|
+
"ALL_MESSAGES": 1,
|
|
365
|
+
"HIGHLIGHTS": 2,
|
|
366
|
+
"DEFAULT_HIGHLIGHTS": 3,
|
|
367
|
+
}
|
|
368
|
+
)
|
|
369
|
+
|
|
370
|
+
func (x NotificationActivitySettingAction_NotificationActivitySetting) Enum() *NotificationActivitySettingAction_NotificationActivitySetting {
|
|
371
|
+
p := new(NotificationActivitySettingAction_NotificationActivitySetting)
|
|
372
|
+
*p = x
|
|
373
|
+
return p
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
func (x NotificationActivitySettingAction_NotificationActivitySetting) String() string {
|
|
377
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
func (NotificationActivitySettingAction_NotificationActivitySetting) Descriptor() protoreflect.EnumDescriptor {
|
|
381
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[5].Descriptor()
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
func (NotificationActivitySettingAction_NotificationActivitySetting) Type() protoreflect.EnumType {
|
|
385
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[5]
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
func (x NotificationActivitySettingAction_NotificationActivitySetting) Number() protoreflect.EnumNumber {
|
|
389
|
+
return protoreflect.EnumNumber(x)
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
// Deprecated: Do not use.
|
|
393
|
+
func (x *NotificationActivitySettingAction_NotificationActivitySetting) UnmarshalJSON(b []byte) error {
|
|
394
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
395
|
+
if err != nil {
|
|
396
|
+
return err
|
|
397
|
+
}
|
|
398
|
+
*x = NotificationActivitySettingAction_NotificationActivitySetting(num)
|
|
399
|
+
return nil
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
// Deprecated: Use NotificationActivitySettingAction_NotificationActivitySetting.Descriptor instead.
|
|
403
|
+
func (NotificationActivitySettingAction_NotificationActivitySetting) EnumDescriptor() ([]byte, []int) {
|
|
404
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3, 0}
|
|
405
|
+
}
|
|
406
|
+
|
|
234
407
|
type WaffleAccountLinkStateAction_AccountLinkState int32
|
|
235
408
|
|
|
236
409
|
const (
|
|
@@ -258,11 +431,11 @@ func (x WaffleAccountLinkStateAction_AccountLinkState) String() string {
|
|
|
258
431
|
}
|
|
259
432
|
|
|
260
433
|
func (WaffleAccountLinkStateAction_AccountLinkState) Descriptor() protoreflect.EnumDescriptor {
|
|
261
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
434
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[6].Descriptor()
|
|
262
435
|
}
|
|
263
436
|
|
|
264
437
|
func (WaffleAccountLinkStateAction_AccountLinkState) Type() protoreflect.EnumType {
|
|
265
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
438
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[6]
|
|
266
439
|
}
|
|
267
440
|
|
|
268
441
|
func (x WaffleAccountLinkStateAction_AccountLinkState) Number() protoreflect.EnumNumber {
|
|
@@ -281,7 +454,7 @@ func (x *WaffleAccountLinkStateAction_AccountLinkState) UnmarshalJSON(b []byte)
|
|
|
281
454
|
|
|
282
455
|
// Deprecated: Use WaffleAccountLinkStateAction_AccountLinkState.Descriptor instead.
|
|
283
456
|
func (WaffleAccountLinkStateAction_AccountLinkState) EnumDescriptor() ([]byte, []int) {
|
|
284
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
457
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4, 0}
|
|
285
458
|
}
|
|
286
459
|
|
|
287
460
|
type MerchantPaymentPartnerAction_Status int32
|
|
@@ -314,11 +487,11 @@ func (x MerchantPaymentPartnerAction_Status) String() string {
|
|
|
314
487
|
}
|
|
315
488
|
|
|
316
489
|
func (MerchantPaymentPartnerAction_Status) Descriptor() protoreflect.EnumDescriptor {
|
|
317
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
490
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[7].Descriptor()
|
|
318
491
|
}
|
|
319
492
|
|
|
320
493
|
func (MerchantPaymentPartnerAction_Status) Type() protoreflect.EnumType {
|
|
321
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
494
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[7]
|
|
322
495
|
}
|
|
323
496
|
|
|
324
497
|
func (x MerchantPaymentPartnerAction_Status) Number() protoreflect.EnumNumber {
|
|
@@ -337,7 +510,7 @@ func (x *MerchantPaymentPartnerAction_Status) UnmarshalJSON(b []byte) error {
|
|
|
337
510
|
|
|
338
511
|
// Deprecated: Use MerchantPaymentPartnerAction_Status.Descriptor instead.
|
|
339
512
|
func (MerchantPaymentPartnerAction_Status) EnumDescriptor() ([]byte, []int) {
|
|
340
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
513
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5, 0}
|
|
341
514
|
}
|
|
342
515
|
|
|
343
516
|
type NoteEditAction_NoteType int32
|
|
@@ -370,11 +543,11 @@ func (x NoteEditAction_NoteType) String() string {
|
|
|
370
543
|
}
|
|
371
544
|
|
|
372
545
|
func (NoteEditAction_NoteType) Descriptor() protoreflect.EnumDescriptor {
|
|
373
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
546
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[8].Descriptor()
|
|
374
547
|
}
|
|
375
548
|
|
|
376
549
|
func (NoteEditAction_NoteType) Type() protoreflect.EnumType {
|
|
377
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
550
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[8]
|
|
378
551
|
}
|
|
379
552
|
|
|
380
553
|
func (x NoteEditAction_NoteType) Number() protoreflect.EnumNumber {
|
|
@@ -393,7 +566,7 @@ func (x *NoteEditAction_NoteType) UnmarshalJSON(b []byte) error {
|
|
|
393
566
|
|
|
394
567
|
// Deprecated: Use NoteEditAction_NoteType.Descriptor instead.
|
|
395
568
|
func (NoteEditAction_NoteType) EnumDescriptor() ([]byte, []int) {
|
|
396
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
569
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6, 0}
|
|
397
570
|
}
|
|
398
571
|
|
|
399
572
|
type StatusPrivacyAction_StatusDistributionMode int32
|
|
@@ -429,11 +602,11 @@ func (x StatusPrivacyAction_StatusDistributionMode) String() string {
|
|
|
429
602
|
}
|
|
430
603
|
|
|
431
604
|
func (StatusPrivacyAction_StatusDistributionMode) Descriptor() protoreflect.EnumDescriptor {
|
|
432
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
605
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[9].Descriptor()
|
|
433
606
|
}
|
|
434
607
|
|
|
435
608
|
func (StatusPrivacyAction_StatusDistributionMode) Type() protoreflect.EnumType {
|
|
436
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
609
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[9]
|
|
437
610
|
}
|
|
438
611
|
|
|
439
612
|
func (x StatusPrivacyAction_StatusDistributionMode) Number() protoreflect.EnumNumber {
|
|
@@ -452,7 +625,7 @@ func (x *StatusPrivacyAction_StatusDistributionMode) UnmarshalJSON(b []byte) err
|
|
|
452
625
|
|
|
453
626
|
// Deprecated: Use StatusPrivacyAction_StatusDistributionMode.Descriptor instead.
|
|
454
627
|
func (StatusPrivacyAction_StatusDistributionMode) EnumDescriptor() ([]byte, []int) {
|
|
455
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
628
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7, 0}
|
|
456
629
|
}
|
|
457
630
|
|
|
458
631
|
type MarketingMessageAction_MarketingMessagePrototypeType int32
|
|
@@ -482,11 +655,11 @@ func (x MarketingMessageAction_MarketingMessagePrototypeType) String() string {
|
|
|
482
655
|
}
|
|
483
656
|
|
|
484
657
|
func (MarketingMessageAction_MarketingMessagePrototypeType) Descriptor() protoreflect.EnumDescriptor {
|
|
485
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
658
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[10].Descriptor()
|
|
486
659
|
}
|
|
487
660
|
|
|
488
661
|
func (MarketingMessageAction_MarketingMessagePrototypeType) Type() protoreflect.EnumType {
|
|
489
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
662
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[10]
|
|
490
663
|
}
|
|
491
664
|
|
|
492
665
|
func (x MarketingMessageAction_MarketingMessagePrototypeType) Number() protoreflect.EnumNumber {
|
|
@@ -505,7 +678,7 @@ func (x *MarketingMessageAction_MarketingMessagePrototypeType) UnmarshalJSON(b [
|
|
|
505
678
|
|
|
506
679
|
// Deprecated: Use MarketingMessageAction_MarketingMessagePrototypeType.Descriptor instead.
|
|
507
680
|
func (MarketingMessageAction_MarketingMessagePrototypeType) EnumDescriptor() ([]byte, []int) {
|
|
508
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
681
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8, 0}
|
|
509
682
|
}
|
|
510
683
|
|
|
511
684
|
type UsernameChatStartModeAction_ChatStartMode int32
|
|
@@ -538,11 +711,11 @@ func (x UsernameChatStartModeAction_ChatStartMode) String() string {
|
|
|
538
711
|
}
|
|
539
712
|
|
|
540
713
|
func (UsernameChatStartModeAction_ChatStartMode) Descriptor() protoreflect.EnumDescriptor {
|
|
541
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
714
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[11].Descriptor()
|
|
542
715
|
}
|
|
543
716
|
|
|
544
717
|
func (UsernameChatStartModeAction_ChatStartMode) Type() protoreflect.EnumType {
|
|
545
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
718
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[11]
|
|
546
719
|
}
|
|
547
720
|
|
|
548
721
|
func (x UsernameChatStartModeAction_ChatStartMode) Number() protoreflect.EnumNumber {
|
|
@@ -561,18 +734,20 @@ func (x *UsernameChatStartModeAction_ChatStartMode) UnmarshalJSON(b []byte) erro
|
|
|
561
734
|
|
|
562
735
|
// Deprecated: Use UsernameChatStartModeAction_ChatStartMode.Descriptor instead.
|
|
563
736
|
func (UsernameChatStartModeAction_ChatStartMode) EnumDescriptor() ([]byte, []int) {
|
|
564
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
737
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9, 0}
|
|
565
738
|
}
|
|
566
739
|
|
|
567
740
|
type LabelEditAction_ListType int32
|
|
568
741
|
|
|
569
742
|
const (
|
|
570
|
-
LabelEditAction_NONE
|
|
571
|
-
LabelEditAction_UNREAD
|
|
572
|
-
LabelEditAction_GROUPS
|
|
573
|
-
LabelEditAction_FAVORITES
|
|
574
|
-
LabelEditAction_PREDEFINED
|
|
575
|
-
LabelEditAction_CUSTOM
|
|
743
|
+
LabelEditAction_NONE LabelEditAction_ListType = 0
|
|
744
|
+
LabelEditAction_UNREAD LabelEditAction_ListType = 1
|
|
745
|
+
LabelEditAction_GROUPS LabelEditAction_ListType = 2
|
|
746
|
+
LabelEditAction_FAVORITES LabelEditAction_ListType = 3
|
|
747
|
+
LabelEditAction_PREDEFINED LabelEditAction_ListType = 4
|
|
748
|
+
LabelEditAction_CUSTOM LabelEditAction_ListType = 5
|
|
749
|
+
LabelEditAction_COMMUNITY LabelEditAction_ListType = 6
|
|
750
|
+
LabelEditAction_SERVER_ASSIGNED LabelEditAction_ListType = 7
|
|
576
751
|
)
|
|
577
752
|
|
|
578
753
|
// Enum value maps for LabelEditAction_ListType.
|
|
@@ -584,14 +759,18 @@ var (
|
|
|
584
759
|
3: "FAVORITES",
|
|
585
760
|
4: "PREDEFINED",
|
|
586
761
|
5: "CUSTOM",
|
|
762
|
+
6: "COMMUNITY",
|
|
763
|
+
7: "SERVER_ASSIGNED",
|
|
587
764
|
}
|
|
588
765
|
LabelEditAction_ListType_value = map[string]int32{
|
|
589
|
-
"NONE":
|
|
590
|
-
"UNREAD":
|
|
591
|
-
"GROUPS":
|
|
592
|
-
"FAVORITES":
|
|
593
|
-
"PREDEFINED":
|
|
594
|
-
"CUSTOM":
|
|
766
|
+
"NONE": 0,
|
|
767
|
+
"UNREAD": 1,
|
|
768
|
+
"GROUPS": 2,
|
|
769
|
+
"FAVORITES": 3,
|
|
770
|
+
"PREDEFINED": 4,
|
|
771
|
+
"CUSTOM": 5,
|
|
772
|
+
"COMMUNITY": 6,
|
|
773
|
+
"SERVER_ASSIGNED": 7,
|
|
595
774
|
}
|
|
596
775
|
)
|
|
597
776
|
|
|
@@ -606,11 +785,11 @@ func (x LabelEditAction_ListType) String() string {
|
|
|
606
785
|
}
|
|
607
786
|
|
|
608
787
|
func (LabelEditAction_ListType) Descriptor() protoreflect.EnumDescriptor {
|
|
609
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
788
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[12].Descriptor()
|
|
610
789
|
}
|
|
611
790
|
|
|
612
791
|
func (LabelEditAction_ListType) Type() protoreflect.EnumType {
|
|
613
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
792
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[12]
|
|
614
793
|
}
|
|
615
794
|
|
|
616
795
|
func (x LabelEditAction_ListType) Number() protoreflect.EnumNumber {
|
|
@@ -629,7 +808,7 @@ func (x *LabelEditAction_ListType) UnmarshalJSON(b []byte) error {
|
|
|
629
808
|
|
|
630
809
|
// Deprecated: Use LabelEditAction_ListType.Descriptor instead.
|
|
631
810
|
func (LabelEditAction_ListType) EnumDescriptor() ([]byte, []int) {
|
|
632
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
811
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10, 0}
|
|
633
812
|
}
|
|
634
813
|
|
|
635
814
|
type PatchDebugData_Platform int32
|
|
@@ -642,6 +821,8 @@ const (
|
|
|
642
821
|
PatchDebugData_WEB PatchDebugData_Platform = 4
|
|
643
822
|
PatchDebugData_UWP PatchDebugData_Platform = 5
|
|
644
823
|
PatchDebugData_DARWIN PatchDebugData_Platform = 6
|
|
824
|
+
PatchDebugData_IPAD PatchDebugData_Platform = 7
|
|
825
|
+
PatchDebugData_WEAROS PatchDebugData_Platform = 8
|
|
645
826
|
)
|
|
646
827
|
|
|
647
828
|
// Enum value maps for PatchDebugData_Platform.
|
|
@@ -654,6 +835,8 @@ var (
|
|
|
654
835
|
4: "WEB",
|
|
655
836
|
5: "UWP",
|
|
656
837
|
6: "DARWIN",
|
|
838
|
+
7: "IPAD",
|
|
839
|
+
8: "WEAROS",
|
|
657
840
|
}
|
|
658
841
|
PatchDebugData_Platform_value = map[string]int32{
|
|
659
842
|
"ANDROID": 0,
|
|
@@ -663,6 +846,8 @@ var (
|
|
|
663
846
|
"WEB": 4,
|
|
664
847
|
"UWP": 5,
|
|
665
848
|
"DARWIN": 6,
|
|
849
|
+
"IPAD": 7,
|
|
850
|
+
"WEAROS": 8,
|
|
666
851
|
}
|
|
667
852
|
)
|
|
668
853
|
|
|
@@ -677,11 +862,11 @@ func (x PatchDebugData_Platform) String() string {
|
|
|
677
862
|
}
|
|
678
863
|
|
|
679
864
|
func (PatchDebugData_Platform) Descriptor() protoreflect.EnumDescriptor {
|
|
680
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
865
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[13].Descriptor()
|
|
681
866
|
}
|
|
682
867
|
|
|
683
868
|
func (PatchDebugData_Platform) Type() protoreflect.EnumType {
|
|
684
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
869
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[13]
|
|
685
870
|
}
|
|
686
871
|
|
|
687
872
|
func (x PatchDebugData_Platform) Number() protoreflect.EnumNumber {
|
|
@@ -700,7 +885,7 @@ func (x *PatchDebugData_Platform) UnmarshalJSON(b []byte) error {
|
|
|
700
885
|
|
|
701
886
|
// Deprecated: Use PatchDebugData_Platform.Descriptor instead.
|
|
702
887
|
func (PatchDebugData_Platform) EnumDescriptor() ([]byte, []int) {
|
|
703
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
888
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11, 0}
|
|
704
889
|
}
|
|
705
890
|
|
|
706
891
|
type CallLogRecord struct {
|
|
@@ -859,6 +1044,146 @@ func (x *CallLogRecord) GetCallType() CallLogRecord_CallType {
|
|
|
859
1044
|
return CallLogRecord_REGULAR
|
|
860
1045
|
}
|
|
861
1046
|
|
|
1047
|
+
type MaibaAIFeaturesControlAction struct {
|
|
1048
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1049
|
+
AiFeatureStatus *MaibaAIFeaturesControlAction_MaibaAIFeatureStatus `protobuf:"varint,1,opt,name=aiFeatureStatus,enum=WASyncAction.MaibaAIFeaturesControlAction_MaibaAIFeatureStatus" json:"aiFeatureStatus,omitempty"`
|
|
1050
|
+
unknownFields protoimpl.UnknownFields
|
|
1051
|
+
sizeCache protoimpl.SizeCache
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
func (x *MaibaAIFeaturesControlAction) Reset() {
|
|
1055
|
+
*x = MaibaAIFeaturesControlAction{}
|
|
1056
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
|
|
1057
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1058
|
+
ms.StoreMessageInfo(mi)
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
func (x *MaibaAIFeaturesControlAction) String() string {
|
|
1062
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
func (*MaibaAIFeaturesControlAction) ProtoMessage() {}
|
|
1066
|
+
|
|
1067
|
+
func (x *MaibaAIFeaturesControlAction) ProtoReflect() protoreflect.Message {
|
|
1068
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
|
|
1069
|
+
if x != nil {
|
|
1070
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1071
|
+
if ms.LoadMessageInfo() == nil {
|
|
1072
|
+
ms.StoreMessageInfo(mi)
|
|
1073
|
+
}
|
|
1074
|
+
return ms
|
|
1075
|
+
}
|
|
1076
|
+
return mi.MessageOf(x)
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
// Deprecated: Use MaibaAIFeaturesControlAction.ProtoReflect.Descriptor instead.
|
|
1080
|
+
func (*MaibaAIFeaturesControlAction) Descriptor() ([]byte, []int) {
|
|
1081
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1}
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
func (x *MaibaAIFeaturesControlAction) GetAiFeatureStatus() MaibaAIFeaturesControlAction_MaibaAIFeatureStatus {
|
|
1085
|
+
if x != nil && x.AiFeatureStatus != nil {
|
|
1086
|
+
return *x.AiFeatureStatus
|
|
1087
|
+
}
|
|
1088
|
+
return MaibaAIFeaturesControlAction_ENABLED
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
type PaymentTosAction struct {
|
|
1092
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1093
|
+
PaymentNotice *PaymentTosAction_PaymentNotice `protobuf:"varint,1,req,name=paymentNotice,enum=WASyncAction.PaymentTosAction_PaymentNotice" json:"paymentNotice,omitempty"`
|
|
1094
|
+
Accepted *bool `protobuf:"varint,2,req,name=accepted" json:"accepted,omitempty"`
|
|
1095
|
+
unknownFields protoimpl.UnknownFields
|
|
1096
|
+
sizeCache protoimpl.SizeCache
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
func (x *PaymentTosAction) Reset() {
|
|
1100
|
+
*x = PaymentTosAction{}
|
|
1101
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
|
|
1102
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1103
|
+
ms.StoreMessageInfo(mi)
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1106
|
+
func (x *PaymentTosAction) String() string {
|
|
1107
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
func (*PaymentTosAction) ProtoMessage() {}
|
|
1111
|
+
|
|
1112
|
+
func (x *PaymentTosAction) ProtoReflect() protoreflect.Message {
|
|
1113
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
|
|
1114
|
+
if x != nil {
|
|
1115
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1116
|
+
if ms.LoadMessageInfo() == nil {
|
|
1117
|
+
ms.StoreMessageInfo(mi)
|
|
1118
|
+
}
|
|
1119
|
+
return ms
|
|
1120
|
+
}
|
|
1121
|
+
return mi.MessageOf(x)
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
// Deprecated: Use PaymentTosAction.ProtoReflect.Descriptor instead.
|
|
1125
|
+
func (*PaymentTosAction) Descriptor() ([]byte, []int) {
|
|
1126
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
func (x *PaymentTosAction) GetPaymentNotice() PaymentTosAction_PaymentNotice {
|
|
1130
|
+
if x != nil && x.PaymentNotice != nil {
|
|
1131
|
+
return *x.PaymentNotice
|
|
1132
|
+
}
|
|
1133
|
+
return PaymentTosAction_BR_PAY_PRIVACY_POLICY
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
func (x *PaymentTosAction) GetAccepted() bool {
|
|
1137
|
+
if x != nil && x.Accepted != nil {
|
|
1138
|
+
return *x.Accepted
|
|
1139
|
+
}
|
|
1140
|
+
return false
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
type NotificationActivitySettingAction struct {
|
|
1144
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1145
|
+
NotificationActivitySetting *NotificationActivitySettingAction_NotificationActivitySetting `protobuf:"varint,1,opt,name=notificationActivitySetting,enum=WASyncAction.NotificationActivitySettingAction_NotificationActivitySetting" json:"notificationActivitySetting,omitempty"`
|
|
1146
|
+
unknownFields protoimpl.UnknownFields
|
|
1147
|
+
sizeCache protoimpl.SizeCache
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
func (x *NotificationActivitySettingAction) Reset() {
|
|
1151
|
+
*x = NotificationActivitySettingAction{}
|
|
1152
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
|
|
1153
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1154
|
+
ms.StoreMessageInfo(mi)
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
func (x *NotificationActivitySettingAction) String() string {
|
|
1158
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
func (*NotificationActivitySettingAction) ProtoMessage() {}
|
|
1162
|
+
|
|
1163
|
+
func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message {
|
|
1164
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
|
|
1165
|
+
if x != nil {
|
|
1166
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1167
|
+
if ms.LoadMessageInfo() == nil {
|
|
1168
|
+
ms.StoreMessageInfo(mi)
|
|
1169
|
+
}
|
|
1170
|
+
return ms
|
|
1171
|
+
}
|
|
1172
|
+
return mi.MessageOf(x)
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
// Deprecated: Use NotificationActivitySettingAction.ProtoReflect.Descriptor instead.
|
|
1176
|
+
func (*NotificationActivitySettingAction) Descriptor() ([]byte, []int) {
|
|
1177
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
func (x *NotificationActivitySettingAction) GetNotificationActivitySetting() NotificationActivitySettingAction_NotificationActivitySetting {
|
|
1181
|
+
if x != nil && x.NotificationActivitySetting != nil {
|
|
1182
|
+
return *x.NotificationActivitySetting
|
|
1183
|
+
}
|
|
1184
|
+
return NotificationActivitySettingAction_DEFAULT_ALL_MESSAGES
|
|
1185
|
+
}
|
|
1186
|
+
|
|
862
1187
|
type WaffleAccountLinkStateAction struct {
|
|
863
1188
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
864
1189
|
LinkState *WaffleAccountLinkStateAction_AccountLinkState `protobuf:"varint,2,opt,name=linkState,enum=WASyncAction.WaffleAccountLinkStateAction_AccountLinkState" json:"linkState,omitempty"`
|
|
@@ -868,7 +1193,7 @@ type WaffleAccountLinkStateAction struct {
|
|
|
868
1193
|
|
|
869
1194
|
func (x *WaffleAccountLinkStateAction) Reset() {
|
|
870
1195
|
*x = WaffleAccountLinkStateAction{}
|
|
871
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1196
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
|
|
872
1197
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
873
1198
|
ms.StoreMessageInfo(mi)
|
|
874
1199
|
}
|
|
@@ -880,7 +1205,7 @@ func (x *WaffleAccountLinkStateAction) String() string {
|
|
|
880
1205
|
func (*WaffleAccountLinkStateAction) ProtoMessage() {}
|
|
881
1206
|
|
|
882
1207
|
func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
|
|
883
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1208
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
|
|
884
1209
|
if x != nil {
|
|
885
1210
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
886
1211
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -893,7 +1218,7 @@ func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
|
|
|
893
1218
|
|
|
894
1219
|
// Deprecated: Use WaffleAccountLinkStateAction.ProtoReflect.Descriptor instead.
|
|
895
1220
|
func (*WaffleAccountLinkStateAction) Descriptor() ([]byte, []int) {
|
|
896
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1221
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
|
|
897
1222
|
}
|
|
898
1223
|
|
|
899
1224
|
func (x *WaffleAccountLinkStateAction) GetLinkState() WaffleAccountLinkStateAction_AccountLinkState {
|
|
@@ -915,7 +1240,7 @@ type MerchantPaymentPartnerAction struct {
|
|
|
915
1240
|
|
|
916
1241
|
func (x *MerchantPaymentPartnerAction) Reset() {
|
|
917
1242
|
*x = MerchantPaymentPartnerAction{}
|
|
918
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1243
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
|
|
919
1244
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
920
1245
|
ms.StoreMessageInfo(mi)
|
|
921
1246
|
}
|
|
@@ -927,7 +1252,7 @@ func (x *MerchantPaymentPartnerAction) String() string {
|
|
|
927
1252
|
func (*MerchantPaymentPartnerAction) ProtoMessage() {}
|
|
928
1253
|
|
|
929
1254
|
func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
|
|
930
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1255
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
|
|
931
1256
|
if x != nil {
|
|
932
1257
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
933
1258
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -940,7 +1265,7 @@ func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
|
|
|
940
1265
|
|
|
941
1266
|
// Deprecated: Use MerchantPaymentPartnerAction.ProtoReflect.Descriptor instead.
|
|
942
1267
|
func (*MerchantPaymentPartnerAction) Descriptor() ([]byte, []int) {
|
|
943
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1268
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
|
|
944
1269
|
}
|
|
945
1270
|
|
|
946
1271
|
func (x *MerchantPaymentPartnerAction) GetStatus() MerchantPaymentPartnerAction_Status {
|
|
@@ -984,7 +1309,7 @@ type NoteEditAction struct {
|
|
|
984
1309
|
|
|
985
1310
|
func (x *NoteEditAction) Reset() {
|
|
986
1311
|
*x = NoteEditAction{}
|
|
987
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1312
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
|
|
988
1313
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
989
1314
|
ms.StoreMessageInfo(mi)
|
|
990
1315
|
}
|
|
@@ -996,7 +1321,7 @@ func (x *NoteEditAction) String() string {
|
|
|
996
1321
|
func (*NoteEditAction) ProtoMessage() {}
|
|
997
1322
|
|
|
998
1323
|
func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
|
|
999
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1324
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
|
|
1000
1325
|
if x != nil {
|
|
1001
1326
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1002
1327
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1009,7 +1334,7 @@ func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
|
|
|
1009
1334
|
|
|
1010
1335
|
// Deprecated: Use NoteEditAction.ProtoReflect.Descriptor instead.
|
|
1011
1336
|
func (*NoteEditAction) Descriptor() ([]byte, []int) {
|
|
1012
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1337
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
|
|
1013
1338
|
}
|
|
1014
1339
|
|
|
1015
1340
|
func (x *NoteEditAction) GetType() NoteEditAction_NoteType {
|
|
@@ -1057,7 +1382,7 @@ type StatusPrivacyAction struct {
|
|
|
1057
1382
|
|
|
1058
1383
|
func (x *StatusPrivacyAction) Reset() {
|
|
1059
1384
|
*x = StatusPrivacyAction{}
|
|
1060
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1385
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
|
|
1061
1386
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1062
1387
|
ms.StoreMessageInfo(mi)
|
|
1063
1388
|
}
|
|
@@ -1069,7 +1394,7 @@ func (x *StatusPrivacyAction) String() string {
|
|
|
1069
1394
|
func (*StatusPrivacyAction) ProtoMessage() {}
|
|
1070
1395
|
|
|
1071
1396
|
func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
|
|
1072
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1397
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
|
|
1073
1398
|
if x != nil {
|
|
1074
1399
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1075
1400
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1082,7 +1407,7 @@ func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
|
|
|
1082
1407
|
|
|
1083
1408
|
// Deprecated: Use StatusPrivacyAction.ProtoReflect.Descriptor instead.
|
|
1084
1409
|
func (*StatusPrivacyAction) Descriptor() ([]byte, []int) {
|
|
1085
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1410
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
|
|
1086
1411
|
}
|
|
1087
1412
|
|
|
1088
1413
|
func (x *StatusPrivacyAction) GetMode() StatusPrivacyAction_StatusDistributionMode {
|
|
@@ -1114,7 +1439,7 @@ type MarketingMessageAction struct {
|
|
|
1114
1439
|
|
|
1115
1440
|
func (x *MarketingMessageAction) Reset() {
|
|
1116
1441
|
*x = MarketingMessageAction{}
|
|
1117
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1442
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
|
|
1118
1443
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1119
1444
|
ms.StoreMessageInfo(mi)
|
|
1120
1445
|
}
|
|
@@ -1126,7 +1451,7 @@ func (x *MarketingMessageAction) String() string {
|
|
|
1126
1451
|
func (*MarketingMessageAction) ProtoMessage() {}
|
|
1127
1452
|
|
|
1128
1453
|
func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
|
|
1129
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1454
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
|
|
1130
1455
|
if x != nil {
|
|
1131
1456
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1132
1457
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1139,7 +1464,7 @@ func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
|
|
|
1139
1464
|
|
|
1140
1465
|
// Deprecated: Use MarketingMessageAction.ProtoReflect.Descriptor instead.
|
|
1141
1466
|
func (*MarketingMessageAction) Descriptor() ([]byte, []int) {
|
|
1142
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1467
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
|
|
1143
1468
|
}
|
|
1144
1469
|
|
|
1145
1470
|
func (x *MarketingMessageAction) GetName() string {
|
|
@@ -1200,7 +1525,7 @@ type UsernameChatStartModeAction struct {
|
|
|
1200
1525
|
|
|
1201
1526
|
func (x *UsernameChatStartModeAction) Reset() {
|
|
1202
1527
|
*x = UsernameChatStartModeAction{}
|
|
1203
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1528
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
|
|
1204
1529
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1205
1530
|
ms.StoreMessageInfo(mi)
|
|
1206
1531
|
}
|
|
@@ -1212,7 +1537,7 @@ func (x *UsernameChatStartModeAction) String() string {
|
|
|
1212
1537
|
func (*UsernameChatStartModeAction) ProtoMessage() {}
|
|
1213
1538
|
|
|
1214
1539
|
func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
|
|
1215
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1540
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
|
|
1216
1541
|
if x != nil {
|
|
1217
1542
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1218
1543
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1225,7 +1550,7 @@ func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
|
|
|
1225
1550
|
|
|
1226
1551
|
// Deprecated: Use UsernameChatStartModeAction.ProtoReflect.Descriptor instead.
|
|
1227
1552
|
func (*UsernameChatStartModeAction) Descriptor() ([]byte, []int) {
|
|
1228
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1553
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
|
|
1229
1554
|
}
|
|
1230
1555
|
|
|
1231
1556
|
func (x *UsernameChatStartModeAction) GetChatStartMode() UsernameChatStartModeAction_ChatStartMode {
|
|
@@ -1244,13 +1569,14 @@ type LabelEditAction struct {
|
|
|
1244
1569
|
OrderIndex *int32 `protobuf:"varint,5,opt,name=orderIndex" json:"orderIndex,omitempty"`
|
|
1245
1570
|
IsActive *bool `protobuf:"varint,6,opt,name=isActive" json:"isActive,omitempty"`
|
|
1246
1571
|
Type *LabelEditAction_ListType `protobuf:"varint,7,opt,name=type,enum=WASyncAction.LabelEditAction_ListType" json:"type,omitempty"`
|
|
1572
|
+
IsImmutable *bool `protobuf:"varint,8,opt,name=isImmutable" json:"isImmutable,omitempty"`
|
|
1247
1573
|
unknownFields protoimpl.UnknownFields
|
|
1248
1574
|
sizeCache protoimpl.SizeCache
|
|
1249
1575
|
}
|
|
1250
1576
|
|
|
1251
1577
|
func (x *LabelEditAction) Reset() {
|
|
1252
1578
|
*x = LabelEditAction{}
|
|
1253
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1579
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
|
|
1254
1580
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1255
1581
|
ms.StoreMessageInfo(mi)
|
|
1256
1582
|
}
|
|
@@ -1262,7 +1588,7 @@ func (x *LabelEditAction) String() string {
|
|
|
1262
1588
|
func (*LabelEditAction) ProtoMessage() {}
|
|
1263
1589
|
|
|
1264
1590
|
func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
|
|
1265
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1591
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
|
|
1266
1592
|
if x != nil {
|
|
1267
1593
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1268
1594
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1275,7 +1601,7 @@ func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
|
|
|
1275
1601
|
|
|
1276
1602
|
// Deprecated: Use LabelEditAction.ProtoReflect.Descriptor instead.
|
|
1277
1603
|
func (*LabelEditAction) Descriptor() ([]byte, []int) {
|
|
1278
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1604
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
|
|
1279
1605
|
}
|
|
1280
1606
|
|
|
1281
1607
|
func (x *LabelEditAction) GetName() string {
|
|
@@ -1327,6 +1653,13 @@ func (x *LabelEditAction) GetType() LabelEditAction_ListType {
|
|
|
1327
1653
|
return LabelEditAction_NONE
|
|
1328
1654
|
}
|
|
1329
1655
|
|
|
1656
|
+
func (x *LabelEditAction) GetIsImmutable() bool {
|
|
1657
|
+
if x != nil && x.IsImmutable != nil {
|
|
1658
|
+
return *x.IsImmutable
|
|
1659
|
+
}
|
|
1660
|
+
return false
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1330
1663
|
type PatchDebugData struct {
|
|
1331
1664
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1332
1665
|
CurrentLthash []byte `protobuf:"bytes,1,opt,name=currentLthash" json:"currentLthash,omitempty"`
|
|
@@ -1346,7 +1679,7 @@ type PatchDebugData struct {
|
|
|
1346
1679
|
|
|
1347
1680
|
func (x *PatchDebugData) Reset() {
|
|
1348
1681
|
*x = PatchDebugData{}
|
|
1349
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1682
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
|
|
1350
1683
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1351
1684
|
ms.StoreMessageInfo(mi)
|
|
1352
1685
|
}
|
|
@@ -1358,7 +1691,7 @@ func (x *PatchDebugData) String() string {
|
|
|
1358
1691
|
func (*PatchDebugData) ProtoMessage() {}
|
|
1359
1692
|
|
|
1360
1693
|
func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
|
|
1361
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1694
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
|
|
1362
1695
|
if x != nil {
|
|
1363
1696
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1364
1697
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1371,7 +1704,7 @@ func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
|
|
|
1371
1704
|
|
|
1372
1705
|
// Deprecated: Use PatchDebugData.ProtoReflect.Descriptor instead.
|
|
1373
1706
|
func (*PatchDebugData) Descriptor() ([]byte, []int) {
|
|
1374
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1707
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
|
|
1375
1708
|
}
|
|
1376
1709
|
|
|
1377
1710
|
func (x *PatchDebugData) GetCurrentLthash() []byte {
|
|
@@ -1461,7 +1794,7 @@ type RecentEmojiWeight struct {
|
|
|
1461
1794
|
|
|
1462
1795
|
func (x *RecentEmojiWeight) Reset() {
|
|
1463
1796
|
*x = RecentEmojiWeight{}
|
|
1464
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1797
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
|
|
1465
1798
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1466
1799
|
ms.StoreMessageInfo(mi)
|
|
1467
1800
|
}
|
|
@@ -1473,7 +1806,7 @@ func (x *RecentEmojiWeight) String() string {
|
|
|
1473
1806
|
func (*RecentEmojiWeight) ProtoMessage() {}
|
|
1474
1807
|
|
|
1475
1808
|
func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
|
|
1476
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1809
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
|
|
1477
1810
|
if x != nil {
|
|
1478
1811
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1479
1812
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1486,7 +1819,7 @@ func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
|
|
|
1486
1819
|
|
|
1487
1820
|
// Deprecated: Use RecentEmojiWeight.ProtoReflect.Descriptor instead.
|
|
1488
1821
|
func (*RecentEmojiWeight) Descriptor() ([]byte, []int) {
|
|
1489
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1822
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
|
|
1490
1823
|
}
|
|
1491
1824
|
|
|
1492
1825
|
func (x *RecentEmojiWeight) GetEmoji() string {
|
|
@@ -1504,67 +1837,78 @@ func (x *RecentEmojiWeight) GetWeight() float32 {
|
|
|
1504
1837
|
}
|
|
1505
1838
|
|
|
1506
1839
|
type SyncActionValue struct {
|
|
1507
|
-
state
|
|
1508
|
-
Timestamp
|
|
1509
|
-
StarAction
|
|
1510
|
-
ContactAction
|
|
1511
|
-
MuteAction
|
|
1512
|
-
PinAction
|
|
1513
|
-
SecurityNotificationSetting
|
|
1514
|
-
PushNameSetting
|
|
1515
|
-
QuickReplyAction
|
|
1516
|
-
RecentEmojiWeightsAction
|
|
1517
|
-
LabelEditAction
|
|
1518
|
-
LabelAssociationAction
|
|
1519
|
-
LocaleSetting
|
|
1520
|
-
ArchiveChatAction
|
|
1521
|
-
DeleteMessageForMeAction
|
|
1522
|
-
KeyExpiration
|
|
1523
|
-
MarkChatAsReadAction
|
|
1524
|
-
ClearChatAction
|
|
1525
|
-
DeleteChatAction
|
|
1526
|
-
UnarchiveChatsSetting
|
|
1527
|
-
PrimaryFeature
|
|
1528
|
-
AndroidUnsupportedActions
|
|
1529
|
-
AgentAction
|
|
1530
|
-
SubscriptionAction
|
|
1531
|
-
UserStatusMuteAction
|
|
1532
|
-
TimeFormatAction
|
|
1533
|
-
NuxAction
|
|
1534
|
-
PrimaryVersionAction
|
|
1535
|
-
StickerAction
|
|
1536
|
-
RemoveRecentStickerAction
|
|
1537
|
-
ChatAssignment
|
|
1538
|
-
ChatAssignmentOpenedStatus
|
|
1539
|
-
PnForLidChatAction
|
|
1540
|
-
MarketingMessageAction
|
|
1541
|
-
MarketingMessageBroadcastAction
|
|
1542
|
-
ExternalWebBetaAction
|
|
1543
|
-
PrivacySettingRelayAllCalls
|
|
1544
|
-
CallLogAction
|
|
1545
|
-
StatusPrivacy
|
|
1546
|
-
BotWelcomeRequestAction
|
|
1547
|
-
DeleteIndividualCallLog
|
|
1548
|
-
LabelReorderingAction
|
|
1549
|
-
PaymentInfoAction
|
|
1550
|
-
CustomPaymentMethodsAction
|
|
1551
|
-
LockChatAction
|
|
1552
|
-
ChatLockSettings
|
|
1553
|
-
WamoUserIdentifierAction
|
|
1554
|
-
PrivacySettingDisableLinkPreviewsAction
|
|
1555
|
-
DeviceCapabilities
|
|
1556
|
-
NoteEditAction
|
|
1557
|
-
FavoritesAction
|
|
1558
|
-
MerchantPaymentPartnerAction
|
|
1559
|
-
WaffleAccountLinkStateAction
|
|
1560
|
-
UsernameChatStartMode
|
|
1561
|
-
|
|
1562
|
-
|
|
1840
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1841
|
+
Timestamp *int64 `protobuf:"varint,1,opt,name=timestamp" json:"timestamp,omitempty"`
|
|
1842
|
+
StarAction *StarAction `protobuf:"bytes,2,opt,name=starAction" json:"starAction,omitempty"`
|
|
1843
|
+
ContactAction *ContactAction `protobuf:"bytes,3,opt,name=contactAction" json:"contactAction,omitempty"`
|
|
1844
|
+
MuteAction *MuteAction `protobuf:"bytes,4,opt,name=muteAction" json:"muteAction,omitempty"`
|
|
1845
|
+
PinAction *PinAction `protobuf:"bytes,5,opt,name=pinAction" json:"pinAction,omitempty"`
|
|
1846
|
+
SecurityNotificationSetting *SecurityNotificationSetting `protobuf:"bytes,6,opt,name=securityNotificationSetting" json:"securityNotificationSetting,omitempty"`
|
|
1847
|
+
PushNameSetting *PushNameSetting `protobuf:"bytes,7,opt,name=pushNameSetting" json:"pushNameSetting,omitempty"`
|
|
1848
|
+
QuickReplyAction *QuickReplyAction `protobuf:"bytes,8,opt,name=quickReplyAction" json:"quickReplyAction,omitempty"`
|
|
1849
|
+
RecentEmojiWeightsAction *RecentEmojiWeightsAction `protobuf:"bytes,11,opt,name=recentEmojiWeightsAction" json:"recentEmojiWeightsAction,omitempty"`
|
|
1850
|
+
LabelEditAction *LabelEditAction `protobuf:"bytes,14,opt,name=labelEditAction" json:"labelEditAction,omitempty"`
|
|
1851
|
+
LabelAssociationAction *LabelAssociationAction `protobuf:"bytes,15,opt,name=labelAssociationAction" json:"labelAssociationAction,omitempty"`
|
|
1852
|
+
LocaleSetting *LocaleSetting `protobuf:"bytes,16,opt,name=localeSetting" json:"localeSetting,omitempty"`
|
|
1853
|
+
ArchiveChatAction *ArchiveChatAction `protobuf:"bytes,17,opt,name=archiveChatAction" json:"archiveChatAction,omitempty"`
|
|
1854
|
+
DeleteMessageForMeAction *DeleteMessageForMeAction `protobuf:"bytes,18,opt,name=deleteMessageForMeAction" json:"deleteMessageForMeAction,omitempty"`
|
|
1855
|
+
KeyExpiration *KeyExpiration `protobuf:"bytes,19,opt,name=keyExpiration" json:"keyExpiration,omitempty"`
|
|
1856
|
+
MarkChatAsReadAction *MarkChatAsReadAction `protobuf:"bytes,20,opt,name=markChatAsReadAction" json:"markChatAsReadAction,omitempty"`
|
|
1857
|
+
ClearChatAction *ClearChatAction `protobuf:"bytes,21,opt,name=clearChatAction" json:"clearChatAction,omitempty"`
|
|
1858
|
+
DeleteChatAction *DeleteChatAction `protobuf:"bytes,22,opt,name=deleteChatAction" json:"deleteChatAction,omitempty"`
|
|
1859
|
+
UnarchiveChatsSetting *UnarchiveChatsSetting `protobuf:"bytes,23,opt,name=unarchiveChatsSetting" json:"unarchiveChatsSetting,omitempty"`
|
|
1860
|
+
PrimaryFeature *PrimaryFeature `protobuf:"bytes,24,opt,name=primaryFeature" json:"primaryFeature,omitempty"`
|
|
1861
|
+
AndroidUnsupportedActions *AndroidUnsupportedActions `protobuf:"bytes,26,opt,name=androidUnsupportedActions" json:"androidUnsupportedActions,omitempty"`
|
|
1862
|
+
AgentAction *AgentAction `protobuf:"bytes,27,opt,name=agentAction" json:"agentAction,omitempty"`
|
|
1863
|
+
SubscriptionAction *SubscriptionAction `protobuf:"bytes,28,opt,name=subscriptionAction" json:"subscriptionAction,omitempty"`
|
|
1864
|
+
UserStatusMuteAction *UserStatusMuteAction `protobuf:"bytes,29,opt,name=userStatusMuteAction" json:"userStatusMuteAction,omitempty"`
|
|
1865
|
+
TimeFormatAction *TimeFormatAction `protobuf:"bytes,30,opt,name=timeFormatAction" json:"timeFormatAction,omitempty"`
|
|
1866
|
+
NuxAction *NuxAction `protobuf:"bytes,31,opt,name=nuxAction" json:"nuxAction,omitempty"`
|
|
1867
|
+
PrimaryVersionAction *PrimaryVersionAction `protobuf:"bytes,32,opt,name=primaryVersionAction" json:"primaryVersionAction,omitempty"`
|
|
1868
|
+
StickerAction *StickerAction `protobuf:"bytes,33,opt,name=stickerAction" json:"stickerAction,omitempty"`
|
|
1869
|
+
RemoveRecentStickerAction *RemoveRecentStickerAction `protobuf:"bytes,34,opt,name=removeRecentStickerAction" json:"removeRecentStickerAction,omitempty"`
|
|
1870
|
+
ChatAssignment *ChatAssignmentAction `protobuf:"bytes,35,opt,name=chatAssignment" json:"chatAssignment,omitempty"`
|
|
1871
|
+
ChatAssignmentOpenedStatus *ChatAssignmentOpenedStatusAction `protobuf:"bytes,36,opt,name=chatAssignmentOpenedStatus" json:"chatAssignmentOpenedStatus,omitempty"`
|
|
1872
|
+
PnForLidChatAction *PnForLidChatAction `protobuf:"bytes,37,opt,name=pnForLidChatAction" json:"pnForLidChatAction,omitempty"`
|
|
1873
|
+
MarketingMessageAction *MarketingMessageAction `protobuf:"bytes,38,opt,name=marketingMessageAction" json:"marketingMessageAction,omitempty"`
|
|
1874
|
+
MarketingMessageBroadcastAction *MarketingMessageBroadcastAction `protobuf:"bytes,39,opt,name=marketingMessageBroadcastAction" json:"marketingMessageBroadcastAction,omitempty"`
|
|
1875
|
+
ExternalWebBetaAction *ExternalWebBetaAction `protobuf:"bytes,40,opt,name=externalWebBetaAction" json:"externalWebBetaAction,omitempty"`
|
|
1876
|
+
PrivacySettingRelayAllCalls *PrivacySettingRelayAllCalls `protobuf:"bytes,41,opt,name=privacySettingRelayAllCalls" json:"privacySettingRelayAllCalls,omitempty"`
|
|
1877
|
+
CallLogAction *CallLogAction `protobuf:"bytes,42,opt,name=callLogAction" json:"callLogAction,omitempty"`
|
|
1878
|
+
StatusPrivacy *StatusPrivacyAction `protobuf:"bytes,44,opt,name=statusPrivacy" json:"statusPrivacy,omitempty"`
|
|
1879
|
+
BotWelcomeRequestAction *BotWelcomeRequestAction `protobuf:"bytes,45,opt,name=botWelcomeRequestAction" json:"botWelcomeRequestAction,omitempty"`
|
|
1880
|
+
DeleteIndividualCallLog *DeleteIndividualCallLogAction `protobuf:"bytes,46,opt,name=deleteIndividualCallLog" json:"deleteIndividualCallLog,omitempty"`
|
|
1881
|
+
LabelReorderingAction *LabelReorderingAction `protobuf:"bytes,47,opt,name=labelReorderingAction" json:"labelReorderingAction,omitempty"`
|
|
1882
|
+
PaymentInfoAction *PaymentInfoAction `protobuf:"bytes,48,opt,name=paymentInfoAction" json:"paymentInfoAction,omitempty"`
|
|
1883
|
+
CustomPaymentMethodsAction *CustomPaymentMethodsAction `protobuf:"bytes,49,opt,name=customPaymentMethodsAction" json:"customPaymentMethodsAction,omitempty"`
|
|
1884
|
+
LockChatAction *LockChatAction `protobuf:"bytes,50,opt,name=lockChatAction" json:"lockChatAction,omitempty"`
|
|
1885
|
+
ChatLockSettings *waChatLockSettings.ChatLockSettings `protobuf:"bytes,51,opt,name=chatLockSettings" json:"chatLockSettings,omitempty"`
|
|
1886
|
+
WamoUserIdentifierAction *WamoUserIdentifierAction `protobuf:"bytes,52,opt,name=wamoUserIdentifierAction" json:"wamoUserIdentifierAction,omitempty"`
|
|
1887
|
+
PrivacySettingDisableLinkPreviewsAction *PrivacySettingDisableLinkPreviewsAction `protobuf:"bytes,53,opt,name=privacySettingDisableLinkPreviewsAction" json:"privacySettingDisableLinkPreviewsAction,omitempty"`
|
|
1888
|
+
DeviceCapabilities *waDeviceCapabilities.DeviceCapabilities `protobuf:"bytes,54,opt,name=deviceCapabilities" json:"deviceCapabilities,omitempty"`
|
|
1889
|
+
NoteEditAction *NoteEditAction `protobuf:"bytes,55,opt,name=noteEditAction" json:"noteEditAction,omitempty"`
|
|
1890
|
+
FavoritesAction *FavoritesAction `protobuf:"bytes,56,opt,name=favoritesAction" json:"favoritesAction,omitempty"`
|
|
1891
|
+
MerchantPaymentPartnerAction *MerchantPaymentPartnerAction `protobuf:"bytes,57,opt,name=merchantPaymentPartnerAction" json:"merchantPaymentPartnerAction,omitempty"`
|
|
1892
|
+
WaffleAccountLinkStateAction *WaffleAccountLinkStateAction `protobuf:"bytes,58,opt,name=waffleAccountLinkStateAction" json:"waffleAccountLinkStateAction,omitempty"`
|
|
1893
|
+
UsernameChatStartMode *UsernameChatStartModeAction `protobuf:"bytes,59,opt,name=usernameChatStartMode" json:"usernameChatStartMode,omitempty"`
|
|
1894
|
+
NotificationActivitySettingAction *NotificationActivitySettingAction `protobuf:"bytes,60,opt,name=notificationActivitySettingAction" json:"notificationActivitySettingAction,omitempty"`
|
|
1895
|
+
LidContactAction *LidContactAction `protobuf:"bytes,61,opt,name=lidContactAction" json:"lidContactAction,omitempty"`
|
|
1896
|
+
CtwaPerCustomerDataSharingAction *CtwaPerCustomerDataSharingAction `protobuf:"bytes,62,opt,name=ctwaPerCustomerDataSharingAction" json:"ctwaPerCustomerDataSharingAction,omitempty"`
|
|
1897
|
+
PaymentTosAction *PaymentTosAction `protobuf:"bytes,63,opt,name=paymentTosAction" json:"paymentTosAction,omitempty"`
|
|
1898
|
+
PrivacySettingChannelsPersonalisedRecommendationAction *PrivacySettingChannelsPersonalisedRecommendationAction `protobuf:"bytes,64,opt,name=privacySettingChannelsPersonalisedRecommendationAction" json:"privacySettingChannelsPersonalisedRecommendationAction,omitempty"`
|
|
1899
|
+
BusinessBroadcastAssociationAction *BusinessBroadcastAssociationAction `protobuf:"bytes,65,opt,name=businessBroadcastAssociationAction" json:"businessBroadcastAssociationAction,omitempty"`
|
|
1900
|
+
DetectedOutcomesStatusAction *DetectedOutcomesStatusAction `protobuf:"bytes,66,opt,name=detectedOutcomesStatusAction" json:"detectedOutcomesStatusAction,omitempty"`
|
|
1901
|
+
MaibaAiFeaturesControlAction *MaibaAIFeaturesControlAction `protobuf:"bytes,68,opt,name=maibaAiFeaturesControlAction" json:"maibaAiFeaturesControlAction,omitempty"`
|
|
1902
|
+
BusinessBroadcastListAction *BusinessBroadcastListAction `protobuf:"bytes,69,opt,name=businessBroadcastListAction" json:"businessBroadcastListAction,omitempty"`
|
|
1903
|
+
MusicUserIDAction *MusicUserIdAction `protobuf:"bytes,70,opt,name=musicUserIDAction" json:"musicUserIDAction,omitempty"`
|
|
1904
|
+
StatusPostOptInNotificationPreferencesAction *StatusPostOptInNotificationPreferencesAction `protobuf:"bytes,71,opt,name=statusPostOptInNotificationPreferencesAction" json:"statusPostOptInNotificationPreferencesAction,omitempty"`
|
|
1905
|
+
unknownFields protoimpl.UnknownFields
|
|
1906
|
+
sizeCache protoimpl.SizeCache
|
|
1563
1907
|
}
|
|
1564
1908
|
|
|
1565
1909
|
func (x *SyncActionValue) Reset() {
|
|
1566
1910
|
*x = SyncActionValue{}
|
|
1567
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1911
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
|
|
1568
1912
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1569
1913
|
ms.StoreMessageInfo(mi)
|
|
1570
1914
|
}
|
|
@@ -1576,7 +1920,7 @@ func (x *SyncActionValue) String() string {
|
|
|
1576
1920
|
func (*SyncActionValue) ProtoMessage() {}
|
|
1577
1921
|
|
|
1578
1922
|
func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
|
|
1579
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1923
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
|
|
1580
1924
|
if x != nil {
|
|
1581
1925
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1582
1926
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1589,7 +1933,7 @@ func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
|
|
|
1589
1933
|
|
|
1590
1934
|
// Deprecated: Use SyncActionValue.ProtoReflect.Descriptor instead.
|
|
1591
1935
|
func (*SyncActionValue) Descriptor() ([]byte, []int) {
|
|
1592
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1936
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
|
|
1593
1937
|
}
|
|
1594
1938
|
|
|
1595
1939
|
func (x *SyncActionValue) GetTimestamp() int64 {
|
|
@@ -1963,6 +2307,395 @@ func (x *SyncActionValue) GetUsernameChatStartMode() *UsernameChatStartModeActio
|
|
|
1963
2307
|
return nil
|
|
1964
2308
|
}
|
|
1965
2309
|
|
|
2310
|
+
func (x *SyncActionValue) GetNotificationActivitySettingAction() *NotificationActivitySettingAction {
|
|
2311
|
+
if x != nil {
|
|
2312
|
+
return x.NotificationActivitySettingAction
|
|
2313
|
+
}
|
|
2314
|
+
return nil
|
|
2315
|
+
}
|
|
2316
|
+
|
|
2317
|
+
func (x *SyncActionValue) GetLidContactAction() *LidContactAction {
|
|
2318
|
+
if x != nil {
|
|
2319
|
+
return x.LidContactAction
|
|
2320
|
+
}
|
|
2321
|
+
return nil
|
|
2322
|
+
}
|
|
2323
|
+
|
|
2324
|
+
func (x *SyncActionValue) GetCtwaPerCustomerDataSharingAction() *CtwaPerCustomerDataSharingAction {
|
|
2325
|
+
if x != nil {
|
|
2326
|
+
return x.CtwaPerCustomerDataSharingAction
|
|
2327
|
+
}
|
|
2328
|
+
return nil
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2331
|
+
func (x *SyncActionValue) GetPaymentTosAction() *PaymentTosAction {
|
|
2332
|
+
if x != nil {
|
|
2333
|
+
return x.PaymentTosAction
|
|
2334
|
+
}
|
|
2335
|
+
return nil
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2338
|
+
func (x *SyncActionValue) GetPrivacySettingChannelsPersonalisedRecommendationAction() *PrivacySettingChannelsPersonalisedRecommendationAction {
|
|
2339
|
+
if x != nil {
|
|
2340
|
+
return x.PrivacySettingChannelsPersonalisedRecommendationAction
|
|
2341
|
+
}
|
|
2342
|
+
return nil
|
|
2343
|
+
}
|
|
2344
|
+
|
|
2345
|
+
func (x *SyncActionValue) GetBusinessBroadcastAssociationAction() *BusinessBroadcastAssociationAction {
|
|
2346
|
+
if x != nil {
|
|
2347
|
+
return x.BusinessBroadcastAssociationAction
|
|
2348
|
+
}
|
|
2349
|
+
return nil
|
|
2350
|
+
}
|
|
2351
|
+
|
|
2352
|
+
func (x *SyncActionValue) GetDetectedOutcomesStatusAction() *DetectedOutcomesStatusAction {
|
|
2353
|
+
if x != nil {
|
|
2354
|
+
return x.DetectedOutcomesStatusAction
|
|
2355
|
+
}
|
|
2356
|
+
return nil
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2359
|
+
func (x *SyncActionValue) GetMaibaAiFeaturesControlAction() *MaibaAIFeaturesControlAction {
|
|
2360
|
+
if x != nil {
|
|
2361
|
+
return x.MaibaAiFeaturesControlAction
|
|
2362
|
+
}
|
|
2363
|
+
return nil
|
|
2364
|
+
}
|
|
2365
|
+
|
|
2366
|
+
func (x *SyncActionValue) GetBusinessBroadcastListAction() *BusinessBroadcastListAction {
|
|
2367
|
+
if x != nil {
|
|
2368
|
+
return x.BusinessBroadcastListAction
|
|
2369
|
+
}
|
|
2370
|
+
return nil
|
|
2371
|
+
}
|
|
2372
|
+
|
|
2373
|
+
func (x *SyncActionValue) GetMusicUserIDAction() *MusicUserIdAction {
|
|
2374
|
+
if x != nil {
|
|
2375
|
+
return x.MusicUserIDAction
|
|
2376
|
+
}
|
|
2377
|
+
return nil
|
|
2378
|
+
}
|
|
2379
|
+
|
|
2380
|
+
func (x *SyncActionValue) GetStatusPostOptInNotificationPreferencesAction() *StatusPostOptInNotificationPreferencesAction {
|
|
2381
|
+
if x != nil {
|
|
2382
|
+
return x.StatusPostOptInNotificationPreferencesAction
|
|
2383
|
+
}
|
|
2384
|
+
return nil
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2387
|
+
type StatusPostOptInNotificationPreferencesAction struct {
|
|
2388
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2389
|
+
Enabled *bool `protobuf:"varint,1,opt,name=enabled" json:"enabled,omitempty"`
|
|
2390
|
+
unknownFields protoimpl.UnknownFields
|
|
2391
|
+
sizeCache protoimpl.SizeCache
|
|
2392
|
+
}
|
|
2393
|
+
|
|
2394
|
+
func (x *StatusPostOptInNotificationPreferencesAction) Reset() {
|
|
2395
|
+
*x = StatusPostOptInNotificationPreferencesAction{}
|
|
2396
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
|
|
2397
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2398
|
+
ms.StoreMessageInfo(mi)
|
|
2399
|
+
}
|
|
2400
|
+
|
|
2401
|
+
func (x *StatusPostOptInNotificationPreferencesAction) String() string {
|
|
2402
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2403
|
+
}
|
|
2404
|
+
|
|
2405
|
+
func (*StatusPostOptInNotificationPreferencesAction) ProtoMessage() {}
|
|
2406
|
+
|
|
2407
|
+
func (x *StatusPostOptInNotificationPreferencesAction) ProtoReflect() protoreflect.Message {
|
|
2408
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
|
|
2409
|
+
if x != nil {
|
|
2410
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2411
|
+
if ms.LoadMessageInfo() == nil {
|
|
2412
|
+
ms.StoreMessageInfo(mi)
|
|
2413
|
+
}
|
|
2414
|
+
return ms
|
|
2415
|
+
}
|
|
2416
|
+
return mi.MessageOf(x)
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2419
|
+
// Deprecated: Use StatusPostOptInNotificationPreferencesAction.ProtoReflect.Descriptor instead.
|
|
2420
|
+
func (*StatusPostOptInNotificationPreferencesAction) Descriptor() ([]byte, []int) {
|
|
2421
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
func (x *StatusPostOptInNotificationPreferencesAction) GetEnabled() bool {
|
|
2425
|
+
if x != nil && x.Enabled != nil {
|
|
2426
|
+
return *x.Enabled
|
|
2427
|
+
}
|
|
2428
|
+
return false
|
|
2429
|
+
}
|
|
2430
|
+
|
|
2431
|
+
type BroadcastListParticipant struct {
|
|
2432
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2433
|
+
LidJID *string `protobuf:"bytes,1,req,name=lidJID" json:"lidJID,omitempty"`
|
|
2434
|
+
PnJID *string `protobuf:"bytes,2,opt,name=pnJID" json:"pnJID,omitempty"`
|
|
2435
|
+
unknownFields protoimpl.UnknownFields
|
|
2436
|
+
sizeCache protoimpl.SizeCache
|
|
2437
|
+
}
|
|
2438
|
+
|
|
2439
|
+
func (x *BroadcastListParticipant) Reset() {
|
|
2440
|
+
*x = BroadcastListParticipant{}
|
|
2441
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
|
|
2442
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2443
|
+
ms.StoreMessageInfo(mi)
|
|
2444
|
+
}
|
|
2445
|
+
|
|
2446
|
+
func (x *BroadcastListParticipant) String() string {
|
|
2447
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2450
|
+
func (*BroadcastListParticipant) ProtoMessage() {}
|
|
2451
|
+
|
|
2452
|
+
func (x *BroadcastListParticipant) ProtoReflect() protoreflect.Message {
|
|
2453
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
|
|
2454
|
+
if x != nil {
|
|
2455
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2456
|
+
if ms.LoadMessageInfo() == nil {
|
|
2457
|
+
ms.StoreMessageInfo(mi)
|
|
2458
|
+
}
|
|
2459
|
+
return ms
|
|
2460
|
+
}
|
|
2461
|
+
return mi.MessageOf(x)
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
// Deprecated: Use BroadcastListParticipant.ProtoReflect.Descriptor instead.
|
|
2465
|
+
func (*BroadcastListParticipant) Descriptor() ([]byte, []int) {
|
|
2466
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{15}
|
|
2467
|
+
}
|
|
2468
|
+
|
|
2469
|
+
func (x *BroadcastListParticipant) GetLidJID() string {
|
|
2470
|
+
if x != nil && x.LidJID != nil {
|
|
2471
|
+
return *x.LidJID
|
|
2472
|
+
}
|
|
2473
|
+
return ""
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
func (x *BroadcastListParticipant) GetPnJID() string {
|
|
2477
|
+
if x != nil && x.PnJID != nil {
|
|
2478
|
+
return *x.PnJID
|
|
2479
|
+
}
|
|
2480
|
+
return ""
|
|
2481
|
+
}
|
|
2482
|
+
|
|
2483
|
+
type BusinessBroadcastListAction struct {
|
|
2484
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2485
|
+
Deleted *bool `protobuf:"varint,1,opt,name=deleted" json:"deleted,omitempty"`
|
|
2486
|
+
Participants []*BroadcastListParticipant `protobuf:"bytes,2,rep,name=participants" json:"participants,omitempty"`
|
|
2487
|
+
ListName *string `protobuf:"bytes,3,opt,name=listName" json:"listName,omitempty"`
|
|
2488
|
+
unknownFields protoimpl.UnknownFields
|
|
2489
|
+
sizeCache protoimpl.SizeCache
|
|
2490
|
+
}
|
|
2491
|
+
|
|
2492
|
+
func (x *BusinessBroadcastListAction) Reset() {
|
|
2493
|
+
*x = BusinessBroadcastListAction{}
|
|
2494
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
|
|
2495
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2496
|
+
ms.StoreMessageInfo(mi)
|
|
2497
|
+
}
|
|
2498
|
+
|
|
2499
|
+
func (x *BusinessBroadcastListAction) String() string {
|
|
2500
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
func (*BusinessBroadcastListAction) ProtoMessage() {}
|
|
2504
|
+
|
|
2505
|
+
func (x *BusinessBroadcastListAction) ProtoReflect() protoreflect.Message {
|
|
2506
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
|
|
2507
|
+
if x != nil {
|
|
2508
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2509
|
+
if ms.LoadMessageInfo() == nil {
|
|
2510
|
+
ms.StoreMessageInfo(mi)
|
|
2511
|
+
}
|
|
2512
|
+
return ms
|
|
2513
|
+
}
|
|
2514
|
+
return mi.MessageOf(x)
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
// Deprecated: Use BusinessBroadcastListAction.ProtoReflect.Descriptor instead.
|
|
2518
|
+
func (*BusinessBroadcastListAction) Descriptor() ([]byte, []int) {
|
|
2519
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16}
|
|
2520
|
+
}
|
|
2521
|
+
|
|
2522
|
+
func (x *BusinessBroadcastListAction) GetDeleted() bool {
|
|
2523
|
+
if x != nil && x.Deleted != nil {
|
|
2524
|
+
return *x.Deleted
|
|
2525
|
+
}
|
|
2526
|
+
return false
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2529
|
+
func (x *BusinessBroadcastListAction) GetParticipants() []*BroadcastListParticipant {
|
|
2530
|
+
if x != nil {
|
|
2531
|
+
return x.Participants
|
|
2532
|
+
}
|
|
2533
|
+
return nil
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2536
|
+
func (x *BusinessBroadcastListAction) GetListName() string {
|
|
2537
|
+
if x != nil && x.ListName != nil {
|
|
2538
|
+
return *x.ListName
|
|
2539
|
+
}
|
|
2540
|
+
return ""
|
|
2541
|
+
}
|
|
2542
|
+
|
|
2543
|
+
type BusinessBroadcastAssociationAction struct {
|
|
2544
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2545
|
+
Deleted *bool `protobuf:"varint,1,opt,name=deleted" json:"deleted,omitempty"`
|
|
2546
|
+
unknownFields protoimpl.UnknownFields
|
|
2547
|
+
sizeCache protoimpl.SizeCache
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2550
|
+
func (x *BusinessBroadcastAssociationAction) Reset() {
|
|
2551
|
+
*x = BusinessBroadcastAssociationAction{}
|
|
2552
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
|
|
2553
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2554
|
+
ms.StoreMessageInfo(mi)
|
|
2555
|
+
}
|
|
2556
|
+
|
|
2557
|
+
func (x *BusinessBroadcastAssociationAction) String() string {
|
|
2558
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2559
|
+
}
|
|
2560
|
+
|
|
2561
|
+
func (*BusinessBroadcastAssociationAction) ProtoMessage() {}
|
|
2562
|
+
|
|
2563
|
+
func (x *BusinessBroadcastAssociationAction) ProtoReflect() protoreflect.Message {
|
|
2564
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
|
|
2565
|
+
if x != nil {
|
|
2566
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2567
|
+
if ms.LoadMessageInfo() == nil {
|
|
2568
|
+
ms.StoreMessageInfo(mi)
|
|
2569
|
+
}
|
|
2570
|
+
return ms
|
|
2571
|
+
}
|
|
2572
|
+
return mi.MessageOf(x)
|
|
2573
|
+
}
|
|
2574
|
+
|
|
2575
|
+
// Deprecated: Use BusinessBroadcastAssociationAction.ProtoReflect.Descriptor instead.
|
|
2576
|
+
func (*BusinessBroadcastAssociationAction) Descriptor() ([]byte, []int) {
|
|
2577
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{17}
|
|
2578
|
+
}
|
|
2579
|
+
|
|
2580
|
+
func (x *BusinessBroadcastAssociationAction) GetDeleted() bool {
|
|
2581
|
+
if x != nil && x.Deleted != nil {
|
|
2582
|
+
return *x.Deleted
|
|
2583
|
+
}
|
|
2584
|
+
return false
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
type CtwaPerCustomerDataSharingAction struct {
|
|
2588
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2589
|
+
IsCtwaPerCustomerDataSharingEnabled *bool `protobuf:"varint,1,opt,name=isCtwaPerCustomerDataSharingEnabled" json:"isCtwaPerCustomerDataSharingEnabled,omitempty"`
|
|
2590
|
+
unknownFields protoimpl.UnknownFields
|
|
2591
|
+
sizeCache protoimpl.SizeCache
|
|
2592
|
+
}
|
|
2593
|
+
|
|
2594
|
+
func (x *CtwaPerCustomerDataSharingAction) Reset() {
|
|
2595
|
+
*x = CtwaPerCustomerDataSharingAction{}
|
|
2596
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
|
|
2597
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2598
|
+
ms.StoreMessageInfo(mi)
|
|
2599
|
+
}
|
|
2600
|
+
|
|
2601
|
+
func (x *CtwaPerCustomerDataSharingAction) String() string {
|
|
2602
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2603
|
+
}
|
|
2604
|
+
|
|
2605
|
+
func (*CtwaPerCustomerDataSharingAction) ProtoMessage() {}
|
|
2606
|
+
|
|
2607
|
+
func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
|
|
2608
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
|
|
2609
|
+
if x != nil {
|
|
2610
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2611
|
+
if ms.LoadMessageInfo() == nil {
|
|
2612
|
+
ms.StoreMessageInfo(mi)
|
|
2613
|
+
}
|
|
2614
|
+
return ms
|
|
2615
|
+
}
|
|
2616
|
+
return mi.MessageOf(x)
|
|
2617
|
+
}
|
|
2618
|
+
|
|
2619
|
+
// Deprecated: Use CtwaPerCustomerDataSharingAction.ProtoReflect.Descriptor instead.
|
|
2620
|
+
func (*CtwaPerCustomerDataSharingAction) Descriptor() ([]byte, []int) {
|
|
2621
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
|
|
2622
|
+
}
|
|
2623
|
+
|
|
2624
|
+
func (x *CtwaPerCustomerDataSharingAction) GetIsCtwaPerCustomerDataSharingEnabled() bool {
|
|
2625
|
+
if x != nil && x.IsCtwaPerCustomerDataSharingEnabled != nil {
|
|
2626
|
+
return *x.IsCtwaPerCustomerDataSharingEnabled
|
|
2627
|
+
}
|
|
2628
|
+
return false
|
|
2629
|
+
}
|
|
2630
|
+
|
|
2631
|
+
type LidContactAction struct {
|
|
2632
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2633
|
+
FullName *string `protobuf:"bytes,1,opt,name=fullName" json:"fullName,omitempty"`
|
|
2634
|
+
FirstName *string `protobuf:"bytes,2,opt,name=firstName" json:"firstName,omitempty"`
|
|
2635
|
+
Username *string `protobuf:"bytes,3,opt,name=username" json:"username,omitempty"`
|
|
2636
|
+
SaveOnPrimaryAddressbook *bool `protobuf:"varint,4,opt,name=saveOnPrimaryAddressbook" json:"saveOnPrimaryAddressbook,omitempty"`
|
|
2637
|
+
unknownFields protoimpl.UnknownFields
|
|
2638
|
+
sizeCache protoimpl.SizeCache
|
|
2639
|
+
}
|
|
2640
|
+
|
|
2641
|
+
func (x *LidContactAction) Reset() {
|
|
2642
|
+
*x = LidContactAction{}
|
|
2643
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
|
|
2644
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2645
|
+
ms.StoreMessageInfo(mi)
|
|
2646
|
+
}
|
|
2647
|
+
|
|
2648
|
+
func (x *LidContactAction) String() string {
|
|
2649
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2650
|
+
}
|
|
2651
|
+
|
|
2652
|
+
func (*LidContactAction) ProtoMessage() {}
|
|
2653
|
+
|
|
2654
|
+
func (x *LidContactAction) ProtoReflect() protoreflect.Message {
|
|
2655
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
|
|
2656
|
+
if x != nil {
|
|
2657
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2658
|
+
if ms.LoadMessageInfo() == nil {
|
|
2659
|
+
ms.StoreMessageInfo(mi)
|
|
2660
|
+
}
|
|
2661
|
+
return ms
|
|
2662
|
+
}
|
|
2663
|
+
return mi.MessageOf(x)
|
|
2664
|
+
}
|
|
2665
|
+
|
|
2666
|
+
// Deprecated: Use LidContactAction.ProtoReflect.Descriptor instead.
|
|
2667
|
+
func (*LidContactAction) Descriptor() ([]byte, []int) {
|
|
2668
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
|
|
2669
|
+
}
|
|
2670
|
+
|
|
2671
|
+
func (x *LidContactAction) GetFullName() string {
|
|
2672
|
+
if x != nil && x.FullName != nil {
|
|
2673
|
+
return *x.FullName
|
|
2674
|
+
}
|
|
2675
|
+
return ""
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2678
|
+
func (x *LidContactAction) GetFirstName() string {
|
|
2679
|
+
if x != nil && x.FirstName != nil {
|
|
2680
|
+
return *x.FirstName
|
|
2681
|
+
}
|
|
2682
|
+
return ""
|
|
2683
|
+
}
|
|
2684
|
+
|
|
2685
|
+
func (x *LidContactAction) GetUsername() string {
|
|
2686
|
+
if x != nil && x.Username != nil {
|
|
2687
|
+
return *x.Username
|
|
2688
|
+
}
|
|
2689
|
+
return ""
|
|
2690
|
+
}
|
|
2691
|
+
|
|
2692
|
+
func (x *LidContactAction) GetSaveOnPrimaryAddressbook() bool {
|
|
2693
|
+
if x != nil && x.SaveOnPrimaryAddressbook != nil {
|
|
2694
|
+
return *x.SaveOnPrimaryAddressbook
|
|
2695
|
+
}
|
|
2696
|
+
return false
|
|
2697
|
+
}
|
|
2698
|
+
|
|
1966
2699
|
type FavoritesAction struct {
|
|
1967
2700
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1968
2701
|
Favorites []*FavoritesAction_Favorite `protobuf:"bytes,1,rep,name=favorites" json:"favorites,omitempty"`
|
|
@@ -1972,7 +2705,7 @@ type FavoritesAction struct {
|
|
|
1972
2705
|
|
|
1973
2706
|
func (x *FavoritesAction) Reset() {
|
|
1974
2707
|
*x = FavoritesAction{}
|
|
1975
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2708
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
|
|
1976
2709
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1977
2710
|
ms.StoreMessageInfo(mi)
|
|
1978
2711
|
}
|
|
@@ -1984,7 +2717,7 @@ func (x *FavoritesAction) String() string {
|
|
|
1984
2717
|
func (*FavoritesAction) ProtoMessage() {}
|
|
1985
2718
|
|
|
1986
2719
|
func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
|
|
1987
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2720
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
|
|
1988
2721
|
if x != nil {
|
|
1989
2722
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1990
2723
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1997,7 +2730,7 @@ func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
|
|
|
1997
2730
|
|
|
1998
2731
|
// Deprecated: Use FavoritesAction.ProtoReflect.Descriptor instead.
|
|
1999
2732
|
func (*FavoritesAction) Descriptor() ([]byte, []int) {
|
|
2000
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2733
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
|
|
2001
2734
|
}
|
|
2002
2735
|
|
|
2003
2736
|
func (x *FavoritesAction) GetFavorites() []*FavoritesAction_Favorite {
|
|
@@ -2007,6 +2740,50 @@ func (x *FavoritesAction) GetFavorites() []*FavoritesAction_Favorite {
|
|
|
2007
2740
|
return nil
|
|
2008
2741
|
}
|
|
2009
2742
|
|
|
2743
|
+
type PrivacySettingChannelsPersonalisedRecommendationAction struct {
|
|
2744
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2745
|
+
IsUserOptedOut *bool `protobuf:"varint,1,opt,name=isUserOptedOut" json:"isUserOptedOut,omitempty"`
|
|
2746
|
+
unknownFields protoimpl.UnknownFields
|
|
2747
|
+
sizeCache protoimpl.SizeCache
|
|
2748
|
+
}
|
|
2749
|
+
|
|
2750
|
+
func (x *PrivacySettingChannelsPersonalisedRecommendationAction) Reset() {
|
|
2751
|
+
*x = PrivacySettingChannelsPersonalisedRecommendationAction{}
|
|
2752
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
|
|
2753
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2754
|
+
ms.StoreMessageInfo(mi)
|
|
2755
|
+
}
|
|
2756
|
+
|
|
2757
|
+
func (x *PrivacySettingChannelsPersonalisedRecommendationAction) String() string {
|
|
2758
|
+
return protoimpl.X.MessageStringOf(x)
|
|
2759
|
+
}
|
|
2760
|
+
|
|
2761
|
+
func (*PrivacySettingChannelsPersonalisedRecommendationAction) ProtoMessage() {}
|
|
2762
|
+
|
|
2763
|
+
func (x *PrivacySettingChannelsPersonalisedRecommendationAction) ProtoReflect() protoreflect.Message {
|
|
2764
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
|
|
2765
|
+
if x != nil {
|
|
2766
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2767
|
+
if ms.LoadMessageInfo() == nil {
|
|
2768
|
+
ms.StoreMessageInfo(mi)
|
|
2769
|
+
}
|
|
2770
|
+
return ms
|
|
2771
|
+
}
|
|
2772
|
+
return mi.MessageOf(x)
|
|
2773
|
+
}
|
|
2774
|
+
|
|
2775
|
+
// Deprecated: Use PrivacySettingChannelsPersonalisedRecommendationAction.ProtoReflect.Descriptor instead.
|
|
2776
|
+
func (*PrivacySettingChannelsPersonalisedRecommendationAction) Descriptor() ([]byte, []int) {
|
|
2777
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
|
|
2778
|
+
}
|
|
2779
|
+
|
|
2780
|
+
func (x *PrivacySettingChannelsPersonalisedRecommendationAction) GetIsUserOptedOut() bool {
|
|
2781
|
+
if x != nil && x.IsUserOptedOut != nil {
|
|
2782
|
+
return *x.IsUserOptedOut
|
|
2783
|
+
}
|
|
2784
|
+
return false
|
|
2785
|
+
}
|
|
2786
|
+
|
|
2010
2787
|
type PrivacySettingDisableLinkPreviewsAction struct {
|
|
2011
2788
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2012
2789
|
IsPreviewsDisabled *bool `protobuf:"varint,1,opt,name=isPreviewsDisabled" json:"isPreviewsDisabled,omitempty"`
|
|
@@ -2016,7 +2793,7 @@ type PrivacySettingDisableLinkPreviewsAction struct {
|
|
|
2016
2793
|
|
|
2017
2794
|
func (x *PrivacySettingDisableLinkPreviewsAction) Reset() {
|
|
2018
2795
|
*x = PrivacySettingDisableLinkPreviewsAction{}
|
|
2019
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2796
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
|
|
2020
2797
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2021
2798
|
ms.StoreMessageInfo(mi)
|
|
2022
2799
|
}
|
|
@@ -2028,7 +2805,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) String() string {
|
|
|
2028
2805
|
func (*PrivacySettingDisableLinkPreviewsAction) ProtoMessage() {}
|
|
2029
2806
|
|
|
2030
2807
|
func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Message {
|
|
2031
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2808
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
|
|
2032
2809
|
if x != nil {
|
|
2033
2810
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2034
2811
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2041,7 +2818,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Me
|
|
|
2041
2818
|
|
|
2042
2819
|
// Deprecated: Use PrivacySettingDisableLinkPreviewsAction.ProtoReflect.Descriptor instead.
|
|
2043
2820
|
func (*PrivacySettingDisableLinkPreviewsAction) Descriptor() ([]byte, []int) {
|
|
2044
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2821
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
|
|
2045
2822
|
}
|
|
2046
2823
|
|
|
2047
2824
|
func (x *PrivacySettingDisableLinkPreviewsAction) GetIsPreviewsDisabled() bool {
|
|
@@ -2060,7 +2837,7 @@ type WamoUserIdentifierAction struct {
|
|
|
2060
2837
|
|
|
2061
2838
|
func (x *WamoUserIdentifierAction) Reset() {
|
|
2062
2839
|
*x = WamoUserIdentifierAction{}
|
|
2063
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2840
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
|
|
2064
2841
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2065
2842
|
ms.StoreMessageInfo(mi)
|
|
2066
2843
|
}
|
|
@@ -2072,7 +2849,7 @@ func (x *WamoUserIdentifierAction) String() string {
|
|
|
2072
2849
|
func (*WamoUserIdentifierAction) ProtoMessage() {}
|
|
2073
2850
|
|
|
2074
2851
|
func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
|
|
2075
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2852
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
|
|
2076
2853
|
if x != nil {
|
|
2077
2854
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2078
2855
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2085,7 +2862,7 @@ func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
|
|
|
2085
2862
|
|
|
2086
2863
|
// Deprecated: Use WamoUserIdentifierAction.ProtoReflect.Descriptor instead.
|
|
2087
2864
|
func (*WamoUserIdentifierAction) Descriptor() ([]byte, []int) {
|
|
2088
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2865
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
|
|
2089
2866
|
}
|
|
2090
2867
|
|
|
2091
2868
|
func (x *WamoUserIdentifierAction) GetIdentifier() string {
|
|
@@ -2104,7 +2881,7 @@ type LockChatAction struct {
|
|
|
2104
2881
|
|
|
2105
2882
|
func (x *LockChatAction) Reset() {
|
|
2106
2883
|
*x = LockChatAction{}
|
|
2107
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2884
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
|
|
2108
2885
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2109
2886
|
ms.StoreMessageInfo(mi)
|
|
2110
2887
|
}
|
|
@@ -2116,7 +2893,7 @@ func (x *LockChatAction) String() string {
|
|
|
2116
2893
|
func (*LockChatAction) ProtoMessage() {}
|
|
2117
2894
|
|
|
2118
2895
|
func (x *LockChatAction) ProtoReflect() protoreflect.Message {
|
|
2119
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2896
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
|
|
2120
2897
|
if x != nil {
|
|
2121
2898
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2122
2899
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2129,7 +2906,7 @@ func (x *LockChatAction) ProtoReflect() protoreflect.Message {
|
|
|
2129
2906
|
|
|
2130
2907
|
// Deprecated: Use LockChatAction.ProtoReflect.Descriptor instead.
|
|
2131
2908
|
func (*LockChatAction) Descriptor() ([]byte, []int) {
|
|
2132
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2909
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
|
|
2133
2910
|
}
|
|
2134
2911
|
|
|
2135
2912
|
func (x *LockChatAction) GetLocked() bool {
|
|
@@ -2148,7 +2925,7 @@ type CustomPaymentMethodsAction struct {
|
|
|
2148
2925
|
|
|
2149
2926
|
func (x *CustomPaymentMethodsAction) Reset() {
|
|
2150
2927
|
*x = CustomPaymentMethodsAction{}
|
|
2151
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2928
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
|
|
2152
2929
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2153
2930
|
ms.StoreMessageInfo(mi)
|
|
2154
2931
|
}
|
|
@@ -2160,7 +2937,7 @@ func (x *CustomPaymentMethodsAction) String() string {
|
|
|
2160
2937
|
func (*CustomPaymentMethodsAction) ProtoMessage() {}
|
|
2161
2938
|
|
|
2162
2939
|
func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
|
|
2163
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2940
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
|
|
2164
2941
|
if x != nil {
|
|
2165
2942
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2166
2943
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2173,7 +2950,7 @@ func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
|
|
|
2173
2950
|
|
|
2174
2951
|
// Deprecated: Use CustomPaymentMethodsAction.ProtoReflect.Descriptor instead.
|
|
2175
2952
|
func (*CustomPaymentMethodsAction) Descriptor() ([]byte, []int) {
|
|
2176
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2953
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
|
|
2177
2954
|
}
|
|
2178
2955
|
|
|
2179
2956
|
func (x *CustomPaymentMethodsAction) GetCustomPaymentMethods() []*CustomPaymentMethod {
|
|
@@ -2195,7 +2972,7 @@ type CustomPaymentMethod struct {
|
|
|
2195
2972
|
|
|
2196
2973
|
func (x *CustomPaymentMethod) Reset() {
|
|
2197
2974
|
*x = CustomPaymentMethod{}
|
|
2198
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2975
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
|
|
2199
2976
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2200
2977
|
ms.StoreMessageInfo(mi)
|
|
2201
2978
|
}
|
|
@@ -2207,7 +2984,7 @@ func (x *CustomPaymentMethod) String() string {
|
|
|
2207
2984
|
func (*CustomPaymentMethod) ProtoMessage() {}
|
|
2208
2985
|
|
|
2209
2986
|
func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
|
|
2210
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2987
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
|
|
2211
2988
|
if x != nil {
|
|
2212
2989
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2213
2990
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2220,7 +2997,7 @@ func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
|
|
|
2220
2997
|
|
|
2221
2998
|
// Deprecated: Use CustomPaymentMethod.ProtoReflect.Descriptor instead.
|
|
2222
2999
|
func (*CustomPaymentMethod) Descriptor() ([]byte, []int) {
|
|
2223
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3000
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
|
|
2224
3001
|
}
|
|
2225
3002
|
|
|
2226
3003
|
func (x *CustomPaymentMethod) GetCredentialID() string {
|
|
@@ -2261,7 +3038,7 @@ type CustomPaymentMethodMetadata struct {
|
|
|
2261
3038
|
|
|
2262
3039
|
func (x *CustomPaymentMethodMetadata) Reset() {
|
|
2263
3040
|
*x = CustomPaymentMethodMetadata{}
|
|
2264
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3041
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
|
|
2265
3042
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2266
3043
|
ms.StoreMessageInfo(mi)
|
|
2267
3044
|
}
|
|
@@ -2273,7 +3050,7 @@ func (x *CustomPaymentMethodMetadata) String() string {
|
|
|
2273
3050
|
func (*CustomPaymentMethodMetadata) ProtoMessage() {}
|
|
2274
3051
|
|
|
2275
3052
|
func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
|
|
2276
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3053
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
|
|
2277
3054
|
if x != nil {
|
|
2278
3055
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2279
3056
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2286,7 +3063,7 @@ func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
|
|
|
2286
3063
|
|
|
2287
3064
|
// Deprecated: Use CustomPaymentMethodMetadata.ProtoReflect.Descriptor instead.
|
|
2288
3065
|
func (*CustomPaymentMethodMetadata) Descriptor() ([]byte, []int) {
|
|
2289
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3066
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
|
|
2290
3067
|
}
|
|
2291
3068
|
|
|
2292
3069
|
func (x *CustomPaymentMethodMetadata) GetKey() string {
|
|
@@ -2312,7 +3089,7 @@ type PaymentInfoAction struct {
|
|
|
2312
3089
|
|
|
2313
3090
|
func (x *PaymentInfoAction) Reset() {
|
|
2314
3091
|
*x = PaymentInfoAction{}
|
|
2315
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3092
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
|
|
2316
3093
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2317
3094
|
ms.StoreMessageInfo(mi)
|
|
2318
3095
|
}
|
|
@@ -2324,7 +3101,7 @@ func (x *PaymentInfoAction) String() string {
|
|
|
2324
3101
|
func (*PaymentInfoAction) ProtoMessage() {}
|
|
2325
3102
|
|
|
2326
3103
|
func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
|
|
2327
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3104
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
|
|
2328
3105
|
if x != nil {
|
|
2329
3106
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2330
3107
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2337,7 +3114,7 @@ func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
|
|
|
2337
3114
|
|
|
2338
3115
|
// Deprecated: Use PaymentInfoAction.ProtoReflect.Descriptor instead.
|
|
2339
3116
|
func (*PaymentInfoAction) Descriptor() ([]byte, []int) {
|
|
2340
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3117
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
|
|
2341
3118
|
}
|
|
2342
3119
|
|
|
2343
3120
|
func (x *PaymentInfoAction) GetCpi() string {
|
|
@@ -2356,7 +3133,7 @@ type LabelReorderingAction struct {
|
|
|
2356
3133
|
|
|
2357
3134
|
func (x *LabelReorderingAction) Reset() {
|
|
2358
3135
|
*x = LabelReorderingAction{}
|
|
2359
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3136
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
|
|
2360
3137
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2361
3138
|
ms.StoreMessageInfo(mi)
|
|
2362
3139
|
}
|
|
@@ -2368,7 +3145,7 @@ func (x *LabelReorderingAction) String() string {
|
|
|
2368
3145
|
func (*LabelReorderingAction) ProtoMessage() {}
|
|
2369
3146
|
|
|
2370
3147
|
func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
|
|
2371
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3148
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
|
|
2372
3149
|
if x != nil {
|
|
2373
3150
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2374
3151
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2381,7 +3158,7 @@ func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
|
|
|
2381
3158
|
|
|
2382
3159
|
// Deprecated: Use LabelReorderingAction.ProtoReflect.Descriptor instead.
|
|
2383
3160
|
func (*LabelReorderingAction) Descriptor() ([]byte, []int) {
|
|
2384
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3161
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
|
|
2385
3162
|
}
|
|
2386
3163
|
|
|
2387
3164
|
func (x *LabelReorderingAction) GetSortedLabelIDs() []int32 {
|
|
@@ -2401,7 +3178,7 @@ type DeleteIndividualCallLogAction struct {
|
|
|
2401
3178
|
|
|
2402
3179
|
func (x *DeleteIndividualCallLogAction) Reset() {
|
|
2403
3180
|
*x = DeleteIndividualCallLogAction{}
|
|
2404
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3181
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
|
|
2405
3182
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2406
3183
|
ms.StoreMessageInfo(mi)
|
|
2407
3184
|
}
|
|
@@ -2413,7 +3190,7 @@ func (x *DeleteIndividualCallLogAction) String() string {
|
|
|
2413
3190
|
func (*DeleteIndividualCallLogAction) ProtoMessage() {}
|
|
2414
3191
|
|
|
2415
3192
|
func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
|
|
2416
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3193
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
|
|
2417
3194
|
if x != nil {
|
|
2418
3195
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2419
3196
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2426,7 +3203,7 @@ func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
|
|
|
2426
3203
|
|
|
2427
3204
|
// Deprecated: Use DeleteIndividualCallLogAction.ProtoReflect.Descriptor instead.
|
|
2428
3205
|
func (*DeleteIndividualCallLogAction) Descriptor() ([]byte, []int) {
|
|
2429
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3206
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
|
|
2430
3207
|
}
|
|
2431
3208
|
|
|
2432
3209
|
func (x *DeleteIndividualCallLogAction) GetPeerJID() string {
|
|
@@ -2452,7 +3229,7 @@ type BotWelcomeRequestAction struct {
|
|
|
2452
3229
|
|
|
2453
3230
|
func (x *BotWelcomeRequestAction) Reset() {
|
|
2454
3231
|
*x = BotWelcomeRequestAction{}
|
|
2455
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3232
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
|
|
2456
3233
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2457
3234
|
ms.StoreMessageInfo(mi)
|
|
2458
3235
|
}
|
|
@@ -2464,7 +3241,7 @@ func (x *BotWelcomeRequestAction) String() string {
|
|
|
2464
3241
|
func (*BotWelcomeRequestAction) ProtoMessage() {}
|
|
2465
3242
|
|
|
2466
3243
|
func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
|
|
2467
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3244
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
|
|
2468
3245
|
if x != nil {
|
|
2469
3246
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2470
3247
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2477,14 +3254,58 @@ func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
|
|
|
2477
3254
|
|
|
2478
3255
|
// Deprecated: Use BotWelcomeRequestAction.ProtoReflect.Descriptor instead.
|
|
2479
3256
|
func (*BotWelcomeRequestAction) Descriptor() ([]byte, []int) {
|
|
2480
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3257
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
|
|
2481
3258
|
}
|
|
2482
3259
|
|
|
2483
3260
|
func (x *BotWelcomeRequestAction) GetIsSent() bool {
|
|
2484
3261
|
if x != nil && x.IsSent != nil {
|
|
2485
3262
|
return *x.IsSent
|
|
2486
3263
|
}
|
|
2487
|
-
return false
|
|
3264
|
+
return false
|
|
3265
|
+
}
|
|
3266
|
+
|
|
3267
|
+
type MusicUserIdAction struct {
|
|
3268
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3269
|
+
MusicUserID *string `protobuf:"bytes,1,opt,name=musicUserID" json:"musicUserID,omitempty"`
|
|
3270
|
+
unknownFields protoimpl.UnknownFields
|
|
3271
|
+
sizeCache protoimpl.SizeCache
|
|
3272
|
+
}
|
|
3273
|
+
|
|
3274
|
+
func (x *MusicUserIdAction) Reset() {
|
|
3275
|
+
*x = MusicUserIdAction{}
|
|
3276
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
|
|
3277
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3278
|
+
ms.StoreMessageInfo(mi)
|
|
3279
|
+
}
|
|
3280
|
+
|
|
3281
|
+
func (x *MusicUserIdAction) String() string {
|
|
3282
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3283
|
+
}
|
|
3284
|
+
|
|
3285
|
+
func (*MusicUserIdAction) ProtoMessage() {}
|
|
3286
|
+
|
|
3287
|
+
func (x *MusicUserIdAction) ProtoReflect() protoreflect.Message {
|
|
3288
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
|
|
3289
|
+
if x != nil {
|
|
3290
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3291
|
+
if ms.LoadMessageInfo() == nil {
|
|
3292
|
+
ms.StoreMessageInfo(mi)
|
|
3293
|
+
}
|
|
3294
|
+
return ms
|
|
3295
|
+
}
|
|
3296
|
+
return mi.MessageOf(x)
|
|
3297
|
+
}
|
|
3298
|
+
|
|
3299
|
+
// Deprecated: Use MusicUserIdAction.ProtoReflect.Descriptor instead.
|
|
3300
|
+
func (*MusicUserIdAction) Descriptor() ([]byte, []int) {
|
|
3301
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{32}
|
|
3302
|
+
}
|
|
3303
|
+
|
|
3304
|
+
func (x *MusicUserIdAction) GetMusicUserID() string {
|
|
3305
|
+
if x != nil && x.MusicUserID != nil {
|
|
3306
|
+
return *x.MusicUserID
|
|
3307
|
+
}
|
|
3308
|
+
return ""
|
|
2488
3309
|
}
|
|
2489
3310
|
|
|
2490
3311
|
type CallLogAction struct {
|
|
@@ -2496,7 +3317,7 @@ type CallLogAction struct {
|
|
|
2496
3317
|
|
|
2497
3318
|
func (x *CallLogAction) Reset() {
|
|
2498
3319
|
*x = CallLogAction{}
|
|
2499
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3320
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
|
|
2500
3321
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2501
3322
|
ms.StoreMessageInfo(mi)
|
|
2502
3323
|
}
|
|
@@ -2508,7 +3329,7 @@ func (x *CallLogAction) String() string {
|
|
|
2508
3329
|
func (*CallLogAction) ProtoMessage() {}
|
|
2509
3330
|
|
|
2510
3331
|
func (x *CallLogAction) ProtoReflect() protoreflect.Message {
|
|
2511
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3332
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
|
|
2512
3333
|
if x != nil {
|
|
2513
3334
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2514
3335
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2521,7 +3342,7 @@ func (x *CallLogAction) ProtoReflect() protoreflect.Message {
|
|
|
2521
3342
|
|
|
2522
3343
|
// Deprecated: Use CallLogAction.ProtoReflect.Descriptor instead.
|
|
2523
3344
|
func (*CallLogAction) Descriptor() ([]byte, []int) {
|
|
2524
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3345
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
|
|
2525
3346
|
}
|
|
2526
3347
|
|
|
2527
3348
|
func (x *CallLogAction) GetCallLogRecord() *CallLogRecord {
|
|
@@ -2540,7 +3361,7 @@ type PrivacySettingRelayAllCalls struct {
|
|
|
2540
3361
|
|
|
2541
3362
|
func (x *PrivacySettingRelayAllCalls) Reset() {
|
|
2542
3363
|
*x = PrivacySettingRelayAllCalls{}
|
|
2543
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3364
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
|
|
2544
3365
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2545
3366
|
ms.StoreMessageInfo(mi)
|
|
2546
3367
|
}
|
|
@@ -2552,7 +3373,7 @@ func (x *PrivacySettingRelayAllCalls) String() string {
|
|
|
2552
3373
|
func (*PrivacySettingRelayAllCalls) ProtoMessage() {}
|
|
2553
3374
|
|
|
2554
3375
|
func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
|
|
2555
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3376
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
|
|
2556
3377
|
if x != nil {
|
|
2557
3378
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2558
3379
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2565,7 +3386,7 @@ func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
|
|
|
2565
3386
|
|
|
2566
3387
|
// Deprecated: Use PrivacySettingRelayAllCalls.ProtoReflect.Descriptor instead.
|
|
2567
3388
|
func (*PrivacySettingRelayAllCalls) Descriptor() ([]byte, []int) {
|
|
2568
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3389
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
|
|
2569
3390
|
}
|
|
2570
3391
|
|
|
2571
3392
|
func (x *PrivacySettingRelayAllCalls) GetIsEnabled() bool {
|
|
@@ -2575,6 +3396,50 @@ func (x *PrivacySettingRelayAllCalls) GetIsEnabled() bool {
|
|
|
2575
3396
|
return false
|
|
2576
3397
|
}
|
|
2577
3398
|
|
|
3399
|
+
type DetectedOutcomesStatusAction struct {
|
|
3400
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3401
|
+
IsEnabled *bool `protobuf:"varint,1,opt,name=isEnabled" json:"isEnabled,omitempty"`
|
|
3402
|
+
unknownFields protoimpl.UnknownFields
|
|
3403
|
+
sizeCache protoimpl.SizeCache
|
|
3404
|
+
}
|
|
3405
|
+
|
|
3406
|
+
func (x *DetectedOutcomesStatusAction) Reset() {
|
|
3407
|
+
*x = DetectedOutcomesStatusAction{}
|
|
3408
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
|
|
3409
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3410
|
+
ms.StoreMessageInfo(mi)
|
|
3411
|
+
}
|
|
3412
|
+
|
|
3413
|
+
func (x *DetectedOutcomesStatusAction) String() string {
|
|
3414
|
+
return protoimpl.X.MessageStringOf(x)
|
|
3415
|
+
}
|
|
3416
|
+
|
|
3417
|
+
func (*DetectedOutcomesStatusAction) ProtoMessage() {}
|
|
3418
|
+
|
|
3419
|
+
func (x *DetectedOutcomesStatusAction) ProtoReflect() protoreflect.Message {
|
|
3420
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
|
|
3421
|
+
if x != nil {
|
|
3422
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3423
|
+
if ms.LoadMessageInfo() == nil {
|
|
3424
|
+
ms.StoreMessageInfo(mi)
|
|
3425
|
+
}
|
|
3426
|
+
return ms
|
|
3427
|
+
}
|
|
3428
|
+
return mi.MessageOf(x)
|
|
3429
|
+
}
|
|
3430
|
+
|
|
3431
|
+
// Deprecated: Use DetectedOutcomesStatusAction.ProtoReflect.Descriptor instead.
|
|
3432
|
+
func (*DetectedOutcomesStatusAction) Descriptor() ([]byte, []int) {
|
|
3433
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{35}
|
|
3434
|
+
}
|
|
3435
|
+
|
|
3436
|
+
func (x *DetectedOutcomesStatusAction) GetIsEnabled() bool {
|
|
3437
|
+
if x != nil && x.IsEnabled != nil {
|
|
3438
|
+
return *x.IsEnabled
|
|
3439
|
+
}
|
|
3440
|
+
return false
|
|
3441
|
+
}
|
|
3442
|
+
|
|
2578
3443
|
type ExternalWebBetaAction struct {
|
|
2579
3444
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2580
3445
|
IsOptIn *bool `protobuf:"varint,1,opt,name=isOptIn" json:"isOptIn,omitempty"`
|
|
@@ -2584,7 +3449,7 @@ type ExternalWebBetaAction struct {
|
|
|
2584
3449
|
|
|
2585
3450
|
func (x *ExternalWebBetaAction) Reset() {
|
|
2586
3451
|
*x = ExternalWebBetaAction{}
|
|
2587
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3452
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
|
|
2588
3453
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2589
3454
|
ms.StoreMessageInfo(mi)
|
|
2590
3455
|
}
|
|
@@ -2596,7 +3461,7 @@ func (x *ExternalWebBetaAction) String() string {
|
|
|
2596
3461
|
func (*ExternalWebBetaAction) ProtoMessage() {}
|
|
2597
3462
|
|
|
2598
3463
|
func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
|
|
2599
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3464
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
|
|
2600
3465
|
if x != nil {
|
|
2601
3466
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2602
3467
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2609,7 +3474,7 @@ func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
|
|
|
2609
3474
|
|
|
2610
3475
|
// Deprecated: Use ExternalWebBetaAction.ProtoReflect.Descriptor instead.
|
|
2611
3476
|
func (*ExternalWebBetaAction) Descriptor() ([]byte, []int) {
|
|
2612
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3477
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
|
|
2613
3478
|
}
|
|
2614
3479
|
|
|
2615
3480
|
func (x *ExternalWebBetaAction) GetIsOptIn() bool {
|
|
@@ -2628,7 +3493,7 @@ type MarketingMessageBroadcastAction struct {
|
|
|
2628
3493
|
|
|
2629
3494
|
func (x *MarketingMessageBroadcastAction) Reset() {
|
|
2630
3495
|
*x = MarketingMessageBroadcastAction{}
|
|
2631
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3496
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
|
|
2632
3497
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2633
3498
|
ms.StoreMessageInfo(mi)
|
|
2634
3499
|
}
|
|
@@ -2640,7 +3505,7 @@ func (x *MarketingMessageBroadcastAction) String() string {
|
|
|
2640
3505
|
func (*MarketingMessageBroadcastAction) ProtoMessage() {}
|
|
2641
3506
|
|
|
2642
3507
|
func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
|
|
2643
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3508
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
|
|
2644
3509
|
if x != nil {
|
|
2645
3510
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2646
3511
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2653,7 +3518,7 @@ func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
|
|
|
2653
3518
|
|
|
2654
3519
|
// Deprecated: Use MarketingMessageBroadcastAction.ProtoReflect.Descriptor instead.
|
|
2655
3520
|
func (*MarketingMessageBroadcastAction) Descriptor() ([]byte, []int) {
|
|
2656
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3521
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
|
|
2657
3522
|
}
|
|
2658
3523
|
|
|
2659
3524
|
func (x *MarketingMessageBroadcastAction) GetRepliedCount() int32 {
|
|
@@ -2672,7 +3537,7 @@ type PnForLidChatAction struct {
|
|
|
2672
3537
|
|
|
2673
3538
|
func (x *PnForLidChatAction) Reset() {
|
|
2674
3539
|
*x = PnForLidChatAction{}
|
|
2675
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3540
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
|
|
2676
3541
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2677
3542
|
ms.StoreMessageInfo(mi)
|
|
2678
3543
|
}
|
|
@@ -2684,7 +3549,7 @@ func (x *PnForLidChatAction) String() string {
|
|
|
2684
3549
|
func (*PnForLidChatAction) ProtoMessage() {}
|
|
2685
3550
|
|
|
2686
3551
|
func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
|
|
2687
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3552
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
|
|
2688
3553
|
if x != nil {
|
|
2689
3554
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2690
3555
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2697,7 +3562,7 @@ func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
|
|
|
2697
3562
|
|
|
2698
3563
|
// Deprecated: Use PnForLidChatAction.ProtoReflect.Descriptor instead.
|
|
2699
3564
|
func (*PnForLidChatAction) Descriptor() ([]byte, []int) {
|
|
2700
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3565
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
|
|
2701
3566
|
}
|
|
2702
3567
|
|
|
2703
3568
|
func (x *PnForLidChatAction) GetPnJID() string {
|
|
@@ -2716,7 +3581,7 @@ type ChatAssignmentOpenedStatusAction struct {
|
|
|
2716
3581
|
|
|
2717
3582
|
func (x *ChatAssignmentOpenedStatusAction) Reset() {
|
|
2718
3583
|
*x = ChatAssignmentOpenedStatusAction{}
|
|
2719
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3584
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
|
|
2720
3585
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2721
3586
|
ms.StoreMessageInfo(mi)
|
|
2722
3587
|
}
|
|
@@ -2728,7 +3593,7 @@ func (x *ChatAssignmentOpenedStatusAction) String() string {
|
|
|
2728
3593
|
func (*ChatAssignmentOpenedStatusAction) ProtoMessage() {}
|
|
2729
3594
|
|
|
2730
3595
|
func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
|
|
2731
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3596
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
|
|
2732
3597
|
if x != nil {
|
|
2733
3598
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2734
3599
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2741,7 +3606,7 @@ func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
|
|
|
2741
3606
|
|
|
2742
3607
|
// Deprecated: Use ChatAssignmentOpenedStatusAction.ProtoReflect.Descriptor instead.
|
|
2743
3608
|
func (*ChatAssignmentOpenedStatusAction) Descriptor() ([]byte, []int) {
|
|
2744
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3609
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
|
|
2745
3610
|
}
|
|
2746
3611
|
|
|
2747
3612
|
func (x *ChatAssignmentOpenedStatusAction) GetChatOpened() bool {
|
|
@@ -2760,7 +3625,7 @@ type ChatAssignmentAction struct {
|
|
|
2760
3625
|
|
|
2761
3626
|
func (x *ChatAssignmentAction) Reset() {
|
|
2762
3627
|
*x = ChatAssignmentAction{}
|
|
2763
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3628
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
|
|
2764
3629
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2765
3630
|
ms.StoreMessageInfo(mi)
|
|
2766
3631
|
}
|
|
@@ -2772,7 +3637,7 @@ func (x *ChatAssignmentAction) String() string {
|
|
|
2772
3637
|
func (*ChatAssignmentAction) ProtoMessage() {}
|
|
2773
3638
|
|
|
2774
3639
|
func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
|
|
2775
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3640
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
|
|
2776
3641
|
if x != nil {
|
|
2777
3642
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2778
3643
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2785,7 +3650,7 @@ func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
|
|
|
2785
3650
|
|
|
2786
3651
|
// Deprecated: Use ChatAssignmentAction.ProtoReflect.Descriptor instead.
|
|
2787
3652
|
func (*ChatAssignmentAction) Descriptor() ([]byte, []int) {
|
|
2788
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3653
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
|
|
2789
3654
|
}
|
|
2790
3655
|
|
|
2791
3656
|
func (x *ChatAssignmentAction) GetDeviceAgentID() string {
|
|
@@ -2796,25 +3661,27 @@ func (x *ChatAssignmentAction) GetDeviceAgentID() string {
|
|
|
2796
3661
|
}
|
|
2797
3662
|
|
|
2798
3663
|
type StickerAction struct {
|
|
2799
|
-
state
|
|
2800
|
-
URL
|
|
2801
|
-
FileEncSHA256
|
|
2802
|
-
MediaKey
|
|
2803
|
-
Mimetype
|
|
2804
|
-
Height
|
|
2805
|
-
Width
|
|
2806
|
-
DirectPath
|
|
2807
|
-
FileLength
|
|
2808
|
-
IsFavorite
|
|
2809
|
-
DeviceIDHint
|
|
2810
|
-
IsLottie
|
|
2811
|
-
|
|
2812
|
-
|
|
3664
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
3665
|
+
URL *string `protobuf:"bytes,1,opt,name=URL" json:"URL,omitempty"`
|
|
3666
|
+
FileEncSHA256 []byte `protobuf:"bytes,2,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
|
|
3667
|
+
MediaKey []byte `protobuf:"bytes,3,opt,name=mediaKey" json:"mediaKey,omitempty"`
|
|
3668
|
+
Mimetype *string `protobuf:"bytes,4,opt,name=mimetype" json:"mimetype,omitempty"`
|
|
3669
|
+
Height *uint32 `protobuf:"varint,5,opt,name=height" json:"height,omitempty"`
|
|
3670
|
+
Width *uint32 `protobuf:"varint,6,opt,name=width" json:"width,omitempty"`
|
|
3671
|
+
DirectPath *string `protobuf:"bytes,7,opt,name=directPath" json:"directPath,omitempty"`
|
|
3672
|
+
FileLength *uint64 `protobuf:"varint,8,opt,name=fileLength" json:"fileLength,omitempty"`
|
|
3673
|
+
IsFavorite *bool `protobuf:"varint,9,opt,name=isFavorite" json:"isFavorite,omitempty"`
|
|
3674
|
+
DeviceIDHint *uint32 `protobuf:"varint,10,opt,name=deviceIDHint" json:"deviceIDHint,omitempty"`
|
|
3675
|
+
IsLottie *bool `protobuf:"varint,11,opt,name=isLottie" json:"isLottie,omitempty"`
|
|
3676
|
+
ImageHash *string `protobuf:"bytes,12,opt,name=imageHash" json:"imageHash,omitempty"`
|
|
3677
|
+
IsAvatarSticker *bool `protobuf:"varint,13,opt,name=isAvatarSticker" json:"isAvatarSticker,omitempty"`
|
|
3678
|
+
unknownFields protoimpl.UnknownFields
|
|
3679
|
+
sizeCache protoimpl.SizeCache
|
|
2813
3680
|
}
|
|
2814
3681
|
|
|
2815
3682
|
func (x *StickerAction) Reset() {
|
|
2816
3683
|
*x = StickerAction{}
|
|
2817
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3684
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
|
|
2818
3685
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2819
3686
|
ms.StoreMessageInfo(mi)
|
|
2820
3687
|
}
|
|
@@ -2826,7 +3693,7 @@ func (x *StickerAction) String() string {
|
|
|
2826
3693
|
func (*StickerAction) ProtoMessage() {}
|
|
2827
3694
|
|
|
2828
3695
|
func (x *StickerAction) ProtoReflect() protoreflect.Message {
|
|
2829
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3696
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
|
|
2830
3697
|
if x != nil {
|
|
2831
3698
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2832
3699
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2839,7 +3706,7 @@ func (x *StickerAction) ProtoReflect() protoreflect.Message {
|
|
|
2839
3706
|
|
|
2840
3707
|
// Deprecated: Use StickerAction.ProtoReflect.Descriptor instead.
|
|
2841
3708
|
func (*StickerAction) Descriptor() ([]byte, []int) {
|
|
2842
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3709
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
|
|
2843
3710
|
}
|
|
2844
3711
|
|
|
2845
3712
|
func (x *StickerAction) GetURL() string {
|
|
@@ -2919,6 +3786,20 @@ func (x *StickerAction) GetIsLottie() bool {
|
|
|
2919
3786
|
return false
|
|
2920
3787
|
}
|
|
2921
3788
|
|
|
3789
|
+
func (x *StickerAction) GetImageHash() string {
|
|
3790
|
+
if x != nil && x.ImageHash != nil {
|
|
3791
|
+
return *x.ImageHash
|
|
3792
|
+
}
|
|
3793
|
+
return ""
|
|
3794
|
+
}
|
|
3795
|
+
|
|
3796
|
+
func (x *StickerAction) GetIsAvatarSticker() bool {
|
|
3797
|
+
if x != nil && x.IsAvatarSticker != nil {
|
|
3798
|
+
return *x.IsAvatarSticker
|
|
3799
|
+
}
|
|
3800
|
+
return false
|
|
3801
|
+
}
|
|
3802
|
+
|
|
2922
3803
|
type RemoveRecentStickerAction struct {
|
|
2923
3804
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2924
3805
|
LastStickerSentTS *int64 `protobuf:"varint,1,opt,name=lastStickerSentTS" json:"lastStickerSentTS,omitempty"`
|
|
@@ -2928,7 +3809,7 @@ type RemoveRecentStickerAction struct {
|
|
|
2928
3809
|
|
|
2929
3810
|
func (x *RemoveRecentStickerAction) Reset() {
|
|
2930
3811
|
*x = RemoveRecentStickerAction{}
|
|
2931
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3812
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
|
|
2932
3813
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2933
3814
|
ms.StoreMessageInfo(mi)
|
|
2934
3815
|
}
|
|
@@ -2940,7 +3821,7 @@ func (x *RemoveRecentStickerAction) String() string {
|
|
|
2940
3821
|
func (*RemoveRecentStickerAction) ProtoMessage() {}
|
|
2941
3822
|
|
|
2942
3823
|
func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
|
|
2943
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3824
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
|
|
2944
3825
|
if x != nil {
|
|
2945
3826
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2946
3827
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2953,7 +3834,7 @@ func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
|
|
|
2953
3834
|
|
|
2954
3835
|
// Deprecated: Use RemoveRecentStickerAction.ProtoReflect.Descriptor instead.
|
|
2955
3836
|
func (*RemoveRecentStickerAction) Descriptor() ([]byte, []int) {
|
|
2956
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3837
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
|
|
2957
3838
|
}
|
|
2958
3839
|
|
|
2959
3840
|
func (x *RemoveRecentStickerAction) GetLastStickerSentTS() int64 {
|
|
@@ -2972,7 +3853,7 @@ type PrimaryVersionAction struct {
|
|
|
2972
3853
|
|
|
2973
3854
|
func (x *PrimaryVersionAction) Reset() {
|
|
2974
3855
|
*x = PrimaryVersionAction{}
|
|
2975
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3856
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
|
|
2976
3857
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2977
3858
|
ms.StoreMessageInfo(mi)
|
|
2978
3859
|
}
|
|
@@ -2984,7 +3865,7 @@ func (x *PrimaryVersionAction) String() string {
|
|
|
2984
3865
|
func (*PrimaryVersionAction) ProtoMessage() {}
|
|
2985
3866
|
|
|
2986
3867
|
func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
|
|
2987
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3868
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
|
|
2988
3869
|
if x != nil {
|
|
2989
3870
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2990
3871
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2997,7 +3878,7 @@ func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
|
|
|
2997
3878
|
|
|
2998
3879
|
// Deprecated: Use PrimaryVersionAction.ProtoReflect.Descriptor instead.
|
|
2999
3880
|
func (*PrimaryVersionAction) Descriptor() ([]byte, []int) {
|
|
3000
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3881
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
|
|
3001
3882
|
}
|
|
3002
3883
|
|
|
3003
3884
|
func (x *PrimaryVersionAction) GetVersion() string {
|
|
@@ -3016,7 +3897,7 @@ type NuxAction struct {
|
|
|
3016
3897
|
|
|
3017
3898
|
func (x *NuxAction) Reset() {
|
|
3018
3899
|
*x = NuxAction{}
|
|
3019
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3900
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
|
|
3020
3901
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3021
3902
|
ms.StoreMessageInfo(mi)
|
|
3022
3903
|
}
|
|
@@ -3028,7 +3909,7 @@ func (x *NuxAction) String() string {
|
|
|
3028
3909
|
func (*NuxAction) ProtoMessage() {}
|
|
3029
3910
|
|
|
3030
3911
|
func (x *NuxAction) ProtoReflect() protoreflect.Message {
|
|
3031
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3912
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
|
|
3032
3913
|
if x != nil {
|
|
3033
3914
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3034
3915
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3041,7 +3922,7 @@ func (x *NuxAction) ProtoReflect() protoreflect.Message {
|
|
|
3041
3922
|
|
|
3042
3923
|
// Deprecated: Use NuxAction.ProtoReflect.Descriptor instead.
|
|
3043
3924
|
func (*NuxAction) Descriptor() ([]byte, []int) {
|
|
3044
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3925
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
|
|
3045
3926
|
}
|
|
3046
3927
|
|
|
3047
3928
|
func (x *NuxAction) GetAcknowledged() bool {
|
|
@@ -3060,7 +3941,7 @@ type TimeFormatAction struct {
|
|
|
3060
3941
|
|
|
3061
3942
|
func (x *TimeFormatAction) Reset() {
|
|
3062
3943
|
*x = TimeFormatAction{}
|
|
3063
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3944
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
|
|
3064
3945
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3065
3946
|
ms.StoreMessageInfo(mi)
|
|
3066
3947
|
}
|
|
@@ -3072,7 +3953,7 @@ func (x *TimeFormatAction) String() string {
|
|
|
3072
3953
|
func (*TimeFormatAction) ProtoMessage() {}
|
|
3073
3954
|
|
|
3074
3955
|
func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
|
|
3075
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3956
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
|
|
3076
3957
|
if x != nil {
|
|
3077
3958
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3078
3959
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3085,7 +3966,7 @@ func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
|
|
|
3085
3966
|
|
|
3086
3967
|
// Deprecated: Use TimeFormatAction.ProtoReflect.Descriptor instead.
|
|
3087
3968
|
func (*TimeFormatAction) Descriptor() ([]byte, []int) {
|
|
3088
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3969
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
|
|
3089
3970
|
}
|
|
3090
3971
|
|
|
3091
3972
|
func (x *TimeFormatAction) GetIsTwentyFourHourFormatEnabled() bool {
|
|
@@ -3104,7 +3985,7 @@ type UserStatusMuteAction struct {
|
|
|
3104
3985
|
|
|
3105
3986
|
func (x *UserStatusMuteAction) Reset() {
|
|
3106
3987
|
*x = UserStatusMuteAction{}
|
|
3107
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3988
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
|
|
3108
3989
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3109
3990
|
ms.StoreMessageInfo(mi)
|
|
3110
3991
|
}
|
|
@@ -3116,7 +3997,7 @@ func (x *UserStatusMuteAction) String() string {
|
|
|
3116
3997
|
func (*UserStatusMuteAction) ProtoMessage() {}
|
|
3117
3998
|
|
|
3118
3999
|
func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
|
|
3119
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4000
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
|
|
3120
4001
|
if x != nil {
|
|
3121
4002
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3122
4003
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3129,7 +4010,7 @@ func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
|
|
|
3129
4010
|
|
|
3130
4011
|
// Deprecated: Use UserStatusMuteAction.ProtoReflect.Descriptor instead.
|
|
3131
4012
|
func (*UserStatusMuteAction) Descriptor() ([]byte, []int) {
|
|
3132
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4013
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
|
|
3133
4014
|
}
|
|
3134
4015
|
|
|
3135
4016
|
func (x *UserStatusMuteAction) GetMuted() bool {
|
|
@@ -3150,7 +4031,7 @@ type SubscriptionAction struct {
|
|
|
3150
4031
|
|
|
3151
4032
|
func (x *SubscriptionAction) Reset() {
|
|
3152
4033
|
*x = SubscriptionAction{}
|
|
3153
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4034
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
|
|
3154
4035
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3155
4036
|
ms.StoreMessageInfo(mi)
|
|
3156
4037
|
}
|
|
@@ -3162,7 +4043,7 @@ func (x *SubscriptionAction) String() string {
|
|
|
3162
4043
|
func (*SubscriptionAction) ProtoMessage() {}
|
|
3163
4044
|
|
|
3164
4045
|
func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
|
|
3165
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4046
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
|
|
3166
4047
|
if x != nil {
|
|
3167
4048
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3168
4049
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3175,7 +4056,7 @@ func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
|
|
|
3175
4056
|
|
|
3176
4057
|
// Deprecated: Use SubscriptionAction.ProtoReflect.Descriptor instead.
|
|
3177
4058
|
func (*SubscriptionAction) Descriptor() ([]byte, []int) {
|
|
3178
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4059
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
|
|
3179
4060
|
}
|
|
3180
4061
|
|
|
3181
4062
|
func (x *SubscriptionAction) GetIsDeactivated() bool {
|
|
@@ -3210,7 +4091,7 @@ type AgentAction struct {
|
|
|
3210
4091
|
|
|
3211
4092
|
func (x *AgentAction) Reset() {
|
|
3212
4093
|
*x = AgentAction{}
|
|
3213
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4094
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
|
|
3214
4095
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3215
4096
|
ms.StoreMessageInfo(mi)
|
|
3216
4097
|
}
|
|
@@ -3222,7 +4103,7 @@ func (x *AgentAction) String() string {
|
|
|
3222
4103
|
func (*AgentAction) ProtoMessage() {}
|
|
3223
4104
|
|
|
3224
4105
|
func (x *AgentAction) ProtoReflect() protoreflect.Message {
|
|
3225
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4106
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
|
|
3226
4107
|
if x != nil {
|
|
3227
4108
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3228
4109
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3235,7 +4116,7 @@ func (x *AgentAction) ProtoReflect() protoreflect.Message {
|
|
|
3235
4116
|
|
|
3236
4117
|
// Deprecated: Use AgentAction.ProtoReflect.Descriptor instead.
|
|
3237
4118
|
func (*AgentAction) Descriptor() ([]byte, []int) {
|
|
3238
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4119
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
|
|
3239
4120
|
}
|
|
3240
4121
|
|
|
3241
4122
|
func (x *AgentAction) GetName() string {
|
|
@@ -3268,7 +4149,7 @@ type AndroidUnsupportedActions struct {
|
|
|
3268
4149
|
|
|
3269
4150
|
func (x *AndroidUnsupportedActions) Reset() {
|
|
3270
4151
|
*x = AndroidUnsupportedActions{}
|
|
3271
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4152
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
|
|
3272
4153
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3273
4154
|
ms.StoreMessageInfo(mi)
|
|
3274
4155
|
}
|
|
@@ -3280,7 +4161,7 @@ func (x *AndroidUnsupportedActions) String() string {
|
|
|
3280
4161
|
func (*AndroidUnsupportedActions) ProtoMessage() {}
|
|
3281
4162
|
|
|
3282
4163
|
func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
|
|
3283
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4164
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
|
|
3284
4165
|
if x != nil {
|
|
3285
4166
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3286
4167
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3293,7 +4174,7 @@ func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
|
|
|
3293
4174
|
|
|
3294
4175
|
// Deprecated: Use AndroidUnsupportedActions.ProtoReflect.Descriptor instead.
|
|
3295
4176
|
func (*AndroidUnsupportedActions) Descriptor() ([]byte, []int) {
|
|
3296
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4177
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
|
|
3297
4178
|
}
|
|
3298
4179
|
|
|
3299
4180
|
func (x *AndroidUnsupportedActions) GetAllowed() bool {
|
|
@@ -3312,7 +4193,7 @@ type PrimaryFeature struct {
|
|
|
3312
4193
|
|
|
3313
4194
|
func (x *PrimaryFeature) Reset() {
|
|
3314
4195
|
*x = PrimaryFeature{}
|
|
3315
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4196
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
|
|
3316
4197
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3317
4198
|
ms.StoreMessageInfo(mi)
|
|
3318
4199
|
}
|
|
@@ -3324,7 +4205,7 @@ func (x *PrimaryFeature) String() string {
|
|
|
3324
4205
|
func (*PrimaryFeature) ProtoMessage() {}
|
|
3325
4206
|
|
|
3326
4207
|
func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
|
|
3327
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4208
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
|
|
3328
4209
|
if x != nil {
|
|
3329
4210
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3330
4211
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3337,7 +4218,7 @@ func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
|
|
|
3337
4218
|
|
|
3338
4219
|
// Deprecated: Use PrimaryFeature.ProtoReflect.Descriptor instead.
|
|
3339
4220
|
func (*PrimaryFeature) Descriptor() ([]byte, []int) {
|
|
3340
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4221
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
|
|
3341
4222
|
}
|
|
3342
4223
|
|
|
3343
4224
|
func (x *PrimaryFeature) GetFlags() []string {
|
|
@@ -3356,7 +4237,7 @@ type KeyExpiration struct {
|
|
|
3356
4237
|
|
|
3357
4238
|
func (x *KeyExpiration) Reset() {
|
|
3358
4239
|
*x = KeyExpiration{}
|
|
3359
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4240
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
|
|
3360
4241
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3361
4242
|
ms.StoreMessageInfo(mi)
|
|
3362
4243
|
}
|
|
@@ -3368,7 +4249,7 @@ func (x *KeyExpiration) String() string {
|
|
|
3368
4249
|
func (*KeyExpiration) ProtoMessage() {}
|
|
3369
4250
|
|
|
3370
4251
|
func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
|
|
3371
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4252
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
|
|
3372
4253
|
if x != nil {
|
|
3373
4254
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3374
4255
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3381,7 +4262,7 @@ func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
|
|
|
3381
4262
|
|
|
3382
4263
|
// Deprecated: Use KeyExpiration.ProtoReflect.Descriptor instead.
|
|
3383
4264
|
func (*KeyExpiration) Descriptor() ([]byte, []int) {
|
|
3384
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4265
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
|
|
3385
4266
|
}
|
|
3386
4267
|
|
|
3387
4268
|
func (x *KeyExpiration) GetExpiredKeyEpoch() int32 {
|
|
@@ -3401,7 +4282,7 @@ type SyncActionMessage struct {
|
|
|
3401
4282
|
|
|
3402
4283
|
func (x *SyncActionMessage) Reset() {
|
|
3403
4284
|
*x = SyncActionMessage{}
|
|
3404
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4285
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
|
|
3405
4286
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3406
4287
|
ms.StoreMessageInfo(mi)
|
|
3407
4288
|
}
|
|
@@ -3413,7 +4294,7 @@ func (x *SyncActionMessage) String() string {
|
|
|
3413
4294
|
func (*SyncActionMessage) ProtoMessage() {}
|
|
3414
4295
|
|
|
3415
4296
|
func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
|
|
3416
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4297
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
|
|
3417
4298
|
if x != nil {
|
|
3418
4299
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3419
4300
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3426,7 +4307,7 @@ func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
|
|
|
3426
4307
|
|
|
3427
4308
|
// Deprecated: Use SyncActionMessage.ProtoReflect.Descriptor instead.
|
|
3428
4309
|
func (*SyncActionMessage) Descriptor() ([]byte, []int) {
|
|
3429
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4310
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
|
|
3430
4311
|
}
|
|
3431
4312
|
|
|
3432
4313
|
func (x *SyncActionMessage) GetKey() *waCommon.MessageKey {
|
|
@@ -3454,7 +4335,7 @@ type SyncActionMessageRange struct {
|
|
|
3454
4335
|
|
|
3455
4336
|
func (x *SyncActionMessageRange) Reset() {
|
|
3456
4337
|
*x = SyncActionMessageRange{}
|
|
3457
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4338
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
|
|
3458
4339
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3459
4340
|
ms.StoreMessageInfo(mi)
|
|
3460
4341
|
}
|
|
@@ -3466,7 +4347,7 @@ func (x *SyncActionMessageRange) String() string {
|
|
|
3466
4347
|
func (*SyncActionMessageRange) ProtoMessage() {}
|
|
3467
4348
|
|
|
3468
4349
|
func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
|
|
3469
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4350
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
|
|
3470
4351
|
if x != nil {
|
|
3471
4352
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3472
4353
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3479,7 +4360,7 @@ func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
|
|
|
3479
4360
|
|
|
3480
4361
|
// Deprecated: Use SyncActionMessageRange.ProtoReflect.Descriptor instead.
|
|
3481
4362
|
func (*SyncActionMessageRange) Descriptor() ([]byte, []int) {
|
|
3482
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4363
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
|
|
3483
4364
|
}
|
|
3484
4365
|
|
|
3485
4366
|
func (x *SyncActionMessageRange) GetLastMessageTimestamp() int64 {
|
|
@@ -3512,7 +4393,7 @@ type UnarchiveChatsSetting struct {
|
|
|
3512
4393
|
|
|
3513
4394
|
func (x *UnarchiveChatsSetting) Reset() {
|
|
3514
4395
|
*x = UnarchiveChatsSetting{}
|
|
3515
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4396
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
|
|
3516
4397
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3517
4398
|
ms.StoreMessageInfo(mi)
|
|
3518
4399
|
}
|
|
@@ -3524,7 +4405,7 @@ func (x *UnarchiveChatsSetting) String() string {
|
|
|
3524
4405
|
func (*UnarchiveChatsSetting) ProtoMessage() {}
|
|
3525
4406
|
|
|
3526
4407
|
func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
|
|
3527
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4408
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
|
|
3528
4409
|
if x != nil {
|
|
3529
4410
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3530
4411
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3537,7 +4418,7 @@ func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
|
|
|
3537
4418
|
|
|
3538
4419
|
// Deprecated: Use UnarchiveChatsSetting.ProtoReflect.Descriptor instead.
|
|
3539
4420
|
func (*UnarchiveChatsSetting) Descriptor() ([]byte, []int) {
|
|
3540
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4421
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
|
|
3541
4422
|
}
|
|
3542
4423
|
|
|
3543
4424
|
func (x *UnarchiveChatsSetting) GetUnarchiveChats() bool {
|
|
@@ -3556,7 +4437,7 @@ type DeleteChatAction struct {
|
|
|
3556
4437
|
|
|
3557
4438
|
func (x *DeleteChatAction) Reset() {
|
|
3558
4439
|
*x = DeleteChatAction{}
|
|
3559
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4440
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
|
|
3560
4441
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3561
4442
|
ms.StoreMessageInfo(mi)
|
|
3562
4443
|
}
|
|
@@ -3568,7 +4449,7 @@ func (x *DeleteChatAction) String() string {
|
|
|
3568
4449
|
func (*DeleteChatAction) ProtoMessage() {}
|
|
3569
4450
|
|
|
3570
4451
|
func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
|
|
3571
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4452
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
|
|
3572
4453
|
if x != nil {
|
|
3573
4454
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3574
4455
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3581,7 +4462,7 @@ func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
|
|
|
3581
4462
|
|
|
3582
4463
|
// Deprecated: Use DeleteChatAction.ProtoReflect.Descriptor instead.
|
|
3583
4464
|
func (*DeleteChatAction) Descriptor() ([]byte, []int) {
|
|
3584
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4465
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
|
|
3585
4466
|
}
|
|
3586
4467
|
|
|
3587
4468
|
func (x *DeleteChatAction) GetMessageRange() *SyncActionMessageRange {
|
|
@@ -3600,7 +4481,7 @@ type ClearChatAction struct {
|
|
|
3600
4481
|
|
|
3601
4482
|
func (x *ClearChatAction) Reset() {
|
|
3602
4483
|
*x = ClearChatAction{}
|
|
3603
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4484
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
|
|
3604
4485
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3605
4486
|
ms.StoreMessageInfo(mi)
|
|
3606
4487
|
}
|
|
@@ -3612,7 +4493,7 @@ func (x *ClearChatAction) String() string {
|
|
|
3612
4493
|
func (*ClearChatAction) ProtoMessage() {}
|
|
3613
4494
|
|
|
3614
4495
|
func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
|
|
3615
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4496
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
|
|
3616
4497
|
if x != nil {
|
|
3617
4498
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3618
4499
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3625,7 +4506,7 @@ func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
|
|
|
3625
4506
|
|
|
3626
4507
|
// Deprecated: Use ClearChatAction.ProtoReflect.Descriptor instead.
|
|
3627
4508
|
func (*ClearChatAction) Descriptor() ([]byte, []int) {
|
|
3628
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4509
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
|
|
3629
4510
|
}
|
|
3630
4511
|
|
|
3631
4512
|
func (x *ClearChatAction) GetMessageRange() *SyncActionMessageRange {
|
|
@@ -3645,7 +4526,7 @@ type MarkChatAsReadAction struct {
|
|
|
3645
4526
|
|
|
3646
4527
|
func (x *MarkChatAsReadAction) Reset() {
|
|
3647
4528
|
*x = MarkChatAsReadAction{}
|
|
3648
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4529
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
|
|
3649
4530
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3650
4531
|
ms.StoreMessageInfo(mi)
|
|
3651
4532
|
}
|
|
@@ -3657,7 +4538,7 @@ func (x *MarkChatAsReadAction) String() string {
|
|
|
3657
4538
|
func (*MarkChatAsReadAction) ProtoMessage() {}
|
|
3658
4539
|
|
|
3659
4540
|
func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
|
|
3660
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4541
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
|
|
3661
4542
|
if x != nil {
|
|
3662
4543
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3663
4544
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3670,7 +4551,7 @@ func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
|
|
|
3670
4551
|
|
|
3671
4552
|
// Deprecated: Use MarkChatAsReadAction.ProtoReflect.Descriptor instead.
|
|
3672
4553
|
func (*MarkChatAsReadAction) Descriptor() ([]byte, []int) {
|
|
3673
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4554
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
|
|
3674
4555
|
}
|
|
3675
4556
|
|
|
3676
4557
|
func (x *MarkChatAsReadAction) GetRead() bool {
|
|
@@ -3697,7 +4578,7 @@ type DeleteMessageForMeAction struct {
|
|
|
3697
4578
|
|
|
3698
4579
|
func (x *DeleteMessageForMeAction) Reset() {
|
|
3699
4580
|
*x = DeleteMessageForMeAction{}
|
|
3700
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4581
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
|
|
3701
4582
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3702
4583
|
ms.StoreMessageInfo(mi)
|
|
3703
4584
|
}
|
|
@@ -3709,7 +4590,7 @@ func (x *DeleteMessageForMeAction) String() string {
|
|
|
3709
4590
|
func (*DeleteMessageForMeAction) ProtoMessage() {}
|
|
3710
4591
|
|
|
3711
4592
|
func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
|
|
3712
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4593
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
|
|
3713
4594
|
if x != nil {
|
|
3714
4595
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3715
4596
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3722,7 +4603,7 @@ func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
|
|
|
3722
4603
|
|
|
3723
4604
|
// Deprecated: Use DeleteMessageForMeAction.ProtoReflect.Descriptor instead.
|
|
3724
4605
|
func (*DeleteMessageForMeAction) Descriptor() ([]byte, []int) {
|
|
3725
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4606
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
|
|
3726
4607
|
}
|
|
3727
4608
|
|
|
3728
4609
|
func (x *DeleteMessageForMeAction) GetDeleteMedia() bool {
|
|
@@ -3749,7 +4630,7 @@ type ArchiveChatAction struct {
|
|
|
3749
4630
|
|
|
3750
4631
|
func (x *ArchiveChatAction) Reset() {
|
|
3751
4632
|
*x = ArchiveChatAction{}
|
|
3752
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4633
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
|
|
3753
4634
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3754
4635
|
ms.StoreMessageInfo(mi)
|
|
3755
4636
|
}
|
|
@@ -3761,7 +4642,7 @@ func (x *ArchiveChatAction) String() string {
|
|
|
3761
4642
|
func (*ArchiveChatAction) ProtoMessage() {}
|
|
3762
4643
|
|
|
3763
4644
|
func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
|
|
3764
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4645
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
|
|
3765
4646
|
if x != nil {
|
|
3766
4647
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3767
4648
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3774,7 +4655,7 @@ func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
|
|
|
3774
4655
|
|
|
3775
4656
|
// Deprecated: Use ArchiveChatAction.ProtoReflect.Descriptor instead.
|
|
3776
4657
|
func (*ArchiveChatAction) Descriptor() ([]byte, []int) {
|
|
3777
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4658
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{59}
|
|
3778
4659
|
}
|
|
3779
4660
|
|
|
3780
4661
|
func (x *ArchiveChatAction) GetArchived() bool {
|
|
@@ -3800,7 +4681,7 @@ type RecentEmojiWeightsAction struct {
|
|
|
3800
4681
|
|
|
3801
4682
|
func (x *RecentEmojiWeightsAction) Reset() {
|
|
3802
4683
|
*x = RecentEmojiWeightsAction{}
|
|
3803
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4684
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
|
|
3804
4685
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3805
4686
|
ms.StoreMessageInfo(mi)
|
|
3806
4687
|
}
|
|
@@ -3812,7 +4693,7 @@ func (x *RecentEmojiWeightsAction) String() string {
|
|
|
3812
4693
|
func (*RecentEmojiWeightsAction) ProtoMessage() {}
|
|
3813
4694
|
|
|
3814
4695
|
func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
|
|
3815
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4696
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
|
|
3816
4697
|
if x != nil {
|
|
3817
4698
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3818
4699
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3825,7 +4706,7 @@ func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
|
|
|
3825
4706
|
|
|
3826
4707
|
// Deprecated: Use RecentEmojiWeightsAction.ProtoReflect.Descriptor instead.
|
|
3827
4708
|
func (*RecentEmojiWeightsAction) Descriptor() ([]byte, []int) {
|
|
3828
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4709
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{60}
|
|
3829
4710
|
}
|
|
3830
4711
|
|
|
3831
4712
|
func (x *RecentEmojiWeightsAction) GetWeights() []*RecentEmojiWeight {
|
|
@@ -3844,7 +4725,7 @@ type LabelAssociationAction struct {
|
|
|
3844
4725
|
|
|
3845
4726
|
func (x *LabelAssociationAction) Reset() {
|
|
3846
4727
|
*x = LabelAssociationAction{}
|
|
3847
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4728
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
|
|
3848
4729
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3849
4730
|
ms.StoreMessageInfo(mi)
|
|
3850
4731
|
}
|
|
@@ -3856,7 +4737,7 @@ func (x *LabelAssociationAction) String() string {
|
|
|
3856
4737
|
func (*LabelAssociationAction) ProtoMessage() {}
|
|
3857
4738
|
|
|
3858
4739
|
func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
|
|
3859
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4740
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
|
|
3860
4741
|
if x != nil {
|
|
3861
4742
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3862
4743
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3869,7 +4750,7 @@ func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
|
|
|
3869
4750
|
|
|
3870
4751
|
// Deprecated: Use LabelAssociationAction.ProtoReflect.Descriptor instead.
|
|
3871
4752
|
func (*LabelAssociationAction) Descriptor() ([]byte, []int) {
|
|
3872
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4753
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{61}
|
|
3873
4754
|
}
|
|
3874
4755
|
|
|
3875
4756
|
func (x *LabelAssociationAction) GetLabeled() bool {
|
|
@@ -3892,7 +4773,7 @@ type QuickReplyAction struct {
|
|
|
3892
4773
|
|
|
3893
4774
|
func (x *QuickReplyAction) Reset() {
|
|
3894
4775
|
*x = QuickReplyAction{}
|
|
3895
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4776
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
|
|
3896
4777
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3897
4778
|
ms.StoreMessageInfo(mi)
|
|
3898
4779
|
}
|
|
@@ -3904,7 +4785,7 @@ func (x *QuickReplyAction) String() string {
|
|
|
3904
4785
|
func (*QuickReplyAction) ProtoMessage() {}
|
|
3905
4786
|
|
|
3906
4787
|
func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
|
|
3907
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4788
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
|
|
3908
4789
|
if x != nil {
|
|
3909
4790
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3910
4791
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3917,7 +4798,7 @@ func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
|
|
|
3917
4798
|
|
|
3918
4799
|
// Deprecated: Use QuickReplyAction.ProtoReflect.Descriptor instead.
|
|
3919
4800
|
func (*QuickReplyAction) Descriptor() ([]byte, []int) {
|
|
3920
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4801
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{62}
|
|
3921
4802
|
}
|
|
3922
4803
|
|
|
3923
4804
|
func (x *QuickReplyAction) GetShortcut() string {
|
|
@@ -3964,7 +4845,7 @@ type LocaleSetting struct {
|
|
|
3964
4845
|
|
|
3965
4846
|
func (x *LocaleSetting) Reset() {
|
|
3966
4847
|
*x = LocaleSetting{}
|
|
3967
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4848
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
|
|
3968
4849
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3969
4850
|
ms.StoreMessageInfo(mi)
|
|
3970
4851
|
}
|
|
@@ -3976,7 +4857,7 @@ func (x *LocaleSetting) String() string {
|
|
|
3976
4857
|
func (*LocaleSetting) ProtoMessage() {}
|
|
3977
4858
|
|
|
3978
4859
|
func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
|
|
3979
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4860
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
|
|
3980
4861
|
if x != nil {
|
|
3981
4862
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3982
4863
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3989,7 +4870,7 @@ func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
|
|
|
3989
4870
|
|
|
3990
4871
|
// Deprecated: Use LocaleSetting.ProtoReflect.Descriptor instead.
|
|
3991
4872
|
func (*LocaleSetting) Descriptor() ([]byte, []int) {
|
|
3992
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4873
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{63}
|
|
3993
4874
|
}
|
|
3994
4875
|
|
|
3995
4876
|
func (x *LocaleSetting) GetLocale() string {
|
|
@@ -4008,7 +4889,7 @@ type PushNameSetting struct {
|
|
|
4008
4889
|
|
|
4009
4890
|
func (x *PushNameSetting) Reset() {
|
|
4010
4891
|
*x = PushNameSetting{}
|
|
4011
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4892
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
|
|
4012
4893
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4013
4894
|
ms.StoreMessageInfo(mi)
|
|
4014
4895
|
}
|
|
@@ -4020,7 +4901,7 @@ func (x *PushNameSetting) String() string {
|
|
|
4020
4901
|
func (*PushNameSetting) ProtoMessage() {}
|
|
4021
4902
|
|
|
4022
4903
|
func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
|
|
4023
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4904
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
|
|
4024
4905
|
if x != nil {
|
|
4025
4906
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4026
4907
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4033,7 +4914,7 @@ func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
|
|
|
4033
4914
|
|
|
4034
4915
|
// Deprecated: Use PushNameSetting.ProtoReflect.Descriptor instead.
|
|
4035
4916
|
func (*PushNameSetting) Descriptor() ([]byte, []int) {
|
|
4036
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4917
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{64}
|
|
4037
4918
|
}
|
|
4038
4919
|
|
|
4039
4920
|
func (x *PushNameSetting) GetName() string {
|
|
@@ -4052,7 +4933,7 @@ type SecurityNotificationSetting struct {
|
|
|
4052
4933
|
|
|
4053
4934
|
func (x *SecurityNotificationSetting) Reset() {
|
|
4054
4935
|
*x = SecurityNotificationSetting{}
|
|
4055
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4936
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
|
|
4056
4937
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4057
4938
|
ms.StoreMessageInfo(mi)
|
|
4058
4939
|
}
|
|
@@ -4064,7 +4945,7 @@ func (x *SecurityNotificationSetting) String() string {
|
|
|
4064
4945
|
func (*SecurityNotificationSetting) ProtoMessage() {}
|
|
4065
4946
|
|
|
4066
4947
|
func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
|
|
4067
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4948
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
|
|
4068
4949
|
if x != nil {
|
|
4069
4950
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4070
4951
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4077,7 +4958,7 @@ func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
|
|
|
4077
4958
|
|
|
4078
4959
|
// Deprecated: Use SecurityNotificationSetting.ProtoReflect.Descriptor instead.
|
|
4079
4960
|
func (*SecurityNotificationSetting) Descriptor() ([]byte, []int) {
|
|
4080
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4961
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{65}
|
|
4081
4962
|
}
|
|
4082
4963
|
|
|
4083
4964
|
func (x *SecurityNotificationSetting) GetShowNotification() bool {
|
|
@@ -4096,7 +4977,7 @@ type PinAction struct {
|
|
|
4096
4977
|
|
|
4097
4978
|
func (x *PinAction) Reset() {
|
|
4098
4979
|
*x = PinAction{}
|
|
4099
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4980
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
|
|
4100
4981
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4101
4982
|
ms.StoreMessageInfo(mi)
|
|
4102
4983
|
}
|
|
@@ -4108,7 +4989,7 @@ func (x *PinAction) String() string {
|
|
|
4108
4989
|
func (*PinAction) ProtoMessage() {}
|
|
4109
4990
|
|
|
4110
4991
|
func (x *PinAction) ProtoReflect() protoreflect.Message {
|
|
4111
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4992
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
|
|
4112
4993
|
if x != nil {
|
|
4113
4994
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4114
4995
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4121,7 +5002,7 @@ func (x *PinAction) ProtoReflect() protoreflect.Message {
|
|
|
4121
5002
|
|
|
4122
5003
|
// Deprecated: Use PinAction.ProtoReflect.Descriptor instead.
|
|
4123
5004
|
func (*PinAction) Descriptor() ([]byte, []int) {
|
|
4124
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5005
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{66}
|
|
4125
5006
|
}
|
|
4126
5007
|
|
|
4127
5008
|
func (x *PinAction) GetPinned() bool {
|
|
@@ -4142,7 +5023,7 @@ type MuteAction struct {
|
|
|
4142
5023
|
|
|
4143
5024
|
func (x *MuteAction) Reset() {
|
|
4144
5025
|
*x = MuteAction{}
|
|
4145
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5026
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
|
|
4146
5027
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4147
5028
|
ms.StoreMessageInfo(mi)
|
|
4148
5029
|
}
|
|
@@ -4154,7 +5035,7 @@ func (x *MuteAction) String() string {
|
|
|
4154
5035
|
func (*MuteAction) ProtoMessage() {}
|
|
4155
5036
|
|
|
4156
5037
|
func (x *MuteAction) ProtoReflect() protoreflect.Message {
|
|
4157
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5038
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
|
|
4158
5039
|
if x != nil {
|
|
4159
5040
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4160
5041
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4167,7 +5048,7 @@ func (x *MuteAction) ProtoReflect() protoreflect.Message {
|
|
|
4167
5048
|
|
|
4168
5049
|
// Deprecated: Use MuteAction.ProtoReflect.Descriptor instead.
|
|
4169
5050
|
func (*MuteAction) Descriptor() ([]byte, []int) {
|
|
4170
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5051
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{67}
|
|
4171
5052
|
}
|
|
4172
5053
|
|
|
4173
5054
|
func (x *MuteAction) GetMuted() bool {
|
|
@@ -4197,13 +5078,15 @@ type ContactAction struct {
|
|
|
4197
5078
|
FirstName *string `protobuf:"bytes,2,opt,name=firstName" json:"firstName,omitempty"`
|
|
4198
5079
|
LidJID *string `protobuf:"bytes,3,opt,name=lidJID" json:"lidJID,omitempty"`
|
|
4199
5080
|
SaveOnPrimaryAddressbook *bool `protobuf:"varint,4,opt,name=saveOnPrimaryAddressbook" json:"saveOnPrimaryAddressbook,omitempty"`
|
|
5081
|
+
PnJID *string `protobuf:"bytes,5,opt,name=pnJID" json:"pnJID,omitempty"`
|
|
5082
|
+
Username *string `protobuf:"bytes,6,opt,name=username" json:"username,omitempty"`
|
|
4200
5083
|
unknownFields protoimpl.UnknownFields
|
|
4201
5084
|
sizeCache protoimpl.SizeCache
|
|
4202
5085
|
}
|
|
4203
5086
|
|
|
4204
5087
|
func (x *ContactAction) Reset() {
|
|
4205
5088
|
*x = ContactAction{}
|
|
4206
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5089
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[68]
|
|
4207
5090
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4208
5091
|
ms.StoreMessageInfo(mi)
|
|
4209
5092
|
}
|
|
@@ -4215,7 +5098,7 @@ func (x *ContactAction) String() string {
|
|
|
4215
5098
|
func (*ContactAction) ProtoMessage() {}
|
|
4216
5099
|
|
|
4217
5100
|
func (x *ContactAction) ProtoReflect() protoreflect.Message {
|
|
4218
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5101
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[68]
|
|
4219
5102
|
if x != nil {
|
|
4220
5103
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4221
5104
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4228,7 +5111,7 @@ func (x *ContactAction) ProtoReflect() protoreflect.Message {
|
|
|
4228
5111
|
|
|
4229
5112
|
// Deprecated: Use ContactAction.ProtoReflect.Descriptor instead.
|
|
4230
5113
|
func (*ContactAction) Descriptor() ([]byte, []int) {
|
|
4231
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5114
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{68}
|
|
4232
5115
|
}
|
|
4233
5116
|
|
|
4234
5117
|
func (x *ContactAction) GetFullName() string {
|
|
@@ -4259,6 +5142,20 @@ func (x *ContactAction) GetSaveOnPrimaryAddressbook() bool {
|
|
|
4259
5142
|
return false
|
|
4260
5143
|
}
|
|
4261
5144
|
|
|
5145
|
+
func (x *ContactAction) GetPnJID() string {
|
|
5146
|
+
if x != nil && x.PnJID != nil {
|
|
5147
|
+
return *x.PnJID
|
|
5148
|
+
}
|
|
5149
|
+
return ""
|
|
5150
|
+
}
|
|
5151
|
+
|
|
5152
|
+
func (x *ContactAction) GetUsername() string {
|
|
5153
|
+
if x != nil && x.Username != nil {
|
|
5154
|
+
return *x.Username
|
|
5155
|
+
}
|
|
5156
|
+
return ""
|
|
5157
|
+
}
|
|
5158
|
+
|
|
4262
5159
|
type StarAction struct {
|
|
4263
5160
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
4264
5161
|
Starred *bool `protobuf:"varint,1,opt,name=starred" json:"starred,omitempty"`
|
|
@@ -4268,7 +5165,7 @@ type StarAction struct {
|
|
|
4268
5165
|
|
|
4269
5166
|
func (x *StarAction) Reset() {
|
|
4270
5167
|
*x = StarAction{}
|
|
4271
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5168
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[69]
|
|
4272
5169
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4273
5170
|
ms.StoreMessageInfo(mi)
|
|
4274
5171
|
}
|
|
@@ -4280,7 +5177,7 @@ func (x *StarAction) String() string {
|
|
|
4280
5177
|
func (*StarAction) ProtoMessage() {}
|
|
4281
5178
|
|
|
4282
5179
|
func (x *StarAction) ProtoReflect() protoreflect.Message {
|
|
4283
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5180
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[69]
|
|
4284
5181
|
if x != nil {
|
|
4285
5182
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4286
5183
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4293,7 +5190,7 @@ func (x *StarAction) ProtoReflect() protoreflect.Message {
|
|
|
4293
5190
|
|
|
4294
5191
|
// Deprecated: Use StarAction.ProtoReflect.Descriptor instead.
|
|
4295
5192
|
func (*StarAction) Descriptor() ([]byte, []int) {
|
|
4296
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5193
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{69}
|
|
4297
5194
|
}
|
|
4298
5195
|
|
|
4299
5196
|
func (x *StarAction) GetStarred() bool {
|
|
@@ -4315,7 +5212,7 @@ type SyncActionData struct {
|
|
|
4315
5212
|
|
|
4316
5213
|
func (x *SyncActionData) Reset() {
|
|
4317
5214
|
*x = SyncActionData{}
|
|
4318
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5215
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[70]
|
|
4319
5216
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4320
5217
|
ms.StoreMessageInfo(mi)
|
|
4321
5218
|
}
|
|
@@ -4327,7 +5224,7 @@ func (x *SyncActionData) String() string {
|
|
|
4327
5224
|
func (*SyncActionData) ProtoMessage() {}
|
|
4328
5225
|
|
|
4329
5226
|
func (x *SyncActionData) ProtoReflect() protoreflect.Message {
|
|
4330
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5227
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[70]
|
|
4331
5228
|
if x != nil {
|
|
4332
5229
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4333
5230
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4340,7 +5237,7 @@ func (x *SyncActionData) ProtoReflect() protoreflect.Message {
|
|
|
4340
5237
|
|
|
4341
5238
|
// Deprecated: Use SyncActionData.ProtoReflect.Descriptor instead.
|
|
4342
5239
|
func (*SyncActionData) Descriptor() ([]byte, []int) {
|
|
4343
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5240
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{70}
|
|
4344
5241
|
}
|
|
4345
5242
|
|
|
4346
5243
|
func (x *SyncActionData) GetIndex() []byte {
|
|
@@ -4381,7 +5278,7 @@ type CallLogRecord_ParticipantInfo struct {
|
|
|
4381
5278
|
|
|
4382
5279
|
func (x *CallLogRecord_ParticipantInfo) Reset() {
|
|
4383
5280
|
*x = CallLogRecord_ParticipantInfo{}
|
|
4384
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5281
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[71]
|
|
4385
5282
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4386
5283
|
ms.StoreMessageInfo(mi)
|
|
4387
5284
|
}
|
|
@@ -4393,7 +5290,7 @@ func (x *CallLogRecord_ParticipantInfo) String() string {
|
|
|
4393
5290
|
func (*CallLogRecord_ParticipantInfo) ProtoMessage() {}
|
|
4394
5291
|
|
|
4395
5292
|
func (x *CallLogRecord_ParticipantInfo) ProtoReflect() protoreflect.Message {
|
|
4396
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5293
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[71]
|
|
4397
5294
|
if x != nil {
|
|
4398
5295
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4399
5296
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4432,7 +5329,7 @@ type FavoritesAction_Favorite struct {
|
|
|
4432
5329
|
|
|
4433
5330
|
func (x *FavoritesAction_Favorite) Reset() {
|
|
4434
5331
|
*x = FavoritesAction_Favorite{}
|
|
4435
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5332
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[72]
|
|
4436
5333
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4437
5334
|
ms.StoreMessageInfo(mi)
|
|
4438
5335
|
}
|
|
@@ -4444,7 +5341,7 @@ func (x *FavoritesAction_Favorite) String() string {
|
|
|
4444
5341
|
func (*FavoritesAction_Favorite) ProtoMessage() {}
|
|
4445
5342
|
|
|
4446
5343
|
func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
|
|
4447
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5344
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[72]
|
|
4448
5345
|
if x != nil {
|
|
4449
5346
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4450
5347
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4457,7 +5354,7 @@ func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
|
|
|
4457
5354
|
|
|
4458
5355
|
// Deprecated: Use FavoritesAction_Favorite.ProtoReflect.Descriptor instead.
|
|
4459
5356
|
func (*FavoritesAction_Favorite) Descriptor() ([]byte, []int) {
|
|
4460
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5357
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20, 0}
|
|
4461
5358
|
}
|
|
4462
5359
|
|
|
4463
5360
|
func (x *FavoritesAction_Favorite) GetID() string {
|
|
@@ -4469,183 +5366,636 @@ func (x *FavoritesAction_Favorite) GetID() string {
|
|
|
4469
5366
|
|
|
4470
5367
|
var File_waSyncAction_WASyncAction_proto protoreflect.FileDescriptor
|
|
4471
5368
|
|
|
4472
|
-
|
|
4473
|
-
|
|
5369
|
+
const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
5370
|
+
"\n" +
|
|
5371
|
+
"\x1fwaSyncAction/WASyncAction.proto\x12\fWASyncAction\x1a4waChatLockSettings/WAProtobufsChatLockSettings.proto\x1a8waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto\x1a\x17waCommon/WACommon.proto\"\xc5\b\n" +
|
|
5372
|
+
"\rCallLogRecord\x12F\n" +
|
|
5373
|
+
"\n" +
|
|
5374
|
+
"callResult\x18\x01 \x01(\x0e2&.WASyncAction.CallLogRecord.CallResultR\n" +
|
|
5375
|
+
"callResult\x12\x1c\n" +
|
|
5376
|
+
"\tisDndMode\x18\x02 \x01(\bR\tisDndMode\x12O\n" +
|
|
5377
|
+
"\rsilenceReason\x18\x03 \x01(\x0e2).WASyncAction.CallLogRecord.SilenceReasonR\rsilenceReason\x12\x1a\n" +
|
|
5378
|
+
"\bduration\x18\x04 \x01(\x03R\bduration\x12\x1c\n" +
|
|
5379
|
+
"\tstartTime\x18\x05 \x01(\x03R\tstartTime\x12\x1e\n" +
|
|
5380
|
+
"\n" +
|
|
5381
|
+
"isIncoming\x18\x06 \x01(\bR\n" +
|
|
5382
|
+
"isIncoming\x12\x18\n" +
|
|
5383
|
+
"\aisVideo\x18\a \x01(\bR\aisVideo\x12\x1e\n" +
|
|
5384
|
+
"\n" +
|
|
5385
|
+
"isCallLink\x18\b \x01(\bR\n" +
|
|
5386
|
+
"isCallLink\x12$\n" +
|
|
5387
|
+
"\rcallLinkToken\x18\t \x01(\tR\rcallLinkToken\x12(\n" +
|
|
5388
|
+
"\x0fscheduledCallID\x18\n" +
|
|
5389
|
+
" \x01(\tR\x0fscheduledCallID\x12\x16\n" +
|
|
5390
|
+
"\x06callID\x18\v \x01(\tR\x06callID\x12&\n" +
|
|
5391
|
+
"\x0ecallCreatorJID\x18\f \x01(\tR\x0ecallCreatorJID\x12\x1a\n" +
|
|
5392
|
+
"\bgroupJID\x18\r \x01(\tR\bgroupJID\x12O\n" +
|
|
5393
|
+
"\fparticipants\x18\x0e \x03(\v2+.WASyncAction.CallLogRecord.ParticipantInfoR\fparticipants\x12@\n" +
|
|
5394
|
+
"\bcallType\x18\x0f \x01(\x0e2$.WASyncAction.CallLogRecord.CallTypeR\bcallType\x1as\n" +
|
|
5395
|
+
"\x0fParticipantInfo\x12\x18\n" +
|
|
5396
|
+
"\auserJID\x18\x01 \x01(\tR\auserJID\x12F\n" +
|
|
5397
|
+
"\n" +
|
|
5398
|
+
"callResult\x18\x02 \x01(\x0e2&.WASyncAction.CallLogRecord.CallResultR\n" +
|
|
5399
|
+
"callResult\";\n" +
|
|
5400
|
+
"\bCallType\x12\v\n" +
|
|
5401
|
+
"\aREGULAR\x10\x00\x12\x12\n" +
|
|
5402
|
+
"\x0eSCHEDULED_CALL\x10\x01\x12\x0e\n" +
|
|
5403
|
+
"\n" +
|
|
5404
|
+
"VOICE_CHAT\x10\x02\"F\n" +
|
|
5405
|
+
"\rSilenceReason\x12\b\n" +
|
|
5406
|
+
"\x04NONE\x10\x00\x12\r\n" +
|
|
5407
|
+
"\tSCHEDULED\x10\x01\x12\v\n" +
|
|
5408
|
+
"\aPRIVACY\x10\x02\x12\x0f\n" +
|
|
5409
|
+
"\vLIGHTWEIGHT\x10\x03\"\xaf\x01\n" +
|
|
5410
|
+
"\n" +
|
|
5411
|
+
"CallResult\x12\r\n" +
|
|
5412
|
+
"\tCONNECTED\x10\x00\x12\f\n" +
|
|
5413
|
+
"\bREJECTED\x10\x01\x12\r\n" +
|
|
5414
|
+
"\tCANCELLED\x10\x02\x12\x15\n" +
|
|
5415
|
+
"\x11ACCEPTEDELSEWHERE\x10\x03\x12\n" +
|
|
5416
|
+
"\n" +
|
|
5417
|
+
"\x06MISSED\x10\x04\x12\v\n" +
|
|
5418
|
+
"\aINVALID\x10\x05\x12\x0f\n" +
|
|
5419
|
+
"\vUNAVAILABLE\x10\x06\x12\f\n" +
|
|
5420
|
+
"\bUPCOMING\x10\a\x12\n" +
|
|
5421
|
+
"\n" +
|
|
5422
|
+
"\x06FAILED\x10\b\x12\r\n" +
|
|
5423
|
+
"\tABANDONED\x10\t\x12\v\n" +
|
|
5424
|
+
"\aONGOING\x10\n" +
|
|
5425
|
+
"\"\xd6\x01\n" +
|
|
5426
|
+
"\x1cMaibaAIFeaturesControlAction\x12i\n" +
|
|
5427
|
+
"\x0faiFeatureStatus\x18\x01 \x01(\x0e2?.WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatusR\x0faiFeatureStatus\"K\n" +
|
|
5428
|
+
"\x14MaibaAIFeatureStatus\x12\v\n" +
|
|
5429
|
+
"\aENABLED\x10\x00\x12\x18\n" +
|
|
5430
|
+
"\x14ENABLED_HAS_LEARNING\x10\x01\x12\f\n" +
|
|
5431
|
+
"\bDISABLED\x10\x02\"\xae\x01\n" +
|
|
5432
|
+
"\x10PaymentTosAction\x12R\n" +
|
|
5433
|
+
"\rpaymentNotice\x18\x01 \x02(\x0e2,.WASyncAction.PaymentTosAction.PaymentNoticeR\rpaymentNotice\x12\x1a\n" +
|
|
5434
|
+
"\baccepted\x18\x02 \x02(\bR\baccepted\"*\n" +
|
|
5435
|
+
"\rPaymentNotice\x12\x19\n" +
|
|
5436
|
+
"\x15BR_PAY_PRIVACY_POLICY\x10\x00\"\xa6\x02\n" +
|
|
5437
|
+
"!NotificationActivitySettingAction\x12\x8d\x01\n" +
|
|
5438
|
+
"\x1bnotificationActivitySetting\x18\x01 \x01(\x0e2K.WASyncAction.NotificationActivitySettingAction.NotificationActivitySettingR\x1bnotificationActivitySetting\"q\n" +
|
|
5439
|
+
"\x1bNotificationActivitySetting\x12\x18\n" +
|
|
5440
|
+
"\x14DEFAULT_ALL_MESSAGES\x10\x00\x12\x10\n" +
|
|
5441
|
+
"\fALL_MESSAGES\x10\x01\x12\x0e\n" +
|
|
5442
|
+
"\n" +
|
|
5443
|
+
"HIGHLIGHTS\x10\x02\x12\x16\n" +
|
|
5444
|
+
"\x12DEFAULT_HIGHLIGHTS\x10\x03\"\x99\x01\n" +
|
|
5445
|
+
"\x1cWaffleAccountLinkStateAction\x12Y\n" +
|
|
5446
|
+
"\tlinkState\x18\x02 \x01(\x0e2;.WASyncAction.WaffleAccountLinkStateAction.AccountLinkStateR\tlinkState\"\x1e\n" +
|
|
5447
|
+
"\x10AccountLinkState\x12\n" +
|
|
5448
|
+
"\n" +
|
|
5449
|
+
"\x06ACTIVE\x10\x00\"\xed\x01\n" +
|
|
5450
|
+
"\x1cMerchantPaymentPartnerAction\x12I\n" +
|
|
5451
|
+
"\x06status\x18\x01 \x02(\x0e21.WASyncAction.MerchantPaymentPartnerAction.StatusR\x06status\x12\x18\n" +
|
|
5452
|
+
"\acountry\x18\x02 \x02(\tR\acountry\x12 \n" +
|
|
5453
|
+
"\vgatewayName\x18\x03 \x01(\tR\vgatewayName\x12\"\n" +
|
|
5454
|
+
"\fcredentialID\x18\x04 \x01(\tR\fcredentialID\"\"\n" +
|
|
5455
|
+
"\x06Status\x12\n" +
|
|
5456
|
+
"\n" +
|
|
5457
|
+
"\x06ACTIVE\x10\x00\x12\f\n" +
|
|
5458
|
+
"\bINACTIVE\x10\x01\"\xfd\x01\n" +
|
|
5459
|
+
"\x0eNoteEditAction\x129\n" +
|
|
5460
|
+
"\x04type\x18\x01 \x01(\x0e2%.WASyncAction.NoteEditAction.NoteTypeR\x04type\x12\x18\n" +
|
|
5461
|
+
"\achatJID\x18\x02 \x01(\tR\achatJID\x12\x1c\n" +
|
|
5462
|
+
"\tcreatedAt\x18\x03 \x01(\x03R\tcreatedAt\x12\x18\n" +
|
|
5463
|
+
"\adeleted\x18\x04 \x01(\bR\adeleted\x120\n" +
|
|
5464
|
+
"\x13unstructuredContent\x18\x05 \x01(\tR\x13unstructuredContent\",\n" +
|
|
5465
|
+
"\bNoteType\x12\x10\n" +
|
|
5466
|
+
"\fUNSTRUCTURED\x10\x01\x12\x0e\n" +
|
|
5467
|
+
"\n" +
|
|
5468
|
+
"STRUCTURED\x10\x02\"\xc4\x01\n" +
|
|
5469
|
+
"\x13StatusPrivacyAction\x12L\n" +
|
|
5470
|
+
"\x04mode\x18\x01 \x01(\x0e28.WASyncAction.StatusPrivacyAction.StatusDistributionModeR\x04mode\x12\x18\n" +
|
|
5471
|
+
"\auserJID\x18\x02 \x03(\tR\auserJID\"E\n" +
|
|
5472
|
+
"\x16StatusDistributionMode\x12\x0e\n" +
|
|
5473
|
+
"\n" +
|
|
5474
|
+
"ALLOW_LIST\x10\x00\x12\r\n" +
|
|
5475
|
+
"\tDENY_LIST\x10\x01\x12\f\n" +
|
|
5476
|
+
"\bCONTACTS\x10\x02\"\xc7\x02\n" +
|
|
5477
|
+
"\x16MarketingMessageAction\x12\x12\n" +
|
|
5478
|
+
"\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n" +
|
|
5479
|
+
"\amessage\x18\x02 \x01(\tR\amessage\x12V\n" +
|
|
5480
|
+
"\x04type\x18\x03 \x01(\x0e2B.WASyncAction.MarketingMessageAction.MarketingMessagePrototypeTypeR\x04type\x12\x1c\n" +
|
|
5481
|
+
"\tcreatedAt\x18\x04 \x01(\x03R\tcreatedAt\x12\x1e\n" +
|
|
5482
|
+
"\n" +
|
|
5483
|
+
"lastSentAt\x18\x05 \x01(\x03R\n" +
|
|
5484
|
+
"lastSentAt\x12\x1c\n" +
|
|
5485
|
+
"\tisDeleted\x18\x06 \x01(\bR\tisDeleted\x12\x18\n" +
|
|
5486
|
+
"\amediaID\x18\a \x01(\tR\amediaID\"1\n" +
|
|
5487
|
+
"\x1dMarketingMessagePrototypeType\x12\x10\n" +
|
|
5488
|
+
"\fPERSONALIZED\x10\x00\"\x9e\x01\n" +
|
|
5489
|
+
"\x1bUsernameChatStartModeAction\x12]\n" +
|
|
5490
|
+
"\rchatStartMode\x18\x01 \x01(\x0e27.WASyncAction.UsernameChatStartModeAction.ChatStartModeR\rchatStartMode\" \n" +
|
|
5491
|
+
"\rChatStartMode\x12\a\n" +
|
|
5492
|
+
"\x03LID\x10\x01\x12\x06\n" +
|
|
5493
|
+
"\x02PN\x10\x02\"\x90\x03\n" +
|
|
5494
|
+
"\x0fLabelEditAction\x12\x12\n" +
|
|
5495
|
+
"\x04name\x18\x01 \x01(\tR\x04name\x12\x14\n" +
|
|
5496
|
+
"\x05color\x18\x02 \x01(\x05R\x05color\x12\"\n" +
|
|
5497
|
+
"\fpredefinedID\x18\x03 \x01(\x05R\fpredefinedID\x12\x18\n" +
|
|
5498
|
+
"\adeleted\x18\x04 \x01(\bR\adeleted\x12\x1e\n" +
|
|
5499
|
+
"\n" +
|
|
5500
|
+
"orderIndex\x18\x05 \x01(\x05R\n" +
|
|
5501
|
+
"orderIndex\x12\x1a\n" +
|
|
5502
|
+
"\bisActive\x18\x06 \x01(\bR\bisActive\x12:\n" +
|
|
5503
|
+
"\x04type\x18\a \x01(\x0e2&.WASyncAction.LabelEditAction.ListTypeR\x04type\x12 \n" +
|
|
5504
|
+
"\visImmutable\x18\b \x01(\bR\visImmutable\"{\n" +
|
|
5505
|
+
"\bListType\x12\b\n" +
|
|
5506
|
+
"\x04NONE\x10\x00\x12\n" +
|
|
5507
|
+
"\n" +
|
|
5508
|
+
"\x06UNREAD\x10\x01\x12\n" +
|
|
5509
|
+
"\n" +
|
|
5510
|
+
"\x06GROUPS\x10\x02\x12\r\n" +
|
|
5511
|
+
"\tFAVORITES\x10\x03\x12\x0e\n" +
|
|
5512
|
+
"\n" +
|
|
5513
|
+
"PREDEFINED\x10\x04\x12\n" +
|
|
5514
|
+
"\n" +
|
|
5515
|
+
"\x06CUSTOM\x10\x05\x12\r\n" +
|
|
5516
|
+
"\tCOMMUNITY\x10\x06\x12\x13\n" +
|
|
5517
|
+
"\x0fSERVER_ASSIGNED\x10\a\"\xf8\x04\n" +
|
|
5518
|
+
"\x0ePatchDebugData\x12$\n" +
|
|
5519
|
+
"\rcurrentLthash\x18\x01 \x01(\fR\rcurrentLthash\x12\x1c\n" +
|
|
5520
|
+
"\tnewLthash\x18\x02 \x01(\fR\tnewLthash\x12\"\n" +
|
|
5521
|
+
"\fpatchVersion\x18\x03 \x01(\fR\fpatchVersion\x12&\n" +
|
|
5522
|
+
"\x0ecollectionName\x18\x04 \x01(\fR\x0ecollectionName\x12X\n" +
|
|
5523
|
+
"'firstFourBytesFromAHashOfSnapshotMACKey\x18\x05 \x01(\fR'firstFourBytesFromAHashOfSnapshotMACKey\x12,\n" +
|
|
5524
|
+
"\x11newLthashSubtract\x18\x06 \x01(\fR\x11newLthashSubtract\x12\x1c\n" +
|
|
5525
|
+
"\tnumberAdd\x18\a \x01(\x05R\tnumberAdd\x12\"\n" +
|
|
5526
|
+
"\fnumberRemove\x18\b \x01(\x05R\fnumberRemove\x12&\n" +
|
|
5527
|
+
"\x0enumberOverride\x18\t \x01(\x05R\x0enumberOverride\x12M\n" +
|
|
5528
|
+
"\x0esenderPlatform\x18\n" +
|
|
5529
|
+
" \x01(\x0e2%.WASyncAction.PatchDebugData.PlatformR\x0esenderPlatform\x12(\n" +
|
|
5530
|
+
"\x0fisSenderPrimary\x18\v \x01(\bR\x0fisSenderPrimary\"k\n" +
|
|
5531
|
+
"\bPlatform\x12\v\n" +
|
|
5532
|
+
"\aANDROID\x10\x00\x12\b\n" +
|
|
5533
|
+
"\x04SMBA\x10\x01\x12\n" +
|
|
5534
|
+
"\n" +
|
|
5535
|
+
"\x06IPHONE\x10\x02\x12\b\n" +
|
|
5536
|
+
"\x04SMBI\x10\x03\x12\a\n" +
|
|
5537
|
+
"\x03WEB\x10\x04\x12\a\n" +
|
|
5538
|
+
"\x03UWP\x10\x05\x12\n" +
|
|
5539
|
+
"\n" +
|
|
5540
|
+
"\x06DARWIN\x10\x06\x12\b\n" +
|
|
5541
|
+
"\x04IPAD\x10\a\x12\n" +
|
|
5542
|
+
"\n" +
|
|
5543
|
+
"\x06WEAROS\x10\b\"A\n" +
|
|
5544
|
+
"\x11RecentEmojiWeight\x12\x14\n" +
|
|
5545
|
+
"\x05emoji\x18\x01 \x01(\tR\x05emoji\x12\x16\n" +
|
|
5546
|
+
"\x06weight\x18\x02 \x01(\x02R\x06weight\"\xb5-\n" +
|
|
5547
|
+
"\x0fSyncActionValue\x12\x1c\n" +
|
|
5548
|
+
"\ttimestamp\x18\x01 \x01(\x03R\ttimestamp\x128\n" +
|
|
5549
|
+
"\n" +
|
|
5550
|
+
"starAction\x18\x02 \x01(\v2\x18.WASyncAction.StarActionR\n" +
|
|
5551
|
+
"starAction\x12A\n" +
|
|
5552
|
+
"\rcontactAction\x18\x03 \x01(\v2\x1b.WASyncAction.ContactActionR\rcontactAction\x128\n" +
|
|
5553
|
+
"\n" +
|
|
5554
|
+
"muteAction\x18\x04 \x01(\v2\x18.WASyncAction.MuteActionR\n" +
|
|
5555
|
+
"muteAction\x125\n" +
|
|
5556
|
+
"\tpinAction\x18\x05 \x01(\v2\x17.WASyncAction.PinActionR\tpinAction\x12k\n" +
|
|
5557
|
+
"\x1bsecurityNotificationSetting\x18\x06 \x01(\v2).WASyncAction.SecurityNotificationSettingR\x1bsecurityNotificationSetting\x12G\n" +
|
|
5558
|
+
"\x0fpushNameSetting\x18\a \x01(\v2\x1d.WASyncAction.PushNameSettingR\x0fpushNameSetting\x12J\n" +
|
|
5559
|
+
"\x10quickReplyAction\x18\b \x01(\v2\x1e.WASyncAction.QuickReplyActionR\x10quickReplyAction\x12b\n" +
|
|
5560
|
+
"\x18recentEmojiWeightsAction\x18\v \x01(\v2&.WASyncAction.RecentEmojiWeightsActionR\x18recentEmojiWeightsAction\x12G\n" +
|
|
5561
|
+
"\x0flabelEditAction\x18\x0e \x01(\v2\x1d.WASyncAction.LabelEditActionR\x0flabelEditAction\x12\\\n" +
|
|
5562
|
+
"\x16labelAssociationAction\x18\x0f \x01(\v2$.WASyncAction.LabelAssociationActionR\x16labelAssociationAction\x12A\n" +
|
|
5563
|
+
"\rlocaleSetting\x18\x10 \x01(\v2\x1b.WASyncAction.LocaleSettingR\rlocaleSetting\x12M\n" +
|
|
5564
|
+
"\x11archiveChatAction\x18\x11 \x01(\v2\x1f.WASyncAction.ArchiveChatActionR\x11archiveChatAction\x12b\n" +
|
|
5565
|
+
"\x18deleteMessageForMeAction\x18\x12 \x01(\v2&.WASyncAction.DeleteMessageForMeActionR\x18deleteMessageForMeAction\x12A\n" +
|
|
5566
|
+
"\rkeyExpiration\x18\x13 \x01(\v2\x1b.WASyncAction.KeyExpirationR\rkeyExpiration\x12V\n" +
|
|
5567
|
+
"\x14markChatAsReadAction\x18\x14 \x01(\v2\".WASyncAction.MarkChatAsReadActionR\x14markChatAsReadAction\x12G\n" +
|
|
5568
|
+
"\x0fclearChatAction\x18\x15 \x01(\v2\x1d.WASyncAction.ClearChatActionR\x0fclearChatAction\x12J\n" +
|
|
5569
|
+
"\x10deleteChatAction\x18\x16 \x01(\v2\x1e.WASyncAction.DeleteChatActionR\x10deleteChatAction\x12Y\n" +
|
|
5570
|
+
"\x15unarchiveChatsSetting\x18\x17 \x01(\v2#.WASyncAction.UnarchiveChatsSettingR\x15unarchiveChatsSetting\x12D\n" +
|
|
5571
|
+
"\x0eprimaryFeature\x18\x18 \x01(\v2\x1c.WASyncAction.PrimaryFeatureR\x0eprimaryFeature\x12e\n" +
|
|
5572
|
+
"\x19androidUnsupportedActions\x18\x1a \x01(\v2'.WASyncAction.AndroidUnsupportedActionsR\x19androidUnsupportedActions\x12;\n" +
|
|
5573
|
+
"\vagentAction\x18\x1b \x01(\v2\x19.WASyncAction.AgentActionR\vagentAction\x12P\n" +
|
|
5574
|
+
"\x12subscriptionAction\x18\x1c \x01(\v2 .WASyncAction.SubscriptionActionR\x12subscriptionAction\x12V\n" +
|
|
5575
|
+
"\x14userStatusMuteAction\x18\x1d \x01(\v2\".WASyncAction.UserStatusMuteActionR\x14userStatusMuteAction\x12J\n" +
|
|
5576
|
+
"\x10timeFormatAction\x18\x1e \x01(\v2\x1e.WASyncAction.TimeFormatActionR\x10timeFormatAction\x125\n" +
|
|
5577
|
+
"\tnuxAction\x18\x1f \x01(\v2\x17.WASyncAction.NuxActionR\tnuxAction\x12V\n" +
|
|
5578
|
+
"\x14primaryVersionAction\x18 \x01(\v2\".WASyncAction.PrimaryVersionActionR\x14primaryVersionAction\x12A\n" +
|
|
5579
|
+
"\rstickerAction\x18! \x01(\v2\x1b.WASyncAction.StickerActionR\rstickerAction\x12e\n" +
|
|
5580
|
+
"\x19removeRecentStickerAction\x18\" \x01(\v2'.WASyncAction.RemoveRecentStickerActionR\x19removeRecentStickerAction\x12J\n" +
|
|
5581
|
+
"\x0echatAssignment\x18# \x01(\v2\".WASyncAction.ChatAssignmentActionR\x0echatAssignment\x12n\n" +
|
|
5582
|
+
"\x1achatAssignmentOpenedStatus\x18$ \x01(\v2..WASyncAction.ChatAssignmentOpenedStatusActionR\x1achatAssignmentOpenedStatus\x12P\n" +
|
|
5583
|
+
"\x12pnForLidChatAction\x18% \x01(\v2 .WASyncAction.PnForLidChatActionR\x12pnForLidChatAction\x12\\\n" +
|
|
5584
|
+
"\x16marketingMessageAction\x18& \x01(\v2$.WASyncAction.MarketingMessageActionR\x16marketingMessageAction\x12w\n" +
|
|
5585
|
+
"\x1fmarketingMessageBroadcastAction\x18' \x01(\v2-.WASyncAction.MarketingMessageBroadcastActionR\x1fmarketingMessageBroadcastAction\x12Y\n" +
|
|
5586
|
+
"\x15externalWebBetaAction\x18( \x01(\v2#.WASyncAction.ExternalWebBetaActionR\x15externalWebBetaAction\x12k\n" +
|
|
5587
|
+
"\x1bprivacySettingRelayAllCalls\x18) \x01(\v2).WASyncAction.PrivacySettingRelayAllCallsR\x1bprivacySettingRelayAllCalls\x12A\n" +
|
|
5588
|
+
"\rcallLogAction\x18* \x01(\v2\x1b.WASyncAction.CallLogActionR\rcallLogAction\x12G\n" +
|
|
5589
|
+
"\rstatusPrivacy\x18, \x01(\v2!.WASyncAction.StatusPrivacyActionR\rstatusPrivacy\x12_\n" +
|
|
5590
|
+
"\x17botWelcomeRequestAction\x18- \x01(\v2%.WASyncAction.BotWelcomeRequestActionR\x17botWelcomeRequestAction\x12e\n" +
|
|
5591
|
+
"\x17deleteIndividualCallLog\x18. \x01(\v2+.WASyncAction.DeleteIndividualCallLogActionR\x17deleteIndividualCallLog\x12Y\n" +
|
|
5592
|
+
"\x15labelReorderingAction\x18/ \x01(\v2#.WASyncAction.LabelReorderingActionR\x15labelReorderingAction\x12M\n" +
|
|
5593
|
+
"\x11paymentInfoAction\x180 \x01(\v2\x1f.WASyncAction.PaymentInfoActionR\x11paymentInfoAction\x12h\n" +
|
|
5594
|
+
"\x1acustomPaymentMethodsAction\x181 \x01(\v2(.WASyncAction.CustomPaymentMethodsActionR\x1acustomPaymentMethodsAction\x12D\n" +
|
|
5595
|
+
"\x0elockChatAction\x182 \x01(\v2\x1c.WASyncAction.LockChatActionR\x0elockChatAction\x12Y\n" +
|
|
5596
|
+
"\x10chatLockSettings\x183 \x01(\v2-.WAProtobufsChatLockSettings.ChatLockSettingsR\x10chatLockSettings\x12b\n" +
|
|
5597
|
+
"\x18wamoUserIdentifierAction\x184 \x01(\v2&.WASyncAction.WamoUserIdentifierActionR\x18wamoUserIdentifierAction\x12\x8f\x01\n" +
|
|
5598
|
+
"'privacySettingDisableLinkPreviewsAction\x185 \x01(\v25.WASyncAction.PrivacySettingDisableLinkPreviewsActionR'privacySettingDisableLinkPreviewsAction\x12a\n" +
|
|
5599
|
+
"\x12deviceCapabilities\x186 \x01(\v21.WAProtobufsDeviceCapabilities.DeviceCapabilitiesR\x12deviceCapabilities\x12D\n" +
|
|
5600
|
+
"\x0enoteEditAction\x187 \x01(\v2\x1c.WASyncAction.NoteEditActionR\x0enoteEditAction\x12G\n" +
|
|
5601
|
+
"\x0ffavoritesAction\x188 \x01(\v2\x1d.WASyncAction.FavoritesActionR\x0ffavoritesAction\x12n\n" +
|
|
5602
|
+
"\x1cmerchantPaymentPartnerAction\x189 \x01(\v2*.WASyncAction.MerchantPaymentPartnerActionR\x1cmerchantPaymentPartnerAction\x12n\n" +
|
|
5603
|
+
"\x1cwaffleAccountLinkStateAction\x18: \x01(\v2*.WASyncAction.WaffleAccountLinkStateActionR\x1cwaffleAccountLinkStateAction\x12_\n" +
|
|
5604
|
+
"\x15usernameChatStartMode\x18; \x01(\v2).WASyncAction.UsernameChatStartModeActionR\x15usernameChatStartMode\x12}\n" +
|
|
5605
|
+
"!notificationActivitySettingAction\x18< \x01(\v2/.WASyncAction.NotificationActivitySettingActionR!notificationActivitySettingAction\x12J\n" +
|
|
5606
|
+
"\x10lidContactAction\x18= \x01(\v2\x1e.WASyncAction.LidContactActionR\x10lidContactAction\x12z\n" +
|
|
5607
|
+
" ctwaPerCustomerDataSharingAction\x18> \x01(\v2..WASyncAction.CtwaPerCustomerDataSharingActionR ctwaPerCustomerDataSharingAction\x12J\n" +
|
|
5608
|
+
"\x10paymentTosAction\x18? \x01(\v2\x1e.WASyncAction.PaymentTosActionR\x10paymentTosAction\x12\xbc\x01\n" +
|
|
5609
|
+
"6privacySettingChannelsPersonalisedRecommendationAction\x18@ \x01(\v2D.WASyncAction.PrivacySettingChannelsPersonalisedRecommendationActionR6privacySettingChannelsPersonalisedRecommendationAction\x12\x80\x01\n" +
|
|
5610
|
+
"\"businessBroadcastAssociationAction\x18A \x01(\v20.WASyncAction.BusinessBroadcastAssociationActionR\"businessBroadcastAssociationAction\x12n\n" +
|
|
5611
|
+
"\x1cdetectedOutcomesStatusAction\x18B \x01(\v2*.WASyncAction.DetectedOutcomesStatusActionR\x1cdetectedOutcomesStatusAction\x12n\n" +
|
|
5612
|
+
"\x1cmaibaAiFeaturesControlAction\x18D \x01(\v2*.WASyncAction.MaibaAIFeaturesControlActionR\x1cmaibaAiFeaturesControlAction\x12k\n" +
|
|
5613
|
+
"\x1bbusinessBroadcastListAction\x18E \x01(\v2).WASyncAction.BusinessBroadcastListActionR\x1bbusinessBroadcastListAction\x12M\n" +
|
|
5614
|
+
"\x11musicUserIDAction\x18F \x01(\v2\x1f.WASyncAction.MusicUserIdActionR\x11musicUserIDAction\x12\x9e\x01\n" +
|
|
5615
|
+
",statusPostOptInNotificationPreferencesAction\x18G \x01(\v2:.WASyncAction.StatusPostOptInNotificationPreferencesActionR,statusPostOptInNotificationPreferencesAction\"H\n" +
|
|
5616
|
+
",StatusPostOptInNotificationPreferencesAction\x12\x18\n" +
|
|
5617
|
+
"\aenabled\x18\x01 \x01(\bR\aenabled\"H\n" +
|
|
5618
|
+
"\x18BroadcastListParticipant\x12\x16\n" +
|
|
5619
|
+
"\x06lidJID\x18\x01 \x02(\tR\x06lidJID\x12\x14\n" +
|
|
5620
|
+
"\x05pnJID\x18\x02 \x01(\tR\x05pnJID\"\x9f\x01\n" +
|
|
5621
|
+
"\x1bBusinessBroadcastListAction\x12\x18\n" +
|
|
5622
|
+
"\adeleted\x18\x01 \x01(\bR\adeleted\x12J\n" +
|
|
5623
|
+
"\fparticipants\x18\x02 \x03(\v2&.WASyncAction.BroadcastListParticipantR\fparticipants\x12\x1a\n" +
|
|
5624
|
+
"\blistName\x18\x03 \x01(\tR\blistName\">\n" +
|
|
5625
|
+
"\"BusinessBroadcastAssociationAction\x12\x18\n" +
|
|
5626
|
+
"\adeleted\x18\x01 \x01(\bR\adeleted\"t\n" +
|
|
5627
|
+
" CtwaPerCustomerDataSharingAction\x12P\n" +
|
|
5628
|
+
"#isCtwaPerCustomerDataSharingEnabled\x18\x01 \x01(\bR#isCtwaPerCustomerDataSharingEnabled\"\xa4\x01\n" +
|
|
5629
|
+
"\x10LidContactAction\x12\x1a\n" +
|
|
5630
|
+
"\bfullName\x18\x01 \x01(\tR\bfullName\x12\x1c\n" +
|
|
5631
|
+
"\tfirstName\x18\x02 \x01(\tR\tfirstName\x12\x1a\n" +
|
|
5632
|
+
"\busername\x18\x03 \x01(\tR\busername\x12:\n" +
|
|
5633
|
+
"\x18saveOnPrimaryAddressbook\x18\x04 \x01(\bR\x18saveOnPrimaryAddressbook\"s\n" +
|
|
5634
|
+
"\x0fFavoritesAction\x12D\n" +
|
|
5635
|
+
"\tfavorites\x18\x01 \x03(\v2&.WASyncAction.FavoritesAction.FavoriteR\tfavorites\x1a\x1a\n" +
|
|
5636
|
+
"\bFavorite\x12\x0e\n" +
|
|
5637
|
+
"\x02ID\x18\x01 \x01(\tR\x02ID\"`\n" +
|
|
5638
|
+
"6PrivacySettingChannelsPersonalisedRecommendationAction\x12&\n" +
|
|
5639
|
+
"\x0eisUserOptedOut\x18\x01 \x01(\bR\x0eisUserOptedOut\"Y\n" +
|
|
5640
|
+
"'PrivacySettingDisableLinkPreviewsAction\x12.\n" +
|
|
5641
|
+
"\x12isPreviewsDisabled\x18\x01 \x01(\bR\x12isPreviewsDisabled\":\n" +
|
|
5642
|
+
"\x18WamoUserIdentifierAction\x12\x1e\n" +
|
|
5643
|
+
"\n" +
|
|
5644
|
+
"identifier\x18\x01 \x01(\tR\n" +
|
|
5645
|
+
"identifier\"(\n" +
|
|
5646
|
+
"\x0eLockChatAction\x12\x16\n" +
|
|
5647
|
+
"\x06locked\x18\x01 \x01(\bR\x06locked\"s\n" +
|
|
5648
|
+
"\x1aCustomPaymentMethodsAction\x12U\n" +
|
|
5649
|
+
"\x14customPaymentMethods\x18\x01 \x03(\v2!.WASyncAction.CustomPaymentMethodR\x14customPaymentMethods\"\xae\x01\n" +
|
|
5650
|
+
"\x13CustomPaymentMethod\x12\"\n" +
|
|
5651
|
+
"\fcredentialID\x18\x01 \x02(\tR\fcredentialID\x12\x18\n" +
|
|
5652
|
+
"\acountry\x18\x02 \x02(\tR\acountry\x12\x12\n" +
|
|
5653
|
+
"\x04type\x18\x03 \x02(\tR\x04type\x12E\n" +
|
|
5654
|
+
"\bmetadata\x18\x04 \x03(\v2).WASyncAction.CustomPaymentMethodMetadataR\bmetadata\"E\n" +
|
|
5655
|
+
"\x1bCustomPaymentMethodMetadata\x12\x10\n" +
|
|
5656
|
+
"\x03key\x18\x01 \x02(\tR\x03key\x12\x14\n" +
|
|
5657
|
+
"\x05value\x18\x02 \x02(\tR\x05value\"%\n" +
|
|
5658
|
+
"\x11PaymentInfoAction\x12\x10\n" +
|
|
5659
|
+
"\x03cpi\x18\x01 \x01(\tR\x03cpi\"?\n" +
|
|
5660
|
+
"\x15LabelReorderingAction\x12&\n" +
|
|
5661
|
+
"\x0esortedLabelIDs\x18\x01 \x03(\x05R\x0esortedLabelIDs\"Y\n" +
|
|
5662
|
+
"\x1dDeleteIndividualCallLogAction\x12\x18\n" +
|
|
5663
|
+
"\apeerJID\x18\x01 \x01(\tR\apeerJID\x12\x1e\n" +
|
|
5664
|
+
"\n" +
|
|
5665
|
+
"isIncoming\x18\x02 \x01(\bR\n" +
|
|
5666
|
+
"isIncoming\"1\n" +
|
|
5667
|
+
"\x17BotWelcomeRequestAction\x12\x16\n" +
|
|
5668
|
+
"\x06isSent\x18\x01 \x01(\bR\x06isSent\"5\n" +
|
|
5669
|
+
"\x11MusicUserIdAction\x12 \n" +
|
|
5670
|
+
"\vmusicUserID\x18\x01 \x01(\tR\vmusicUserID\"R\n" +
|
|
5671
|
+
"\rCallLogAction\x12A\n" +
|
|
5672
|
+
"\rcallLogRecord\x18\x01 \x01(\v2\x1b.WASyncAction.CallLogRecordR\rcallLogRecord\";\n" +
|
|
5673
|
+
"\x1bPrivacySettingRelayAllCalls\x12\x1c\n" +
|
|
5674
|
+
"\tisEnabled\x18\x01 \x01(\bR\tisEnabled\"<\n" +
|
|
5675
|
+
"\x1cDetectedOutcomesStatusAction\x12\x1c\n" +
|
|
5676
|
+
"\tisEnabled\x18\x01 \x01(\bR\tisEnabled\"1\n" +
|
|
5677
|
+
"\x15ExternalWebBetaAction\x12\x18\n" +
|
|
5678
|
+
"\aisOptIn\x18\x01 \x01(\bR\aisOptIn\"E\n" +
|
|
5679
|
+
"\x1fMarketingMessageBroadcastAction\x12\"\n" +
|
|
5680
|
+
"\frepliedCount\x18\x01 \x01(\x05R\frepliedCount\"*\n" +
|
|
5681
|
+
"\x12PnForLidChatAction\x12\x14\n" +
|
|
5682
|
+
"\x05pnJID\x18\x01 \x01(\tR\x05pnJID\"B\n" +
|
|
5683
|
+
" ChatAssignmentOpenedStatusAction\x12\x1e\n" +
|
|
5684
|
+
"\n" +
|
|
5685
|
+
"chatOpened\x18\x01 \x01(\bR\n" +
|
|
5686
|
+
"chatOpened\"<\n" +
|
|
5687
|
+
"\x14ChatAssignmentAction\x12$\n" +
|
|
5688
|
+
"\rdeviceAgentID\x18\x01 \x01(\tR\rdeviceAgentID\"\x95\x03\n" +
|
|
5689
|
+
"\rStickerAction\x12\x10\n" +
|
|
5690
|
+
"\x03URL\x18\x01 \x01(\tR\x03URL\x12$\n" +
|
|
5691
|
+
"\rfileEncSHA256\x18\x02 \x01(\fR\rfileEncSHA256\x12\x1a\n" +
|
|
5692
|
+
"\bmediaKey\x18\x03 \x01(\fR\bmediaKey\x12\x1a\n" +
|
|
5693
|
+
"\bmimetype\x18\x04 \x01(\tR\bmimetype\x12\x16\n" +
|
|
5694
|
+
"\x06height\x18\x05 \x01(\rR\x06height\x12\x14\n" +
|
|
5695
|
+
"\x05width\x18\x06 \x01(\rR\x05width\x12\x1e\n" +
|
|
5696
|
+
"\n" +
|
|
5697
|
+
"directPath\x18\a \x01(\tR\n" +
|
|
5698
|
+
"directPath\x12\x1e\n" +
|
|
5699
|
+
"\n" +
|
|
5700
|
+
"fileLength\x18\b \x01(\x04R\n" +
|
|
5701
|
+
"fileLength\x12\x1e\n" +
|
|
5702
|
+
"\n" +
|
|
5703
|
+
"isFavorite\x18\t \x01(\bR\n" +
|
|
5704
|
+
"isFavorite\x12\"\n" +
|
|
5705
|
+
"\fdeviceIDHint\x18\n" +
|
|
5706
|
+
" \x01(\rR\fdeviceIDHint\x12\x1a\n" +
|
|
5707
|
+
"\bisLottie\x18\v \x01(\bR\bisLottie\x12\x1c\n" +
|
|
5708
|
+
"\timageHash\x18\f \x01(\tR\timageHash\x12(\n" +
|
|
5709
|
+
"\x0fisAvatarSticker\x18\r \x01(\bR\x0fisAvatarSticker\"I\n" +
|
|
5710
|
+
"\x19RemoveRecentStickerAction\x12,\n" +
|
|
5711
|
+
"\x11lastStickerSentTS\x18\x01 \x01(\x03R\x11lastStickerSentTS\"0\n" +
|
|
5712
|
+
"\x14PrimaryVersionAction\x12\x18\n" +
|
|
5713
|
+
"\aversion\x18\x01 \x01(\tR\aversion\"/\n" +
|
|
5714
|
+
"\tNuxAction\x12\"\n" +
|
|
5715
|
+
"\facknowledged\x18\x01 \x01(\bR\facknowledged\"X\n" +
|
|
5716
|
+
"\x10TimeFormatAction\x12D\n" +
|
|
5717
|
+
"\x1disTwentyFourHourFormatEnabled\x18\x01 \x01(\bR\x1disTwentyFourHourFormatEnabled\",\n" +
|
|
5718
|
+
"\x14UserStatusMuteAction\x12\x14\n" +
|
|
5719
|
+
"\x05muted\x18\x01 \x01(\bR\x05muted\"\x8a\x01\n" +
|
|
5720
|
+
"\x12SubscriptionAction\x12$\n" +
|
|
5721
|
+
"\risDeactivated\x18\x01 \x01(\bR\risDeactivated\x12&\n" +
|
|
5722
|
+
"\x0eisAutoRenewing\x18\x02 \x01(\bR\x0eisAutoRenewing\x12&\n" +
|
|
5723
|
+
"\x0eexpirationDate\x18\x03 \x01(\x03R\x0eexpirationDate\"[\n" +
|
|
5724
|
+
"\vAgentAction\x12\x12\n" +
|
|
5725
|
+
"\x04name\x18\x01 \x01(\tR\x04name\x12\x1a\n" +
|
|
5726
|
+
"\bdeviceID\x18\x02 \x01(\x05R\bdeviceID\x12\x1c\n" +
|
|
5727
|
+
"\tisDeleted\x18\x03 \x01(\bR\tisDeleted\"5\n" +
|
|
5728
|
+
"\x19AndroidUnsupportedActions\x12\x18\n" +
|
|
5729
|
+
"\aallowed\x18\x01 \x01(\bR\aallowed\"&\n" +
|
|
5730
|
+
"\x0ePrimaryFeature\x12\x14\n" +
|
|
5731
|
+
"\x05flags\x18\x01 \x03(\tR\x05flags\"9\n" +
|
|
5732
|
+
"\rKeyExpiration\x12(\n" +
|
|
5733
|
+
"\x0fexpiredKeyEpoch\x18\x01 \x01(\x05R\x0fexpiredKeyEpoch\"Y\n" +
|
|
5734
|
+
"\x11SyncActionMessage\x12&\n" +
|
|
5735
|
+
"\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x12\x1c\n" +
|
|
5736
|
+
"\ttimestamp\x18\x02 \x01(\x03R\ttimestamp\"\xc9\x01\n" +
|
|
5737
|
+
"\x16SyncActionMessageRange\x122\n" +
|
|
5738
|
+
"\x14lastMessageTimestamp\x18\x01 \x01(\x03R\x14lastMessageTimestamp\x12>\n" +
|
|
5739
|
+
"\x1alastSystemMessageTimestamp\x18\x02 \x01(\x03R\x1alastSystemMessageTimestamp\x12;\n" +
|
|
5740
|
+
"\bmessages\x18\x03 \x03(\v2\x1f.WASyncAction.SyncActionMessageR\bmessages\"?\n" +
|
|
5741
|
+
"\x15UnarchiveChatsSetting\x12&\n" +
|
|
5742
|
+
"\x0eunarchiveChats\x18\x01 \x01(\bR\x0eunarchiveChats\"\\\n" +
|
|
5743
|
+
"\x10DeleteChatAction\x12H\n" +
|
|
5744
|
+
"\fmessageRange\x18\x01 \x01(\v2$.WASyncAction.SyncActionMessageRangeR\fmessageRange\"[\n" +
|
|
5745
|
+
"\x0fClearChatAction\x12H\n" +
|
|
5746
|
+
"\fmessageRange\x18\x01 \x01(\v2$.WASyncAction.SyncActionMessageRangeR\fmessageRange\"t\n" +
|
|
5747
|
+
"\x14MarkChatAsReadAction\x12\x12\n" +
|
|
5748
|
+
"\x04read\x18\x01 \x01(\bR\x04read\x12H\n" +
|
|
5749
|
+
"\fmessageRange\x18\x02 \x01(\v2$.WASyncAction.SyncActionMessageRangeR\fmessageRange\"h\n" +
|
|
5750
|
+
"\x18DeleteMessageForMeAction\x12 \n" +
|
|
5751
|
+
"\vdeleteMedia\x18\x01 \x01(\bR\vdeleteMedia\x12*\n" +
|
|
5752
|
+
"\x10messageTimestamp\x18\x02 \x01(\x03R\x10messageTimestamp\"y\n" +
|
|
5753
|
+
"\x11ArchiveChatAction\x12\x1a\n" +
|
|
5754
|
+
"\barchived\x18\x01 \x01(\bR\barchived\x12H\n" +
|
|
5755
|
+
"\fmessageRange\x18\x02 \x01(\v2$.WASyncAction.SyncActionMessageRangeR\fmessageRange\"U\n" +
|
|
5756
|
+
"\x18RecentEmojiWeightsAction\x129\n" +
|
|
5757
|
+
"\aweights\x18\x01 \x03(\v2\x1f.WASyncAction.RecentEmojiWeightR\aweights\"2\n" +
|
|
5758
|
+
"\x16LabelAssociationAction\x12\x18\n" +
|
|
5759
|
+
"\alabeled\x18\x01 \x01(\bR\alabeled\"\x94\x01\n" +
|
|
5760
|
+
"\x10QuickReplyAction\x12\x1a\n" +
|
|
5761
|
+
"\bshortcut\x18\x01 \x01(\tR\bshortcut\x12\x18\n" +
|
|
5762
|
+
"\amessage\x18\x02 \x01(\tR\amessage\x12\x1a\n" +
|
|
5763
|
+
"\bkeywords\x18\x03 \x03(\tR\bkeywords\x12\x14\n" +
|
|
5764
|
+
"\x05count\x18\x04 \x01(\x05R\x05count\x12\x18\n" +
|
|
5765
|
+
"\adeleted\x18\x05 \x01(\bR\adeleted\"'\n" +
|
|
5766
|
+
"\rLocaleSetting\x12\x16\n" +
|
|
5767
|
+
"\x06locale\x18\x01 \x01(\tR\x06locale\"%\n" +
|
|
5768
|
+
"\x0fPushNameSetting\x12\x12\n" +
|
|
5769
|
+
"\x04name\x18\x01 \x01(\tR\x04name\"I\n" +
|
|
5770
|
+
"\x1bSecurityNotificationSetting\x12*\n" +
|
|
5771
|
+
"\x10showNotification\x18\x01 \x01(\bR\x10showNotification\"#\n" +
|
|
5772
|
+
"\tPinAction\x12\x16\n" +
|
|
5773
|
+
"\x06pinned\x18\x01 \x01(\bR\x06pinned\"l\n" +
|
|
5774
|
+
"\n" +
|
|
5775
|
+
"MuteAction\x12\x14\n" +
|
|
5776
|
+
"\x05muted\x18\x01 \x01(\bR\x05muted\x12*\n" +
|
|
5777
|
+
"\x10muteEndTimestamp\x18\x02 \x01(\x03R\x10muteEndTimestamp\x12\x1c\n" +
|
|
5778
|
+
"\tautoMuted\x18\x03 \x01(\bR\tautoMuted\"\xcf\x01\n" +
|
|
5779
|
+
"\rContactAction\x12\x1a\n" +
|
|
5780
|
+
"\bfullName\x18\x01 \x01(\tR\bfullName\x12\x1c\n" +
|
|
5781
|
+
"\tfirstName\x18\x02 \x01(\tR\tfirstName\x12\x16\n" +
|
|
5782
|
+
"\x06lidJID\x18\x03 \x01(\tR\x06lidJID\x12:\n" +
|
|
5783
|
+
"\x18saveOnPrimaryAddressbook\x18\x04 \x01(\bR\x18saveOnPrimaryAddressbook\x12\x14\n" +
|
|
5784
|
+
"\x05pnJID\x18\x05 \x01(\tR\x05pnJID\x12\x1a\n" +
|
|
5785
|
+
"\busername\x18\x06 \x01(\tR\busername\"&\n" +
|
|
5786
|
+
"\n" +
|
|
5787
|
+
"StarAction\x12\x18\n" +
|
|
5788
|
+
"\astarred\x18\x01 \x01(\bR\astarred\"\x8f\x01\n" +
|
|
5789
|
+
"\x0eSyncActionData\x12\x14\n" +
|
|
5790
|
+
"\x05index\x18\x01 \x01(\fR\x05index\x123\n" +
|
|
5791
|
+
"\x05value\x18\x02 \x01(\v2\x1d.WASyncAction.SyncActionValueR\x05value\x12\x18\n" +
|
|
5792
|
+
"\apadding\x18\x03 \x01(\fR\apadding\x12\x18\n" +
|
|
5793
|
+
"\aversion\x18\x04 \x01(\x05R\aversionB(Z&go.mau.fi/whatsmeow/proto/waSyncAction"
|
|
4474
5794
|
|
|
4475
5795
|
var (
|
|
4476
5796
|
file_waSyncAction_WASyncAction_proto_rawDescOnce sync.Once
|
|
4477
|
-
file_waSyncAction_WASyncAction_proto_rawDescData
|
|
5797
|
+
file_waSyncAction_WASyncAction_proto_rawDescData []byte
|
|
4478
5798
|
)
|
|
4479
5799
|
|
|
4480
5800
|
func file_waSyncAction_WASyncAction_proto_rawDescGZIP() []byte {
|
|
4481
5801
|
file_waSyncAction_WASyncAction_proto_rawDescOnce.Do(func() {
|
|
4482
|
-
file_waSyncAction_WASyncAction_proto_rawDescData = protoimpl.X.CompressGZIP(
|
|
5802
|
+
file_waSyncAction_WASyncAction_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waSyncAction_WASyncAction_proto_rawDesc), len(file_waSyncAction_WASyncAction_proto_rawDesc)))
|
|
4483
5803
|
})
|
|
4484
5804
|
return file_waSyncAction_WASyncAction_proto_rawDescData
|
|
4485
5805
|
}
|
|
4486
5806
|
|
|
4487
|
-
var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo,
|
|
4488
|
-
var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
5807
|
+
var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 14)
|
|
5808
|
+
var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 73)
|
|
4489
5809
|
var file_waSyncAction_WASyncAction_proto_goTypes = []any{
|
|
4490
|
-
(CallLogRecord_CallType)(0),
|
|
4491
|
-
(CallLogRecord_SilenceReason)(0),
|
|
4492
|
-
(CallLogRecord_CallResult)(0),
|
|
4493
|
-
(
|
|
4494
|
-
(
|
|
4495
|
-
(
|
|
4496
|
-
(
|
|
4497
|
-
(
|
|
4498
|
-
(
|
|
4499
|
-
(
|
|
4500
|
-
(
|
|
4501
|
-
(
|
|
4502
|
-
(
|
|
4503
|
-
(
|
|
4504
|
-
(*
|
|
4505
|
-
(*
|
|
4506
|
-
(*
|
|
4507
|
-
(*
|
|
4508
|
-
(*
|
|
4509
|
-
(*
|
|
4510
|
-
(*
|
|
4511
|
-
(*
|
|
4512
|
-
(*
|
|
4513
|
-
(*
|
|
4514
|
-
(*
|
|
4515
|
-
(*
|
|
4516
|
-
(*
|
|
4517
|
-
(*
|
|
4518
|
-
(*
|
|
4519
|
-
(*
|
|
4520
|
-
(*
|
|
4521
|
-
(*
|
|
4522
|
-
(*
|
|
4523
|
-
(*
|
|
4524
|
-
(*
|
|
4525
|
-
(*
|
|
4526
|
-
(*
|
|
4527
|
-
(*
|
|
4528
|
-
(*
|
|
4529
|
-
(*
|
|
4530
|
-
(*
|
|
4531
|
-
(*
|
|
4532
|
-
(*
|
|
4533
|
-
(*
|
|
4534
|
-
(*
|
|
4535
|
-
(*
|
|
4536
|
-
(*
|
|
4537
|
-
(*
|
|
4538
|
-
(*
|
|
4539
|
-
(*
|
|
4540
|
-
(*
|
|
4541
|
-
(*
|
|
4542
|
-
(*
|
|
4543
|
-
(*
|
|
4544
|
-
(*
|
|
4545
|
-
(*
|
|
4546
|
-
(*
|
|
4547
|
-
(*
|
|
4548
|
-
(*
|
|
4549
|
-
(*
|
|
4550
|
-
(*
|
|
4551
|
-
(*
|
|
4552
|
-
(*
|
|
4553
|
-
(*
|
|
4554
|
-
(*
|
|
4555
|
-
(*
|
|
4556
|
-
(*
|
|
4557
|
-
(*
|
|
4558
|
-
(*
|
|
4559
|
-
(*
|
|
4560
|
-
(*
|
|
4561
|
-
(*
|
|
4562
|
-
(*
|
|
4563
|
-
(*
|
|
4564
|
-
(*
|
|
5810
|
+
(CallLogRecord_CallType)(0), // 0: WASyncAction.CallLogRecord.CallType
|
|
5811
|
+
(CallLogRecord_SilenceReason)(0), // 1: WASyncAction.CallLogRecord.SilenceReason
|
|
5812
|
+
(CallLogRecord_CallResult)(0), // 2: WASyncAction.CallLogRecord.CallResult
|
|
5813
|
+
(MaibaAIFeaturesControlAction_MaibaAIFeatureStatus)(0), // 3: WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatus
|
|
5814
|
+
(PaymentTosAction_PaymentNotice)(0), // 4: WASyncAction.PaymentTosAction.PaymentNotice
|
|
5815
|
+
(NotificationActivitySettingAction_NotificationActivitySetting)(0), // 5: WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
|
|
5816
|
+
(WaffleAccountLinkStateAction_AccountLinkState)(0), // 6: WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
|
|
5817
|
+
(MerchantPaymentPartnerAction_Status)(0), // 7: WASyncAction.MerchantPaymentPartnerAction.Status
|
|
5818
|
+
(NoteEditAction_NoteType)(0), // 8: WASyncAction.NoteEditAction.NoteType
|
|
5819
|
+
(StatusPrivacyAction_StatusDistributionMode)(0), // 9: WASyncAction.StatusPrivacyAction.StatusDistributionMode
|
|
5820
|
+
(MarketingMessageAction_MarketingMessagePrototypeType)(0), // 10: WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
|
|
5821
|
+
(UsernameChatStartModeAction_ChatStartMode)(0), // 11: WASyncAction.UsernameChatStartModeAction.ChatStartMode
|
|
5822
|
+
(LabelEditAction_ListType)(0), // 12: WASyncAction.LabelEditAction.ListType
|
|
5823
|
+
(PatchDebugData_Platform)(0), // 13: WASyncAction.PatchDebugData.Platform
|
|
5824
|
+
(*CallLogRecord)(nil), // 14: WASyncAction.CallLogRecord
|
|
5825
|
+
(*MaibaAIFeaturesControlAction)(nil), // 15: WASyncAction.MaibaAIFeaturesControlAction
|
|
5826
|
+
(*PaymentTosAction)(nil), // 16: WASyncAction.PaymentTosAction
|
|
5827
|
+
(*NotificationActivitySettingAction)(nil), // 17: WASyncAction.NotificationActivitySettingAction
|
|
5828
|
+
(*WaffleAccountLinkStateAction)(nil), // 18: WASyncAction.WaffleAccountLinkStateAction
|
|
5829
|
+
(*MerchantPaymentPartnerAction)(nil), // 19: WASyncAction.MerchantPaymentPartnerAction
|
|
5830
|
+
(*NoteEditAction)(nil), // 20: WASyncAction.NoteEditAction
|
|
5831
|
+
(*StatusPrivacyAction)(nil), // 21: WASyncAction.StatusPrivacyAction
|
|
5832
|
+
(*MarketingMessageAction)(nil), // 22: WASyncAction.MarketingMessageAction
|
|
5833
|
+
(*UsernameChatStartModeAction)(nil), // 23: WASyncAction.UsernameChatStartModeAction
|
|
5834
|
+
(*LabelEditAction)(nil), // 24: WASyncAction.LabelEditAction
|
|
5835
|
+
(*PatchDebugData)(nil), // 25: WASyncAction.PatchDebugData
|
|
5836
|
+
(*RecentEmojiWeight)(nil), // 26: WASyncAction.RecentEmojiWeight
|
|
5837
|
+
(*SyncActionValue)(nil), // 27: WASyncAction.SyncActionValue
|
|
5838
|
+
(*StatusPostOptInNotificationPreferencesAction)(nil), // 28: WASyncAction.StatusPostOptInNotificationPreferencesAction
|
|
5839
|
+
(*BroadcastListParticipant)(nil), // 29: WASyncAction.BroadcastListParticipant
|
|
5840
|
+
(*BusinessBroadcastListAction)(nil), // 30: WASyncAction.BusinessBroadcastListAction
|
|
5841
|
+
(*BusinessBroadcastAssociationAction)(nil), // 31: WASyncAction.BusinessBroadcastAssociationAction
|
|
5842
|
+
(*CtwaPerCustomerDataSharingAction)(nil), // 32: WASyncAction.CtwaPerCustomerDataSharingAction
|
|
5843
|
+
(*LidContactAction)(nil), // 33: WASyncAction.LidContactAction
|
|
5844
|
+
(*FavoritesAction)(nil), // 34: WASyncAction.FavoritesAction
|
|
5845
|
+
(*PrivacySettingChannelsPersonalisedRecommendationAction)(nil), // 35: WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
|
|
5846
|
+
(*PrivacySettingDisableLinkPreviewsAction)(nil), // 36: WASyncAction.PrivacySettingDisableLinkPreviewsAction
|
|
5847
|
+
(*WamoUserIdentifierAction)(nil), // 37: WASyncAction.WamoUserIdentifierAction
|
|
5848
|
+
(*LockChatAction)(nil), // 38: WASyncAction.LockChatAction
|
|
5849
|
+
(*CustomPaymentMethodsAction)(nil), // 39: WASyncAction.CustomPaymentMethodsAction
|
|
5850
|
+
(*CustomPaymentMethod)(nil), // 40: WASyncAction.CustomPaymentMethod
|
|
5851
|
+
(*CustomPaymentMethodMetadata)(nil), // 41: WASyncAction.CustomPaymentMethodMetadata
|
|
5852
|
+
(*PaymentInfoAction)(nil), // 42: WASyncAction.PaymentInfoAction
|
|
5853
|
+
(*LabelReorderingAction)(nil), // 43: WASyncAction.LabelReorderingAction
|
|
5854
|
+
(*DeleteIndividualCallLogAction)(nil), // 44: WASyncAction.DeleteIndividualCallLogAction
|
|
5855
|
+
(*BotWelcomeRequestAction)(nil), // 45: WASyncAction.BotWelcomeRequestAction
|
|
5856
|
+
(*MusicUserIdAction)(nil), // 46: WASyncAction.MusicUserIdAction
|
|
5857
|
+
(*CallLogAction)(nil), // 47: WASyncAction.CallLogAction
|
|
5858
|
+
(*PrivacySettingRelayAllCalls)(nil), // 48: WASyncAction.PrivacySettingRelayAllCalls
|
|
5859
|
+
(*DetectedOutcomesStatusAction)(nil), // 49: WASyncAction.DetectedOutcomesStatusAction
|
|
5860
|
+
(*ExternalWebBetaAction)(nil), // 50: WASyncAction.ExternalWebBetaAction
|
|
5861
|
+
(*MarketingMessageBroadcastAction)(nil), // 51: WASyncAction.MarketingMessageBroadcastAction
|
|
5862
|
+
(*PnForLidChatAction)(nil), // 52: WASyncAction.PnForLidChatAction
|
|
5863
|
+
(*ChatAssignmentOpenedStatusAction)(nil), // 53: WASyncAction.ChatAssignmentOpenedStatusAction
|
|
5864
|
+
(*ChatAssignmentAction)(nil), // 54: WASyncAction.ChatAssignmentAction
|
|
5865
|
+
(*StickerAction)(nil), // 55: WASyncAction.StickerAction
|
|
5866
|
+
(*RemoveRecentStickerAction)(nil), // 56: WASyncAction.RemoveRecentStickerAction
|
|
5867
|
+
(*PrimaryVersionAction)(nil), // 57: WASyncAction.PrimaryVersionAction
|
|
5868
|
+
(*NuxAction)(nil), // 58: WASyncAction.NuxAction
|
|
5869
|
+
(*TimeFormatAction)(nil), // 59: WASyncAction.TimeFormatAction
|
|
5870
|
+
(*UserStatusMuteAction)(nil), // 60: WASyncAction.UserStatusMuteAction
|
|
5871
|
+
(*SubscriptionAction)(nil), // 61: WASyncAction.SubscriptionAction
|
|
5872
|
+
(*AgentAction)(nil), // 62: WASyncAction.AgentAction
|
|
5873
|
+
(*AndroidUnsupportedActions)(nil), // 63: WASyncAction.AndroidUnsupportedActions
|
|
5874
|
+
(*PrimaryFeature)(nil), // 64: WASyncAction.PrimaryFeature
|
|
5875
|
+
(*KeyExpiration)(nil), // 65: WASyncAction.KeyExpiration
|
|
5876
|
+
(*SyncActionMessage)(nil), // 66: WASyncAction.SyncActionMessage
|
|
5877
|
+
(*SyncActionMessageRange)(nil), // 67: WASyncAction.SyncActionMessageRange
|
|
5878
|
+
(*UnarchiveChatsSetting)(nil), // 68: WASyncAction.UnarchiveChatsSetting
|
|
5879
|
+
(*DeleteChatAction)(nil), // 69: WASyncAction.DeleteChatAction
|
|
5880
|
+
(*ClearChatAction)(nil), // 70: WASyncAction.ClearChatAction
|
|
5881
|
+
(*MarkChatAsReadAction)(nil), // 71: WASyncAction.MarkChatAsReadAction
|
|
5882
|
+
(*DeleteMessageForMeAction)(nil), // 72: WASyncAction.DeleteMessageForMeAction
|
|
5883
|
+
(*ArchiveChatAction)(nil), // 73: WASyncAction.ArchiveChatAction
|
|
5884
|
+
(*RecentEmojiWeightsAction)(nil), // 74: WASyncAction.RecentEmojiWeightsAction
|
|
5885
|
+
(*LabelAssociationAction)(nil), // 75: WASyncAction.LabelAssociationAction
|
|
5886
|
+
(*QuickReplyAction)(nil), // 76: WASyncAction.QuickReplyAction
|
|
5887
|
+
(*LocaleSetting)(nil), // 77: WASyncAction.LocaleSetting
|
|
5888
|
+
(*PushNameSetting)(nil), // 78: WASyncAction.PushNameSetting
|
|
5889
|
+
(*SecurityNotificationSetting)(nil), // 79: WASyncAction.SecurityNotificationSetting
|
|
5890
|
+
(*PinAction)(nil), // 80: WASyncAction.PinAction
|
|
5891
|
+
(*MuteAction)(nil), // 81: WASyncAction.MuteAction
|
|
5892
|
+
(*ContactAction)(nil), // 82: WASyncAction.ContactAction
|
|
5893
|
+
(*StarAction)(nil), // 83: WASyncAction.StarAction
|
|
5894
|
+
(*SyncActionData)(nil), // 84: WASyncAction.SyncActionData
|
|
5895
|
+
(*CallLogRecord_ParticipantInfo)(nil), // 85: WASyncAction.CallLogRecord.ParticipantInfo
|
|
5896
|
+
(*FavoritesAction_Favorite)(nil), // 86: WASyncAction.FavoritesAction.Favorite
|
|
5897
|
+
(*waChatLockSettings.ChatLockSettings)(nil), // 87: WAProtobufsChatLockSettings.ChatLockSettings
|
|
5898
|
+
(*waDeviceCapabilities.DeviceCapabilities)(nil), // 88: WAProtobufsDeviceCapabilities.DeviceCapabilities
|
|
5899
|
+
(*waCommon.MessageKey)(nil), // 89: WACommon.MessageKey
|
|
4565
5900
|
}
|
|
4566
5901
|
var file_waSyncAction_WASyncAction_proto_depIdxs = []int32{
|
|
4567
5902
|
2, // 0: WASyncAction.CallLogRecord.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
|
|
4568
5903
|
1, // 1: WASyncAction.CallLogRecord.silenceReason:type_name -> WASyncAction.CallLogRecord.SilenceReason
|
|
4569
|
-
|
|
5904
|
+
85, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
|
|
4570
5905
|
0, // 3: WASyncAction.CallLogRecord.callType:type_name -> WASyncAction.CallLogRecord.CallType
|
|
4571
|
-
3, // 4: WASyncAction.
|
|
4572
|
-
4, // 5: WASyncAction.
|
|
4573
|
-
5, // 6: WASyncAction.
|
|
4574
|
-
6, // 7: WASyncAction.
|
|
4575
|
-
7, // 8: WASyncAction.
|
|
4576
|
-
8, // 9: WASyncAction.
|
|
4577
|
-
9, // 10: WASyncAction.
|
|
4578
|
-
10, // 11: WASyncAction.
|
|
4579
|
-
|
|
4580
|
-
|
|
4581
|
-
|
|
4582
|
-
|
|
4583
|
-
|
|
4584
|
-
|
|
4585
|
-
|
|
4586
|
-
|
|
4587
|
-
|
|
4588
|
-
|
|
4589
|
-
|
|
4590
|
-
|
|
4591
|
-
|
|
4592
|
-
|
|
4593
|
-
|
|
4594
|
-
|
|
4595
|
-
|
|
4596
|
-
|
|
4597
|
-
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
|
|
4602
|
-
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
|
|
4609
|
-
|
|
4610
|
-
|
|
4611
|
-
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
|
|
4638
|
-
|
|
4639
|
-
|
|
4640
|
-
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
|
|
5906
|
+
3, // 4: WASyncAction.MaibaAIFeaturesControlAction.aiFeatureStatus:type_name -> WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatus
|
|
5907
|
+
4, // 5: WASyncAction.PaymentTosAction.paymentNotice:type_name -> WASyncAction.PaymentTosAction.PaymentNotice
|
|
5908
|
+
5, // 6: WASyncAction.NotificationActivitySettingAction.notificationActivitySetting:type_name -> WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
|
|
5909
|
+
6, // 7: WASyncAction.WaffleAccountLinkStateAction.linkState:type_name -> WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
|
|
5910
|
+
7, // 8: WASyncAction.MerchantPaymentPartnerAction.status:type_name -> WASyncAction.MerchantPaymentPartnerAction.Status
|
|
5911
|
+
8, // 9: WASyncAction.NoteEditAction.type:type_name -> WASyncAction.NoteEditAction.NoteType
|
|
5912
|
+
9, // 10: WASyncAction.StatusPrivacyAction.mode:type_name -> WASyncAction.StatusPrivacyAction.StatusDistributionMode
|
|
5913
|
+
10, // 11: WASyncAction.MarketingMessageAction.type:type_name -> WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
|
|
5914
|
+
11, // 12: WASyncAction.UsernameChatStartModeAction.chatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction.ChatStartMode
|
|
5915
|
+
12, // 13: WASyncAction.LabelEditAction.type:type_name -> WASyncAction.LabelEditAction.ListType
|
|
5916
|
+
13, // 14: WASyncAction.PatchDebugData.senderPlatform:type_name -> WASyncAction.PatchDebugData.Platform
|
|
5917
|
+
83, // 15: WASyncAction.SyncActionValue.starAction:type_name -> WASyncAction.StarAction
|
|
5918
|
+
82, // 16: WASyncAction.SyncActionValue.contactAction:type_name -> WASyncAction.ContactAction
|
|
5919
|
+
81, // 17: WASyncAction.SyncActionValue.muteAction:type_name -> WASyncAction.MuteAction
|
|
5920
|
+
80, // 18: WASyncAction.SyncActionValue.pinAction:type_name -> WASyncAction.PinAction
|
|
5921
|
+
79, // 19: WASyncAction.SyncActionValue.securityNotificationSetting:type_name -> WASyncAction.SecurityNotificationSetting
|
|
5922
|
+
78, // 20: WASyncAction.SyncActionValue.pushNameSetting:type_name -> WASyncAction.PushNameSetting
|
|
5923
|
+
76, // 21: WASyncAction.SyncActionValue.quickReplyAction:type_name -> WASyncAction.QuickReplyAction
|
|
5924
|
+
74, // 22: WASyncAction.SyncActionValue.recentEmojiWeightsAction:type_name -> WASyncAction.RecentEmojiWeightsAction
|
|
5925
|
+
24, // 23: WASyncAction.SyncActionValue.labelEditAction:type_name -> WASyncAction.LabelEditAction
|
|
5926
|
+
75, // 24: WASyncAction.SyncActionValue.labelAssociationAction:type_name -> WASyncAction.LabelAssociationAction
|
|
5927
|
+
77, // 25: WASyncAction.SyncActionValue.localeSetting:type_name -> WASyncAction.LocaleSetting
|
|
5928
|
+
73, // 26: WASyncAction.SyncActionValue.archiveChatAction:type_name -> WASyncAction.ArchiveChatAction
|
|
5929
|
+
72, // 27: WASyncAction.SyncActionValue.deleteMessageForMeAction:type_name -> WASyncAction.DeleteMessageForMeAction
|
|
5930
|
+
65, // 28: WASyncAction.SyncActionValue.keyExpiration:type_name -> WASyncAction.KeyExpiration
|
|
5931
|
+
71, // 29: WASyncAction.SyncActionValue.markChatAsReadAction:type_name -> WASyncAction.MarkChatAsReadAction
|
|
5932
|
+
70, // 30: WASyncAction.SyncActionValue.clearChatAction:type_name -> WASyncAction.ClearChatAction
|
|
5933
|
+
69, // 31: WASyncAction.SyncActionValue.deleteChatAction:type_name -> WASyncAction.DeleteChatAction
|
|
5934
|
+
68, // 32: WASyncAction.SyncActionValue.unarchiveChatsSetting:type_name -> WASyncAction.UnarchiveChatsSetting
|
|
5935
|
+
64, // 33: WASyncAction.SyncActionValue.primaryFeature:type_name -> WASyncAction.PrimaryFeature
|
|
5936
|
+
63, // 34: WASyncAction.SyncActionValue.androidUnsupportedActions:type_name -> WASyncAction.AndroidUnsupportedActions
|
|
5937
|
+
62, // 35: WASyncAction.SyncActionValue.agentAction:type_name -> WASyncAction.AgentAction
|
|
5938
|
+
61, // 36: WASyncAction.SyncActionValue.subscriptionAction:type_name -> WASyncAction.SubscriptionAction
|
|
5939
|
+
60, // 37: WASyncAction.SyncActionValue.userStatusMuteAction:type_name -> WASyncAction.UserStatusMuteAction
|
|
5940
|
+
59, // 38: WASyncAction.SyncActionValue.timeFormatAction:type_name -> WASyncAction.TimeFormatAction
|
|
5941
|
+
58, // 39: WASyncAction.SyncActionValue.nuxAction:type_name -> WASyncAction.NuxAction
|
|
5942
|
+
57, // 40: WASyncAction.SyncActionValue.primaryVersionAction:type_name -> WASyncAction.PrimaryVersionAction
|
|
5943
|
+
55, // 41: WASyncAction.SyncActionValue.stickerAction:type_name -> WASyncAction.StickerAction
|
|
5944
|
+
56, // 42: WASyncAction.SyncActionValue.removeRecentStickerAction:type_name -> WASyncAction.RemoveRecentStickerAction
|
|
5945
|
+
54, // 43: WASyncAction.SyncActionValue.chatAssignment:type_name -> WASyncAction.ChatAssignmentAction
|
|
5946
|
+
53, // 44: WASyncAction.SyncActionValue.chatAssignmentOpenedStatus:type_name -> WASyncAction.ChatAssignmentOpenedStatusAction
|
|
5947
|
+
52, // 45: WASyncAction.SyncActionValue.pnForLidChatAction:type_name -> WASyncAction.PnForLidChatAction
|
|
5948
|
+
22, // 46: WASyncAction.SyncActionValue.marketingMessageAction:type_name -> WASyncAction.MarketingMessageAction
|
|
5949
|
+
51, // 47: WASyncAction.SyncActionValue.marketingMessageBroadcastAction:type_name -> WASyncAction.MarketingMessageBroadcastAction
|
|
5950
|
+
50, // 48: WASyncAction.SyncActionValue.externalWebBetaAction:type_name -> WASyncAction.ExternalWebBetaAction
|
|
5951
|
+
48, // 49: WASyncAction.SyncActionValue.privacySettingRelayAllCalls:type_name -> WASyncAction.PrivacySettingRelayAllCalls
|
|
5952
|
+
47, // 50: WASyncAction.SyncActionValue.callLogAction:type_name -> WASyncAction.CallLogAction
|
|
5953
|
+
21, // 51: WASyncAction.SyncActionValue.statusPrivacy:type_name -> WASyncAction.StatusPrivacyAction
|
|
5954
|
+
45, // 52: WASyncAction.SyncActionValue.botWelcomeRequestAction:type_name -> WASyncAction.BotWelcomeRequestAction
|
|
5955
|
+
44, // 53: WASyncAction.SyncActionValue.deleteIndividualCallLog:type_name -> WASyncAction.DeleteIndividualCallLogAction
|
|
5956
|
+
43, // 54: WASyncAction.SyncActionValue.labelReorderingAction:type_name -> WASyncAction.LabelReorderingAction
|
|
5957
|
+
42, // 55: WASyncAction.SyncActionValue.paymentInfoAction:type_name -> WASyncAction.PaymentInfoAction
|
|
5958
|
+
39, // 56: WASyncAction.SyncActionValue.customPaymentMethodsAction:type_name -> WASyncAction.CustomPaymentMethodsAction
|
|
5959
|
+
38, // 57: WASyncAction.SyncActionValue.lockChatAction:type_name -> WASyncAction.LockChatAction
|
|
5960
|
+
87, // 58: WASyncAction.SyncActionValue.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
|
|
5961
|
+
37, // 59: WASyncAction.SyncActionValue.wamoUserIdentifierAction:type_name -> WASyncAction.WamoUserIdentifierAction
|
|
5962
|
+
36, // 60: WASyncAction.SyncActionValue.privacySettingDisableLinkPreviewsAction:type_name -> WASyncAction.PrivacySettingDisableLinkPreviewsAction
|
|
5963
|
+
88, // 61: WASyncAction.SyncActionValue.deviceCapabilities:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities
|
|
5964
|
+
20, // 62: WASyncAction.SyncActionValue.noteEditAction:type_name -> WASyncAction.NoteEditAction
|
|
5965
|
+
34, // 63: WASyncAction.SyncActionValue.favoritesAction:type_name -> WASyncAction.FavoritesAction
|
|
5966
|
+
19, // 64: WASyncAction.SyncActionValue.merchantPaymentPartnerAction:type_name -> WASyncAction.MerchantPaymentPartnerAction
|
|
5967
|
+
18, // 65: WASyncAction.SyncActionValue.waffleAccountLinkStateAction:type_name -> WASyncAction.WaffleAccountLinkStateAction
|
|
5968
|
+
23, // 66: WASyncAction.SyncActionValue.usernameChatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction
|
|
5969
|
+
17, // 67: WASyncAction.SyncActionValue.notificationActivitySettingAction:type_name -> WASyncAction.NotificationActivitySettingAction
|
|
5970
|
+
33, // 68: WASyncAction.SyncActionValue.lidContactAction:type_name -> WASyncAction.LidContactAction
|
|
5971
|
+
32, // 69: WASyncAction.SyncActionValue.ctwaPerCustomerDataSharingAction:type_name -> WASyncAction.CtwaPerCustomerDataSharingAction
|
|
5972
|
+
16, // 70: WASyncAction.SyncActionValue.paymentTosAction:type_name -> WASyncAction.PaymentTosAction
|
|
5973
|
+
35, // 71: WASyncAction.SyncActionValue.privacySettingChannelsPersonalisedRecommendationAction:type_name -> WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
|
|
5974
|
+
31, // 72: WASyncAction.SyncActionValue.businessBroadcastAssociationAction:type_name -> WASyncAction.BusinessBroadcastAssociationAction
|
|
5975
|
+
49, // 73: WASyncAction.SyncActionValue.detectedOutcomesStatusAction:type_name -> WASyncAction.DetectedOutcomesStatusAction
|
|
5976
|
+
15, // 74: WASyncAction.SyncActionValue.maibaAiFeaturesControlAction:type_name -> WASyncAction.MaibaAIFeaturesControlAction
|
|
5977
|
+
30, // 75: WASyncAction.SyncActionValue.businessBroadcastListAction:type_name -> WASyncAction.BusinessBroadcastListAction
|
|
5978
|
+
46, // 76: WASyncAction.SyncActionValue.musicUserIDAction:type_name -> WASyncAction.MusicUserIdAction
|
|
5979
|
+
28, // 77: WASyncAction.SyncActionValue.statusPostOptInNotificationPreferencesAction:type_name -> WASyncAction.StatusPostOptInNotificationPreferencesAction
|
|
5980
|
+
29, // 78: WASyncAction.BusinessBroadcastListAction.participants:type_name -> WASyncAction.BroadcastListParticipant
|
|
5981
|
+
86, // 79: WASyncAction.FavoritesAction.favorites:type_name -> WASyncAction.FavoritesAction.Favorite
|
|
5982
|
+
40, // 80: WASyncAction.CustomPaymentMethodsAction.customPaymentMethods:type_name -> WASyncAction.CustomPaymentMethod
|
|
5983
|
+
41, // 81: WASyncAction.CustomPaymentMethod.metadata:type_name -> WASyncAction.CustomPaymentMethodMetadata
|
|
5984
|
+
14, // 82: WASyncAction.CallLogAction.callLogRecord:type_name -> WASyncAction.CallLogRecord
|
|
5985
|
+
89, // 83: WASyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
|
|
5986
|
+
66, // 84: WASyncAction.SyncActionMessageRange.messages:type_name -> WASyncAction.SyncActionMessage
|
|
5987
|
+
67, // 85: WASyncAction.DeleteChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
5988
|
+
67, // 86: WASyncAction.ClearChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
5989
|
+
67, // 87: WASyncAction.MarkChatAsReadAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
5990
|
+
67, // 88: WASyncAction.ArchiveChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
5991
|
+
26, // 89: WASyncAction.RecentEmojiWeightsAction.weights:type_name -> WASyncAction.RecentEmojiWeight
|
|
5992
|
+
27, // 90: WASyncAction.SyncActionData.value:type_name -> WASyncAction.SyncActionValue
|
|
5993
|
+
2, // 91: WASyncAction.CallLogRecord.ParticipantInfo.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
|
|
5994
|
+
92, // [92:92] is the sub-list for method output_type
|
|
5995
|
+
92, // [92:92] is the sub-list for method input_type
|
|
5996
|
+
92, // [92:92] is the sub-list for extension type_name
|
|
5997
|
+
92, // [92:92] is the sub-list for extension extendee
|
|
5998
|
+
0, // [0:92] is the sub-list for field type_name
|
|
4649
5999
|
}
|
|
4650
6000
|
|
|
4651
6001
|
func init() { file_waSyncAction_WASyncAction_proto_init() }
|
|
@@ -4657,9 +6007,9 @@ func file_waSyncAction_WASyncAction_proto_init() {
|
|
|
4657
6007
|
out := protoimpl.TypeBuilder{
|
|
4658
6008
|
File: protoimpl.DescBuilder{
|
|
4659
6009
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
4660
|
-
RawDescriptor: file_waSyncAction_WASyncAction_proto_rawDesc,
|
|
4661
|
-
NumEnums:
|
|
4662
|
-
NumMessages:
|
|
6010
|
+
RawDescriptor: unsafe.Slice(unsafe.StringData(file_waSyncAction_WASyncAction_proto_rawDesc), len(file_waSyncAction_WASyncAction_proto_rawDesc)),
|
|
6011
|
+
NumEnums: 14,
|
|
6012
|
+
NumMessages: 73,
|
|
4663
6013
|
NumExtensions: 0,
|
|
4664
6014
|
NumServices: 0,
|
|
4665
6015
|
},
|
|
@@ -4669,7 +6019,6 @@ func file_waSyncAction_WASyncAction_proto_init() {
|
|
|
4669
6019
|
MessageInfos: file_waSyncAction_WASyncAction_proto_msgTypes,
|
|
4670
6020
|
}.Build()
|
|
4671
6021
|
File_waSyncAction_WASyncAction_proto = out.File
|
|
4672
|
-
file_waSyncAction_WASyncAction_proto_rawDesc = nil
|
|
4673
6022
|
file_waSyncAction_WASyncAction_proto_goTypes = nil
|
|
4674
6023
|
file_waSyncAction_WASyncAction_proto_depIdxs = nil
|
|
4675
6024
|
}
|