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
slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go
CHANGED
|
@@ -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: waHistorySync/WAWebProtobufsHistorySync.proto
|
|
6
6
|
|
|
@@ -9,16 +9,16 @@ package waHistorySync
|
|
|
9
9
|
import (
|
|
10
10
|
reflect "reflect"
|
|
11
11
|
sync "sync"
|
|
12
|
+
unsafe "unsafe"
|
|
12
13
|
|
|
13
14
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
14
15
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
15
16
|
|
|
16
17
|
waChatLockSettings "go.mau.fi/whatsmeow/proto/waChatLockSettings"
|
|
18
|
+
waCommon "go.mau.fi/whatsmeow/proto/waCommon"
|
|
17
19
|
waE2E "go.mau.fi/whatsmeow/proto/waE2E"
|
|
18
20
|
waSyncAction "go.mau.fi/whatsmeow/proto/waSyncAction"
|
|
19
21
|
waWeb "go.mau.fi/whatsmeow/proto/waWeb"
|
|
20
|
-
|
|
21
|
-
_ "embed"
|
|
22
22
|
)
|
|
23
23
|
|
|
24
24
|
const (
|
|
@@ -465,6 +465,7 @@ type HistorySync struct {
|
|
|
465
465
|
PhoneNumberToLidMappings []*PhoneNumberToLIDMapping `protobuf:"bytes,15,rep,name=phoneNumberToLidMappings" json:"phoneNumberToLidMappings,omitempty"`
|
|
466
466
|
CompanionMetaNonce *string `protobuf:"bytes,16,opt,name=companionMetaNonce" json:"companionMetaNonce,omitempty"`
|
|
467
467
|
ShareableChatIdentifierEncryptionKey []byte `protobuf:"bytes,17,opt,name=shareableChatIdentifierEncryptionKey" json:"shareableChatIdentifierEncryptionKey,omitempty"`
|
|
468
|
+
Accounts []*Account `protobuf:"bytes,18,rep,name=accounts" json:"accounts,omitempty"`
|
|
468
469
|
unknownFields protoimpl.UnknownFields
|
|
469
470
|
sizeCache protoimpl.SizeCache
|
|
470
471
|
}
|
|
@@ -611,59 +612,70 @@ func (x *HistorySync) GetShareableChatIdentifierEncryptionKey() []byte {
|
|
|
611
612
|
return nil
|
|
612
613
|
}
|
|
613
614
|
|
|
615
|
+
func (x *HistorySync) GetAccounts() []*Account {
|
|
616
|
+
if x != nil {
|
|
617
|
+
return x.Accounts
|
|
618
|
+
}
|
|
619
|
+
return nil
|
|
620
|
+
}
|
|
621
|
+
|
|
614
622
|
type Conversation struct {
|
|
615
|
-
state
|
|
616
|
-
ID
|
|
617
|
-
Messages
|
|
618
|
-
NewJID
|
|
619
|
-
OldJID
|
|
620
|
-
LastMsgTimestamp
|
|
621
|
-
UnreadCount
|
|
622
|
-
ReadOnly
|
|
623
|
-
EndOfHistoryTransfer
|
|
624
|
-
EphemeralExpiration
|
|
625
|
-
EphemeralSettingTimestamp
|
|
626
|
-
EndOfHistoryTransferType
|
|
627
|
-
ConversationTimestamp
|
|
628
|
-
Name
|
|
629
|
-
PHash
|
|
630
|
-
NotSpam
|
|
631
|
-
Archived
|
|
632
|
-
DisappearingMode
|
|
633
|
-
UnreadMentionCount
|
|
634
|
-
MarkedAsUnread
|
|
635
|
-
Participant
|
|
636
|
-
TcToken
|
|
637
|
-
TcTokenTimestamp
|
|
638
|
-
ContactPrimaryIdentityKey
|
|
639
|
-
Pinned
|
|
640
|
-
MuteEndTime
|
|
641
|
-
Wallpaper
|
|
642
|
-
MediaVisibility
|
|
643
|
-
TcTokenSenderTimestamp
|
|
644
|
-
Suspended
|
|
645
|
-
Terminated
|
|
646
|
-
CreatedAt
|
|
647
|
-
CreatedBy
|
|
648
|
-
Description
|
|
649
|
-
Support
|
|
650
|
-
IsParentGroup
|
|
651
|
-
ParentGroupID
|
|
652
|
-
IsDefaultSubgroup
|
|
653
|
-
DisplayName
|
|
654
|
-
PnJID
|
|
655
|
-
ShareOwnPn
|
|
656
|
-
PnhDuplicateLidThread
|
|
657
|
-
LidJID
|
|
658
|
-
Username
|
|
659
|
-
LidOriginType
|
|
660
|
-
CommentsCount
|
|
661
|
-
Locked
|
|
662
|
-
SystemMessageToInsert
|
|
663
|
-
CapiCreatedGroup
|
|
664
|
-
AccountLid
|
|
665
|
-
|
|
666
|
-
|
|
623
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
624
|
+
ID *string `protobuf:"bytes,1,req,name=ID" json:"ID,omitempty"`
|
|
625
|
+
Messages []*HistorySyncMsg `protobuf:"bytes,2,rep,name=messages" json:"messages,omitempty"`
|
|
626
|
+
NewJID *string `protobuf:"bytes,3,opt,name=newJID" json:"newJID,omitempty"`
|
|
627
|
+
OldJID *string `protobuf:"bytes,4,opt,name=oldJID" json:"oldJID,omitempty"`
|
|
628
|
+
LastMsgTimestamp *uint64 `protobuf:"varint,5,opt,name=lastMsgTimestamp" json:"lastMsgTimestamp,omitempty"`
|
|
629
|
+
UnreadCount *uint32 `protobuf:"varint,6,opt,name=unreadCount" json:"unreadCount,omitempty"`
|
|
630
|
+
ReadOnly *bool `protobuf:"varint,7,opt,name=readOnly" json:"readOnly,omitempty"`
|
|
631
|
+
EndOfHistoryTransfer *bool `protobuf:"varint,8,opt,name=endOfHistoryTransfer" json:"endOfHistoryTransfer,omitempty"`
|
|
632
|
+
EphemeralExpiration *uint32 `protobuf:"varint,9,opt,name=ephemeralExpiration" json:"ephemeralExpiration,omitempty"`
|
|
633
|
+
EphemeralSettingTimestamp *int64 `protobuf:"varint,10,opt,name=ephemeralSettingTimestamp" json:"ephemeralSettingTimestamp,omitempty"`
|
|
634
|
+
EndOfHistoryTransferType *Conversation_EndOfHistoryTransferType `protobuf:"varint,11,opt,name=endOfHistoryTransferType,enum=WAWebProtobufsHistorySync.Conversation_EndOfHistoryTransferType" json:"endOfHistoryTransferType,omitempty"`
|
|
635
|
+
ConversationTimestamp *uint64 `protobuf:"varint,12,opt,name=conversationTimestamp" json:"conversationTimestamp,omitempty"`
|
|
636
|
+
Name *string `protobuf:"bytes,13,opt,name=name" json:"name,omitempty"`
|
|
637
|
+
PHash *string `protobuf:"bytes,14,opt,name=pHash" json:"pHash,omitempty"`
|
|
638
|
+
NotSpam *bool `protobuf:"varint,15,opt,name=notSpam" json:"notSpam,omitempty"`
|
|
639
|
+
Archived *bool `protobuf:"varint,16,opt,name=archived" json:"archived,omitempty"`
|
|
640
|
+
DisappearingMode *waE2E.DisappearingMode `protobuf:"bytes,17,opt,name=disappearingMode" json:"disappearingMode,omitempty"`
|
|
641
|
+
UnreadMentionCount *uint32 `protobuf:"varint,18,opt,name=unreadMentionCount" json:"unreadMentionCount,omitempty"`
|
|
642
|
+
MarkedAsUnread *bool `protobuf:"varint,19,opt,name=markedAsUnread" json:"markedAsUnread,omitempty"`
|
|
643
|
+
Participant []*GroupParticipant `protobuf:"bytes,20,rep,name=participant" json:"participant,omitempty"`
|
|
644
|
+
TcToken []byte `protobuf:"bytes,21,opt,name=tcToken" json:"tcToken,omitempty"`
|
|
645
|
+
TcTokenTimestamp *uint64 `protobuf:"varint,22,opt,name=tcTokenTimestamp" json:"tcTokenTimestamp,omitempty"`
|
|
646
|
+
ContactPrimaryIdentityKey []byte `protobuf:"bytes,23,opt,name=contactPrimaryIdentityKey" json:"contactPrimaryIdentityKey,omitempty"`
|
|
647
|
+
Pinned *uint32 `protobuf:"varint,24,opt,name=pinned" json:"pinned,omitempty"`
|
|
648
|
+
MuteEndTime *uint64 `protobuf:"varint,25,opt,name=muteEndTime" json:"muteEndTime,omitempty"`
|
|
649
|
+
Wallpaper *WallpaperSettings `protobuf:"bytes,26,opt,name=wallpaper" json:"wallpaper,omitempty"`
|
|
650
|
+
MediaVisibility *MediaVisibility `protobuf:"varint,27,opt,name=mediaVisibility,enum=WAWebProtobufsHistorySync.MediaVisibility" json:"mediaVisibility,omitempty"`
|
|
651
|
+
TcTokenSenderTimestamp *uint64 `protobuf:"varint,28,opt,name=tcTokenSenderTimestamp" json:"tcTokenSenderTimestamp,omitempty"`
|
|
652
|
+
Suspended *bool `protobuf:"varint,29,opt,name=suspended" json:"suspended,omitempty"`
|
|
653
|
+
Terminated *bool `protobuf:"varint,30,opt,name=terminated" json:"terminated,omitempty"`
|
|
654
|
+
CreatedAt *uint64 `protobuf:"varint,31,opt,name=createdAt" json:"createdAt,omitempty"`
|
|
655
|
+
CreatedBy *string `protobuf:"bytes,32,opt,name=createdBy" json:"createdBy,omitempty"`
|
|
656
|
+
Description *string `protobuf:"bytes,33,opt,name=description" json:"description,omitempty"`
|
|
657
|
+
Support *bool `protobuf:"varint,34,opt,name=support" json:"support,omitempty"`
|
|
658
|
+
IsParentGroup *bool `protobuf:"varint,35,opt,name=isParentGroup" json:"isParentGroup,omitempty"`
|
|
659
|
+
ParentGroupID *string `protobuf:"bytes,37,opt,name=parentGroupID" json:"parentGroupID,omitempty"`
|
|
660
|
+
IsDefaultSubgroup *bool `protobuf:"varint,36,opt,name=isDefaultSubgroup" json:"isDefaultSubgroup,omitempty"`
|
|
661
|
+
DisplayName *string `protobuf:"bytes,38,opt,name=displayName" json:"displayName,omitempty"`
|
|
662
|
+
PnJID *string `protobuf:"bytes,39,opt,name=pnJID" json:"pnJID,omitempty"`
|
|
663
|
+
ShareOwnPn *bool `protobuf:"varint,40,opt,name=shareOwnPn" json:"shareOwnPn,omitempty"`
|
|
664
|
+
PnhDuplicateLidThread *bool `protobuf:"varint,41,opt,name=pnhDuplicateLidThread" json:"pnhDuplicateLidThread,omitempty"`
|
|
665
|
+
LidJID *string `protobuf:"bytes,42,opt,name=lidJID" json:"lidJID,omitempty"`
|
|
666
|
+
Username *string `protobuf:"bytes,43,opt,name=username" json:"username,omitempty"`
|
|
667
|
+
LidOriginType *string `protobuf:"bytes,44,opt,name=lidOriginType" json:"lidOriginType,omitempty"`
|
|
668
|
+
CommentsCount *uint32 `protobuf:"varint,45,opt,name=commentsCount" json:"commentsCount,omitempty"`
|
|
669
|
+
Locked *bool `protobuf:"varint,46,opt,name=locked" json:"locked,omitempty"`
|
|
670
|
+
SystemMessageToInsert *PrivacySystemMessage `protobuf:"varint,47,opt,name=systemMessageToInsert,enum=WAWebProtobufsHistorySync.PrivacySystemMessage" json:"systemMessageToInsert,omitempty"`
|
|
671
|
+
CapiCreatedGroup *bool `protobuf:"varint,48,opt,name=capiCreatedGroup" json:"capiCreatedGroup,omitempty"`
|
|
672
|
+
AccountLid *string `protobuf:"bytes,49,opt,name=accountLid" json:"accountLid,omitempty"`
|
|
673
|
+
LimitSharing *bool `protobuf:"varint,50,opt,name=limitSharing" json:"limitSharing,omitempty"`
|
|
674
|
+
LimitSharingSettingTimestamp *int64 `protobuf:"varint,51,opt,name=limitSharingSettingTimestamp" json:"limitSharingSettingTimestamp,omitempty"`
|
|
675
|
+
LimitSharingTrigger *waCommon.LimitSharing_Trigger `protobuf:"varint,52,opt,name=limitSharingTrigger,enum=WACommon.LimitSharing_Trigger" json:"limitSharingTrigger,omitempty"`
|
|
676
|
+
LimitSharingInitiatedByMe *bool `protobuf:"varint,53,opt,name=limitSharingInitiatedByMe" json:"limitSharingInitiatedByMe,omitempty"`
|
|
677
|
+
unknownFields protoimpl.UnknownFields
|
|
678
|
+
sizeCache protoimpl.SizeCache
|
|
667
679
|
}
|
|
668
680
|
|
|
669
681
|
func (x *Conversation) Reset() {
|
|
@@ -1039,10 +1051,39 @@ func (x *Conversation) GetAccountLid() string {
|
|
|
1039
1051
|
return ""
|
|
1040
1052
|
}
|
|
1041
1053
|
|
|
1054
|
+
func (x *Conversation) GetLimitSharing() bool {
|
|
1055
|
+
if x != nil && x.LimitSharing != nil {
|
|
1056
|
+
return *x.LimitSharing
|
|
1057
|
+
}
|
|
1058
|
+
return false
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
func (x *Conversation) GetLimitSharingSettingTimestamp() int64 {
|
|
1062
|
+
if x != nil && x.LimitSharingSettingTimestamp != nil {
|
|
1063
|
+
return *x.LimitSharingSettingTimestamp
|
|
1064
|
+
}
|
|
1065
|
+
return 0
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
func (x *Conversation) GetLimitSharingTrigger() waCommon.LimitSharing_Trigger {
|
|
1069
|
+
if x != nil && x.LimitSharingTrigger != nil {
|
|
1070
|
+
return *x.LimitSharingTrigger
|
|
1071
|
+
}
|
|
1072
|
+
return waCommon.LimitSharing_Trigger(0)
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
func (x *Conversation) GetLimitSharingInitiatedByMe() bool {
|
|
1076
|
+
if x != nil && x.LimitSharingInitiatedByMe != nil {
|
|
1077
|
+
return *x.LimitSharingInitiatedByMe
|
|
1078
|
+
}
|
|
1079
|
+
return false
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1042
1082
|
type GroupParticipant struct {
|
|
1043
1083
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1044
1084
|
UserJID *string `protobuf:"bytes,1,req,name=userJID" json:"userJID,omitempty"`
|
|
1045
1085
|
Rank *GroupParticipant_Rank `protobuf:"varint,2,opt,name=rank,enum=WAWebProtobufsHistorySync.GroupParticipant_Rank" json:"rank,omitempty"`
|
|
1086
|
+
MemberLabel *waE2E.MemberLabel `protobuf:"bytes,3,opt,name=memberLabel" json:"memberLabel,omitempty"`
|
|
1046
1087
|
unknownFields protoimpl.UnknownFields
|
|
1047
1088
|
sizeCache protoimpl.SizeCache
|
|
1048
1089
|
}
|
|
@@ -1091,6 +1132,13 @@ func (x *GroupParticipant) GetRank() GroupParticipant_Rank {
|
|
|
1091
1132
|
return GroupParticipant_REGULAR
|
|
1092
1133
|
}
|
|
1093
1134
|
|
|
1135
|
+
func (x *GroupParticipant) GetMemberLabel() *waE2E.MemberLabel {
|
|
1136
|
+
if x != nil {
|
|
1137
|
+
return x.MemberLabel
|
|
1138
|
+
}
|
|
1139
|
+
return nil
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1094
1142
|
type PastParticipant struct {
|
|
1095
1143
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1096
1144
|
UserJID *string `protobuf:"bytes,1,opt,name=userJID" json:"userJID,omitempty"`
|
|
@@ -1203,6 +1251,74 @@ func (x *PhoneNumberToLIDMapping) GetLidJID() string {
|
|
|
1203
1251
|
return ""
|
|
1204
1252
|
}
|
|
1205
1253
|
|
|
1254
|
+
type Account struct {
|
|
1255
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1256
|
+
Lid *string `protobuf:"bytes,1,opt,name=lid" json:"lid,omitempty"`
|
|
1257
|
+
Username *string `protobuf:"bytes,2,opt,name=username" json:"username,omitempty"`
|
|
1258
|
+
CountryCode *string `protobuf:"bytes,3,opt,name=countryCode" json:"countryCode,omitempty"`
|
|
1259
|
+
IsUsernameDeleted *bool `protobuf:"varint,4,opt,name=isUsernameDeleted" json:"isUsernameDeleted,omitempty"`
|
|
1260
|
+
unknownFields protoimpl.UnknownFields
|
|
1261
|
+
sizeCache protoimpl.SizeCache
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
func (x *Account) Reset() {
|
|
1265
|
+
*x = Account{}
|
|
1266
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[5]
|
|
1267
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1268
|
+
ms.StoreMessageInfo(mi)
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
func (x *Account) String() string {
|
|
1272
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1275
|
+
func (*Account) ProtoMessage() {}
|
|
1276
|
+
|
|
1277
|
+
func (x *Account) ProtoReflect() protoreflect.Message {
|
|
1278
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[5]
|
|
1279
|
+
if x != nil {
|
|
1280
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1281
|
+
if ms.LoadMessageInfo() == nil {
|
|
1282
|
+
ms.StoreMessageInfo(mi)
|
|
1283
|
+
}
|
|
1284
|
+
return ms
|
|
1285
|
+
}
|
|
1286
|
+
return mi.MessageOf(x)
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
// Deprecated: Use Account.ProtoReflect.Descriptor instead.
|
|
1290
|
+
func (*Account) Descriptor() ([]byte, []int) {
|
|
1291
|
+
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{5}
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
func (x *Account) GetLid() string {
|
|
1295
|
+
if x != nil && x.Lid != nil {
|
|
1296
|
+
return *x.Lid
|
|
1297
|
+
}
|
|
1298
|
+
return ""
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
func (x *Account) GetUsername() string {
|
|
1302
|
+
if x != nil && x.Username != nil {
|
|
1303
|
+
return *x.Username
|
|
1304
|
+
}
|
|
1305
|
+
return ""
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
func (x *Account) GetCountryCode() string {
|
|
1309
|
+
if x != nil && x.CountryCode != nil {
|
|
1310
|
+
return *x.CountryCode
|
|
1311
|
+
}
|
|
1312
|
+
return ""
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
func (x *Account) GetIsUsernameDeleted() bool {
|
|
1316
|
+
if x != nil && x.IsUsernameDeleted != nil {
|
|
1317
|
+
return *x.IsUsernameDeleted
|
|
1318
|
+
}
|
|
1319
|
+
return false
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1206
1322
|
type HistorySyncMsg struct {
|
|
1207
1323
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1208
1324
|
Message *waWeb.WebMessageInfo `protobuf:"bytes,1,opt,name=message" json:"message,omitempty"`
|
|
@@ -1213,7 +1329,7 @@ type HistorySyncMsg struct {
|
|
|
1213
1329
|
|
|
1214
1330
|
func (x *HistorySyncMsg) Reset() {
|
|
1215
1331
|
*x = HistorySyncMsg{}
|
|
1216
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
1332
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[6]
|
|
1217
1333
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1218
1334
|
ms.StoreMessageInfo(mi)
|
|
1219
1335
|
}
|
|
@@ -1225,7 +1341,7 @@ func (x *HistorySyncMsg) String() string {
|
|
|
1225
1341
|
func (*HistorySyncMsg) ProtoMessage() {}
|
|
1226
1342
|
|
|
1227
1343
|
func (x *HistorySyncMsg) ProtoReflect() protoreflect.Message {
|
|
1228
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
1344
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[6]
|
|
1229
1345
|
if x != nil {
|
|
1230
1346
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1231
1347
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1238,7 +1354,7 @@ func (x *HistorySyncMsg) ProtoReflect() protoreflect.Message {
|
|
|
1238
1354
|
|
|
1239
1355
|
// Deprecated: Use HistorySyncMsg.ProtoReflect.Descriptor instead.
|
|
1240
1356
|
func (*HistorySyncMsg) Descriptor() ([]byte, []int) {
|
|
1241
|
-
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{
|
|
1357
|
+
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{6}
|
|
1242
1358
|
}
|
|
1243
1359
|
|
|
1244
1360
|
func (x *HistorySyncMsg) GetMessage() *waWeb.WebMessageInfo {
|
|
@@ -1265,7 +1381,7 @@ type Pushname struct {
|
|
|
1265
1381
|
|
|
1266
1382
|
func (x *Pushname) Reset() {
|
|
1267
1383
|
*x = Pushname{}
|
|
1268
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
1384
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[7]
|
|
1269
1385
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1270
1386
|
ms.StoreMessageInfo(mi)
|
|
1271
1387
|
}
|
|
@@ -1277,7 +1393,7 @@ func (x *Pushname) String() string {
|
|
|
1277
1393
|
func (*Pushname) ProtoMessage() {}
|
|
1278
1394
|
|
|
1279
1395
|
func (x *Pushname) ProtoReflect() protoreflect.Message {
|
|
1280
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
1396
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[7]
|
|
1281
1397
|
if x != nil {
|
|
1282
1398
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1283
1399
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1290,7 +1406,7 @@ func (x *Pushname) ProtoReflect() protoreflect.Message {
|
|
|
1290
1406
|
|
|
1291
1407
|
// Deprecated: Use Pushname.ProtoReflect.Descriptor instead.
|
|
1292
1408
|
func (*Pushname) Descriptor() ([]byte, []int) {
|
|
1293
|
-
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{
|
|
1409
|
+
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{7}
|
|
1294
1410
|
}
|
|
1295
1411
|
|
|
1296
1412
|
func (x *Pushname) GetID() string {
|
|
@@ -1317,7 +1433,7 @@ type WallpaperSettings struct {
|
|
|
1317
1433
|
|
|
1318
1434
|
func (x *WallpaperSettings) Reset() {
|
|
1319
1435
|
*x = WallpaperSettings{}
|
|
1320
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
1436
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[8]
|
|
1321
1437
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1322
1438
|
ms.StoreMessageInfo(mi)
|
|
1323
1439
|
}
|
|
@@ -1329,7 +1445,7 @@ func (x *WallpaperSettings) String() string {
|
|
|
1329
1445
|
func (*WallpaperSettings) ProtoMessage() {}
|
|
1330
1446
|
|
|
1331
1447
|
func (x *WallpaperSettings) ProtoReflect() protoreflect.Message {
|
|
1332
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
1448
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[8]
|
|
1333
1449
|
if x != nil {
|
|
1334
1450
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1335
1451
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1342,7 +1458,7 @@ func (x *WallpaperSettings) ProtoReflect() protoreflect.Message {
|
|
|
1342
1458
|
|
|
1343
1459
|
// Deprecated: Use WallpaperSettings.ProtoReflect.Descriptor instead.
|
|
1344
1460
|
func (*WallpaperSettings) Descriptor() ([]byte, []int) {
|
|
1345
|
-
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{
|
|
1461
|
+
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{8}
|
|
1346
1462
|
}
|
|
1347
1463
|
|
|
1348
1464
|
func (x *WallpaperSettings) GetFilename() string {
|
|
@@ -1380,13 +1496,14 @@ type GlobalSettings struct {
|
|
|
1380
1496
|
IndividualNotificationSettings *NotificationSettings `protobuf:"bytes,17,opt,name=individualNotificationSettings" json:"individualNotificationSettings,omitempty"`
|
|
1381
1497
|
GroupNotificationSettings *NotificationSettings `protobuf:"bytes,18,opt,name=groupNotificationSettings" json:"groupNotificationSettings,omitempty"`
|
|
1382
1498
|
ChatLockSettings *waChatLockSettings.ChatLockSettings `protobuf:"bytes,19,opt,name=chatLockSettings" json:"chatLockSettings,omitempty"`
|
|
1499
|
+
ChatDbLidMigrationTimestamp *int64 `protobuf:"varint,20,opt,name=chatDbLidMigrationTimestamp" json:"chatDbLidMigrationTimestamp,omitempty"`
|
|
1383
1500
|
unknownFields protoimpl.UnknownFields
|
|
1384
1501
|
sizeCache protoimpl.SizeCache
|
|
1385
1502
|
}
|
|
1386
1503
|
|
|
1387
1504
|
func (x *GlobalSettings) Reset() {
|
|
1388
1505
|
*x = GlobalSettings{}
|
|
1389
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
1506
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[9]
|
|
1390
1507
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1391
1508
|
ms.StoreMessageInfo(mi)
|
|
1392
1509
|
}
|
|
@@ -1398,7 +1515,7 @@ func (x *GlobalSettings) String() string {
|
|
|
1398
1515
|
func (*GlobalSettings) ProtoMessage() {}
|
|
1399
1516
|
|
|
1400
1517
|
func (x *GlobalSettings) ProtoReflect() protoreflect.Message {
|
|
1401
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
1518
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[9]
|
|
1402
1519
|
if x != nil {
|
|
1403
1520
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1404
1521
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1411,7 +1528,7 @@ func (x *GlobalSettings) ProtoReflect() protoreflect.Message {
|
|
|
1411
1528
|
|
|
1412
1529
|
// Deprecated: Use GlobalSettings.ProtoReflect.Descriptor instead.
|
|
1413
1530
|
func (*GlobalSettings) Descriptor() ([]byte, []int) {
|
|
1414
|
-
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{
|
|
1531
|
+
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{9}
|
|
1415
1532
|
}
|
|
1416
1533
|
|
|
1417
1534
|
func (x *GlobalSettings) GetLightThemeWallpaper() *WallpaperSettings {
|
|
@@ -1547,6 +1664,13 @@ func (x *GlobalSettings) GetChatLockSettings() *waChatLockSettings.ChatLockSetti
|
|
|
1547
1664
|
return nil
|
|
1548
1665
|
}
|
|
1549
1666
|
|
|
1667
|
+
func (x *GlobalSettings) GetChatDbLidMigrationTimestamp() int64 {
|
|
1668
|
+
if x != nil && x.ChatDbLidMigrationTimestamp != nil {
|
|
1669
|
+
return *x.ChatDbLidMigrationTimestamp
|
|
1670
|
+
}
|
|
1671
|
+
return 0
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1550
1674
|
type AutoDownloadSettings struct {
|
|
1551
1675
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1552
1676
|
DownloadImages *bool `protobuf:"varint,1,opt,name=downloadImages" json:"downloadImages,omitempty"`
|
|
@@ -1559,7 +1683,7 @@ type AutoDownloadSettings struct {
|
|
|
1559
1683
|
|
|
1560
1684
|
func (x *AutoDownloadSettings) Reset() {
|
|
1561
1685
|
*x = AutoDownloadSettings{}
|
|
1562
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
1686
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[10]
|
|
1563
1687
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1564
1688
|
ms.StoreMessageInfo(mi)
|
|
1565
1689
|
}
|
|
@@ -1571,7 +1695,7 @@ func (x *AutoDownloadSettings) String() string {
|
|
|
1571
1695
|
func (*AutoDownloadSettings) ProtoMessage() {}
|
|
1572
1696
|
|
|
1573
1697
|
func (x *AutoDownloadSettings) ProtoReflect() protoreflect.Message {
|
|
1574
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
1698
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[10]
|
|
1575
1699
|
if x != nil {
|
|
1576
1700
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1577
1701
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1584,7 +1708,7 @@ func (x *AutoDownloadSettings) ProtoReflect() protoreflect.Message {
|
|
|
1584
1708
|
|
|
1585
1709
|
// Deprecated: Use AutoDownloadSettings.ProtoReflect.Descriptor instead.
|
|
1586
1710
|
func (*AutoDownloadSettings) Descriptor() ([]byte, []int) {
|
|
1587
|
-
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{
|
|
1711
|
+
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{10}
|
|
1588
1712
|
}
|
|
1589
1713
|
|
|
1590
1714
|
func (x *AutoDownloadSettings) GetDownloadImages() bool {
|
|
@@ -1629,13 +1753,15 @@ type StickerMetadata struct {
|
|
|
1629
1753
|
Weight *float32 `protobuf:"fixed32,10,opt,name=weight" json:"weight,omitempty"`
|
|
1630
1754
|
LastStickerSentTS *int64 `protobuf:"varint,11,opt,name=lastStickerSentTS" json:"lastStickerSentTS,omitempty"`
|
|
1631
1755
|
IsLottie *bool `protobuf:"varint,12,opt,name=isLottie" json:"isLottie,omitempty"`
|
|
1756
|
+
ImageHash *string `protobuf:"bytes,13,opt,name=imageHash" json:"imageHash,omitempty"`
|
|
1757
|
+
IsAvatarSticker *bool `protobuf:"varint,14,opt,name=isAvatarSticker" json:"isAvatarSticker,omitempty"`
|
|
1632
1758
|
unknownFields protoimpl.UnknownFields
|
|
1633
1759
|
sizeCache protoimpl.SizeCache
|
|
1634
1760
|
}
|
|
1635
1761
|
|
|
1636
1762
|
func (x *StickerMetadata) Reset() {
|
|
1637
1763
|
*x = StickerMetadata{}
|
|
1638
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
1764
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[11]
|
|
1639
1765
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1640
1766
|
ms.StoreMessageInfo(mi)
|
|
1641
1767
|
}
|
|
@@ -1647,7 +1773,7 @@ func (x *StickerMetadata) String() string {
|
|
|
1647
1773
|
func (*StickerMetadata) ProtoMessage() {}
|
|
1648
1774
|
|
|
1649
1775
|
func (x *StickerMetadata) ProtoReflect() protoreflect.Message {
|
|
1650
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
1776
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[11]
|
|
1651
1777
|
if x != nil {
|
|
1652
1778
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1653
1779
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1660,7 +1786,7 @@ func (x *StickerMetadata) ProtoReflect() protoreflect.Message {
|
|
|
1660
1786
|
|
|
1661
1787
|
// Deprecated: Use StickerMetadata.ProtoReflect.Descriptor instead.
|
|
1662
1788
|
func (*StickerMetadata) Descriptor() ([]byte, []int) {
|
|
1663
|
-
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{
|
|
1789
|
+
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{11}
|
|
1664
1790
|
}
|
|
1665
1791
|
|
|
1666
1792
|
func (x *StickerMetadata) GetURL() string {
|
|
@@ -1747,6 +1873,20 @@ func (x *StickerMetadata) GetIsLottie() bool {
|
|
|
1747
1873
|
return false
|
|
1748
1874
|
}
|
|
1749
1875
|
|
|
1876
|
+
func (x *StickerMetadata) GetImageHash() string {
|
|
1877
|
+
if x != nil && x.ImageHash != nil {
|
|
1878
|
+
return *x.ImageHash
|
|
1879
|
+
}
|
|
1880
|
+
return ""
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1883
|
+
func (x *StickerMetadata) GetIsAvatarSticker() bool {
|
|
1884
|
+
if x != nil && x.IsAvatarSticker != nil {
|
|
1885
|
+
return *x.IsAvatarSticker
|
|
1886
|
+
}
|
|
1887
|
+
return false
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1750
1890
|
type PastParticipants struct {
|
|
1751
1891
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1752
1892
|
GroupJID *string `protobuf:"bytes,1,opt,name=groupJID" json:"groupJID,omitempty"`
|
|
@@ -1757,7 +1897,7 @@ type PastParticipants struct {
|
|
|
1757
1897
|
|
|
1758
1898
|
func (x *PastParticipants) Reset() {
|
|
1759
1899
|
*x = PastParticipants{}
|
|
1760
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
1900
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[12]
|
|
1761
1901
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1762
1902
|
ms.StoreMessageInfo(mi)
|
|
1763
1903
|
}
|
|
@@ -1769,7 +1909,7 @@ func (x *PastParticipants) String() string {
|
|
|
1769
1909
|
func (*PastParticipants) ProtoMessage() {}
|
|
1770
1910
|
|
|
1771
1911
|
func (x *PastParticipants) ProtoReflect() protoreflect.Message {
|
|
1772
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
1912
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[12]
|
|
1773
1913
|
if x != nil {
|
|
1774
1914
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1775
1915
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1782,7 +1922,7 @@ func (x *PastParticipants) ProtoReflect() protoreflect.Message {
|
|
|
1782
1922
|
|
|
1783
1923
|
// Deprecated: Use PastParticipants.ProtoReflect.Descriptor instead.
|
|
1784
1924
|
func (*PastParticipants) Descriptor() ([]byte, []int) {
|
|
1785
|
-
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{
|
|
1925
|
+
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{12}
|
|
1786
1926
|
}
|
|
1787
1927
|
|
|
1788
1928
|
func (x *PastParticipants) GetGroupJID() string {
|
|
@@ -1809,7 +1949,7 @@ type AvatarUserSettings struct {
|
|
|
1809
1949
|
|
|
1810
1950
|
func (x *AvatarUserSettings) Reset() {
|
|
1811
1951
|
*x = AvatarUserSettings{}
|
|
1812
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
1952
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[13]
|
|
1813
1953
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1814
1954
|
ms.StoreMessageInfo(mi)
|
|
1815
1955
|
}
|
|
@@ -1821,7 +1961,7 @@ func (x *AvatarUserSettings) String() string {
|
|
|
1821
1961
|
func (*AvatarUserSettings) ProtoMessage() {}
|
|
1822
1962
|
|
|
1823
1963
|
func (x *AvatarUserSettings) ProtoReflect() protoreflect.Message {
|
|
1824
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
1964
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[13]
|
|
1825
1965
|
if x != nil {
|
|
1826
1966
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1827
1967
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1834,7 +1974,7 @@ func (x *AvatarUserSettings) ProtoReflect() protoreflect.Message {
|
|
|
1834
1974
|
|
|
1835
1975
|
// Deprecated: Use AvatarUserSettings.ProtoReflect.Descriptor instead.
|
|
1836
1976
|
func (*AvatarUserSettings) Descriptor() ([]byte, []int) {
|
|
1837
|
-
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{
|
|
1977
|
+
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{13}
|
|
1838
1978
|
}
|
|
1839
1979
|
|
|
1840
1980
|
func (x *AvatarUserSettings) GetFBID() string {
|
|
@@ -1865,7 +2005,7 @@ type NotificationSettings struct {
|
|
|
1865
2005
|
|
|
1866
2006
|
func (x *NotificationSettings) Reset() {
|
|
1867
2007
|
*x = NotificationSettings{}
|
|
1868
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
2008
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[14]
|
|
1869
2009
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1870
2010
|
ms.StoreMessageInfo(mi)
|
|
1871
2011
|
}
|
|
@@ -1877,7 +2017,7 @@ func (x *NotificationSettings) String() string {
|
|
|
1877
2017
|
func (*NotificationSettings) ProtoMessage() {}
|
|
1878
2018
|
|
|
1879
2019
|
func (x *NotificationSettings) ProtoReflect() protoreflect.Message {
|
|
1880
|
-
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[
|
|
2020
|
+
mi := &file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes[14]
|
|
1881
2021
|
if x != nil {
|
|
1882
2022
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1883
2023
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1890,7 +2030,7 @@ func (x *NotificationSettings) ProtoReflect() protoreflect.Message {
|
|
|
1890
2030
|
|
|
1891
2031
|
// Deprecated: Use NotificationSettings.ProtoReflect.Descriptor instead.
|
|
1892
2032
|
func (*NotificationSettings) Descriptor() ([]byte, []int) {
|
|
1893
|
-
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{
|
|
2033
|
+
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP(), []int{14}
|
|
1894
2034
|
}
|
|
1895
2035
|
|
|
1896
2036
|
func (x *NotificationSettings) GetMessageVibrate() string {
|
|
@@ -1937,23 +2077,228 @@ func (x *NotificationSettings) GetCallVibrate() string {
|
|
|
1937
2077
|
|
|
1938
2078
|
var File_waHistorySync_WAWebProtobufsHistorySync_proto protoreflect.FileDescriptor
|
|
1939
2079
|
|
|
1940
|
-
|
|
1941
|
-
|
|
2080
|
+
const file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDesc = "" +
|
|
2081
|
+
"\n" +
|
|
2082
|
+
"-waHistorySync/WAWebProtobufsHistorySync.proto\x12\x19WAWebProtobufsHistorySync\x1a\x1fwaSyncAction/WASyncAction.proto\x1a4waChatLockSettings/WAProtobufsChatLockSettings.proto\x1a\x1dwaE2E/WAWebProtobufsE2E.proto\x1a\x17waCommon/WACommon.proto\x1a\x1dwaWeb/WAWebProtobufsWeb.proto\"\x8c\v\n" +
|
|
2083
|
+
"\vHistorySync\x12R\n" +
|
|
2084
|
+
"\bsyncType\x18\x01 \x02(\x0e26.WAWebProtobufsHistorySync.HistorySync.HistorySyncTypeR\bsyncType\x12M\n" +
|
|
2085
|
+
"\rconversations\x18\x02 \x03(\v2'.WAWebProtobufsHistorySync.ConversationR\rconversations\x12M\n" +
|
|
2086
|
+
"\x10statusV3Messages\x18\x03 \x03(\v2!.WAWebProtobufsWeb.WebMessageInfoR\x10statusV3Messages\x12\x1e\n" +
|
|
2087
|
+
"\n" +
|
|
2088
|
+
"chunkOrder\x18\x05 \x01(\rR\n" +
|
|
2089
|
+
"chunkOrder\x12\x1a\n" +
|
|
2090
|
+
"\bprogress\x18\x06 \x01(\rR\bprogress\x12A\n" +
|
|
2091
|
+
"\tpushnames\x18\a \x03(\v2#.WAWebProtobufsHistorySync.PushnameR\tpushnames\x12Q\n" +
|
|
2092
|
+
"\x0eglobalSettings\x18\b \x01(\v2).WAWebProtobufsHistorySync.GlobalSettingsR\x0eglobalSettings\x12.\n" +
|
|
2093
|
+
"\x12threadIDUserSecret\x18\t \x01(\fR\x12threadIDUserSecret\x128\n" +
|
|
2094
|
+
"\x17threadDsTimeframeOffset\x18\n" +
|
|
2095
|
+
" \x01(\rR\x17threadDsTimeframeOffset\x12R\n" +
|
|
2096
|
+
"\x0erecentStickers\x18\v \x03(\v2*.WAWebProtobufsHistorySync.StickerMetadataR\x0erecentStickers\x12W\n" +
|
|
2097
|
+
"\x10pastParticipants\x18\f \x03(\v2+.WAWebProtobufsHistorySync.PastParticipantsR\x10pastParticipants\x12C\n" +
|
|
2098
|
+
"\x0ecallLogRecords\x18\r \x03(\v2\x1b.WASyncAction.CallLogRecordR\x0ecallLogRecords\x12c\n" +
|
|
2099
|
+
"\x0faiWaitListState\x18\x0e \x01(\x0e29.WAWebProtobufsHistorySync.HistorySync.BotAIWaitListStateR\x0faiWaitListState\x12n\n" +
|
|
2100
|
+
"\x18phoneNumberToLidMappings\x18\x0f \x03(\v22.WAWebProtobufsHistorySync.PhoneNumberToLIDMappingR\x18phoneNumberToLidMappings\x12.\n" +
|
|
2101
|
+
"\x12companionMetaNonce\x18\x10 \x01(\tR\x12companionMetaNonce\x12R\n" +
|
|
2102
|
+
"$shareableChatIdentifierEncryptionKey\x18\x11 \x01(\fR$shareableChatIdentifierEncryptionKey\x12>\n" +
|
|
2103
|
+
"\baccounts\x18\x12 \x03(\v2\".WAWebProtobufsHistorySync.AccountR\baccounts\"7\n" +
|
|
2104
|
+
"\x12BotAIWaitListState\x12\x0f\n" +
|
|
2105
|
+
"\vIN_WAITLIST\x10\x00\x12\x10\n" +
|
|
2106
|
+
"\fAI_AVAILABLE\x10\x01\"\x8a\x01\n" +
|
|
2107
|
+
"\x0fHistorySyncType\x12\x15\n" +
|
|
2108
|
+
"\x11INITIAL_BOOTSTRAP\x10\x00\x12\x15\n" +
|
|
2109
|
+
"\x11INITIAL_STATUS_V3\x10\x01\x12\b\n" +
|
|
2110
|
+
"\x04FULL\x10\x02\x12\n" +
|
|
2111
|
+
"\n" +
|
|
2112
|
+
"\x06RECENT\x10\x03\x12\r\n" +
|
|
2113
|
+
"\tPUSH_NAME\x10\x04\x12\x15\n" +
|
|
2114
|
+
"\x11NON_BLOCKING_DATA\x10\x05\x12\r\n" +
|
|
2115
|
+
"\tON_DEMAND\x10\x06\"\x87\x14\n" +
|
|
2116
|
+
"\fConversation\x12\x0e\n" +
|
|
2117
|
+
"\x02ID\x18\x01 \x02(\tR\x02ID\x12E\n" +
|
|
2118
|
+
"\bmessages\x18\x02 \x03(\v2).WAWebProtobufsHistorySync.HistorySyncMsgR\bmessages\x12\x16\n" +
|
|
2119
|
+
"\x06newJID\x18\x03 \x01(\tR\x06newJID\x12\x16\n" +
|
|
2120
|
+
"\x06oldJID\x18\x04 \x01(\tR\x06oldJID\x12*\n" +
|
|
2121
|
+
"\x10lastMsgTimestamp\x18\x05 \x01(\x04R\x10lastMsgTimestamp\x12 \n" +
|
|
2122
|
+
"\vunreadCount\x18\x06 \x01(\rR\vunreadCount\x12\x1a\n" +
|
|
2123
|
+
"\breadOnly\x18\a \x01(\bR\breadOnly\x122\n" +
|
|
2124
|
+
"\x14endOfHistoryTransfer\x18\b \x01(\bR\x14endOfHistoryTransfer\x120\n" +
|
|
2125
|
+
"\x13ephemeralExpiration\x18\t \x01(\rR\x13ephemeralExpiration\x12<\n" +
|
|
2126
|
+
"\x19ephemeralSettingTimestamp\x18\n" +
|
|
2127
|
+
" \x01(\x03R\x19ephemeralSettingTimestamp\x12|\n" +
|
|
2128
|
+
"\x18endOfHistoryTransferType\x18\v \x01(\x0e2@.WAWebProtobufsHistorySync.Conversation.EndOfHistoryTransferTypeR\x18endOfHistoryTransferType\x124\n" +
|
|
2129
|
+
"\x15conversationTimestamp\x18\f \x01(\x04R\x15conversationTimestamp\x12\x12\n" +
|
|
2130
|
+
"\x04name\x18\r \x01(\tR\x04name\x12\x14\n" +
|
|
2131
|
+
"\x05pHash\x18\x0e \x01(\tR\x05pHash\x12\x18\n" +
|
|
2132
|
+
"\anotSpam\x18\x0f \x01(\bR\anotSpam\x12\x1a\n" +
|
|
2133
|
+
"\barchived\x18\x10 \x01(\bR\barchived\x12O\n" +
|
|
2134
|
+
"\x10disappearingMode\x18\x11 \x01(\v2#.WAWebProtobufsE2E.DisappearingModeR\x10disappearingMode\x12.\n" +
|
|
2135
|
+
"\x12unreadMentionCount\x18\x12 \x01(\rR\x12unreadMentionCount\x12&\n" +
|
|
2136
|
+
"\x0emarkedAsUnread\x18\x13 \x01(\bR\x0emarkedAsUnread\x12M\n" +
|
|
2137
|
+
"\vparticipant\x18\x14 \x03(\v2+.WAWebProtobufsHistorySync.GroupParticipantR\vparticipant\x12\x18\n" +
|
|
2138
|
+
"\atcToken\x18\x15 \x01(\fR\atcToken\x12*\n" +
|
|
2139
|
+
"\x10tcTokenTimestamp\x18\x16 \x01(\x04R\x10tcTokenTimestamp\x12<\n" +
|
|
2140
|
+
"\x19contactPrimaryIdentityKey\x18\x17 \x01(\fR\x19contactPrimaryIdentityKey\x12\x16\n" +
|
|
2141
|
+
"\x06pinned\x18\x18 \x01(\rR\x06pinned\x12 \n" +
|
|
2142
|
+
"\vmuteEndTime\x18\x19 \x01(\x04R\vmuteEndTime\x12J\n" +
|
|
2143
|
+
"\twallpaper\x18\x1a \x01(\v2,.WAWebProtobufsHistorySync.WallpaperSettingsR\twallpaper\x12T\n" +
|
|
2144
|
+
"\x0fmediaVisibility\x18\x1b \x01(\x0e2*.WAWebProtobufsHistorySync.MediaVisibilityR\x0fmediaVisibility\x126\n" +
|
|
2145
|
+
"\x16tcTokenSenderTimestamp\x18\x1c \x01(\x04R\x16tcTokenSenderTimestamp\x12\x1c\n" +
|
|
2146
|
+
"\tsuspended\x18\x1d \x01(\bR\tsuspended\x12\x1e\n" +
|
|
2147
|
+
"\n" +
|
|
2148
|
+
"terminated\x18\x1e \x01(\bR\n" +
|
|
2149
|
+
"terminated\x12\x1c\n" +
|
|
2150
|
+
"\tcreatedAt\x18\x1f \x01(\x04R\tcreatedAt\x12\x1c\n" +
|
|
2151
|
+
"\tcreatedBy\x18 \x01(\tR\tcreatedBy\x12 \n" +
|
|
2152
|
+
"\vdescription\x18! \x01(\tR\vdescription\x12\x18\n" +
|
|
2153
|
+
"\asupport\x18\" \x01(\bR\asupport\x12$\n" +
|
|
2154
|
+
"\risParentGroup\x18# \x01(\bR\risParentGroup\x12$\n" +
|
|
2155
|
+
"\rparentGroupID\x18% \x01(\tR\rparentGroupID\x12,\n" +
|
|
2156
|
+
"\x11isDefaultSubgroup\x18$ \x01(\bR\x11isDefaultSubgroup\x12 \n" +
|
|
2157
|
+
"\vdisplayName\x18& \x01(\tR\vdisplayName\x12\x14\n" +
|
|
2158
|
+
"\x05pnJID\x18' \x01(\tR\x05pnJID\x12\x1e\n" +
|
|
2159
|
+
"\n" +
|
|
2160
|
+
"shareOwnPn\x18( \x01(\bR\n" +
|
|
2161
|
+
"shareOwnPn\x124\n" +
|
|
2162
|
+
"\x15pnhDuplicateLidThread\x18) \x01(\bR\x15pnhDuplicateLidThread\x12\x16\n" +
|
|
2163
|
+
"\x06lidJID\x18* \x01(\tR\x06lidJID\x12\x1a\n" +
|
|
2164
|
+
"\busername\x18+ \x01(\tR\busername\x12$\n" +
|
|
2165
|
+
"\rlidOriginType\x18, \x01(\tR\rlidOriginType\x12$\n" +
|
|
2166
|
+
"\rcommentsCount\x18- \x01(\rR\rcommentsCount\x12\x16\n" +
|
|
2167
|
+
"\x06locked\x18. \x01(\bR\x06locked\x12e\n" +
|
|
2168
|
+
"\x15systemMessageToInsert\x18/ \x01(\x0e2/.WAWebProtobufsHistorySync.PrivacySystemMessageR\x15systemMessageToInsert\x12*\n" +
|
|
2169
|
+
"\x10capiCreatedGroup\x180 \x01(\bR\x10capiCreatedGroup\x12\x1e\n" +
|
|
2170
|
+
"\n" +
|
|
2171
|
+
"accountLid\x181 \x01(\tR\n" +
|
|
2172
|
+
"accountLid\x12\"\n" +
|
|
2173
|
+
"\flimitSharing\x182 \x01(\bR\flimitSharing\x12B\n" +
|
|
2174
|
+
"\x1climitSharingSettingTimestamp\x183 \x01(\x03R\x1climitSharingSettingTimestamp\x12P\n" +
|
|
2175
|
+
"\x13limitSharingTrigger\x184 \x01(\x0e2\x1e.WACommon.LimitSharing.TriggerR\x13limitSharingTrigger\x12<\n" +
|
|
2176
|
+
"\x19limitSharingInitiatedByMe\x185 \x01(\bR\x19limitSharingInitiatedByMe\"\xbc\x01\n" +
|
|
2177
|
+
"\x18EndOfHistoryTransferType\x120\n" +
|
|
2178
|
+
",COMPLETE_BUT_MORE_MESSAGES_REMAIN_ON_PRIMARY\x10\x00\x122\n" +
|
|
2179
|
+
".COMPLETE_AND_NO_MORE_MESSAGE_REMAIN_ON_PRIMARY\x10\x01\x12:\n" +
|
|
2180
|
+
"6COMPLETE_ON_DEMAND_SYNC_BUT_MORE_MSG_REMAIN_ON_PRIMARY\x10\x02\"\xe4\x01\n" +
|
|
2181
|
+
"\x10GroupParticipant\x12\x18\n" +
|
|
2182
|
+
"\auserJID\x18\x01 \x02(\tR\auserJID\x12D\n" +
|
|
2183
|
+
"\x04rank\x18\x02 \x01(\x0e20.WAWebProtobufsHistorySync.GroupParticipant.RankR\x04rank\x12@\n" +
|
|
2184
|
+
"\vmemberLabel\x18\x03 \x01(\v2\x1e.WAWebProtobufsE2E.MemberLabelR\vmemberLabel\".\n" +
|
|
2185
|
+
"\x04Rank\x12\v\n" +
|
|
2186
|
+
"\aREGULAR\x10\x00\x12\t\n" +
|
|
2187
|
+
"\x05ADMIN\x10\x01\x12\x0e\n" +
|
|
2188
|
+
"\n" +
|
|
2189
|
+
"SUPERADMIN\x10\x02\"\xc5\x01\n" +
|
|
2190
|
+
"\x0fPastParticipant\x12\x18\n" +
|
|
2191
|
+
"\auserJID\x18\x01 \x01(\tR\auserJID\x12X\n" +
|
|
2192
|
+
"\vleaveReason\x18\x02 \x01(\x0e26.WAWebProtobufsHistorySync.PastParticipant.LeaveReasonR\vleaveReason\x12\x18\n" +
|
|
2193
|
+
"\aleaveTS\x18\x03 \x01(\x04R\aleaveTS\"$\n" +
|
|
2194
|
+
"\vLeaveReason\x12\b\n" +
|
|
2195
|
+
"\x04LEFT\x10\x00\x12\v\n" +
|
|
2196
|
+
"\aREMOVED\x10\x01\"G\n" +
|
|
2197
|
+
"\x17PhoneNumberToLIDMapping\x12\x14\n" +
|
|
2198
|
+
"\x05pnJID\x18\x01 \x01(\tR\x05pnJID\x12\x16\n" +
|
|
2199
|
+
"\x06lidJID\x18\x02 \x01(\tR\x06lidJID\"\x87\x01\n" +
|
|
2200
|
+
"\aAccount\x12\x10\n" +
|
|
2201
|
+
"\x03lid\x18\x01 \x01(\tR\x03lid\x12\x1a\n" +
|
|
2202
|
+
"\busername\x18\x02 \x01(\tR\busername\x12 \n" +
|
|
2203
|
+
"\vcountryCode\x18\x03 \x01(\tR\vcountryCode\x12,\n" +
|
|
2204
|
+
"\x11isUsernameDeleted\x18\x04 \x01(\bR\x11isUsernameDeleted\"m\n" +
|
|
2205
|
+
"\x0eHistorySyncMsg\x12;\n" +
|
|
2206
|
+
"\amessage\x18\x01 \x01(\v2!.WAWebProtobufsWeb.WebMessageInfoR\amessage\x12\x1e\n" +
|
|
2207
|
+
"\n" +
|
|
2208
|
+
"msgOrderID\x18\x02 \x01(\x04R\n" +
|
|
2209
|
+
"msgOrderID\"6\n" +
|
|
2210
|
+
"\bPushname\x12\x0e\n" +
|
|
2211
|
+
"\x02ID\x18\x01 \x01(\tR\x02ID\x12\x1a\n" +
|
|
2212
|
+
"\bpushname\x18\x02 \x01(\tR\bpushname\"I\n" +
|
|
2213
|
+
"\x11WallpaperSettings\x12\x1a\n" +
|
|
2214
|
+
"\bfilename\x18\x01 \x01(\tR\bfilename\x12\x18\n" +
|
|
2215
|
+
"\aopacity\x18\x02 \x01(\rR\aopacity\"\x97\f\n" +
|
|
2216
|
+
"\x0eGlobalSettings\x12^\n" +
|
|
2217
|
+
"\x13lightThemeWallpaper\x18\x01 \x01(\v2,.WAWebProtobufsHistorySync.WallpaperSettingsR\x13lightThemeWallpaper\x12T\n" +
|
|
2218
|
+
"\x0fmediaVisibility\x18\x02 \x01(\x0e2*.WAWebProtobufsHistorySync.MediaVisibilityR\x0fmediaVisibility\x12\\\n" +
|
|
2219
|
+
"\x12darkThemeWallpaper\x18\x03 \x01(\v2,.WAWebProtobufsHistorySync.WallpaperSettingsR\x12darkThemeWallpaper\x12[\n" +
|
|
2220
|
+
"\x10autoDownloadWiFi\x18\x04 \x01(\v2/.WAWebProtobufsHistorySync.AutoDownloadSettingsR\x10autoDownloadWiFi\x12c\n" +
|
|
2221
|
+
"\x14autoDownloadCellular\x18\x05 \x01(\v2/.WAWebProtobufsHistorySync.AutoDownloadSettingsR\x14autoDownloadCellular\x12a\n" +
|
|
2222
|
+
"\x13autoDownloadRoaming\x18\x06 \x01(\v2/.WAWebProtobufsHistorySync.AutoDownloadSettingsR\x13autoDownloadRoaming\x12N\n" +
|
|
2223
|
+
"\"showIndividualNotificationsPreview\x18\a \x01(\bR\"showIndividualNotificationsPreview\x12D\n" +
|
|
2224
|
+
"\x1dshowGroupNotificationsPreview\x18\b \x01(\bR\x1dshowGroupNotificationsPreview\x12:\n" +
|
|
2225
|
+
"\x18disappearingModeDuration\x18\t \x01(\x05R\x18disappearingModeDuration\x12<\n" +
|
|
2226
|
+
"\x19disappearingModeTimestamp\x18\n" +
|
|
2227
|
+
" \x01(\x03R\x19disappearingModeTimestamp\x12]\n" +
|
|
2228
|
+
"\x12avatarUserSettings\x18\v \x01(\v2-.WAWebProtobufsHistorySync.AvatarUserSettingsR\x12avatarUserSettings\x12\x1a\n" +
|
|
2229
|
+
"\bfontSize\x18\f \x01(\x05R\bfontSize\x124\n" +
|
|
2230
|
+
"\x15securityNotifications\x18\r \x01(\bR\x15securityNotifications\x12.\n" +
|
|
2231
|
+
"\x12autoUnarchiveChats\x18\x0e \x01(\bR\x12autoUnarchiveChats\x12*\n" +
|
|
2232
|
+
"\x10videoQualityMode\x18\x0f \x01(\x05R\x10videoQualityMode\x12*\n" +
|
|
2233
|
+
"\x10photoQualityMode\x18\x10 \x01(\x05R\x10photoQualityMode\x12w\n" +
|
|
2234
|
+
"\x1eindividualNotificationSettings\x18\x11 \x01(\v2/.WAWebProtobufsHistorySync.NotificationSettingsR\x1eindividualNotificationSettings\x12m\n" +
|
|
2235
|
+
"\x19groupNotificationSettings\x18\x12 \x01(\v2/.WAWebProtobufsHistorySync.NotificationSettingsR\x19groupNotificationSettings\x12Y\n" +
|
|
2236
|
+
"\x10chatLockSettings\x18\x13 \x01(\v2-.WAProtobufsChatLockSettings.ChatLockSettingsR\x10chatLockSettings\x12@\n" +
|
|
2237
|
+
"\x1bchatDbLidMigrationTimestamp\x18\x14 \x01(\x03R\x1bchatDbLidMigrationTimestamp\"\xb8\x01\n" +
|
|
2238
|
+
"\x14AutoDownloadSettings\x12&\n" +
|
|
2239
|
+
"\x0edownloadImages\x18\x01 \x01(\bR\x0edownloadImages\x12$\n" +
|
|
2240
|
+
"\rdownloadAudio\x18\x02 \x01(\bR\rdownloadAudio\x12$\n" +
|
|
2241
|
+
"\rdownloadVideo\x18\x03 \x01(\bR\rdownloadVideo\x12,\n" +
|
|
2242
|
+
"\x11downloadDocuments\x18\x04 \x01(\bR\x11downloadDocuments\"\xb9\x03\n" +
|
|
2243
|
+
"\x0fStickerMetadata\x12\x10\n" +
|
|
2244
|
+
"\x03URL\x18\x01 \x01(\tR\x03URL\x12\x1e\n" +
|
|
2245
|
+
"\n" +
|
|
2246
|
+
"fileSHA256\x18\x02 \x01(\fR\n" +
|
|
2247
|
+
"fileSHA256\x12$\n" +
|
|
2248
|
+
"\rfileEncSHA256\x18\x03 \x01(\fR\rfileEncSHA256\x12\x1a\n" +
|
|
2249
|
+
"\bmediaKey\x18\x04 \x01(\fR\bmediaKey\x12\x1a\n" +
|
|
2250
|
+
"\bmimetype\x18\x05 \x01(\tR\bmimetype\x12\x16\n" +
|
|
2251
|
+
"\x06height\x18\x06 \x01(\rR\x06height\x12\x14\n" +
|
|
2252
|
+
"\x05width\x18\a \x01(\rR\x05width\x12\x1e\n" +
|
|
2253
|
+
"\n" +
|
|
2254
|
+
"directPath\x18\b \x01(\tR\n" +
|
|
2255
|
+
"directPath\x12\x1e\n" +
|
|
2256
|
+
"\n" +
|
|
2257
|
+
"fileLength\x18\t \x01(\x04R\n" +
|
|
2258
|
+
"fileLength\x12\x16\n" +
|
|
2259
|
+
"\x06weight\x18\n" +
|
|
2260
|
+
" \x01(\x02R\x06weight\x12,\n" +
|
|
2261
|
+
"\x11lastStickerSentTS\x18\v \x01(\x03R\x11lastStickerSentTS\x12\x1a\n" +
|
|
2262
|
+
"\bisLottie\x18\f \x01(\bR\bisLottie\x12\x1c\n" +
|
|
2263
|
+
"\timageHash\x18\r \x01(\tR\timageHash\x12(\n" +
|
|
2264
|
+
"\x0fisAvatarSticker\x18\x0e \x01(\bR\x0fisAvatarSticker\"\x86\x01\n" +
|
|
2265
|
+
"\x10PastParticipants\x12\x1a\n" +
|
|
2266
|
+
"\bgroupJID\x18\x01 \x01(\tR\bgroupJID\x12V\n" +
|
|
2267
|
+
"\x10pastParticipants\x18\x02 \x03(\v2*.WAWebProtobufsHistorySync.PastParticipantR\x10pastParticipants\"D\n" +
|
|
2268
|
+
"\x12AvatarUserSettings\x12\x12\n" +
|
|
2269
|
+
"\x04FBID\x18\x01 \x01(\tR\x04FBID\x12\x1a\n" +
|
|
2270
|
+
"\bpassword\x18\x02 \x01(\tR\bpassword\"\x8c\x02\n" +
|
|
2271
|
+
"\x14NotificationSettings\x12&\n" +
|
|
2272
|
+
"\x0emessageVibrate\x18\x01 \x01(\tR\x0emessageVibrate\x12\"\n" +
|
|
2273
|
+
"\fmessagePopup\x18\x02 \x01(\tR\fmessagePopup\x12\"\n" +
|
|
2274
|
+
"\fmessageLight\x18\x03 \x01(\tR\fmessageLight\x12:\n" +
|
|
2275
|
+
"\x18lowPriorityNotifications\x18\x04 \x01(\bR\x18lowPriorityNotifications\x12&\n" +
|
|
2276
|
+
"\x0ereactionsMuted\x18\x05 \x01(\bR\x0ereactionsMuted\x12 \n" +
|
|
2277
|
+
"\vcallVibrate\x18\x06 \x01(\tR\vcallVibrate*/\n" +
|
|
2278
|
+
"\x0fMediaVisibility\x12\v\n" +
|
|
2279
|
+
"\aDEFAULT\x10\x00\x12\a\n" +
|
|
2280
|
+
"\x03OFF\x10\x01\x12\x06\n" +
|
|
2281
|
+
"\x02ON\x10\x02*E\n" +
|
|
2282
|
+
"\x14PrivacySystemMessage\x12\f\n" +
|
|
2283
|
+
"\bE2EE_MSG\x10\x01\x12\x0e\n" +
|
|
2284
|
+
"\n" +
|
|
2285
|
+
"NE2EE_SELF\x10\x02\x12\x0f\n" +
|
|
2286
|
+
"\vNE2EE_OTHER\x10\x03B)Z'go.mau.fi/whatsmeow/proto/waHistorySync"
|
|
1942
2287
|
|
|
1943
2288
|
var (
|
|
1944
2289
|
file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescOnce sync.Once
|
|
1945
|
-
file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescData
|
|
2290
|
+
file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescData []byte
|
|
1946
2291
|
)
|
|
1947
2292
|
|
|
1948
2293
|
func file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescGZIP() []byte {
|
|
1949
2294
|
file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescOnce.Do(func() {
|
|
1950
|
-
file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescData = protoimpl.X.CompressGZIP(
|
|
2295
|
+
file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDesc), len(file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDesc)))
|
|
1951
2296
|
})
|
|
1952
2297
|
return file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDescData
|
|
1953
2298
|
}
|
|
1954
2299
|
|
|
1955
2300
|
var file_waHistorySync_WAWebProtobufsHistorySync_proto_enumTypes = make([]protoimpl.EnumInfo, 7)
|
|
1956
|
-
var file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
2301
|
+
var file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes = make([]protoimpl.MessageInfo, 15)
|
|
1957
2302
|
var file_waHistorySync_WAWebProtobufsHistorySync_proto_goTypes = []any{
|
|
1958
2303
|
(MediaVisibility)(0), // 0: WAWebProtobufsHistorySync.MediaVisibility
|
|
1959
2304
|
(PrivacySystemMessage)(0), // 1: WAWebProtobufsHistorySync.PrivacySystemMessage
|
|
@@ -1967,57 +2312,63 @@ var file_waHistorySync_WAWebProtobufsHistorySync_proto_goTypes = []any{
|
|
|
1967
2312
|
(*GroupParticipant)(nil), // 9: WAWebProtobufsHistorySync.GroupParticipant
|
|
1968
2313
|
(*PastParticipant)(nil), // 10: WAWebProtobufsHistorySync.PastParticipant
|
|
1969
2314
|
(*PhoneNumberToLIDMapping)(nil), // 11: WAWebProtobufsHistorySync.PhoneNumberToLIDMapping
|
|
1970
|
-
(*
|
|
1971
|
-
(*
|
|
1972
|
-
(*
|
|
1973
|
-
(*
|
|
1974
|
-
(*
|
|
1975
|
-
(*
|
|
1976
|
-
(*
|
|
1977
|
-
(*
|
|
1978
|
-
(*
|
|
1979
|
-
(*
|
|
1980
|
-
(*
|
|
1981
|
-
(*
|
|
1982
|
-
(*
|
|
2315
|
+
(*Account)(nil), // 12: WAWebProtobufsHistorySync.Account
|
|
2316
|
+
(*HistorySyncMsg)(nil), // 13: WAWebProtobufsHistorySync.HistorySyncMsg
|
|
2317
|
+
(*Pushname)(nil), // 14: WAWebProtobufsHistorySync.Pushname
|
|
2318
|
+
(*WallpaperSettings)(nil), // 15: WAWebProtobufsHistorySync.WallpaperSettings
|
|
2319
|
+
(*GlobalSettings)(nil), // 16: WAWebProtobufsHistorySync.GlobalSettings
|
|
2320
|
+
(*AutoDownloadSettings)(nil), // 17: WAWebProtobufsHistorySync.AutoDownloadSettings
|
|
2321
|
+
(*StickerMetadata)(nil), // 18: WAWebProtobufsHistorySync.StickerMetadata
|
|
2322
|
+
(*PastParticipants)(nil), // 19: WAWebProtobufsHistorySync.PastParticipants
|
|
2323
|
+
(*AvatarUserSettings)(nil), // 20: WAWebProtobufsHistorySync.AvatarUserSettings
|
|
2324
|
+
(*NotificationSettings)(nil), // 21: WAWebProtobufsHistorySync.NotificationSettings
|
|
2325
|
+
(*waWeb.WebMessageInfo)(nil), // 22: WAWebProtobufsWeb.WebMessageInfo
|
|
2326
|
+
(*waSyncAction.CallLogRecord)(nil), // 23: WASyncAction.CallLogRecord
|
|
2327
|
+
(*waE2E.DisappearingMode)(nil), // 24: WAWebProtobufsE2E.DisappearingMode
|
|
2328
|
+
(waCommon.LimitSharing_Trigger)(0), // 25: WACommon.LimitSharing.Trigger
|
|
2329
|
+
(*waE2E.MemberLabel)(nil), // 26: WAWebProtobufsE2E.MemberLabel
|
|
2330
|
+
(*waChatLockSettings.ChatLockSettings)(nil), // 27: WAProtobufsChatLockSettings.ChatLockSettings
|
|
1983
2331
|
}
|
|
1984
2332
|
var file_waHistorySync_WAWebProtobufsHistorySync_proto_depIdxs = []int32{
|
|
1985
2333
|
3, // 0: WAWebProtobufsHistorySync.HistorySync.syncType:type_name -> WAWebProtobufsHistorySync.HistorySync.HistorySyncType
|
|
1986
2334
|
8, // 1: WAWebProtobufsHistorySync.HistorySync.conversations:type_name -> WAWebProtobufsHistorySync.Conversation
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
2335
|
+
22, // 2: WAWebProtobufsHistorySync.HistorySync.statusV3Messages:type_name -> WAWebProtobufsWeb.WebMessageInfo
|
|
2336
|
+
14, // 3: WAWebProtobufsHistorySync.HistorySync.pushnames:type_name -> WAWebProtobufsHistorySync.Pushname
|
|
2337
|
+
16, // 4: WAWebProtobufsHistorySync.HistorySync.globalSettings:type_name -> WAWebProtobufsHistorySync.GlobalSettings
|
|
2338
|
+
18, // 5: WAWebProtobufsHistorySync.HistorySync.recentStickers:type_name -> WAWebProtobufsHistorySync.StickerMetadata
|
|
2339
|
+
19, // 6: WAWebProtobufsHistorySync.HistorySync.pastParticipants:type_name -> WAWebProtobufsHistorySync.PastParticipants
|
|
2340
|
+
23, // 7: WAWebProtobufsHistorySync.HistorySync.callLogRecords:type_name -> WASyncAction.CallLogRecord
|
|
1993
2341
|
2, // 8: WAWebProtobufsHistorySync.HistorySync.aiWaitListState:type_name -> WAWebProtobufsHistorySync.HistorySync.BotAIWaitListState
|
|
1994
2342
|
11, // 9: WAWebProtobufsHistorySync.HistorySync.phoneNumberToLidMappings:type_name -> WAWebProtobufsHistorySync.PhoneNumberToLIDMapping
|
|
1995
|
-
12, // 10: WAWebProtobufsHistorySync.
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2343
|
+
12, // 10: WAWebProtobufsHistorySync.HistorySync.accounts:type_name -> WAWebProtobufsHistorySync.Account
|
|
2344
|
+
13, // 11: WAWebProtobufsHistorySync.Conversation.messages:type_name -> WAWebProtobufsHistorySync.HistorySyncMsg
|
|
2345
|
+
4, // 12: WAWebProtobufsHistorySync.Conversation.endOfHistoryTransferType:type_name -> WAWebProtobufsHistorySync.Conversation.EndOfHistoryTransferType
|
|
2346
|
+
24, // 13: WAWebProtobufsHistorySync.Conversation.disappearingMode:type_name -> WAWebProtobufsE2E.DisappearingMode
|
|
2347
|
+
9, // 14: WAWebProtobufsHistorySync.Conversation.participant:type_name -> WAWebProtobufsHistorySync.GroupParticipant
|
|
2348
|
+
15, // 15: WAWebProtobufsHistorySync.Conversation.wallpaper:type_name -> WAWebProtobufsHistorySync.WallpaperSettings
|
|
2349
|
+
0, // 16: WAWebProtobufsHistorySync.Conversation.mediaVisibility:type_name -> WAWebProtobufsHistorySync.MediaVisibility
|
|
2350
|
+
1, // 17: WAWebProtobufsHistorySync.Conversation.systemMessageToInsert:type_name -> WAWebProtobufsHistorySync.PrivacySystemMessage
|
|
2351
|
+
25, // 18: WAWebProtobufsHistorySync.Conversation.limitSharingTrigger:type_name -> WACommon.LimitSharing.Trigger
|
|
2352
|
+
5, // 19: WAWebProtobufsHistorySync.GroupParticipant.rank:type_name -> WAWebProtobufsHistorySync.GroupParticipant.Rank
|
|
2353
|
+
26, // 20: WAWebProtobufsHistorySync.GroupParticipant.memberLabel:type_name -> WAWebProtobufsE2E.MemberLabel
|
|
2354
|
+
6, // 21: WAWebProtobufsHistorySync.PastParticipant.leaveReason:type_name -> WAWebProtobufsHistorySync.PastParticipant.LeaveReason
|
|
2355
|
+
22, // 22: WAWebProtobufsHistorySync.HistorySyncMsg.message:type_name -> WAWebProtobufsWeb.WebMessageInfo
|
|
2356
|
+
15, // 23: WAWebProtobufsHistorySync.GlobalSettings.lightThemeWallpaper:type_name -> WAWebProtobufsHistorySync.WallpaperSettings
|
|
2357
|
+
0, // 24: WAWebProtobufsHistorySync.GlobalSettings.mediaVisibility:type_name -> WAWebProtobufsHistorySync.MediaVisibility
|
|
2358
|
+
15, // 25: WAWebProtobufsHistorySync.GlobalSettings.darkThemeWallpaper:type_name -> WAWebProtobufsHistorySync.WallpaperSettings
|
|
2359
|
+
17, // 26: WAWebProtobufsHistorySync.GlobalSettings.autoDownloadWiFi:type_name -> WAWebProtobufsHistorySync.AutoDownloadSettings
|
|
2360
|
+
17, // 27: WAWebProtobufsHistorySync.GlobalSettings.autoDownloadCellular:type_name -> WAWebProtobufsHistorySync.AutoDownloadSettings
|
|
2361
|
+
17, // 28: WAWebProtobufsHistorySync.GlobalSettings.autoDownloadRoaming:type_name -> WAWebProtobufsHistorySync.AutoDownloadSettings
|
|
2362
|
+
20, // 29: WAWebProtobufsHistorySync.GlobalSettings.avatarUserSettings:type_name -> WAWebProtobufsHistorySync.AvatarUserSettings
|
|
2363
|
+
21, // 30: WAWebProtobufsHistorySync.GlobalSettings.individualNotificationSettings:type_name -> WAWebProtobufsHistorySync.NotificationSettings
|
|
2364
|
+
21, // 31: WAWebProtobufsHistorySync.GlobalSettings.groupNotificationSettings:type_name -> WAWebProtobufsHistorySync.NotificationSettings
|
|
2365
|
+
27, // 32: WAWebProtobufsHistorySync.GlobalSettings.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
|
|
2366
|
+
10, // 33: WAWebProtobufsHistorySync.PastParticipants.pastParticipants:type_name -> WAWebProtobufsHistorySync.PastParticipant
|
|
2367
|
+
34, // [34:34] is the sub-list for method output_type
|
|
2368
|
+
34, // [34:34] is the sub-list for method input_type
|
|
2369
|
+
34, // [34:34] is the sub-list for extension type_name
|
|
2370
|
+
34, // [34:34] is the sub-list for extension extendee
|
|
2371
|
+
0, // [0:34] is the sub-list for field type_name
|
|
2021
2372
|
}
|
|
2022
2373
|
|
|
2023
2374
|
func init() { file_waHistorySync_WAWebProtobufsHistorySync_proto_init() }
|
|
@@ -2029,9 +2380,9 @@ func file_waHistorySync_WAWebProtobufsHistorySync_proto_init() {
|
|
|
2029
2380
|
out := protoimpl.TypeBuilder{
|
|
2030
2381
|
File: protoimpl.DescBuilder{
|
|
2031
2382
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
2032
|
-
RawDescriptor: file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDesc,
|
|
2383
|
+
RawDescriptor: unsafe.Slice(unsafe.StringData(file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDesc), len(file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDesc)),
|
|
2033
2384
|
NumEnums: 7,
|
|
2034
|
-
NumMessages:
|
|
2385
|
+
NumMessages: 15,
|
|
2035
2386
|
NumExtensions: 0,
|
|
2036
2387
|
NumServices: 0,
|
|
2037
2388
|
},
|
|
@@ -2041,7 +2392,6 @@ func file_waHistorySync_WAWebProtobufsHistorySync_proto_init() {
|
|
|
2041
2392
|
MessageInfos: file_waHistorySync_WAWebProtobufsHistorySync_proto_msgTypes,
|
|
2042
2393
|
}.Build()
|
|
2043
2394
|
File_waHistorySync_WAWebProtobufsHistorySync_proto = out.File
|
|
2044
|
-
file_waHistorySync_WAWebProtobufsHistorySync_proto_rawDesc = nil
|
|
2045
2395
|
file_waHistorySync_WAWebProtobufsHistorySync_proto_goTypes = nil
|
|
2046
2396
|
file_waHistorySync_WAWebProtobufsHistorySync_proto_depIdxs = nil
|
|
2047
2397
|
}
|