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,112 @@
|
|
|
1
|
+
syntax = "proto2";
|
|
2
|
+
package InstamadilloCoreTypeMedia;
|
|
3
|
+
option go_package = "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia";
|
|
4
|
+
|
|
5
|
+
enum PjpegScanConfiguration {
|
|
6
|
+
PJPEG_SCAN_CONFIGURATION_UNSPECIFIED = 0;
|
|
7
|
+
PJPEG_SCAN_CONFIGURATION_WA = 1;
|
|
8
|
+
PJPEG_SCAN_CONFIGURATION_E15 = 2;
|
|
9
|
+
PJPEG_SCAN_CONFIGURATION_E35 = 3;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
message Media {
|
|
13
|
+
enum InterventionType {
|
|
14
|
+
UNSET = 0;
|
|
15
|
+
NONE = 1;
|
|
16
|
+
NUDE = 2;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
oneof media {
|
|
20
|
+
StaticPhoto staticPhoto = 1;
|
|
21
|
+
Voice voice = 2;
|
|
22
|
+
Video video = 3;
|
|
23
|
+
Raven raven = 4;
|
|
24
|
+
Gif gif = 5;
|
|
25
|
+
AvatarSticker avatarSticker = 6;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
message StaticPhoto {
|
|
30
|
+
optional CommonMediaTransport mediaTransport = 1;
|
|
31
|
+
optional int32 height = 2;
|
|
32
|
+
optional int32 width = 3;
|
|
33
|
+
repeated int32 scanLengths = 4 [packed=true];
|
|
34
|
+
optional Thumbnail thumbnail = 5;
|
|
35
|
+
optional PjpegScanConfiguration pjpegScanConfiguration = 6;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
message Voice {
|
|
39
|
+
optional CommonMediaTransport mediaTransport = 1;
|
|
40
|
+
optional int32 duration = 2;
|
|
41
|
+
repeated float waveforms = 3 [packed=true];
|
|
42
|
+
optional int32 waveformSamplingFrequencyHz = 4;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
message Video {
|
|
46
|
+
optional CommonMediaTransport mediaTransport = 1;
|
|
47
|
+
optional int32 height = 2;
|
|
48
|
+
optional int32 width = 3;
|
|
49
|
+
optional Thumbnail thumbnail = 4;
|
|
50
|
+
optional VideoExtraMetadata videoExtraMetadata = 5;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
message Gif {
|
|
54
|
+
optional CommonMediaTransport mediaTransport = 1;
|
|
55
|
+
optional int32 height = 2;
|
|
56
|
+
optional int32 width = 3;
|
|
57
|
+
optional bool isSticker = 4;
|
|
58
|
+
optional string stickerID = 5;
|
|
59
|
+
optional string gifURL = 6;
|
|
60
|
+
optional int32 gifSize = 7;
|
|
61
|
+
optional bool isRandom = 8;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
message AvatarSticker {
|
|
65
|
+
optional CommonMediaTransport mediaTransport = 1;
|
|
66
|
+
optional bool isAnimated = 2;
|
|
67
|
+
optional string stickerID = 3;
|
|
68
|
+
optional string stickerTemplate = 4;
|
|
69
|
+
optional int32 nuxType = 5;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
message Raven {
|
|
73
|
+
enum ViewMode {
|
|
74
|
+
RAVEN_VIEW_MODEL_UNSPECIFIED = 0;
|
|
75
|
+
RAVEN_VIEW_MODEL_ONCE = 1;
|
|
76
|
+
RAVEN_VIEW_MODEL_REPLAYABLE = 2;
|
|
77
|
+
RAVEN_VIEW_MODEL_PERMANENT = 3;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
optional ViewMode viewMode = 1;
|
|
81
|
+
optional RavenContent content = 2;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
message RavenContent {
|
|
85
|
+
oneof ravenContent {
|
|
86
|
+
StaticPhoto staticPhoto = 1;
|
|
87
|
+
Video video = 2;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
message Thumbnail {
|
|
92
|
+
optional CommonMediaTransport mediaTransport = 1;
|
|
93
|
+
optional int32 height = 2;
|
|
94
|
+
optional int32 width = 3;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
message CommonMediaTransport {
|
|
98
|
+
optional string mediaID = 1;
|
|
99
|
+
optional string fileSHA256 = 2;
|
|
100
|
+
optional string mediaKey = 3;
|
|
101
|
+
optional string fileEncSHA256 = 4;
|
|
102
|
+
optional string directPath = 5;
|
|
103
|
+
optional string mediaKeyTimestamp = 6;
|
|
104
|
+
optional string sidecar = 7;
|
|
105
|
+
optional int32 fileLength = 8;
|
|
106
|
+
optional string mimetype = 9;
|
|
107
|
+
optional string objectID = 10;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
message VideoExtraMetadata {
|
|
111
|
+
optional float uploadMosClientScore = 1;
|
|
112
|
+
}
|
|
@@ -0,0 +1,514 @@
|
|
|
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: instamadilloCoreTypeText/InstamadilloCoreTypeText.proto
|
|
6
|
+
|
|
7
|
+
package instamadilloCoreTypeText
|
|
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
|
+
instamadilloCoreTypeMedia "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeMedia"
|
|
18
|
+
)
|
|
19
|
+
|
|
20
|
+
const (
|
|
21
|
+
// Verify that this generated code is sufficiently up-to-date.
|
|
22
|
+
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
23
|
+
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
24
|
+
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
type Text_FormatStyle int32
|
|
28
|
+
|
|
29
|
+
const (
|
|
30
|
+
Text_TEXT_FORMAT_STYLE_UNSPECIFIED Text_FormatStyle = 0
|
|
31
|
+
Text_TEXT_FORMAT_STYLE_BOLD Text_FormatStyle = 1
|
|
32
|
+
Text_TEXT_FORMAT_STYLE_ITALIC Text_FormatStyle = 2
|
|
33
|
+
Text_TEXT_FORMAT_STYLE_STRIKETHROUGH Text_FormatStyle = 3
|
|
34
|
+
Text_TEXT_FORMAT_STYLE_UNDERLINE Text_FormatStyle = 4
|
|
35
|
+
Text_TEXT_FORMAT_STYLE_INVALID Text_FormatStyle = 5
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
// Enum value maps for Text_FormatStyle.
|
|
39
|
+
var (
|
|
40
|
+
Text_FormatStyle_name = map[int32]string{
|
|
41
|
+
0: "TEXT_FORMAT_STYLE_UNSPECIFIED",
|
|
42
|
+
1: "TEXT_FORMAT_STYLE_BOLD",
|
|
43
|
+
2: "TEXT_FORMAT_STYLE_ITALIC",
|
|
44
|
+
3: "TEXT_FORMAT_STYLE_STRIKETHROUGH",
|
|
45
|
+
4: "TEXT_FORMAT_STYLE_UNDERLINE",
|
|
46
|
+
5: "TEXT_FORMAT_STYLE_INVALID",
|
|
47
|
+
}
|
|
48
|
+
Text_FormatStyle_value = map[string]int32{
|
|
49
|
+
"TEXT_FORMAT_STYLE_UNSPECIFIED": 0,
|
|
50
|
+
"TEXT_FORMAT_STYLE_BOLD": 1,
|
|
51
|
+
"TEXT_FORMAT_STYLE_ITALIC": 2,
|
|
52
|
+
"TEXT_FORMAT_STYLE_STRIKETHROUGH": 3,
|
|
53
|
+
"TEXT_FORMAT_STYLE_UNDERLINE": 4,
|
|
54
|
+
"TEXT_FORMAT_STYLE_INVALID": 5,
|
|
55
|
+
}
|
|
56
|
+
)
|
|
57
|
+
|
|
58
|
+
func (x Text_FormatStyle) Enum() *Text_FormatStyle {
|
|
59
|
+
p := new(Text_FormatStyle)
|
|
60
|
+
*p = x
|
|
61
|
+
return p
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
func (x Text_FormatStyle) String() string {
|
|
65
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
func (Text_FormatStyle) Descriptor() protoreflect.EnumDescriptor {
|
|
69
|
+
return file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_enumTypes[0].Descriptor()
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
func (Text_FormatStyle) Type() protoreflect.EnumType {
|
|
73
|
+
return &file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_enumTypes[0]
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
func (x Text_FormatStyle) Number() protoreflect.EnumNumber {
|
|
77
|
+
return protoreflect.EnumNumber(x)
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// Deprecated: Do not use.
|
|
81
|
+
func (x *Text_FormatStyle) UnmarshalJSON(b []byte) error {
|
|
82
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
83
|
+
if err != nil {
|
|
84
|
+
return err
|
|
85
|
+
}
|
|
86
|
+
*x = Text_FormatStyle(num)
|
|
87
|
+
return nil
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// Deprecated: Use Text_FormatStyle.Descriptor instead.
|
|
91
|
+
func (Text_FormatStyle) EnumDescriptor() ([]byte, []int) {
|
|
92
|
+
return file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDescGZIP(), []int{0, 0}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
type Text struct {
|
|
96
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
97
|
+
Text *string `protobuf:"bytes,1,opt,name=text" json:"text,omitempty"`
|
|
98
|
+
IsSuggestedReply *bool `protobuf:"varint,2,opt,name=isSuggestedReply" json:"isSuggestedReply,omitempty"`
|
|
99
|
+
PostbackPayload *string `protobuf:"bytes,3,opt,name=postbackPayload" json:"postbackPayload,omitempty"`
|
|
100
|
+
PowerUpData *PowerUpsData `protobuf:"bytes,4,opt,name=powerUpData" json:"powerUpData,omitempty"`
|
|
101
|
+
Commands []*CommandRangeData `protobuf:"bytes,5,rep,name=commands" json:"commands,omitempty"`
|
|
102
|
+
AnimatedEmojiCharacterRanges []*AnimatedEmojiCharacterRange `protobuf:"bytes,6,rep,name=animatedEmojiCharacterRanges" json:"animatedEmojiCharacterRanges,omitempty"`
|
|
103
|
+
unknownFields protoimpl.UnknownFields
|
|
104
|
+
sizeCache protoimpl.SizeCache
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
func (x *Text) Reset() {
|
|
108
|
+
*x = Text{}
|
|
109
|
+
mi := &file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_msgTypes[0]
|
|
110
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
111
|
+
ms.StoreMessageInfo(mi)
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
func (x *Text) String() string {
|
|
115
|
+
return protoimpl.X.MessageStringOf(x)
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
func (*Text) ProtoMessage() {}
|
|
119
|
+
|
|
120
|
+
func (x *Text) ProtoReflect() protoreflect.Message {
|
|
121
|
+
mi := &file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_msgTypes[0]
|
|
122
|
+
if x != nil {
|
|
123
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
124
|
+
if ms.LoadMessageInfo() == nil {
|
|
125
|
+
ms.StoreMessageInfo(mi)
|
|
126
|
+
}
|
|
127
|
+
return ms
|
|
128
|
+
}
|
|
129
|
+
return mi.MessageOf(x)
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
// Deprecated: Use Text.ProtoReflect.Descriptor instead.
|
|
133
|
+
func (*Text) Descriptor() ([]byte, []int) {
|
|
134
|
+
return file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDescGZIP(), []int{0}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
func (x *Text) GetText() string {
|
|
138
|
+
if x != nil && x.Text != nil {
|
|
139
|
+
return *x.Text
|
|
140
|
+
}
|
|
141
|
+
return ""
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
func (x *Text) GetIsSuggestedReply() bool {
|
|
145
|
+
if x != nil && x.IsSuggestedReply != nil {
|
|
146
|
+
return *x.IsSuggestedReply
|
|
147
|
+
}
|
|
148
|
+
return false
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
func (x *Text) GetPostbackPayload() string {
|
|
152
|
+
if x != nil && x.PostbackPayload != nil {
|
|
153
|
+
return *x.PostbackPayload
|
|
154
|
+
}
|
|
155
|
+
return ""
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
func (x *Text) GetPowerUpData() *PowerUpsData {
|
|
159
|
+
if x != nil {
|
|
160
|
+
return x.PowerUpData
|
|
161
|
+
}
|
|
162
|
+
return nil
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
func (x *Text) GetCommands() []*CommandRangeData {
|
|
166
|
+
if x != nil {
|
|
167
|
+
return x.Commands
|
|
168
|
+
}
|
|
169
|
+
return nil
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
func (x *Text) GetAnimatedEmojiCharacterRanges() []*AnimatedEmojiCharacterRange {
|
|
173
|
+
if x != nil {
|
|
174
|
+
return x.AnimatedEmojiCharacterRanges
|
|
175
|
+
}
|
|
176
|
+
return nil
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
type PowerUpsData struct {
|
|
180
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
181
|
+
Style *int32 `protobuf:"varint,1,opt,name=style" json:"style,omitempty"`
|
|
182
|
+
MediaAttachment *instamadilloCoreTypeMedia.CommonMediaTransport `protobuf:"bytes,2,opt,name=mediaAttachment" json:"mediaAttachment,omitempty"`
|
|
183
|
+
unknownFields protoimpl.UnknownFields
|
|
184
|
+
sizeCache protoimpl.SizeCache
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
func (x *PowerUpsData) Reset() {
|
|
188
|
+
*x = PowerUpsData{}
|
|
189
|
+
mi := &file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_msgTypes[1]
|
|
190
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
191
|
+
ms.StoreMessageInfo(mi)
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
func (x *PowerUpsData) String() string {
|
|
195
|
+
return protoimpl.X.MessageStringOf(x)
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
func (*PowerUpsData) ProtoMessage() {}
|
|
199
|
+
|
|
200
|
+
func (x *PowerUpsData) ProtoReflect() protoreflect.Message {
|
|
201
|
+
mi := &file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_msgTypes[1]
|
|
202
|
+
if x != nil {
|
|
203
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
204
|
+
if ms.LoadMessageInfo() == nil {
|
|
205
|
+
ms.StoreMessageInfo(mi)
|
|
206
|
+
}
|
|
207
|
+
return ms
|
|
208
|
+
}
|
|
209
|
+
return mi.MessageOf(x)
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
// Deprecated: Use PowerUpsData.ProtoReflect.Descriptor instead.
|
|
213
|
+
func (*PowerUpsData) Descriptor() ([]byte, []int) {
|
|
214
|
+
return file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDescGZIP(), []int{1}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
func (x *PowerUpsData) GetStyle() int32 {
|
|
218
|
+
if x != nil && x.Style != nil {
|
|
219
|
+
return *x.Style
|
|
220
|
+
}
|
|
221
|
+
return 0
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
func (x *PowerUpsData) GetMediaAttachment() *instamadilloCoreTypeMedia.CommonMediaTransport {
|
|
225
|
+
if x != nil {
|
|
226
|
+
return x.MediaAttachment
|
|
227
|
+
}
|
|
228
|
+
return nil
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
type CommandRangeData struct {
|
|
232
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
233
|
+
Offset *int32 `protobuf:"varint,1,opt,name=offset" json:"offset,omitempty"`
|
|
234
|
+
Length *int32 `protobuf:"varint,2,opt,name=length" json:"length,omitempty"`
|
|
235
|
+
Type *int32 `protobuf:"varint,3,opt,name=type" json:"type,omitempty"`
|
|
236
|
+
FBID *string `protobuf:"bytes,4,opt,name=FBID" json:"FBID,omitempty"`
|
|
237
|
+
UserOrThreadFbid *string `protobuf:"bytes,5,opt,name=userOrThreadFbid" json:"userOrThreadFbid,omitempty"`
|
|
238
|
+
unknownFields protoimpl.UnknownFields
|
|
239
|
+
sizeCache protoimpl.SizeCache
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
func (x *CommandRangeData) Reset() {
|
|
243
|
+
*x = CommandRangeData{}
|
|
244
|
+
mi := &file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_msgTypes[2]
|
|
245
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
246
|
+
ms.StoreMessageInfo(mi)
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
func (x *CommandRangeData) String() string {
|
|
250
|
+
return protoimpl.X.MessageStringOf(x)
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
func (*CommandRangeData) ProtoMessage() {}
|
|
254
|
+
|
|
255
|
+
func (x *CommandRangeData) ProtoReflect() protoreflect.Message {
|
|
256
|
+
mi := &file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_msgTypes[2]
|
|
257
|
+
if x != nil {
|
|
258
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
259
|
+
if ms.LoadMessageInfo() == nil {
|
|
260
|
+
ms.StoreMessageInfo(mi)
|
|
261
|
+
}
|
|
262
|
+
return ms
|
|
263
|
+
}
|
|
264
|
+
return mi.MessageOf(x)
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
// Deprecated: Use CommandRangeData.ProtoReflect.Descriptor instead.
|
|
268
|
+
func (*CommandRangeData) Descriptor() ([]byte, []int) {
|
|
269
|
+
return file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDescGZIP(), []int{2}
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
func (x *CommandRangeData) GetOffset() int32 {
|
|
273
|
+
if x != nil && x.Offset != nil {
|
|
274
|
+
return *x.Offset
|
|
275
|
+
}
|
|
276
|
+
return 0
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
func (x *CommandRangeData) GetLength() int32 {
|
|
280
|
+
if x != nil && x.Length != nil {
|
|
281
|
+
return *x.Length
|
|
282
|
+
}
|
|
283
|
+
return 0
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
func (x *CommandRangeData) GetType() int32 {
|
|
287
|
+
if x != nil && x.Type != nil {
|
|
288
|
+
return *x.Type
|
|
289
|
+
}
|
|
290
|
+
return 0
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
func (x *CommandRangeData) GetFBID() string {
|
|
294
|
+
if x != nil && x.FBID != nil {
|
|
295
|
+
return *x.FBID
|
|
296
|
+
}
|
|
297
|
+
return ""
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
func (x *CommandRangeData) GetUserOrThreadFbid() string {
|
|
301
|
+
if x != nil && x.UserOrThreadFbid != nil {
|
|
302
|
+
return *x.UserOrThreadFbid
|
|
303
|
+
}
|
|
304
|
+
return ""
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
type FormattedText struct {
|
|
308
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
309
|
+
Offset *int32 `protobuf:"varint,1,opt,name=offset" json:"offset,omitempty"`
|
|
310
|
+
Length *int32 `protobuf:"varint,2,opt,name=length" json:"length,omitempty"`
|
|
311
|
+
Style *Text_FormatStyle `protobuf:"varint,3,opt,name=style,enum=InstamadilloCoreTypeText.Text_FormatStyle" json:"style,omitempty"`
|
|
312
|
+
unknownFields protoimpl.UnknownFields
|
|
313
|
+
sizeCache protoimpl.SizeCache
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
func (x *FormattedText) Reset() {
|
|
317
|
+
*x = FormattedText{}
|
|
318
|
+
mi := &file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_msgTypes[3]
|
|
319
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
320
|
+
ms.StoreMessageInfo(mi)
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
func (x *FormattedText) String() string {
|
|
324
|
+
return protoimpl.X.MessageStringOf(x)
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
func (*FormattedText) ProtoMessage() {}
|
|
328
|
+
|
|
329
|
+
func (x *FormattedText) ProtoReflect() protoreflect.Message {
|
|
330
|
+
mi := &file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_msgTypes[3]
|
|
331
|
+
if x != nil {
|
|
332
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
333
|
+
if ms.LoadMessageInfo() == nil {
|
|
334
|
+
ms.StoreMessageInfo(mi)
|
|
335
|
+
}
|
|
336
|
+
return ms
|
|
337
|
+
}
|
|
338
|
+
return mi.MessageOf(x)
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
// Deprecated: Use FormattedText.ProtoReflect.Descriptor instead.
|
|
342
|
+
func (*FormattedText) Descriptor() ([]byte, []int) {
|
|
343
|
+
return file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDescGZIP(), []int{3}
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
func (x *FormattedText) GetOffset() int32 {
|
|
347
|
+
if x != nil && x.Offset != nil {
|
|
348
|
+
return *x.Offset
|
|
349
|
+
}
|
|
350
|
+
return 0
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
func (x *FormattedText) GetLength() int32 {
|
|
354
|
+
if x != nil && x.Length != nil {
|
|
355
|
+
return *x.Length
|
|
356
|
+
}
|
|
357
|
+
return 0
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
func (x *FormattedText) GetStyle() Text_FormatStyle {
|
|
361
|
+
if x != nil && x.Style != nil {
|
|
362
|
+
return *x.Style
|
|
363
|
+
}
|
|
364
|
+
return Text_TEXT_FORMAT_STYLE_UNSPECIFIED
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
type AnimatedEmojiCharacterRange struct {
|
|
368
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
369
|
+
Offset *int32 `protobuf:"varint,1,opt,name=offset" json:"offset,omitempty"`
|
|
370
|
+
Length *int32 `protobuf:"varint,2,opt,name=length" json:"length,omitempty"`
|
|
371
|
+
unknownFields protoimpl.UnknownFields
|
|
372
|
+
sizeCache protoimpl.SizeCache
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
func (x *AnimatedEmojiCharacterRange) Reset() {
|
|
376
|
+
*x = AnimatedEmojiCharacterRange{}
|
|
377
|
+
mi := &file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_msgTypes[4]
|
|
378
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
379
|
+
ms.StoreMessageInfo(mi)
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
func (x *AnimatedEmojiCharacterRange) String() string {
|
|
383
|
+
return protoimpl.X.MessageStringOf(x)
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
func (*AnimatedEmojiCharacterRange) ProtoMessage() {}
|
|
387
|
+
|
|
388
|
+
func (x *AnimatedEmojiCharacterRange) ProtoReflect() protoreflect.Message {
|
|
389
|
+
mi := &file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_msgTypes[4]
|
|
390
|
+
if x != nil {
|
|
391
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
392
|
+
if ms.LoadMessageInfo() == nil {
|
|
393
|
+
ms.StoreMessageInfo(mi)
|
|
394
|
+
}
|
|
395
|
+
return ms
|
|
396
|
+
}
|
|
397
|
+
return mi.MessageOf(x)
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
// Deprecated: Use AnimatedEmojiCharacterRange.ProtoReflect.Descriptor instead.
|
|
401
|
+
func (*AnimatedEmojiCharacterRange) Descriptor() ([]byte, []int) {
|
|
402
|
+
return file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDescGZIP(), []int{4}
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
func (x *AnimatedEmojiCharacterRange) GetOffset() int32 {
|
|
406
|
+
if x != nil && x.Offset != nil {
|
|
407
|
+
return *x.Offset
|
|
408
|
+
}
|
|
409
|
+
return 0
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
func (x *AnimatedEmojiCharacterRange) GetLength() int32 {
|
|
413
|
+
if x != nil && x.Length != nil {
|
|
414
|
+
return *x.Length
|
|
415
|
+
}
|
|
416
|
+
return 0
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
var File_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto protoreflect.FileDescriptor
|
|
420
|
+
|
|
421
|
+
const file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDesc = "" +
|
|
422
|
+
"\n" +
|
|
423
|
+
"7instamadilloCoreTypeText/InstamadilloCoreTypeText.proto\x12\x18InstamadilloCoreTypeText\x1a9instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto\"\xcf\x04\n" +
|
|
424
|
+
"\x04Text\x12\x12\n" +
|
|
425
|
+
"\x04text\x18\x01 \x01(\tR\x04text\x12*\n" +
|
|
426
|
+
"\x10isSuggestedReply\x18\x02 \x01(\bR\x10isSuggestedReply\x12(\n" +
|
|
427
|
+
"\x0fpostbackPayload\x18\x03 \x01(\tR\x0fpostbackPayload\x12H\n" +
|
|
428
|
+
"\vpowerUpData\x18\x04 \x01(\v2&.InstamadilloCoreTypeText.PowerUpsDataR\vpowerUpData\x12F\n" +
|
|
429
|
+
"\bcommands\x18\x05 \x03(\v2*.InstamadilloCoreTypeText.CommandRangeDataR\bcommands\x12y\n" +
|
|
430
|
+
"\x1canimatedEmojiCharacterRanges\x18\x06 \x03(\v25.InstamadilloCoreTypeText.AnimatedEmojiCharacterRangeR\x1canimatedEmojiCharacterRanges\"\xcf\x01\n" +
|
|
431
|
+
"\vFormatStyle\x12!\n" +
|
|
432
|
+
"\x1dTEXT_FORMAT_STYLE_UNSPECIFIED\x10\x00\x12\x1a\n" +
|
|
433
|
+
"\x16TEXT_FORMAT_STYLE_BOLD\x10\x01\x12\x1c\n" +
|
|
434
|
+
"\x18TEXT_FORMAT_STYLE_ITALIC\x10\x02\x12#\n" +
|
|
435
|
+
"\x1fTEXT_FORMAT_STYLE_STRIKETHROUGH\x10\x03\x12\x1f\n" +
|
|
436
|
+
"\x1bTEXT_FORMAT_STYLE_UNDERLINE\x10\x04\x12\x1d\n" +
|
|
437
|
+
"\x19TEXT_FORMAT_STYLE_INVALID\x10\x05\"\x7f\n" +
|
|
438
|
+
"\fPowerUpsData\x12\x14\n" +
|
|
439
|
+
"\x05style\x18\x01 \x01(\x05R\x05style\x12Y\n" +
|
|
440
|
+
"\x0fmediaAttachment\x18\x02 \x01(\v2/.InstamadilloCoreTypeMedia.CommonMediaTransportR\x0fmediaAttachment\"\x96\x01\n" +
|
|
441
|
+
"\x10CommandRangeData\x12\x16\n" +
|
|
442
|
+
"\x06offset\x18\x01 \x01(\x05R\x06offset\x12\x16\n" +
|
|
443
|
+
"\x06length\x18\x02 \x01(\x05R\x06length\x12\x12\n" +
|
|
444
|
+
"\x04type\x18\x03 \x01(\x05R\x04type\x12\x12\n" +
|
|
445
|
+
"\x04FBID\x18\x04 \x01(\tR\x04FBID\x12*\n" +
|
|
446
|
+
"\x10userOrThreadFbid\x18\x05 \x01(\tR\x10userOrThreadFbid\"\x81\x01\n" +
|
|
447
|
+
"\rFormattedText\x12\x16\n" +
|
|
448
|
+
"\x06offset\x18\x01 \x01(\x05R\x06offset\x12\x16\n" +
|
|
449
|
+
"\x06length\x18\x02 \x01(\x05R\x06length\x12@\n" +
|
|
450
|
+
"\x05style\x18\x03 \x01(\x0e2*.InstamadilloCoreTypeText.Text.FormatStyleR\x05style\"M\n" +
|
|
451
|
+
"\x1bAnimatedEmojiCharacterRange\x12\x16\n" +
|
|
452
|
+
"\x06offset\x18\x01 \x01(\x05R\x06offset\x12\x16\n" +
|
|
453
|
+
"\x06length\x18\x02 \x01(\x05R\x06lengthB4Z2go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText"
|
|
454
|
+
|
|
455
|
+
var (
|
|
456
|
+
file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDescOnce sync.Once
|
|
457
|
+
file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDescData []byte
|
|
458
|
+
)
|
|
459
|
+
|
|
460
|
+
func file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDescGZIP() []byte {
|
|
461
|
+
file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDescOnce.Do(func() {
|
|
462
|
+
file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDesc), len(file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDesc)))
|
|
463
|
+
})
|
|
464
|
+
return file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDescData
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
var file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
|
468
|
+
var file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
|
|
469
|
+
var file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_goTypes = []any{
|
|
470
|
+
(Text_FormatStyle)(0), // 0: InstamadilloCoreTypeText.Text.FormatStyle
|
|
471
|
+
(*Text)(nil), // 1: InstamadilloCoreTypeText.Text
|
|
472
|
+
(*PowerUpsData)(nil), // 2: InstamadilloCoreTypeText.PowerUpsData
|
|
473
|
+
(*CommandRangeData)(nil), // 3: InstamadilloCoreTypeText.CommandRangeData
|
|
474
|
+
(*FormattedText)(nil), // 4: InstamadilloCoreTypeText.FormattedText
|
|
475
|
+
(*AnimatedEmojiCharacterRange)(nil), // 5: InstamadilloCoreTypeText.AnimatedEmojiCharacterRange
|
|
476
|
+
(*instamadilloCoreTypeMedia.CommonMediaTransport)(nil), // 6: InstamadilloCoreTypeMedia.CommonMediaTransport
|
|
477
|
+
}
|
|
478
|
+
var file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_depIdxs = []int32{
|
|
479
|
+
2, // 0: InstamadilloCoreTypeText.Text.powerUpData:type_name -> InstamadilloCoreTypeText.PowerUpsData
|
|
480
|
+
3, // 1: InstamadilloCoreTypeText.Text.commands:type_name -> InstamadilloCoreTypeText.CommandRangeData
|
|
481
|
+
5, // 2: InstamadilloCoreTypeText.Text.animatedEmojiCharacterRanges:type_name -> InstamadilloCoreTypeText.AnimatedEmojiCharacterRange
|
|
482
|
+
6, // 3: InstamadilloCoreTypeText.PowerUpsData.mediaAttachment:type_name -> InstamadilloCoreTypeMedia.CommonMediaTransport
|
|
483
|
+
0, // 4: InstamadilloCoreTypeText.FormattedText.style:type_name -> InstamadilloCoreTypeText.Text.FormatStyle
|
|
484
|
+
5, // [5:5] is the sub-list for method output_type
|
|
485
|
+
5, // [5:5] is the sub-list for method input_type
|
|
486
|
+
5, // [5:5] is the sub-list for extension type_name
|
|
487
|
+
5, // [5:5] is the sub-list for extension extendee
|
|
488
|
+
0, // [0:5] is the sub-list for field type_name
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
func init() { file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_init() }
|
|
492
|
+
func file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_init() {
|
|
493
|
+
if File_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto != nil {
|
|
494
|
+
return
|
|
495
|
+
}
|
|
496
|
+
type x struct{}
|
|
497
|
+
out := protoimpl.TypeBuilder{
|
|
498
|
+
File: protoimpl.DescBuilder{
|
|
499
|
+
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
500
|
+
RawDescriptor: unsafe.Slice(unsafe.StringData(file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDesc), len(file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_rawDesc)),
|
|
501
|
+
NumEnums: 1,
|
|
502
|
+
NumMessages: 5,
|
|
503
|
+
NumExtensions: 0,
|
|
504
|
+
NumServices: 0,
|
|
505
|
+
},
|
|
506
|
+
GoTypes: file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_goTypes,
|
|
507
|
+
DependencyIndexes: file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_depIdxs,
|
|
508
|
+
EnumInfos: file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_enumTypes,
|
|
509
|
+
MessageInfos: file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_msgTypes,
|
|
510
|
+
}.Build()
|
|
511
|
+
File_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto = out.File
|
|
512
|
+
file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_goTypes = nil
|
|
513
|
+
file_instamadilloCoreTypeText_InstamadilloCoreTypeText_proto_depIdxs = nil
|
|
514
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
syntax = "proto2";
|
|
2
|
+
package InstamadilloCoreTypeText;
|
|
3
|
+
option go_package = "go.mau.fi/whatsmeow/proto/instamadilloCoreTypeText";
|
|
4
|
+
|
|
5
|
+
import "instamadilloCoreTypeMedia/InstamadilloCoreTypeMedia.proto";
|
|
6
|
+
|
|
7
|
+
message Text {
|
|
8
|
+
enum FormatStyle {
|
|
9
|
+
TEXT_FORMAT_STYLE_UNSPECIFIED = 0;
|
|
10
|
+
TEXT_FORMAT_STYLE_BOLD = 1;
|
|
11
|
+
TEXT_FORMAT_STYLE_ITALIC = 2;
|
|
12
|
+
TEXT_FORMAT_STYLE_STRIKETHROUGH = 3;
|
|
13
|
+
TEXT_FORMAT_STYLE_UNDERLINE = 4;
|
|
14
|
+
TEXT_FORMAT_STYLE_INVALID = 5;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
optional string text = 1;
|
|
18
|
+
optional bool isSuggestedReply = 2;
|
|
19
|
+
optional string postbackPayload = 3;
|
|
20
|
+
optional PowerUpsData powerUpData = 4;
|
|
21
|
+
repeated CommandRangeData commands = 5;
|
|
22
|
+
repeated AnimatedEmojiCharacterRange animatedEmojiCharacterRanges = 6;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
message PowerUpsData {
|
|
26
|
+
optional int32 style = 1;
|
|
27
|
+
optional InstamadilloCoreTypeMedia.CommonMediaTransport mediaAttachment = 2;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
message CommandRangeData {
|
|
31
|
+
optional int32 offset = 1;
|
|
32
|
+
optional int32 length = 2;
|
|
33
|
+
optional int32 type = 3;
|
|
34
|
+
optional string FBID = 4;
|
|
35
|
+
optional string userOrThreadFbid = 5;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
message FormattedText {
|
|
39
|
+
optional int32 offset = 1;
|
|
40
|
+
optional int32 length = 2;
|
|
41
|
+
optional Text.FormatStyle style = 3;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
message AnimatedEmojiCharacterRange {
|
|
45
|
+
optional int32 offset = 1;
|
|
46
|
+
optional int32 length = 2;
|
|
47
|
+
}
|