slidge-whatsapp 0.2.6__cp313-cp313-manylinux_2_36_aarch64.whl → 0.3.0__cp313-cp313-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/contact.py +15 -3
- slidge_whatsapp/event.go +152 -50
- slidge_whatsapp/gateway.go +7 -63
- slidge_whatsapp/gateway.py +2 -3
- slidge_whatsapp/generated/_whatsapp.cpython-313-aarch64-linux-gnu.h +180 -163
- slidge_whatsapp/generated/_whatsapp.cpython-313-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +145 -131
- slidge_whatsapp/generated/whatsapp.c +1669 -1397
- slidge_whatsapp/generated/whatsapp.go +1209 -1098
- slidge_whatsapp/generated/whatsapp.py +1175 -1050
- slidge_whatsapp/generated/whatsapp_go.h +180 -163
- slidge_whatsapp/go.mod +18 -15
- slidge_whatsapp/go.sum +38 -32
- slidge_whatsapp/group.py +34 -30
- slidge_whatsapp/media/media.go +6 -2
- slidge_whatsapp/session.go +34 -17
- slidge_whatsapp/session.py +46 -14
- slidge_whatsapp/vendor/github.com/beeper/argo-go/LICENSE +9 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/block/blockreader.go +329 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/block/blockwriter.go +417 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/codec/decoder.go +652 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/codec/encoder.go +985 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/header/header.go +135 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/internal/util/util.go +133 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/label/label.go +384 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/label/wiremarkers.go +37 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/bitset/bitset.go +197 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/buf/buf.go +420 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/pkg/varint/varint.go +246 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/wire/wire.go +614 -0
- slidge_whatsapp/vendor/github.com/beeper/argo-go/wirecodec/decode.go +341 -0
- slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/list.go +95 -0
- slidge_whatsapp/vendor/github.com/elliotchance/orderedmap/v3/orderedmap.go +187 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz.go +1 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo.go +3 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_nocgo.go +4 -5
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_darwin.go +11 -1
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_linux.go +10 -0
- slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_windows.go +12 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/.gitignore +0 -2
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/CHANGELOG.md +30 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/COPYRIGHT.txt +6 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/README.md +14 -17
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi.go +1 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi2.go +7 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/LICENSE +21 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/darwin_amd64/libffi.8.dylib +0 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/darwin_arm64/libffi.8.dylib +0 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/assets/libffi/windows_amd64/libffi-8.dll +0 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/cif.go +15 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/cif_arm64.go +16 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed.go +49 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_darwin_amd64.go +10 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_darwin_arm64.go +10 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/embed_windows_amd64.go +10 -0
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +51 -13
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/init.go +22 -9
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/README.md +2 -0
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +3096 -1651
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +188 -128
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth.go +13 -140
- slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3ext.h +4 -0
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.23.go +2 -2
- slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.25.go +37 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/LICENSE +19 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/argmap.go +37 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/collections.go +148 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/comment.go +31 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/decode.go +216 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/definition.go +110 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/directive.go +43 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/document.go +89 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/dumper.go +159 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/fragment.go +41 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/operation.go +32 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/path.go +72 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/selection.go +41 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/source.go +19 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/type.go +68 -0
- slidge_whatsapp/vendor/github.com/vektah/gqlparser/v2/ast/value.go +122 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/handleerrors.go +60 -26
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/json.go +1 -6
- slidge_whatsapp/vendor/go.mau.fi/util/exhttp/networkerror.go +2 -1
- slidge_whatsapp/vendor/go.mau.fi/util/exstrings/stringutil.go +104 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +19 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.pre-commit-config.yaml +3 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +5 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/argo-wire-type-store.argo +63 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/argo.go +62 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/argo/name-to-queryids.json +306 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +40 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/encoder.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +2 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +79 -45
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +13 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +19 -12
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +26 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +99 -27
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +54 -26
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +208 -57
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +2 -14
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +83 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +17 -8
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +2 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +15 -6
- 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/waArmadilloXMA/WAArmadilloXMA.pb.go +16 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.pb.go +5156 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.proto +516 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.pb.go +46 -10
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.proto +4 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +8975 -11209
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +193 -421
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +52 -23
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +3 -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/waMsgTransport/extra.go +7 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +952 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +88 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +1143 -463
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +60 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +60 -38
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +11 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +20 -7
- 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 +10 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +38 -21
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +3 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +9 -6
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +25 -5
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +4 -2
- 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/store.go +5 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +13 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +2 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +14 -8
- slidge_whatsapp/vendor/golang.org/x/crypto/curve25519/curve25519.go +1 -1
- slidge_whatsapp/vendor/golang.org/x/net/http2/config.go +44 -2
- slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +8 -8
- slidge_whatsapp/vendor/golang.org/x/net/http2/gotrack.go +14 -3
- slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +7 -29
- slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +53 -71
- slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +20 -74
- slidge_whatsapp/vendor/golang.org/x/sys/unix/affinity_linux.go +1 -3
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mkerrors.sh +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +1 -55
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris.go +1 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux.go +47 -16
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +3 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go +4 -4
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux.go +168 -12
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_386.go +17 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go +18 -2
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go +17 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go +17 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go +18 -2
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +6 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +483 -483
- slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/protowire/wire.go +25 -1
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +10 -5
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/presence.go +33 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/api_gen.go +6 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +68 -22
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message_opaque.go +2 -1
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque.go +8 -37
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/presence.go +0 -3
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +1 -1
- slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go +8 -0
- slidge_whatsapp/vendor/modules.txt +57 -23
- {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0.dist-info}/METADATA +5 -4
- {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0.dist-info}/RECORD +254 -174
- {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0.dist-info}/WHEEL +1 -1
- slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi_amd64.go +0 -7
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_go124.go +0 -61
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_pre_go124.go +0 -16
- slidge_whatsapp/vendor/golang.org/x/net/http2/timer.go +0 -20
- {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0.dist-info}/entry_points.txt +0 -0
- {slidge_whatsapp-0.2.6.dist-info → slidge_whatsapp-0.3.0.dist-info/licenses}/LICENSE +0 -0
|
@@ -0,0 +1,1238 @@
|
|
|
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: instamadilloXmaContentRef/InstamadilloXmaContentRef.proto
|
|
6
|
+
|
|
7
|
+
package instamadilloXmaContentRef
|
|
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 XmaActionType int32
|
|
26
|
+
|
|
27
|
+
const (
|
|
28
|
+
XmaActionType_XMA_ACTION_TYPE_UNSPECIFIED XmaActionType = 0
|
|
29
|
+
XmaActionType_XMA_ACTION_TYPE_SHARE XmaActionType = 1
|
|
30
|
+
XmaActionType_XMA_ACTION_TYPE_REPLY XmaActionType = 2
|
|
31
|
+
XmaActionType_XMA_ACTION_TYPE_REACT XmaActionType = 3
|
|
32
|
+
XmaActionType_XMA_ACTION_TYPE_MENTION XmaActionType = 4
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
// Enum value maps for XmaActionType.
|
|
36
|
+
var (
|
|
37
|
+
XmaActionType_name = map[int32]string{
|
|
38
|
+
0: "XMA_ACTION_TYPE_UNSPECIFIED",
|
|
39
|
+
1: "XMA_ACTION_TYPE_SHARE",
|
|
40
|
+
2: "XMA_ACTION_TYPE_REPLY",
|
|
41
|
+
3: "XMA_ACTION_TYPE_REACT",
|
|
42
|
+
4: "XMA_ACTION_TYPE_MENTION",
|
|
43
|
+
}
|
|
44
|
+
XmaActionType_value = map[string]int32{
|
|
45
|
+
"XMA_ACTION_TYPE_UNSPECIFIED": 0,
|
|
46
|
+
"XMA_ACTION_TYPE_SHARE": 1,
|
|
47
|
+
"XMA_ACTION_TYPE_REPLY": 2,
|
|
48
|
+
"XMA_ACTION_TYPE_REACT": 3,
|
|
49
|
+
"XMA_ACTION_TYPE_MENTION": 4,
|
|
50
|
+
}
|
|
51
|
+
)
|
|
52
|
+
|
|
53
|
+
func (x XmaActionType) Enum() *XmaActionType {
|
|
54
|
+
p := new(XmaActionType)
|
|
55
|
+
*p = x
|
|
56
|
+
return p
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
func (x XmaActionType) String() string {
|
|
60
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
func (XmaActionType) Descriptor() protoreflect.EnumDescriptor {
|
|
64
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_enumTypes[0].Descriptor()
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
func (XmaActionType) Type() protoreflect.EnumType {
|
|
68
|
+
return &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_enumTypes[0]
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
func (x XmaActionType) Number() protoreflect.EnumNumber {
|
|
72
|
+
return protoreflect.EnumNumber(x)
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
// Deprecated: Do not use.
|
|
76
|
+
func (x *XmaActionType) UnmarshalJSON(b []byte) error {
|
|
77
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
78
|
+
if err != nil {
|
|
79
|
+
return err
|
|
80
|
+
}
|
|
81
|
+
*x = XmaActionType(num)
|
|
82
|
+
return nil
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// Deprecated: Use XmaActionType.Descriptor instead.
|
|
86
|
+
func (XmaActionType) EnumDescriptor() ([]byte, []int) {
|
|
87
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP(), []int{0}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
type ReceiverFetchContentType int32
|
|
91
|
+
|
|
92
|
+
const (
|
|
93
|
+
ReceiverFetchContentType_RECEIVER_FETCH_CONTENT_TYPE_UNSPECIFIED ReceiverFetchContentType = 0
|
|
94
|
+
ReceiverFetchContentType_RECEIVER_FETCH_CONTENT_TYPE_NOTE ReceiverFetchContentType = 1
|
|
95
|
+
ReceiverFetchContentType_RECEIVER_FETCH_CONTENT_TYPE_STORY ReceiverFetchContentType = 2
|
|
96
|
+
ReceiverFetchContentType_RECEIVER_FETCH_CONTENT_TYPE_PROFILE ReceiverFetchContentType = 3
|
|
97
|
+
ReceiverFetchContentType_RECEIVER_FETCH_CONTENT_TYPE_CLIP ReceiverFetchContentType = 4
|
|
98
|
+
ReceiverFetchContentType_RECEIVER_FETCH_CONTENT_TYPE_FEED ReceiverFetchContentType = 5
|
|
99
|
+
ReceiverFetchContentType_RECEIVER_FETCH_CONTENT_TYPE_LIVE ReceiverFetchContentType = 6
|
|
100
|
+
ReceiverFetchContentType_RECEIVER_FETCH_CONTENT_TYPE_COMMENT ReceiverFetchContentType = 7
|
|
101
|
+
ReceiverFetchContentType_RECEIVER_FETCH_CONTENT_TYPE_LOCATION_SHARE ReceiverFetchContentType = 8
|
|
102
|
+
ReceiverFetchContentType_RECEIVER_FETCH_CONTENT_TYPE_REELS_AUDIO ReceiverFetchContentType = 9
|
|
103
|
+
ReceiverFetchContentType_RECEIVER_FETCH_CONTENT_TYPE_MEDIA_NOTE ReceiverFetchContentType = 10
|
|
104
|
+
ReceiverFetchContentType_RECEIVER_FETCH_CONTENT_TYPE_STORY_HIGHLIGHT ReceiverFetchContentType = 11
|
|
105
|
+
ReceiverFetchContentType_RECEIVER_FETCH_CONTENT_TYPE_SOCIAL_CONTEXT ReceiverFetchContentType = 12
|
|
106
|
+
)
|
|
107
|
+
|
|
108
|
+
// Enum value maps for ReceiverFetchContentType.
|
|
109
|
+
var (
|
|
110
|
+
ReceiverFetchContentType_name = map[int32]string{
|
|
111
|
+
0: "RECEIVER_FETCH_CONTENT_TYPE_UNSPECIFIED",
|
|
112
|
+
1: "RECEIVER_FETCH_CONTENT_TYPE_NOTE",
|
|
113
|
+
2: "RECEIVER_FETCH_CONTENT_TYPE_STORY",
|
|
114
|
+
3: "RECEIVER_FETCH_CONTENT_TYPE_PROFILE",
|
|
115
|
+
4: "RECEIVER_FETCH_CONTENT_TYPE_CLIP",
|
|
116
|
+
5: "RECEIVER_FETCH_CONTENT_TYPE_FEED",
|
|
117
|
+
6: "RECEIVER_FETCH_CONTENT_TYPE_LIVE",
|
|
118
|
+
7: "RECEIVER_FETCH_CONTENT_TYPE_COMMENT",
|
|
119
|
+
8: "RECEIVER_FETCH_CONTENT_TYPE_LOCATION_SHARE",
|
|
120
|
+
9: "RECEIVER_FETCH_CONTENT_TYPE_REELS_AUDIO",
|
|
121
|
+
10: "RECEIVER_FETCH_CONTENT_TYPE_MEDIA_NOTE",
|
|
122
|
+
11: "RECEIVER_FETCH_CONTENT_TYPE_STORY_HIGHLIGHT",
|
|
123
|
+
12: "RECEIVER_FETCH_CONTENT_TYPE_SOCIAL_CONTEXT",
|
|
124
|
+
}
|
|
125
|
+
ReceiverFetchContentType_value = map[string]int32{
|
|
126
|
+
"RECEIVER_FETCH_CONTENT_TYPE_UNSPECIFIED": 0,
|
|
127
|
+
"RECEIVER_FETCH_CONTENT_TYPE_NOTE": 1,
|
|
128
|
+
"RECEIVER_FETCH_CONTENT_TYPE_STORY": 2,
|
|
129
|
+
"RECEIVER_FETCH_CONTENT_TYPE_PROFILE": 3,
|
|
130
|
+
"RECEIVER_FETCH_CONTENT_TYPE_CLIP": 4,
|
|
131
|
+
"RECEIVER_FETCH_CONTENT_TYPE_FEED": 5,
|
|
132
|
+
"RECEIVER_FETCH_CONTENT_TYPE_LIVE": 6,
|
|
133
|
+
"RECEIVER_FETCH_CONTENT_TYPE_COMMENT": 7,
|
|
134
|
+
"RECEIVER_FETCH_CONTENT_TYPE_LOCATION_SHARE": 8,
|
|
135
|
+
"RECEIVER_FETCH_CONTENT_TYPE_REELS_AUDIO": 9,
|
|
136
|
+
"RECEIVER_FETCH_CONTENT_TYPE_MEDIA_NOTE": 10,
|
|
137
|
+
"RECEIVER_FETCH_CONTENT_TYPE_STORY_HIGHLIGHT": 11,
|
|
138
|
+
"RECEIVER_FETCH_CONTENT_TYPE_SOCIAL_CONTEXT": 12,
|
|
139
|
+
}
|
|
140
|
+
)
|
|
141
|
+
|
|
142
|
+
func (x ReceiverFetchContentType) Enum() *ReceiverFetchContentType {
|
|
143
|
+
p := new(ReceiverFetchContentType)
|
|
144
|
+
*p = x
|
|
145
|
+
return p
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
func (x ReceiverFetchContentType) String() string {
|
|
149
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
func (ReceiverFetchContentType) Descriptor() protoreflect.EnumDescriptor {
|
|
153
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_enumTypes[1].Descriptor()
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
func (ReceiverFetchContentType) Type() protoreflect.EnumType {
|
|
157
|
+
return &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_enumTypes[1]
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
func (x ReceiverFetchContentType) Number() protoreflect.EnumNumber {
|
|
161
|
+
return protoreflect.EnumNumber(x)
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
// Deprecated: Do not use.
|
|
165
|
+
func (x *ReceiverFetchContentType) UnmarshalJSON(b []byte) error {
|
|
166
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
167
|
+
if err != nil {
|
|
168
|
+
return err
|
|
169
|
+
}
|
|
170
|
+
*x = ReceiverFetchContentType(num)
|
|
171
|
+
return nil
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
// Deprecated: Use ReceiverFetchContentType.Descriptor instead.
|
|
175
|
+
func (ReceiverFetchContentType) EnumDescriptor() ([]byte, []int) {
|
|
176
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP(), []int{1}
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
type MediaNoteFetchParamsMessageType int32
|
|
180
|
+
|
|
181
|
+
const (
|
|
182
|
+
MediaNoteFetchParamsMessageType_MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_UNSPECIFIED MediaNoteFetchParamsMessageType = 0
|
|
183
|
+
MediaNoteFetchParamsMessageType_MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_MENTION MediaNoteFetchParamsMessageType = 1
|
|
184
|
+
MediaNoteFetchParamsMessageType_MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_REPLY MediaNoteFetchParamsMessageType = 2
|
|
185
|
+
)
|
|
186
|
+
|
|
187
|
+
// Enum value maps for MediaNoteFetchParamsMessageType.
|
|
188
|
+
var (
|
|
189
|
+
MediaNoteFetchParamsMessageType_name = map[int32]string{
|
|
190
|
+
0: "MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_UNSPECIFIED",
|
|
191
|
+
1: "MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_MENTION",
|
|
192
|
+
2: "MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_REPLY",
|
|
193
|
+
}
|
|
194
|
+
MediaNoteFetchParamsMessageType_value = map[string]int32{
|
|
195
|
+
"MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_UNSPECIFIED": 0,
|
|
196
|
+
"MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_MENTION": 1,
|
|
197
|
+
"MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_REPLY": 2,
|
|
198
|
+
}
|
|
199
|
+
)
|
|
200
|
+
|
|
201
|
+
func (x MediaNoteFetchParamsMessageType) Enum() *MediaNoteFetchParamsMessageType {
|
|
202
|
+
p := new(MediaNoteFetchParamsMessageType)
|
|
203
|
+
*p = x
|
|
204
|
+
return p
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
func (x MediaNoteFetchParamsMessageType) String() string {
|
|
208
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
func (MediaNoteFetchParamsMessageType) Descriptor() protoreflect.EnumDescriptor {
|
|
212
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_enumTypes[2].Descriptor()
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
func (MediaNoteFetchParamsMessageType) Type() protoreflect.EnumType {
|
|
216
|
+
return &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_enumTypes[2]
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
func (x MediaNoteFetchParamsMessageType) Number() protoreflect.EnumNumber {
|
|
220
|
+
return protoreflect.EnumNumber(x)
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
// Deprecated: Do not use.
|
|
224
|
+
func (x *MediaNoteFetchParamsMessageType) UnmarshalJSON(b []byte) error {
|
|
225
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
226
|
+
if err != nil {
|
|
227
|
+
return err
|
|
228
|
+
}
|
|
229
|
+
*x = MediaNoteFetchParamsMessageType(num)
|
|
230
|
+
return nil
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
// Deprecated: Use MediaNoteFetchParamsMessageType.Descriptor instead.
|
|
234
|
+
func (MediaNoteFetchParamsMessageType) EnumDescriptor() ([]byte, []int) {
|
|
235
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP(), []int{2}
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
type XmaContentRef struct {
|
|
239
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
240
|
+
ActionType *XmaActionType `protobuf:"varint,1,opt,name=actionType,enum=InstamadilloXmaContentRef.XmaActionType" json:"actionType,omitempty"`
|
|
241
|
+
ContentType *ReceiverFetchContentType `protobuf:"varint,2,opt,name=contentType,enum=InstamadilloXmaContentRef.ReceiverFetchContentType" json:"contentType,omitempty"`
|
|
242
|
+
TargetURL *string `protobuf:"bytes,3,opt,name=targetURL" json:"targetURL,omitempty"`
|
|
243
|
+
UserName *string `protobuf:"bytes,4,opt,name=userName" json:"userName,omitempty"`
|
|
244
|
+
OwnerFbid *string `protobuf:"bytes,5,opt,name=ownerFbid" json:"ownerFbid,omitempty"`
|
|
245
|
+
FetchParams *ReceiverFetchXmaFetchParams `protobuf:"bytes,6,opt,name=fetchParams" json:"fetchParams,omitempty"`
|
|
246
|
+
unknownFields protoimpl.UnknownFields
|
|
247
|
+
sizeCache protoimpl.SizeCache
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
func (x *XmaContentRef) Reset() {
|
|
251
|
+
*x = XmaContentRef{}
|
|
252
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[0]
|
|
253
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
254
|
+
ms.StoreMessageInfo(mi)
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
func (x *XmaContentRef) String() string {
|
|
258
|
+
return protoimpl.X.MessageStringOf(x)
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
func (*XmaContentRef) ProtoMessage() {}
|
|
262
|
+
|
|
263
|
+
func (x *XmaContentRef) ProtoReflect() protoreflect.Message {
|
|
264
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[0]
|
|
265
|
+
if x != nil {
|
|
266
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
267
|
+
if ms.LoadMessageInfo() == nil {
|
|
268
|
+
ms.StoreMessageInfo(mi)
|
|
269
|
+
}
|
|
270
|
+
return ms
|
|
271
|
+
}
|
|
272
|
+
return mi.MessageOf(x)
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
// Deprecated: Use XmaContentRef.ProtoReflect.Descriptor instead.
|
|
276
|
+
func (*XmaContentRef) Descriptor() ([]byte, []int) {
|
|
277
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP(), []int{0}
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
func (x *XmaContentRef) GetActionType() XmaActionType {
|
|
281
|
+
if x != nil && x.ActionType != nil {
|
|
282
|
+
return *x.ActionType
|
|
283
|
+
}
|
|
284
|
+
return XmaActionType_XMA_ACTION_TYPE_UNSPECIFIED
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
func (x *XmaContentRef) GetContentType() ReceiverFetchContentType {
|
|
288
|
+
if x != nil && x.ContentType != nil {
|
|
289
|
+
return *x.ContentType
|
|
290
|
+
}
|
|
291
|
+
return ReceiverFetchContentType_RECEIVER_FETCH_CONTENT_TYPE_UNSPECIFIED
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
func (x *XmaContentRef) GetTargetURL() string {
|
|
295
|
+
if x != nil && x.TargetURL != nil {
|
|
296
|
+
return *x.TargetURL
|
|
297
|
+
}
|
|
298
|
+
return ""
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
func (x *XmaContentRef) GetUserName() string {
|
|
302
|
+
if x != nil && x.UserName != nil {
|
|
303
|
+
return *x.UserName
|
|
304
|
+
}
|
|
305
|
+
return ""
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
func (x *XmaContentRef) GetOwnerFbid() string {
|
|
309
|
+
if x != nil && x.OwnerFbid != nil {
|
|
310
|
+
return *x.OwnerFbid
|
|
311
|
+
}
|
|
312
|
+
return ""
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
func (x *XmaContentRef) GetFetchParams() *ReceiverFetchXmaFetchParams {
|
|
316
|
+
if x != nil {
|
|
317
|
+
return x.FetchParams
|
|
318
|
+
}
|
|
319
|
+
return nil
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
type ReceiverFetchXmaFetchParams struct {
|
|
323
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
324
|
+
// Types that are valid to be assigned to ReceiverFetchXmaFetchParams:
|
|
325
|
+
//
|
|
326
|
+
// *ReceiverFetchXmaFetchParams_NoteFetchParams
|
|
327
|
+
// *ReceiverFetchXmaFetchParams_StoryFetchParams
|
|
328
|
+
// *ReceiverFetchXmaFetchParams_ProfileFetchParams
|
|
329
|
+
// *ReceiverFetchXmaFetchParams_ClipFetchParams
|
|
330
|
+
// *ReceiverFetchXmaFetchParams_FeedFetchParams
|
|
331
|
+
// *ReceiverFetchXmaFetchParams_LiveFetchParams
|
|
332
|
+
// *ReceiverFetchXmaFetchParams_CommentFetchParams
|
|
333
|
+
// *ReceiverFetchXmaFetchParams_LocationShareFetchParams
|
|
334
|
+
// *ReceiverFetchXmaFetchParams_ReelsAudioFetchParams
|
|
335
|
+
// *ReceiverFetchXmaFetchParams_MediaNoteFetchParams
|
|
336
|
+
// *ReceiverFetchXmaFetchParams_SocialContextFetchParams
|
|
337
|
+
ReceiverFetchXmaFetchParams isReceiverFetchXmaFetchParams_ReceiverFetchXmaFetchParams `protobuf_oneof:"receiverFetchXmaFetchParams"`
|
|
338
|
+
unknownFields protoimpl.UnknownFields
|
|
339
|
+
sizeCache protoimpl.SizeCache
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
func (x *ReceiverFetchXmaFetchParams) Reset() {
|
|
343
|
+
*x = ReceiverFetchXmaFetchParams{}
|
|
344
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[1]
|
|
345
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
346
|
+
ms.StoreMessageInfo(mi)
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
func (x *ReceiverFetchXmaFetchParams) String() string {
|
|
350
|
+
return protoimpl.X.MessageStringOf(x)
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
func (*ReceiverFetchXmaFetchParams) ProtoMessage() {}
|
|
354
|
+
|
|
355
|
+
func (x *ReceiverFetchXmaFetchParams) ProtoReflect() protoreflect.Message {
|
|
356
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[1]
|
|
357
|
+
if x != nil {
|
|
358
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
359
|
+
if ms.LoadMessageInfo() == nil {
|
|
360
|
+
ms.StoreMessageInfo(mi)
|
|
361
|
+
}
|
|
362
|
+
return ms
|
|
363
|
+
}
|
|
364
|
+
return mi.MessageOf(x)
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
// Deprecated: Use ReceiverFetchXmaFetchParams.ProtoReflect.Descriptor instead.
|
|
368
|
+
func (*ReceiverFetchXmaFetchParams) Descriptor() ([]byte, []int) {
|
|
369
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP(), []int{1}
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
func (x *ReceiverFetchXmaFetchParams) GetReceiverFetchXmaFetchParams() isReceiverFetchXmaFetchParams_ReceiverFetchXmaFetchParams {
|
|
373
|
+
if x != nil {
|
|
374
|
+
return x.ReceiverFetchXmaFetchParams
|
|
375
|
+
}
|
|
376
|
+
return nil
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
func (x *ReceiverFetchXmaFetchParams) GetNoteFetchParams() *ReceiverFetchXmaNoteFetchParams {
|
|
380
|
+
if x != nil {
|
|
381
|
+
if x, ok := x.ReceiverFetchXmaFetchParams.(*ReceiverFetchXmaFetchParams_NoteFetchParams); ok {
|
|
382
|
+
return x.NoteFetchParams
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
return nil
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
func (x *ReceiverFetchXmaFetchParams) GetStoryFetchParams() *ReceiverFetchXmaStoryFetchParams {
|
|
389
|
+
if x != nil {
|
|
390
|
+
if x, ok := x.ReceiverFetchXmaFetchParams.(*ReceiverFetchXmaFetchParams_StoryFetchParams); ok {
|
|
391
|
+
return x.StoryFetchParams
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
return nil
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
func (x *ReceiverFetchXmaFetchParams) GetProfileFetchParams() *ReceiverFetchXmaProfileFetchParams {
|
|
398
|
+
if x != nil {
|
|
399
|
+
if x, ok := x.ReceiverFetchXmaFetchParams.(*ReceiverFetchXmaFetchParams_ProfileFetchParams); ok {
|
|
400
|
+
return x.ProfileFetchParams
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
return nil
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
func (x *ReceiverFetchXmaFetchParams) GetClipFetchParams() *ReceiverFetchXmaClipFetchParams {
|
|
407
|
+
if x != nil {
|
|
408
|
+
if x, ok := x.ReceiverFetchXmaFetchParams.(*ReceiverFetchXmaFetchParams_ClipFetchParams); ok {
|
|
409
|
+
return x.ClipFetchParams
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
return nil
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
func (x *ReceiverFetchXmaFetchParams) GetFeedFetchParams() *ReceiverFetchXmaFeedFetchParams {
|
|
416
|
+
if x != nil {
|
|
417
|
+
if x, ok := x.ReceiverFetchXmaFetchParams.(*ReceiverFetchXmaFetchParams_FeedFetchParams); ok {
|
|
418
|
+
return x.FeedFetchParams
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
return nil
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
func (x *ReceiverFetchXmaFetchParams) GetLiveFetchParams() *ReceiverFetchXmaLiveFetchParams {
|
|
425
|
+
if x != nil {
|
|
426
|
+
if x, ok := x.ReceiverFetchXmaFetchParams.(*ReceiverFetchXmaFetchParams_LiveFetchParams); ok {
|
|
427
|
+
return x.LiveFetchParams
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
return nil
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
func (x *ReceiverFetchXmaFetchParams) GetCommentFetchParams() *ReceiverFetchXmaCommentFetchParams {
|
|
434
|
+
if x != nil {
|
|
435
|
+
if x, ok := x.ReceiverFetchXmaFetchParams.(*ReceiverFetchXmaFetchParams_CommentFetchParams); ok {
|
|
436
|
+
return x.CommentFetchParams
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
return nil
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
func (x *ReceiverFetchXmaFetchParams) GetLocationShareFetchParams() *ReceiverFetchXmaLocationShareFetchParams {
|
|
443
|
+
if x != nil {
|
|
444
|
+
if x, ok := x.ReceiverFetchXmaFetchParams.(*ReceiverFetchXmaFetchParams_LocationShareFetchParams); ok {
|
|
445
|
+
return x.LocationShareFetchParams
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
return nil
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
func (x *ReceiverFetchXmaFetchParams) GetReelsAudioFetchParams() *ReceiverFetchXmaReelsAudioFetchParams {
|
|
452
|
+
if x != nil {
|
|
453
|
+
if x, ok := x.ReceiverFetchXmaFetchParams.(*ReceiverFetchXmaFetchParams_ReelsAudioFetchParams); ok {
|
|
454
|
+
return x.ReelsAudioFetchParams
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
return nil
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
func (x *ReceiverFetchXmaFetchParams) GetMediaNoteFetchParams() *ReceiverFetchXmaMediaNoteFetchParams {
|
|
461
|
+
if x != nil {
|
|
462
|
+
if x, ok := x.ReceiverFetchXmaFetchParams.(*ReceiverFetchXmaFetchParams_MediaNoteFetchParams); ok {
|
|
463
|
+
return x.MediaNoteFetchParams
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
return nil
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
func (x *ReceiverFetchXmaFetchParams) GetSocialContextFetchParams() *ReceiverFetchXmaSocialContextFetchParams {
|
|
470
|
+
if x != nil {
|
|
471
|
+
if x, ok := x.ReceiverFetchXmaFetchParams.(*ReceiverFetchXmaFetchParams_SocialContextFetchParams); ok {
|
|
472
|
+
return x.SocialContextFetchParams
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
return nil
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
type isReceiverFetchXmaFetchParams_ReceiverFetchXmaFetchParams interface {
|
|
479
|
+
isReceiverFetchXmaFetchParams_ReceiverFetchXmaFetchParams()
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
type ReceiverFetchXmaFetchParams_NoteFetchParams struct {
|
|
483
|
+
NoteFetchParams *ReceiverFetchXmaNoteFetchParams `protobuf:"bytes,1,opt,name=noteFetchParams,oneof"`
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
type ReceiverFetchXmaFetchParams_StoryFetchParams struct {
|
|
487
|
+
StoryFetchParams *ReceiverFetchXmaStoryFetchParams `protobuf:"bytes,2,opt,name=storyFetchParams,oneof"`
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
type ReceiverFetchXmaFetchParams_ProfileFetchParams struct {
|
|
491
|
+
ProfileFetchParams *ReceiverFetchXmaProfileFetchParams `protobuf:"bytes,3,opt,name=profileFetchParams,oneof"`
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
type ReceiverFetchXmaFetchParams_ClipFetchParams struct {
|
|
495
|
+
ClipFetchParams *ReceiverFetchXmaClipFetchParams `protobuf:"bytes,4,opt,name=clipFetchParams,oneof"`
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
type ReceiverFetchXmaFetchParams_FeedFetchParams struct {
|
|
499
|
+
FeedFetchParams *ReceiverFetchXmaFeedFetchParams `protobuf:"bytes,5,opt,name=feedFetchParams,oneof"`
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
type ReceiverFetchXmaFetchParams_LiveFetchParams struct {
|
|
503
|
+
LiveFetchParams *ReceiverFetchXmaLiveFetchParams `protobuf:"bytes,6,opt,name=liveFetchParams,oneof"`
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
type ReceiverFetchXmaFetchParams_CommentFetchParams struct {
|
|
507
|
+
CommentFetchParams *ReceiverFetchXmaCommentFetchParams `protobuf:"bytes,7,opt,name=commentFetchParams,oneof"`
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
type ReceiverFetchXmaFetchParams_LocationShareFetchParams struct {
|
|
511
|
+
LocationShareFetchParams *ReceiverFetchXmaLocationShareFetchParams `protobuf:"bytes,8,opt,name=locationShareFetchParams,oneof"`
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
type ReceiverFetchXmaFetchParams_ReelsAudioFetchParams struct {
|
|
515
|
+
ReelsAudioFetchParams *ReceiverFetchXmaReelsAudioFetchParams `protobuf:"bytes,9,opt,name=reelsAudioFetchParams,oneof"`
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
type ReceiverFetchXmaFetchParams_MediaNoteFetchParams struct {
|
|
519
|
+
MediaNoteFetchParams *ReceiverFetchXmaMediaNoteFetchParams `protobuf:"bytes,10,opt,name=mediaNoteFetchParams,oneof"`
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
type ReceiverFetchXmaFetchParams_SocialContextFetchParams struct {
|
|
523
|
+
SocialContextFetchParams *ReceiverFetchXmaSocialContextFetchParams `protobuf:"bytes,11,opt,name=socialContextFetchParams,oneof"`
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
func (*ReceiverFetchXmaFetchParams_NoteFetchParams) isReceiverFetchXmaFetchParams_ReceiverFetchXmaFetchParams() {
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
func (*ReceiverFetchXmaFetchParams_StoryFetchParams) isReceiverFetchXmaFetchParams_ReceiverFetchXmaFetchParams() {
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
func (*ReceiverFetchXmaFetchParams_ProfileFetchParams) isReceiverFetchXmaFetchParams_ReceiverFetchXmaFetchParams() {
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
func (*ReceiverFetchXmaFetchParams_ClipFetchParams) isReceiverFetchXmaFetchParams_ReceiverFetchXmaFetchParams() {
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
func (*ReceiverFetchXmaFetchParams_FeedFetchParams) isReceiverFetchXmaFetchParams_ReceiverFetchXmaFetchParams() {
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
func (*ReceiverFetchXmaFetchParams_LiveFetchParams) isReceiverFetchXmaFetchParams_ReceiverFetchXmaFetchParams() {
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
func (*ReceiverFetchXmaFetchParams_CommentFetchParams) isReceiverFetchXmaFetchParams_ReceiverFetchXmaFetchParams() {
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
func (*ReceiverFetchXmaFetchParams_LocationShareFetchParams) isReceiverFetchXmaFetchParams_ReceiverFetchXmaFetchParams() {
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
func (*ReceiverFetchXmaFetchParams_ReelsAudioFetchParams) isReceiverFetchXmaFetchParams_ReceiverFetchXmaFetchParams() {
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
func (*ReceiverFetchXmaFetchParams_MediaNoteFetchParams) isReceiverFetchXmaFetchParams_ReceiverFetchXmaFetchParams() {
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
func (*ReceiverFetchXmaFetchParams_SocialContextFetchParams) isReceiverFetchXmaFetchParams_ReceiverFetchXmaFetchParams() {
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
type ReceiverFetchXmaNoteFetchParams struct {
|
|
560
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
561
|
+
NoteIgid *string `protobuf:"bytes,1,opt,name=noteIgid" json:"noteIgid,omitempty"`
|
|
562
|
+
unknownFields protoimpl.UnknownFields
|
|
563
|
+
sizeCache protoimpl.SizeCache
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
func (x *ReceiverFetchXmaNoteFetchParams) Reset() {
|
|
567
|
+
*x = ReceiverFetchXmaNoteFetchParams{}
|
|
568
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[2]
|
|
569
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
570
|
+
ms.StoreMessageInfo(mi)
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
func (x *ReceiverFetchXmaNoteFetchParams) String() string {
|
|
574
|
+
return protoimpl.X.MessageStringOf(x)
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
func (*ReceiverFetchXmaNoteFetchParams) ProtoMessage() {}
|
|
578
|
+
|
|
579
|
+
func (x *ReceiverFetchXmaNoteFetchParams) ProtoReflect() protoreflect.Message {
|
|
580
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[2]
|
|
581
|
+
if x != nil {
|
|
582
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
583
|
+
if ms.LoadMessageInfo() == nil {
|
|
584
|
+
ms.StoreMessageInfo(mi)
|
|
585
|
+
}
|
|
586
|
+
return ms
|
|
587
|
+
}
|
|
588
|
+
return mi.MessageOf(x)
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
// Deprecated: Use ReceiverFetchXmaNoteFetchParams.ProtoReflect.Descriptor instead.
|
|
592
|
+
func (*ReceiverFetchXmaNoteFetchParams) Descriptor() ([]byte, []int) {
|
|
593
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP(), []int{2}
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
func (x *ReceiverFetchXmaNoteFetchParams) GetNoteIgid() string {
|
|
597
|
+
if x != nil && x.NoteIgid != nil {
|
|
598
|
+
return *x.NoteIgid
|
|
599
|
+
}
|
|
600
|
+
return ""
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
type ReceiverFetchXmaStoryFetchParams struct {
|
|
604
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
605
|
+
StoryIgid *string `protobuf:"bytes,1,opt,name=storyIgid" json:"storyIgid,omitempty"`
|
|
606
|
+
ReelID *string `protobuf:"bytes,2,opt,name=reelID" json:"reelID,omitempty"`
|
|
607
|
+
unknownFields protoimpl.UnknownFields
|
|
608
|
+
sizeCache protoimpl.SizeCache
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
func (x *ReceiverFetchXmaStoryFetchParams) Reset() {
|
|
612
|
+
*x = ReceiverFetchXmaStoryFetchParams{}
|
|
613
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[3]
|
|
614
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
615
|
+
ms.StoreMessageInfo(mi)
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
func (x *ReceiverFetchXmaStoryFetchParams) String() string {
|
|
619
|
+
return protoimpl.X.MessageStringOf(x)
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
func (*ReceiverFetchXmaStoryFetchParams) ProtoMessage() {}
|
|
623
|
+
|
|
624
|
+
func (x *ReceiverFetchXmaStoryFetchParams) ProtoReflect() protoreflect.Message {
|
|
625
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[3]
|
|
626
|
+
if x != nil {
|
|
627
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
628
|
+
if ms.LoadMessageInfo() == nil {
|
|
629
|
+
ms.StoreMessageInfo(mi)
|
|
630
|
+
}
|
|
631
|
+
return ms
|
|
632
|
+
}
|
|
633
|
+
return mi.MessageOf(x)
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
// Deprecated: Use ReceiverFetchXmaStoryFetchParams.ProtoReflect.Descriptor instead.
|
|
637
|
+
func (*ReceiverFetchXmaStoryFetchParams) Descriptor() ([]byte, []int) {
|
|
638
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP(), []int{3}
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
func (x *ReceiverFetchXmaStoryFetchParams) GetStoryIgid() string {
|
|
642
|
+
if x != nil && x.StoryIgid != nil {
|
|
643
|
+
return *x.StoryIgid
|
|
644
|
+
}
|
|
645
|
+
return ""
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
func (x *ReceiverFetchXmaStoryFetchParams) GetReelID() string {
|
|
649
|
+
if x != nil && x.ReelID != nil {
|
|
650
|
+
return *x.ReelID
|
|
651
|
+
}
|
|
652
|
+
return ""
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
type ReceiverFetchXmaProfileFetchParams struct {
|
|
656
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
657
|
+
ProfileIgid *string `protobuf:"bytes,1,opt,name=profileIgid" json:"profileIgid,omitempty"`
|
|
658
|
+
unknownFields protoimpl.UnknownFields
|
|
659
|
+
sizeCache protoimpl.SizeCache
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
func (x *ReceiverFetchXmaProfileFetchParams) Reset() {
|
|
663
|
+
*x = ReceiverFetchXmaProfileFetchParams{}
|
|
664
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[4]
|
|
665
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
666
|
+
ms.StoreMessageInfo(mi)
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
func (x *ReceiverFetchXmaProfileFetchParams) String() string {
|
|
670
|
+
return protoimpl.X.MessageStringOf(x)
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
func (*ReceiverFetchXmaProfileFetchParams) ProtoMessage() {}
|
|
674
|
+
|
|
675
|
+
func (x *ReceiverFetchXmaProfileFetchParams) ProtoReflect() protoreflect.Message {
|
|
676
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[4]
|
|
677
|
+
if x != nil {
|
|
678
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
679
|
+
if ms.LoadMessageInfo() == nil {
|
|
680
|
+
ms.StoreMessageInfo(mi)
|
|
681
|
+
}
|
|
682
|
+
return ms
|
|
683
|
+
}
|
|
684
|
+
return mi.MessageOf(x)
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
// Deprecated: Use ReceiverFetchXmaProfileFetchParams.ProtoReflect.Descriptor instead.
|
|
688
|
+
func (*ReceiverFetchXmaProfileFetchParams) Descriptor() ([]byte, []int) {
|
|
689
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP(), []int{4}
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
func (x *ReceiverFetchXmaProfileFetchParams) GetProfileIgid() string {
|
|
693
|
+
if x != nil && x.ProfileIgid != nil {
|
|
694
|
+
return *x.ProfileIgid
|
|
695
|
+
}
|
|
696
|
+
return ""
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
type ReceiverFetchXmaClipFetchParams struct {
|
|
700
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
701
|
+
MediaIgid *string `protobuf:"bytes,1,opt,name=mediaIgid" json:"mediaIgid,omitempty"`
|
|
702
|
+
unknownFields protoimpl.UnknownFields
|
|
703
|
+
sizeCache protoimpl.SizeCache
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
func (x *ReceiverFetchXmaClipFetchParams) Reset() {
|
|
707
|
+
*x = ReceiverFetchXmaClipFetchParams{}
|
|
708
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[5]
|
|
709
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
710
|
+
ms.StoreMessageInfo(mi)
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
func (x *ReceiverFetchXmaClipFetchParams) String() string {
|
|
714
|
+
return protoimpl.X.MessageStringOf(x)
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
func (*ReceiverFetchXmaClipFetchParams) ProtoMessage() {}
|
|
718
|
+
|
|
719
|
+
func (x *ReceiverFetchXmaClipFetchParams) ProtoReflect() protoreflect.Message {
|
|
720
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[5]
|
|
721
|
+
if x != nil {
|
|
722
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
723
|
+
if ms.LoadMessageInfo() == nil {
|
|
724
|
+
ms.StoreMessageInfo(mi)
|
|
725
|
+
}
|
|
726
|
+
return ms
|
|
727
|
+
}
|
|
728
|
+
return mi.MessageOf(x)
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
// Deprecated: Use ReceiverFetchXmaClipFetchParams.ProtoReflect.Descriptor instead.
|
|
732
|
+
func (*ReceiverFetchXmaClipFetchParams) Descriptor() ([]byte, []int) {
|
|
733
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP(), []int{5}
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
func (x *ReceiverFetchXmaClipFetchParams) GetMediaIgid() string {
|
|
737
|
+
if x != nil && x.MediaIgid != nil {
|
|
738
|
+
return *x.MediaIgid
|
|
739
|
+
}
|
|
740
|
+
return ""
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
type ReceiverFetchXmaFeedFetchParams struct {
|
|
744
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
745
|
+
MediaIgid *string `protobuf:"bytes,1,opt,name=mediaIgid" json:"mediaIgid,omitempty"`
|
|
746
|
+
CarouselShareChildMediaIgid *string `protobuf:"bytes,2,opt,name=carouselShareChildMediaIgid" json:"carouselShareChildMediaIgid,omitempty"`
|
|
747
|
+
unknownFields protoimpl.UnknownFields
|
|
748
|
+
sizeCache protoimpl.SizeCache
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
func (x *ReceiverFetchXmaFeedFetchParams) Reset() {
|
|
752
|
+
*x = ReceiverFetchXmaFeedFetchParams{}
|
|
753
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[6]
|
|
754
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
755
|
+
ms.StoreMessageInfo(mi)
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
func (x *ReceiverFetchXmaFeedFetchParams) String() string {
|
|
759
|
+
return protoimpl.X.MessageStringOf(x)
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
func (*ReceiverFetchXmaFeedFetchParams) ProtoMessage() {}
|
|
763
|
+
|
|
764
|
+
func (x *ReceiverFetchXmaFeedFetchParams) ProtoReflect() protoreflect.Message {
|
|
765
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[6]
|
|
766
|
+
if x != nil {
|
|
767
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
768
|
+
if ms.LoadMessageInfo() == nil {
|
|
769
|
+
ms.StoreMessageInfo(mi)
|
|
770
|
+
}
|
|
771
|
+
return ms
|
|
772
|
+
}
|
|
773
|
+
return mi.MessageOf(x)
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
// Deprecated: Use ReceiverFetchXmaFeedFetchParams.ProtoReflect.Descriptor instead.
|
|
777
|
+
func (*ReceiverFetchXmaFeedFetchParams) Descriptor() ([]byte, []int) {
|
|
778
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP(), []int{6}
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
func (x *ReceiverFetchXmaFeedFetchParams) GetMediaIgid() string {
|
|
782
|
+
if x != nil && x.MediaIgid != nil {
|
|
783
|
+
return *x.MediaIgid
|
|
784
|
+
}
|
|
785
|
+
return ""
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
func (x *ReceiverFetchXmaFeedFetchParams) GetCarouselShareChildMediaIgid() string {
|
|
789
|
+
if x != nil && x.CarouselShareChildMediaIgid != nil {
|
|
790
|
+
return *x.CarouselShareChildMediaIgid
|
|
791
|
+
}
|
|
792
|
+
return ""
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
type ReceiverFetchXmaLiveFetchParams struct {
|
|
796
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
797
|
+
LiveIgid *string `protobuf:"bytes,1,opt,name=liveIgid" json:"liveIgid,omitempty"`
|
|
798
|
+
unknownFields protoimpl.UnknownFields
|
|
799
|
+
sizeCache protoimpl.SizeCache
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
func (x *ReceiverFetchXmaLiveFetchParams) Reset() {
|
|
803
|
+
*x = ReceiverFetchXmaLiveFetchParams{}
|
|
804
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[7]
|
|
805
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
806
|
+
ms.StoreMessageInfo(mi)
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
func (x *ReceiverFetchXmaLiveFetchParams) String() string {
|
|
810
|
+
return protoimpl.X.MessageStringOf(x)
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
func (*ReceiverFetchXmaLiveFetchParams) ProtoMessage() {}
|
|
814
|
+
|
|
815
|
+
func (x *ReceiverFetchXmaLiveFetchParams) ProtoReflect() protoreflect.Message {
|
|
816
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[7]
|
|
817
|
+
if x != nil {
|
|
818
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
819
|
+
if ms.LoadMessageInfo() == nil {
|
|
820
|
+
ms.StoreMessageInfo(mi)
|
|
821
|
+
}
|
|
822
|
+
return ms
|
|
823
|
+
}
|
|
824
|
+
return mi.MessageOf(x)
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
// Deprecated: Use ReceiverFetchXmaLiveFetchParams.ProtoReflect.Descriptor instead.
|
|
828
|
+
func (*ReceiverFetchXmaLiveFetchParams) Descriptor() ([]byte, []int) {
|
|
829
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP(), []int{7}
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
func (x *ReceiverFetchXmaLiveFetchParams) GetLiveIgid() string {
|
|
833
|
+
if x != nil && x.LiveIgid != nil {
|
|
834
|
+
return *x.LiveIgid
|
|
835
|
+
}
|
|
836
|
+
return ""
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
type ReceiverFetchXmaCommentFetchParams struct {
|
|
840
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
841
|
+
CommentFbid *string `protobuf:"bytes,1,opt,name=commentFbid" json:"commentFbid,omitempty"`
|
|
842
|
+
unknownFields protoimpl.UnknownFields
|
|
843
|
+
sizeCache protoimpl.SizeCache
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
func (x *ReceiverFetchXmaCommentFetchParams) Reset() {
|
|
847
|
+
*x = ReceiverFetchXmaCommentFetchParams{}
|
|
848
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[8]
|
|
849
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
850
|
+
ms.StoreMessageInfo(mi)
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
func (x *ReceiverFetchXmaCommentFetchParams) String() string {
|
|
854
|
+
return protoimpl.X.MessageStringOf(x)
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
func (*ReceiverFetchXmaCommentFetchParams) ProtoMessage() {}
|
|
858
|
+
|
|
859
|
+
func (x *ReceiverFetchXmaCommentFetchParams) ProtoReflect() protoreflect.Message {
|
|
860
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[8]
|
|
861
|
+
if x != nil {
|
|
862
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
863
|
+
if ms.LoadMessageInfo() == nil {
|
|
864
|
+
ms.StoreMessageInfo(mi)
|
|
865
|
+
}
|
|
866
|
+
return ms
|
|
867
|
+
}
|
|
868
|
+
return mi.MessageOf(x)
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
// Deprecated: Use ReceiverFetchXmaCommentFetchParams.ProtoReflect.Descriptor instead.
|
|
872
|
+
func (*ReceiverFetchXmaCommentFetchParams) Descriptor() ([]byte, []int) {
|
|
873
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP(), []int{8}
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
func (x *ReceiverFetchXmaCommentFetchParams) GetCommentFbid() string {
|
|
877
|
+
if x != nil && x.CommentFbid != nil {
|
|
878
|
+
return *x.CommentFbid
|
|
879
|
+
}
|
|
880
|
+
return ""
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
type ReceiverFetchXmaLocationShareFetchParams struct {
|
|
884
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
885
|
+
LocationIgid *string `protobuf:"bytes,1,opt,name=locationIgid" json:"locationIgid,omitempty"`
|
|
886
|
+
unknownFields protoimpl.UnknownFields
|
|
887
|
+
sizeCache protoimpl.SizeCache
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
func (x *ReceiverFetchXmaLocationShareFetchParams) Reset() {
|
|
891
|
+
*x = ReceiverFetchXmaLocationShareFetchParams{}
|
|
892
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[9]
|
|
893
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
894
|
+
ms.StoreMessageInfo(mi)
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
func (x *ReceiverFetchXmaLocationShareFetchParams) String() string {
|
|
898
|
+
return protoimpl.X.MessageStringOf(x)
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
func (*ReceiverFetchXmaLocationShareFetchParams) ProtoMessage() {}
|
|
902
|
+
|
|
903
|
+
func (x *ReceiverFetchXmaLocationShareFetchParams) ProtoReflect() protoreflect.Message {
|
|
904
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[9]
|
|
905
|
+
if x != nil {
|
|
906
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
907
|
+
if ms.LoadMessageInfo() == nil {
|
|
908
|
+
ms.StoreMessageInfo(mi)
|
|
909
|
+
}
|
|
910
|
+
return ms
|
|
911
|
+
}
|
|
912
|
+
return mi.MessageOf(x)
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
// Deprecated: Use ReceiverFetchXmaLocationShareFetchParams.ProtoReflect.Descriptor instead.
|
|
916
|
+
func (*ReceiverFetchXmaLocationShareFetchParams) Descriptor() ([]byte, []int) {
|
|
917
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP(), []int{9}
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
func (x *ReceiverFetchXmaLocationShareFetchParams) GetLocationIgid() string {
|
|
921
|
+
if x != nil && x.LocationIgid != nil {
|
|
922
|
+
return *x.LocationIgid
|
|
923
|
+
}
|
|
924
|
+
return ""
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
type ReceiverFetchXmaReelsAudioFetchParams struct {
|
|
928
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
929
|
+
AudioIgid *string `protobuf:"bytes,1,opt,name=audioIgid" json:"audioIgid,omitempty"`
|
|
930
|
+
unknownFields protoimpl.UnknownFields
|
|
931
|
+
sizeCache protoimpl.SizeCache
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
func (x *ReceiverFetchXmaReelsAudioFetchParams) Reset() {
|
|
935
|
+
*x = ReceiverFetchXmaReelsAudioFetchParams{}
|
|
936
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[10]
|
|
937
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
938
|
+
ms.StoreMessageInfo(mi)
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
func (x *ReceiverFetchXmaReelsAudioFetchParams) String() string {
|
|
942
|
+
return protoimpl.X.MessageStringOf(x)
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
func (*ReceiverFetchXmaReelsAudioFetchParams) ProtoMessage() {}
|
|
946
|
+
|
|
947
|
+
func (x *ReceiverFetchXmaReelsAudioFetchParams) ProtoReflect() protoreflect.Message {
|
|
948
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[10]
|
|
949
|
+
if x != nil {
|
|
950
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
951
|
+
if ms.LoadMessageInfo() == nil {
|
|
952
|
+
ms.StoreMessageInfo(mi)
|
|
953
|
+
}
|
|
954
|
+
return ms
|
|
955
|
+
}
|
|
956
|
+
return mi.MessageOf(x)
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
// Deprecated: Use ReceiverFetchXmaReelsAudioFetchParams.ProtoReflect.Descriptor instead.
|
|
960
|
+
func (*ReceiverFetchXmaReelsAudioFetchParams) Descriptor() ([]byte, []int) {
|
|
961
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP(), []int{10}
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
func (x *ReceiverFetchXmaReelsAudioFetchParams) GetAudioIgid() string {
|
|
965
|
+
if x != nil && x.AudioIgid != nil {
|
|
966
|
+
return *x.AudioIgid
|
|
967
|
+
}
|
|
968
|
+
return ""
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
type ReceiverFetchXmaMediaNoteFetchParams struct {
|
|
972
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
973
|
+
MediaNoteIgid *string `protobuf:"bytes,1,opt,name=mediaNoteIgid" json:"mediaNoteIgid,omitempty"`
|
|
974
|
+
MessageType *MediaNoteFetchParamsMessageType `protobuf:"varint,2,opt,name=messageType,enum=InstamadilloXmaContentRef.MediaNoteFetchParamsMessageType" json:"messageType,omitempty"`
|
|
975
|
+
unknownFields protoimpl.UnknownFields
|
|
976
|
+
sizeCache protoimpl.SizeCache
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
func (x *ReceiverFetchXmaMediaNoteFetchParams) Reset() {
|
|
980
|
+
*x = ReceiverFetchXmaMediaNoteFetchParams{}
|
|
981
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[11]
|
|
982
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
983
|
+
ms.StoreMessageInfo(mi)
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
func (x *ReceiverFetchXmaMediaNoteFetchParams) String() string {
|
|
987
|
+
return protoimpl.X.MessageStringOf(x)
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
func (*ReceiverFetchXmaMediaNoteFetchParams) ProtoMessage() {}
|
|
991
|
+
|
|
992
|
+
func (x *ReceiverFetchXmaMediaNoteFetchParams) ProtoReflect() protoreflect.Message {
|
|
993
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[11]
|
|
994
|
+
if x != nil {
|
|
995
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
996
|
+
if ms.LoadMessageInfo() == nil {
|
|
997
|
+
ms.StoreMessageInfo(mi)
|
|
998
|
+
}
|
|
999
|
+
return ms
|
|
1000
|
+
}
|
|
1001
|
+
return mi.MessageOf(x)
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
// Deprecated: Use ReceiverFetchXmaMediaNoteFetchParams.ProtoReflect.Descriptor instead.
|
|
1005
|
+
func (*ReceiverFetchXmaMediaNoteFetchParams) Descriptor() ([]byte, []int) {
|
|
1006
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP(), []int{11}
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
func (x *ReceiverFetchXmaMediaNoteFetchParams) GetMediaNoteIgid() string {
|
|
1010
|
+
if x != nil && x.MediaNoteIgid != nil {
|
|
1011
|
+
return *x.MediaNoteIgid
|
|
1012
|
+
}
|
|
1013
|
+
return ""
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
func (x *ReceiverFetchXmaMediaNoteFetchParams) GetMessageType() MediaNoteFetchParamsMessageType {
|
|
1017
|
+
if x != nil && x.MessageType != nil {
|
|
1018
|
+
return *x.MessageType
|
|
1019
|
+
}
|
|
1020
|
+
return MediaNoteFetchParamsMessageType_MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_UNSPECIFIED
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
type ReceiverFetchXmaSocialContextFetchParams struct {
|
|
1024
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1025
|
+
MediaIgid *string `protobuf:"bytes,1,opt,name=mediaIgid" json:"mediaIgid,omitempty"`
|
|
1026
|
+
unknownFields protoimpl.UnknownFields
|
|
1027
|
+
sizeCache protoimpl.SizeCache
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
func (x *ReceiverFetchXmaSocialContextFetchParams) Reset() {
|
|
1031
|
+
*x = ReceiverFetchXmaSocialContextFetchParams{}
|
|
1032
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[12]
|
|
1033
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1034
|
+
ms.StoreMessageInfo(mi)
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
func (x *ReceiverFetchXmaSocialContextFetchParams) String() string {
|
|
1038
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
func (*ReceiverFetchXmaSocialContextFetchParams) ProtoMessage() {}
|
|
1042
|
+
|
|
1043
|
+
func (x *ReceiverFetchXmaSocialContextFetchParams) ProtoReflect() protoreflect.Message {
|
|
1044
|
+
mi := &file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[12]
|
|
1045
|
+
if x != nil {
|
|
1046
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1047
|
+
if ms.LoadMessageInfo() == nil {
|
|
1048
|
+
ms.StoreMessageInfo(mi)
|
|
1049
|
+
}
|
|
1050
|
+
return ms
|
|
1051
|
+
}
|
|
1052
|
+
return mi.MessageOf(x)
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
// Deprecated: Use ReceiverFetchXmaSocialContextFetchParams.ProtoReflect.Descriptor instead.
|
|
1056
|
+
func (*ReceiverFetchXmaSocialContextFetchParams) Descriptor() ([]byte, []int) {
|
|
1057
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP(), []int{12}
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
func (x *ReceiverFetchXmaSocialContextFetchParams) GetMediaIgid() string {
|
|
1061
|
+
if x != nil && x.MediaIgid != nil {
|
|
1062
|
+
return *x.MediaIgid
|
|
1063
|
+
}
|
|
1064
|
+
return ""
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
var File_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto protoreflect.FileDescriptor
|
|
1068
|
+
|
|
1069
|
+
const file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDesc = "" +
|
|
1070
|
+
"\n" +
|
|
1071
|
+
"9instamadilloXmaContentRef/InstamadilloXmaContentRef.proto\x12\x19InstamadilloXmaContentRef\"\xe2\x02\n" +
|
|
1072
|
+
"\rXmaContentRef\x12H\n" +
|
|
1073
|
+
"\n" +
|
|
1074
|
+
"actionType\x18\x01 \x01(\x0e2(.InstamadilloXmaContentRef.XmaActionTypeR\n" +
|
|
1075
|
+
"actionType\x12U\n" +
|
|
1076
|
+
"\vcontentType\x18\x02 \x01(\x0e23.InstamadilloXmaContentRef.ReceiverFetchContentTypeR\vcontentType\x12\x1c\n" +
|
|
1077
|
+
"\ttargetURL\x18\x03 \x01(\tR\ttargetURL\x12\x1a\n" +
|
|
1078
|
+
"\buserName\x18\x04 \x01(\tR\buserName\x12\x1c\n" +
|
|
1079
|
+
"\townerFbid\x18\x05 \x01(\tR\townerFbid\x12X\n" +
|
|
1080
|
+
"\vfetchParams\x18\x06 \x01(\v26.InstamadilloXmaContentRef.ReceiverFetchXmaFetchParamsR\vfetchParams\"\xa2\n" +
|
|
1081
|
+
"\n" +
|
|
1082
|
+
"\x1bReceiverFetchXmaFetchParams\x12f\n" +
|
|
1083
|
+
"\x0fnoteFetchParams\x18\x01 \x01(\v2:.InstamadilloXmaContentRef.ReceiverFetchXmaNoteFetchParamsH\x00R\x0fnoteFetchParams\x12i\n" +
|
|
1084
|
+
"\x10storyFetchParams\x18\x02 \x01(\v2;.InstamadilloXmaContentRef.ReceiverFetchXmaStoryFetchParamsH\x00R\x10storyFetchParams\x12o\n" +
|
|
1085
|
+
"\x12profileFetchParams\x18\x03 \x01(\v2=.InstamadilloXmaContentRef.ReceiverFetchXmaProfileFetchParamsH\x00R\x12profileFetchParams\x12f\n" +
|
|
1086
|
+
"\x0fclipFetchParams\x18\x04 \x01(\v2:.InstamadilloXmaContentRef.ReceiverFetchXmaClipFetchParamsH\x00R\x0fclipFetchParams\x12f\n" +
|
|
1087
|
+
"\x0ffeedFetchParams\x18\x05 \x01(\v2:.InstamadilloXmaContentRef.ReceiverFetchXmaFeedFetchParamsH\x00R\x0ffeedFetchParams\x12f\n" +
|
|
1088
|
+
"\x0fliveFetchParams\x18\x06 \x01(\v2:.InstamadilloXmaContentRef.ReceiverFetchXmaLiveFetchParamsH\x00R\x0fliveFetchParams\x12o\n" +
|
|
1089
|
+
"\x12commentFetchParams\x18\a \x01(\v2=.InstamadilloXmaContentRef.ReceiverFetchXmaCommentFetchParamsH\x00R\x12commentFetchParams\x12\x81\x01\n" +
|
|
1090
|
+
"\x18locationShareFetchParams\x18\b \x01(\v2C.InstamadilloXmaContentRef.ReceiverFetchXmaLocationShareFetchParamsH\x00R\x18locationShareFetchParams\x12x\n" +
|
|
1091
|
+
"\x15reelsAudioFetchParams\x18\t \x01(\v2@.InstamadilloXmaContentRef.ReceiverFetchXmaReelsAudioFetchParamsH\x00R\x15reelsAudioFetchParams\x12u\n" +
|
|
1092
|
+
"\x14mediaNoteFetchParams\x18\n" +
|
|
1093
|
+
" \x01(\v2?.InstamadilloXmaContentRef.ReceiverFetchXmaMediaNoteFetchParamsH\x00R\x14mediaNoteFetchParams\x12\x81\x01\n" +
|
|
1094
|
+
"\x18socialContextFetchParams\x18\v \x01(\v2C.InstamadilloXmaContentRef.ReceiverFetchXmaSocialContextFetchParamsH\x00R\x18socialContextFetchParamsB\x1d\n" +
|
|
1095
|
+
"\x1breceiverFetchXmaFetchParams\"=\n" +
|
|
1096
|
+
"\x1fReceiverFetchXmaNoteFetchParams\x12\x1a\n" +
|
|
1097
|
+
"\bnoteIgid\x18\x01 \x01(\tR\bnoteIgid\"X\n" +
|
|
1098
|
+
" ReceiverFetchXmaStoryFetchParams\x12\x1c\n" +
|
|
1099
|
+
"\tstoryIgid\x18\x01 \x01(\tR\tstoryIgid\x12\x16\n" +
|
|
1100
|
+
"\x06reelID\x18\x02 \x01(\tR\x06reelID\"F\n" +
|
|
1101
|
+
"\"ReceiverFetchXmaProfileFetchParams\x12 \n" +
|
|
1102
|
+
"\vprofileIgid\x18\x01 \x01(\tR\vprofileIgid\"?\n" +
|
|
1103
|
+
"\x1fReceiverFetchXmaClipFetchParams\x12\x1c\n" +
|
|
1104
|
+
"\tmediaIgid\x18\x01 \x01(\tR\tmediaIgid\"\x81\x01\n" +
|
|
1105
|
+
"\x1fReceiverFetchXmaFeedFetchParams\x12\x1c\n" +
|
|
1106
|
+
"\tmediaIgid\x18\x01 \x01(\tR\tmediaIgid\x12@\n" +
|
|
1107
|
+
"\x1bcarouselShareChildMediaIgid\x18\x02 \x01(\tR\x1bcarouselShareChildMediaIgid\"=\n" +
|
|
1108
|
+
"\x1fReceiverFetchXmaLiveFetchParams\x12\x1a\n" +
|
|
1109
|
+
"\bliveIgid\x18\x01 \x01(\tR\bliveIgid\"F\n" +
|
|
1110
|
+
"\"ReceiverFetchXmaCommentFetchParams\x12 \n" +
|
|
1111
|
+
"\vcommentFbid\x18\x01 \x01(\tR\vcommentFbid\"N\n" +
|
|
1112
|
+
"(ReceiverFetchXmaLocationShareFetchParams\x12\"\n" +
|
|
1113
|
+
"\flocationIgid\x18\x01 \x01(\tR\flocationIgid\"E\n" +
|
|
1114
|
+
"%ReceiverFetchXmaReelsAudioFetchParams\x12\x1c\n" +
|
|
1115
|
+
"\taudioIgid\x18\x01 \x01(\tR\taudioIgid\"\xaa\x01\n" +
|
|
1116
|
+
"$ReceiverFetchXmaMediaNoteFetchParams\x12$\n" +
|
|
1117
|
+
"\rmediaNoteIgid\x18\x01 \x01(\tR\rmediaNoteIgid\x12\\\n" +
|
|
1118
|
+
"\vmessageType\x18\x02 \x01(\x0e2:.InstamadilloXmaContentRef.MediaNoteFetchParamsMessageTypeR\vmessageType\"H\n" +
|
|
1119
|
+
"(ReceiverFetchXmaSocialContextFetchParams\x12\x1c\n" +
|
|
1120
|
+
"\tmediaIgid\x18\x01 \x01(\tR\tmediaIgid*\x9e\x01\n" +
|
|
1121
|
+
"\rXmaActionType\x12\x1f\n" +
|
|
1122
|
+
"\x1bXMA_ACTION_TYPE_UNSPECIFIED\x10\x00\x12\x19\n" +
|
|
1123
|
+
"\x15XMA_ACTION_TYPE_SHARE\x10\x01\x12\x19\n" +
|
|
1124
|
+
"\x15XMA_ACTION_TYPE_REPLY\x10\x02\x12\x19\n" +
|
|
1125
|
+
"\x15XMA_ACTION_TYPE_REACT\x10\x03\x12\x1b\n" +
|
|
1126
|
+
"\x17XMA_ACTION_TYPE_MENTION\x10\x04*\xc2\x04\n" +
|
|
1127
|
+
"\x18ReceiverFetchContentType\x12+\n" +
|
|
1128
|
+
"'RECEIVER_FETCH_CONTENT_TYPE_UNSPECIFIED\x10\x00\x12$\n" +
|
|
1129
|
+
" RECEIVER_FETCH_CONTENT_TYPE_NOTE\x10\x01\x12%\n" +
|
|
1130
|
+
"!RECEIVER_FETCH_CONTENT_TYPE_STORY\x10\x02\x12'\n" +
|
|
1131
|
+
"#RECEIVER_FETCH_CONTENT_TYPE_PROFILE\x10\x03\x12$\n" +
|
|
1132
|
+
" RECEIVER_FETCH_CONTENT_TYPE_CLIP\x10\x04\x12$\n" +
|
|
1133
|
+
" RECEIVER_FETCH_CONTENT_TYPE_FEED\x10\x05\x12$\n" +
|
|
1134
|
+
" RECEIVER_FETCH_CONTENT_TYPE_LIVE\x10\x06\x12'\n" +
|
|
1135
|
+
"#RECEIVER_FETCH_CONTENT_TYPE_COMMENT\x10\a\x12.\n" +
|
|
1136
|
+
"*RECEIVER_FETCH_CONTENT_TYPE_LOCATION_SHARE\x10\b\x12+\n" +
|
|
1137
|
+
"'RECEIVER_FETCH_CONTENT_TYPE_REELS_AUDIO\x10\t\x12*\n" +
|
|
1138
|
+
"&RECEIVER_FETCH_CONTENT_TYPE_MEDIA_NOTE\x10\n" +
|
|
1139
|
+
"\x12/\n" +
|
|
1140
|
+
"+RECEIVER_FETCH_CONTENT_TYPE_STORY_HIGHLIGHT\x10\v\x12.\n" +
|
|
1141
|
+
"*RECEIVER_FETCH_CONTENT_TYPE_SOCIAL_CONTEXT\x10\f*\xb9\x01\n" +
|
|
1142
|
+
"\x1fMediaNoteFetchParamsMessageType\x124\n" +
|
|
1143
|
+
"0MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_UNSPECIFIED\x10\x00\x120\n" +
|
|
1144
|
+
",MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_MENTION\x10\x01\x12.\n" +
|
|
1145
|
+
"*MEDIA_NOTE_FETCH_PARAMS_MESSAGE_TYPE_REPLY\x10\x02B5Z3go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef"
|
|
1146
|
+
|
|
1147
|
+
var (
|
|
1148
|
+
file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescOnce sync.Once
|
|
1149
|
+
file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescData []byte
|
|
1150
|
+
)
|
|
1151
|
+
|
|
1152
|
+
func file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescGZIP() []byte {
|
|
1153
|
+
file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescOnce.Do(func() {
|
|
1154
|
+
file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDesc), len(file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDesc)))
|
|
1155
|
+
})
|
|
1156
|
+
return file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDescData
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
var file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_enumTypes = make([]protoimpl.EnumInfo, 3)
|
|
1160
|
+
var file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes = make([]protoimpl.MessageInfo, 13)
|
|
1161
|
+
var file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_goTypes = []any{
|
|
1162
|
+
(XmaActionType)(0), // 0: InstamadilloXmaContentRef.XmaActionType
|
|
1163
|
+
(ReceiverFetchContentType)(0), // 1: InstamadilloXmaContentRef.ReceiverFetchContentType
|
|
1164
|
+
(MediaNoteFetchParamsMessageType)(0), // 2: InstamadilloXmaContentRef.MediaNoteFetchParamsMessageType
|
|
1165
|
+
(*XmaContentRef)(nil), // 3: InstamadilloXmaContentRef.XmaContentRef
|
|
1166
|
+
(*ReceiverFetchXmaFetchParams)(nil), // 4: InstamadilloXmaContentRef.ReceiverFetchXmaFetchParams
|
|
1167
|
+
(*ReceiverFetchXmaNoteFetchParams)(nil), // 5: InstamadilloXmaContentRef.ReceiverFetchXmaNoteFetchParams
|
|
1168
|
+
(*ReceiverFetchXmaStoryFetchParams)(nil), // 6: InstamadilloXmaContentRef.ReceiverFetchXmaStoryFetchParams
|
|
1169
|
+
(*ReceiverFetchXmaProfileFetchParams)(nil), // 7: InstamadilloXmaContentRef.ReceiverFetchXmaProfileFetchParams
|
|
1170
|
+
(*ReceiverFetchXmaClipFetchParams)(nil), // 8: InstamadilloXmaContentRef.ReceiverFetchXmaClipFetchParams
|
|
1171
|
+
(*ReceiverFetchXmaFeedFetchParams)(nil), // 9: InstamadilloXmaContentRef.ReceiverFetchXmaFeedFetchParams
|
|
1172
|
+
(*ReceiverFetchXmaLiveFetchParams)(nil), // 10: InstamadilloXmaContentRef.ReceiverFetchXmaLiveFetchParams
|
|
1173
|
+
(*ReceiverFetchXmaCommentFetchParams)(nil), // 11: InstamadilloXmaContentRef.ReceiverFetchXmaCommentFetchParams
|
|
1174
|
+
(*ReceiverFetchXmaLocationShareFetchParams)(nil), // 12: InstamadilloXmaContentRef.ReceiverFetchXmaLocationShareFetchParams
|
|
1175
|
+
(*ReceiverFetchXmaReelsAudioFetchParams)(nil), // 13: InstamadilloXmaContentRef.ReceiverFetchXmaReelsAudioFetchParams
|
|
1176
|
+
(*ReceiverFetchXmaMediaNoteFetchParams)(nil), // 14: InstamadilloXmaContentRef.ReceiverFetchXmaMediaNoteFetchParams
|
|
1177
|
+
(*ReceiverFetchXmaSocialContextFetchParams)(nil), // 15: InstamadilloXmaContentRef.ReceiverFetchXmaSocialContextFetchParams
|
|
1178
|
+
}
|
|
1179
|
+
var file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_depIdxs = []int32{
|
|
1180
|
+
0, // 0: InstamadilloXmaContentRef.XmaContentRef.actionType:type_name -> InstamadilloXmaContentRef.XmaActionType
|
|
1181
|
+
1, // 1: InstamadilloXmaContentRef.XmaContentRef.contentType:type_name -> InstamadilloXmaContentRef.ReceiverFetchContentType
|
|
1182
|
+
4, // 2: InstamadilloXmaContentRef.XmaContentRef.fetchParams:type_name -> InstamadilloXmaContentRef.ReceiverFetchXmaFetchParams
|
|
1183
|
+
5, // 3: InstamadilloXmaContentRef.ReceiverFetchXmaFetchParams.noteFetchParams:type_name -> InstamadilloXmaContentRef.ReceiverFetchXmaNoteFetchParams
|
|
1184
|
+
6, // 4: InstamadilloXmaContentRef.ReceiverFetchXmaFetchParams.storyFetchParams:type_name -> InstamadilloXmaContentRef.ReceiverFetchXmaStoryFetchParams
|
|
1185
|
+
7, // 5: InstamadilloXmaContentRef.ReceiverFetchXmaFetchParams.profileFetchParams:type_name -> InstamadilloXmaContentRef.ReceiverFetchXmaProfileFetchParams
|
|
1186
|
+
8, // 6: InstamadilloXmaContentRef.ReceiverFetchXmaFetchParams.clipFetchParams:type_name -> InstamadilloXmaContentRef.ReceiverFetchXmaClipFetchParams
|
|
1187
|
+
9, // 7: InstamadilloXmaContentRef.ReceiverFetchXmaFetchParams.feedFetchParams:type_name -> InstamadilloXmaContentRef.ReceiverFetchXmaFeedFetchParams
|
|
1188
|
+
10, // 8: InstamadilloXmaContentRef.ReceiverFetchXmaFetchParams.liveFetchParams:type_name -> InstamadilloXmaContentRef.ReceiverFetchXmaLiveFetchParams
|
|
1189
|
+
11, // 9: InstamadilloXmaContentRef.ReceiverFetchXmaFetchParams.commentFetchParams:type_name -> InstamadilloXmaContentRef.ReceiverFetchXmaCommentFetchParams
|
|
1190
|
+
12, // 10: InstamadilloXmaContentRef.ReceiverFetchXmaFetchParams.locationShareFetchParams:type_name -> InstamadilloXmaContentRef.ReceiverFetchXmaLocationShareFetchParams
|
|
1191
|
+
13, // 11: InstamadilloXmaContentRef.ReceiverFetchXmaFetchParams.reelsAudioFetchParams:type_name -> InstamadilloXmaContentRef.ReceiverFetchXmaReelsAudioFetchParams
|
|
1192
|
+
14, // 12: InstamadilloXmaContentRef.ReceiverFetchXmaFetchParams.mediaNoteFetchParams:type_name -> InstamadilloXmaContentRef.ReceiverFetchXmaMediaNoteFetchParams
|
|
1193
|
+
15, // 13: InstamadilloXmaContentRef.ReceiverFetchXmaFetchParams.socialContextFetchParams:type_name -> InstamadilloXmaContentRef.ReceiverFetchXmaSocialContextFetchParams
|
|
1194
|
+
2, // 14: InstamadilloXmaContentRef.ReceiverFetchXmaMediaNoteFetchParams.messageType:type_name -> InstamadilloXmaContentRef.MediaNoteFetchParamsMessageType
|
|
1195
|
+
15, // [15:15] is the sub-list for method output_type
|
|
1196
|
+
15, // [15:15] is the sub-list for method input_type
|
|
1197
|
+
15, // [15:15] is the sub-list for extension type_name
|
|
1198
|
+
15, // [15:15] is the sub-list for extension extendee
|
|
1199
|
+
0, // [0:15] is the sub-list for field type_name
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
func init() { file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_init() }
|
|
1203
|
+
func file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_init() {
|
|
1204
|
+
if File_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto != nil {
|
|
1205
|
+
return
|
|
1206
|
+
}
|
|
1207
|
+
file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes[1].OneofWrappers = []any{
|
|
1208
|
+
(*ReceiverFetchXmaFetchParams_NoteFetchParams)(nil),
|
|
1209
|
+
(*ReceiverFetchXmaFetchParams_StoryFetchParams)(nil),
|
|
1210
|
+
(*ReceiverFetchXmaFetchParams_ProfileFetchParams)(nil),
|
|
1211
|
+
(*ReceiverFetchXmaFetchParams_ClipFetchParams)(nil),
|
|
1212
|
+
(*ReceiverFetchXmaFetchParams_FeedFetchParams)(nil),
|
|
1213
|
+
(*ReceiverFetchXmaFetchParams_LiveFetchParams)(nil),
|
|
1214
|
+
(*ReceiverFetchXmaFetchParams_CommentFetchParams)(nil),
|
|
1215
|
+
(*ReceiverFetchXmaFetchParams_LocationShareFetchParams)(nil),
|
|
1216
|
+
(*ReceiverFetchXmaFetchParams_ReelsAudioFetchParams)(nil),
|
|
1217
|
+
(*ReceiverFetchXmaFetchParams_MediaNoteFetchParams)(nil),
|
|
1218
|
+
(*ReceiverFetchXmaFetchParams_SocialContextFetchParams)(nil),
|
|
1219
|
+
}
|
|
1220
|
+
type x struct{}
|
|
1221
|
+
out := protoimpl.TypeBuilder{
|
|
1222
|
+
File: protoimpl.DescBuilder{
|
|
1223
|
+
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
1224
|
+
RawDescriptor: unsafe.Slice(unsafe.StringData(file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDesc), len(file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_rawDesc)),
|
|
1225
|
+
NumEnums: 3,
|
|
1226
|
+
NumMessages: 13,
|
|
1227
|
+
NumExtensions: 0,
|
|
1228
|
+
NumServices: 0,
|
|
1229
|
+
},
|
|
1230
|
+
GoTypes: file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_goTypes,
|
|
1231
|
+
DependencyIndexes: file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_depIdxs,
|
|
1232
|
+
EnumInfos: file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_enumTypes,
|
|
1233
|
+
MessageInfos: file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_msgTypes,
|
|
1234
|
+
}.Build()
|
|
1235
|
+
File_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto = out.File
|
|
1236
|
+
file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_goTypes = nil
|
|
1237
|
+
file_instamadilloXmaContentRef_InstamadilloXmaContentRef_proto_depIdxs = nil
|
|
1238
|
+
}
|