slidge-whatsapp 0.2.5__cp311-cp311-manylinux_2_36_aarch64.whl → 0.2.7__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/event.go +31 -26
- slidge_whatsapp/gateway.go +13 -9
- slidge_whatsapp/gateway.py +2 -2
- slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.h +170 -170
- slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +135 -135
- slidge_whatsapp/generated/whatsapp.c +1496 -1496
- slidge_whatsapp/generated/whatsapp.go +1137 -1137
- slidge_whatsapp/generated/whatsapp.py +1216 -1216
- slidge_whatsapp/generated/whatsapp_go.h +170 -170
- slidge_whatsapp/go.mod +15 -12
- slidge_whatsapp/go.sum +35 -29
- slidge_whatsapp/media/media.go +21 -11
- 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 +36 -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/exstrings/stringutil.go +76 -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 +40 -7
- 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 +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +119 -37
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +29 -11
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +63 -30
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +74 -34
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +61 -31
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +188 -152
- 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 +444 -135
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +118 -31
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +78 -42
- 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/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/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} +184 -89
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/{WAWebProtobufsCompanionReg.proto → WACompanionReg.proto} +2 -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 +7428 -2151
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +373 -44
- 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/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 +800 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +72 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +1344 -438
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +52 -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 +563 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +4 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +25 -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 +261 -75
- 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 +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 +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 +291 -167
- 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 +107 -56
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/botmap.go +210 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +13 -2
- 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 +18 -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 +47 -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 +52 -13
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/METADATA +1 -1
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/RECORD +330 -184
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.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.7.dist-info}/LICENSE +0 -0
- {slidge_whatsapp-0.2.5.dist-info → slidge_whatsapp-0.2.7.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,1299 @@
|
|
|
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: instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto
|
|
6
|
+
|
|
7
|
+
package instamadilloCoreTypeMedia
|
|
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 PjpegScanConfiguration int32
|
|
26
|
+
|
|
27
|
+
const (
|
|
28
|
+
PjpegScanConfiguration_PJPEG_SCAN_CONFIGURATION_UNSPECIFIED PjpegScanConfiguration = 0
|
|
29
|
+
PjpegScanConfiguration_PJPEG_SCAN_CONFIGURATION_WA PjpegScanConfiguration = 1
|
|
30
|
+
PjpegScanConfiguration_PJPEG_SCAN_CONFIGURATION_E15 PjpegScanConfiguration = 2
|
|
31
|
+
PjpegScanConfiguration_PJPEG_SCAN_CONFIGURATION_E35 PjpegScanConfiguration = 3
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
// Enum value maps for PjpegScanConfiguration.
|
|
35
|
+
var (
|
|
36
|
+
PjpegScanConfiguration_name = map[int32]string{
|
|
37
|
+
0: "PJPEG_SCAN_CONFIGURATION_UNSPECIFIED",
|
|
38
|
+
1: "PJPEG_SCAN_CONFIGURATION_WA",
|
|
39
|
+
2: "PJPEG_SCAN_CONFIGURATION_E15",
|
|
40
|
+
3: "PJPEG_SCAN_CONFIGURATION_E35",
|
|
41
|
+
}
|
|
42
|
+
PjpegScanConfiguration_value = map[string]int32{
|
|
43
|
+
"PJPEG_SCAN_CONFIGURATION_UNSPECIFIED": 0,
|
|
44
|
+
"PJPEG_SCAN_CONFIGURATION_WA": 1,
|
|
45
|
+
"PJPEG_SCAN_CONFIGURATION_E15": 2,
|
|
46
|
+
"PJPEG_SCAN_CONFIGURATION_E35": 3,
|
|
47
|
+
}
|
|
48
|
+
)
|
|
49
|
+
|
|
50
|
+
func (x PjpegScanConfiguration) Enum() *PjpegScanConfiguration {
|
|
51
|
+
p := new(PjpegScanConfiguration)
|
|
52
|
+
*p = x
|
|
53
|
+
return p
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
func (x PjpegScanConfiguration) String() string {
|
|
57
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
func (PjpegScanConfiguration) Descriptor() protoreflect.EnumDescriptor {
|
|
61
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_enumTypes[0].Descriptor()
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
func (PjpegScanConfiguration) Type() protoreflect.EnumType {
|
|
65
|
+
return &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_enumTypes[0]
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
func (x PjpegScanConfiguration) Number() protoreflect.EnumNumber {
|
|
69
|
+
return protoreflect.EnumNumber(x)
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
// Deprecated: Do not use.
|
|
73
|
+
func (x *PjpegScanConfiguration) UnmarshalJSON(b []byte) error {
|
|
74
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
75
|
+
if err != nil {
|
|
76
|
+
return err
|
|
77
|
+
}
|
|
78
|
+
*x = PjpegScanConfiguration(num)
|
|
79
|
+
return nil
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// Deprecated: Use PjpegScanConfiguration.Descriptor instead.
|
|
83
|
+
func (PjpegScanConfiguration) EnumDescriptor() ([]byte, []int) {
|
|
84
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{0}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
type Media_InterventionType int32
|
|
88
|
+
|
|
89
|
+
const (
|
|
90
|
+
Media_UNSET Media_InterventionType = 0
|
|
91
|
+
Media_NONE Media_InterventionType = 1
|
|
92
|
+
Media_NUDE Media_InterventionType = 2
|
|
93
|
+
)
|
|
94
|
+
|
|
95
|
+
// Enum value maps for Media_InterventionType.
|
|
96
|
+
var (
|
|
97
|
+
Media_InterventionType_name = map[int32]string{
|
|
98
|
+
0: "UNSET",
|
|
99
|
+
1: "NONE",
|
|
100
|
+
2: "NUDE",
|
|
101
|
+
}
|
|
102
|
+
Media_InterventionType_value = map[string]int32{
|
|
103
|
+
"UNSET": 0,
|
|
104
|
+
"NONE": 1,
|
|
105
|
+
"NUDE": 2,
|
|
106
|
+
}
|
|
107
|
+
)
|
|
108
|
+
|
|
109
|
+
func (x Media_InterventionType) Enum() *Media_InterventionType {
|
|
110
|
+
p := new(Media_InterventionType)
|
|
111
|
+
*p = x
|
|
112
|
+
return p
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
func (x Media_InterventionType) String() string {
|
|
116
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
func (Media_InterventionType) Descriptor() protoreflect.EnumDescriptor {
|
|
120
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_enumTypes[1].Descriptor()
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
func (Media_InterventionType) Type() protoreflect.EnumType {
|
|
124
|
+
return &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_enumTypes[1]
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
func (x Media_InterventionType) Number() protoreflect.EnumNumber {
|
|
128
|
+
return protoreflect.EnumNumber(x)
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
// Deprecated: Do not use.
|
|
132
|
+
func (x *Media_InterventionType) UnmarshalJSON(b []byte) error {
|
|
133
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
134
|
+
if err != nil {
|
|
135
|
+
return err
|
|
136
|
+
}
|
|
137
|
+
*x = Media_InterventionType(num)
|
|
138
|
+
return nil
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
// Deprecated: Use Media_InterventionType.Descriptor instead.
|
|
142
|
+
func (Media_InterventionType) EnumDescriptor() ([]byte, []int) {
|
|
143
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{0, 0}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
type Raven_ViewMode int32
|
|
147
|
+
|
|
148
|
+
const (
|
|
149
|
+
Raven_RAVEN_VIEW_MODEL_UNSPECIFIED Raven_ViewMode = 0
|
|
150
|
+
Raven_RAVEN_VIEW_MODEL_ONCE Raven_ViewMode = 1
|
|
151
|
+
Raven_RAVEN_VIEW_MODEL_REPLAYABLE Raven_ViewMode = 2
|
|
152
|
+
Raven_RAVEN_VIEW_MODEL_PERMANENT Raven_ViewMode = 3
|
|
153
|
+
)
|
|
154
|
+
|
|
155
|
+
// Enum value maps for Raven_ViewMode.
|
|
156
|
+
var (
|
|
157
|
+
Raven_ViewMode_name = map[int32]string{
|
|
158
|
+
0: "RAVEN_VIEW_MODEL_UNSPECIFIED",
|
|
159
|
+
1: "RAVEN_VIEW_MODEL_ONCE",
|
|
160
|
+
2: "RAVEN_VIEW_MODEL_REPLAYABLE",
|
|
161
|
+
3: "RAVEN_VIEW_MODEL_PERMANENT",
|
|
162
|
+
}
|
|
163
|
+
Raven_ViewMode_value = map[string]int32{
|
|
164
|
+
"RAVEN_VIEW_MODEL_UNSPECIFIED": 0,
|
|
165
|
+
"RAVEN_VIEW_MODEL_ONCE": 1,
|
|
166
|
+
"RAVEN_VIEW_MODEL_REPLAYABLE": 2,
|
|
167
|
+
"RAVEN_VIEW_MODEL_PERMANENT": 3,
|
|
168
|
+
}
|
|
169
|
+
)
|
|
170
|
+
|
|
171
|
+
func (x Raven_ViewMode) Enum() *Raven_ViewMode {
|
|
172
|
+
p := new(Raven_ViewMode)
|
|
173
|
+
*p = x
|
|
174
|
+
return p
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
func (x Raven_ViewMode) String() string {
|
|
178
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
func (Raven_ViewMode) Descriptor() protoreflect.EnumDescriptor {
|
|
182
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_enumTypes[2].Descriptor()
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
func (Raven_ViewMode) Type() protoreflect.EnumType {
|
|
186
|
+
return &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_enumTypes[2]
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
func (x Raven_ViewMode) Number() protoreflect.EnumNumber {
|
|
190
|
+
return protoreflect.EnumNumber(x)
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
// Deprecated: Do not use.
|
|
194
|
+
func (x *Raven_ViewMode) UnmarshalJSON(b []byte) error {
|
|
195
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
196
|
+
if err != nil {
|
|
197
|
+
return err
|
|
198
|
+
}
|
|
199
|
+
*x = Raven_ViewMode(num)
|
|
200
|
+
return nil
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
// Deprecated: Use Raven_ViewMode.Descriptor instead.
|
|
204
|
+
func (Raven_ViewMode) EnumDescriptor() ([]byte, []int) {
|
|
205
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{6, 0}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
type Media struct {
|
|
209
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
210
|
+
// Types that are valid to be assigned to Media:
|
|
211
|
+
//
|
|
212
|
+
// *Media_StaticPhoto
|
|
213
|
+
// *Media_Voice
|
|
214
|
+
// *Media_Video
|
|
215
|
+
// *Media_Raven
|
|
216
|
+
// *Media_Gif
|
|
217
|
+
// *Media_AvatarSticker
|
|
218
|
+
Media isMedia_Media `protobuf_oneof:"media"`
|
|
219
|
+
unknownFields protoimpl.UnknownFields
|
|
220
|
+
sizeCache protoimpl.SizeCache
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
func (x *Media) Reset() {
|
|
224
|
+
*x = Media{}
|
|
225
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[0]
|
|
226
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
227
|
+
ms.StoreMessageInfo(mi)
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
func (x *Media) String() string {
|
|
231
|
+
return protoimpl.X.MessageStringOf(x)
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
func (*Media) ProtoMessage() {}
|
|
235
|
+
|
|
236
|
+
func (x *Media) ProtoReflect() protoreflect.Message {
|
|
237
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[0]
|
|
238
|
+
if x != nil {
|
|
239
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
240
|
+
if ms.LoadMessageInfo() == nil {
|
|
241
|
+
ms.StoreMessageInfo(mi)
|
|
242
|
+
}
|
|
243
|
+
return ms
|
|
244
|
+
}
|
|
245
|
+
return mi.MessageOf(x)
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
// Deprecated: Use Media.ProtoReflect.Descriptor instead.
|
|
249
|
+
func (*Media) Descriptor() ([]byte, []int) {
|
|
250
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{0}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
func (x *Media) GetMedia() isMedia_Media {
|
|
254
|
+
if x != nil {
|
|
255
|
+
return x.Media
|
|
256
|
+
}
|
|
257
|
+
return nil
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
func (x *Media) GetStaticPhoto() *StaticPhoto {
|
|
261
|
+
if x != nil {
|
|
262
|
+
if x, ok := x.Media.(*Media_StaticPhoto); ok {
|
|
263
|
+
return x.StaticPhoto
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
return nil
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
func (x *Media) GetVoice() *Voice {
|
|
270
|
+
if x != nil {
|
|
271
|
+
if x, ok := x.Media.(*Media_Voice); ok {
|
|
272
|
+
return x.Voice
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
return nil
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
func (x *Media) GetVideo() *Video {
|
|
279
|
+
if x != nil {
|
|
280
|
+
if x, ok := x.Media.(*Media_Video); ok {
|
|
281
|
+
return x.Video
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
return nil
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
func (x *Media) GetRaven() *Raven {
|
|
288
|
+
if x != nil {
|
|
289
|
+
if x, ok := x.Media.(*Media_Raven); ok {
|
|
290
|
+
return x.Raven
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
return nil
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
func (x *Media) GetGif() *Gif {
|
|
297
|
+
if x != nil {
|
|
298
|
+
if x, ok := x.Media.(*Media_Gif); ok {
|
|
299
|
+
return x.Gif
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
return nil
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
func (x *Media) GetAvatarSticker() *AvatarSticker {
|
|
306
|
+
if x != nil {
|
|
307
|
+
if x, ok := x.Media.(*Media_AvatarSticker); ok {
|
|
308
|
+
return x.AvatarSticker
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
return nil
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
type isMedia_Media interface {
|
|
315
|
+
isMedia_Media()
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
type Media_StaticPhoto struct {
|
|
319
|
+
StaticPhoto *StaticPhoto `protobuf:"bytes,1,opt,name=staticPhoto,oneof"`
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
type Media_Voice struct {
|
|
323
|
+
Voice *Voice `protobuf:"bytes,2,opt,name=voice,oneof"`
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
type Media_Video struct {
|
|
327
|
+
Video *Video `protobuf:"bytes,3,opt,name=video,oneof"`
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
type Media_Raven struct {
|
|
331
|
+
Raven *Raven `protobuf:"bytes,4,opt,name=raven,oneof"`
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
type Media_Gif struct {
|
|
335
|
+
Gif *Gif `protobuf:"bytes,5,opt,name=gif,oneof"`
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
type Media_AvatarSticker struct {
|
|
339
|
+
AvatarSticker *AvatarSticker `protobuf:"bytes,6,opt,name=avatarSticker,oneof"`
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
func (*Media_StaticPhoto) isMedia_Media() {}
|
|
343
|
+
|
|
344
|
+
func (*Media_Voice) isMedia_Media() {}
|
|
345
|
+
|
|
346
|
+
func (*Media_Video) isMedia_Media() {}
|
|
347
|
+
|
|
348
|
+
func (*Media_Raven) isMedia_Media() {}
|
|
349
|
+
|
|
350
|
+
func (*Media_Gif) isMedia_Media() {}
|
|
351
|
+
|
|
352
|
+
func (*Media_AvatarSticker) isMedia_Media() {}
|
|
353
|
+
|
|
354
|
+
type StaticPhoto struct {
|
|
355
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
356
|
+
MediaTransport *CommonMediaTransport `protobuf:"bytes,1,opt,name=mediaTransport" json:"mediaTransport,omitempty"`
|
|
357
|
+
Height *int32 `protobuf:"varint,2,opt,name=height" json:"height,omitempty"`
|
|
358
|
+
Width *int32 `protobuf:"varint,3,opt,name=width" json:"width,omitempty"`
|
|
359
|
+
ScanLengths []int32 `protobuf:"varint,4,rep,packed,name=scanLengths" json:"scanLengths,omitempty"`
|
|
360
|
+
Thumbnail *Thumbnail `protobuf:"bytes,5,opt,name=thumbnail" json:"thumbnail,omitempty"`
|
|
361
|
+
PjpegScanConfiguration *PjpegScanConfiguration `protobuf:"varint,6,opt,name=pjpegScanConfiguration,enum=InstamadilloCoreTypeMedia.PjpegScanConfiguration" json:"pjpegScanConfiguration,omitempty"`
|
|
362
|
+
unknownFields protoimpl.UnknownFields
|
|
363
|
+
sizeCache protoimpl.SizeCache
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
func (x *StaticPhoto) Reset() {
|
|
367
|
+
*x = StaticPhoto{}
|
|
368
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[1]
|
|
369
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
370
|
+
ms.StoreMessageInfo(mi)
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
func (x *StaticPhoto) String() string {
|
|
374
|
+
return protoimpl.X.MessageStringOf(x)
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
func (*StaticPhoto) ProtoMessage() {}
|
|
378
|
+
|
|
379
|
+
func (x *StaticPhoto) ProtoReflect() protoreflect.Message {
|
|
380
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[1]
|
|
381
|
+
if x != nil {
|
|
382
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
383
|
+
if ms.LoadMessageInfo() == nil {
|
|
384
|
+
ms.StoreMessageInfo(mi)
|
|
385
|
+
}
|
|
386
|
+
return ms
|
|
387
|
+
}
|
|
388
|
+
return mi.MessageOf(x)
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
// Deprecated: Use StaticPhoto.ProtoReflect.Descriptor instead.
|
|
392
|
+
func (*StaticPhoto) Descriptor() ([]byte, []int) {
|
|
393
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{1}
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
func (x *StaticPhoto) GetMediaTransport() *CommonMediaTransport {
|
|
397
|
+
if x != nil {
|
|
398
|
+
return x.MediaTransport
|
|
399
|
+
}
|
|
400
|
+
return nil
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
func (x *StaticPhoto) GetHeight() int32 {
|
|
404
|
+
if x != nil && x.Height != nil {
|
|
405
|
+
return *x.Height
|
|
406
|
+
}
|
|
407
|
+
return 0
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
func (x *StaticPhoto) GetWidth() int32 {
|
|
411
|
+
if x != nil && x.Width != nil {
|
|
412
|
+
return *x.Width
|
|
413
|
+
}
|
|
414
|
+
return 0
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
func (x *StaticPhoto) GetScanLengths() []int32 {
|
|
418
|
+
if x != nil {
|
|
419
|
+
return x.ScanLengths
|
|
420
|
+
}
|
|
421
|
+
return nil
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
func (x *StaticPhoto) GetThumbnail() *Thumbnail {
|
|
425
|
+
if x != nil {
|
|
426
|
+
return x.Thumbnail
|
|
427
|
+
}
|
|
428
|
+
return nil
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
func (x *StaticPhoto) GetPjpegScanConfiguration() PjpegScanConfiguration {
|
|
432
|
+
if x != nil && x.PjpegScanConfiguration != nil {
|
|
433
|
+
return *x.PjpegScanConfiguration
|
|
434
|
+
}
|
|
435
|
+
return PjpegScanConfiguration_PJPEG_SCAN_CONFIGURATION_UNSPECIFIED
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
type Voice struct {
|
|
439
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
440
|
+
MediaTransport *CommonMediaTransport `protobuf:"bytes,1,opt,name=mediaTransport" json:"mediaTransport,omitempty"`
|
|
441
|
+
Duration *int32 `protobuf:"varint,2,opt,name=duration" json:"duration,omitempty"`
|
|
442
|
+
Waveforms []float32 `protobuf:"fixed32,3,rep,packed,name=waveforms" json:"waveforms,omitempty"`
|
|
443
|
+
WaveformSamplingFrequencyHz *int32 `protobuf:"varint,4,opt,name=waveformSamplingFrequencyHz" json:"waveformSamplingFrequencyHz,omitempty"`
|
|
444
|
+
unknownFields protoimpl.UnknownFields
|
|
445
|
+
sizeCache protoimpl.SizeCache
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
func (x *Voice) Reset() {
|
|
449
|
+
*x = Voice{}
|
|
450
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[2]
|
|
451
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
452
|
+
ms.StoreMessageInfo(mi)
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
func (x *Voice) String() string {
|
|
456
|
+
return protoimpl.X.MessageStringOf(x)
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
func (*Voice) ProtoMessage() {}
|
|
460
|
+
|
|
461
|
+
func (x *Voice) ProtoReflect() protoreflect.Message {
|
|
462
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[2]
|
|
463
|
+
if x != nil {
|
|
464
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
465
|
+
if ms.LoadMessageInfo() == nil {
|
|
466
|
+
ms.StoreMessageInfo(mi)
|
|
467
|
+
}
|
|
468
|
+
return ms
|
|
469
|
+
}
|
|
470
|
+
return mi.MessageOf(x)
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
// Deprecated: Use Voice.ProtoReflect.Descriptor instead.
|
|
474
|
+
func (*Voice) Descriptor() ([]byte, []int) {
|
|
475
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{2}
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
func (x *Voice) GetMediaTransport() *CommonMediaTransport {
|
|
479
|
+
if x != nil {
|
|
480
|
+
return x.MediaTransport
|
|
481
|
+
}
|
|
482
|
+
return nil
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
func (x *Voice) GetDuration() int32 {
|
|
486
|
+
if x != nil && x.Duration != nil {
|
|
487
|
+
return *x.Duration
|
|
488
|
+
}
|
|
489
|
+
return 0
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
func (x *Voice) GetWaveforms() []float32 {
|
|
493
|
+
if x != nil {
|
|
494
|
+
return x.Waveforms
|
|
495
|
+
}
|
|
496
|
+
return nil
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
func (x *Voice) GetWaveformSamplingFrequencyHz() int32 {
|
|
500
|
+
if x != nil && x.WaveformSamplingFrequencyHz != nil {
|
|
501
|
+
return *x.WaveformSamplingFrequencyHz
|
|
502
|
+
}
|
|
503
|
+
return 0
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
type Video struct {
|
|
507
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
508
|
+
MediaTransport *CommonMediaTransport `protobuf:"bytes,1,opt,name=mediaTransport" json:"mediaTransport,omitempty"`
|
|
509
|
+
Height *int32 `protobuf:"varint,2,opt,name=height" json:"height,omitempty"`
|
|
510
|
+
Width *int32 `protobuf:"varint,3,opt,name=width" json:"width,omitempty"`
|
|
511
|
+
Thumbnail *Thumbnail `protobuf:"bytes,4,opt,name=thumbnail" json:"thumbnail,omitempty"`
|
|
512
|
+
VideoExtraMetadata *VideoExtraMetadata `protobuf:"bytes,5,opt,name=videoExtraMetadata" json:"videoExtraMetadata,omitempty"`
|
|
513
|
+
unknownFields protoimpl.UnknownFields
|
|
514
|
+
sizeCache protoimpl.SizeCache
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
func (x *Video) Reset() {
|
|
518
|
+
*x = Video{}
|
|
519
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[3]
|
|
520
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
521
|
+
ms.StoreMessageInfo(mi)
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
func (x *Video) String() string {
|
|
525
|
+
return protoimpl.X.MessageStringOf(x)
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
func (*Video) ProtoMessage() {}
|
|
529
|
+
|
|
530
|
+
func (x *Video) ProtoReflect() protoreflect.Message {
|
|
531
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[3]
|
|
532
|
+
if x != nil {
|
|
533
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
534
|
+
if ms.LoadMessageInfo() == nil {
|
|
535
|
+
ms.StoreMessageInfo(mi)
|
|
536
|
+
}
|
|
537
|
+
return ms
|
|
538
|
+
}
|
|
539
|
+
return mi.MessageOf(x)
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
// Deprecated: Use Video.ProtoReflect.Descriptor instead.
|
|
543
|
+
func (*Video) Descriptor() ([]byte, []int) {
|
|
544
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{3}
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
func (x *Video) GetMediaTransport() *CommonMediaTransport {
|
|
548
|
+
if x != nil {
|
|
549
|
+
return x.MediaTransport
|
|
550
|
+
}
|
|
551
|
+
return nil
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
func (x *Video) GetHeight() int32 {
|
|
555
|
+
if x != nil && x.Height != nil {
|
|
556
|
+
return *x.Height
|
|
557
|
+
}
|
|
558
|
+
return 0
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
func (x *Video) GetWidth() int32 {
|
|
562
|
+
if x != nil && x.Width != nil {
|
|
563
|
+
return *x.Width
|
|
564
|
+
}
|
|
565
|
+
return 0
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
func (x *Video) GetThumbnail() *Thumbnail {
|
|
569
|
+
if x != nil {
|
|
570
|
+
return x.Thumbnail
|
|
571
|
+
}
|
|
572
|
+
return nil
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
func (x *Video) GetVideoExtraMetadata() *VideoExtraMetadata {
|
|
576
|
+
if x != nil {
|
|
577
|
+
return x.VideoExtraMetadata
|
|
578
|
+
}
|
|
579
|
+
return nil
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
type Gif struct {
|
|
583
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
584
|
+
MediaTransport *CommonMediaTransport `protobuf:"bytes,1,opt,name=mediaTransport" json:"mediaTransport,omitempty"`
|
|
585
|
+
Height *int32 `protobuf:"varint,2,opt,name=height" json:"height,omitempty"`
|
|
586
|
+
Width *int32 `protobuf:"varint,3,opt,name=width" json:"width,omitempty"`
|
|
587
|
+
IsSticker *bool `protobuf:"varint,4,opt,name=isSticker" json:"isSticker,omitempty"`
|
|
588
|
+
StickerID *string `protobuf:"bytes,5,opt,name=stickerID" json:"stickerID,omitempty"`
|
|
589
|
+
GifURL *string `protobuf:"bytes,6,opt,name=gifURL" json:"gifURL,omitempty"`
|
|
590
|
+
GifSize *int32 `protobuf:"varint,7,opt,name=gifSize" json:"gifSize,omitempty"`
|
|
591
|
+
IsRandom *bool `protobuf:"varint,8,opt,name=isRandom" json:"isRandom,omitempty"`
|
|
592
|
+
unknownFields protoimpl.UnknownFields
|
|
593
|
+
sizeCache protoimpl.SizeCache
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
func (x *Gif) Reset() {
|
|
597
|
+
*x = Gif{}
|
|
598
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[4]
|
|
599
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
600
|
+
ms.StoreMessageInfo(mi)
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
func (x *Gif) String() string {
|
|
604
|
+
return protoimpl.X.MessageStringOf(x)
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
func (*Gif) ProtoMessage() {}
|
|
608
|
+
|
|
609
|
+
func (x *Gif) ProtoReflect() protoreflect.Message {
|
|
610
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[4]
|
|
611
|
+
if x != nil {
|
|
612
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
613
|
+
if ms.LoadMessageInfo() == nil {
|
|
614
|
+
ms.StoreMessageInfo(mi)
|
|
615
|
+
}
|
|
616
|
+
return ms
|
|
617
|
+
}
|
|
618
|
+
return mi.MessageOf(x)
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
// Deprecated: Use Gif.ProtoReflect.Descriptor instead.
|
|
622
|
+
func (*Gif) Descriptor() ([]byte, []int) {
|
|
623
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{4}
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
func (x *Gif) GetMediaTransport() *CommonMediaTransport {
|
|
627
|
+
if x != nil {
|
|
628
|
+
return x.MediaTransport
|
|
629
|
+
}
|
|
630
|
+
return nil
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
func (x *Gif) GetHeight() int32 {
|
|
634
|
+
if x != nil && x.Height != nil {
|
|
635
|
+
return *x.Height
|
|
636
|
+
}
|
|
637
|
+
return 0
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
func (x *Gif) GetWidth() int32 {
|
|
641
|
+
if x != nil && x.Width != nil {
|
|
642
|
+
return *x.Width
|
|
643
|
+
}
|
|
644
|
+
return 0
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
func (x *Gif) GetIsSticker() bool {
|
|
648
|
+
if x != nil && x.IsSticker != nil {
|
|
649
|
+
return *x.IsSticker
|
|
650
|
+
}
|
|
651
|
+
return false
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
func (x *Gif) GetStickerID() string {
|
|
655
|
+
if x != nil && x.StickerID != nil {
|
|
656
|
+
return *x.StickerID
|
|
657
|
+
}
|
|
658
|
+
return ""
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
func (x *Gif) GetGifURL() string {
|
|
662
|
+
if x != nil && x.GifURL != nil {
|
|
663
|
+
return *x.GifURL
|
|
664
|
+
}
|
|
665
|
+
return ""
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
func (x *Gif) GetGifSize() int32 {
|
|
669
|
+
if x != nil && x.GifSize != nil {
|
|
670
|
+
return *x.GifSize
|
|
671
|
+
}
|
|
672
|
+
return 0
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
func (x *Gif) GetIsRandom() bool {
|
|
676
|
+
if x != nil && x.IsRandom != nil {
|
|
677
|
+
return *x.IsRandom
|
|
678
|
+
}
|
|
679
|
+
return false
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
type AvatarSticker struct {
|
|
683
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
684
|
+
MediaTransport *CommonMediaTransport `protobuf:"bytes,1,opt,name=mediaTransport" json:"mediaTransport,omitempty"`
|
|
685
|
+
IsAnimated *bool `protobuf:"varint,2,opt,name=isAnimated" json:"isAnimated,omitempty"`
|
|
686
|
+
StickerID *string `protobuf:"bytes,3,opt,name=stickerID" json:"stickerID,omitempty"`
|
|
687
|
+
StickerTemplate *string `protobuf:"bytes,4,opt,name=stickerTemplate" json:"stickerTemplate,omitempty"`
|
|
688
|
+
NuxType *int32 `protobuf:"varint,5,opt,name=nuxType" json:"nuxType,omitempty"`
|
|
689
|
+
unknownFields protoimpl.UnknownFields
|
|
690
|
+
sizeCache protoimpl.SizeCache
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
func (x *AvatarSticker) Reset() {
|
|
694
|
+
*x = AvatarSticker{}
|
|
695
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[5]
|
|
696
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
697
|
+
ms.StoreMessageInfo(mi)
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
func (x *AvatarSticker) String() string {
|
|
701
|
+
return protoimpl.X.MessageStringOf(x)
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
func (*AvatarSticker) ProtoMessage() {}
|
|
705
|
+
|
|
706
|
+
func (x *AvatarSticker) ProtoReflect() protoreflect.Message {
|
|
707
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[5]
|
|
708
|
+
if x != nil {
|
|
709
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
710
|
+
if ms.LoadMessageInfo() == nil {
|
|
711
|
+
ms.StoreMessageInfo(mi)
|
|
712
|
+
}
|
|
713
|
+
return ms
|
|
714
|
+
}
|
|
715
|
+
return mi.MessageOf(x)
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
// Deprecated: Use AvatarSticker.ProtoReflect.Descriptor instead.
|
|
719
|
+
func (*AvatarSticker) Descriptor() ([]byte, []int) {
|
|
720
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{5}
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
func (x *AvatarSticker) GetMediaTransport() *CommonMediaTransport {
|
|
724
|
+
if x != nil {
|
|
725
|
+
return x.MediaTransport
|
|
726
|
+
}
|
|
727
|
+
return nil
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
func (x *AvatarSticker) GetIsAnimated() bool {
|
|
731
|
+
if x != nil && x.IsAnimated != nil {
|
|
732
|
+
return *x.IsAnimated
|
|
733
|
+
}
|
|
734
|
+
return false
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
func (x *AvatarSticker) GetStickerID() string {
|
|
738
|
+
if x != nil && x.StickerID != nil {
|
|
739
|
+
return *x.StickerID
|
|
740
|
+
}
|
|
741
|
+
return ""
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
func (x *AvatarSticker) GetStickerTemplate() string {
|
|
745
|
+
if x != nil && x.StickerTemplate != nil {
|
|
746
|
+
return *x.StickerTemplate
|
|
747
|
+
}
|
|
748
|
+
return ""
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
func (x *AvatarSticker) GetNuxType() int32 {
|
|
752
|
+
if x != nil && x.NuxType != nil {
|
|
753
|
+
return *x.NuxType
|
|
754
|
+
}
|
|
755
|
+
return 0
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
type Raven struct {
|
|
759
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
760
|
+
ViewMode *Raven_ViewMode `protobuf:"varint,1,opt,name=viewMode,enum=InstamadilloCoreTypeMedia.Raven_ViewMode" json:"viewMode,omitempty"`
|
|
761
|
+
Content *RavenContent `protobuf:"bytes,2,opt,name=content" json:"content,omitempty"`
|
|
762
|
+
unknownFields protoimpl.UnknownFields
|
|
763
|
+
sizeCache protoimpl.SizeCache
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
func (x *Raven) Reset() {
|
|
767
|
+
*x = Raven{}
|
|
768
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[6]
|
|
769
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
770
|
+
ms.StoreMessageInfo(mi)
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
func (x *Raven) String() string {
|
|
774
|
+
return protoimpl.X.MessageStringOf(x)
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
func (*Raven) ProtoMessage() {}
|
|
778
|
+
|
|
779
|
+
func (x *Raven) ProtoReflect() protoreflect.Message {
|
|
780
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[6]
|
|
781
|
+
if x != nil {
|
|
782
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
783
|
+
if ms.LoadMessageInfo() == nil {
|
|
784
|
+
ms.StoreMessageInfo(mi)
|
|
785
|
+
}
|
|
786
|
+
return ms
|
|
787
|
+
}
|
|
788
|
+
return mi.MessageOf(x)
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
// Deprecated: Use Raven.ProtoReflect.Descriptor instead.
|
|
792
|
+
func (*Raven) Descriptor() ([]byte, []int) {
|
|
793
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{6}
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
func (x *Raven) GetViewMode() Raven_ViewMode {
|
|
797
|
+
if x != nil && x.ViewMode != nil {
|
|
798
|
+
return *x.ViewMode
|
|
799
|
+
}
|
|
800
|
+
return Raven_RAVEN_VIEW_MODEL_UNSPECIFIED
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
func (x *Raven) GetContent() *RavenContent {
|
|
804
|
+
if x != nil {
|
|
805
|
+
return x.Content
|
|
806
|
+
}
|
|
807
|
+
return nil
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
type RavenContent struct {
|
|
811
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
812
|
+
// Types that are valid to be assigned to RavenContent:
|
|
813
|
+
//
|
|
814
|
+
// *RavenContent_StaticPhoto
|
|
815
|
+
// *RavenContent_Video
|
|
816
|
+
RavenContent isRavenContent_RavenContent `protobuf_oneof:"ravenContent"`
|
|
817
|
+
unknownFields protoimpl.UnknownFields
|
|
818
|
+
sizeCache protoimpl.SizeCache
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
func (x *RavenContent) Reset() {
|
|
822
|
+
*x = RavenContent{}
|
|
823
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[7]
|
|
824
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
825
|
+
ms.StoreMessageInfo(mi)
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
func (x *RavenContent) String() string {
|
|
829
|
+
return protoimpl.X.MessageStringOf(x)
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
func (*RavenContent) ProtoMessage() {}
|
|
833
|
+
|
|
834
|
+
func (x *RavenContent) ProtoReflect() protoreflect.Message {
|
|
835
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[7]
|
|
836
|
+
if x != nil {
|
|
837
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
838
|
+
if ms.LoadMessageInfo() == nil {
|
|
839
|
+
ms.StoreMessageInfo(mi)
|
|
840
|
+
}
|
|
841
|
+
return ms
|
|
842
|
+
}
|
|
843
|
+
return mi.MessageOf(x)
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
// Deprecated: Use RavenContent.ProtoReflect.Descriptor instead.
|
|
847
|
+
func (*RavenContent) Descriptor() ([]byte, []int) {
|
|
848
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{7}
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
func (x *RavenContent) GetRavenContent() isRavenContent_RavenContent {
|
|
852
|
+
if x != nil {
|
|
853
|
+
return x.RavenContent
|
|
854
|
+
}
|
|
855
|
+
return nil
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
func (x *RavenContent) GetStaticPhoto() *StaticPhoto {
|
|
859
|
+
if x != nil {
|
|
860
|
+
if x, ok := x.RavenContent.(*RavenContent_StaticPhoto); ok {
|
|
861
|
+
return x.StaticPhoto
|
|
862
|
+
}
|
|
863
|
+
}
|
|
864
|
+
return nil
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
func (x *RavenContent) GetVideo() *Video {
|
|
868
|
+
if x != nil {
|
|
869
|
+
if x, ok := x.RavenContent.(*RavenContent_Video); ok {
|
|
870
|
+
return x.Video
|
|
871
|
+
}
|
|
872
|
+
}
|
|
873
|
+
return nil
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
type isRavenContent_RavenContent interface {
|
|
877
|
+
isRavenContent_RavenContent()
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
type RavenContent_StaticPhoto struct {
|
|
881
|
+
StaticPhoto *StaticPhoto `protobuf:"bytes,1,opt,name=staticPhoto,oneof"`
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
type RavenContent_Video struct {
|
|
885
|
+
Video *Video `protobuf:"bytes,2,opt,name=video,oneof"`
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
func (*RavenContent_StaticPhoto) isRavenContent_RavenContent() {}
|
|
889
|
+
|
|
890
|
+
func (*RavenContent_Video) isRavenContent_RavenContent() {}
|
|
891
|
+
|
|
892
|
+
type Thumbnail struct {
|
|
893
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
894
|
+
MediaTransport *CommonMediaTransport `protobuf:"bytes,1,opt,name=mediaTransport" json:"mediaTransport,omitempty"`
|
|
895
|
+
Height *int32 `protobuf:"varint,2,opt,name=height" json:"height,omitempty"`
|
|
896
|
+
Width *int32 `protobuf:"varint,3,opt,name=width" json:"width,omitempty"`
|
|
897
|
+
unknownFields protoimpl.UnknownFields
|
|
898
|
+
sizeCache protoimpl.SizeCache
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
func (x *Thumbnail) Reset() {
|
|
902
|
+
*x = Thumbnail{}
|
|
903
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[8]
|
|
904
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
905
|
+
ms.StoreMessageInfo(mi)
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
func (x *Thumbnail) String() string {
|
|
909
|
+
return protoimpl.X.MessageStringOf(x)
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
func (*Thumbnail) ProtoMessage() {}
|
|
913
|
+
|
|
914
|
+
func (x *Thumbnail) ProtoReflect() protoreflect.Message {
|
|
915
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[8]
|
|
916
|
+
if x != nil {
|
|
917
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
918
|
+
if ms.LoadMessageInfo() == nil {
|
|
919
|
+
ms.StoreMessageInfo(mi)
|
|
920
|
+
}
|
|
921
|
+
return ms
|
|
922
|
+
}
|
|
923
|
+
return mi.MessageOf(x)
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
// Deprecated: Use Thumbnail.ProtoReflect.Descriptor instead.
|
|
927
|
+
func (*Thumbnail) Descriptor() ([]byte, []int) {
|
|
928
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{8}
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
func (x *Thumbnail) GetMediaTransport() *CommonMediaTransport {
|
|
932
|
+
if x != nil {
|
|
933
|
+
return x.MediaTransport
|
|
934
|
+
}
|
|
935
|
+
return nil
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
func (x *Thumbnail) GetHeight() int32 {
|
|
939
|
+
if x != nil && x.Height != nil {
|
|
940
|
+
return *x.Height
|
|
941
|
+
}
|
|
942
|
+
return 0
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
func (x *Thumbnail) GetWidth() int32 {
|
|
946
|
+
if x != nil && x.Width != nil {
|
|
947
|
+
return *x.Width
|
|
948
|
+
}
|
|
949
|
+
return 0
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
type CommonMediaTransport struct {
|
|
953
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
954
|
+
MediaID *string `protobuf:"bytes,1,opt,name=mediaID" json:"mediaID,omitempty"`
|
|
955
|
+
FileSHA256 *string `protobuf:"bytes,2,opt,name=fileSHA256" json:"fileSHA256,omitempty"`
|
|
956
|
+
MediaKey *string `protobuf:"bytes,3,opt,name=mediaKey" json:"mediaKey,omitempty"`
|
|
957
|
+
FileEncSHA256 *string `protobuf:"bytes,4,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
|
|
958
|
+
DirectPath *string `protobuf:"bytes,5,opt,name=directPath" json:"directPath,omitempty"`
|
|
959
|
+
MediaKeyTimestamp *string `protobuf:"bytes,6,opt,name=mediaKeyTimestamp" json:"mediaKeyTimestamp,omitempty"`
|
|
960
|
+
Sidecar *string `protobuf:"bytes,7,opt,name=sidecar" json:"sidecar,omitempty"`
|
|
961
|
+
FileLength *int32 `protobuf:"varint,8,opt,name=fileLength" json:"fileLength,omitempty"`
|
|
962
|
+
Mimetype *string `protobuf:"bytes,9,opt,name=mimetype" json:"mimetype,omitempty"`
|
|
963
|
+
ObjectID *string `protobuf:"bytes,10,opt,name=objectID" json:"objectID,omitempty"`
|
|
964
|
+
unknownFields protoimpl.UnknownFields
|
|
965
|
+
sizeCache protoimpl.SizeCache
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
func (x *CommonMediaTransport) Reset() {
|
|
969
|
+
*x = CommonMediaTransport{}
|
|
970
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[9]
|
|
971
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
972
|
+
ms.StoreMessageInfo(mi)
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
func (x *CommonMediaTransport) String() string {
|
|
976
|
+
return protoimpl.X.MessageStringOf(x)
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
func (*CommonMediaTransport) ProtoMessage() {}
|
|
980
|
+
|
|
981
|
+
func (x *CommonMediaTransport) ProtoReflect() protoreflect.Message {
|
|
982
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[9]
|
|
983
|
+
if x != nil {
|
|
984
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
985
|
+
if ms.LoadMessageInfo() == nil {
|
|
986
|
+
ms.StoreMessageInfo(mi)
|
|
987
|
+
}
|
|
988
|
+
return ms
|
|
989
|
+
}
|
|
990
|
+
return mi.MessageOf(x)
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
// Deprecated: Use CommonMediaTransport.ProtoReflect.Descriptor instead.
|
|
994
|
+
func (*CommonMediaTransport) Descriptor() ([]byte, []int) {
|
|
995
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{9}
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
func (x *CommonMediaTransport) GetMediaID() string {
|
|
999
|
+
if x != nil && x.MediaID != nil {
|
|
1000
|
+
return *x.MediaID
|
|
1001
|
+
}
|
|
1002
|
+
return ""
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
func (x *CommonMediaTransport) GetFileSHA256() string {
|
|
1006
|
+
if x != nil && x.FileSHA256 != nil {
|
|
1007
|
+
return *x.FileSHA256
|
|
1008
|
+
}
|
|
1009
|
+
return ""
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
func (x *CommonMediaTransport) GetMediaKey() string {
|
|
1013
|
+
if x != nil && x.MediaKey != nil {
|
|
1014
|
+
return *x.MediaKey
|
|
1015
|
+
}
|
|
1016
|
+
return ""
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
func (x *CommonMediaTransport) GetFileEncSHA256() string {
|
|
1020
|
+
if x != nil && x.FileEncSHA256 != nil {
|
|
1021
|
+
return *x.FileEncSHA256
|
|
1022
|
+
}
|
|
1023
|
+
return ""
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
func (x *CommonMediaTransport) GetDirectPath() string {
|
|
1027
|
+
if x != nil && x.DirectPath != nil {
|
|
1028
|
+
return *x.DirectPath
|
|
1029
|
+
}
|
|
1030
|
+
return ""
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
func (x *CommonMediaTransport) GetMediaKeyTimestamp() string {
|
|
1034
|
+
if x != nil && x.MediaKeyTimestamp != nil {
|
|
1035
|
+
return *x.MediaKeyTimestamp
|
|
1036
|
+
}
|
|
1037
|
+
return ""
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
func (x *CommonMediaTransport) GetSidecar() string {
|
|
1041
|
+
if x != nil && x.Sidecar != nil {
|
|
1042
|
+
return *x.Sidecar
|
|
1043
|
+
}
|
|
1044
|
+
return ""
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
func (x *CommonMediaTransport) GetFileLength() int32 {
|
|
1048
|
+
if x != nil && x.FileLength != nil {
|
|
1049
|
+
return *x.FileLength
|
|
1050
|
+
}
|
|
1051
|
+
return 0
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
func (x *CommonMediaTransport) GetMimetype() string {
|
|
1055
|
+
if x != nil && x.Mimetype != nil {
|
|
1056
|
+
return *x.Mimetype
|
|
1057
|
+
}
|
|
1058
|
+
return ""
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
func (x *CommonMediaTransport) GetObjectID() string {
|
|
1062
|
+
if x != nil && x.ObjectID != nil {
|
|
1063
|
+
return *x.ObjectID
|
|
1064
|
+
}
|
|
1065
|
+
return ""
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
type VideoExtraMetadata struct {
|
|
1069
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1070
|
+
UploadMosClientScore *float32 `protobuf:"fixed32,1,opt,name=uploadMosClientScore" json:"uploadMosClientScore,omitempty"`
|
|
1071
|
+
unknownFields protoimpl.UnknownFields
|
|
1072
|
+
sizeCache protoimpl.SizeCache
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
func (x *VideoExtraMetadata) Reset() {
|
|
1076
|
+
*x = VideoExtraMetadata{}
|
|
1077
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[10]
|
|
1078
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1079
|
+
ms.StoreMessageInfo(mi)
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
func (x *VideoExtraMetadata) String() string {
|
|
1083
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
func (*VideoExtraMetadata) ProtoMessage() {}
|
|
1087
|
+
|
|
1088
|
+
func (x *VideoExtraMetadata) ProtoReflect() protoreflect.Message {
|
|
1089
|
+
mi := &file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[10]
|
|
1090
|
+
if x != nil {
|
|
1091
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1092
|
+
if ms.LoadMessageInfo() == nil {
|
|
1093
|
+
ms.StoreMessageInfo(mi)
|
|
1094
|
+
}
|
|
1095
|
+
return ms
|
|
1096
|
+
}
|
|
1097
|
+
return mi.MessageOf(x)
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
// Deprecated: Use VideoExtraMetadata.ProtoReflect.Descriptor instead.
|
|
1101
|
+
func (*VideoExtraMetadata) Descriptor() ([]byte, []int) {
|
|
1102
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP(), []int{10}
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
func (x *VideoExtraMetadata) GetUploadMosClientScore() float32 {
|
|
1106
|
+
if x != nil && x.UploadMosClientScore != nil {
|
|
1107
|
+
return *x.UploadMosClientScore
|
|
1108
|
+
}
|
|
1109
|
+
return 0
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
var File_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto protoreflect.FileDescriptor
|
|
1113
|
+
|
|
1114
|
+
const file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDesc = "" +
|
|
1115
|
+
"\n" +
|
|
1116
|
+
"9instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto\x12\x19InstamadilloCoreTypeMedia\"\xc3\x03\n" +
|
|
1117
|
+
"\x05Media\x12J\n" +
|
|
1118
|
+
"\vstaticPhoto\x18\x01 \x01(\v2&.InstamadilloCoreTypeMedia.StaticPhotoH\x00R\vstaticPhoto\x128\n" +
|
|
1119
|
+
"\x05voice\x18\x02 \x01(\v2 .InstamadilloCoreTypeMedia.VoiceH\x00R\x05voice\x128\n" +
|
|
1120
|
+
"\x05video\x18\x03 \x01(\v2 .InstamadilloCoreTypeMedia.VideoH\x00R\x05video\x128\n" +
|
|
1121
|
+
"\x05raven\x18\x04 \x01(\v2 .InstamadilloCoreTypeMedia.RavenH\x00R\x05raven\x122\n" +
|
|
1122
|
+
"\x03gif\x18\x05 \x01(\v2\x1e.InstamadilloCoreTypeMedia.GifH\x00R\x03gif\x12P\n" +
|
|
1123
|
+
"\ravatarSticker\x18\x06 \x01(\v2(.InstamadilloCoreTypeMedia.AvatarStickerH\x00R\ravatarSticker\"1\n" +
|
|
1124
|
+
"\x10InterventionType\x12\t\n" +
|
|
1125
|
+
"\x05UNSET\x10\x00\x12\b\n" +
|
|
1126
|
+
"\x04NONE\x10\x01\x12\b\n" +
|
|
1127
|
+
"\x04NUDE\x10\x02B\a\n" +
|
|
1128
|
+
"\x05media\"\xe9\x02\n" +
|
|
1129
|
+
"\vStaticPhoto\x12W\n" +
|
|
1130
|
+
"\x0emediaTransport\x18\x01 \x01(\v2/.InstamadilloCoreTypeMedia.CommonMediaTransportR\x0emediaTransport\x12\x16\n" +
|
|
1131
|
+
"\x06height\x18\x02 \x01(\x05R\x06height\x12\x14\n" +
|
|
1132
|
+
"\x05width\x18\x03 \x01(\x05R\x05width\x12$\n" +
|
|
1133
|
+
"\vscanLengths\x18\x04 \x03(\x05B\x02\x10\x01R\vscanLengths\x12B\n" +
|
|
1134
|
+
"\tthumbnail\x18\x05 \x01(\v2$.InstamadilloCoreTypeMedia.ThumbnailR\tthumbnail\x12i\n" +
|
|
1135
|
+
"\x16pjpegScanConfiguration\x18\x06 \x01(\x0e21.InstamadilloCoreTypeMedia.PjpegScanConfigurationR\x16pjpegScanConfiguration\"\xe0\x01\n" +
|
|
1136
|
+
"\x05Voice\x12W\n" +
|
|
1137
|
+
"\x0emediaTransport\x18\x01 \x01(\v2/.InstamadilloCoreTypeMedia.CommonMediaTransportR\x0emediaTransport\x12\x1a\n" +
|
|
1138
|
+
"\bduration\x18\x02 \x01(\x05R\bduration\x12 \n" +
|
|
1139
|
+
"\twaveforms\x18\x03 \x03(\x02B\x02\x10\x01R\twaveforms\x12@\n" +
|
|
1140
|
+
"\x1bwaveformSamplingFrequencyHz\x18\x04 \x01(\x05R\x1bwaveformSamplingFrequencyHz\"\xb1\x02\n" +
|
|
1141
|
+
"\x05Video\x12W\n" +
|
|
1142
|
+
"\x0emediaTransport\x18\x01 \x01(\v2/.InstamadilloCoreTypeMedia.CommonMediaTransportR\x0emediaTransport\x12\x16\n" +
|
|
1143
|
+
"\x06height\x18\x02 \x01(\x05R\x06height\x12\x14\n" +
|
|
1144
|
+
"\x05width\x18\x03 \x01(\x05R\x05width\x12B\n" +
|
|
1145
|
+
"\tthumbnail\x18\x04 \x01(\v2$.InstamadilloCoreTypeMedia.ThumbnailR\tthumbnail\x12]\n" +
|
|
1146
|
+
"\x12videoExtraMetadata\x18\x05 \x01(\v2-.InstamadilloCoreTypeMedia.VideoExtraMetadataR\x12videoExtraMetadata\"\x96\x02\n" +
|
|
1147
|
+
"\x03Gif\x12W\n" +
|
|
1148
|
+
"\x0emediaTransport\x18\x01 \x01(\v2/.InstamadilloCoreTypeMedia.CommonMediaTransportR\x0emediaTransport\x12\x16\n" +
|
|
1149
|
+
"\x06height\x18\x02 \x01(\x05R\x06height\x12\x14\n" +
|
|
1150
|
+
"\x05width\x18\x03 \x01(\x05R\x05width\x12\x1c\n" +
|
|
1151
|
+
"\tisSticker\x18\x04 \x01(\bR\tisSticker\x12\x1c\n" +
|
|
1152
|
+
"\tstickerID\x18\x05 \x01(\tR\tstickerID\x12\x16\n" +
|
|
1153
|
+
"\x06gifURL\x18\x06 \x01(\tR\x06gifURL\x12\x18\n" +
|
|
1154
|
+
"\agifSize\x18\a \x01(\x05R\agifSize\x12\x1a\n" +
|
|
1155
|
+
"\bisRandom\x18\b \x01(\bR\bisRandom\"\xea\x01\n" +
|
|
1156
|
+
"\rAvatarSticker\x12W\n" +
|
|
1157
|
+
"\x0emediaTransport\x18\x01 \x01(\v2/.InstamadilloCoreTypeMedia.CommonMediaTransportR\x0emediaTransport\x12\x1e\n" +
|
|
1158
|
+
"\n" +
|
|
1159
|
+
"isAnimated\x18\x02 \x01(\bR\n" +
|
|
1160
|
+
"isAnimated\x12\x1c\n" +
|
|
1161
|
+
"\tstickerID\x18\x03 \x01(\tR\tstickerID\x12(\n" +
|
|
1162
|
+
"\x0fstickerTemplate\x18\x04 \x01(\tR\x0fstickerTemplate\x12\x18\n" +
|
|
1163
|
+
"\anuxType\x18\x05 \x01(\x05R\anuxType\"\x9c\x02\n" +
|
|
1164
|
+
"\x05Raven\x12E\n" +
|
|
1165
|
+
"\bviewMode\x18\x01 \x01(\x0e2).InstamadilloCoreTypeMedia.Raven.ViewModeR\bviewMode\x12A\n" +
|
|
1166
|
+
"\acontent\x18\x02 \x01(\v2'.InstamadilloCoreTypeMedia.RavenContentR\acontent\"\x88\x01\n" +
|
|
1167
|
+
"\bViewMode\x12 \n" +
|
|
1168
|
+
"\x1cRAVEN_VIEW_MODEL_UNSPECIFIED\x10\x00\x12\x19\n" +
|
|
1169
|
+
"\x15RAVEN_VIEW_MODEL_ONCE\x10\x01\x12\x1f\n" +
|
|
1170
|
+
"\x1bRAVEN_VIEW_MODEL_REPLAYABLE\x10\x02\x12\x1e\n" +
|
|
1171
|
+
"\x1aRAVEN_VIEW_MODEL_PERMANENT\x10\x03\"\xa4\x01\n" +
|
|
1172
|
+
"\fRavenContent\x12J\n" +
|
|
1173
|
+
"\vstaticPhoto\x18\x01 \x01(\v2&.InstamadilloCoreTypeMedia.StaticPhotoH\x00R\vstaticPhoto\x128\n" +
|
|
1174
|
+
"\x05video\x18\x02 \x01(\v2 .InstamadilloCoreTypeMedia.VideoH\x00R\x05videoB\x0e\n" +
|
|
1175
|
+
"\fravenContent\"\x92\x01\n" +
|
|
1176
|
+
"\tThumbnail\x12W\n" +
|
|
1177
|
+
"\x0emediaTransport\x18\x01 \x01(\v2/.InstamadilloCoreTypeMedia.CommonMediaTransportR\x0emediaTransport\x12\x16\n" +
|
|
1178
|
+
"\x06height\x18\x02 \x01(\x05R\x06height\x12\x14\n" +
|
|
1179
|
+
"\x05width\x18\x03 \x01(\x05R\x05width\"\xd2\x02\n" +
|
|
1180
|
+
"\x14CommonMediaTransport\x12\x18\n" +
|
|
1181
|
+
"\amediaID\x18\x01 \x01(\tR\amediaID\x12\x1e\n" +
|
|
1182
|
+
"\n" +
|
|
1183
|
+
"fileSHA256\x18\x02 \x01(\tR\n" +
|
|
1184
|
+
"fileSHA256\x12\x1a\n" +
|
|
1185
|
+
"\bmediaKey\x18\x03 \x01(\tR\bmediaKey\x12$\n" +
|
|
1186
|
+
"\rfileEncSHA256\x18\x04 \x01(\tR\rfileEncSHA256\x12\x1e\n" +
|
|
1187
|
+
"\n" +
|
|
1188
|
+
"directPath\x18\x05 \x01(\tR\n" +
|
|
1189
|
+
"directPath\x12,\n" +
|
|
1190
|
+
"\x11mediaKeyTimestamp\x18\x06 \x01(\tR\x11mediaKeyTimestamp\x12\x18\n" +
|
|
1191
|
+
"\asidecar\x18\a \x01(\tR\asidecar\x12\x1e\n" +
|
|
1192
|
+
"\n" +
|
|
1193
|
+
"fileLength\x18\b \x01(\x05R\n" +
|
|
1194
|
+
"fileLength\x12\x1a\n" +
|
|
1195
|
+
"\bmimetype\x18\t \x01(\tR\bmimetype\x12\x1a\n" +
|
|
1196
|
+
"\bobjectID\x18\n" +
|
|
1197
|
+
" \x01(\tR\bobjectID\"H\n" +
|
|
1198
|
+
"\x12VideoExtraMetadata\x122\n" +
|
|
1199
|
+
"\x14uploadMosClientScore\x18\x01 \x01(\x02R\x14uploadMosClientScore*\xa7\x01\n" +
|
|
1200
|
+
"\x16PjpegScanConfiguration\x12(\n" +
|
|
1201
|
+
"$PJPEG_SCAN_CONFIGURATION_UNSPECIFIED\x10\x00\x12\x1f\n" +
|
|
1202
|
+
"\x1bPJPEG_SCAN_CONFIGURATION_WA\x10\x01\x12 \n" +
|
|
1203
|
+
"\x1cPJPEG_SCAN_CONFIGURATION_E15\x10\x02\x12 \n" +
|
|
1204
|
+
"\x1cPJPEG_SCAN_CONFIGURATION_E35\x10\x03B5Z3go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia"
|
|
1205
|
+
|
|
1206
|
+
var (
|
|
1207
|
+
file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescOnce sync.Once
|
|
1208
|
+
file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescData []byte
|
|
1209
|
+
)
|
|
1210
|
+
|
|
1211
|
+
func file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescGZIP() []byte {
|
|
1212
|
+
file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescOnce.Do(func() {
|
|
1213
|
+
file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDesc), len(file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDesc)))
|
|
1214
|
+
})
|
|
1215
|
+
return file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDescData
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
var file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_enumTypes = make([]protoimpl.EnumInfo, 3)
|
|
1219
|
+
var file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes = make([]protoimpl.MessageInfo, 11)
|
|
1220
|
+
var file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_goTypes = []any{
|
|
1221
|
+
(PjpegScanConfiguration)(0), // 0: InstamadilloCoreTypeMedia.PjpegScanConfiguration
|
|
1222
|
+
(Media_InterventionType)(0), // 1: InstamadilloCoreTypeMedia.Media.InterventionType
|
|
1223
|
+
(Raven_ViewMode)(0), // 2: InstamadilloCoreTypeMedia.Raven.ViewMode
|
|
1224
|
+
(*Media)(nil), // 3: InstamadilloCoreTypeMedia.Media
|
|
1225
|
+
(*StaticPhoto)(nil), // 4: InstamadilloCoreTypeMedia.StaticPhoto
|
|
1226
|
+
(*Voice)(nil), // 5: InstamadilloCoreTypeMedia.Voice
|
|
1227
|
+
(*Video)(nil), // 6: InstamadilloCoreTypeMedia.Video
|
|
1228
|
+
(*Gif)(nil), // 7: InstamadilloCoreTypeMedia.Gif
|
|
1229
|
+
(*AvatarSticker)(nil), // 8: InstamadilloCoreTypeMedia.AvatarSticker
|
|
1230
|
+
(*Raven)(nil), // 9: InstamadilloCoreTypeMedia.Raven
|
|
1231
|
+
(*RavenContent)(nil), // 10: InstamadilloCoreTypeMedia.RavenContent
|
|
1232
|
+
(*Thumbnail)(nil), // 11: InstamadilloCoreTypeMedia.Thumbnail
|
|
1233
|
+
(*CommonMediaTransport)(nil), // 12: InstamadilloCoreTypeMedia.CommonMediaTransport
|
|
1234
|
+
(*VideoExtraMetadata)(nil), // 13: InstamadilloCoreTypeMedia.VideoExtraMetadata
|
|
1235
|
+
}
|
|
1236
|
+
var file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_depIdxs = []int32{
|
|
1237
|
+
4, // 0: InstamadilloCoreTypeMedia.Media.staticPhoto:type_name -> InstamadilloCoreTypeMedia.StaticPhoto
|
|
1238
|
+
5, // 1: InstamadilloCoreTypeMedia.Media.voice:type_name -> InstamadilloCoreTypeMedia.Voice
|
|
1239
|
+
6, // 2: InstamadilloCoreTypeMedia.Media.video:type_name -> InstamadilloCoreTypeMedia.Video
|
|
1240
|
+
9, // 3: InstamadilloCoreTypeMedia.Media.raven:type_name -> InstamadilloCoreTypeMedia.Raven
|
|
1241
|
+
7, // 4: InstamadilloCoreTypeMedia.Media.gif:type_name -> InstamadilloCoreTypeMedia.Gif
|
|
1242
|
+
8, // 5: InstamadilloCoreTypeMedia.Media.avatarSticker:type_name -> InstamadilloCoreTypeMedia.AvatarSticker
|
|
1243
|
+
12, // 6: InstamadilloCoreTypeMedia.StaticPhoto.mediaTransport:type_name -> InstamadilloCoreTypeMedia.CommonMediaTransport
|
|
1244
|
+
11, // 7: InstamadilloCoreTypeMedia.StaticPhoto.thumbnail:type_name -> InstamadilloCoreTypeMedia.Thumbnail
|
|
1245
|
+
0, // 8: InstamadilloCoreTypeMedia.StaticPhoto.pjpegScanConfiguration:type_name -> InstamadilloCoreTypeMedia.PjpegScanConfiguration
|
|
1246
|
+
12, // 9: InstamadilloCoreTypeMedia.Voice.mediaTransport:type_name -> InstamadilloCoreTypeMedia.CommonMediaTransport
|
|
1247
|
+
12, // 10: InstamadilloCoreTypeMedia.Video.mediaTransport:type_name -> InstamadilloCoreTypeMedia.CommonMediaTransport
|
|
1248
|
+
11, // 11: InstamadilloCoreTypeMedia.Video.thumbnail:type_name -> InstamadilloCoreTypeMedia.Thumbnail
|
|
1249
|
+
13, // 12: InstamadilloCoreTypeMedia.Video.videoExtraMetadata:type_name -> InstamadilloCoreTypeMedia.VideoExtraMetadata
|
|
1250
|
+
12, // 13: InstamadilloCoreTypeMedia.Gif.mediaTransport:type_name -> InstamadilloCoreTypeMedia.CommonMediaTransport
|
|
1251
|
+
12, // 14: InstamadilloCoreTypeMedia.AvatarSticker.mediaTransport:type_name -> InstamadilloCoreTypeMedia.CommonMediaTransport
|
|
1252
|
+
2, // 15: InstamadilloCoreTypeMedia.Raven.viewMode:type_name -> InstamadilloCoreTypeMedia.Raven.ViewMode
|
|
1253
|
+
10, // 16: InstamadilloCoreTypeMedia.Raven.content:type_name -> InstamadilloCoreTypeMedia.RavenContent
|
|
1254
|
+
4, // 17: InstamadilloCoreTypeMedia.RavenContent.staticPhoto:type_name -> InstamadilloCoreTypeMedia.StaticPhoto
|
|
1255
|
+
6, // 18: InstamadilloCoreTypeMedia.RavenContent.video:type_name -> InstamadilloCoreTypeMedia.Video
|
|
1256
|
+
12, // 19: InstamadilloCoreTypeMedia.Thumbnail.mediaTransport:type_name -> InstamadilloCoreTypeMedia.CommonMediaTransport
|
|
1257
|
+
20, // [20:20] is the sub-list for method output_type
|
|
1258
|
+
20, // [20:20] is the sub-list for method input_type
|
|
1259
|
+
20, // [20:20] is the sub-list for extension type_name
|
|
1260
|
+
20, // [20:20] is the sub-list for extension extendee
|
|
1261
|
+
0, // [0:20] is the sub-list for field type_name
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
func init() { file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_init() }
|
|
1265
|
+
func file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_init() {
|
|
1266
|
+
if File_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto != nil {
|
|
1267
|
+
return
|
|
1268
|
+
}
|
|
1269
|
+
file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[0].OneofWrappers = []any{
|
|
1270
|
+
(*Media_StaticPhoto)(nil),
|
|
1271
|
+
(*Media_Voice)(nil),
|
|
1272
|
+
(*Media_Video)(nil),
|
|
1273
|
+
(*Media_Raven)(nil),
|
|
1274
|
+
(*Media_Gif)(nil),
|
|
1275
|
+
(*Media_AvatarSticker)(nil),
|
|
1276
|
+
}
|
|
1277
|
+
file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes[7].OneofWrappers = []any{
|
|
1278
|
+
(*RavenContent_StaticPhoto)(nil),
|
|
1279
|
+
(*RavenContent_Video)(nil),
|
|
1280
|
+
}
|
|
1281
|
+
type x struct{}
|
|
1282
|
+
out := protoimpl.TypeBuilder{
|
|
1283
|
+
File: protoimpl.DescBuilder{
|
|
1284
|
+
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
1285
|
+
RawDescriptor: unsafe.Slice(unsafe.StringData(file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDesc), len(file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_rawDesc)),
|
|
1286
|
+
NumEnums: 3,
|
|
1287
|
+
NumMessages: 11,
|
|
1288
|
+
NumExtensions: 0,
|
|
1289
|
+
NumServices: 0,
|
|
1290
|
+
},
|
|
1291
|
+
GoTypes: file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_goTypes,
|
|
1292
|
+
DependencyIndexes: file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_depIdxs,
|
|
1293
|
+
EnumInfos: file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_enumTypes,
|
|
1294
|
+
MessageInfos: file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_msgTypes,
|
|
1295
|
+
}.Build()
|
|
1296
|
+
File_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto = out.File
|
|
1297
|
+
file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_goTypes = nil
|
|
1298
|
+
file_instamadilloCoreTypeMedia_InstamadilloCoreTypeMedia_proto_depIdxs = nil
|
|
1299
|
+
}
|