slidge-whatsapp 0.2.6__cp312-cp312-manylinux_2_36_aarch64.whl → 0.3.0__cp312-cp312-manylinux_2_36_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of slidge-whatsapp might be problematic. Click here for more details.
- slidge_whatsapp/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-312-aarch64-linux-gnu.h +185 -168
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +149 -135
- slidge_whatsapp/generated/whatsapp.c +1883 -1611
- slidge_whatsapp/generated/whatsapp.go +1157 -1046
- slidge_whatsapp/generated/whatsapp.py +1326 -1201
- slidge_whatsapp/generated/whatsapp_go.h +185 -168
- 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
slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/instamadilloAddMessage/InstamadilloAddMessage.pb.go
ADDED
|
@@ -0,0 +1,983 @@
|
|
|
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: instamadilloAddMessage/InstamadilloAddMessage.proto
|
|
6
|
+
|
|
7
|
+
package instamadilloAddMessage
|
|
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
|
+
instamadilloCoreTypeActionLog "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeActionLog"
|
|
18
|
+
instamadilloCoreTypeAdminMessage "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeAdminMessage"
|
|
19
|
+
instamadilloCoreTypeCollection "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeCollection"
|
|
20
|
+
instamadilloCoreTypeLink "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeLink"
|
|
21
|
+
instamadilloCoreTypeMedia "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia"
|
|
22
|
+
instamadilloCoreTypeText "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText"
|
|
23
|
+
instamadilloXmaContentRef "go.mau.fi/whatsmeow/proto/instamadilloXmaContentRef"
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
const (
|
|
27
|
+
// Verify that this generated code is sufficiently up-to-date.
|
|
28
|
+
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
29
|
+
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
30
|
+
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
type Placeholder_Type int32
|
|
34
|
+
|
|
35
|
+
const (
|
|
36
|
+
Placeholder_PLACEHOLDER_TYPE_NONE Placeholder_Type = 0
|
|
37
|
+
Placeholder_PLACEHOLDER_TYPE_DECRYPTION_FAILURE Placeholder_Type = 1
|
|
38
|
+
Placeholder_PLACEHOLDER_TYPE_NOT_SUPPORTED_NEED_UPDATE Placeholder_Type = 2
|
|
39
|
+
Placeholder_PLACEHOLDER_TYPE_DEVICE_UNAVAILABLE Placeholder_Type = 3
|
|
40
|
+
Placeholder_PLACEHOLDER_TYPE_NOT_SUPPORTED_NOT_RECOVERABLE Placeholder_Type = 4
|
|
41
|
+
)
|
|
42
|
+
|
|
43
|
+
// Enum value maps for Placeholder_Type.
|
|
44
|
+
var (
|
|
45
|
+
Placeholder_Type_name = map[int32]string{
|
|
46
|
+
0: "PLACEHOLDER_TYPE_NONE",
|
|
47
|
+
1: "PLACEHOLDER_TYPE_DECRYPTION_FAILURE",
|
|
48
|
+
2: "PLACEHOLDER_TYPE_NOT_SUPPORTED_NEED_UPDATE",
|
|
49
|
+
3: "PLACEHOLDER_TYPE_DEVICE_UNAVAILABLE",
|
|
50
|
+
4: "PLACEHOLDER_TYPE_NOT_SUPPORTED_NOT_RECOVERABLE",
|
|
51
|
+
}
|
|
52
|
+
Placeholder_Type_value = map[string]int32{
|
|
53
|
+
"PLACEHOLDER_TYPE_NONE": 0,
|
|
54
|
+
"PLACEHOLDER_TYPE_DECRYPTION_FAILURE": 1,
|
|
55
|
+
"PLACEHOLDER_TYPE_NOT_SUPPORTED_NEED_UPDATE": 2,
|
|
56
|
+
"PLACEHOLDER_TYPE_DEVICE_UNAVAILABLE": 3,
|
|
57
|
+
"PLACEHOLDER_TYPE_NOT_SUPPORTED_NOT_RECOVERABLE": 4,
|
|
58
|
+
}
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
func (x Placeholder_Type) Enum() *Placeholder_Type {
|
|
62
|
+
p := new(Placeholder_Type)
|
|
63
|
+
*p = x
|
|
64
|
+
return p
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
func (x Placeholder_Type) String() string {
|
|
68
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
func (Placeholder_Type) Descriptor() protoreflect.EnumDescriptor {
|
|
72
|
+
return file_instamadilloAddMessage_InstamadilloAddMessage_proto_enumTypes[0].Descriptor()
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
func (Placeholder_Type) Type() protoreflect.EnumType {
|
|
76
|
+
return &file_instamadilloAddMessage_InstamadilloAddMessage_proto_enumTypes[0]
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
func (x Placeholder_Type) Number() protoreflect.EnumNumber {
|
|
80
|
+
return protoreflect.EnumNumber(x)
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// Deprecated: Do not use.
|
|
84
|
+
func (x *Placeholder_Type) UnmarshalJSON(b []byte) error {
|
|
85
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
86
|
+
if err != nil {
|
|
87
|
+
return err
|
|
88
|
+
}
|
|
89
|
+
*x = Placeholder_Type(num)
|
|
90
|
+
return nil
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// Deprecated: Use Placeholder_Type.Descriptor instead.
|
|
94
|
+
func (Placeholder_Type) EnumDescriptor() ([]byte, []int) {
|
|
95
|
+
return file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescGZIP(), []int{10, 0}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
type AddMessagePayload struct {
|
|
99
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
100
|
+
Content *AddMessageContent `protobuf:"bytes,1,opt,name=content" json:"content,omitempty"`
|
|
101
|
+
Metadata *AddMessageMetadata `protobuf:"bytes,2,opt,name=metadata" json:"metadata,omitempty"`
|
|
102
|
+
unknownFields protoimpl.UnknownFields
|
|
103
|
+
sizeCache protoimpl.SizeCache
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
func (x *AddMessagePayload) Reset() {
|
|
107
|
+
*x = AddMessagePayload{}
|
|
108
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[0]
|
|
109
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
110
|
+
ms.StoreMessageInfo(mi)
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
func (x *AddMessagePayload) String() string {
|
|
114
|
+
return protoimpl.X.MessageStringOf(x)
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
func (*AddMessagePayload) ProtoMessage() {}
|
|
118
|
+
|
|
119
|
+
func (x *AddMessagePayload) ProtoReflect() protoreflect.Message {
|
|
120
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[0]
|
|
121
|
+
if x != nil {
|
|
122
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
123
|
+
if ms.LoadMessageInfo() == nil {
|
|
124
|
+
ms.StoreMessageInfo(mi)
|
|
125
|
+
}
|
|
126
|
+
return ms
|
|
127
|
+
}
|
|
128
|
+
return mi.MessageOf(x)
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
// Deprecated: Use AddMessagePayload.ProtoReflect.Descriptor instead.
|
|
132
|
+
func (*AddMessagePayload) Descriptor() ([]byte, []int) {
|
|
133
|
+
return file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescGZIP(), []int{0}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
func (x *AddMessagePayload) GetContent() *AddMessageContent {
|
|
137
|
+
if x != nil {
|
|
138
|
+
return x.Content
|
|
139
|
+
}
|
|
140
|
+
return nil
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
func (x *AddMessagePayload) GetMetadata() *AddMessageMetadata {
|
|
144
|
+
if x != nil {
|
|
145
|
+
return x.Metadata
|
|
146
|
+
}
|
|
147
|
+
return nil
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
type AddMessageContent struct {
|
|
151
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
152
|
+
// Types that are valid to be assigned to AddMessageContent:
|
|
153
|
+
//
|
|
154
|
+
// *AddMessageContent_Text
|
|
155
|
+
// *AddMessageContent_Like
|
|
156
|
+
// *AddMessageContent_Link
|
|
157
|
+
// *AddMessageContent_ReceiverFetchXma
|
|
158
|
+
// *AddMessageContent_Media
|
|
159
|
+
// *AddMessageContent_Placeholder
|
|
160
|
+
// *AddMessageContent_Collection
|
|
161
|
+
// *AddMessageContent_AdminMessage
|
|
162
|
+
// *AddMessageContent_ActionLog
|
|
163
|
+
AddMessageContent isAddMessageContent_AddMessageContent `protobuf_oneof:"addMessageContent"`
|
|
164
|
+
unknownFields protoimpl.UnknownFields
|
|
165
|
+
sizeCache protoimpl.SizeCache
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
func (x *AddMessageContent) Reset() {
|
|
169
|
+
*x = AddMessageContent{}
|
|
170
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[1]
|
|
171
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
172
|
+
ms.StoreMessageInfo(mi)
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
func (x *AddMessageContent) String() string {
|
|
176
|
+
return protoimpl.X.MessageStringOf(x)
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
func (*AddMessageContent) ProtoMessage() {}
|
|
180
|
+
|
|
181
|
+
func (x *AddMessageContent) ProtoReflect() protoreflect.Message {
|
|
182
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[1]
|
|
183
|
+
if x != nil {
|
|
184
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
185
|
+
if ms.LoadMessageInfo() == nil {
|
|
186
|
+
ms.StoreMessageInfo(mi)
|
|
187
|
+
}
|
|
188
|
+
return ms
|
|
189
|
+
}
|
|
190
|
+
return mi.MessageOf(x)
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
// Deprecated: Use AddMessageContent.ProtoReflect.Descriptor instead.
|
|
194
|
+
func (*AddMessageContent) Descriptor() ([]byte, []int) {
|
|
195
|
+
return file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescGZIP(), []int{1}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
func (x *AddMessageContent) GetAddMessageContent() isAddMessageContent_AddMessageContent {
|
|
199
|
+
if x != nil {
|
|
200
|
+
return x.AddMessageContent
|
|
201
|
+
}
|
|
202
|
+
return nil
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
func (x *AddMessageContent) GetText() *instamadilloCoreTypeText.Text {
|
|
206
|
+
if x != nil {
|
|
207
|
+
if x, ok := x.AddMessageContent.(*AddMessageContent_Text); ok {
|
|
208
|
+
return x.Text
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
return nil
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
func (x *AddMessageContent) GetLike() *Like {
|
|
215
|
+
if x != nil {
|
|
216
|
+
if x, ok := x.AddMessageContent.(*AddMessageContent_Like); ok {
|
|
217
|
+
return x.Like
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
return nil
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
func (x *AddMessageContent) GetLink() *instamadilloCoreTypeLink.Link {
|
|
224
|
+
if x != nil {
|
|
225
|
+
if x, ok := x.AddMessageContent.(*AddMessageContent_Link); ok {
|
|
226
|
+
return x.Link
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
return nil
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
func (x *AddMessageContent) GetReceiverFetchXma() *ReceiverFetchXma {
|
|
233
|
+
if x != nil {
|
|
234
|
+
if x, ok := x.AddMessageContent.(*AddMessageContent_ReceiverFetchXma); ok {
|
|
235
|
+
return x.ReceiverFetchXma
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
return nil
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
func (x *AddMessageContent) GetMedia() *instamadilloCoreTypeMedia.Media {
|
|
242
|
+
if x != nil {
|
|
243
|
+
if x, ok := x.AddMessageContent.(*AddMessageContent_Media); ok {
|
|
244
|
+
return x.Media
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
return nil
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
func (x *AddMessageContent) GetPlaceholder() *Placeholder {
|
|
251
|
+
if x != nil {
|
|
252
|
+
if x, ok := x.AddMessageContent.(*AddMessageContent_Placeholder); ok {
|
|
253
|
+
return x.Placeholder
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
return nil
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
func (x *AddMessageContent) GetCollection() *instamadilloCoreTypeCollection.Collection {
|
|
260
|
+
if x != nil {
|
|
261
|
+
if x, ok := x.AddMessageContent.(*AddMessageContent_Collection); ok {
|
|
262
|
+
return x.Collection
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
return nil
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
func (x *AddMessageContent) GetAdminMessage() *instamadilloCoreTypeAdminMessage.AdminMessage {
|
|
269
|
+
if x != nil {
|
|
270
|
+
if x, ok := x.AddMessageContent.(*AddMessageContent_AdminMessage); ok {
|
|
271
|
+
return x.AdminMessage
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
return nil
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
func (x *AddMessageContent) GetActionLog() *instamadilloCoreTypeActionLog.ActionLog {
|
|
278
|
+
if x != nil {
|
|
279
|
+
if x, ok := x.AddMessageContent.(*AddMessageContent_ActionLog); ok {
|
|
280
|
+
return x.ActionLog
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
return nil
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
type isAddMessageContent_AddMessageContent interface {
|
|
287
|
+
isAddMessageContent_AddMessageContent()
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
type AddMessageContent_Text struct {
|
|
291
|
+
Text *instamadilloCoreTypeText.Text `protobuf:"bytes,1,opt,name=text,oneof"`
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
type AddMessageContent_Like struct {
|
|
295
|
+
Like *Like `protobuf:"bytes,2,opt,name=like,oneof"`
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
type AddMessageContent_Link struct {
|
|
299
|
+
Link *instamadilloCoreTypeLink.Link `protobuf:"bytes,3,opt,name=link,oneof"`
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
type AddMessageContent_ReceiverFetchXma struct {
|
|
303
|
+
ReceiverFetchXma *ReceiverFetchXma `protobuf:"bytes,4,opt,name=receiverFetchXma,oneof"`
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
type AddMessageContent_Media struct {
|
|
307
|
+
Media *instamadilloCoreTypeMedia.Media `protobuf:"bytes,5,opt,name=media,oneof"`
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
type AddMessageContent_Placeholder struct {
|
|
311
|
+
Placeholder *Placeholder `protobuf:"bytes,6,opt,name=placeholder,oneof"`
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
type AddMessageContent_Collection struct {
|
|
315
|
+
Collection *instamadilloCoreTypeCollection.Collection `protobuf:"bytes,7,opt,name=collection,oneof"`
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
type AddMessageContent_AdminMessage struct {
|
|
319
|
+
AdminMessage *instamadilloCoreTypeAdminMessage.AdminMessage `protobuf:"bytes,8,opt,name=adminMessage,oneof"`
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
type AddMessageContent_ActionLog struct {
|
|
323
|
+
ActionLog *instamadilloCoreTypeActionLog.ActionLog `protobuf:"bytes,9,opt,name=actionLog,oneof"`
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
func (*AddMessageContent_Text) isAddMessageContent_AddMessageContent() {}
|
|
327
|
+
|
|
328
|
+
func (*AddMessageContent_Like) isAddMessageContent_AddMessageContent() {}
|
|
329
|
+
|
|
330
|
+
func (*AddMessageContent_Link) isAddMessageContent_AddMessageContent() {}
|
|
331
|
+
|
|
332
|
+
func (*AddMessageContent_ReceiverFetchXma) isAddMessageContent_AddMessageContent() {}
|
|
333
|
+
|
|
334
|
+
func (*AddMessageContent_Media) isAddMessageContent_AddMessageContent() {}
|
|
335
|
+
|
|
336
|
+
func (*AddMessageContent_Placeholder) isAddMessageContent_AddMessageContent() {}
|
|
337
|
+
|
|
338
|
+
func (*AddMessageContent_Collection) isAddMessageContent_AddMessageContent() {}
|
|
339
|
+
|
|
340
|
+
func (*AddMessageContent_AdminMessage) isAddMessageContent_AddMessageContent() {}
|
|
341
|
+
|
|
342
|
+
func (*AddMessageContent_ActionLog) isAddMessageContent_AddMessageContent() {}
|
|
343
|
+
|
|
344
|
+
type AddMessageMetadata struct {
|
|
345
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
346
|
+
SendSilently *bool `protobuf:"varint,1,opt,name=sendSilently" json:"sendSilently,omitempty"`
|
|
347
|
+
PrivateReplyInfo *PrivateReplyInfo `protobuf:"bytes,2,opt,name=privateReplyInfo" json:"privateReplyInfo,omitempty"`
|
|
348
|
+
RepliedToMessage *RepliedToMessage `protobuf:"bytes,3,opt,name=repliedToMessage" json:"repliedToMessage,omitempty"`
|
|
349
|
+
ForwardingParams *ForwardingParams `protobuf:"bytes,4,opt,name=forwardingParams" json:"forwardingParams,omitempty"`
|
|
350
|
+
EphemeralityParams *EphemeralityParams `protobuf:"bytes,5,opt,name=ephemeralityParams" json:"ephemeralityParams,omitempty"`
|
|
351
|
+
unknownFields protoimpl.UnknownFields
|
|
352
|
+
sizeCache protoimpl.SizeCache
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
func (x *AddMessageMetadata) Reset() {
|
|
356
|
+
*x = AddMessageMetadata{}
|
|
357
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[2]
|
|
358
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
359
|
+
ms.StoreMessageInfo(mi)
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
func (x *AddMessageMetadata) String() string {
|
|
363
|
+
return protoimpl.X.MessageStringOf(x)
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
func (*AddMessageMetadata) ProtoMessage() {}
|
|
367
|
+
|
|
368
|
+
func (x *AddMessageMetadata) ProtoReflect() protoreflect.Message {
|
|
369
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[2]
|
|
370
|
+
if x != nil {
|
|
371
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
372
|
+
if ms.LoadMessageInfo() == nil {
|
|
373
|
+
ms.StoreMessageInfo(mi)
|
|
374
|
+
}
|
|
375
|
+
return ms
|
|
376
|
+
}
|
|
377
|
+
return mi.MessageOf(x)
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
// Deprecated: Use AddMessageMetadata.ProtoReflect.Descriptor instead.
|
|
381
|
+
func (*AddMessageMetadata) Descriptor() ([]byte, []int) {
|
|
382
|
+
return file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescGZIP(), []int{2}
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
func (x *AddMessageMetadata) GetSendSilently() bool {
|
|
386
|
+
if x != nil && x.SendSilently != nil {
|
|
387
|
+
return *x.SendSilently
|
|
388
|
+
}
|
|
389
|
+
return false
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
func (x *AddMessageMetadata) GetPrivateReplyInfo() *PrivateReplyInfo {
|
|
393
|
+
if x != nil {
|
|
394
|
+
return x.PrivateReplyInfo
|
|
395
|
+
}
|
|
396
|
+
return nil
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
func (x *AddMessageMetadata) GetRepliedToMessage() *RepliedToMessage {
|
|
400
|
+
if x != nil {
|
|
401
|
+
return x.RepliedToMessage
|
|
402
|
+
}
|
|
403
|
+
return nil
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
func (x *AddMessageMetadata) GetForwardingParams() *ForwardingParams {
|
|
407
|
+
if x != nil {
|
|
408
|
+
return x.ForwardingParams
|
|
409
|
+
}
|
|
410
|
+
return nil
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
func (x *AddMessageMetadata) GetEphemeralityParams() *EphemeralityParams {
|
|
414
|
+
if x != nil {
|
|
415
|
+
return x.EphemeralityParams
|
|
416
|
+
}
|
|
417
|
+
return nil
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
type RepliedToMessage struct {
|
|
421
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
422
|
+
RepliedToMessageOtid *string `protobuf:"bytes,1,opt,name=repliedToMessageOtid" json:"repliedToMessageOtid,omitempty"`
|
|
423
|
+
RepliedToMessageWaServerTimeSec *string `protobuf:"bytes,2,opt,name=repliedToMessageWaServerTimeSec" json:"repliedToMessageWaServerTimeSec,omitempty"`
|
|
424
|
+
RepliedToMessageCollectionItemID *string `protobuf:"bytes,3,opt,name=repliedToMessageCollectionItemID" json:"repliedToMessageCollectionItemID,omitempty"`
|
|
425
|
+
OmMicroSecTS *OpenMessageMicroSecondTimestamp `protobuf:"bytes,4,opt,name=omMicroSecTS" json:"omMicroSecTS,omitempty"`
|
|
426
|
+
unknownFields protoimpl.UnknownFields
|
|
427
|
+
sizeCache protoimpl.SizeCache
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
func (x *RepliedToMessage) Reset() {
|
|
431
|
+
*x = RepliedToMessage{}
|
|
432
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[3]
|
|
433
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
434
|
+
ms.StoreMessageInfo(mi)
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
func (x *RepliedToMessage) String() string {
|
|
438
|
+
return protoimpl.X.MessageStringOf(x)
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
func (*RepliedToMessage) ProtoMessage() {}
|
|
442
|
+
|
|
443
|
+
func (x *RepliedToMessage) ProtoReflect() protoreflect.Message {
|
|
444
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[3]
|
|
445
|
+
if x != nil {
|
|
446
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
447
|
+
if ms.LoadMessageInfo() == nil {
|
|
448
|
+
ms.StoreMessageInfo(mi)
|
|
449
|
+
}
|
|
450
|
+
return ms
|
|
451
|
+
}
|
|
452
|
+
return mi.MessageOf(x)
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
// Deprecated: Use RepliedToMessage.ProtoReflect.Descriptor instead.
|
|
456
|
+
func (*RepliedToMessage) Descriptor() ([]byte, []int) {
|
|
457
|
+
return file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescGZIP(), []int{3}
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
func (x *RepliedToMessage) GetRepliedToMessageOtid() string {
|
|
461
|
+
if x != nil && x.RepliedToMessageOtid != nil {
|
|
462
|
+
return *x.RepliedToMessageOtid
|
|
463
|
+
}
|
|
464
|
+
return ""
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
func (x *RepliedToMessage) GetRepliedToMessageWaServerTimeSec() string {
|
|
468
|
+
if x != nil && x.RepliedToMessageWaServerTimeSec != nil {
|
|
469
|
+
return *x.RepliedToMessageWaServerTimeSec
|
|
470
|
+
}
|
|
471
|
+
return ""
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
func (x *RepliedToMessage) GetRepliedToMessageCollectionItemID() string {
|
|
475
|
+
if x != nil && x.RepliedToMessageCollectionItemID != nil {
|
|
476
|
+
return *x.RepliedToMessageCollectionItemID
|
|
477
|
+
}
|
|
478
|
+
return ""
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
func (x *RepliedToMessage) GetOmMicroSecTS() *OpenMessageMicroSecondTimestamp {
|
|
482
|
+
if x != nil {
|
|
483
|
+
return x.OmMicroSecTS
|
|
484
|
+
}
|
|
485
|
+
return nil
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
type OpenMessageMicroSecondTimestamp struct {
|
|
489
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
490
|
+
TimestampMS *int64 `protobuf:"varint,1,opt,name=timestampMS" json:"timestampMS,omitempty"`
|
|
491
|
+
MicroSecondsBits *int32 `protobuf:"varint,2,opt,name=microSecondsBits" json:"microSecondsBits,omitempty"`
|
|
492
|
+
unknownFields protoimpl.UnknownFields
|
|
493
|
+
sizeCache protoimpl.SizeCache
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
func (x *OpenMessageMicroSecondTimestamp) Reset() {
|
|
497
|
+
*x = OpenMessageMicroSecondTimestamp{}
|
|
498
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[4]
|
|
499
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
500
|
+
ms.StoreMessageInfo(mi)
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
func (x *OpenMessageMicroSecondTimestamp) String() string {
|
|
504
|
+
return protoimpl.X.MessageStringOf(x)
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
func (*OpenMessageMicroSecondTimestamp) ProtoMessage() {}
|
|
508
|
+
|
|
509
|
+
func (x *OpenMessageMicroSecondTimestamp) ProtoReflect() protoreflect.Message {
|
|
510
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[4]
|
|
511
|
+
if x != nil {
|
|
512
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
513
|
+
if ms.LoadMessageInfo() == nil {
|
|
514
|
+
ms.StoreMessageInfo(mi)
|
|
515
|
+
}
|
|
516
|
+
return ms
|
|
517
|
+
}
|
|
518
|
+
return mi.MessageOf(x)
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
// Deprecated: Use OpenMessageMicroSecondTimestamp.ProtoReflect.Descriptor instead.
|
|
522
|
+
func (*OpenMessageMicroSecondTimestamp) Descriptor() ([]byte, []int) {
|
|
523
|
+
return file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescGZIP(), []int{4}
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
func (x *OpenMessageMicroSecondTimestamp) GetTimestampMS() int64 {
|
|
527
|
+
if x != nil && x.TimestampMS != nil {
|
|
528
|
+
return *x.TimestampMS
|
|
529
|
+
}
|
|
530
|
+
return 0
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
func (x *OpenMessageMicroSecondTimestamp) GetMicroSecondsBits() int32 {
|
|
534
|
+
if x != nil && x.MicroSecondsBits != nil {
|
|
535
|
+
return *x.MicroSecondsBits
|
|
536
|
+
}
|
|
537
|
+
return 0
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
type PrivateReplyInfo struct {
|
|
541
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
542
|
+
CommentID *string `protobuf:"bytes,1,opt,name=commentID" json:"commentID,omitempty"`
|
|
543
|
+
PostLink *string `protobuf:"bytes,2,opt,name=postLink" json:"postLink,omitempty"`
|
|
544
|
+
unknownFields protoimpl.UnknownFields
|
|
545
|
+
sizeCache protoimpl.SizeCache
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
func (x *PrivateReplyInfo) Reset() {
|
|
549
|
+
*x = PrivateReplyInfo{}
|
|
550
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[5]
|
|
551
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
552
|
+
ms.StoreMessageInfo(mi)
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
func (x *PrivateReplyInfo) String() string {
|
|
556
|
+
return protoimpl.X.MessageStringOf(x)
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
func (*PrivateReplyInfo) ProtoMessage() {}
|
|
560
|
+
|
|
561
|
+
func (x *PrivateReplyInfo) ProtoReflect() protoreflect.Message {
|
|
562
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[5]
|
|
563
|
+
if x != nil {
|
|
564
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
565
|
+
if ms.LoadMessageInfo() == nil {
|
|
566
|
+
ms.StoreMessageInfo(mi)
|
|
567
|
+
}
|
|
568
|
+
return ms
|
|
569
|
+
}
|
|
570
|
+
return mi.MessageOf(x)
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
// Deprecated: Use PrivateReplyInfo.ProtoReflect.Descriptor instead.
|
|
574
|
+
func (*PrivateReplyInfo) Descriptor() ([]byte, []int) {
|
|
575
|
+
return file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescGZIP(), []int{5}
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
func (x *PrivateReplyInfo) GetCommentID() string {
|
|
579
|
+
if x != nil && x.CommentID != nil {
|
|
580
|
+
return *x.CommentID
|
|
581
|
+
}
|
|
582
|
+
return ""
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
func (x *PrivateReplyInfo) GetPostLink() string {
|
|
586
|
+
if x != nil && x.PostLink != nil {
|
|
587
|
+
return *x.PostLink
|
|
588
|
+
}
|
|
589
|
+
return ""
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
type ForwardingParams struct {
|
|
593
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
594
|
+
ForwardedThreadID *string `protobuf:"bytes,1,opt,name=forwardedThreadID" json:"forwardedThreadID,omitempty"`
|
|
595
|
+
unknownFields protoimpl.UnknownFields
|
|
596
|
+
sizeCache protoimpl.SizeCache
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
func (x *ForwardingParams) Reset() {
|
|
600
|
+
*x = ForwardingParams{}
|
|
601
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[6]
|
|
602
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
603
|
+
ms.StoreMessageInfo(mi)
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
func (x *ForwardingParams) String() string {
|
|
607
|
+
return protoimpl.X.MessageStringOf(x)
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
func (*ForwardingParams) ProtoMessage() {}
|
|
611
|
+
|
|
612
|
+
func (x *ForwardingParams) ProtoReflect() protoreflect.Message {
|
|
613
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[6]
|
|
614
|
+
if x != nil {
|
|
615
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
616
|
+
if ms.LoadMessageInfo() == nil {
|
|
617
|
+
ms.StoreMessageInfo(mi)
|
|
618
|
+
}
|
|
619
|
+
return ms
|
|
620
|
+
}
|
|
621
|
+
return mi.MessageOf(x)
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
// Deprecated: Use ForwardingParams.ProtoReflect.Descriptor instead.
|
|
625
|
+
func (*ForwardingParams) Descriptor() ([]byte, []int) {
|
|
626
|
+
return file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescGZIP(), []int{6}
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
func (x *ForwardingParams) GetForwardedThreadID() string {
|
|
630
|
+
if x != nil && x.ForwardedThreadID != nil {
|
|
631
|
+
return *x.ForwardedThreadID
|
|
632
|
+
}
|
|
633
|
+
return ""
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
type EphemeralityParams struct {
|
|
637
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
638
|
+
EphemeralDurationSec *int64 `protobuf:"varint,1,opt,name=ephemeralDurationSec" json:"ephemeralDurationSec,omitempty"`
|
|
639
|
+
unknownFields protoimpl.UnknownFields
|
|
640
|
+
sizeCache protoimpl.SizeCache
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
func (x *EphemeralityParams) Reset() {
|
|
644
|
+
*x = EphemeralityParams{}
|
|
645
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[7]
|
|
646
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
647
|
+
ms.StoreMessageInfo(mi)
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
func (x *EphemeralityParams) String() string {
|
|
651
|
+
return protoimpl.X.MessageStringOf(x)
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
func (*EphemeralityParams) ProtoMessage() {}
|
|
655
|
+
|
|
656
|
+
func (x *EphemeralityParams) ProtoReflect() protoreflect.Message {
|
|
657
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[7]
|
|
658
|
+
if x != nil {
|
|
659
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
660
|
+
if ms.LoadMessageInfo() == nil {
|
|
661
|
+
ms.StoreMessageInfo(mi)
|
|
662
|
+
}
|
|
663
|
+
return ms
|
|
664
|
+
}
|
|
665
|
+
return mi.MessageOf(x)
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
// Deprecated: Use EphemeralityParams.ProtoReflect.Descriptor instead.
|
|
669
|
+
func (*EphemeralityParams) Descriptor() ([]byte, []int) {
|
|
670
|
+
return file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescGZIP(), []int{7}
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
func (x *EphemeralityParams) GetEphemeralDurationSec() int64 {
|
|
674
|
+
if x != nil && x.EphemeralDurationSec != nil {
|
|
675
|
+
return *x.EphemeralDurationSec
|
|
676
|
+
}
|
|
677
|
+
return 0
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
type Like struct {
|
|
681
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
682
|
+
unknownFields protoimpl.UnknownFields
|
|
683
|
+
sizeCache protoimpl.SizeCache
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
func (x *Like) Reset() {
|
|
687
|
+
*x = Like{}
|
|
688
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[8]
|
|
689
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
690
|
+
ms.StoreMessageInfo(mi)
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
func (x *Like) String() string {
|
|
694
|
+
return protoimpl.X.MessageStringOf(x)
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
func (*Like) ProtoMessage() {}
|
|
698
|
+
|
|
699
|
+
func (x *Like) ProtoReflect() protoreflect.Message {
|
|
700
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[8]
|
|
701
|
+
if x != nil {
|
|
702
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
703
|
+
if ms.LoadMessageInfo() == nil {
|
|
704
|
+
ms.StoreMessageInfo(mi)
|
|
705
|
+
}
|
|
706
|
+
return ms
|
|
707
|
+
}
|
|
708
|
+
return mi.MessageOf(x)
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
// Deprecated: Use Like.ProtoReflect.Descriptor instead.
|
|
712
|
+
func (*Like) Descriptor() ([]byte, []int) {
|
|
713
|
+
return file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescGZIP(), []int{8}
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
type ReceiverFetchXma struct {
|
|
717
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
718
|
+
ContentRef *string `protobuf:"bytes,1,opt,name=contentRef" json:"contentRef,omitempty"`
|
|
719
|
+
Text *string `protobuf:"bytes,2,opt,name=text" json:"text,omitempty"`
|
|
720
|
+
Media *instamadilloCoreTypeMedia.Media `protobuf:"bytes,3,opt,name=media" json:"media,omitempty"`
|
|
721
|
+
XmaContentRef *instamadilloXmaContentRef.XmaContentRef `protobuf:"bytes,4,opt,name=xmaContentRef" json:"xmaContentRef,omitempty"`
|
|
722
|
+
unknownFields protoimpl.UnknownFields
|
|
723
|
+
sizeCache protoimpl.SizeCache
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
func (x *ReceiverFetchXma) Reset() {
|
|
727
|
+
*x = ReceiverFetchXma{}
|
|
728
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[9]
|
|
729
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
730
|
+
ms.StoreMessageInfo(mi)
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
func (x *ReceiverFetchXma) String() string {
|
|
734
|
+
return protoimpl.X.MessageStringOf(x)
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
func (*ReceiverFetchXma) ProtoMessage() {}
|
|
738
|
+
|
|
739
|
+
func (x *ReceiverFetchXma) ProtoReflect() protoreflect.Message {
|
|
740
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[9]
|
|
741
|
+
if x != nil {
|
|
742
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
743
|
+
if ms.LoadMessageInfo() == nil {
|
|
744
|
+
ms.StoreMessageInfo(mi)
|
|
745
|
+
}
|
|
746
|
+
return ms
|
|
747
|
+
}
|
|
748
|
+
return mi.MessageOf(x)
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
// Deprecated: Use ReceiverFetchXma.ProtoReflect.Descriptor instead.
|
|
752
|
+
func (*ReceiverFetchXma) Descriptor() ([]byte, []int) {
|
|
753
|
+
return file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescGZIP(), []int{9}
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
func (x *ReceiverFetchXma) GetContentRef() string {
|
|
757
|
+
if x != nil && x.ContentRef != nil {
|
|
758
|
+
return *x.ContentRef
|
|
759
|
+
}
|
|
760
|
+
return ""
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
func (x *ReceiverFetchXma) GetText() string {
|
|
764
|
+
if x != nil && x.Text != nil {
|
|
765
|
+
return *x.Text
|
|
766
|
+
}
|
|
767
|
+
return ""
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
func (x *ReceiverFetchXma) GetMedia() *instamadilloCoreTypeMedia.Media {
|
|
771
|
+
if x != nil {
|
|
772
|
+
return x.Media
|
|
773
|
+
}
|
|
774
|
+
return nil
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
func (x *ReceiverFetchXma) GetXmaContentRef() *instamadilloXmaContentRef.XmaContentRef {
|
|
778
|
+
if x != nil {
|
|
779
|
+
return x.XmaContentRef
|
|
780
|
+
}
|
|
781
|
+
return nil
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
type Placeholder struct {
|
|
785
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
786
|
+
PlaceholderType *Placeholder_Type `protobuf:"varint,1,opt,name=placeholderType,enum=InstamadilloAddMessage.Placeholder_Type" json:"placeholderType,omitempty"`
|
|
787
|
+
unknownFields protoimpl.UnknownFields
|
|
788
|
+
sizeCache protoimpl.SizeCache
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
func (x *Placeholder) Reset() {
|
|
792
|
+
*x = Placeholder{}
|
|
793
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[10]
|
|
794
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
795
|
+
ms.StoreMessageInfo(mi)
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
func (x *Placeholder) String() string {
|
|
799
|
+
return protoimpl.X.MessageStringOf(x)
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
func (*Placeholder) ProtoMessage() {}
|
|
803
|
+
|
|
804
|
+
func (x *Placeholder) ProtoReflect() protoreflect.Message {
|
|
805
|
+
mi := &file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[10]
|
|
806
|
+
if x != nil {
|
|
807
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
808
|
+
if ms.LoadMessageInfo() == nil {
|
|
809
|
+
ms.StoreMessageInfo(mi)
|
|
810
|
+
}
|
|
811
|
+
return ms
|
|
812
|
+
}
|
|
813
|
+
return mi.MessageOf(x)
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
// Deprecated: Use Placeholder.ProtoReflect.Descriptor instead.
|
|
817
|
+
func (*Placeholder) Descriptor() ([]byte, []int) {
|
|
818
|
+
return file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescGZIP(), []int{10}
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
func (x *Placeholder) GetPlaceholderType() Placeholder_Type {
|
|
822
|
+
if x != nil && x.PlaceholderType != nil {
|
|
823
|
+
return *x.PlaceholderType
|
|
824
|
+
}
|
|
825
|
+
return Placeholder_PLACEHOLDER_TYPE_NONE
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
var File_instamadilloAddMessage_InstamadilloAddMessage_proto protoreflect.FileDescriptor
|
|
829
|
+
|
|
830
|
+
const file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDesc = "" +
|
|
831
|
+
"\n" +
|
|
832
|
+
"3instamadilloAddMessage/InstamadilloAddMessage.proto\x12\x16InstamadilloAddMessage\x1aAinstamadilloCoreTypeActionLog/InstamadilloCoreTypeActionLog.proto\x1aGinstamadilloCoreTypeAdminMessage/InstamadilloCoreTypeAdminMessage.proto\x1aCinstamadilloCoreTypeCollection/InstamadilloCoreTypeCollection.proto\x1a7instamadilloCoreTypeLink/InstamadilloCoreTypeLink.proto\x1a9instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto\x1a7instamadilloCoreTypeText/InstamadilloCoreTypeText.proto\x1a9instamadilloXmaContentRef/InstamadilloXmaContentRef.proto\"\xa0\x01\n" +
|
|
833
|
+
"\x11AddMessagePayload\x12C\n" +
|
|
834
|
+
"\acontent\x18\x01 \x01(\v2).InstamadilloAddMessage.AddMessageContentR\acontent\x12F\n" +
|
|
835
|
+
"\bmetadata\x18\x02 \x01(\v2*.InstamadilloAddMessage.AddMessageMetadataR\bmetadata\"\x91\x05\n" +
|
|
836
|
+
"\x11AddMessageContent\x124\n" +
|
|
837
|
+
"\x04text\x18\x01 \x01(\v2\x1e.InstamadilloCoreTypeText.TextH\x00R\x04text\x122\n" +
|
|
838
|
+
"\x04like\x18\x02 \x01(\v2\x1c.InstamadilloAddMessage.LikeH\x00R\x04like\x124\n" +
|
|
839
|
+
"\x04link\x18\x03 \x01(\v2\x1e.InstamadilloCoreTypeLink.LinkH\x00R\x04link\x12V\n" +
|
|
840
|
+
"\x10receiverFetchXma\x18\x04 \x01(\v2(.InstamadilloAddMessage.ReceiverFetchXmaH\x00R\x10receiverFetchXma\x128\n" +
|
|
841
|
+
"\x05media\x18\x05 \x01(\v2 .InstamadilloCoreTypeMedia.MediaH\x00R\x05media\x12G\n" +
|
|
842
|
+
"\vplaceholder\x18\x06 \x01(\v2#.InstamadilloAddMessage.PlaceholderH\x00R\vplaceholder\x12L\n" +
|
|
843
|
+
"\n" +
|
|
844
|
+
"collection\x18\a \x01(\v2*.InstamadilloCoreTypeCollection.CollectionH\x00R\n" +
|
|
845
|
+
"collection\x12T\n" +
|
|
846
|
+
"\fadminMessage\x18\b \x01(\v2..InstamadilloCoreTypeAdminMessage.AdminMessageH\x00R\fadminMessage\x12H\n" +
|
|
847
|
+
"\tactionLog\x18\t \x01(\v2(.InstamadilloCoreTypeActionLog.ActionLogH\x00R\tactionLogB\x13\n" +
|
|
848
|
+
"\x11addMessageContent\"\x96\x03\n" +
|
|
849
|
+
"\x12AddMessageMetadata\x12\"\n" +
|
|
850
|
+
"\fsendSilently\x18\x01 \x01(\bR\fsendSilently\x12T\n" +
|
|
851
|
+
"\x10privateReplyInfo\x18\x02 \x01(\v2(.InstamadilloAddMessage.PrivateReplyInfoR\x10privateReplyInfo\x12T\n" +
|
|
852
|
+
"\x10repliedToMessage\x18\x03 \x01(\v2(.InstamadilloAddMessage.RepliedToMessageR\x10repliedToMessage\x12T\n" +
|
|
853
|
+
"\x10forwardingParams\x18\x04 \x01(\v2(.InstamadilloAddMessage.ForwardingParamsR\x10forwardingParams\x12Z\n" +
|
|
854
|
+
"\x12ephemeralityParams\x18\x05 \x01(\v2*.InstamadilloAddMessage.EphemeralityParamsR\x12ephemeralityParams\"\xb9\x02\n" +
|
|
855
|
+
"\x10RepliedToMessage\x122\n" +
|
|
856
|
+
"\x14repliedToMessageOtid\x18\x01 \x01(\tR\x14repliedToMessageOtid\x12H\n" +
|
|
857
|
+
"\x1frepliedToMessageWaServerTimeSec\x18\x02 \x01(\tR\x1frepliedToMessageWaServerTimeSec\x12J\n" +
|
|
858
|
+
" repliedToMessageCollectionItemID\x18\x03 \x01(\tR repliedToMessageCollectionItemID\x12[\n" +
|
|
859
|
+
"\fomMicroSecTS\x18\x04 \x01(\v27.InstamadilloAddMessage.OpenMessageMicroSecondTimestampR\fomMicroSecTS\"o\n" +
|
|
860
|
+
"\x1fOpenMessageMicroSecondTimestamp\x12 \n" +
|
|
861
|
+
"\vtimestampMS\x18\x01 \x01(\x03R\vtimestampMS\x12*\n" +
|
|
862
|
+
"\x10microSecondsBits\x18\x02 \x01(\x05R\x10microSecondsBits\"L\n" +
|
|
863
|
+
"\x10PrivateReplyInfo\x12\x1c\n" +
|
|
864
|
+
"\tcommentID\x18\x01 \x01(\tR\tcommentID\x12\x1a\n" +
|
|
865
|
+
"\bpostLink\x18\x02 \x01(\tR\bpostLink\"@\n" +
|
|
866
|
+
"\x10ForwardingParams\x12,\n" +
|
|
867
|
+
"\x11forwardedThreadID\x18\x01 \x01(\tR\x11forwardedThreadID\"H\n" +
|
|
868
|
+
"\x12EphemeralityParams\x122\n" +
|
|
869
|
+
"\x14ephemeralDurationSec\x18\x01 \x01(\x03R\x14ephemeralDurationSec\"\x06\n" +
|
|
870
|
+
"\x04Like\"\xce\x01\n" +
|
|
871
|
+
"\x10ReceiverFetchXma\x12\x1e\n" +
|
|
872
|
+
"\n" +
|
|
873
|
+
"contentRef\x18\x01 \x01(\tR\n" +
|
|
874
|
+
"contentRef\x12\x12\n" +
|
|
875
|
+
"\x04text\x18\x02 \x01(\tR\x04text\x126\n" +
|
|
876
|
+
"\x05media\x18\x03 \x01(\v2 .InstamadilloCoreTypeMedia.MediaR\x05media\x12N\n" +
|
|
877
|
+
"\rxmaContentRef\x18\x04 \x01(\v2(.InstamadilloXmaContentRef.XmaContentRefR\rxmaContentRef\"\xbb\x02\n" +
|
|
878
|
+
"\vPlaceholder\x12R\n" +
|
|
879
|
+
"\x0fplaceholderType\x18\x01 \x01(\x0e2(.InstamadilloAddMessage.Placeholder.TypeR\x0fplaceholderType\"\xd7\x01\n" +
|
|
880
|
+
"\x04Type\x12\x19\n" +
|
|
881
|
+
"\x15PLACEHOLDER_TYPE_NONE\x10\x00\x12'\n" +
|
|
882
|
+
"#PLACEHOLDER_TYPE_DECRYPTION_FAILURE\x10\x01\x12.\n" +
|
|
883
|
+
"*PLACEHOLDER_TYPE_NOT_SUPPORTED_NEED_UPDATE\x10\x02\x12'\n" +
|
|
884
|
+
"#PLACEHOLDER_TYPE_DEVICE_UNAVAILABLE\x10\x03\x122\n" +
|
|
885
|
+
".PLACEHOLDER_TYPE_NOT_SUPPORTED_NOT_RECOVERABLE\x10\x04B2Z0go.mau.fi/whatsmeow/proto/instamadilloAddMessage"
|
|
886
|
+
|
|
887
|
+
var (
|
|
888
|
+
file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescOnce sync.Once
|
|
889
|
+
file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescData []byte
|
|
890
|
+
)
|
|
891
|
+
|
|
892
|
+
func file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescGZIP() []byte {
|
|
893
|
+
file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescOnce.Do(func() {
|
|
894
|
+
file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDesc), len(file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDesc)))
|
|
895
|
+
})
|
|
896
|
+
return file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDescData
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
var file_instamadilloAddMessage_InstamadilloAddMessage_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
|
900
|
+
var file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes = make([]protoimpl.MessageInfo, 11)
|
|
901
|
+
var file_instamadilloAddMessage_InstamadilloAddMessage_proto_goTypes = []any{
|
|
902
|
+
(Placeholder_Type)(0), // 0: InstamadilloAddMessage.Placeholder.Type
|
|
903
|
+
(*AddMessagePayload)(nil), // 1: InstamadilloAddMessage.AddMessagePayload
|
|
904
|
+
(*AddMessageContent)(nil), // 2: InstamadilloAddMessage.AddMessageContent
|
|
905
|
+
(*AddMessageMetadata)(nil), // 3: InstamadilloAddMessage.AddMessageMetadata
|
|
906
|
+
(*RepliedToMessage)(nil), // 4: InstamadilloAddMessage.RepliedToMessage
|
|
907
|
+
(*OpenMessageMicroSecondTimestamp)(nil), // 5: InstamadilloAddMessage.OpenMessageMicroSecondTimestamp
|
|
908
|
+
(*PrivateReplyInfo)(nil), // 6: InstamadilloAddMessage.PrivateReplyInfo
|
|
909
|
+
(*ForwardingParams)(nil), // 7: InstamadilloAddMessage.ForwardingParams
|
|
910
|
+
(*EphemeralityParams)(nil), // 8: InstamadilloAddMessage.EphemeralityParams
|
|
911
|
+
(*Like)(nil), // 9: InstamadilloAddMessage.Like
|
|
912
|
+
(*ReceiverFetchXma)(nil), // 10: InstamadilloAddMessage.ReceiverFetchXma
|
|
913
|
+
(*Placeholder)(nil), // 11: InstamadilloAddMessage.Placeholder
|
|
914
|
+
(*instamadilloCoreTypeText.Text)(nil), // 12: InstamadilloCoreTypeText.Text
|
|
915
|
+
(*instamadilloCoreTypeLink.Link)(nil), // 13: InstamadilloCoreTypeLink.Link
|
|
916
|
+
(*instamadilloCoreTypeMedia.Media)(nil), // 14: InstamadilloCoreTypeMedia.Media
|
|
917
|
+
(*instamadilloCoreTypeCollection.Collection)(nil), // 15: InstamadilloCoreTypeCollection.Collection
|
|
918
|
+
(*instamadilloCoreTypeAdminMessage.AdminMessage)(nil), // 16: InstamadilloCoreTypeAdminMessage.AdminMessage
|
|
919
|
+
(*instamadilloCoreTypeActionLog.ActionLog)(nil), // 17: InstamadilloCoreTypeActionLog.ActionLog
|
|
920
|
+
(*instamadilloXmaContentRef.XmaContentRef)(nil), // 18: InstamadilloXmaContentRef.XmaContentRef
|
|
921
|
+
}
|
|
922
|
+
var file_instamadilloAddMessage_InstamadilloAddMessage_proto_depIdxs = []int32{
|
|
923
|
+
2, // 0: InstamadilloAddMessage.AddMessagePayload.content:type_name -> InstamadilloAddMessage.AddMessageContent
|
|
924
|
+
3, // 1: InstamadilloAddMessage.AddMessagePayload.metadata:type_name -> InstamadilloAddMessage.AddMessageMetadata
|
|
925
|
+
12, // 2: InstamadilloAddMessage.AddMessageContent.text:type_name -> InstamadilloCoreTypeText.Text
|
|
926
|
+
9, // 3: InstamadilloAddMessage.AddMessageContent.like:type_name -> InstamadilloAddMessage.Like
|
|
927
|
+
13, // 4: InstamadilloAddMessage.AddMessageContent.link:type_name -> InstamadilloCoreTypeLink.Link
|
|
928
|
+
10, // 5: InstamadilloAddMessage.AddMessageContent.receiverFetchXma:type_name -> InstamadilloAddMessage.ReceiverFetchXma
|
|
929
|
+
14, // 6: InstamadilloAddMessage.AddMessageContent.media:type_name -> InstamadilloCoreTypeMedia.Media
|
|
930
|
+
11, // 7: InstamadilloAddMessage.AddMessageContent.placeholder:type_name -> InstamadilloAddMessage.Placeholder
|
|
931
|
+
15, // 8: InstamadilloAddMessage.AddMessageContent.collection:type_name -> InstamadilloCoreTypeCollection.Collection
|
|
932
|
+
16, // 9: InstamadilloAddMessage.AddMessageContent.adminMessage:type_name -> InstamadilloCoreTypeAdminMessage.AdminMessage
|
|
933
|
+
17, // 10: InstamadilloAddMessage.AddMessageContent.actionLog:type_name -> InstamadilloCoreTypeActionLog.ActionLog
|
|
934
|
+
6, // 11: InstamadilloAddMessage.AddMessageMetadata.privateReplyInfo:type_name -> InstamadilloAddMessage.PrivateReplyInfo
|
|
935
|
+
4, // 12: InstamadilloAddMessage.AddMessageMetadata.repliedToMessage:type_name -> InstamadilloAddMessage.RepliedToMessage
|
|
936
|
+
7, // 13: InstamadilloAddMessage.AddMessageMetadata.forwardingParams:type_name -> InstamadilloAddMessage.ForwardingParams
|
|
937
|
+
8, // 14: InstamadilloAddMessage.AddMessageMetadata.ephemeralityParams:type_name -> InstamadilloAddMessage.EphemeralityParams
|
|
938
|
+
5, // 15: InstamadilloAddMessage.RepliedToMessage.omMicroSecTS:type_name -> InstamadilloAddMessage.OpenMessageMicroSecondTimestamp
|
|
939
|
+
14, // 16: InstamadilloAddMessage.ReceiverFetchXma.media:type_name -> InstamadilloCoreTypeMedia.Media
|
|
940
|
+
18, // 17: InstamadilloAddMessage.ReceiverFetchXma.xmaContentRef:type_name -> InstamadilloXmaContentRef.XmaContentRef
|
|
941
|
+
0, // 18: InstamadilloAddMessage.Placeholder.placeholderType:type_name -> InstamadilloAddMessage.Placeholder.Type
|
|
942
|
+
19, // [19:19] is the sub-list for method output_type
|
|
943
|
+
19, // [19:19] is the sub-list for method input_type
|
|
944
|
+
19, // [19:19] is the sub-list for extension type_name
|
|
945
|
+
19, // [19:19] is the sub-list for extension extendee
|
|
946
|
+
0, // [0:19] is the sub-list for field type_name
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
func init() { file_instamadilloAddMessage_InstamadilloAddMessage_proto_init() }
|
|
950
|
+
func file_instamadilloAddMessage_InstamadilloAddMessage_proto_init() {
|
|
951
|
+
if File_instamadilloAddMessage_InstamadilloAddMessage_proto != nil {
|
|
952
|
+
return
|
|
953
|
+
}
|
|
954
|
+
file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes[1].OneofWrappers = []any{
|
|
955
|
+
(*AddMessageContent_Text)(nil),
|
|
956
|
+
(*AddMessageContent_Like)(nil),
|
|
957
|
+
(*AddMessageContent_Link)(nil),
|
|
958
|
+
(*AddMessageContent_ReceiverFetchXma)(nil),
|
|
959
|
+
(*AddMessageContent_Media)(nil),
|
|
960
|
+
(*AddMessageContent_Placeholder)(nil),
|
|
961
|
+
(*AddMessageContent_Collection)(nil),
|
|
962
|
+
(*AddMessageContent_AdminMessage)(nil),
|
|
963
|
+
(*AddMessageContent_ActionLog)(nil),
|
|
964
|
+
}
|
|
965
|
+
type x struct{}
|
|
966
|
+
out := protoimpl.TypeBuilder{
|
|
967
|
+
File: protoimpl.DescBuilder{
|
|
968
|
+
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
969
|
+
RawDescriptor: unsafe.Slice(unsafe.StringData(file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDesc), len(file_instamadilloAddMessage_InstamadilloAddMessage_proto_rawDesc)),
|
|
970
|
+
NumEnums: 1,
|
|
971
|
+
NumMessages: 11,
|
|
972
|
+
NumExtensions: 0,
|
|
973
|
+
NumServices: 0,
|
|
974
|
+
},
|
|
975
|
+
GoTypes: file_instamadilloAddMessage_InstamadilloAddMessage_proto_goTypes,
|
|
976
|
+
DependencyIndexes: file_instamadilloAddMessage_InstamadilloAddMessage_proto_depIdxs,
|
|
977
|
+
EnumInfos: file_instamadilloAddMessage_InstamadilloAddMessage_proto_enumTypes,
|
|
978
|
+
MessageInfos: file_instamadilloAddMessage_InstamadilloAddMessage_proto_msgTypes,
|
|
979
|
+
}.Build()
|
|
980
|
+
File_instamadilloAddMessage_InstamadilloAddMessage_proto = out.File
|
|
981
|
+
file_instamadilloAddMessage_InstamadilloAddMessage_proto_goTypes = nil
|
|
982
|
+
file_instamadilloAddMessage_InstamadilloAddMessage_proto_depIdxs = nil
|
|
983
|
+
}
|