slidge-whatsapp 0.2.7__cp312-cp312-manylinux_2_36_aarch64.whl → 0.3.0b0__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.
- slidge_whatsapp/contact.py +13 -3
- slidge_whatsapp/event.go +107 -37
- slidge_whatsapp/gateway.go +7 -63
- slidge_whatsapp/gateway.py +2 -3
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.h +186 -169
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +148 -134
- slidge_whatsapp/generated/whatsapp.c +1652 -1380
- slidge_whatsapp/generated/whatsapp.go +798 -687
- slidge_whatsapp/generated/whatsapp.py +1169 -1044
- slidge_whatsapp/generated/whatsapp_go.h +186 -169
- slidge_whatsapp/go.mod +18 -15
- slidge_whatsapp/go.sum +38 -26
- slidge_whatsapp/group.py +34 -30
- slidge_whatsapp/media/media.go +1 -1
- slidge_whatsapp/session.go +33 -16
- 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/networkerror.go +2 -1
- slidge_whatsapp/vendor/go.mau.fi/util/exstrings/stringutil.go +28 -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 +3 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +15 -18
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +5 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +4 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +97 -25
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +22 -10
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +10 -9
- 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 +5 -1
- 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/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 +30 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.proto +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +8532 -11526
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +132 -438
- 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/waStatusAttributions/WAStatusAttributions.pb.go +225 -73
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +21 -5
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +884 -441
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +40 -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/receipt.go +8 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +6 -4
- 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/store.go +25 -5
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +3 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +8 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +2 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +12 -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/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 +43 -23
- {slidge_whatsapp-0.2.7.dist-info → slidge_whatsapp-0.3.0b0.dist-info}/METADATA +2 -2
- {slidge_whatsapp-0.2.7.dist-info → slidge_whatsapp-0.3.0b0.dist-info}/RECORD +208 -161
- 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.7.dist-info → slidge_whatsapp-0.3.0b0.dist-info}/LICENSE +0 -0
- {slidge_whatsapp-0.2.7.dist-info → slidge_whatsapp-0.3.0b0.dist-info}/WHEEL +0 -0
- {slidge_whatsapp-0.2.7.dist-info → slidge_whatsapp-0.3.0b0.dist-info}/entry_points.txt +0 -0
slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go
CHANGED
|
@@ -25,28 +25,37 @@ const (
|
|
|
25
25
|
type StatusAttribution_Type int32
|
|
26
26
|
|
|
27
27
|
const (
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
28
|
+
StatusAttribution_UNKNOWN StatusAttribution_Type = 0
|
|
29
|
+
StatusAttribution_RESHARE StatusAttribution_Type = 1
|
|
30
|
+
StatusAttribution_EXTERNAL_SHARE StatusAttribution_Type = 2
|
|
31
|
+
StatusAttribution_MUSIC StatusAttribution_Type = 3
|
|
32
|
+
StatusAttribution_STATUS_MENTION StatusAttribution_Type = 4
|
|
33
|
+
StatusAttribution_GROUP_STATUS StatusAttribution_Type = 5
|
|
34
|
+
StatusAttribution_RL_ATTRIBUTION StatusAttribution_Type = 6
|
|
35
|
+
StatusAttribution_AI_CREATED StatusAttribution_Type = 7
|
|
33
36
|
)
|
|
34
37
|
|
|
35
38
|
// Enum value maps for StatusAttribution_Type.
|
|
36
39
|
var (
|
|
37
40
|
StatusAttribution_Type_name = map[int32]string{
|
|
38
|
-
0: "
|
|
39
|
-
1: "
|
|
40
|
-
2: "
|
|
41
|
-
3: "
|
|
42
|
-
4: "
|
|
41
|
+
0: "UNKNOWN",
|
|
42
|
+
1: "RESHARE",
|
|
43
|
+
2: "EXTERNAL_SHARE",
|
|
44
|
+
3: "MUSIC",
|
|
45
|
+
4: "STATUS_MENTION",
|
|
46
|
+
5: "GROUP_STATUS",
|
|
47
|
+
6: "RL_ATTRIBUTION",
|
|
48
|
+
7: "AI_CREATED",
|
|
43
49
|
}
|
|
44
50
|
StatusAttribution_Type_value = map[string]int32{
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
51
|
+
"UNKNOWN": 0,
|
|
52
|
+
"RESHARE": 1,
|
|
53
|
+
"EXTERNAL_SHARE": 2,
|
|
54
|
+
"MUSIC": 3,
|
|
55
|
+
"STATUS_MENTION": 4,
|
|
56
|
+
"GROUP_STATUS": 5,
|
|
57
|
+
"RL_ATTRIBUTION": 6,
|
|
58
|
+
"AI_CREATED": 7,
|
|
50
59
|
}
|
|
51
60
|
)
|
|
52
61
|
|
|
@@ -87,6 +96,68 @@ func (StatusAttribution_Type) EnumDescriptor() ([]byte, []int) {
|
|
|
87
96
|
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 0}
|
|
88
97
|
}
|
|
89
98
|
|
|
99
|
+
type StatusAttribution_RLAttribution_Source int32
|
|
100
|
+
|
|
101
|
+
const (
|
|
102
|
+
StatusAttribution_RLAttribution_UNKNOWN StatusAttribution_RLAttribution_Source = 0
|
|
103
|
+
StatusAttribution_RLAttribution_RAY_BAN_META_GLASSES StatusAttribution_RLAttribution_Source = 1
|
|
104
|
+
StatusAttribution_RLAttribution_OAKLEY_META_GLASSES StatusAttribution_RLAttribution_Source = 2
|
|
105
|
+
StatusAttribution_RLAttribution_HYPERNOVA_GLASSES StatusAttribution_RLAttribution_Source = 3
|
|
106
|
+
)
|
|
107
|
+
|
|
108
|
+
// Enum value maps for StatusAttribution_RLAttribution_Source.
|
|
109
|
+
var (
|
|
110
|
+
StatusAttribution_RLAttribution_Source_name = map[int32]string{
|
|
111
|
+
0: "UNKNOWN",
|
|
112
|
+
1: "RAY_BAN_META_GLASSES",
|
|
113
|
+
2: "OAKLEY_META_GLASSES",
|
|
114
|
+
3: "HYPERNOVA_GLASSES",
|
|
115
|
+
}
|
|
116
|
+
StatusAttribution_RLAttribution_Source_value = map[string]int32{
|
|
117
|
+
"UNKNOWN": 0,
|
|
118
|
+
"RAY_BAN_META_GLASSES": 1,
|
|
119
|
+
"OAKLEY_META_GLASSES": 2,
|
|
120
|
+
"HYPERNOVA_GLASSES": 3,
|
|
121
|
+
}
|
|
122
|
+
)
|
|
123
|
+
|
|
124
|
+
func (x StatusAttribution_RLAttribution_Source) Enum() *StatusAttribution_RLAttribution_Source {
|
|
125
|
+
p := new(StatusAttribution_RLAttribution_Source)
|
|
126
|
+
*p = x
|
|
127
|
+
return p
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
func (x StatusAttribution_RLAttribution_Source) String() string {
|
|
131
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
func (StatusAttribution_RLAttribution_Source) Descriptor() protoreflect.EnumDescriptor {
|
|
135
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[1].Descriptor()
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
func (StatusAttribution_RLAttribution_Source) Type() protoreflect.EnumType {
|
|
139
|
+
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[1]
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
func (x StatusAttribution_RLAttribution_Source) Number() protoreflect.EnumNumber {
|
|
143
|
+
return protoreflect.EnumNumber(x)
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
// Deprecated: Do not use.
|
|
147
|
+
func (x *StatusAttribution_RLAttribution_Source) UnmarshalJSON(b []byte) error {
|
|
148
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
149
|
+
if err != nil {
|
|
150
|
+
return err
|
|
151
|
+
}
|
|
152
|
+
*x = StatusAttribution_RLAttribution_Source(num)
|
|
153
|
+
return nil
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
// Deprecated: Use StatusAttribution_RLAttribution_Source.Descriptor instead.
|
|
157
|
+
func (StatusAttribution_RLAttribution_Source) EnumDescriptor() ([]byte, []int) {
|
|
158
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 0, 0}
|
|
159
|
+
}
|
|
160
|
+
|
|
90
161
|
type StatusAttribution_ExternalShare_Source int32
|
|
91
162
|
|
|
92
163
|
const (
|
|
@@ -97,6 +168,7 @@ const (
|
|
|
97
168
|
StatusAttribution_ExternalShare_SPOTIFY StatusAttribution_ExternalShare_Source = 4
|
|
98
169
|
StatusAttribution_ExternalShare_YOUTUBE StatusAttribution_ExternalShare_Source = 5
|
|
99
170
|
StatusAttribution_ExternalShare_PINTEREST StatusAttribution_ExternalShare_Source = 6
|
|
171
|
+
StatusAttribution_ExternalShare_THREADS StatusAttribution_ExternalShare_Source = 7
|
|
100
172
|
)
|
|
101
173
|
|
|
102
174
|
// Enum value maps for StatusAttribution_ExternalShare_Source.
|
|
@@ -109,6 +181,7 @@ var (
|
|
|
109
181
|
4: "SPOTIFY",
|
|
110
182
|
5: "YOUTUBE",
|
|
111
183
|
6: "PINTEREST",
|
|
184
|
+
7: "THREADS",
|
|
112
185
|
}
|
|
113
186
|
StatusAttribution_ExternalShare_Source_value = map[string]int32{
|
|
114
187
|
"UNKNOWN": 0,
|
|
@@ -118,6 +191,7 @@ var (
|
|
|
118
191
|
"SPOTIFY": 4,
|
|
119
192
|
"YOUTUBE": 5,
|
|
120
193
|
"PINTEREST": 6,
|
|
194
|
+
"THREADS": 7,
|
|
121
195
|
}
|
|
122
196
|
)
|
|
123
197
|
|
|
@@ -132,11 +206,11 @@ func (x StatusAttribution_ExternalShare_Source) String() string {
|
|
|
132
206
|
}
|
|
133
207
|
|
|
134
208
|
func (StatusAttribution_ExternalShare_Source) Descriptor() protoreflect.EnumDescriptor {
|
|
135
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[
|
|
209
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[2].Descriptor()
|
|
136
210
|
}
|
|
137
211
|
|
|
138
212
|
func (StatusAttribution_ExternalShare_Source) Type() protoreflect.EnumType {
|
|
139
|
-
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[
|
|
213
|
+
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[2]
|
|
140
214
|
}
|
|
141
215
|
|
|
142
216
|
func (x StatusAttribution_ExternalShare_Source) Number() protoreflect.EnumNumber {
|
|
@@ -155,7 +229,7 @@ func (x *StatusAttribution_ExternalShare_Source) UnmarshalJSON(b []byte) error {
|
|
|
155
229
|
|
|
156
230
|
// Deprecated: Use StatusAttribution_ExternalShare_Source.Descriptor instead.
|
|
157
231
|
func (StatusAttribution_ExternalShare_Source) EnumDescriptor() ([]byte, []int) {
|
|
158
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
232
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 1, 0}
|
|
159
233
|
}
|
|
160
234
|
|
|
161
235
|
type StatusAttribution_StatusReshare_Source int32
|
|
@@ -194,11 +268,11 @@ func (x StatusAttribution_StatusReshare_Source) String() string {
|
|
|
194
268
|
}
|
|
195
269
|
|
|
196
270
|
func (StatusAttribution_StatusReshare_Source) Descriptor() protoreflect.EnumDescriptor {
|
|
197
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[
|
|
271
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[3].Descriptor()
|
|
198
272
|
}
|
|
199
273
|
|
|
200
274
|
func (StatusAttribution_StatusReshare_Source) Type() protoreflect.EnumType {
|
|
201
|
-
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[
|
|
275
|
+
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[3]
|
|
202
276
|
}
|
|
203
277
|
|
|
204
278
|
func (x StatusAttribution_StatusReshare_Source) Number() protoreflect.EnumNumber {
|
|
@@ -217,7 +291,7 @@ func (x *StatusAttribution_StatusReshare_Source) UnmarshalJSON(b []byte) error {
|
|
|
217
291
|
|
|
218
292
|
// Deprecated: Use StatusAttribution_StatusReshare_Source.Descriptor instead.
|
|
219
293
|
func (StatusAttribution_StatusReshare_Source) EnumDescriptor() ([]byte, []int) {
|
|
220
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
294
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 2, 0}
|
|
221
295
|
}
|
|
222
296
|
|
|
223
297
|
type StatusAttribution struct {
|
|
@@ -228,6 +302,7 @@ type StatusAttribution struct {
|
|
|
228
302
|
// *StatusAttribution_ExternalShare_
|
|
229
303
|
// *StatusAttribution_Music_
|
|
230
304
|
// *StatusAttribution_GroupStatus_
|
|
305
|
+
// *StatusAttribution_RlAttribution
|
|
231
306
|
AttributionData isStatusAttribution_AttributionData `protobuf_oneof:"attributionData"`
|
|
232
307
|
Type *StatusAttribution_Type `protobuf:"varint,1,opt,name=type,enum=WAStatusAttributions.StatusAttribution_Type" json:"type,omitempty"`
|
|
233
308
|
ActionURL *string `protobuf:"bytes,2,opt,name=actionURL" json:"actionURL,omitempty"`
|
|
@@ -308,11 +383,20 @@ func (x *StatusAttribution) GetGroupStatus() *StatusAttribution_GroupStatus {
|
|
|
308
383
|
return nil
|
|
309
384
|
}
|
|
310
385
|
|
|
386
|
+
func (x *StatusAttribution) GetRlAttribution() *StatusAttribution_RLAttribution {
|
|
387
|
+
if x != nil {
|
|
388
|
+
if x, ok := x.AttributionData.(*StatusAttribution_RlAttribution); ok {
|
|
389
|
+
return x.RlAttribution
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
return nil
|
|
393
|
+
}
|
|
394
|
+
|
|
311
395
|
func (x *StatusAttribution) GetType() StatusAttribution_Type {
|
|
312
396
|
if x != nil && x.Type != nil {
|
|
313
397
|
return *x.Type
|
|
314
398
|
}
|
|
315
|
-
return
|
|
399
|
+
return StatusAttribution_UNKNOWN
|
|
316
400
|
}
|
|
317
401
|
|
|
318
402
|
func (x *StatusAttribution) GetActionURL() string {
|
|
@@ -342,6 +426,10 @@ type StatusAttribution_GroupStatus_ struct {
|
|
|
342
426
|
GroupStatus *StatusAttribution_GroupStatus `protobuf:"bytes,6,opt,name=groupStatus,oneof"`
|
|
343
427
|
}
|
|
344
428
|
|
|
429
|
+
type StatusAttribution_RlAttribution struct {
|
|
430
|
+
RlAttribution *StatusAttribution_RLAttribution `protobuf:"bytes,7,opt,name=rlAttribution,oneof"`
|
|
431
|
+
}
|
|
432
|
+
|
|
345
433
|
func (*StatusAttribution_StatusReshare_) isStatusAttribution_AttributionData() {}
|
|
346
434
|
|
|
347
435
|
func (*StatusAttribution_ExternalShare_) isStatusAttribution_AttributionData() {}
|
|
@@ -350,6 +438,52 @@ func (*StatusAttribution_Music_) isStatusAttribution_AttributionData() {}
|
|
|
350
438
|
|
|
351
439
|
func (*StatusAttribution_GroupStatus_) isStatusAttribution_AttributionData() {}
|
|
352
440
|
|
|
441
|
+
func (*StatusAttribution_RlAttribution) isStatusAttribution_AttributionData() {}
|
|
442
|
+
|
|
443
|
+
type StatusAttribution_RLAttribution struct {
|
|
444
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
445
|
+
Source *StatusAttribution_RLAttribution_Source `protobuf:"varint,1,opt,name=source,enum=WAStatusAttributions.StatusAttribution_RLAttribution_Source" json:"source,omitempty"`
|
|
446
|
+
unknownFields protoimpl.UnknownFields
|
|
447
|
+
sizeCache protoimpl.SizeCache
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
func (x *StatusAttribution_RLAttribution) Reset() {
|
|
451
|
+
*x = StatusAttribution_RLAttribution{}
|
|
452
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[1]
|
|
453
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
454
|
+
ms.StoreMessageInfo(mi)
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
func (x *StatusAttribution_RLAttribution) String() string {
|
|
458
|
+
return protoimpl.X.MessageStringOf(x)
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
func (*StatusAttribution_RLAttribution) ProtoMessage() {}
|
|
462
|
+
|
|
463
|
+
func (x *StatusAttribution_RLAttribution) ProtoReflect() protoreflect.Message {
|
|
464
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[1]
|
|
465
|
+
if x != nil {
|
|
466
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
467
|
+
if ms.LoadMessageInfo() == nil {
|
|
468
|
+
ms.StoreMessageInfo(mi)
|
|
469
|
+
}
|
|
470
|
+
return ms
|
|
471
|
+
}
|
|
472
|
+
return mi.MessageOf(x)
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
// Deprecated: Use StatusAttribution_RLAttribution.ProtoReflect.Descriptor instead.
|
|
476
|
+
func (*StatusAttribution_RLAttribution) Descriptor() ([]byte, []int) {
|
|
477
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 0}
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
func (x *StatusAttribution_RLAttribution) GetSource() StatusAttribution_RLAttribution_Source {
|
|
481
|
+
if x != nil && x.Source != nil {
|
|
482
|
+
return *x.Source
|
|
483
|
+
}
|
|
484
|
+
return StatusAttribution_RLAttribution_UNKNOWN
|
|
485
|
+
}
|
|
486
|
+
|
|
353
487
|
type StatusAttribution_ExternalShare struct {
|
|
354
488
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
355
489
|
ActionURL *string `protobuf:"bytes,1,opt,name=actionURL" json:"actionURL,omitempty"`
|
|
@@ -362,7 +496,7 @@ type StatusAttribution_ExternalShare struct {
|
|
|
362
496
|
|
|
363
497
|
func (x *StatusAttribution_ExternalShare) Reset() {
|
|
364
498
|
*x = StatusAttribution_ExternalShare{}
|
|
365
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
499
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[2]
|
|
366
500
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
367
501
|
ms.StoreMessageInfo(mi)
|
|
368
502
|
}
|
|
@@ -374,7 +508,7 @@ func (x *StatusAttribution_ExternalShare) String() string {
|
|
|
374
508
|
func (*StatusAttribution_ExternalShare) ProtoMessage() {}
|
|
375
509
|
|
|
376
510
|
func (x *StatusAttribution_ExternalShare) ProtoReflect() protoreflect.Message {
|
|
377
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
511
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[2]
|
|
378
512
|
if x != nil {
|
|
379
513
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
380
514
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -387,7 +521,7 @@ func (x *StatusAttribution_ExternalShare) ProtoReflect() protoreflect.Message {
|
|
|
387
521
|
|
|
388
522
|
// Deprecated: Use StatusAttribution_ExternalShare.ProtoReflect.Descriptor instead.
|
|
389
523
|
func (*StatusAttribution_ExternalShare) Descriptor() ([]byte, []int) {
|
|
390
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
524
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 1}
|
|
391
525
|
}
|
|
392
526
|
|
|
393
527
|
func (x *StatusAttribution_ExternalShare) GetActionURL() string {
|
|
@@ -428,7 +562,7 @@ type StatusAttribution_StatusReshare struct {
|
|
|
428
562
|
|
|
429
563
|
func (x *StatusAttribution_StatusReshare) Reset() {
|
|
430
564
|
*x = StatusAttribution_StatusReshare{}
|
|
431
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
565
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[3]
|
|
432
566
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
433
567
|
ms.StoreMessageInfo(mi)
|
|
434
568
|
}
|
|
@@ -440,7 +574,7 @@ func (x *StatusAttribution_StatusReshare) String() string {
|
|
|
440
574
|
func (*StatusAttribution_StatusReshare) ProtoMessage() {}
|
|
441
575
|
|
|
442
576
|
func (x *StatusAttribution_StatusReshare) ProtoReflect() protoreflect.Message {
|
|
443
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
577
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[3]
|
|
444
578
|
if x != nil {
|
|
445
579
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
446
580
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -453,7 +587,7 @@ func (x *StatusAttribution_StatusReshare) ProtoReflect() protoreflect.Message {
|
|
|
453
587
|
|
|
454
588
|
// Deprecated: Use StatusAttribution_StatusReshare.ProtoReflect.Descriptor instead.
|
|
455
589
|
func (*StatusAttribution_StatusReshare) Descriptor() ([]byte, []int) {
|
|
456
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
590
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 2}
|
|
457
591
|
}
|
|
458
592
|
|
|
459
593
|
func (x *StatusAttribution_StatusReshare) GetSource() StatusAttribution_StatusReshare_Source {
|
|
@@ -479,7 +613,7 @@ type StatusAttribution_GroupStatus struct {
|
|
|
479
613
|
|
|
480
614
|
func (x *StatusAttribution_GroupStatus) Reset() {
|
|
481
615
|
*x = StatusAttribution_GroupStatus{}
|
|
482
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
616
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[4]
|
|
483
617
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
484
618
|
ms.StoreMessageInfo(mi)
|
|
485
619
|
}
|
|
@@ -491,7 +625,7 @@ func (x *StatusAttribution_GroupStatus) String() string {
|
|
|
491
625
|
func (*StatusAttribution_GroupStatus) ProtoMessage() {}
|
|
492
626
|
|
|
493
627
|
func (x *StatusAttribution_GroupStatus) ProtoReflect() protoreflect.Message {
|
|
494
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
628
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[4]
|
|
495
629
|
if x != nil {
|
|
496
630
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
497
631
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -504,7 +638,7 @@ func (x *StatusAttribution_GroupStatus) ProtoReflect() protoreflect.Message {
|
|
|
504
638
|
|
|
505
639
|
// Deprecated: Use StatusAttribution_GroupStatus.ProtoReflect.Descriptor instead.
|
|
506
640
|
func (*StatusAttribution_GroupStatus) Descriptor() ([]byte, []int) {
|
|
507
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
641
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 3}
|
|
508
642
|
}
|
|
509
643
|
|
|
510
644
|
func (x *StatusAttribution_GroupStatus) GetAuthorJID() string {
|
|
@@ -528,7 +662,7 @@ type StatusAttribution_Music struct {
|
|
|
528
662
|
|
|
529
663
|
func (x *StatusAttribution_Music) Reset() {
|
|
530
664
|
*x = StatusAttribution_Music{}
|
|
531
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
665
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[5]
|
|
532
666
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
533
667
|
ms.StoreMessageInfo(mi)
|
|
534
668
|
}
|
|
@@ -540,7 +674,7 @@ func (x *StatusAttribution_Music) String() string {
|
|
|
540
674
|
func (*StatusAttribution_Music) ProtoMessage() {}
|
|
541
675
|
|
|
542
676
|
func (x *StatusAttribution_Music) ProtoReflect() protoreflect.Message {
|
|
543
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
677
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[5]
|
|
544
678
|
if x != nil {
|
|
545
679
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
546
680
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -553,7 +687,7 @@ func (x *StatusAttribution_Music) ProtoReflect() protoreflect.Message {
|
|
|
553
687
|
|
|
554
688
|
// Deprecated: Use StatusAttribution_Music.ProtoReflect.Descriptor instead.
|
|
555
689
|
func (*StatusAttribution_Music) Descriptor() ([]byte, []int) {
|
|
556
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
690
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 4}
|
|
557
691
|
}
|
|
558
692
|
|
|
559
693
|
func (x *StatusAttribution_Music) GetAuthorName() string {
|
|
@@ -610,7 +744,7 @@ type StatusAttribution_StatusReshare_Metadata struct {
|
|
|
610
744
|
|
|
611
745
|
func (x *StatusAttribution_StatusReshare_Metadata) Reset() {
|
|
612
746
|
*x = StatusAttribution_StatusReshare_Metadata{}
|
|
613
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
747
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[6]
|
|
614
748
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
615
749
|
ms.StoreMessageInfo(mi)
|
|
616
750
|
}
|
|
@@ -622,7 +756,7 @@ func (x *StatusAttribution_StatusReshare_Metadata) String() string {
|
|
|
622
756
|
func (*StatusAttribution_StatusReshare_Metadata) ProtoMessage() {}
|
|
623
757
|
|
|
624
758
|
func (x *StatusAttribution_StatusReshare_Metadata) ProtoReflect() protoreflect.Message {
|
|
625
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
759
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[6]
|
|
626
760
|
if x != nil {
|
|
627
761
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
628
762
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -635,7 +769,7 @@ func (x *StatusAttribution_StatusReshare_Metadata) ProtoReflect() protoreflect.M
|
|
|
635
769
|
|
|
636
770
|
// Deprecated: Use StatusAttribution_StatusReshare_Metadata.ProtoReflect.Descriptor instead.
|
|
637
771
|
func (*StatusAttribution_StatusReshare_Metadata) Descriptor() ([]byte, []int) {
|
|
638
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
772
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 2, 0}
|
|
639
773
|
}
|
|
640
774
|
|
|
641
775
|
func (x *StatusAttribution_StatusReshare_Metadata) GetDuration() int32 {
|
|
@@ -670,19 +804,27 @@ var File_waStatusAttributions_WAStatusAttributions_proto protoreflect.FileDescri
|
|
|
670
804
|
|
|
671
805
|
const file_waStatusAttributions_WAStatusAttributions_proto_rawDesc = "" +
|
|
672
806
|
"\n" +
|
|
673
|
-
"/waStatusAttributions/WAStatusAttributions.proto\x12\x14WAStatusAttributions\"\
|
|
807
|
+
"/waStatusAttributions/WAStatusAttributions.proto\x12\x14WAStatusAttributions\"\x8e\x0f\n" +
|
|
674
808
|
"\x11StatusAttribution\x12]\n" +
|
|
675
809
|
"\rstatusReshare\x18\x03 \x01(\v25.WAStatusAttributions.StatusAttribution.StatusReshareH\x00R\rstatusReshare\x12]\n" +
|
|
676
810
|
"\rexternalShare\x18\x04 \x01(\v25.WAStatusAttributions.StatusAttribution.ExternalShareH\x00R\rexternalShare\x12E\n" +
|
|
677
811
|
"\x05music\x18\x05 \x01(\v2-.WAStatusAttributions.StatusAttribution.MusicH\x00R\x05music\x12W\n" +
|
|
678
|
-
"\vgroupStatus\x18\x06 \x01(\v23.WAStatusAttributions.StatusAttribution.GroupStatusH\x00R\vgroupStatus\x12
|
|
812
|
+
"\vgroupStatus\x18\x06 \x01(\v23.WAStatusAttributions.StatusAttribution.GroupStatusH\x00R\vgroupStatus\x12]\n" +
|
|
813
|
+
"\rrlAttribution\x18\a \x01(\v25.WAStatusAttributions.StatusAttribution.RLAttributionH\x00R\rrlAttribution\x12@\n" +
|
|
679
814
|
"\x04type\x18\x01 \x01(\x0e2,.WAStatusAttributions.StatusAttribution.TypeR\x04type\x12\x1c\n" +
|
|
680
|
-
"\tactionURL\x18\x02 \x01(\tR\tactionURL\x1a\
|
|
815
|
+
"\tactionURL\x18\x02 \x01(\tR\tactionURL\x1a\xc6\x01\n" +
|
|
816
|
+
"\rRLAttribution\x12T\n" +
|
|
817
|
+
"\x06source\x18\x01 \x01(\x0e2<.WAStatusAttributions.StatusAttribution.RLAttribution.SourceR\x06source\"_\n" +
|
|
818
|
+
"\x06Source\x12\v\n" +
|
|
819
|
+
"\aUNKNOWN\x10\x00\x12\x18\n" +
|
|
820
|
+
"\x14RAY_BAN_META_GLASSES\x10\x01\x12\x17\n" +
|
|
821
|
+
"\x13OAKLEY_META_GLASSES\x10\x02\x12\x15\n" +
|
|
822
|
+
"\x11HYPERNOVA_GLASSES\x10\x03\x1a\xc6\x02\n" +
|
|
681
823
|
"\rExternalShare\x12\x1c\n" +
|
|
682
824
|
"\tactionURL\x18\x01 \x01(\tR\tactionURL\x12T\n" +
|
|
683
825
|
"\x06source\x18\x02 \x01(\x0e2<.WAStatusAttributions.StatusAttribution.ExternalShare.SourceR\x06source\x12\x1a\n" +
|
|
684
826
|
"\bduration\x18\x03 \x01(\x05R\bduration\x12,\n" +
|
|
685
|
-
"\x11actionFallbackURL\x18\x04 \x01(\tR\x11actionFallbackURL\"
|
|
827
|
+
"\x11actionFallbackURL\x18\x04 \x01(\tR\x11actionFallbackURL\"w\n" +
|
|
686
828
|
"\x06Source\x12\v\n" +
|
|
687
829
|
"\aUNKNOWN\x10\x00\x12\r\n" +
|
|
688
830
|
"\tINSTAGRAM\x10\x01\x12\f\n" +
|
|
@@ -690,7 +832,8 @@ const file_waStatusAttributions_WAStatusAttributions_proto_rawDesc = "" +
|
|
|
690
832
|
"\tMESSENGER\x10\x03\x12\v\n" +
|
|
691
833
|
"\aSPOTIFY\x10\x04\x12\v\n" +
|
|
692
834
|
"\aYOUTUBE\x10\x05\x12\r\n" +
|
|
693
|
-
"\tPINTEREST\x10\x06\
|
|
835
|
+
"\tPINTEREST\x10\x06\x12\v\n" +
|
|
836
|
+
"\aTHREADS\x10\a\x1a\xbf\x03\n" +
|
|
694
837
|
"\rStatusReshare\x12T\n" +
|
|
695
838
|
"\x06source\x18\x01 \x01(\x0e2<.WAStatusAttributions.StatusAttribution.StatusReshare.SourceR\x06source\x12Z\n" +
|
|
696
839
|
"\bmetadata\x18\x02 \x01(\v2>.WAStatusAttributions.StatusAttribution.StatusReshare.MetadataR\bmetadata\x1a\xa4\x01\n" +
|
|
@@ -718,13 +861,17 @@ const file_waStatusAttributions_WAStatusAttributions_proto_rawDesc = "" +
|
|
|
718
861
|
"\x11artistAttribution\x18\x05 \x01(\tR\x11artistAttribution\x12\x1e\n" +
|
|
719
862
|
"\n" +
|
|
720
863
|
"isExplicit\x18\x06 \x01(\bR\n" +
|
|
721
|
-
"isExplicit\"
|
|
864
|
+
"isExplicit\"\x89\x01\n" +
|
|
722
865
|
"\x04Type\x12\v\n" +
|
|
723
|
-
"\
|
|
724
|
-
"\
|
|
725
|
-
"\
|
|
726
|
-
"\
|
|
727
|
-
"\
|
|
866
|
+
"\aUNKNOWN\x10\x00\x12\v\n" +
|
|
867
|
+
"\aRESHARE\x10\x01\x12\x12\n" +
|
|
868
|
+
"\x0eEXTERNAL_SHARE\x10\x02\x12\t\n" +
|
|
869
|
+
"\x05MUSIC\x10\x03\x12\x12\n" +
|
|
870
|
+
"\x0eSTATUS_MENTION\x10\x04\x12\x10\n" +
|
|
871
|
+
"\fGROUP_STATUS\x10\x05\x12\x12\n" +
|
|
872
|
+
"\x0eRL_ATTRIBUTION\x10\x06\x12\x0e\n" +
|
|
873
|
+
"\n" +
|
|
874
|
+
"AI_CREATED\x10\aB\x11\n" +
|
|
728
875
|
"\x0fattributionDataB0Z.go.mau.fi/whatsmeow/proto/waStatusAttributions"
|
|
729
876
|
|
|
730
877
|
var (
|
|
@@ -739,33 +886,37 @@ func file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP() []byte {
|
|
|
739
886
|
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescData
|
|
740
887
|
}
|
|
741
888
|
|
|
742
|
-
var file_waStatusAttributions_WAStatusAttributions_proto_enumTypes = make([]protoimpl.EnumInfo,
|
|
743
|
-
var file_waStatusAttributions_WAStatusAttributions_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
889
|
+
var file_waStatusAttributions_WAStatusAttributions_proto_enumTypes = make([]protoimpl.EnumInfo, 4)
|
|
890
|
+
var file_waStatusAttributions_WAStatusAttributions_proto_msgTypes = make([]protoimpl.MessageInfo, 7)
|
|
744
891
|
var file_waStatusAttributions_WAStatusAttributions_proto_goTypes = []any{
|
|
745
892
|
(StatusAttribution_Type)(0), // 0: WAStatusAttributions.StatusAttribution.Type
|
|
746
|
-
(
|
|
747
|
-
(
|
|
748
|
-
(
|
|
749
|
-
(*
|
|
750
|
-
(*
|
|
751
|
-
(*
|
|
752
|
-
(*
|
|
753
|
-
(*
|
|
893
|
+
(StatusAttribution_RLAttribution_Source)(0), // 1: WAStatusAttributions.StatusAttribution.RLAttribution.Source
|
|
894
|
+
(StatusAttribution_ExternalShare_Source)(0), // 2: WAStatusAttributions.StatusAttribution.ExternalShare.Source
|
|
895
|
+
(StatusAttribution_StatusReshare_Source)(0), // 3: WAStatusAttributions.StatusAttribution.StatusReshare.Source
|
|
896
|
+
(*StatusAttribution)(nil), // 4: WAStatusAttributions.StatusAttribution
|
|
897
|
+
(*StatusAttribution_RLAttribution)(nil), // 5: WAStatusAttributions.StatusAttribution.RLAttribution
|
|
898
|
+
(*StatusAttribution_ExternalShare)(nil), // 6: WAStatusAttributions.StatusAttribution.ExternalShare
|
|
899
|
+
(*StatusAttribution_StatusReshare)(nil), // 7: WAStatusAttributions.StatusAttribution.StatusReshare
|
|
900
|
+
(*StatusAttribution_GroupStatus)(nil), // 8: WAStatusAttributions.StatusAttribution.GroupStatus
|
|
901
|
+
(*StatusAttribution_Music)(nil), // 9: WAStatusAttributions.StatusAttribution.Music
|
|
902
|
+
(*StatusAttribution_StatusReshare_Metadata)(nil), // 10: WAStatusAttributions.StatusAttribution.StatusReshare.Metadata
|
|
754
903
|
}
|
|
755
904
|
var file_waStatusAttributions_WAStatusAttributions_proto_depIdxs = []int32{
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
905
|
+
7, // 0: WAStatusAttributions.StatusAttribution.statusReshare:type_name -> WAStatusAttributions.StatusAttribution.StatusReshare
|
|
906
|
+
6, // 1: WAStatusAttributions.StatusAttribution.externalShare:type_name -> WAStatusAttributions.StatusAttribution.ExternalShare
|
|
907
|
+
9, // 2: WAStatusAttributions.StatusAttribution.music:type_name -> WAStatusAttributions.StatusAttribution.Music
|
|
908
|
+
8, // 3: WAStatusAttributions.StatusAttribution.groupStatus:type_name -> WAStatusAttributions.StatusAttribution.GroupStatus
|
|
909
|
+
5, // 4: WAStatusAttributions.StatusAttribution.rlAttribution:type_name -> WAStatusAttributions.StatusAttribution.RLAttribution
|
|
910
|
+
0, // 5: WAStatusAttributions.StatusAttribution.type:type_name -> WAStatusAttributions.StatusAttribution.Type
|
|
911
|
+
1, // 6: WAStatusAttributions.StatusAttribution.RLAttribution.source:type_name -> WAStatusAttributions.StatusAttribution.RLAttribution.Source
|
|
912
|
+
2, // 7: WAStatusAttributions.StatusAttribution.ExternalShare.source:type_name -> WAStatusAttributions.StatusAttribution.ExternalShare.Source
|
|
913
|
+
3, // 8: WAStatusAttributions.StatusAttribution.StatusReshare.source:type_name -> WAStatusAttributions.StatusAttribution.StatusReshare.Source
|
|
914
|
+
10, // 9: WAStatusAttributions.StatusAttribution.StatusReshare.metadata:type_name -> WAStatusAttributions.StatusAttribution.StatusReshare.Metadata
|
|
915
|
+
10, // [10:10] is the sub-list for method output_type
|
|
916
|
+
10, // [10:10] is the sub-list for method input_type
|
|
917
|
+
10, // [10:10] is the sub-list for extension type_name
|
|
918
|
+
10, // [10:10] is the sub-list for extension extendee
|
|
919
|
+
0, // [0:10] is the sub-list for field type_name
|
|
769
920
|
}
|
|
770
921
|
|
|
771
922
|
func init() { file_waStatusAttributions_WAStatusAttributions_proto_init() }
|
|
@@ -778,14 +929,15 @@ func file_waStatusAttributions_WAStatusAttributions_proto_init() {
|
|
|
778
929
|
(*StatusAttribution_ExternalShare_)(nil),
|
|
779
930
|
(*StatusAttribution_Music_)(nil),
|
|
780
931
|
(*StatusAttribution_GroupStatus_)(nil),
|
|
932
|
+
(*StatusAttribution_RlAttribution)(nil),
|
|
781
933
|
}
|
|
782
934
|
type x struct{}
|
|
783
935
|
out := protoimpl.TypeBuilder{
|
|
784
936
|
File: protoimpl.DescBuilder{
|
|
785
937
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
786
938
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_waStatusAttributions_WAStatusAttributions_proto_rawDesc), len(file_waStatusAttributions_WAStatusAttributions_proto_rawDesc)),
|
|
787
|
-
NumEnums:
|
|
788
|
-
NumMessages:
|
|
939
|
+
NumEnums: 4,
|
|
940
|
+
NumMessages: 7,
|
|
789
941
|
NumExtensions: 0,
|
|
790
942
|
NumServices: 0,
|
|
791
943
|
},
|
slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto
CHANGED
|
@@ -4,11 +4,25 @@ option go_package = "go.mau.fi/whatsmeow/proto/waStatusAttributions";
|
|
|
4
4
|
|
|
5
5
|
message StatusAttribution {
|
|
6
6
|
enum Type {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
UNKNOWN = 0;
|
|
8
|
+
RESHARE = 1;
|
|
9
|
+
EXTERNAL_SHARE = 2;
|
|
10
|
+
MUSIC = 3;
|
|
11
|
+
STATUS_MENTION = 4;
|
|
12
|
+
GROUP_STATUS = 5;
|
|
13
|
+
RL_ATTRIBUTION = 6;
|
|
14
|
+
AI_CREATED = 7;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
message RLAttribution {
|
|
18
|
+
enum Source {
|
|
19
|
+
UNKNOWN = 0;
|
|
20
|
+
RAY_BAN_META_GLASSES = 1;
|
|
21
|
+
OAKLEY_META_GLASSES = 2;
|
|
22
|
+
HYPERNOVA_GLASSES = 3;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
optional Source source = 1;
|
|
12
26
|
}
|
|
13
27
|
|
|
14
28
|
message ExternalShare {
|
|
@@ -20,6 +34,7 @@ message StatusAttribution {
|
|
|
20
34
|
SPOTIFY = 4;
|
|
21
35
|
YOUTUBE = 5;
|
|
22
36
|
PINTEREST = 6;
|
|
37
|
+
THREADS = 7;
|
|
23
38
|
}
|
|
24
39
|
|
|
25
40
|
optional string actionURL = 1;
|
|
@@ -65,6 +80,7 @@ message StatusAttribution {
|
|
|
65
80
|
ExternalShare externalShare = 4;
|
|
66
81
|
Music music = 5;
|
|
67
82
|
GroupStatus groupStatus = 6;
|
|
83
|
+
RLAttribution rlAttribution = 7;
|
|
68
84
|
}
|
|
69
85
|
|
|
70
86
|
optional Type type = 1;
|