slidge-whatsapp 0.3.0__cp313-cp313-manylinux_2_36_aarch64.whl → 0.3.1__cp313-cp313-manylinux_2_36_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- slidge_whatsapp/event.go +33 -9
- slidge_whatsapp/generated/_whatsapp.cpython-313-aarch64-linux-gnu.h +179 -179
- slidge_whatsapp/generated/_whatsapp.cpython-313-aarch64-linux-gnu.so +0 -0
- slidge_whatsapp/generated/build.py +145 -145
- slidge_whatsapp/generated/whatsapp.c +1650 -1650
- slidge_whatsapp/generated/whatsapp.go +1032 -1032
- slidge_whatsapp/generated/whatsapp.py +1274 -1274
- slidge_whatsapp/generated/whatsapp_go.h +179 -179
- slidge_whatsapp/go.mod +5 -5
- slidge_whatsapp/go.sum +14 -14
- slidge_whatsapp/session.go +3 -3
- 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/util/dbutil/log.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/module.go +118 -0
- slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgradetable.go +0 -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/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 +34 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +1 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +3 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +1 -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 +14 -10
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +45 -18
- 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 +3 -7
- 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 +3236 -4732
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +125 -273
- 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 +220 -81
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +13 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +705 -449
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +23 -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 +516 -267
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +22 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +2 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/request.go +4 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +2 -3
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +110 -28
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +1 -1
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +12 -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 +112 -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 +20 -0
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +6 -5
- 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 +31 -2
- 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 +8 -6
- {slidge_whatsapp-0.3.0.dist-info → slidge_whatsapp-0.3.1.dist-info}/METADATA +1 -1
- {slidge_whatsapp-0.3.0.dist-info → slidge_whatsapp-0.3.1.dist-info}/RECORD +130 -106
- slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.pb.go +0 -5156
- {slidge_whatsapp-0.3.0.dist-info → slidge_whatsapp-0.3.1.dist-info}/WHEEL +0 -0
- {slidge_whatsapp-0.3.0.dist-info → slidge_whatsapp-0.3.1.dist-info}/entry_points.txt +0 -0
- {slidge_whatsapp-0.3.0.dist-info → slidge_whatsapp-0.3.1.dist-info}/licenses/LICENSE +0 -0
slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go
CHANGED
|
@@ -96,6 +96,62 @@ func (StatusAttribution_Type) EnumDescriptor() ([]byte, []int) {
|
|
|
96
96
|
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 0}
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
+
type StatusAttribution_AiCreatedAttribution_Source int32
|
|
100
|
+
|
|
101
|
+
const (
|
|
102
|
+
StatusAttribution_AiCreatedAttribution_UNKNOWN StatusAttribution_AiCreatedAttribution_Source = 0
|
|
103
|
+
StatusAttribution_AiCreatedAttribution_STATUS_MIMICRY StatusAttribution_AiCreatedAttribution_Source = 1
|
|
104
|
+
)
|
|
105
|
+
|
|
106
|
+
// Enum value maps for StatusAttribution_AiCreatedAttribution_Source.
|
|
107
|
+
var (
|
|
108
|
+
StatusAttribution_AiCreatedAttribution_Source_name = map[int32]string{
|
|
109
|
+
0: "UNKNOWN",
|
|
110
|
+
1: "STATUS_MIMICRY",
|
|
111
|
+
}
|
|
112
|
+
StatusAttribution_AiCreatedAttribution_Source_value = map[string]int32{
|
|
113
|
+
"UNKNOWN": 0,
|
|
114
|
+
"STATUS_MIMICRY": 1,
|
|
115
|
+
}
|
|
116
|
+
)
|
|
117
|
+
|
|
118
|
+
func (x StatusAttribution_AiCreatedAttribution_Source) Enum() *StatusAttribution_AiCreatedAttribution_Source {
|
|
119
|
+
p := new(StatusAttribution_AiCreatedAttribution_Source)
|
|
120
|
+
*p = x
|
|
121
|
+
return p
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
func (x StatusAttribution_AiCreatedAttribution_Source) String() string {
|
|
125
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
func (StatusAttribution_AiCreatedAttribution_Source) Descriptor() protoreflect.EnumDescriptor {
|
|
129
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[1].Descriptor()
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
func (StatusAttribution_AiCreatedAttribution_Source) Type() protoreflect.EnumType {
|
|
133
|
+
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[1]
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
func (x StatusAttribution_AiCreatedAttribution_Source) Number() protoreflect.EnumNumber {
|
|
137
|
+
return protoreflect.EnumNumber(x)
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
// Deprecated: Do not use.
|
|
141
|
+
func (x *StatusAttribution_AiCreatedAttribution_Source) UnmarshalJSON(b []byte) error {
|
|
142
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
143
|
+
if err != nil {
|
|
144
|
+
return err
|
|
145
|
+
}
|
|
146
|
+
*x = StatusAttribution_AiCreatedAttribution_Source(num)
|
|
147
|
+
return nil
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
// Deprecated: Use StatusAttribution_AiCreatedAttribution_Source.Descriptor instead.
|
|
151
|
+
func (StatusAttribution_AiCreatedAttribution_Source) EnumDescriptor() ([]byte, []int) {
|
|
152
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 0, 0}
|
|
153
|
+
}
|
|
154
|
+
|
|
99
155
|
type StatusAttribution_RLAttribution_Source int32
|
|
100
156
|
|
|
101
157
|
const (
|
|
@@ -132,11 +188,11 @@ func (x StatusAttribution_RLAttribution_Source) String() string {
|
|
|
132
188
|
}
|
|
133
189
|
|
|
134
190
|
func (StatusAttribution_RLAttribution_Source) Descriptor() protoreflect.EnumDescriptor {
|
|
135
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[
|
|
191
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[2].Descriptor()
|
|
136
192
|
}
|
|
137
193
|
|
|
138
194
|
func (StatusAttribution_RLAttribution_Source) Type() protoreflect.EnumType {
|
|
139
|
-
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[
|
|
195
|
+
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[2]
|
|
140
196
|
}
|
|
141
197
|
|
|
142
198
|
func (x StatusAttribution_RLAttribution_Source) Number() protoreflect.EnumNumber {
|
|
@@ -155,20 +211,22 @@ func (x *StatusAttribution_RLAttribution_Source) UnmarshalJSON(b []byte) error {
|
|
|
155
211
|
|
|
156
212
|
// Deprecated: Use StatusAttribution_RLAttribution_Source.Descriptor instead.
|
|
157
213
|
func (StatusAttribution_RLAttribution_Source) EnumDescriptor() ([]byte, []int) {
|
|
158
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
214
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 1, 0}
|
|
159
215
|
}
|
|
160
216
|
|
|
161
217
|
type StatusAttribution_ExternalShare_Source int32
|
|
162
218
|
|
|
163
219
|
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
|
|
220
|
+
StatusAttribution_ExternalShare_UNKNOWN StatusAttribution_ExternalShare_Source = 0
|
|
221
|
+
StatusAttribution_ExternalShare_INSTAGRAM StatusAttribution_ExternalShare_Source = 1
|
|
222
|
+
StatusAttribution_ExternalShare_FACEBOOK StatusAttribution_ExternalShare_Source = 2
|
|
223
|
+
StatusAttribution_ExternalShare_MESSENGER StatusAttribution_ExternalShare_Source = 3
|
|
224
|
+
StatusAttribution_ExternalShare_SPOTIFY StatusAttribution_ExternalShare_Source = 4
|
|
225
|
+
StatusAttribution_ExternalShare_YOUTUBE StatusAttribution_ExternalShare_Source = 5
|
|
226
|
+
StatusAttribution_ExternalShare_PINTEREST StatusAttribution_ExternalShare_Source = 6
|
|
227
|
+
StatusAttribution_ExternalShare_THREADS StatusAttribution_ExternalShare_Source = 7
|
|
228
|
+
StatusAttribution_ExternalShare_APPLE_MUSIC StatusAttribution_ExternalShare_Source = 8
|
|
229
|
+
StatusAttribution_ExternalShare_SHARECHAT StatusAttribution_ExternalShare_Source = 9
|
|
172
230
|
)
|
|
173
231
|
|
|
174
232
|
// Enum value maps for StatusAttribution_ExternalShare_Source.
|
|
@@ -182,16 +240,20 @@ var (
|
|
|
182
240
|
5: "YOUTUBE",
|
|
183
241
|
6: "PINTEREST",
|
|
184
242
|
7: "THREADS",
|
|
243
|
+
8: "APPLE_MUSIC",
|
|
244
|
+
9: "SHARECHAT",
|
|
185
245
|
}
|
|
186
246
|
StatusAttribution_ExternalShare_Source_value = map[string]int32{
|
|
187
|
-
"UNKNOWN":
|
|
188
|
-
"INSTAGRAM":
|
|
189
|
-
"FACEBOOK":
|
|
190
|
-
"MESSENGER":
|
|
191
|
-
"SPOTIFY":
|
|
192
|
-
"YOUTUBE":
|
|
193
|
-
"PINTEREST":
|
|
194
|
-
"THREADS":
|
|
247
|
+
"UNKNOWN": 0,
|
|
248
|
+
"INSTAGRAM": 1,
|
|
249
|
+
"FACEBOOK": 2,
|
|
250
|
+
"MESSENGER": 3,
|
|
251
|
+
"SPOTIFY": 4,
|
|
252
|
+
"YOUTUBE": 5,
|
|
253
|
+
"PINTEREST": 6,
|
|
254
|
+
"THREADS": 7,
|
|
255
|
+
"APPLE_MUSIC": 8,
|
|
256
|
+
"SHARECHAT": 9,
|
|
195
257
|
}
|
|
196
258
|
)
|
|
197
259
|
|
|
@@ -206,11 +268,11 @@ func (x StatusAttribution_ExternalShare_Source) String() string {
|
|
|
206
268
|
}
|
|
207
269
|
|
|
208
270
|
func (StatusAttribution_ExternalShare_Source) Descriptor() protoreflect.EnumDescriptor {
|
|
209
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[
|
|
271
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[3].Descriptor()
|
|
210
272
|
}
|
|
211
273
|
|
|
212
274
|
func (StatusAttribution_ExternalShare_Source) Type() protoreflect.EnumType {
|
|
213
|
-
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[
|
|
275
|
+
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[3]
|
|
214
276
|
}
|
|
215
277
|
|
|
216
278
|
func (x StatusAttribution_ExternalShare_Source) Number() protoreflect.EnumNumber {
|
|
@@ -229,7 +291,7 @@ func (x *StatusAttribution_ExternalShare_Source) UnmarshalJSON(b []byte) error {
|
|
|
229
291
|
|
|
230
292
|
// Deprecated: Use StatusAttribution_ExternalShare_Source.Descriptor instead.
|
|
231
293
|
func (StatusAttribution_ExternalShare_Source) EnumDescriptor() ([]byte, []int) {
|
|
232
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
294
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 2, 0}
|
|
233
295
|
}
|
|
234
296
|
|
|
235
297
|
type StatusAttribution_StatusReshare_Source int32
|
|
@@ -239,6 +301,7 @@ const (
|
|
|
239
301
|
StatusAttribution_StatusReshare_INTERNAL_RESHARE StatusAttribution_StatusReshare_Source = 1
|
|
240
302
|
StatusAttribution_StatusReshare_MENTION_RESHARE StatusAttribution_StatusReshare_Source = 2
|
|
241
303
|
StatusAttribution_StatusReshare_CHANNEL_RESHARE StatusAttribution_StatusReshare_Source = 3
|
|
304
|
+
StatusAttribution_StatusReshare_FORWARD StatusAttribution_StatusReshare_Source = 4
|
|
242
305
|
)
|
|
243
306
|
|
|
244
307
|
// Enum value maps for StatusAttribution_StatusReshare_Source.
|
|
@@ -248,12 +311,14 @@ var (
|
|
|
248
311
|
1: "INTERNAL_RESHARE",
|
|
249
312
|
2: "MENTION_RESHARE",
|
|
250
313
|
3: "CHANNEL_RESHARE",
|
|
314
|
+
4: "FORWARD",
|
|
251
315
|
}
|
|
252
316
|
StatusAttribution_StatusReshare_Source_value = map[string]int32{
|
|
253
317
|
"UNKNOWN": 0,
|
|
254
318
|
"INTERNAL_RESHARE": 1,
|
|
255
319
|
"MENTION_RESHARE": 2,
|
|
256
320
|
"CHANNEL_RESHARE": 3,
|
|
321
|
+
"FORWARD": 4,
|
|
257
322
|
}
|
|
258
323
|
)
|
|
259
324
|
|
|
@@ -268,11 +333,11 @@ func (x StatusAttribution_StatusReshare_Source) String() string {
|
|
|
268
333
|
}
|
|
269
334
|
|
|
270
335
|
func (StatusAttribution_StatusReshare_Source) Descriptor() protoreflect.EnumDescriptor {
|
|
271
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[
|
|
336
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[4].Descriptor()
|
|
272
337
|
}
|
|
273
338
|
|
|
274
339
|
func (StatusAttribution_StatusReshare_Source) Type() protoreflect.EnumType {
|
|
275
|
-
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[
|
|
340
|
+
return &file_waStatusAttributions_WAStatusAttributions_proto_enumTypes[4]
|
|
276
341
|
}
|
|
277
342
|
|
|
278
343
|
func (x StatusAttribution_StatusReshare_Source) Number() protoreflect.EnumNumber {
|
|
@@ -291,7 +356,7 @@ func (x *StatusAttribution_StatusReshare_Source) UnmarshalJSON(b []byte) error {
|
|
|
291
356
|
|
|
292
357
|
// Deprecated: Use StatusAttribution_StatusReshare_Source.Descriptor instead.
|
|
293
358
|
func (StatusAttribution_StatusReshare_Source) EnumDescriptor() ([]byte, []int) {
|
|
294
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
359
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 3, 0}
|
|
295
360
|
}
|
|
296
361
|
|
|
297
362
|
type StatusAttribution struct {
|
|
@@ -303,6 +368,7 @@ type StatusAttribution struct {
|
|
|
303
368
|
// *StatusAttribution_Music_
|
|
304
369
|
// *StatusAttribution_GroupStatus_
|
|
305
370
|
// *StatusAttribution_RlAttribution
|
|
371
|
+
// *StatusAttribution_AiCreatedAttribution_
|
|
306
372
|
AttributionData isStatusAttribution_AttributionData `protobuf_oneof:"attributionData"`
|
|
307
373
|
Type *StatusAttribution_Type `protobuf:"varint,1,opt,name=type,enum=WAStatusAttributions.StatusAttribution_Type" json:"type,omitempty"`
|
|
308
374
|
ActionURL *string `protobuf:"bytes,2,opt,name=actionURL" json:"actionURL,omitempty"`
|
|
@@ -392,6 +458,15 @@ func (x *StatusAttribution) GetRlAttribution() *StatusAttribution_RLAttribution
|
|
|
392
458
|
return nil
|
|
393
459
|
}
|
|
394
460
|
|
|
461
|
+
func (x *StatusAttribution) GetAiCreatedAttribution() *StatusAttribution_AiCreatedAttribution {
|
|
462
|
+
if x != nil {
|
|
463
|
+
if x, ok := x.AttributionData.(*StatusAttribution_AiCreatedAttribution_); ok {
|
|
464
|
+
return x.AiCreatedAttribution
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
return nil
|
|
468
|
+
}
|
|
469
|
+
|
|
395
470
|
func (x *StatusAttribution) GetType() StatusAttribution_Type {
|
|
396
471
|
if x != nil && x.Type != nil {
|
|
397
472
|
return *x.Type
|
|
@@ -430,6 +505,10 @@ type StatusAttribution_RlAttribution struct {
|
|
|
430
505
|
RlAttribution *StatusAttribution_RLAttribution `protobuf:"bytes,7,opt,name=rlAttribution,oneof"`
|
|
431
506
|
}
|
|
432
507
|
|
|
508
|
+
type StatusAttribution_AiCreatedAttribution_ struct {
|
|
509
|
+
AiCreatedAttribution *StatusAttribution_AiCreatedAttribution `protobuf:"bytes,8,opt,name=aiCreatedAttribution,oneof"`
|
|
510
|
+
}
|
|
511
|
+
|
|
433
512
|
func (*StatusAttribution_StatusReshare_) isStatusAttribution_AttributionData() {}
|
|
434
513
|
|
|
435
514
|
func (*StatusAttribution_ExternalShare_) isStatusAttribution_AttributionData() {}
|
|
@@ -440,6 +519,52 @@ func (*StatusAttribution_GroupStatus_) isStatusAttribution_AttributionData() {}
|
|
|
440
519
|
|
|
441
520
|
func (*StatusAttribution_RlAttribution) isStatusAttribution_AttributionData() {}
|
|
442
521
|
|
|
522
|
+
func (*StatusAttribution_AiCreatedAttribution_) isStatusAttribution_AttributionData() {}
|
|
523
|
+
|
|
524
|
+
type StatusAttribution_AiCreatedAttribution struct {
|
|
525
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
526
|
+
Source *StatusAttribution_AiCreatedAttribution_Source `protobuf:"varint,1,opt,name=source,enum=WAStatusAttributions.StatusAttribution_AiCreatedAttribution_Source" json:"source,omitempty"`
|
|
527
|
+
unknownFields protoimpl.UnknownFields
|
|
528
|
+
sizeCache protoimpl.SizeCache
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
func (x *StatusAttribution_AiCreatedAttribution) Reset() {
|
|
532
|
+
*x = StatusAttribution_AiCreatedAttribution{}
|
|
533
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[1]
|
|
534
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
535
|
+
ms.StoreMessageInfo(mi)
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
func (x *StatusAttribution_AiCreatedAttribution) String() string {
|
|
539
|
+
return protoimpl.X.MessageStringOf(x)
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
func (*StatusAttribution_AiCreatedAttribution) ProtoMessage() {}
|
|
543
|
+
|
|
544
|
+
func (x *StatusAttribution_AiCreatedAttribution) ProtoReflect() protoreflect.Message {
|
|
545
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[1]
|
|
546
|
+
if x != nil {
|
|
547
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
548
|
+
if ms.LoadMessageInfo() == nil {
|
|
549
|
+
ms.StoreMessageInfo(mi)
|
|
550
|
+
}
|
|
551
|
+
return ms
|
|
552
|
+
}
|
|
553
|
+
return mi.MessageOf(x)
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
// Deprecated: Use StatusAttribution_AiCreatedAttribution.ProtoReflect.Descriptor instead.
|
|
557
|
+
func (*StatusAttribution_AiCreatedAttribution) Descriptor() ([]byte, []int) {
|
|
558
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 0}
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
func (x *StatusAttribution_AiCreatedAttribution) GetSource() StatusAttribution_AiCreatedAttribution_Source {
|
|
562
|
+
if x != nil && x.Source != nil {
|
|
563
|
+
return *x.Source
|
|
564
|
+
}
|
|
565
|
+
return StatusAttribution_AiCreatedAttribution_UNKNOWN
|
|
566
|
+
}
|
|
567
|
+
|
|
443
568
|
type StatusAttribution_RLAttribution struct {
|
|
444
569
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
445
570
|
Source *StatusAttribution_RLAttribution_Source `protobuf:"varint,1,opt,name=source,enum=WAStatusAttributions.StatusAttribution_RLAttribution_Source" json:"source,omitempty"`
|
|
@@ -449,7 +574,7 @@ type StatusAttribution_RLAttribution struct {
|
|
|
449
574
|
|
|
450
575
|
func (x *StatusAttribution_RLAttribution) Reset() {
|
|
451
576
|
*x = StatusAttribution_RLAttribution{}
|
|
452
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
577
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[2]
|
|
453
578
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
454
579
|
ms.StoreMessageInfo(mi)
|
|
455
580
|
}
|
|
@@ -461,7 +586,7 @@ func (x *StatusAttribution_RLAttribution) String() string {
|
|
|
461
586
|
func (*StatusAttribution_RLAttribution) ProtoMessage() {}
|
|
462
587
|
|
|
463
588
|
func (x *StatusAttribution_RLAttribution) ProtoReflect() protoreflect.Message {
|
|
464
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
589
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[2]
|
|
465
590
|
if x != nil {
|
|
466
591
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
467
592
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -474,7 +599,7 @@ func (x *StatusAttribution_RLAttribution) ProtoReflect() protoreflect.Message {
|
|
|
474
599
|
|
|
475
600
|
// Deprecated: Use StatusAttribution_RLAttribution.ProtoReflect.Descriptor instead.
|
|
476
601
|
func (*StatusAttribution_RLAttribution) Descriptor() ([]byte, []int) {
|
|
477
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
602
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 1}
|
|
478
603
|
}
|
|
479
604
|
|
|
480
605
|
func (x *StatusAttribution_RLAttribution) GetSource() StatusAttribution_RLAttribution_Source {
|
|
@@ -496,7 +621,7 @@ type StatusAttribution_ExternalShare struct {
|
|
|
496
621
|
|
|
497
622
|
func (x *StatusAttribution_ExternalShare) Reset() {
|
|
498
623
|
*x = StatusAttribution_ExternalShare{}
|
|
499
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
624
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[3]
|
|
500
625
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
501
626
|
ms.StoreMessageInfo(mi)
|
|
502
627
|
}
|
|
@@ -508,7 +633,7 @@ func (x *StatusAttribution_ExternalShare) String() string {
|
|
|
508
633
|
func (*StatusAttribution_ExternalShare) ProtoMessage() {}
|
|
509
634
|
|
|
510
635
|
func (x *StatusAttribution_ExternalShare) ProtoReflect() protoreflect.Message {
|
|
511
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
636
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[3]
|
|
512
637
|
if x != nil {
|
|
513
638
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
514
639
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -521,7 +646,7 @@ func (x *StatusAttribution_ExternalShare) ProtoReflect() protoreflect.Message {
|
|
|
521
646
|
|
|
522
647
|
// Deprecated: Use StatusAttribution_ExternalShare.ProtoReflect.Descriptor instead.
|
|
523
648
|
func (*StatusAttribution_ExternalShare) Descriptor() ([]byte, []int) {
|
|
524
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
649
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 2}
|
|
525
650
|
}
|
|
526
651
|
|
|
527
652
|
func (x *StatusAttribution_ExternalShare) GetActionURL() string {
|
|
@@ -562,7 +687,7 @@ type StatusAttribution_StatusReshare struct {
|
|
|
562
687
|
|
|
563
688
|
func (x *StatusAttribution_StatusReshare) Reset() {
|
|
564
689
|
*x = StatusAttribution_StatusReshare{}
|
|
565
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
690
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[4]
|
|
566
691
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
567
692
|
ms.StoreMessageInfo(mi)
|
|
568
693
|
}
|
|
@@ -574,7 +699,7 @@ func (x *StatusAttribution_StatusReshare) String() string {
|
|
|
574
699
|
func (*StatusAttribution_StatusReshare) ProtoMessage() {}
|
|
575
700
|
|
|
576
701
|
func (x *StatusAttribution_StatusReshare) ProtoReflect() protoreflect.Message {
|
|
577
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
702
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[4]
|
|
578
703
|
if x != nil {
|
|
579
704
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
580
705
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -587,7 +712,7 @@ func (x *StatusAttribution_StatusReshare) ProtoReflect() protoreflect.Message {
|
|
|
587
712
|
|
|
588
713
|
// Deprecated: Use StatusAttribution_StatusReshare.ProtoReflect.Descriptor instead.
|
|
589
714
|
func (*StatusAttribution_StatusReshare) Descriptor() ([]byte, []int) {
|
|
590
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
715
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 3}
|
|
591
716
|
}
|
|
592
717
|
|
|
593
718
|
func (x *StatusAttribution_StatusReshare) GetSource() StatusAttribution_StatusReshare_Source {
|
|
@@ -613,7 +738,7 @@ type StatusAttribution_GroupStatus struct {
|
|
|
613
738
|
|
|
614
739
|
func (x *StatusAttribution_GroupStatus) Reset() {
|
|
615
740
|
*x = StatusAttribution_GroupStatus{}
|
|
616
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
741
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[5]
|
|
617
742
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
618
743
|
ms.StoreMessageInfo(mi)
|
|
619
744
|
}
|
|
@@ -625,7 +750,7 @@ func (x *StatusAttribution_GroupStatus) String() string {
|
|
|
625
750
|
func (*StatusAttribution_GroupStatus) ProtoMessage() {}
|
|
626
751
|
|
|
627
752
|
func (x *StatusAttribution_GroupStatus) ProtoReflect() protoreflect.Message {
|
|
628
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
753
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[5]
|
|
629
754
|
if x != nil {
|
|
630
755
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
631
756
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -638,7 +763,7 @@ func (x *StatusAttribution_GroupStatus) ProtoReflect() protoreflect.Message {
|
|
|
638
763
|
|
|
639
764
|
// Deprecated: Use StatusAttribution_GroupStatus.ProtoReflect.Descriptor instead.
|
|
640
765
|
func (*StatusAttribution_GroupStatus) Descriptor() ([]byte, []int) {
|
|
641
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
766
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 4}
|
|
642
767
|
}
|
|
643
768
|
|
|
644
769
|
func (x *StatusAttribution_GroupStatus) GetAuthorJID() string {
|
|
@@ -662,7 +787,7 @@ type StatusAttribution_Music struct {
|
|
|
662
787
|
|
|
663
788
|
func (x *StatusAttribution_Music) Reset() {
|
|
664
789
|
*x = StatusAttribution_Music{}
|
|
665
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
790
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[6]
|
|
666
791
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
667
792
|
ms.StoreMessageInfo(mi)
|
|
668
793
|
}
|
|
@@ -674,7 +799,7 @@ func (x *StatusAttribution_Music) String() string {
|
|
|
674
799
|
func (*StatusAttribution_Music) ProtoMessage() {}
|
|
675
800
|
|
|
676
801
|
func (x *StatusAttribution_Music) ProtoReflect() protoreflect.Message {
|
|
677
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
802
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[6]
|
|
678
803
|
if x != nil {
|
|
679
804
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
680
805
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -687,7 +812,7 @@ func (x *StatusAttribution_Music) ProtoReflect() protoreflect.Message {
|
|
|
687
812
|
|
|
688
813
|
// Deprecated: Use StatusAttribution_Music.ProtoReflect.Descriptor instead.
|
|
689
814
|
func (*StatusAttribution_Music) Descriptor() ([]byte, []int) {
|
|
690
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
815
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 5}
|
|
691
816
|
}
|
|
692
817
|
|
|
693
818
|
func (x *StatusAttribution_Music) GetAuthorName() string {
|
|
@@ -744,7 +869,7 @@ type StatusAttribution_StatusReshare_Metadata struct {
|
|
|
744
869
|
|
|
745
870
|
func (x *StatusAttribution_StatusReshare_Metadata) Reset() {
|
|
746
871
|
*x = StatusAttribution_StatusReshare_Metadata{}
|
|
747
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
872
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[7]
|
|
748
873
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
749
874
|
ms.StoreMessageInfo(mi)
|
|
750
875
|
}
|
|
@@ -756,7 +881,7 @@ func (x *StatusAttribution_StatusReshare_Metadata) String() string {
|
|
|
756
881
|
func (*StatusAttribution_StatusReshare_Metadata) ProtoMessage() {}
|
|
757
882
|
|
|
758
883
|
func (x *StatusAttribution_StatusReshare_Metadata) ProtoReflect() protoreflect.Message {
|
|
759
|
-
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[
|
|
884
|
+
mi := &file_waStatusAttributions_WAStatusAttributions_proto_msgTypes[7]
|
|
760
885
|
if x != nil {
|
|
761
886
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
762
887
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -769,7 +894,7 @@ func (x *StatusAttribution_StatusReshare_Metadata) ProtoReflect() protoreflect.M
|
|
|
769
894
|
|
|
770
895
|
// Deprecated: Use StatusAttribution_StatusReshare_Metadata.ProtoReflect.Descriptor instead.
|
|
771
896
|
func (*StatusAttribution_StatusReshare_Metadata) Descriptor() ([]byte, []int) {
|
|
772
|
-
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0,
|
|
897
|
+
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP(), []int{0, 3, 0}
|
|
773
898
|
}
|
|
774
899
|
|
|
775
900
|
func (x *StatusAttribution_StatusReshare_Metadata) GetDuration() int32 {
|
|
@@ -804,27 +929,33 @@ var File_waStatusAttributions_WAStatusAttributions_proto protoreflect.FileDescri
|
|
|
804
929
|
|
|
805
930
|
const file_waStatusAttributions_WAStatusAttributions_proto_rawDesc = "" +
|
|
806
931
|
"\n" +
|
|
807
|
-
"/waStatusAttributions/WAStatusAttributions.proto\x12\x14WAStatusAttributions\"\
|
|
932
|
+
"/waStatusAttributions/WAStatusAttributions.proto\x12\x14WAStatusAttributions\"\xd1\x11\n" +
|
|
808
933
|
"\x11StatusAttribution\x12]\n" +
|
|
809
934
|
"\rstatusReshare\x18\x03 \x01(\v25.WAStatusAttributions.StatusAttribution.StatusReshareH\x00R\rstatusReshare\x12]\n" +
|
|
810
935
|
"\rexternalShare\x18\x04 \x01(\v25.WAStatusAttributions.StatusAttribution.ExternalShareH\x00R\rexternalShare\x12E\n" +
|
|
811
936
|
"\x05music\x18\x05 \x01(\v2-.WAStatusAttributions.StatusAttribution.MusicH\x00R\x05music\x12W\n" +
|
|
812
937
|
"\vgroupStatus\x18\x06 \x01(\v23.WAStatusAttributions.StatusAttribution.GroupStatusH\x00R\vgroupStatus\x12]\n" +
|
|
813
|
-
"\rrlAttribution\x18\a \x01(\v25.WAStatusAttributions.StatusAttribution.RLAttributionH\x00R\rrlAttribution\
|
|
938
|
+
"\rrlAttribution\x18\a \x01(\v25.WAStatusAttributions.StatusAttribution.RLAttributionH\x00R\rrlAttribution\x12r\n" +
|
|
939
|
+
"\x14aiCreatedAttribution\x18\b \x01(\v2<.WAStatusAttributions.StatusAttribution.AiCreatedAttributionH\x00R\x14aiCreatedAttribution\x12@\n" +
|
|
814
940
|
"\x04type\x18\x01 \x01(\x0e2,.WAStatusAttributions.StatusAttribution.TypeR\x04type\x12\x1c\n" +
|
|
815
|
-
"\tactionURL\x18\x02 \x01(\tR\tactionURL\x1a\
|
|
941
|
+
"\tactionURL\x18\x02 \x01(\tR\tactionURL\x1a\x9e\x01\n" +
|
|
942
|
+
"\x14AiCreatedAttribution\x12[\n" +
|
|
943
|
+
"\x06source\x18\x01 \x01(\x0e2C.WAStatusAttributions.StatusAttribution.AiCreatedAttribution.SourceR\x06source\")\n" +
|
|
944
|
+
"\x06Source\x12\v\n" +
|
|
945
|
+
"\aUNKNOWN\x10\x00\x12\x12\n" +
|
|
946
|
+
"\x0eSTATUS_MIMICRY\x10\x01\x1a\xc6\x01\n" +
|
|
816
947
|
"\rRLAttribution\x12T\n" +
|
|
817
948
|
"\x06source\x18\x01 \x01(\x0e2<.WAStatusAttributions.StatusAttribution.RLAttribution.SourceR\x06source\"_\n" +
|
|
818
949
|
"\x06Source\x12\v\n" +
|
|
819
950
|
"\aUNKNOWN\x10\x00\x12\x18\n" +
|
|
820
951
|
"\x14RAY_BAN_META_GLASSES\x10\x01\x12\x17\n" +
|
|
821
952
|
"\x13OAKLEY_META_GLASSES\x10\x02\x12\x15\n" +
|
|
822
|
-
"\x11HYPERNOVA_GLASSES\x10\x03\x1a\
|
|
953
|
+
"\x11HYPERNOVA_GLASSES\x10\x03\x1a\xe7\x02\n" +
|
|
823
954
|
"\rExternalShare\x12\x1c\n" +
|
|
824
955
|
"\tactionURL\x18\x01 \x01(\tR\tactionURL\x12T\n" +
|
|
825
956
|
"\x06source\x18\x02 \x01(\x0e2<.WAStatusAttributions.StatusAttribution.ExternalShare.SourceR\x06source\x12\x1a\n" +
|
|
826
957
|
"\bduration\x18\x03 \x01(\x05R\bduration\x12,\n" +
|
|
827
|
-
"\x11actionFallbackURL\x18\x04 \x01(\tR\x11actionFallbackURL\"
|
|
958
|
+
"\x11actionFallbackURL\x18\x04 \x01(\tR\x11actionFallbackURL\"\x97\x01\n" +
|
|
828
959
|
"\x06Source\x12\v\n" +
|
|
829
960
|
"\aUNKNOWN\x10\x00\x12\r\n" +
|
|
830
961
|
"\tINSTAGRAM\x10\x01\x12\f\n" +
|
|
@@ -833,7 +964,9 @@ const file_waStatusAttributions_WAStatusAttributions_proto_rawDesc = "" +
|
|
|
833
964
|
"\aSPOTIFY\x10\x04\x12\v\n" +
|
|
834
965
|
"\aYOUTUBE\x10\x05\x12\r\n" +
|
|
835
966
|
"\tPINTEREST\x10\x06\x12\v\n" +
|
|
836
|
-
"\aTHREADS\x10\a\
|
|
967
|
+
"\aTHREADS\x10\a\x12\x0f\n" +
|
|
968
|
+
"\vAPPLE_MUSIC\x10\b\x12\r\n" +
|
|
969
|
+
"\tSHARECHAT\x10\t\x1a\xcc\x03\n" +
|
|
837
970
|
"\rStatusReshare\x12T\n" +
|
|
838
971
|
"\x06source\x18\x01 \x01(\x0e2<.WAStatusAttributions.StatusAttribution.StatusReshare.SourceR\x06source\x12Z\n" +
|
|
839
972
|
"\bmetadata\x18\x02 \x01(\v2>.WAStatusAttributions.StatusAttribution.StatusReshare.MetadataR\bmetadata\x1a\xa4\x01\n" +
|
|
@@ -843,12 +976,13 @@ const file_waStatusAttributions_WAStatusAttributions_proto_rawDesc = "" +
|
|
|
843
976
|
"channelJID\x18\x02 \x01(\tR\n" +
|
|
844
977
|
"channelJID\x12*\n" +
|
|
845
978
|
"\x10channelMessageID\x18\x03 \x01(\x05R\x10channelMessageID\x120\n" +
|
|
846
|
-
"\x13hasMultipleReshares\x18\x04 \x01(\bR\x13hasMultipleReshares\"
|
|
979
|
+
"\x13hasMultipleReshares\x18\x04 \x01(\bR\x13hasMultipleReshares\"b\n" +
|
|
847
980
|
"\x06Source\x12\v\n" +
|
|
848
981
|
"\aUNKNOWN\x10\x00\x12\x14\n" +
|
|
849
982
|
"\x10INTERNAL_RESHARE\x10\x01\x12\x13\n" +
|
|
850
983
|
"\x0fMENTION_RESHARE\x10\x02\x12\x13\n" +
|
|
851
|
-
"\x0fCHANNEL_RESHARE\x10\x03\
|
|
984
|
+
"\x0fCHANNEL_RESHARE\x10\x03\x12\v\n" +
|
|
985
|
+
"\aFORWARD\x10\x04\x1a+\n" +
|
|
852
986
|
"\vGroupStatus\x12\x1c\n" +
|
|
853
987
|
"\tauthorJID\x18\x01 \x01(\tR\tauthorJID\x1a\xbb\x01\n" +
|
|
854
988
|
"\x05Music\x12\x1e\n" +
|
|
@@ -886,37 +1020,41 @@ func file_waStatusAttributions_WAStatusAttributions_proto_rawDescGZIP() []byte {
|
|
|
886
1020
|
return file_waStatusAttributions_WAStatusAttributions_proto_rawDescData
|
|
887
1021
|
}
|
|
888
1022
|
|
|
889
|
-
var file_waStatusAttributions_WAStatusAttributions_proto_enumTypes = make([]protoimpl.EnumInfo,
|
|
890
|
-
var file_waStatusAttributions_WAStatusAttributions_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
1023
|
+
var file_waStatusAttributions_WAStatusAttributions_proto_enumTypes = make([]protoimpl.EnumInfo, 5)
|
|
1024
|
+
var file_waStatusAttributions_WAStatusAttributions_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
|
|
891
1025
|
var file_waStatusAttributions_WAStatusAttributions_proto_goTypes = []any{
|
|
892
|
-
(StatusAttribution_Type)(0),
|
|
893
|
-
(
|
|
894
|
-
(
|
|
895
|
-
(
|
|
896
|
-
(
|
|
897
|
-
(*
|
|
898
|
-
(*
|
|
899
|
-
(*
|
|
900
|
-
(*
|
|
901
|
-
(*
|
|
902
|
-
(*
|
|
1026
|
+
(StatusAttribution_Type)(0), // 0: WAStatusAttributions.StatusAttribution.Type
|
|
1027
|
+
(StatusAttribution_AiCreatedAttribution_Source)(0), // 1: WAStatusAttributions.StatusAttribution.AiCreatedAttribution.Source
|
|
1028
|
+
(StatusAttribution_RLAttribution_Source)(0), // 2: WAStatusAttributions.StatusAttribution.RLAttribution.Source
|
|
1029
|
+
(StatusAttribution_ExternalShare_Source)(0), // 3: WAStatusAttributions.StatusAttribution.ExternalShare.Source
|
|
1030
|
+
(StatusAttribution_StatusReshare_Source)(0), // 4: WAStatusAttributions.StatusAttribution.StatusReshare.Source
|
|
1031
|
+
(*StatusAttribution)(nil), // 5: WAStatusAttributions.StatusAttribution
|
|
1032
|
+
(*StatusAttribution_AiCreatedAttribution)(nil), // 6: WAStatusAttributions.StatusAttribution.AiCreatedAttribution
|
|
1033
|
+
(*StatusAttribution_RLAttribution)(nil), // 7: WAStatusAttributions.StatusAttribution.RLAttribution
|
|
1034
|
+
(*StatusAttribution_ExternalShare)(nil), // 8: WAStatusAttributions.StatusAttribution.ExternalShare
|
|
1035
|
+
(*StatusAttribution_StatusReshare)(nil), // 9: WAStatusAttributions.StatusAttribution.StatusReshare
|
|
1036
|
+
(*StatusAttribution_GroupStatus)(nil), // 10: WAStatusAttributions.StatusAttribution.GroupStatus
|
|
1037
|
+
(*StatusAttribution_Music)(nil), // 11: WAStatusAttributions.StatusAttribution.Music
|
|
1038
|
+
(*StatusAttribution_StatusReshare_Metadata)(nil), // 12: WAStatusAttributions.StatusAttribution.StatusReshare.Metadata
|
|
903
1039
|
}
|
|
904
1040
|
var file_waStatusAttributions_WAStatusAttributions_proto_depIdxs = []int32{
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
1041
|
+
9, // 0: WAStatusAttributions.StatusAttribution.statusReshare:type_name -> WAStatusAttributions.StatusAttribution.StatusReshare
|
|
1042
|
+
8, // 1: WAStatusAttributions.StatusAttribution.externalShare:type_name -> WAStatusAttributions.StatusAttribution.ExternalShare
|
|
1043
|
+
11, // 2: WAStatusAttributions.StatusAttribution.music:type_name -> WAStatusAttributions.StatusAttribution.Music
|
|
1044
|
+
10, // 3: WAStatusAttributions.StatusAttribution.groupStatus:type_name -> WAStatusAttributions.StatusAttribution.GroupStatus
|
|
1045
|
+
7, // 4: WAStatusAttributions.StatusAttribution.rlAttribution:type_name -> WAStatusAttributions.StatusAttribution.RLAttribution
|
|
1046
|
+
6, // 5: WAStatusAttributions.StatusAttribution.aiCreatedAttribution:type_name -> WAStatusAttributions.StatusAttribution.AiCreatedAttribution
|
|
1047
|
+
0, // 6: WAStatusAttributions.StatusAttribution.type:type_name -> WAStatusAttributions.StatusAttribution.Type
|
|
1048
|
+
1, // 7: WAStatusAttributions.StatusAttribution.AiCreatedAttribution.source:type_name -> WAStatusAttributions.StatusAttribution.AiCreatedAttribution.Source
|
|
1049
|
+
2, // 8: WAStatusAttributions.StatusAttribution.RLAttribution.source:type_name -> WAStatusAttributions.StatusAttribution.RLAttribution.Source
|
|
1050
|
+
3, // 9: WAStatusAttributions.StatusAttribution.ExternalShare.source:type_name -> WAStatusAttributions.StatusAttribution.ExternalShare.Source
|
|
1051
|
+
4, // 10: WAStatusAttributions.StatusAttribution.StatusReshare.source:type_name -> WAStatusAttributions.StatusAttribution.StatusReshare.Source
|
|
1052
|
+
12, // 11: WAStatusAttributions.StatusAttribution.StatusReshare.metadata:type_name -> WAStatusAttributions.StatusAttribution.StatusReshare.Metadata
|
|
1053
|
+
12, // [12:12] is the sub-list for method output_type
|
|
1054
|
+
12, // [12:12] is the sub-list for method input_type
|
|
1055
|
+
12, // [12:12] is the sub-list for extension type_name
|
|
1056
|
+
12, // [12:12] is the sub-list for extension extendee
|
|
1057
|
+
0, // [0:12] is the sub-list for field type_name
|
|
920
1058
|
}
|
|
921
1059
|
|
|
922
1060
|
func init() { file_waStatusAttributions_WAStatusAttributions_proto_init() }
|
|
@@ -930,14 +1068,15 @@ func file_waStatusAttributions_WAStatusAttributions_proto_init() {
|
|
|
930
1068
|
(*StatusAttribution_Music_)(nil),
|
|
931
1069
|
(*StatusAttribution_GroupStatus_)(nil),
|
|
932
1070
|
(*StatusAttribution_RlAttribution)(nil),
|
|
1071
|
+
(*StatusAttribution_AiCreatedAttribution_)(nil),
|
|
933
1072
|
}
|
|
934
1073
|
type x struct{}
|
|
935
1074
|
out := protoimpl.TypeBuilder{
|
|
936
1075
|
File: protoimpl.DescBuilder{
|
|
937
1076
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
938
1077
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_waStatusAttributions_WAStatusAttributions_proto_rawDesc), len(file_waStatusAttributions_WAStatusAttributions_proto_rawDesc)),
|
|
939
|
-
NumEnums:
|
|
940
|
-
NumMessages:
|
|
1078
|
+
NumEnums: 5,
|
|
1079
|
+
NumMessages: 8,
|
|
941
1080
|
NumExtensions: 0,
|
|
942
1081
|
NumServices: 0,
|
|
943
1082
|
},
|
slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto
CHANGED
|
@@ -14,6 +14,15 @@ message StatusAttribution {
|
|
|
14
14
|
AI_CREATED = 7;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
+
message AiCreatedAttribution {
|
|
18
|
+
enum Source {
|
|
19
|
+
UNKNOWN = 0;
|
|
20
|
+
STATUS_MIMICRY = 1;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
optional Source source = 1;
|
|
24
|
+
}
|
|
25
|
+
|
|
17
26
|
message RLAttribution {
|
|
18
27
|
enum Source {
|
|
19
28
|
UNKNOWN = 0;
|
|
@@ -35,6 +44,8 @@ message StatusAttribution {
|
|
|
35
44
|
YOUTUBE = 5;
|
|
36
45
|
PINTEREST = 6;
|
|
37
46
|
THREADS = 7;
|
|
47
|
+
APPLE_MUSIC = 8;
|
|
48
|
+
SHARECHAT = 9;
|
|
38
49
|
}
|
|
39
50
|
|
|
40
51
|
optional string actionURL = 1;
|
|
@@ -49,6 +60,7 @@ message StatusAttribution {
|
|
|
49
60
|
INTERNAL_RESHARE = 1;
|
|
50
61
|
MENTION_RESHARE = 2;
|
|
51
62
|
CHANNEL_RESHARE = 3;
|
|
63
|
+
FORWARD = 4;
|
|
52
64
|
}
|
|
53
65
|
|
|
54
66
|
message Metadata {
|
|
@@ -81,6 +93,7 @@ message StatusAttribution {
|
|
|
81
93
|
Music music = 5;
|
|
82
94
|
GroupStatus groupStatus = 6;
|
|
83
95
|
RLAttribution rlAttribution = 7;
|
|
96
|
+
AiCreatedAttribution aiCreatedAttribution = 8;
|
|
84
97
|
}
|
|
85
98
|
|
|
86
99
|
optional Type type = 1;
|