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.proto
CHANGED
|
@@ -5,6 +5,7 @@ option go_package = "go.mau.fi/whatsmeow/proto/waHistorySync";
|
|
|
5
5
|
import "waSyncAction/WASyncAction.proto";
|
|
6
6
|
import "waChatLockSettings/WAProtobufsChatLockSettings.proto";
|
|
7
7
|
import "waE2E/WAWebProtobufsE2E.proto";
|
|
8
|
+
import "waCommon/WACommon.proto";
|
|
8
9
|
import "waWeb/WAWebProtobufsWeb.proto";
|
|
9
10
|
|
|
10
11
|
enum MediaVisibility {
|
|
@@ -51,6 +52,7 @@ message HistorySync {
|
|
|
51
52
|
repeated PhoneNumberToLIDMapping phoneNumberToLidMappings = 15;
|
|
52
53
|
optional string companionMetaNonce = 16;
|
|
53
54
|
optional bytes shareableChatIdentifierEncryptionKey = 17;
|
|
55
|
+
repeated Account accounts = 18;
|
|
54
56
|
}
|
|
55
57
|
|
|
56
58
|
message Conversation {
|
|
@@ -109,6 +111,10 @@ message Conversation {
|
|
|
109
111
|
optional PrivacySystemMessage systemMessageToInsert = 47;
|
|
110
112
|
optional bool capiCreatedGroup = 48;
|
|
111
113
|
optional string accountLid = 49;
|
|
114
|
+
optional bool limitSharing = 50;
|
|
115
|
+
optional int64 limitSharingSettingTimestamp = 51;
|
|
116
|
+
optional WACommon.LimitSharing.Trigger limitSharingTrigger = 52;
|
|
117
|
+
optional bool limitSharingInitiatedByMe = 53;
|
|
112
118
|
}
|
|
113
119
|
|
|
114
120
|
message GroupParticipant {
|
|
@@ -120,6 +126,7 @@ message GroupParticipant {
|
|
|
120
126
|
|
|
121
127
|
required string userJID = 1;
|
|
122
128
|
optional Rank rank = 2;
|
|
129
|
+
optional WAWebProtobufsE2E.MemberLabel memberLabel = 3;
|
|
123
130
|
}
|
|
124
131
|
|
|
125
132
|
message PastParticipant {
|
|
@@ -138,6 +145,13 @@ message PhoneNumberToLIDMapping {
|
|
|
138
145
|
optional string lidJID = 2;
|
|
139
146
|
}
|
|
140
147
|
|
|
148
|
+
message Account {
|
|
149
|
+
optional string lid = 1;
|
|
150
|
+
optional string username = 2;
|
|
151
|
+
optional string countryCode = 3;
|
|
152
|
+
optional bool isUsernameDeleted = 4;
|
|
153
|
+
}
|
|
154
|
+
|
|
141
155
|
message HistorySyncMsg {
|
|
142
156
|
optional WAWebProtobufsWeb.WebMessageInfo message = 1;
|
|
143
157
|
optional uint64 msgOrderID = 2;
|
|
@@ -173,6 +187,7 @@ message GlobalSettings {
|
|
|
173
187
|
optional NotificationSettings individualNotificationSettings = 17;
|
|
174
188
|
optional NotificationSettings groupNotificationSettings = 18;
|
|
175
189
|
optional WAProtobufsChatLockSettings.ChatLockSettings chatLockSettings = 19;
|
|
190
|
+
optional int64 chatDbLidMigrationTimestamp = 20;
|
|
176
191
|
}
|
|
177
192
|
|
|
178
193
|
message AutoDownloadSettings {
|
|
@@ -195,6 +210,8 @@ message StickerMetadata {
|
|
|
195
210
|
optional float weight = 10;
|
|
196
211
|
optional int64 lastStickerSentTS = 11;
|
|
197
212
|
optional bool isLottie = 12;
|
|
213
|
+
optional string imageHash = 13;
|
|
214
|
+
optional bool isAvatarSticker = 14;
|
|
198
215
|
}
|
|
199
216
|
|
|
200
217
|
message PastParticipants {
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
2
|
+
// versions:
|
|
3
|
+
// protoc-gen-go v1.36.6
|
|
4
|
+
// protoc v3.21.12
|
|
5
|
+
// source: waLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.proto
|
|
6
|
+
|
|
7
|
+
package waLidMigrationSyncPayload
|
|
8
|
+
|
|
9
|
+
import (
|
|
10
|
+
reflect "reflect"
|
|
11
|
+
sync "sync"
|
|
12
|
+
unsafe "unsafe"
|
|
13
|
+
|
|
14
|
+
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
15
|
+
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
const (
|
|
19
|
+
// Verify that this generated code is sufficiently up-to-date.
|
|
20
|
+
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
21
|
+
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
22
|
+
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
type LIDMigrationMapping struct {
|
|
26
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
27
|
+
Pn *uint64 `protobuf:"varint,1,req,name=pn" json:"pn,omitempty"`
|
|
28
|
+
AssignedLid *uint64 `protobuf:"varint,2,req,name=assignedLid" json:"assignedLid,omitempty"`
|
|
29
|
+
LatestLid *uint64 `protobuf:"varint,3,opt,name=latestLid" json:"latestLid,omitempty"`
|
|
30
|
+
unknownFields protoimpl.UnknownFields
|
|
31
|
+
sizeCache protoimpl.SizeCache
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
func (x *LIDMigrationMapping) Reset() {
|
|
35
|
+
*x = LIDMigrationMapping{}
|
|
36
|
+
mi := &file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_msgTypes[0]
|
|
37
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
38
|
+
ms.StoreMessageInfo(mi)
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
func (x *LIDMigrationMapping) String() string {
|
|
42
|
+
return protoimpl.X.MessageStringOf(x)
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
func (*LIDMigrationMapping) ProtoMessage() {}
|
|
46
|
+
|
|
47
|
+
func (x *LIDMigrationMapping) ProtoReflect() protoreflect.Message {
|
|
48
|
+
mi := &file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_msgTypes[0]
|
|
49
|
+
if x != nil {
|
|
50
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
51
|
+
if ms.LoadMessageInfo() == nil {
|
|
52
|
+
ms.StoreMessageInfo(mi)
|
|
53
|
+
}
|
|
54
|
+
return ms
|
|
55
|
+
}
|
|
56
|
+
return mi.MessageOf(x)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// Deprecated: Use LIDMigrationMapping.ProtoReflect.Descriptor instead.
|
|
60
|
+
func (*LIDMigrationMapping) Descriptor() ([]byte, []int) {
|
|
61
|
+
return file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_rawDescGZIP(), []int{0}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
func (x *LIDMigrationMapping) GetPn() uint64 {
|
|
65
|
+
if x != nil && x.Pn != nil {
|
|
66
|
+
return *x.Pn
|
|
67
|
+
}
|
|
68
|
+
return 0
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
func (x *LIDMigrationMapping) GetAssignedLid() uint64 {
|
|
72
|
+
if x != nil && x.AssignedLid != nil {
|
|
73
|
+
return *x.AssignedLid
|
|
74
|
+
}
|
|
75
|
+
return 0
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
func (x *LIDMigrationMapping) GetLatestLid() uint64 {
|
|
79
|
+
if x != nil && x.LatestLid != nil {
|
|
80
|
+
return *x.LatestLid
|
|
81
|
+
}
|
|
82
|
+
return 0
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
type LIDMigrationMappingSyncPayload struct {
|
|
86
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
87
|
+
PnToLidMappings []*LIDMigrationMapping `protobuf:"bytes,1,rep,name=pnToLidMappings" json:"pnToLidMappings,omitempty"`
|
|
88
|
+
ChatDbMigrationTimestamp *uint64 `protobuf:"varint,2,opt,name=chatDbMigrationTimestamp" json:"chatDbMigrationTimestamp,omitempty"`
|
|
89
|
+
unknownFields protoimpl.UnknownFields
|
|
90
|
+
sizeCache protoimpl.SizeCache
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
func (x *LIDMigrationMappingSyncPayload) Reset() {
|
|
94
|
+
*x = LIDMigrationMappingSyncPayload{}
|
|
95
|
+
mi := &file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_msgTypes[1]
|
|
96
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
97
|
+
ms.StoreMessageInfo(mi)
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
func (x *LIDMigrationMappingSyncPayload) String() string {
|
|
101
|
+
return protoimpl.X.MessageStringOf(x)
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
func (*LIDMigrationMappingSyncPayload) ProtoMessage() {}
|
|
105
|
+
|
|
106
|
+
func (x *LIDMigrationMappingSyncPayload) ProtoReflect() protoreflect.Message {
|
|
107
|
+
mi := &file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_msgTypes[1]
|
|
108
|
+
if x != nil {
|
|
109
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
110
|
+
if ms.LoadMessageInfo() == nil {
|
|
111
|
+
ms.StoreMessageInfo(mi)
|
|
112
|
+
}
|
|
113
|
+
return ms
|
|
114
|
+
}
|
|
115
|
+
return mi.MessageOf(x)
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
// Deprecated: Use LIDMigrationMappingSyncPayload.ProtoReflect.Descriptor instead.
|
|
119
|
+
func (*LIDMigrationMappingSyncPayload) Descriptor() ([]byte, []int) {
|
|
120
|
+
return file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_rawDescGZIP(), []int{1}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
func (x *LIDMigrationMappingSyncPayload) GetPnToLidMappings() []*LIDMigrationMapping {
|
|
124
|
+
if x != nil {
|
|
125
|
+
return x.PnToLidMappings
|
|
126
|
+
}
|
|
127
|
+
return nil
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
func (x *LIDMigrationMappingSyncPayload) GetChatDbMigrationTimestamp() uint64 {
|
|
131
|
+
if x != nil && x.ChatDbMigrationTimestamp != nil {
|
|
132
|
+
return *x.ChatDbMigrationTimestamp
|
|
133
|
+
}
|
|
134
|
+
return 0
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
var File_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto protoreflect.FileDescriptor
|
|
138
|
+
|
|
139
|
+
const file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_rawDesc = "" +
|
|
140
|
+
"\n" +
|
|
141
|
+
"DwaLidMigrationSyncPayload/WAWebProtobufLidMigrationSyncPayload.proto\x12$WAWebProtobufLidMigrationSyncPayload\"e\n" +
|
|
142
|
+
"\x13LIDMigrationMapping\x12\x0e\n" +
|
|
143
|
+
"\x02pn\x18\x01 \x02(\x04R\x02pn\x12 \n" +
|
|
144
|
+
"\vassignedLid\x18\x02 \x02(\x04R\vassignedLid\x12\x1c\n" +
|
|
145
|
+
"\tlatestLid\x18\x03 \x01(\x04R\tlatestLid\"\xc1\x01\n" +
|
|
146
|
+
"\x1eLIDMigrationMappingSyncPayload\x12c\n" +
|
|
147
|
+
"\x0fpnToLidMappings\x18\x01 \x03(\v29.WAWebProtobufLidMigrationSyncPayload.LIDMigrationMappingR\x0fpnToLidMappings\x12:\n" +
|
|
148
|
+
"\x18chatDbMigrationTimestamp\x18\x02 \x01(\x04R\x18chatDbMigrationTimestampB5Z3go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload"
|
|
149
|
+
|
|
150
|
+
var (
|
|
151
|
+
file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_rawDescOnce sync.Once
|
|
152
|
+
file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_rawDescData []byte
|
|
153
|
+
)
|
|
154
|
+
|
|
155
|
+
func file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_rawDescGZIP() []byte {
|
|
156
|
+
file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_rawDescOnce.Do(func() {
|
|
157
|
+
file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_rawDesc), len(file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_rawDesc)))
|
|
158
|
+
})
|
|
159
|
+
return file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_rawDescData
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
var file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
|
163
|
+
var file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_goTypes = []any{
|
|
164
|
+
(*LIDMigrationMapping)(nil), // 0: WAWebProtobufLidMigrationSyncPayload.LIDMigrationMapping
|
|
165
|
+
(*LIDMigrationMappingSyncPayload)(nil), // 1: WAWebProtobufLidMigrationSyncPayload.LIDMigrationMappingSyncPayload
|
|
166
|
+
}
|
|
167
|
+
var file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_depIdxs = []int32{
|
|
168
|
+
0, // 0: WAWebProtobufLidMigrationSyncPayload.LIDMigrationMappingSyncPayload.pnToLidMappings:type_name -> WAWebProtobufLidMigrationSyncPayload.LIDMigrationMapping
|
|
169
|
+
1, // [1:1] is the sub-list for method output_type
|
|
170
|
+
1, // [1:1] is the sub-list for method input_type
|
|
171
|
+
1, // [1:1] is the sub-list for extension type_name
|
|
172
|
+
1, // [1:1] is the sub-list for extension extendee
|
|
173
|
+
0, // [0:1] is the sub-list for field type_name
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
func init() { file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_init() }
|
|
177
|
+
func file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_init() {
|
|
178
|
+
if File_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto != nil {
|
|
179
|
+
return
|
|
180
|
+
}
|
|
181
|
+
type x struct{}
|
|
182
|
+
out := protoimpl.TypeBuilder{
|
|
183
|
+
File: protoimpl.DescBuilder{
|
|
184
|
+
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
185
|
+
RawDescriptor: unsafe.Slice(unsafe.StringData(file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_rawDesc), len(file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_rawDesc)),
|
|
186
|
+
NumEnums: 0,
|
|
187
|
+
NumMessages: 2,
|
|
188
|
+
NumExtensions: 0,
|
|
189
|
+
NumServices: 0,
|
|
190
|
+
},
|
|
191
|
+
GoTypes: file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_goTypes,
|
|
192
|
+
DependencyIndexes: file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_depIdxs,
|
|
193
|
+
MessageInfos: file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_msgTypes,
|
|
194
|
+
}.Build()
|
|
195
|
+
File_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto = out.File
|
|
196
|
+
file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_goTypes = nil
|
|
197
|
+
file_waLidMigrationSyncPayload_WAWebProtobufLidMigrationSyncPayload_proto_depIdxs = nil
|
|
198
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
syntax = "proto2";
|
|
2
|
+
package WAWebProtobufLidMigrationSyncPayload;
|
|
3
|
+
option go_package = "go.mau.fi/whatsmeow/proto/waLidMigrationSyncPayload";
|
|
4
|
+
|
|
5
|
+
message LIDMigrationMapping {
|
|
6
|
+
required uint64 pn = 1;
|
|
7
|
+
required uint64 assignedLid = 2;
|
|
8
|
+
optional uint64 latestLid = 3;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
message LIDMigrationMappingSyncPayload {
|
|
12
|
+
repeated LIDMigrationMapping pnToLidMappings = 1;
|
|
13
|
+
optional uint64 chatDbMigrationTimestamp = 2;
|
|
14
|
+
}
|
|
@@ -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: waMediaTransport/WAMediaTransport.proto
|
|
6
6
|
|
|
@@ -9,13 +9,12 @@ package waMediaTransport
|
|
|
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
|
waCommon "go.mau.fi/whatsmeow/proto/waCommon"
|
|
17
|
-
|
|
18
|
-
_ "embed"
|
|
19
18
|
)
|
|
20
19
|
|
|
21
20
|
const (
|
|
@@ -1094,6 +1093,7 @@ type VideoTransport_Ancillary struct {
|
|
|
1094
1093
|
Sidecar []byte `protobuf:"bytes,6,opt,name=sidecar" json:"sidecar,omitempty"`
|
|
1095
1094
|
GifAttribution *VideoTransport_Ancillary_Attribution `protobuf:"varint,7,opt,name=gifAttribution,enum=WAMediaTransport.VideoTransport_Ancillary_Attribution" json:"gifAttribution,omitempty"`
|
|
1096
1095
|
AccessibilityLabel *string `protobuf:"bytes,8,opt,name=accessibilityLabel" json:"accessibilityLabel,omitempty"`
|
|
1096
|
+
IsHd *bool `protobuf:"varint,9,opt,name=isHd" json:"isHd,omitempty"`
|
|
1097
1097
|
unknownFields protoimpl.UnknownFields
|
|
1098
1098
|
sizeCache protoimpl.SizeCache
|
|
1099
1099
|
}
|
|
@@ -1184,6 +1184,13 @@ func (x *VideoTransport_Ancillary) GetAccessibilityLabel() string {
|
|
|
1184
1184
|
return ""
|
|
1185
1185
|
}
|
|
1186
1186
|
|
|
1187
|
+
func (x *VideoTransport_Ancillary) GetIsHd() bool {
|
|
1188
|
+
if x != nil && x.IsHd != nil {
|
|
1189
|
+
return *x.IsHd
|
|
1190
|
+
}
|
|
1191
|
+
return false
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1187
1194
|
type VideoTransport_Integral struct {
|
|
1188
1195
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1189
1196
|
Transport *WAMediaTransport `protobuf:"bytes,1,opt,name=transport" json:"transport,omitempty"`
|
|
@@ -1860,17 +1867,164 @@ func (*ContactTransport_Integral_DownloadableVcard) isContactTransport_Integral_
|
|
|
1860
1867
|
|
|
1861
1868
|
var File_waMediaTransport_WAMediaTransport_proto protoreflect.FileDescriptor
|
|
1862
1869
|
|
|
1863
|
-
|
|
1864
|
-
|
|
1870
|
+
const file_waMediaTransport_WAMediaTransport_proto_rawDesc = "" +
|
|
1871
|
+
"\n" +
|
|
1872
|
+
"'waMediaTransport/WAMediaTransport.proto\x12\x10WAMediaTransport\x1a\x17waCommon/WACommon.proto\"\xfb\b\n" +
|
|
1873
|
+
"\x10WAMediaTransport\x12G\n" +
|
|
1874
|
+
"\bintegral\x18\x01 \x01(\v2+.WAMediaTransport.WAMediaTransport.IntegralR\bintegral\x12J\n" +
|
|
1875
|
+
"\tancillary\x18\x02 \x01(\v2,.WAMediaTransport.WAMediaTransport.AncillaryR\tancillary\x1a\x94\x06\n" +
|
|
1876
|
+
"\tAncillary\x12\x1e\n" +
|
|
1877
|
+
"\n" +
|
|
1878
|
+
"fileLength\x18\x01 \x01(\x04R\n" +
|
|
1879
|
+
"fileLength\x12\x1a\n" +
|
|
1880
|
+
"\bmimetype\x18\x02 \x01(\tR\bmimetype\x12T\n" +
|
|
1881
|
+
"\tthumbnail\x18\x03 \x01(\v26.WAMediaTransport.WAMediaTransport.Ancillary.ThumbnailR\tthumbnail\x12\x1a\n" +
|
|
1882
|
+
"\bobjectID\x18\x04 \x01(\tR\bobjectID\x1a\xd8\x04\n" +
|
|
1883
|
+
"\tThumbnail\x12$\n" +
|
|
1884
|
+
"\rJPEGThumbnail\x18\x01 \x01(\fR\rJPEGThumbnail\x12\x82\x01\n" +
|
|
1885
|
+
"\x15downloadableThumbnail\x18\x02 \x01(\v2L.WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail.DownloadableThumbnailR\x15downloadableThumbnail\x12&\n" +
|
|
1886
|
+
"\x0ethumbnailWidth\x18\x03 \x01(\rR\x0ethumbnailWidth\x12(\n" +
|
|
1887
|
+
"\x0fthumbnailHeight\x18\x04 \x01(\rR\x0fthumbnailHeight\x1a\xcd\x02\n" +
|
|
1888
|
+
"\x15DownloadableThumbnail\x12\x1e\n" +
|
|
1889
|
+
"\n" +
|
|
1890
|
+
"fileSHA256\x18\x01 \x01(\fR\n" +
|
|
1891
|
+
"fileSHA256\x12$\n" +
|
|
1892
|
+
"\rfileEncSHA256\x18\x02 \x01(\fR\rfileEncSHA256\x12\x1e\n" +
|
|
1893
|
+
"\n" +
|
|
1894
|
+
"directPath\x18\x03 \x01(\tR\n" +
|
|
1895
|
+
"directPath\x12\x1a\n" +
|
|
1896
|
+
"\bmediaKey\x18\x04 \x01(\fR\bmediaKey\x12,\n" +
|
|
1897
|
+
"\x11mediaKeyTimestamp\x18\x05 \x01(\x03R\x11mediaKeyTimestamp\x12\x1a\n" +
|
|
1898
|
+
"\bobjectID\x18\x06 \x01(\tR\bobjectID\x124\n" +
|
|
1899
|
+
"\x15thumbnailScansSidecar\x18\a \x01(\fR\x15thumbnailScansSidecar\x122\n" +
|
|
1900
|
+
"\x14thumbnailScanLengths\x18\b \x03(\rR\x14thumbnailScanLengths\x1a\xba\x01\n" +
|
|
1901
|
+
"\bIntegral\x12\x1e\n" +
|
|
1902
|
+
"\n" +
|
|
1903
|
+
"fileSHA256\x18\x01 \x01(\fR\n" +
|
|
1904
|
+
"fileSHA256\x12\x1a\n" +
|
|
1905
|
+
"\bmediaKey\x18\x02 \x01(\fR\bmediaKey\x12$\n" +
|
|
1906
|
+
"\rfileEncSHA256\x18\x03 \x01(\fR\rfileEncSHA256\x12\x1e\n" +
|
|
1907
|
+
"\n" +
|
|
1908
|
+
"directPath\x18\x04 \x01(\tR\n" +
|
|
1909
|
+
"directPath\x12,\n" +
|
|
1910
|
+
"\x11mediaKeyTimestamp\x18\x05 \x01(\x03R\x11mediaKeyTimestamp\"\x88\x05\n" +
|
|
1911
|
+
"\x0eImageTransport\x12E\n" +
|
|
1912
|
+
"\bintegral\x18\x01 \x01(\v2).WAMediaTransport.ImageTransport.IntegralR\bintegral\x12H\n" +
|
|
1913
|
+
"\tancillary\x18\x02 \x01(\v2*.WAMediaTransport.ImageTransport.AncillaryR\tancillary\x1a\x96\x03\n" +
|
|
1914
|
+
"\tAncillary\x12\x16\n" +
|
|
1915
|
+
"\x06height\x18\x01 \x01(\rR\x06height\x12\x14\n" +
|
|
1916
|
+
"\x05width\x18\x02 \x01(\rR\x05width\x12\"\n" +
|
|
1917
|
+
"\fscansSidecar\x18\x03 \x01(\fR\fscansSidecar\x12 \n" +
|
|
1918
|
+
"\vscanLengths\x18\x04 \x03(\rR\vscanLengths\x122\n" +
|
|
1919
|
+
"\x14midQualityFileSHA256\x18\x05 \x01(\fR\x14midQualityFileSHA256\x12I\n" +
|
|
1920
|
+
"\x06hdType\x18\x06 \x01(\x0e21.WAMediaTransport.ImageTransport.Ancillary.HdTypeR\x06hdType\x128\n" +
|
|
1921
|
+
"\x15memoriesConceptScores\x18\a \x03(\x02B\x02\x10\x01R\x15memoriesConceptScores\x122\n" +
|
|
1922
|
+
"\x12memoriesConceptIDs\x18\b \x03(\rB\x02\x10\x01R\x12memoriesConceptIDs\"(\n" +
|
|
1923
|
+
"\x06HdType\x12\b\n" +
|
|
1924
|
+
"\x04NONE\x10\x00\x12\t\n" +
|
|
1925
|
+
"\x05LQ_4K\x10\x01\x12\t\n" +
|
|
1926
|
+
"\x05HQ_4K\x10\x02\x1aL\n" +
|
|
1927
|
+
"\bIntegral\x12@\n" +
|
|
1928
|
+
"\ttransport\x18\x01 \x01(\v2\".WAMediaTransport.WAMediaTransportR\ttransport\"\x85\x05\n" +
|
|
1929
|
+
"\x0eVideoTransport\x12E\n" +
|
|
1930
|
+
"\bintegral\x18\x01 \x01(\v2).WAMediaTransport.VideoTransport.IntegralR\bintegral\x12H\n" +
|
|
1931
|
+
"\tancillary\x18\x02 \x01(\v2*.WAMediaTransport.VideoTransport.AncillaryR\tancillary\x1a\x93\x03\n" +
|
|
1932
|
+
"\tAncillary\x12\x18\n" +
|
|
1933
|
+
"\aseconds\x18\x01 \x01(\rR\aseconds\x12/\n" +
|
|
1934
|
+
"\acaption\x18\x02 \x01(\v2\x15.WACommon.MessageTextR\acaption\x12 \n" +
|
|
1935
|
+
"\vgifPlayback\x18\x03 \x01(\bR\vgifPlayback\x12\x16\n" +
|
|
1936
|
+
"\x06height\x18\x04 \x01(\rR\x06height\x12\x14\n" +
|
|
1937
|
+
"\x05width\x18\x05 \x01(\rR\x05width\x12\x18\n" +
|
|
1938
|
+
"\asidecar\x18\x06 \x01(\fR\asidecar\x12^\n" +
|
|
1939
|
+
"\x0egifAttribution\x18\a \x01(\x0e26.WAMediaTransport.VideoTransport.Ancillary.AttributionR\x0egifAttribution\x12.\n" +
|
|
1940
|
+
"\x12accessibilityLabel\x18\b \x01(\tR\x12accessibilityLabel\x12\x12\n" +
|
|
1941
|
+
"\x04isHd\x18\t \x01(\bR\x04isHd\"-\n" +
|
|
1942
|
+
"\vAttribution\x12\b\n" +
|
|
1943
|
+
"\x04NONE\x10\x00\x12\t\n" +
|
|
1944
|
+
"\x05GIPHY\x10\x01\x12\t\n" +
|
|
1945
|
+
"\x05TENOR\x10\x02\x1aL\n" +
|
|
1946
|
+
"\bIntegral\x12@\n" +
|
|
1947
|
+
"\ttransport\x18\x01 \x01(\v2\".WAMediaTransport.WAMediaTransportR\ttransport\"\xce\b\n" +
|
|
1948
|
+
"\x0eAudioTransport\x12E\n" +
|
|
1949
|
+
"\bintegral\x18\x01 \x01(\v2).WAMediaTransport.AudioTransport.IntegralR\bintegral\x12H\n" +
|
|
1950
|
+
"\tancillary\x18\x02 \x01(\v2*.WAMediaTransport.AudioTransport.AncillaryR\tancillary\x1a\xdc\x05\n" +
|
|
1951
|
+
"\tAncillary\x12\x18\n" +
|
|
1952
|
+
"\aseconds\x18\x01 \x01(\rR\aseconds\x12X\n" +
|
|
1953
|
+
"\vavatarAudio\x18\x02 \x01(\v26.WAMediaTransport.AudioTransport.Ancillary.AvatarAudioR\vavatarAudio\x1a\xda\x04\n" +
|
|
1954
|
+
"\vAvatarAudio\x12\x16\n" +
|
|
1955
|
+
"\x06poseID\x18\x01 \x01(\rR\x06poseID\x12\x7f\n" +
|
|
1956
|
+
"\x10avatarAnimations\x18\x02 \x03(\v2S.WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.DownloadableAvatarAnimationsR\x10avatarAnimations\x1a\xd9\x02\n" +
|
|
1957
|
+
"\x1cDownloadableAvatarAnimations\x12\x1e\n" +
|
|
1958
|
+
"\n" +
|
|
1959
|
+
"fileSHA256\x18\x01 \x01(\fR\n" +
|
|
1960
|
+
"fileSHA256\x12$\n" +
|
|
1961
|
+
"\rfileEncSHA256\x18\x02 \x01(\fR\rfileEncSHA256\x12\x1e\n" +
|
|
1962
|
+
"\n" +
|
|
1963
|
+
"directPath\x18\x03 \x01(\tR\n" +
|
|
1964
|
+
"directPath\x12\x1a\n" +
|
|
1965
|
+
"\bmediaKey\x18\x04 \x01(\fR\bmediaKey\x12,\n" +
|
|
1966
|
+
"\x11mediaKeyTimestamp\x18\x05 \x01(\x03R\x11mediaKeyTimestamp\x12\x1a\n" +
|
|
1967
|
+
"\bobjectID\x18\x06 \x01(\tR\bobjectID\x12m\n" +
|
|
1968
|
+
"\x0eanimationsType\x18\a \x01(\x0e2E.WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.AnimationsTypeR\x0eanimationsType\"V\n" +
|
|
1969
|
+
"\x0eAnimationsType\x12\r\n" +
|
|
1970
|
+
"\tTALKING_A\x10\x00\x12\n" +
|
|
1971
|
+
"\n" +
|
|
1972
|
+
"\x06IDLE_A\x10\x01\x12\r\n" +
|
|
1973
|
+
"\tTALKING_B\x10\x02\x12\n" +
|
|
1974
|
+
"\n" +
|
|
1975
|
+
"\x06IDLE_B\x10\x03\x12\x0e\n" +
|
|
1976
|
+
"\n" +
|
|
1977
|
+
"BACKGROUND\x10\x04\x1a\xcb\x01\n" +
|
|
1978
|
+
"\bIntegral\x12@\n" +
|
|
1979
|
+
"\ttransport\x18\x01 \x01(\v2\".WAMediaTransport.WAMediaTransportR\ttransport\x12W\n" +
|
|
1980
|
+
"\vaudioFormat\x18\x02 \x01(\x0e25.WAMediaTransport.AudioTransport.Integral.AudioFormatR\vaudioFormat\"$\n" +
|
|
1981
|
+
"\vAudioFormat\x12\v\n" +
|
|
1982
|
+
"\aUNKNOWN\x10\x00\x12\b\n" +
|
|
1983
|
+
"\x04OPUS\x10\x01\"\xa3\x02\n" +
|
|
1984
|
+
"\x11DocumentTransport\x12H\n" +
|
|
1985
|
+
"\bintegral\x18\x01 \x01(\v2,.WAMediaTransport.DocumentTransport.IntegralR\bintegral\x12K\n" +
|
|
1986
|
+
"\tancillary\x18\x02 \x01(\v2-.WAMediaTransport.DocumentTransport.AncillaryR\tancillary\x1a)\n" +
|
|
1987
|
+
"\tAncillary\x12\x1c\n" +
|
|
1988
|
+
"\tpageCount\x18\x01 \x01(\rR\tpageCount\x1aL\n" +
|
|
1989
|
+
"\bIntegral\x12@\n" +
|
|
1990
|
+
"\ttransport\x18\x01 \x01(\v2\".WAMediaTransport.WAMediaTransportR\ttransport\"\x96\x05\n" +
|
|
1991
|
+
"\x10StickerTransport\x12G\n" +
|
|
1992
|
+
"\bintegral\x18\x01 \x01(\v2+.WAMediaTransport.StickerTransport.IntegralR\bintegral\x12J\n" +
|
|
1993
|
+
"\tancillary\x18\x02 \x01(\v2,.WAMediaTransport.StickerTransport.AncillaryR\tancillary\x1a\xd3\x02\n" +
|
|
1994
|
+
"\tAncillary\x12\x1c\n" +
|
|
1995
|
+
"\tpageCount\x18\x01 \x01(\rR\tpageCount\x12\x16\n" +
|
|
1996
|
+
"\x06height\x18\x02 \x01(\rR\x06height\x12\x14\n" +
|
|
1997
|
+
"\x05width\x18\x03 \x01(\rR\x05width\x12*\n" +
|
|
1998
|
+
"\x10firstFrameLength\x18\x04 \x01(\rR\x10firstFrameLength\x12,\n" +
|
|
1999
|
+
"\x11firstFrameSidecar\x18\x05 \x01(\fR\x11firstFrameSidecar\x12\"\n" +
|
|
2000
|
+
"\fmustacheText\x18\x06 \x01(\tR\fmustacheText\x12\"\n" +
|
|
2001
|
+
"\fisThirdParty\x18\a \x01(\bR\fisThirdParty\x12(\n" +
|
|
2002
|
+
"\x0freceiverFetchID\x18\b \x01(\tR\x0freceiverFetchID\x12.\n" +
|
|
2003
|
+
"\x12accessibilityLabel\x18\t \x01(\tR\x12accessibilityLabel\x1a\x96\x01\n" +
|
|
2004
|
+
"\bIntegral\x12@\n" +
|
|
2005
|
+
"\ttransport\x18\x01 \x01(\v2\".WAMediaTransport.WAMediaTransportR\ttransport\x12\x1e\n" +
|
|
2006
|
+
"\n" +
|
|
2007
|
+
"isAnimated\x18\x02 \x01(\bR\n" +
|
|
2008
|
+
"isAnimated\x12(\n" +
|
|
2009
|
+
"\x0freceiverFetchID\x18\x03 \x01(\tR\x0freceiverFetchID\"\xda\x02\n" +
|
|
2010
|
+
"\x10ContactTransport\x12G\n" +
|
|
2011
|
+
"\bintegral\x18\x01 \x01(\v2+.WAMediaTransport.ContactTransport.IntegralR\bintegral\x12J\n" +
|
|
2012
|
+
"\tancillary\x18\x02 \x01(\v2,.WAMediaTransport.ContactTransport.AncillaryR\tancillary\x1a-\n" +
|
|
2013
|
+
"\tAncillary\x12 \n" +
|
|
2014
|
+
"\vdisplayName\x18\x01 \x01(\tR\vdisplayName\x1a\x81\x01\n" +
|
|
2015
|
+
"\bIntegral\x12\x16\n" +
|
|
2016
|
+
"\x05vcard\x18\x01 \x01(\tH\x00R\x05vcard\x12R\n" +
|
|
2017
|
+
"\x11downloadableVcard\x18\x02 \x01(\v2\".WAMediaTransport.WAMediaTransportH\x00R\x11downloadableVcardB\t\n" +
|
|
2018
|
+
"\acontactB,Z*go.mau.fi/whatsmeow/proto/waMediaTransport"
|
|
1865
2019
|
|
|
1866
2020
|
var (
|
|
1867
2021
|
file_waMediaTransport_WAMediaTransport_proto_rawDescOnce sync.Once
|
|
1868
|
-
file_waMediaTransport_WAMediaTransport_proto_rawDescData
|
|
2022
|
+
file_waMediaTransport_WAMediaTransport_proto_rawDescData []byte
|
|
1869
2023
|
)
|
|
1870
2024
|
|
|
1871
2025
|
func file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP() []byte {
|
|
1872
2026
|
file_waMediaTransport_WAMediaTransport_proto_rawDescOnce.Do(func() {
|
|
1873
|
-
file_waMediaTransport_WAMediaTransport_proto_rawDescData = protoimpl.X.CompressGZIP(
|
|
2027
|
+
file_waMediaTransport_WAMediaTransport_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waMediaTransport_WAMediaTransport_proto_rawDesc), len(file_waMediaTransport_WAMediaTransport_proto_rawDesc)))
|
|
1874
2028
|
})
|
|
1875
2029
|
return file_waMediaTransport_WAMediaTransport_proto_rawDescData
|
|
1876
2030
|
}
|
|
@@ -1959,7 +2113,7 @@ func file_waMediaTransport_WAMediaTransport_proto_init() {
|
|
|
1959
2113
|
out := protoimpl.TypeBuilder{
|
|
1960
2114
|
File: protoimpl.DescBuilder{
|
|
1961
2115
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
1962
|
-
RawDescriptor: file_waMediaTransport_WAMediaTransport_proto_rawDesc,
|
|
2116
|
+
RawDescriptor: unsafe.Slice(unsafe.StringData(file_waMediaTransport_WAMediaTransport_proto_rawDesc), len(file_waMediaTransport_WAMediaTransport_proto_rawDesc)),
|
|
1963
2117
|
NumEnums: 4,
|
|
1964
2118
|
NumMessages: 25,
|
|
1965
2119
|
NumExtensions: 0,
|
|
@@ -1971,7 +2125,6 @@ func file_waMediaTransport_WAMediaTransport_proto_init() {
|
|
|
1971
2125
|
MessageInfos: file_waMediaTransport_WAMediaTransport_proto_msgTypes,
|
|
1972
2126
|
}.Build()
|
|
1973
2127
|
File_waMediaTransport_WAMediaTransport_proto = out.File
|
|
1974
|
-
file_waMediaTransport_WAMediaTransport_proto_rawDesc = nil
|
|
1975
2128
|
file_waMediaTransport_WAMediaTransport_proto_goTypes = nil
|
|
1976
2129
|
file_waMediaTransport_WAMediaTransport_proto_depIdxs = nil
|
|
1977
2130
|
}
|
|
@@ -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: waMmsRetry/WAMmsRetry.proto
|
|
6
6
|
|
|
@@ -9,11 +9,10 @@ package waMmsRetry
|
|
|
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
|
-
_ "embed"
|
|
17
16
|
)
|
|
18
17
|
|
|
19
18
|
const (
|
|
@@ -90,6 +89,7 @@ type MediaRetryNotification struct {
|
|
|
90
89
|
StanzaID *string `protobuf:"bytes,1,opt,name=stanzaID" json:"stanzaID,omitempty"`
|
|
91
90
|
DirectPath *string `protobuf:"bytes,2,opt,name=directPath" json:"directPath,omitempty"`
|
|
92
91
|
Result *MediaRetryNotification_ResultType `protobuf:"varint,3,opt,name=result,enum=WAMmsRetry.MediaRetryNotification_ResultType" json:"result,omitempty"`
|
|
92
|
+
MessageSecret []byte `protobuf:"bytes,4,opt,name=messageSecret" json:"messageSecret,omitempty"`
|
|
93
93
|
unknownFields protoimpl.UnknownFields
|
|
94
94
|
sizeCache protoimpl.SizeCache
|
|
95
95
|
}
|
|
@@ -145,6 +145,13 @@ func (x *MediaRetryNotification) GetResult() MediaRetryNotification_ResultType {
|
|
|
145
145
|
return MediaRetryNotification_GENERAL_ERROR
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
+
func (x *MediaRetryNotification) GetMessageSecret() []byte {
|
|
149
|
+
if x != nil {
|
|
150
|
+
return x.MessageSecret
|
|
151
|
+
}
|
|
152
|
+
return nil
|
|
153
|
+
}
|
|
154
|
+
|
|
148
155
|
type ServerErrorReceipt struct {
|
|
149
156
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
150
157
|
StanzaID *string `protobuf:"bytes,1,opt,name=stanzaID" json:"stanzaID,omitempty"`
|
|
@@ -191,17 +198,34 @@ func (x *ServerErrorReceipt) GetStanzaID() string {
|
|
|
191
198
|
|
|
192
199
|
var File_waMmsRetry_WAMmsRetry_proto protoreflect.FileDescriptor
|
|
193
200
|
|
|
194
|
-
|
|
195
|
-
|
|
201
|
+
const file_waMmsRetry_WAMmsRetry_proto_rawDesc = "" +
|
|
202
|
+
"\n" +
|
|
203
|
+
"\x1bwaMmsRetry/WAMmsRetry.proto\x12\n" +
|
|
204
|
+
"WAMmsRetry\"\x94\x02\n" +
|
|
205
|
+
"\x16MediaRetryNotification\x12\x1a\n" +
|
|
206
|
+
"\bstanzaID\x18\x01 \x01(\tR\bstanzaID\x12\x1e\n" +
|
|
207
|
+
"\n" +
|
|
208
|
+
"directPath\x18\x02 \x01(\tR\n" +
|
|
209
|
+
"directPath\x12E\n" +
|
|
210
|
+
"\x06result\x18\x03 \x01(\x0e2-.WAMmsRetry.MediaRetryNotification.ResultTypeR\x06result\x12$\n" +
|
|
211
|
+
"\rmessageSecret\x18\x04 \x01(\fR\rmessageSecret\"Q\n" +
|
|
212
|
+
"\n" +
|
|
213
|
+
"ResultType\x12\x11\n" +
|
|
214
|
+
"\rGENERAL_ERROR\x10\x00\x12\v\n" +
|
|
215
|
+
"\aSUCCESS\x10\x01\x12\r\n" +
|
|
216
|
+
"\tNOT_FOUND\x10\x02\x12\x14\n" +
|
|
217
|
+
"\x10DECRYPTION_ERROR\x10\x03\"0\n" +
|
|
218
|
+
"\x12ServerErrorReceipt\x12\x1a\n" +
|
|
219
|
+
"\bstanzaID\x18\x01 \x01(\tR\bstanzaIDB&Z$go.mau.fi/whatsmeow/proto/waMmsRetry"
|
|
196
220
|
|
|
197
221
|
var (
|
|
198
222
|
file_waMmsRetry_WAMmsRetry_proto_rawDescOnce sync.Once
|
|
199
|
-
file_waMmsRetry_WAMmsRetry_proto_rawDescData
|
|
223
|
+
file_waMmsRetry_WAMmsRetry_proto_rawDescData []byte
|
|
200
224
|
)
|
|
201
225
|
|
|
202
226
|
func file_waMmsRetry_WAMmsRetry_proto_rawDescGZIP() []byte {
|
|
203
227
|
file_waMmsRetry_WAMmsRetry_proto_rawDescOnce.Do(func() {
|
|
204
|
-
file_waMmsRetry_WAMmsRetry_proto_rawDescData = protoimpl.X.CompressGZIP(
|
|
228
|
+
file_waMmsRetry_WAMmsRetry_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waMmsRetry_WAMmsRetry_proto_rawDesc), len(file_waMmsRetry_WAMmsRetry_proto_rawDesc)))
|
|
205
229
|
})
|
|
206
230
|
return file_waMmsRetry_WAMmsRetry_proto_rawDescData
|
|
207
231
|
}
|
|
@@ -231,7 +255,7 @@ func file_waMmsRetry_WAMmsRetry_proto_init() {
|
|
|
231
255
|
out := protoimpl.TypeBuilder{
|
|
232
256
|
File: protoimpl.DescBuilder{
|
|
233
257
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
234
|
-
RawDescriptor: file_waMmsRetry_WAMmsRetry_proto_rawDesc,
|
|
258
|
+
RawDescriptor: unsafe.Slice(unsafe.StringData(file_waMmsRetry_WAMmsRetry_proto_rawDesc), len(file_waMmsRetry_WAMmsRetry_proto_rawDesc)),
|
|
235
259
|
NumEnums: 1,
|
|
236
260
|
NumMessages: 2,
|
|
237
261
|
NumExtensions: 0,
|
|
@@ -243,7 +267,6 @@ func file_waMmsRetry_WAMmsRetry_proto_init() {
|
|
|
243
267
|
MessageInfos: file_waMmsRetry_WAMmsRetry_proto_msgTypes,
|
|
244
268
|
}.Build()
|
|
245
269
|
File_waMmsRetry_WAMmsRetry_proto = out.File
|
|
246
|
-
file_waMmsRetry_WAMmsRetry_proto_rawDesc = nil
|
|
247
270
|
file_waMmsRetry_WAMmsRetry_proto_goTypes = nil
|
|
248
271
|
file_waMmsRetry_WAMmsRetry_proto_depIdxs = nil
|
|
249
272
|
}
|