slidge-whatsapp 0.3.0b0__cp312-cp312-manylinux_2_36_aarch64.whl → 0.3.4__cp312-cp312-manylinux_2_36_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of slidge-whatsapp might be problematic. Click here for more details.
- slidge_whatsapp/contact.py +2 -0
- slidge_whatsapp/event.go +72 -22
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.h +175 -175
- slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +139 -139
- slidge_whatsapp/generated/go.py +1 -1
- slidge_whatsapp/generated/whatsapp.c +1513 -1513
- slidge_whatsapp/generated/whatsapp.go +1227 -1227
- slidge_whatsapp/generated/whatsapp.py +1382 -1382
- slidge_whatsapp/generated/whatsapp_go.h +175 -175
- slidge_whatsapp/go.mod +11 -11
- slidge_whatsapp/go.sum +26 -26
- slidge_whatsapp/session.go +4 -4
- slidge_whatsapp/vendor/github.com/ebitengine/purego/README.md +21 -5
- slidge_whatsapp/vendor/github.com/ebitengine/purego/abi_loong64.h +60 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/cgo.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlerror.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_netbsd.go +15 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_nocgo_netbsd.go +9 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_stubs.s +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/func.go +113 -60
- slidge_whatsapp/vendor/github.com/ebitengine/purego/gen.go +6 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/go_runtime.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/dlfcn_cgo_unix.go +2 -2
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/syscall_cgo_unix.go +2 -2
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/abi_loong64.h +60 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/asm_loong64.s +40 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/callbacks.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/doc.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_libinit.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_linux_loong64.go +92 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_netbsd.go +106 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_setenv.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_util.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/iscgo.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_darwin.go +4 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_freebsd.go +4 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_linux.go +4 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_netbsd.go +26 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/netbsd.go +23 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/setenv.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols.go +11 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_darwin.go +1 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_freebsd.go +1 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_linux.go +1 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_netbsd.go +30 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_loong64.s +71 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_stubs.s +5 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/nocgo.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_amd64.go +8 -4
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_arm64.go +16 -6
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_loong64.go +190 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_other.go +6 -2
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_amd64.s +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_arm64.s +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_loong64.s +96 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_unix_arm64.s +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_unix_loong64.s +75 -0
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall.go +6 -3
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_cgo_linux.go +3 -3
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_sysv.go +13 -10
- slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_windows.go +1 -1
- slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_amd64.s +2002 -2002
- slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_arm64.s +4002 -4002
- slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_loong64.s +4014 -0
- slidge_whatsapp/vendor/go.mau.fi/libsignal/session/SessionCipher.go +7 -2
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/log.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/module.go +119 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgradetable.go +3 -34
- slidge_whatsapp/vendor/go.mau.fi/util/exbytes/string.go +20 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exbytes/writer.go +78 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exslices/cast.go +42 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exslices/chunk.go +28 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exslices/deduplicate.go +67 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exslices/diff.go +63 -0
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +15 -1
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncmap.go +48 -7
- slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncset.go +13 -0
- slidge_whatsapp/vendor/go.mau.fi/util/jsontime/helpers.go +16 -5
- slidge_whatsapp/vendor/go.mau.fi/util/jsontime/integer.go +27 -12
- slidge_whatsapp/vendor/go.mau.fi/util/random/string.go +47 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +60 -15
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +20 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +2 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +6 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +63 -42
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +31 -15
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +77 -26
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +23 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +5 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +22 -23
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +21 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAICommon/WAAICommon.pb.go +7747 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/{waBotMetadata/WABotMetadata.proto → waAICommon/WAAICommon.proto} +269 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +128 -14
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +10 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +8953 -10087
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +216 -330
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +11 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +226 -83
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +14 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +709 -449
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +24 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +78 -24
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +6 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +528 -267
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +24 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +47 -14
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/request.go +4 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +6 -13
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +130 -62
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +33 -32
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +16 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sessioncache.go +125 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/signal.go +8 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/lidmap.go +82 -4
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +135 -55
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +8 -7
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/11-redacted-phone-contacts.sql +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +24 -2
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +6 -5
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +24 -9
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +7 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +43 -3
- slidge_whatsapp/vendor/golang.org/x/crypto/curve25519/curve25519.go +7 -4
- slidge_whatsapp/vendor/golang.org/x/net/http2/config.go +11 -6
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_go125.go +15 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/config_go126.go +15 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +24 -1
- slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +0 -1
- slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +35 -26
- slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +4 -2
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched.go +2 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/{writesched_priority.go → writesched_priority_rfc7540.go} +52 -52
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_priority_rfc9128.go +209 -0
- slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_roundrobin.go +1 -1
- slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/request.go +2 -2
- slidge_whatsapp/vendor/golang.org/x/net/internal/socks/socks.go +1 -1
- slidge_whatsapp/vendor/golang.org/x/sys/unix/affinity_linux.go +9 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/fdset.go +1 -3
- slidge_whatsapp/vendor/golang.org/x/sys/unix/ifreq_linux.go +1 -3
- slidge_whatsapp/vendor/golang.org/x/sys/unix/mkall.sh +1 -0
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +1 -3
- slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd.go +17 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +2 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +16 -0
- slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +18 -0
- slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/core.go +2 -9
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc.go +35 -17
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go +14 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go +20 -0
- slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +1 -1
- slidge_whatsapp/vendor/modules.txt +15 -13
- {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.4.dist-info}/METADATA +4 -3
- {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.4.dist-info}/RECORD +166 -138
- {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.4.dist-info}/WHEEL +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.pb.go +0 -5156
- {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.4.dist-info}/entry_points.txt +0 -0
- {slidge_whatsapp-0.3.0b0.dist-info → slidge_whatsapp-0.3.4.dist-info/licenses}/LICENSE +0 -0
slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go
CHANGED
|
@@ -33,6 +33,7 @@ const (
|
|
|
33
33
|
StatusAttribution_GROUP_STATUS StatusAttribution_Type = 5
|
|
34
34
|
StatusAttribution_RL_ATTRIBUTION StatusAttribution_Type = 6
|
|
35
35
|
StatusAttribution_AI_CREATED StatusAttribution_Type = 7
|
|
36
|
+
StatusAttribution_LAYOUTS StatusAttribution_Type = 8
|
|
36
37
|
)
|
|
37
38
|
|
|
38
39
|
// Enum value maps for StatusAttribution_Type.
|
|
@@ -46,6 +47,7 @@ var (
|
|
|
46
47
|
5: "GROUP_STATUS",
|
|
47
48
|
6: "RL_ATTRIBUTION",
|
|
48
49
|
7: "AI_CREATED",
|
|
50
|
+
8: "LAYOUTS",
|
|
49
51
|
}
|
|
50
52
|
StatusAttribution_Type_value = map[string]int32{
|
|
51
53
|
"UNKNOWN": 0,
|
|
@@ -56,6 +58,7 @@ var (
|
|
|
56
58
|
"GROUP_STATUS": 5,
|
|
57
59
|
"RL_ATTRIBUTION": 6,
|
|
58
60
|
"AI_CREATED": 7,
|
|
61
|
+
"LAYOUTS": 8,
|
|
59
62
|
}
|
|
60
63
|
)
|
|
61
64
|
|
|
@@ -96,6 +99,62 @@ func (StatusAttribution_Type) EnumDescriptor() ([]byte, []int) {
|
|
|
96
99
|
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 0}
|
|
97
100
|
}
|
|
98
101
|
|
|
102
|
+
type StatusAttribution_AiCreatedAttribution_Source int32
|
|
103
|
+
|
|
104
|
+
const (
|
|
105
|
+
StatusAttribution_AiCreatedAttribution_UNKNOWN StatusAttribution_AiCreatedAttribution_Source = 0
|
|
106
|
+
StatusAttribution_AiCreatedAttribution_STATUS_MIMICRY StatusAttribution_AiCreatedAttribution_Source = 1
|
|
107
|
+
)
|
|
108
|
+
|
|
109
|
+
// Enum value maps for StatusAttribution_AiCreatedAttribution_Source.
|
|
110
|
+
var (
|
|
111
|
+
StatusAttribution_AiCreatedAttribution_Source_name = map[int32]string{
|
|
112
|
+
0: "UNKNOWN",
|
|
113
|
+
1: "STATUS_MIMICRY",
|
|
114
|
+
}
|
|
115
|
+
StatusAttribution_AiCreatedAttribution_Source_value = map[string]int32{
|
|
116
|
+
"UNKNOWN": 0,
|
|
117
|
+
"STATUS_MIMICRY": 1,
|
|
118
|
+
}
|
|
119
|
+
)
|
|
120
|
+
|
|
121
|
+
func (x StatusAttribution_AiCreatedAttribution_Source) Enum() *StatusAttribution_AiCreatedAttribution_Source {
|
|
122
|
+
p := new(StatusAttribution_AiCreatedAttribution_Source)
|
|
123
|
+
*p = x
|
|
124
|
+
return p
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
func (x StatusAttribution_AiCreatedAttribution_Source) String() string {
|
|
128
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
func (StatusAttribution_AiCreatedAttribution_Source) Descriptor() protoreflect.EnumDescriptor {
|
|
132
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[1].Descriptor()
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
func (StatusAttribution_AiCreatedAttribution_Source) Type() protoreflect.EnumType {
|
|
136
|
+
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[1]
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
func (x StatusAttribution_AiCreatedAttribution_Source) Number() protoreflect.EnumNumber {
|
|
140
|
+
return protoreflect.EnumNumber(x)
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// Deprecated: Do not use.
|
|
144
|
+
func (x *StatusAttribution_AiCreatedAttribution_Source) UnmarshalJSON(b []byte) error {
|
|
145
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
146
|
+
if err != nil {
|
|
147
|
+
return err
|
|
148
|
+
}
|
|
149
|
+
*x = StatusAttribution_AiCreatedAttribution_Source(num)
|
|
150
|
+
return nil
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
// Deprecated: Use StatusAttribution_AiCreatedAttribution_Source.Descriptor instead.
|
|
154
|
+
func (StatusAttribution_AiCreatedAttribution_Source) EnumDescriptor() ([]byte, []int) {
|
|
155
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 0, 0}
|
|
156
|
+
}
|
|
157
|
+
|
|
99
158
|
type StatusAttribution_RLAttribution_Source int32
|
|
100
159
|
|
|
101
160
|
const (
|
|
@@ -132,11 +191,11 @@ func (x StatusAttribution_RLAttribution_Source) String() string {
|
|
|
132
191
|
}
|
|
133
192
|
|
|
134
193
|
func (StatusAttribution_RLAttribution_Source) Descriptor() protoreflect.EnumDescriptor {
|
|
135
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[
|
|
194
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[2].Descriptor()
|
|
136
195
|
}
|
|
137
196
|
|
|
138
197
|
func (StatusAttribution_RLAttribution_Source) Type() protoreflect.EnumType {
|
|
139
|
-
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[
|
|
198
|
+
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[2]
|
|
140
199
|
}
|
|
141
200
|
|
|
142
201
|
func (x StatusAttribution_RLAttribution_Source) Number() protoreflect.EnumNumber {
|
|
@@ -155,20 +214,22 @@ func (x *StatusAttribution_RLAttribution_Source) UnmarshalJSON(b []byte) error {
|
|
|
155
214
|
|
|
156
215
|
// Deprecated: Use StatusAttribution_RLAttribution_Source.Descriptor instead.
|
|
157
216
|
func (StatusAttribution_RLAttribution_Source) EnumDescriptor() ([]byte, []int) {
|
|
158
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
217
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 1, 0}
|
|
159
218
|
}
|
|
160
219
|
|
|
161
220
|
type StatusAttribution_ExternalShare_Source int32
|
|
162
221
|
|
|
163
222
|
const (
|
|
164
|
-
StatusAttribution_ExternalShare_UNKNOWN
|
|
165
|
-
StatusAttribution_ExternalShare_INSTAGRAM
|
|
166
|
-
StatusAttribution_ExternalShare_FACEBOOK
|
|
167
|
-
StatusAttribution_ExternalShare_MESSENGER
|
|
168
|
-
StatusAttribution_ExternalShare_SPOTIFY
|
|
169
|
-
StatusAttribution_ExternalShare_YOUTUBE
|
|
170
|
-
StatusAttribution_ExternalShare_PINTEREST
|
|
171
|
-
StatusAttribution_ExternalShare_THREADS
|
|
223
|
+
StatusAttribution_ExternalShare_UNKNOWN StatusAttribution_ExternalShare_Source = 0
|
|
224
|
+
StatusAttribution_ExternalShare_INSTAGRAM StatusAttribution_ExternalShare_Source = 1
|
|
225
|
+
StatusAttribution_ExternalShare_FACEBOOK StatusAttribution_ExternalShare_Source = 2
|
|
226
|
+
StatusAttribution_ExternalShare_MESSENGER StatusAttribution_ExternalShare_Source = 3
|
|
227
|
+
StatusAttribution_ExternalShare_SPOTIFY StatusAttribution_ExternalShare_Source = 4
|
|
228
|
+
StatusAttribution_ExternalShare_YOUTUBE StatusAttribution_ExternalShare_Source = 5
|
|
229
|
+
StatusAttribution_ExternalShare_PINTEREST StatusAttribution_ExternalShare_Source = 6
|
|
230
|
+
StatusAttribution_ExternalShare_THREADS StatusAttribution_ExternalShare_Source = 7
|
|
231
|
+
StatusAttribution_ExternalShare_APPLE_MUSIC StatusAttribution_ExternalShare_Source = 8
|
|
232
|
+
StatusAttribution_ExternalShare_SHARECHAT StatusAttribution_ExternalShare_Source = 9
|
|
172
233
|
)
|
|
173
234
|
|
|
174
235
|
// Enum value maps for StatusAttribution_ExternalShare_Source.
|
|
@@ -182,16 +243,20 @@ var (
|
|
|
182
243
|
5: "YOUTUBE",
|
|
183
244
|
6: "PINTEREST",
|
|
184
245
|
7: "THREADS",
|
|
246
|
+
8: "APPLE_MUSIC",
|
|
247
|
+
9: "SHARECHAT",
|
|
185
248
|
}
|
|
186
249
|
StatusAttribution_ExternalShare_Source_value = map[string]int32{
|
|
187
|
-
"UNKNOWN":
|
|
188
|
-
"INSTAGRAM":
|
|
189
|
-
"FACEBOOK":
|
|
190
|
-
"MESSENGER":
|
|
191
|
-
"SPOTIFY":
|
|
192
|
-
"YOUTUBE":
|
|
193
|
-
"PINTEREST":
|
|
194
|
-
"THREADS":
|
|
250
|
+
"UNKNOWN": 0,
|
|
251
|
+
"INSTAGRAM": 1,
|
|
252
|
+
"FACEBOOK": 2,
|
|
253
|
+
"MESSENGER": 3,
|
|
254
|
+
"SPOTIFY": 4,
|
|
255
|
+
"YOUTUBE": 5,
|
|
256
|
+
"PINTEREST": 6,
|
|
257
|
+
"THREADS": 7,
|
|
258
|
+
"APPLE_MUSIC": 8,
|
|
259
|
+
"SHARECHAT": 9,
|
|
195
260
|
}
|
|
196
261
|
)
|
|
197
262
|
|
|
@@ -206,11 +271,11 @@ func (x StatusAttribution_ExternalShare_Source) String() string {
|
|
|
206
271
|
}
|
|
207
272
|
|
|
208
273
|
func (StatusAttribution_ExternalShare_Source) Descriptor() protoreflect.EnumDescriptor {
|
|
209
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[
|
|
274
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[3].Descriptor()
|
|
210
275
|
}
|
|
211
276
|
|
|
212
277
|
func (StatusAttribution_ExternalShare_Source) Type() protoreflect.EnumType {
|
|
213
|
-
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[
|
|
278
|
+
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[3]
|
|
214
279
|
}
|
|
215
280
|
|
|
216
281
|
func (x StatusAttribution_ExternalShare_Source) Number() protoreflect.EnumNumber {
|
|
@@ -229,7 +294,7 @@ func (x *StatusAttribution_ExternalShare_Source) UnmarshalJSON(b []byte) error {
|
|
|
229
294
|
|
|
230
295
|
// Deprecated: Use StatusAttribution_ExternalShare_Source.Descriptor instead.
|
|
231
296
|
func (StatusAttribution_ExternalShare_Source) EnumDescriptor() ([]byte, []int) {
|
|
232
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
297
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 2, 0}
|
|
233
298
|
}
|
|
234
299
|
|
|
235
300
|
type StatusAttribution_StatusReshare_Source int32
|
|
@@ -239,6 +304,7 @@ const (
|
|
|
239
304
|
StatusAttribution_StatusReshare_INTERNAL_RESHARE StatusAttribution_StatusReshare_Source = 1
|
|
240
305
|
StatusAttribution_StatusReshare_MENTION_RESHARE StatusAttribution_StatusReshare_Source = 2
|
|
241
306
|
StatusAttribution_StatusReshare_CHANNEL_RESHARE StatusAttribution_StatusReshare_Source = 3
|
|
307
|
+
StatusAttribution_StatusReshare_FORWARD StatusAttribution_StatusReshare_Source = 4
|
|
242
308
|
)
|
|
243
309
|
|
|
244
310
|
// Enum value maps for StatusAttribution_StatusReshare_Source.
|
|
@@ -248,12 +314,14 @@ var (
|
|
|
248
314
|
1: "INTERNAL_RESHARE",
|
|
249
315
|
2: "MENTION_RESHARE",
|
|
250
316
|
3: "CHANNEL_RESHARE",
|
|
317
|
+
4: "FORWARD",
|
|
251
318
|
}
|
|
252
319
|
StatusAttribution_StatusReshare_Source_value = map[string]int32{
|
|
253
320
|
"UNKNOWN": 0,
|
|
254
321
|
"INTERNAL_RESHARE": 1,
|
|
255
322
|
"MENTION_RESHARE": 2,
|
|
256
323
|
"CHANNEL_RESHARE": 3,
|
|
324
|
+
"FORWARD": 4,
|
|
257
325
|
}
|
|
258
326
|
)
|
|
259
327
|
|
|
@@ -268,11 +336,11 @@ func (x StatusAttribution_StatusReshare_Source) String() string {
|
|
|
268
336
|
}
|
|
269
337
|
|
|
270
338
|
func (StatusAttribution_StatusReshare_Source) Descriptor() protoreflect.EnumDescriptor {
|
|
271
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[
|
|
339
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[4].Descriptor()
|
|
272
340
|
}
|
|
273
341
|
|
|
274
342
|
func (StatusAttribution_StatusReshare_Source) Type() protoreflect.EnumType {
|
|
275
|
-
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[
|
|
343
|
+
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[4]
|
|
276
344
|
}
|
|
277
345
|
|
|
278
346
|
func (x StatusAttribution_StatusReshare_Source) Number() protoreflect.EnumNumber {
|
|
@@ -291,7 +359,7 @@ func (x *StatusAttribution_StatusReshare_Source) UnmarshalJSON(b []byte) error {
|
|
|
291
359
|
|
|
292
360
|
// Deprecated: Use StatusAttribution_StatusReshare_Source.Descriptor instead.
|
|
293
361
|
func (StatusAttribution_StatusReshare_Source) EnumDescriptor() ([]byte, []int) {
|
|
294
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
362
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 3, 0}
|
|
295
363
|
}
|
|
296
364
|
|
|
297
365
|
type StatusAttribution struct {
|
|
@@ -303,6 +371,7 @@ type StatusAttribution struct {
|
|
|
303
371
|
// *StatusAttribution_Music_
|
|
304
372
|
// *StatusAttribution_GroupStatus_
|
|
305
373
|
// *StatusAttribution_RlAttribution
|
|
374
|
+
// *StatusAttribution_AiCreatedAttribution_
|
|
306
375
|
AttributionData isStatusAttribution_AttributionData `protobuf_oneof:"attributionData"`
|
|
307
376
|
Type *StatusAttribution_Type `protobuf:"varint,1,opt,name=type,enum=WAStatusAttributions.StatusAttribution_Type" json:"type,omitempty"`
|
|
308
377
|
ActionURL *string `protobuf:"bytes,2,opt,name=actionURL" json:"actionURL,omitempty"`
|
|
@@ -392,6 +461,15 @@ func (x *StatusAttribution) GetRlAttribution() *StatusAttribution_RLAttribution
|
|
|
392
461
|
return nil
|
|
393
462
|
}
|
|
394
463
|
|
|
464
|
+
func (x *StatusAttribution) GetAiCreatedAttribution() *StatusAttribution_AiCreatedAttribution {
|
|
465
|
+
if x != nil {
|
|
466
|
+
if x, ok := x.AttributionData.(*StatusAttribution_AiCreatedAttribution_); ok {
|
|
467
|
+
return x.AiCreatedAttribution
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
return nil
|
|
471
|
+
}
|
|
472
|
+
|
|
395
473
|
func (x *StatusAttribution) GetType() StatusAttribution_Type {
|
|
396
474
|
if x != nil && x.Type != nil {
|
|
397
475
|
return *x.Type
|
|
@@ -430,6 +508,10 @@ type StatusAttribution_RlAttribution struct {
|
|
|
430
508
|
RlAttribution *StatusAttribution_RLAttribution `protobuf:"bytes,7,opt,name=rlAttribution,oneof"`
|
|
431
509
|
}
|
|
432
510
|
|
|
511
|
+
type StatusAttribution_AiCreatedAttribution_ struct {
|
|
512
|
+
AiCreatedAttribution *StatusAttribution_AiCreatedAttribution `protobuf:"bytes,8,opt,name=aiCreatedAttribution,oneof"`
|
|
513
|
+
}
|
|
514
|
+
|
|
433
515
|
func (*StatusAttribution_StatusReshare_) isStatusAttribution_AttributionData() {}
|
|
434
516
|
|
|
435
517
|
func (*StatusAttribution_ExternalShare_) isStatusAttribution_AttributionData() {}
|
|
@@ -440,6 +522,52 @@ func (*StatusAttribution_GroupStatus_) isStatusAttribution_AttributionData() {}
|
|
|
440
522
|
|
|
441
523
|
func (*StatusAttribution_RlAttribution) isStatusAttribution_AttributionData() {}
|
|
442
524
|
|
|
525
|
+
func (*StatusAttribution_AiCreatedAttribution_) isStatusAttribution_AttributionData() {}
|
|
526
|
+
|
|
527
|
+
type StatusAttribution_AiCreatedAttribution struct {
|
|
528
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
529
|
+
Source *StatusAttribution_AiCreatedAttribution_Source `protobuf:"varint,1,opt,name=source,enum=WAStatusAttributions.StatusAttribution_AiCreatedAttribution_Source" json:"source,omitempty"`
|
|
530
|
+
unknownFields protoimpl.UnknownFields
|
|
531
|
+
sizeCache protoimpl.SizeCache
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
func (x *StatusAttribution_AiCreatedAttribution) Reset() {
|
|
535
|
+
*x = StatusAttribution_AiCreatedAttribution{}
|
|
536
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[1]
|
|
537
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
538
|
+
ms.StoreMessageInfo(mi)
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
func (x *StatusAttribution_AiCreatedAttribution) String() string {
|
|
542
|
+
return protoimpl.X.MessageStringOf(x)
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
func (*StatusAttribution_AiCreatedAttribution) ProtoMessage() {}
|
|
546
|
+
|
|
547
|
+
func (x *StatusAttribution_AiCreatedAttribution) ProtoReflect() protoreflect.Message {
|
|
548
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[1]
|
|
549
|
+
if x != nil {
|
|
550
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
551
|
+
if ms.LoadMessageInfo() == nil {
|
|
552
|
+
ms.StoreMessageInfo(mi)
|
|
553
|
+
}
|
|
554
|
+
return ms
|
|
555
|
+
}
|
|
556
|
+
return mi.MessageOf(x)
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
// Deprecated: Use StatusAttribution_AiCreatedAttribution.ProtoReflect.Descriptor instead.
|
|
560
|
+
func (*StatusAttribution_AiCreatedAttribution) Descriptor() ([]byte, []int) {
|
|
561
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 0}
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
func (x *StatusAttribution_AiCreatedAttribution) GetSource() StatusAttribution_AiCreatedAttribution_Source {
|
|
565
|
+
if x != nil && x.Source != nil {
|
|
566
|
+
return *x.Source
|
|
567
|
+
}
|
|
568
|
+
return StatusAttribution_AiCreatedAttribution_UNKNOWN
|
|
569
|
+
}
|
|
570
|
+
|
|
443
571
|
type StatusAttribution_RLAttribution struct {
|
|
444
572
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
445
573
|
Source *StatusAttribution_RLAttribution_Source `protobuf:"varint,1,opt,name=source,enum=WAStatusAttributions.StatusAttribution_RLAttribution_Source" json:"source,omitempty"`
|
|
@@ -449,7 +577,7 @@ type StatusAttribution_RLAttribution struct {
|
|
|
449
577
|
|
|
450
578
|
func (x *StatusAttribution_RLAttribution) Reset() {
|
|
451
579
|
*x = StatusAttribution_RLAttribution{}
|
|
452
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
580
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[2]
|
|
453
581
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
454
582
|
ms.StoreMessageInfo(mi)
|
|
455
583
|
}
|
|
@@ -461,7 +589,7 @@ func (x *StatusAttribution_RLAttribution) String() string {
|
|
|
461
589
|
func (*StatusAttribution_RLAttribution) ProtoMessage() {}
|
|
462
590
|
|
|
463
591
|
func (x *StatusAttribution_RLAttribution) ProtoReflect() protoreflect.Message {
|
|
464
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
592
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[2]
|
|
465
593
|
if x != nil {
|
|
466
594
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
467
595
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -474,7 +602,7 @@ func (x *StatusAttribution_RLAttribution) ProtoReflect() protoreflect.Message {
|
|
|
474
602
|
|
|
475
603
|
// Deprecated: Use StatusAttribution_RLAttribution.ProtoReflect.Descriptor instead.
|
|
476
604
|
func (*StatusAttribution_RLAttribution) Descriptor() ([]byte, []int) {
|
|
477
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
605
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 1}
|
|
478
606
|
}
|
|
479
607
|
|
|
480
608
|
func (x *StatusAttribution_RLAttribution) GetSource() StatusAttribution_RLAttribution_Source {
|
|
@@ -496,7 +624,7 @@ type StatusAttribution_ExternalShare struct {
|
|
|
496
624
|
|
|
497
625
|
func (x *StatusAttribution_ExternalShare) Reset() {
|
|
498
626
|
*x = StatusAttribution_ExternalShare{}
|
|
499
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
627
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[3]
|
|
500
628
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
501
629
|
ms.StoreMessageInfo(mi)
|
|
502
630
|
}
|
|
@@ -508,7 +636,7 @@ func (x *StatusAttribution_ExternalShare) String() string {
|
|
|
508
636
|
func (*StatusAttribution_ExternalShare) ProtoMessage() {}
|
|
509
637
|
|
|
510
638
|
func (x *StatusAttribution_ExternalShare) ProtoReflect() protoreflect.Message {
|
|
511
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
639
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[3]
|
|
512
640
|
if x != nil {
|
|
513
641
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
514
642
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -521,7 +649,7 @@ func (x *StatusAttribution_ExternalShare) ProtoReflect() protoreflect.Message {
|
|
|
521
649
|
|
|
522
650
|
// Deprecated: Use StatusAttribution_ExternalShare.ProtoReflect.Descriptor instead.
|
|
523
651
|
func (*StatusAttribution_ExternalShare) Descriptor() ([]byte, []int) {
|
|
524
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
652
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 2}
|
|
525
653
|
}
|
|
526
654
|
|
|
527
655
|
func (x *StatusAttribution_ExternalShare) GetActionURL() string {
|
|
@@ -562,7 +690,7 @@ type StatusAttribution_StatusReshare struct {
|
|
|
562
690
|
|
|
563
691
|
func (x *StatusAttribution_StatusReshare) Reset() {
|
|
564
692
|
*x = StatusAttribution_StatusReshare{}
|
|
565
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
693
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[4]
|
|
566
694
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
567
695
|
ms.StoreMessageInfo(mi)
|
|
568
696
|
}
|
|
@@ -574,7 +702,7 @@ func (x *StatusAttribution_StatusReshare) String() string {
|
|
|
574
702
|
func (*StatusAttribution_StatusReshare) ProtoMessage() {}
|
|
575
703
|
|
|
576
704
|
func (x *StatusAttribution_StatusReshare) ProtoReflect() protoreflect.Message {
|
|
577
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
705
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[4]
|
|
578
706
|
if x != nil {
|
|
579
707
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
580
708
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -587,7 +715,7 @@ func (x *StatusAttribution_StatusReshare) ProtoReflect() protoreflect.Message {
|
|
|
587
715
|
|
|
588
716
|
// Deprecated: Use StatusAttribution_StatusReshare.ProtoReflect.Descriptor instead.
|
|
589
717
|
func (*StatusAttribution_StatusReshare) Descriptor() ([]byte, []int) {
|
|
590
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
718
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 3}
|
|
591
719
|
}
|
|
592
720
|
|
|
593
721
|
func (x *StatusAttribution_StatusReshare) GetSource() StatusAttribution_StatusReshare_Source {
|
|
@@ -613,7 +741,7 @@ type StatusAttribution_GroupStatus struct {
|
|
|
613
741
|
|
|
614
742
|
func (x *StatusAttribution_GroupStatus) Reset() {
|
|
615
743
|
*x = StatusAttribution_GroupStatus{}
|
|
616
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
744
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[5]
|
|
617
745
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
618
746
|
ms.StoreMessageInfo(mi)
|
|
619
747
|
}
|
|
@@ -625,7 +753,7 @@ func (x *StatusAttribution_GroupStatus) String() string {
|
|
|
625
753
|
func (*StatusAttribution_GroupStatus) ProtoMessage() {}
|
|
626
754
|
|
|
627
755
|
func (x *StatusAttribution_GroupStatus) ProtoReflect() protoreflect.Message {
|
|
628
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
756
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[5]
|
|
629
757
|
if x != nil {
|
|
630
758
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
631
759
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -638,7 +766,7 @@ func (x *StatusAttribution_GroupStatus) ProtoReflect() protoreflect.Message {
|
|
|
638
766
|
|
|
639
767
|
// Deprecated: Use StatusAttribution_GroupStatus.ProtoReflect.Descriptor instead.
|
|
640
768
|
func (*StatusAttribution_GroupStatus) Descriptor() ([]byte, []int) {
|
|
641
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
769
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 4}
|
|
642
770
|
}
|
|
643
771
|
|
|
644
772
|
func (x *StatusAttribution_GroupStatus) GetAuthorJID() string {
|
|
@@ -662,7 +790,7 @@ type StatusAttribution_Music struct {
|
|
|
662
790
|
|
|
663
791
|
func (x *StatusAttribution_Music) Reset() {
|
|
664
792
|
*x = StatusAttribution_Music{}
|
|
665
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
793
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[6]
|
|
666
794
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
667
795
|
ms.StoreMessageInfo(mi)
|
|
668
796
|
}
|
|
@@ -674,7 +802,7 @@ func (x *StatusAttribution_Music) String() string {
|
|
|
674
802
|
func (*StatusAttribution_Music) ProtoMessage() {}
|
|
675
803
|
|
|
676
804
|
func (x *StatusAttribution_Music) ProtoReflect() protoreflect.Message {
|
|
677
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
805
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[6]
|
|
678
806
|
if x != nil {
|
|
679
807
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
680
808
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -687,7 +815,7 @@ func (x *StatusAttribution_Music) ProtoReflect() protoreflect.Message {
|
|
|
687
815
|
|
|
688
816
|
// Deprecated: Use StatusAttribution_Music.ProtoReflect.Descriptor instead.
|
|
689
817
|
func (*StatusAttribution_Music) Descriptor() ([]byte, []int) {
|
|
690
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
818
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 5}
|
|
691
819
|
}
|
|
692
820
|
|
|
693
821
|
func (x *StatusAttribution_Music) GetAuthorName() string {
|
|
@@ -744,7 +872,7 @@ type StatusAttribution_StatusReshare_Metadata struct {
|
|
|
744
872
|
|
|
745
873
|
func (x *StatusAttribution_StatusReshare_Metadata) Reset() {
|
|
746
874
|
*x = StatusAttribution_StatusReshare_Metadata{}
|
|
747
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
875
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[7]
|
|
748
876
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
749
877
|
ms.StoreMessageInfo(mi)
|
|
750
878
|
}
|
|
@@ -756,7 +884,7 @@ func (x *StatusAttribution_StatusReshare_Metadata) String() string {
|
|
|
756
884
|
func (*StatusAttribution_StatusReshare_Metadata) ProtoMessage() {}
|
|
757
885
|
|
|
758
886
|
func (x *StatusAttribution_StatusReshare_Metadata) ProtoReflect() protoreflect.Message {
|
|
759
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
887
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[7]
|
|
760
888
|
if x != nil {
|
|
761
889
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
762
890
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -769,7 +897,7 @@ func (x *StatusAttribution_StatusReshare_Metadata) ProtoReflect() protoreflect.M
|
|
|
769
897
|
|
|
770
898
|
// Deprecated: Use StatusAttribution_StatusReshare_Metadata.ProtoReflect.Descriptor instead.
|
|
771
899
|
func (*StatusAttribution_StatusReshare_Metadata) Descriptor() ([]byte, []int) {
|
|
772
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
900
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 3, 0}
|
|
773
901
|
}
|
|
774
902
|
|
|
775
903
|
func (x *StatusAttribution_StatusReshare_Metadata) GetDuration() int32 {
|
|
@@ -804,27 +932,33 @@ var File_waStatusAttributions_WAStatusAttributions_proto protoreflect.FileDescri
|
|
|
804
932
|
|
|
805
933
|
const file_waStatusAttributions_WAStatusAttributions_proto_rawDesc = "" +
|
|
806
934
|
"\n" +
|
|
807
|
-
"/waStatusAttributions/WAStatusAttributions.proto\x12\x14WAStatusAttributions\"\
|
|
935
|
+
"/waStatusAttributions/WAStatusAttributions.proto\x12\x14WAStatusAttributions\"\xde\x11\n" +
|
|
808
936
|
"\x11StatusAttribution\x12]\n" +
|
|
809
937
|
"\rstatusReshare\x18\x03 \x01(\v25.WAStatusAttributions.StatusAttribution.StatusReshareH\x00R\rstatusReshare\x12]\n" +
|
|
810
938
|
"\rexternalShare\x18\x04 \x01(\v25.WAStatusAttributions.StatusAttribution.ExternalShareH\x00R\rexternalShare\x12E\n" +
|
|
811
939
|
"\x05music\x18\x05 \x01(\v2-.WAStatusAttributions.StatusAttribution.MusicH\x00R\x05music\x12W\n" +
|
|
812
940
|
"\vgroupStatus\x18\x06 \x01(\v23.WAStatusAttributions.StatusAttribution.GroupStatusH\x00R\vgroupStatus\x12]\n" +
|
|
813
|
-
"\rrlAttribution\x18\a \x01(\v25.WAStatusAttributions.StatusAttribution.RLAttributionH\x00R\rrlAttribution\
|
|
941
|
+
"\rrlAttribution\x18\a \x01(\v25.WAStatusAttributions.StatusAttribution.RLAttributionH\x00R\rrlAttribution\x12r\n" +
|
|
942
|
+
"\x14aiCreatedAttribution\x18\b \x01(\v2<.WAStatusAttributions.StatusAttribution.AiCreatedAttributionH\x00R\x14aiCreatedAttribution\x12@\n" +
|
|
814
943
|
"\x04type\x18\x01 \x01(\x0e2,.WAStatusAttributions.StatusAttribution.TypeR\x04type\x12\x1c\n" +
|
|
815
|
-
"\tactionURL\x18\x02 \x01(\tR\tactionURL\x1a\
|
|
944
|
+
"\tactionURL\x18\x02 \x01(\tR\tactionURL\x1a\x9e\x01\n" +
|
|
945
|
+
"\x14AiCreatedAttribution\x12[\n" +
|
|
946
|
+
"\x06source\x18\x01 \x01(\x0e2C.WAStatusAttributions.StatusAttribution.AiCreatedAttribution.SourceR\x06source\")\n" +
|
|
947
|
+
"\x06Source\x12\v\n" +
|
|
948
|
+
"\aUNKNOWN\x10\x00\x12\x12\n" +
|
|
949
|
+
"\x0eSTATUS_MIMICRY\x10\x01\x1a\xc6\x01\n" +
|
|
816
950
|
"\rRLAttribution\x12T\n" +
|
|
817
951
|
"\x06source\x18\x01 \x01(\x0e2<.WAStatusAttributions.StatusAttribution.RLAttribution.SourceR\x06source\"_\n" +
|
|
818
952
|
"\x06Source\x12\v\n" +
|
|
819
953
|
"\aUNKNOWN\x10\x00\x12\x18\n" +
|
|
820
954
|
"\x14RAY_BAN_META_GLASSES\x10\x01\x12\x17\n" +
|
|
821
955
|
"\x13OAKLEY_META_GLASSES\x10\x02\x12\x15\n" +
|
|
822
|
-
"\x11HYPERNOVA_GLASSES\x10\x03\x1a\
|
|
956
|
+
"\x11HYPERNOVA_GLASSES\x10\x03\x1a\xe7\x02\n" +
|
|
823
957
|
"\rExternalShare\x12\x1c\n" +
|
|
824
958
|
"\tactionURL\x18\x01 \x01(\tR\tactionURL\x12T\n" +
|
|
825
959
|
"\x06source\x18\x02 \x01(\x0e2<.WAStatusAttributions.StatusAttribution.ExternalShare.SourceR\x06source\x12\x1a\n" +
|
|
826
960
|
"\bduration\x18\x03 \x01(\x05R\bduration\x12,\n" +
|
|
827
|
-
"\x11actionFallbackURL\x18\x04 \x01(\tR\x11actionFallbackURL\"
|
|
961
|
+
"\x11actionFallbackURL\x18\x04 \x01(\tR\x11actionFallbackURL\"\x97\x01\n" +
|
|
828
962
|
"\x06Source\x12\v\n" +
|
|
829
963
|
"\aUNKNOWN\x10\x00\x12\r\n" +
|
|
830
964
|
"\tINSTAGRAM\x10\x01\x12\f\n" +
|
|
@@ -833,7 +967,9 @@ const file_waStatusAttributions_WAStatusAttributions_proto_rawDesc = "" +
|
|
|
833
967
|
"\aSPOTIFY\x10\x04\x12\v\n" +
|
|
834
968
|
"\aYOUTUBE\x10\x05\x12\r\n" +
|
|
835
969
|
"\tPINTEREST\x10\x06\x12\v\n" +
|
|
836
|
-
"\aTHREADS\x10\a\
|
|
970
|
+
"\aTHREADS\x10\a\x12\x0f\n" +
|
|
971
|
+
"\vAPPLE_MUSIC\x10\b\x12\r\n" +
|
|
972
|
+
"\tSHARECHAT\x10\t\x1a\xcc\x03\n" +
|
|
837
973
|
"\rStatusReshare\x12T\n" +
|
|
838
974
|
"\x06source\x18\x01 \x01(\x0e2<.WAStatusAttributions.StatusAttribution.StatusReshare.SourceR\x06source\x12Z\n" +
|
|
839
975
|
"\bmetadata\x18\x02 \x01(\v2>.WAStatusAttributions.StatusAttribution.StatusReshare.MetadataR\bmetadata\x1a\xa4\x01\n" +
|
|
@@ -843,12 +979,13 @@ const file_waStatusAttributions_WAStatusAttributions_proto_rawDesc = "" +
|
|
|
843
979
|
"channelJID\x18\x02 \x01(\tR\n" +
|
|
844
980
|
"channelJID\x12*\n" +
|
|
845
981
|
"\x10channelMessageID\x18\x03 \x01(\x05R\x10channelMessageID\x120\n" +
|
|
846
|
-
"\x13hasMultipleReshares\x18\x04 \x01(\bR\x13hasMultipleReshares\"
|
|
982
|
+
"\x13hasMultipleReshares\x18\x04 \x01(\bR\x13hasMultipleReshares\"b\n" +
|
|
847
983
|
"\x06Source\x12\v\n" +
|
|
848
984
|
"\aUNKNOWN\x10\x00\x12\x14\n" +
|
|
849
985
|
"\x10INTERNAL_RESHARE\x10\x01\x12\x13\n" +
|
|
850
986
|
"\x0fMENTION_RESHARE\x10\x02\x12\x13\n" +
|
|
851
|
-
"\x0fCHANNEL_RESHARE\x10\x03\
|
|
987
|
+
"\x0fCHANNEL_RESHARE\x10\x03\x12\v\n" +
|
|
988
|
+
"\aFORWARD\x10\x04\x1a+\n" +
|
|
852
989
|
"\vGroupStatus\x12\x1c\n" +
|
|
853
990
|
"\tauthorJID\x18\x01 \x01(\tR\tauthorJID\x1a\xbb\x01\n" +
|
|
854
991
|
"\x05Music\x12\x1e\n" +
|
|
@@ -861,7 +998,7 @@ const file_waStatusAttributions_WAStatusAttributions_proto_rawDesc = "" +
|
|
|
861
998
|
"\x11artistAttribution\x18\x05 \x01(\tR\x11artistAttribution\x12\x1e\n" +
|
|
862
999
|
"\n" +
|
|
863
1000
|
"isExplicit\x18\x06 \x01(\bR\n" +
|
|
864
|
-
"isExplicit\"\
|
|
1001
|
+
"isExplicit\"\x96\x01\n" +
|
|
865
1002
|
"\x04Type\x12\v\n" +
|
|
866
1003
|
"\aUNKNOWN\x10\x00\x12\v\n" +
|
|
867
1004
|
"\aRESHARE\x10\x01\x12\x12\n" +
|
|
@@ -871,7 +1008,8 @@ const file_waStatusAttributions_WAStatusAttributions_proto_rawDesc = "" +
|
|
|
871
1008
|
"\fGROUP_STATUS\x10\x05\x12\x12\n" +
|
|
872
1009
|
"\x0eRL_ATTRIBUTION\x10\x06\x12\x0e\n" +
|
|
873
1010
|
"\n" +
|
|
874
|
-
"AI_CREATED\x10\
|
|
1011
|
+
"AI_CREATED\x10\a\x12\v\n" +
|
|
1012
|
+
"\aLAYOUTS\x10\bB\x11\n" +
|
|
875
1013
|
"\x0fattributionDataB0Z.go.mau.fi/whatsmeow/proto/waStatusAttributions"
|
|
876
1014
|
|
|
877
1015
|
var (
|
|
@@ -886,37 +1024,41 @@ func file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP() []byte {
|
|
|
886
1024
|
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescData
|
|
887
1025
|
}
|
|
888
1026
|
|
|
889
|
-
var file_waStatusAttributions_WAStatusAttributions_proto_enumTypes = make([]protoimpl.EnumInfo,
|
|
890
|
-
var file_waStatusAttributions_WAStatusAttributions_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
1027
|
+
var file_waStatusAttributions_WAStatusAttributions_proto_enumTypes = make([]protoimpl.EnumInfo, 5)
|
|
1028
|
+
var file_waStatusAttributions_WAStatusAttributions_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
|
|
891
1029
|
var file_waStatusAttributions_WAStatusAttributions_proto_goTypes = []any{
|
|
892
|
-
(StatusAttribution_Type)(0),
|
|
893
|
-
(
|
|
894
|
-
(
|
|
895
|
-
(
|
|
896
|
-
(
|
|
897
|
-
(*
|
|
898
|
-
(*
|
|
899
|
-
(*
|
|
900
|
-
(*
|
|
901
|
-
(*
|
|
902
|
-
(*
|
|
1030
|
+
(StatusAttribution_Type)(0), // 0: WAStatusAttributions.StatusAttribution.Type
|
|
1031
|
+
(StatusAttribution_AiCreatedAttribution_Source)(0), // 1: WAStatusAttributions.StatusAttribution.AiCreatedAttribution.Source
|
|
1032
|
+
(StatusAttribution_RLAttribution_Source)(0), // 2: WAStatusAttributions.StatusAttribution.RLAttribution.Source
|
|
1033
|
+
(StatusAttribution_ExternalShare_Source)(0), // 3: WAStatusAttributions.StatusAttribution.ExternalShare.Source
|
|
1034
|
+
(StatusAttribution_StatusReshare_Source)(0), // 4: WAStatusAttributions.StatusAttribution.StatusReshare.Source
|
|
1035
|
+
(*StatusAttribution)(nil), // 5: WAStatusAttributions.StatusAttribution
|
|
1036
|
+
(*StatusAttribution_AiCreatedAttribution)(nil), // 6: WAStatusAttributions.StatusAttribution.AiCreatedAttribution
|
|
1037
|
+
(*StatusAttribution_RLAttribution)(nil), // 7: WAStatusAttributions.StatusAttribution.RLAttribution
|
|
1038
|
+
(*StatusAttribution_ExternalShare)(nil), // 8: WAStatusAttributions.StatusAttribution.ExternalShare
|
|
1039
|
+
(*StatusAttribution_StatusReshare)(nil), // 9: WAStatusAttributions.StatusAttribution.StatusReshare
|
|
1040
|
+
(*StatusAttribution_GroupStatus)(nil), // 10: WAStatusAttributions.StatusAttribution.GroupStatus
|
|
1041
|
+
(*StatusAttribution_Music)(nil), // 11: WAStatusAttributions.StatusAttribution.Music
|
|
1042
|
+
(*StatusAttribution_StatusReshare_Metadata)(nil), // 12: WAStatusAttributions.StatusAttribution.StatusReshare.Metadata
|
|
903
1043
|
}
|
|
904
1044
|
var file_waStatusAttributions_WAStatusAttributions_proto_depIdxs = []int32{
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
1045
|
+
9, // 0: WAStatusAttributions.StatusAttribution.statusReshare:type_name -> WAStatusAttributions.StatusAttribution.StatusReshare
|
|
1046
|
+
8, // 1: WAStatusAttributions.StatusAttribution.externalShare:type_name -> WAStatusAttributions.StatusAttribution.ExternalShare
|
|
1047
|
+
11, // 2: WAStatusAttributions.StatusAttribution.music:type_name -> WAStatusAttributions.StatusAttribution.Music
|
|
1048
|
+
10, // 3: WAStatusAttributions.StatusAttribution.groupStatus:type_name -> WAStatusAttributions.StatusAttribution.GroupStatus
|
|
1049
|
+
7, // 4: WAStatusAttributions.StatusAttribution.rlAttribution:type_name -> WAStatusAttributions.StatusAttribution.RLAttribution
|
|
1050
|
+
6, // 5: WAStatusAttributions.StatusAttribution.aiCreatedAttribution:type_name -> WAStatusAttributions.StatusAttribution.AiCreatedAttribution
|
|
1051
|
+
0, // 6: WAStatusAttributions.StatusAttribution.type:type_name -> WAStatusAttributions.StatusAttribution.Type
|
|
1052
|
+
1, // 7: WAStatusAttributions.StatusAttribution.AiCreatedAttribution.source:type_name -> WAStatusAttributions.StatusAttribution.AiCreatedAttribution.Source
|
|
1053
|
+
2, // 8: WAStatusAttributions.StatusAttribution.RLAttribution.source:type_name -> WAStatusAttributions.StatusAttribution.RLAttribution.Source
|
|
1054
|
+
3, // 9: WAStatusAttributions.StatusAttribution.ExternalShare.source:type_name -> WAStatusAttributions.StatusAttribution.ExternalShare.Source
|
|
1055
|
+
4, // 10: WAStatusAttributions.StatusAttribution.StatusReshare.source:type_name -> WAStatusAttributions.StatusAttribution.StatusReshare.Source
|
|
1056
|
+
12, // 11: WAStatusAttributions.StatusAttribution.StatusReshare.metadata:type_name -> WAStatusAttributions.StatusAttribution.StatusReshare.Metadata
|
|
1057
|
+
12, // [12:12] is the sub-list for method output_type
|
|
1058
|
+
12, // [12:12] is the sub-list for method input_type
|
|
1059
|
+
12, // [12:12] is the sub-list for extension type_name
|
|
1060
|
+
12, // [12:12] is the sub-list for extension extendee
|
|
1061
|
+
0, // [0:12] is the sub-list for field type_name
|
|
920
1062
|
}
|
|
921
1063
|
|
|
922
1064
|
func init() { file_waStatusAttributions_WAStatusAttributions_proto_init() }
|
|
@@ -930,14 +1072,15 @@ func file_waStatusAttributions_WAStatusAttributions_proto_init() {
|
|
|
930
1072
|
(*StatusAttribution_Music_)(nil),
|
|
931
1073
|
(*StatusAttribution_GroupStatus_)(nil),
|
|
932
1074
|
(*StatusAttribution_RlAttribution)(nil),
|
|
1075
|
+
(*StatusAttribution_AiCreatedAttribution_)(nil),
|
|
933
1076
|
}
|
|
934
1077
|
type x struct{}
|
|
935
1078
|
out := protoimpl.TypeBuilder{
|
|
936
1079
|
File: protoimpl.DescBuilder{
|
|
937
1080
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
938
1081
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_waStatusAttributions_WAStatusAttributions_proto_rawDesc), len(file_waStatusAttributions_WAStatusAttributions_proto_rawDesc)),
|
|
939
|
-
NumEnums:
|
|
940
|
-
NumMessages:
|
|
1082
|
+
NumEnums: 5,
|
|
1083
|
+
NumMessages: 8,
|
|
941
1084
|
NumExtensions: 0,
|
|
942
1085
|
NumServices: 0,
|
|
943
1086
|
},
|