slidge-whatsapp 0.2.5__cp312-cp312-manylinux_2_36_aarch64.whl → 0.2.6__cp312-cp312-manylinux_2_36_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of slidge-whatsapp might be problematic. Click here for more details.
- slidge_whatsapp/config.py +3 -0
- slidge_whatsapp/event.go +23 -24
- slidge_whatsapp/gateway.go +13 -9
- slidge_whatsapp/gateway.py +2 -2
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.h +169 -169
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +135 -135
- slidge_whatsapp/generated/whatsapp.c +1455 -1455
- slidge_whatsapp/generated/whatsapp.go +737 -737
- slidge_whatsapp/generated/whatsapp.py +1038 -1038
- slidge_whatsapp/generated/whatsapp_go.h +169 -169
- slidge_whatsapp/go.mod +15 -12
- slidge_whatsapp/go.sum +41 -29
- slidge_whatsapp/media/media.go +16 -10
- slidge_whatsapp/session.go +73 -66
- 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/jupiterrider/ffi/CHANGELOG.md +14 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +2 -2
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/fun.go +10 -2
- 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 +2 -7
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/callback.go +2 -1
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +8510 -5090
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +344 -150
- 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/petermattis/goid/.gitignore +4 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/LICENSE +202 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/README.md +4 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid.go +35 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_gccgo.go +26 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.3.c +23 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.3.go +22 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.4.go +35 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.4.s +18 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.5.go +28 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.5.s +44 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/goid_slow.go +24 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_gccgo_go1.8.go +17 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.23.go +38 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.5.go +57 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.6.go +43 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.9.go +37 -0
- slidge_whatsapp/vendor/github.com/rs/zerolog/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/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 +64 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/json.go +41 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/middleware.go +30 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/networkerror.go +37 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +88 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/returnonce.go +25 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/ringbuffer.go +139 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncmap.go +94 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncset.go +136 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/callermarshal.go +28 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/defaults.go +32 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/generics.go +45 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/writer.go +81 -0
- slidge_whatsapp/vendor/go.mau.fi/util/ptr/ptr.go +43 -0
- 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/keys.go +5 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +27 -25
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +3 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/broadcast.go +5 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +60 -15
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +25 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +45 -19
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +52 -28
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +59 -29
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +166 -146
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +2 -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 +270 -111
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +118 -31
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +67 -36
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +7 -4
- 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 +2 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/privacysettings.go +10 -11
- 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 +158 -15
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +1 -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} +170 -84
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/{WAWebProtobufsCompanionReg.proto → WACompanionReg.proto} +1 -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 +6747 -2230
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +294 -43
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +456 -135
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.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/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/waSyncAction/WASyncAction.pb.go +1051 -382
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +32 -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 +382 -78
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +8 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +555 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +13 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +29 -19
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +244 -73
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +27 -16
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +3 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +85 -43
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/signal.go +75 -88
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +79 -61
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/lidmap.go +186 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +291 -167
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +153 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/03-message-secrets.sql +11 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/04-privacy-tokens.sql +8 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/05-account-jid-format.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/06-facebook-uuid.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/07-account-lid.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/08-lid-mapping.sql +5 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/09-decryption-buffer.sql +10 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/upgrades.go +22 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +105 -56
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/botmap.go +210 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +8 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/group.go +15 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +7 -8
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +17 -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 +45 -29
- 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 +122 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_go124.go +61 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_pre_go124.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/databuffer.go +149 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/errors.go +145 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/flow.go +120 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +1702 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/gotrack.go +170 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/encode.go +245 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/hpack.go +523 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/huffman.go +226 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/static_table.go +188 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/tables.go +403 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +432 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/pipe.go +184 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +3350 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/timer.go +20 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +3287 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/unencrypted.go +32 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/write.go +381 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched.go +251 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_priority.go +451 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_random.go +77 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_roundrobin.go +119 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/go118.go +13 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/idna10.0.0.go +769 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/idna9.0.0.go +717 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/pre_go118.go +11 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/punycode.go +217 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables10.0.0.go +4559 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables11.0.0.go +4653 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables12.0.0.go +4733 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables13.0.0.go +4959 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables15.0.0.go +5144 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/tables9.0.0.go +4486 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/trie.go +51 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/trie12.0.0.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/trie13.0.0.go +30 -0
- slidge_whatsapp/vendor/golang.org/x/net/idna/trieval.go +119 -0
- slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/ascii.go +53 -0
- slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/headermap.go +115 -0
- slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/request.go +467 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +148 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +16 -26
- 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/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 +239 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +9 -0
- slidge_whatsapp/vendor/golang.org/x/text/LICENSE +27 -0
- slidge_whatsapp/vendor/golang.org/x/text/PATENTS +22 -0
- slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule.go +336 -0
- slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go +11 -0
- slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go +14 -0
- slidge_whatsapp/vendor/golang.org/x/text/transform/transform.go +709 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bidi.go +359 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bracket.go +335 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/core.go +1071 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/prop.go +206 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go +1815 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go +1887 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go +1923 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go +1955 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables15.0.0.go +2042 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go +1781 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/trieval.go +48 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/composition.go +512 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/forminfo.go +279 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/input.go +109 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/iter.go +458 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/normalize.go +610 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/readwriter.go +125 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables10.0.0.go +7657 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go +7693 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go +7710 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables13.0.0.go +7760 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables15.0.0.go +7907 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go +7637 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/transform.go +88 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/trie.go +54 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +3 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +16 -0
- 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 +2 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/{value_unsafe_go121.go → value_unsafe.go} +0 -2
- slidge_whatsapp/vendor/modules.txt +38 -13
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.6.dist-info}/METADATA +1 -1
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.6.dist-info}/RECORD +293 -180
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.6.dist-info}/WHEEL +1 -1
- 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.2.6.dist-info}/LICENSE +0 -0
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.6.dist-info}/entry_points.txt +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 {
|
|
@@ -138,6 +144,13 @@ message PhoneNumberToLIDMapping {
|
|
|
138
144
|
optional string lidJID = 2;
|
|
139
145
|
}
|
|
140
146
|
|
|
147
|
+
message Account {
|
|
148
|
+
optional string lid = 1;
|
|
149
|
+
optional string username = 2;
|
|
150
|
+
optional string countryCode = 3;
|
|
151
|
+
optional bool isUsernameDeleted = 4;
|
|
152
|
+
}
|
|
153
|
+
|
|
141
154
|
message HistorySyncMsg {
|
|
142
155
|
optional WAWebProtobufsWeb.WebMessageInfo message = 1;
|
|
143
156
|
optional uint64 msgOrderID = 2;
|
|
@@ -173,6 +186,7 @@ message GlobalSettings {
|
|
|
173
186
|
optional NotificationSettings individualNotificationSettings = 17;
|
|
174
187
|
optional NotificationSettings groupNotificationSettings = 18;
|
|
175
188
|
optional WAProtobufsChatLockSettings.ChatLockSettings chatLockSettings = 19;
|
|
189
|
+
optional int64 chatDbLidMigrationTimestamp = 20;
|
|
176
190
|
}
|
|
177
191
|
|
|
178
192
|
message AutoDownloadSettings {
|
|
@@ -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
|
}
|