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
|
@@ -230,6 +230,65 @@ func (CallLogRecord_CallResult) EnumDescriptor() ([]byte, []int) {
|
|
|
230
230
|
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{0, 2}
|
|
231
231
|
}
|
|
232
232
|
|
|
233
|
+
type AvatarUpdatedAction_AvatarEventType int32
|
|
234
|
+
|
|
235
|
+
const (
|
|
236
|
+
AvatarUpdatedAction_UPDATED AvatarUpdatedAction_AvatarEventType = 0
|
|
237
|
+
AvatarUpdatedAction_CREATED AvatarUpdatedAction_AvatarEventType = 1
|
|
238
|
+
AvatarUpdatedAction_DELETED AvatarUpdatedAction_AvatarEventType = 2
|
|
239
|
+
)
|
|
240
|
+
|
|
241
|
+
// Enum value maps for AvatarUpdatedAction_AvatarEventType.
|
|
242
|
+
var (
|
|
243
|
+
AvatarUpdatedAction_AvatarEventType_name = map[int32]string{
|
|
244
|
+
0: "UPDATED",
|
|
245
|
+
1: "CREATED",
|
|
246
|
+
2: "DELETED",
|
|
247
|
+
}
|
|
248
|
+
AvatarUpdatedAction_AvatarEventType_value = map[string]int32{
|
|
249
|
+
"UPDATED": 0,
|
|
250
|
+
"CREATED": 1,
|
|
251
|
+
"DELETED": 2,
|
|
252
|
+
}
|
|
253
|
+
)
|
|
254
|
+
|
|
255
|
+
func (x AvatarUpdatedAction_AvatarEventType) Enum() *AvatarUpdatedAction_AvatarEventType {
|
|
256
|
+
p := new(AvatarUpdatedAction_AvatarEventType)
|
|
257
|
+
*p = x
|
|
258
|
+
return p
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
func (x AvatarUpdatedAction_AvatarEventType) String() string {
|
|
262
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
func (AvatarUpdatedAction_AvatarEventType) Descriptor() protoreflect.EnumDescriptor {
|
|
266
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[3].Descriptor()
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
func (AvatarUpdatedAction_AvatarEventType) Type() protoreflect.EnumType {
|
|
270
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[3]
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
func (x AvatarUpdatedAction_AvatarEventType) Number() protoreflect.EnumNumber {
|
|
274
|
+
return protoreflect.EnumNumber(x)
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
// Deprecated: Do not use.
|
|
278
|
+
func (x *AvatarUpdatedAction_AvatarEventType) UnmarshalJSON(b []byte) error {
|
|
279
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
280
|
+
if err != nil {
|
|
281
|
+
return err
|
|
282
|
+
}
|
|
283
|
+
*x = AvatarUpdatedAction_AvatarEventType(num)
|
|
284
|
+
return nil
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
// Deprecated: Use AvatarUpdatedAction_AvatarEventType.Descriptor instead.
|
|
288
|
+
func (AvatarUpdatedAction_AvatarEventType) EnumDescriptor() ([]byte, []int) {
|
|
289
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1, 0}
|
|
290
|
+
}
|
|
291
|
+
|
|
233
292
|
type MaibaAIFeaturesControlAction_MaibaAIFeatureStatus int32
|
|
234
293
|
|
|
235
294
|
const (
|
|
@@ -263,11 +322,11 @@ func (x MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) String() string {
|
|
|
263
322
|
}
|
|
264
323
|
|
|
265
324
|
func (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Descriptor() protoreflect.EnumDescriptor {
|
|
266
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
325
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[4].Descriptor()
|
|
267
326
|
}
|
|
268
327
|
|
|
269
328
|
func (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Type() protoreflect.EnumType {
|
|
270
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
329
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[4]
|
|
271
330
|
}
|
|
272
331
|
|
|
273
332
|
func (x MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) Number() protoreflect.EnumNumber {
|
|
@@ -286,7 +345,7 @@ func (x *MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) UnmarshalJSON(b []by
|
|
|
286
345
|
|
|
287
346
|
// Deprecated: Use MaibaAIFeaturesControlAction_MaibaAIFeatureStatus.Descriptor instead.
|
|
288
347
|
func (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus) EnumDescriptor() ([]byte, []int) {
|
|
289
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
348
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2, 0}
|
|
290
349
|
}
|
|
291
350
|
|
|
292
351
|
type PaymentTosAction_PaymentNotice int32
|
|
@@ -316,11 +375,11 @@ func (x PaymentTosAction_PaymentNotice) String() string {
|
|
|
316
375
|
}
|
|
317
376
|
|
|
318
377
|
func (PaymentTosAction_PaymentNotice) Descriptor() protoreflect.EnumDescriptor {
|
|
319
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
378
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[5].Descriptor()
|
|
320
379
|
}
|
|
321
380
|
|
|
322
381
|
func (PaymentTosAction_PaymentNotice) Type() protoreflect.EnumType {
|
|
323
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
382
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[5]
|
|
324
383
|
}
|
|
325
384
|
|
|
326
385
|
func (x PaymentTosAction_PaymentNotice) Number() protoreflect.EnumNumber {
|
|
@@ -339,7 +398,7 @@ func (x *PaymentTosAction_PaymentNotice) UnmarshalJSON(b []byte) error {
|
|
|
339
398
|
|
|
340
399
|
// Deprecated: Use PaymentTosAction_PaymentNotice.Descriptor instead.
|
|
341
400
|
func (PaymentTosAction_PaymentNotice) EnumDescriptor() ([]byte, []int) {
|
|
342
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
401
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3, 0}
|
|
343
402
|
}
|
|
344
403
|
|
|
345
404
|
type NotificationActivitySettingAction_NotificationActivitySetting int32
|
|
@@ -378,11 +437,11 @@ func (x NotificationActivitySettingAction_NotificationActivitySetting) String()
|
|
|
378
437
|
}
|
|
379
438
|
|
|
380
439
|
func (NotificationActivitySettingAction_NotificationActivitySetting) Descriptor() protoreflect.EnumDescriptor {
|
|
381
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
440
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[6].Descriptor()
|
|
382
441
|
}
|
|
383
442
|
|
|
384
443
|
func (NotificationActivitySettingAction_NotificationActivitySetting) Type() protoreflect.EnumType {
|
|
385
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
444
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[6]
|
|
386
445
|
}
|
|
387
446
|
|
|
388
447
|
func (x NotificationActivitySettingAction_NotificationActivitySetting) Number() protoreflect.EnumNumber {
|
|
@@ -401,7 +460,7 @@ func (x *NotificationActivitySettingAction_NotificationActivitySetting) Unmarsha
|
|
|
401
460
|
|
|
402
461
|
// Deprecated: Use NotificationActivitySettingAction_NotificationActivitySetting.Descriptor instead.
|
|
403
462
|
func (NotificationActivitySettingAction_NotificationActivitySetting) EnumDescriptor() ([]byte, []int) {
|
|
404
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
463
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4, 0}
|
|
405
464
|
}
|
|
406
465
|
|
|
407
466
|
type WaffleAccountLinkStateAction_AccountLinkState int32
|
|
@@ -431,11 +490,11 @@ func (x WaffleAccountLinkStateAction_AccountLinkState) String() string {
|
|
|
431
490
|
}
|
|
432
491
|
|
|
433
492
|
func (WaffleAccountLinkStateAction_AccountLinkState) Descriptor() protoreflect.EnumDescriptor {
|
|
434
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
493
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[7].Descriptor()
|
|
435
494
|
}
|
|
436
495
|
|
|
437
496
|
func (WaffleAccountLinkStateAction_AccountLinkState) Type() protoreflect.EnumType {
|
|
438
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
497
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[7]
|
|
439
498
|
}
|
|
440
499
|
|
|
441
500
|
func (x WaffleAccountLinkStateAction_AccountLinkState) Number() protoreflect.EnumNumber {
|
|
@@ -454,7 +513,7 @@ func (x *WaffleAccountLinkStateAction_AccountLinkState) UnmarshalJSON(b []byte)
|
|
|
454
513
|
|
|
455
514
|
// Deprecated: Use WaffleAccountLinkStateAction_AccountLinkState.Descriptor instead.
|
|
456
515
|
func (WaffleAccountLinkStateAction_AccountLinkState) EnumDescriptor() ([]byte, []int) {
|
|
457
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
516
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5, 0}
|
|
458
517
|
}
|
|
459
518
|
|
|
460
519
|
type MerchantPaymentPartnerAction_Status int32
|
|
@@ -487,11 +546,11 @@ func (x MerchantPaymentPartnerAction_Status) String() string {
|
|
|
487
546
|
}
|
|
488
547
|
|
|
489
548
|
func (MerchantPaymentPartnerAction_Status) Descriptor() protoreflect.EnumDescriptor {
|
|
490
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
549
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[8].Descriptor()
|
|
491
550
|
}
|
|
492
551
|
|
|
493
552
|
func (MerchantPaymentPartnerAction_Status) Type() protoreflect.EnumType {
|
|
494
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
553
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[8]
|
|
495
554
|
}
|
|
496
555
|
|
|
497
556
|
func (x MerchantPaymentPartnerAction_Status) Number() protoreflect.EnumNumber {
|
|
@@ -510,7 +569,60 @@ func (x *MerchantPaymentPartnerAction_Status) UnmarshalJSON(b []byte) error {
|
|
|
510
569
|
|
|
511
570
|
// Deprecated: Use MerchantPaymentPartnerAction_Status.Descriptor instead.
|
|
512
571
|
func (MerchantPaymentPartnerAction_Status) EnumDescriptor() ([]byte, []int) {
|
|
513
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
572
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6, 0}
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
type GalaxyFlowAction_GalaxyFlowActionType int32
|
|
576
|
+
|
|
577
|
+
const (
|
|
578
|
+
GalaxyFlowAction_LAUNCH GalaxyFlowAction_GalaxyFlowActionType = 1
|
|
579
|
+
)
|
|
580
|
+
|
|
581
|
+
// Enum value maps for GalaxyFlowAction_GalaxyFlowActionType.
|
|
582
|
+
var (
|
|
583
|
+
GalaxyFlowAction_GalaxyFlowActionType_name = map[int32]string{
|
|
584
|
+
1: "LAUNCH",
|
|
585
|
+
}
|
|
586
|
+
GalaxyFlowAction_GalaxyFlowActionType_value = map[string]int32{
|
|
587
|
+
"LAUNCH": 1,
|
|
588
|
+
}
|
|
589
|
+
)
|
|
590
|
+
|
|
591
|
+
func (x GalaxyFlowAction_GalaxyFlowActionType) Enum() *GalaxyFlowAction_GalaxyFlowActionType {
|
|
592
|
+
p := new(GalaxyFlowAction_GalaxyFlowActionType)
|
|
593
|
+
*p = x
|
|
594
|
+
return p
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
func (x GalaxyFlowAction_GalaxyFlowActionType) String() string {
|
|
598
|
+
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
func (GalaxyFlowAction_GalaxyFlowActionType) Descriptor() protoreflect.EnumDescriptor {
|
|
602
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[9].Descriptor()
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
func (GalaxyFlowAction_GalaxyFlowActionType) Type() protoreflect.EnumType {
|
|
606
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[9]
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
func (x GalaxyFlowAction_GalaxyFlowActionType) Number() protoreflect.EnumNumber {
|
|
610
|
+
return protoreflect.EnumNumber(x)
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
// Deprecated: Do not use.
|
|
614
|
+
func (x *GalaxyFlowAction_GalaxyFlowActionType) UnmarshalJSON(b []byte) error {
|
|
615
|
+
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
|
|
616
|
+
if err != nil {
|
|
617
|
+
return err
|
|
618
|
+
}
|
|
619
|
+
*x = GalaxyFlowAction_GalaxyFlowActionType(num)
|
|
620
|
+
return nil
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
// Deprecated: Use GalaxyFlowAction_GalaxyFlowActionType.Descriptor instead.
|
|
624
|
+
func (GalaxyFlowAction_GalaxyFlowActionType) EnumDescriptor() ([]byte, []int) {
|
|
625
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7, 0}
|
|
514
626
|
}
|
|
515
627
|
|
|
516
628
|
type NoteEditAction_NoteType int32
|
|
@@ -543,11 +655,11 @@ func (x NoteEditAction_NoteType) String() string {
|
|
|
543
655
|
}
|
|
544
656
|
|
|
545
657
|
func (NoteEditAction_NoteType) Descriptor() protoreflect.EnumDescriptor {
|
|
546
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
658
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[10].Descriptor()
|
|
547
659
|
}
|
|
548
660
|
|
|
549
661
|
func (NoteEditAction_NoteType) Type() protoreflect.EnumType {
|
|
550
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
662
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[10]
|
|
551
663
|
}
|
|
552
664
|
|
|
553
665
|
func (x NoteEditAction_NoteType) Number() protoreflect.EnumNumber {
|
|
@@ -566,7 +678,7 @@ func (x *NoteEditAction_NoteType) UnmarshalJSON(b []byte) error {
|
|
|
566
678
|
|
|
567
679
|
// Deprecated: Use NoteEditAction_NoteType.Descriptor instead.
|
|
568
680
|
func (NoteEditAction_NoteType) EnumDescriptor() ([]byte, []int) {
|
|
569
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
681
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8, 0}
|
|
570
682
|
}
|
|
571
683
|
|
|
572
684
|
type StatusPrivacyAction_StatusDistributionMode int32
|
|
@@ -602,11 +714,11 @@ func (x StatusPrivacyAction_StatusDistributionMode) String() string {
|
|
|
602
714
|
}
|
|
603
715
|
|
|
604
716
|
func (StatusPrivacyAction_StatusDistributionMode) Descriptor() protoreflect.EnumDescriptor {
|
|
605
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
717
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[11].Descriptor()
|
|
606
718
|
}
|
|
607
719
|
|
|
608
720
|
func (StatusPrivacyAction_StatusDistributionMode) Type() protoreflect.EnumType {
|
|
609
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
721
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[11]
|
|
610
722
|
}
|
|
611
723
|
|
|
612
724
|
func (x StatusPrivacyAction_StatusDistributionMode) Number() protoreflect.EnumNumber {
|
|
@@ -625,7 +737,7 @@ func (x *StatusPrivacyAction_StatusDistributionMode) UnmarshalJSON(b []byte) err
|
|
|
625
737
|
|
|
626
738
|
// Deprecated: Use StatusPrivacyAction_StatusDistributionMode.Descriptor instead.
|
|
627
739
|
func (StatusPrivacyAction_StatusDistributionMode) EnumDescriptor() ([]byte, []int) {
|
|
628
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
740
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9, 0}
|
|
629
741
|
}
|
|
630
742
|
|
|
631
743
|
type MarketingMessageAction_MarketingMessagePrototypeType int32
|
|
@@ -655,11 +767,11 @@ func (x MarketingMessageAction_MarketingMessagePrototypeType) String() string {
|
|
|
655
767
|
}
|
|
656
768
|
|
|
657
769
|
func (MarketingMessageAction_MarketingMessagePrototypeType) Descriptor() protoreflect.EnumDescriptor {
|
|
658
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
770
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[12].Descriptor()
|
|
659
771
|
}
|
|
660
772
|
|
|
661
773
|
func (MarketingMessageAction_MarketingMessagePrototypeType) Type() protoreflect.EnumType {
|
|
662
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
774
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[12]
|
|
663
775
|
}
|
|
664
776
|
|
|
665
777
|
func (x MarketingMessageAction_MarketingMessagePrototypeType) Number() protoreflect.EnumNumber {
|
|
@@ -678,7 +790,7 @@ func (x *MarketingMessageAction_MarketingMessagePrototypeType) UnmarshalJSON(b [
|
|
|
678
790
|
|
|
679
791
|
// Deprecated: Use MarketingMessageAction_MarketingMessagePrototypeType.Descriptor instead.
|
|
680
792
|
func (MarketingMessageAction_MarketingMessagePrototypeType) EnumDescriptor() ([]byte, []int) {
|
|
681
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
793
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10, 0}
|
|
682
794
|
}
|
|
683
795
|
|
|
684
796
|
type UsernameChatStartModeAction_ChatStartMode int32
|
|
@@ -711,11 +823,11 @@ func (x UsernameChatStartModeAction_ChatStartMode) String() string {
|
|
|
711
823
|
}
|
|
712
824
|
|
|
713
825
|
func (UsernameChatStartModeAction_ChatStartMode) Descriptor() protoreflect.EnumDescriptor {
|
|
714
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
826
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[13].Descriptor()
|
|
715
827
|
}
|
|
716
828
|
|
|
717
829
|
func (UsernameChatStartModeAction_ChatStartMode) Type() protoreflect.EnumType {
|
|
718
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
830
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[13]
|
|
719
831
|
}
|
|
720
832
|
|
|
721
833
|
func (x UsernameChatStartModeAction_ChatStartMode) Number() protoreflect.EnumNumber {
|
|
@@ -734,7 +846,7 @@ func (x *UsernameChatStartModeAction_ChatStartMode) UnmarshalJSON(b []byte) erro
|
|
|
734
846
|
|
|
735
847
|
// Deprecated: Use UsernameChatStartModeAction_ChatStartMode.Descriptor instead.
|
|
736
848
|
func (UsernameChatStartModeAction_ChatStartMode) EnumDescriptor() ([]byte, []int) {
|
|
737
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
849
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11, 0}
|
|
738
850
|
}
|
|
739
851
|
|
|
740
852
|
type LabelEditAction_ListType int32
|
|
@@ -785,11 +897,11 @@ func (x LabelEditAction_ListType) String() string {
|
|
|
785
897
|
}
|
|
786
898
|
|
|
787
899
|
func (LabelEditAction_ListType) Descriptor() protoreflect.EnumDescriptor {
|
|
788
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
900
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[14].Descriptor()
|
|
789
901
|
}
|
|
790
902
|
|
|
791
903
|
func (LabelEditAction_ListType) Type() protoreflect.EnumType {
|
|
792
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
904
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[14]
|
|
793
905
|
}
|
|
794
906
|
|
|
795
907
|
func (x LabelEditAction_ListType) Number() protoreflect.EnumNumber {
|
|
@@ -808,7 +920,7 @@ func (x *LabelEditAction_ListType) UnmarshalJSON(b []byte) error {
|
|
|
808
920
|
|
|
809
921
|
// Deprecated: Use LabelEditAction_ListType.Descriptor instead.
|
|
810
922
|
func (LabelEditAction_ListType) EnumDescriptor() ([]byte, []int) {
|
|
811
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
923
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12, 0}
|
|
812
924
|
}
|
|
813
925
|
|
|
814
926
|
type PatchDebugData_Platform int32
|
|
@@ -823,20 +935,26 @@ const (
|
|
|
823
935
|
PatchDebugData_DARWIN PatchDebugData_Platform = 6
|
|
824
936
|
PatchDebugData_IPAD PatchDebugData_Platform = 7
|
|
825
937
|
PatchDebugData_WEAROS PatchDebugData_Platform = 8
|
|
938
|
+
PatchDebugData_WASG PatchDebugData_Platform = 9
|
|
939
|
+
PatchDebugData_WEARM PatchDebugData_Platform = 10
|
|
940
|
+
PatchDebugData_CAPI PatchDebugData_Platform = 11
|
|
826
941
|
)
|
|
827
942
|
|
|
828
943
|
// Enum value maps for PatchDebugData_Platform.
|
|
829
944
|
var (
|
|
830
945
|
PatchDebugData_Platform_name = map[int32]string{
|
|
831
|
-
0:
|
|
832
|
-
1:
|
|
833
|
-
2:
|
|
834
|
-
3:
|
|
835
|
-
4:
|
|
836
|
-
5:
|
|
837
|
-
6:
|
|
838
|
-
7:
|
|
839
|
-
8:
|
|
946
|
+
0: "ANDROID",
|
|
947
|
+
1: "SMBA",
|
|
948
|
+
2: "IPHONE",
|
|
949
|
+
3: "SMBI",
|
|
950
|
+
4: "WEB",
|
|
951
|
+
5: "UWP",
|
|
952
|
+
6: "DARWIN",
|
|
953
|
+
7: "IPAD",
|
|
954
|
+
8: "WEAROS",
|
|
955
|
+
9: "WASG",
|
|
956
|
+
10: "WEARM",
|
|
957
|
+
11: "CAPI",
|
|
840
958
|
}
|
|
841
959
|
PatchDebugData_Platform_value = map[string]int32{
|
|
842
960
|
"ANDROID": 0,
|
|
@@ -848,6 +966,9 @@ var (
|
|
|
848
966
|
"DARWIN": 6,
|
|
849
967
|
"IPAD": 7,
|
|
850
968
|
"WEAROS": 8,
|
|
969
|
+
"WASG": 9,
|
|
970
|
+
"WEARM": 10,
|
|
971
|
+
"CAPI": 11,
|
|
851
972
|
}
|
|
852
973
|
)
|
|
853
974
|
|
|
@@ -862,11 +983,11 @@ func (x PatchDebugData_Platform) String() string {
|
|
|
862
983
|
}
|
|
863
984
|
|
|
864
985
|
func (PatchDebugData_Platform) Descriptor() protoreflect.EnumDescriptor {
|
|
865
|
-
return file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
986
|
+
return file_waSyncAction_WASyncAction_proto_enumTypes[15].Descriptor()
|
|
866
987
|
}
|
|
867
988
|
|
|
868
989
|
func (PatchDebugData_Platform) Type() protoreflect.EnumType {
|
|
869
|
-
return &file_waSyncAction_WASyncAction_proto_enumTypes[
|
|
990
|
+
return &file_waSyncAction_WASyncAction_proto_enumTypes[15]
|
|
870
991
|
}
|
|
871
992
|
|
|
872
993
|
func (x PatchDebugData_Platform) Number() protoreflect.EnumNumber {
|
|
@@ -885,7 +1006,7 @@ func (x *PatchDebugData_Platform) UnmarshalJSON(b []byte) error {
|
|
|
885
1006
|
|
|
886
1007
|
// Deprecated: Use PatchDebugData_Platform.Descriptor instead.
|
|
887
1008
|
func (PatchDebugData_Platform) EnumDescriptor() ([]byte, []int) {
|
|
888
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1009
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13, 0}
|
|
889
1010
|
}
|
|
890
1011
|
|
|
891
1012
|
type CallLogRecord struct {
|
|
@@ -1044,6 +1165,58 @@ func (x *CallLogRecord) GetCallType() CallLogRecord_CallType {
|
|
|
1044
1165
|
return CallLogRecord_REGULAR
|
|
1045
1166
|
}
|
|
1046
1167
|
|
|
1168
|
+
type AvatarUpdatedAction struct {
|
|
1169
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1170
|
+
EventType *AvatarUpdatedAction_AvatarEventType `protobuf:"varint,1,opt,name=eventType,enum=WASyncAction.AvatarUpdatedAction_AvatarEventType" json:"eventType,omitempty"`
|
|
1171
|
+
RecentAvatarStickers []*StickerAction `protobuf:"bytes,2,rep,name=recentAvatarStickers" json:"recentAvatarStickers,omitempty"`
|
|
1172
|
+
unknownFields protoimpl.UnknownFields
|
|
1173
|
+
sizeCache protoimpl.SizeCache
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
func (x *AvatarUpdatedAction) Reset() {
|
|
1177
|
+
*x = AvatarUpdatedAction{}
|
|
1178
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
|
|
1179
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1180
|
+
ms.StoreMessageInfo(mi)
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
func (x *AvatarUpdatedAction) String() string {
|
|
1184
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
func (*AvatarUpdatedAction) ProtoMessage() {}
|
|
1188
|
+
|
|
1189
|
+
func (x *AvatarUpdatedAction) ProtoReflect() protoreflect.Message {
|
|
1190
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
|
|
1191
|
+
if x != nil {
|
|
1192
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1193
|
+
if ms.LoadMessageInfo() == nil {
|
|
1194
|
+
ms.StoreMessageInfo(mi)
|
|
1195
|
+
}
|
|
1196
|
+
return ms
|
|
1197
|
+
}
|
|
1198
|
+
return mi.MessageOf(x)
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
// Deprecated: Use AvatarUpdatedAction.ProtoReflect.Descriptor instead.
|
|
1202
|
+
func (*AvatarUpdatedAction) Descriptor() ([]byte, []int) {
|
|
1203
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1}
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
func (x *AvatarUpdatedAction) GetEventType() AvatarUpdatedAction_AvatarEventType {
|
|
1207
|
+
if x != nil && x.EventType != nil {
|
|
1208
|
+
return *x.EventType
|
|
1209
|
+
}
|
|
1210
|
+
return AvatarUpdatedAction_UPDATED
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
func (x *AvatarUpdatedAction) GetRecentAvatarStickers() []*StickerAction {
|
|
1214
|
+
if x != nil {
|
|
1215
|
+
return x.RecentAvatarStickers
|
|
1216
|
+
}
|
|
1217
|
+
return nil
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1047
1220
|
type MaibaAIFeaturesControlAction struct {
|
|
1048
1221
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1049
1222
|
AiFeatureStatus *MaibaAIFeaturesControlAction_MaibaAIFeatureStatus `protobuf:"varint,1,opt,name=aiFeatureStatus,enum=WASyncAction.MaibaAIFeaturesControlAction_MaibaAIFeatureStatus" json:"aiFeatureStatus,omitempty"`
|
|
@@ -1053,7 +1226,7 @@ type MaibaAIFeaturesControlAction struct {
|
|
|
1053
1226
|
|
|
1054
1227
|
func (x *MaibaAIFeaturesControlAction) Reset() {
|
|
1055
1228
|
*x = MaibaAIFeaturesControlAction{}
|
|
1056
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1229
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
|
|
1057
1230
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1058
1231
|
ms.StoreMessageInfo(mi)
|
|
1059
1232
|
}
|
|
@@ -1065,7 +1238,7 @@ func (x *MaibaAIFeaturesControlAction) String() string {
|
|
|
1065
1238
|
func (*MaibaAIFeaturesControlAction) ProtoMessage() {}
|
|
1066
1239
|
|
|
1067
1240
|
func (x *MaibaAIFeaturesControlAction) ProtoReflect() protoreflect.Message {
|
|
1068
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1241
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
|
|
1069
1242
|
if x != nil {
|
|
1070
1243
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1071
1244
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1078,7 +1251,7 @@ func (x *MaibaAIFeaturesControlAction) ProtoReflect() protoreflect.Message {
|
|
|
1078
1251
|
|
|
1079
1252
|
// Deprecated: Use MaibaAIFeaturesControlAction.ProtoReflect.Descriptor instead.
|
|
1080
1253
|
func (*MaibaAIFeaturesControlAction) Descriptor() ([]byte, []int) {
|
|
1081
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1254
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
|
|
1082
1255
|
}
|
|
1083
1256
|
|
|
1084
1257
|
func (x *MaibaAIFeaturesControlAction) GetAiFeatureStatus() MaibaAIFeaturesControlAction_MaibaAIFeatureStatus {
|
|
@@ -1098,7 +1271,7 @@ type PaymentTosAction struct {
|
|
|
1098
1271
|
|
|
1099
1272
|
func (x *PaymentTosAction) Reset() {
|
|
1100
1273
|
*x = PaymentTosAction{}
|
|
1101
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1274
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
|
|
1102
1275
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1103
1276
|
ms.StoreMessageInfo(mi)
|
|
1104
1277
|
}
|
|
@@ -1110,7 +1283,7 @@ func (x *PaymentTosAction) String() string {
|
|
|
1110
1283
|
func (*PaymentTosAction) ProtoMessage() {}
|
|
1111
1284
|
|
|
1112
1285
|
func (x *PaymentTosAction) ProtoReflect() protoreflect.Message {
|
|
1113
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1286
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
|
|
1114
1287
|
if x != nil {
|
|
1115
1288
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1116
1289
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1123,7 +1296,7 @@ func (x *PaymentTosAction) ProtoReflect() protoreflect.Message {
|
|
|
1123
1296
|
|
|
1124
1297
|
// Deprecated: Use PaymentTosAction.ProtoReflect.Descriptor instead.
|
|
1125
1298
|
func (*PaymentTosAction) Descriptor() ([]byte, []int) {
|
|
1126
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1299
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
|
|
1127
1300
|
}
|
|
1128
1301
|
|
|
1129
1302
|
func (x *PaymentTosAction) GetPaymentNotice() PaymentTosAction_PaymentNotice {
|
|
@@ -1149,7 +1322,7 @@ type NotificationActivitySettingAction struct {
|
|
|
1149
1322
|
|
|
1150
1323
|
func (x *NotificationActivitySettingAction) Reset() {
|
|
1151
1324
|
*x = NotificationActivitySettingAction{}
|
|
1152
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1325
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
|
|
1153
1326
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1154
1327
|
ms.StoreMessageInfo(mi)
|
|
1155
1328
|
}
|
|
@@ -1161,7 +1334,7 @@ func (x *NotificationActivitySettingAction) String() string {
|
|
|
1161
1334
|
func (*NotificationActivitySettingAction) ProtoMessage() {}
|
|
1162
1335
|
|
|
1163
1336
|
func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message {
|
|
1164
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1337
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
|
|
1165
1338
|
if x != nil {
|
|
1166
1339
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1167
1340
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1174,7 +1347,7 @@ func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message
|
|
|
1174
1347
|
|
|
1175
1348
|
// Deprecated: Use NotificationActivitySettingAction.ProtoReflect.Descriptor instead.
|
|
1176
1349
|
func (*NotificationActivitySettingAction) Descriptor() ([]byte, []int) {
|
|
1177
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1350
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
|
|
1178
1351
|
}
|
|
1179
1352
|
|
|
1180
1353
|
func (x *NotificationActivitySettingAction) GetNotificationActivitySetting() NotificationActivitySettingAction_NotificationActivitySetting {
|
|
@@ -1193,7 +1366,7 @@ type WaffleAccountLinkStateAction struct {
|
|
|
1193
1366
|
|
|
1194
1367
|
func (x *WaffleAccountLinkStateAction) Reset() {
|
|
1195
1368
|
*x = WaffleAccountLinkStateAction{}
|
|
1196
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1369
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
|
|
1197
1370
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1198
1371
|
ms.StoreMessageInfo(mi)
|
|
1199
1372
|
}
|
|
@@ -1205,7 +1378,7 @@ func (x *WaffleAccountLinkStateAction) String() string {
|
|
|
1205
1378
|
func (*WaffleAccountLinkStateAction) ProtoMessage() {}
|
|
1206
1379
|
|
|
1207
1380
|
func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
|
|
1208
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1381
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
|
|
1209
1382
|
if x != nil {
|
|
1210
1383
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1211
1384
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1218,7 +1391,7 @@ func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
|
|
|
1218
1391
|
|
|
1219
1392
|
// Deprecated: Use WaffleAccountLinkStateAction.ProtoReflect.Descriptor instead.
|
|
1220
1393
|
func (*WaffleAccountLinkStateAction) Descriptor() ([]byte, []int) {
|
|
1221
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1394
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
|
|
1222
1395
|
}
|
|
1223
1396
|
|
|
1224
1397
|
func (x *WaffleAccountLinkStateAction) GetLinkState() WaffleAccountLinkStateAction_AccountLinkState {
|
|
@@ -1240,7 +1413,7 @@ type MerchantPaymentPartnerAction struct {
|
|
|
1240
1413
|
|
|
1241
1414
|
func (x *MerchantPaymentPartnerAction) Reset() {
|
|
1242
1415
|
*x = MerchantPaymentPartnerAction{}
|
|
1243
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1416
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
|
|
1244
1417
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1245
1418
|
ms.StoreMessageInfo(mi)
|
|
1246
1419
|
}
|
|
@@ -1252,7 +1425,7 @@ func (x *MerchantPaymentPartnerAction) String() string {
|
|
|
1252
1425
|
func (*MerchantPaymentPartnerAction) ProtoMessage() {}
|
|
1253
1426
|
|
|
1254
1427
|
func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
|
|
1255
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1428
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
|
|
1256
1429
|
if x != nil {
|
|
1257
1430
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1258
1431
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1265,7 +1438,7 @@ func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
|
|
|
1265
1438
|
|
|
1266
1439
|
// Deprecated: Use MerchantPaymentPartnerAction.ProtoReflect.Descriptor instead.
|
|
1267
1440
|
func (*MerchantPaymentPartnerAction) Descriptor() ([]byte, []int) {
|
|
1268
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1441
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
|
|
1269
1442
|
}
|
|
1270
1443
|
|
|
1271
1444
|
func (x *MerchantPaymentPartnerAction) GetStatus() MerchantPaymentPartnerAction_Status {
|
|
@@ -1296,6 +1469,50 @@ func (x *MerchantPaymentPartnerAction) GetCredentialID() string {
|
|
|
1296
1469
|
return ""
|
|
1297
1470
|
}
|
|
1298
1471
|
|
|
1472
|
+
type GalaxyFlowAction struct {
|
|
1473
|
+
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1474
|
+
Type *GalaxyFlowAction_GalaxyFlowActionType `protobuf:"varint,1,req,name=type,enum=WASyncAction.GalaxyFlowAction_GalaxyFlowActionType" json:"type,omitempty"`
|
|
1475
|
+
unknownFields protoimpl.UnknownFields
|
|
1476
|
+
sizeCache protoimpl.SizeCache
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1479
|
+
func (x *GalaxyFlowAction) Reset() {
|
|
1480
|
+
*x = GalaxyFlowAction{}
|
|
1481
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
|
|
1482
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1483
|
+
ms.StoreMessageInfo(mi)
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
func (x *GalaxyFlowAction) String() string {
|
|
1487
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1488
|
+
}
|
|
1489
|
+
|
|
1490
|
+
func (*GalaxyFlowAction) ProtoMessage() {}
|
|
1491
|
+
|
|
1492
|
+
func (x *GalaxyFlowAction) ProtoReflect() protoreflect.Message {
|
|
1493
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
|
|
1494
|
+
if x != nil {
|
|
1495
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1496
|
+
if ms.LoadMessageInfo() == nil {
|
|
1497
|
+
ms.StoreMessageInfo(mi)
|
|
1498
|
+
}
|
|
1499
|
+
return ms
|
|
1500
|
+
}
|
|
1501
|
+
return mi.MessageOf(x)
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
// Deprecated: Use GalaxyFlowAction.ProtoReflect.Descriptor instead.
|
|
1505
|
+
func (*GalaxyFlowAction) Descriptor() ([]byte, []int) {
|
|
1506
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
func (x *GalaxyFlowAction) GetType() GalaxyFlowAction_GalaxyFlowActionType {
|
|
1510
|
+
if x != nil && x.Type != nil {
|
|
1511
|
+
return *x.Type
|
|
1512
|
+
}
|
|
1513
|
+
return GalaxyFlowAction_LAUNCH
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1299
1516
|
type NoteEditAction struct {
|
|
1300
1517
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
1301
1518
|
Type *NoteEditAction_NoteType `protobuf:"varint,1,opt,name=type,enum=WASyncAction.NoteEditAction_NoteType" json:"type,omitempty"`
|
|
@@ -1309,7 +1526,7 @@ type NoteEditAction struct {
|
|
|
1309
1526
|
|
|
1310
1527
|
func (x *NoteEditAction) Reset() {
|
|
1311
1528
|
*x = NoteEditAction{}
|
|
1312
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1529
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
|
|
1313
1530
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1314
1531
|
ms.StoreMessageInfo(mi)
|
|
1315
1532
|
}
|
|
@@ -1321,7 +1538,7 @@ func (x *NoteEditAction) String() string {
|
|
|
1321
1538
|
func (*NoteEditAction) ProtoMessage() {}
|
|
1322
1539
|
|
|
1323
1540
|
func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
|
|
1324
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1541
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
|
|
1325
1542
|
if x != nil {
|
|
1326
1543
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1327
1544
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1334,7 +1551,7 @@ func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
|
|
|
1334
1551
|
|
|
1335
1552
|
// Deprecated: Use NoteEditAction.ProtoReflect.Descriptor instead.
|
|
1336
1553
|
func (*NoteEditAction) Descriptor() ([]byte, []int) {
|
|
1337
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1554
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
|
|
1338
1555
|
}
|
|
1339
1556
|
|
|
1340
1557
|
func (x *NoteEditAction) GetType() NoteEditAction_NoteType {
|
|
@@ -1382,7 +1599,7 @@ type StatusPrivacyAction struct {
|
|
|
1382
1599
|
|
|
1383
1600
|
func (x *StatusPrivacyAction) Reset() {
|
|
1384
1601
|
*x = StatusPrivacyAction{}
|
|
1385
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1602
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
|
|
1386
1603
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1387
1604
|
ms.StoreMessageInfo(mi)
|
|
1388
1605
|
}
|
|
@@ -1394,7 +1611,7 @@ func (x *StatusPrivacyAction) String() string {
|
|
|
1394
1611
|
func (*StatusPrivacyAction) ProtoMessage() {}
|
|
1395
1612
|
|
|
1396
1613
|
func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
|
|
1397
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1614
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
|
|
1398
1615
|
if x != nil {
|
|
1399
1616
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1400
1617
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1407,7 +1624,7 @@ func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
|
|
|
1407
1624
|
|
|
1408
1625
|
// Deprecated: Use StatusPrivacyAction.ProtoReflect.Descriptor instead.
|
|
1409
1626
|
func (*StatusPrivacyAction) Descriptor() ([]byte, []int) {
|
|
1410
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1627
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
|
|
1411
1628
|
}
|
|
1412
1629
|
|
|
1413
1630
|
func (x *StatusPrivacyAction) GetMode() StatusPrivacyAction_StatusDistributionMode {
|
|
@@ -1439,7 +1656,7 @@ type MarketingMessageAction struct {
|
|
|
1439
1656
|
|
|
1440
1657
|
func (x *MarketingMessageAction) Reset() {
|
|
1441
1658
|
*x = MarketingMessageAction{}
|
|
1442
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1659
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
|
|
1443
1660
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1444
1661
|
ms.StoreMessageInfo(mi)
|
|
1445
1662
|
}
|
|
@@ -1451,7 +1668,7 @@ func (x *MarketingMessageAction) String() string {
|
|
|
1451
1668
|
func (*MarketingMessageAction) ProtoMessage() {}
|
|
1452
1669
|
|
|
1453
1670
|
func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
|
|
1454
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1671
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
|
|
1455
1672
|
if x != nil {
|
|
1456
1673
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1457
1674
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1464,7 +1681,7 @@ func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
|
|
|
1464
1681
|
|
|
1465
1682
|
// Deprecated: Use MarketingMessageAction.ProtoReflect.Descriptor instead.
|
|
1466
1683
|
func (*MarketingMessageAction) Descriptor() ([]byte, []int) {
|
|
1467
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1684
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
|
|
1468
1685
|
}
|
|
1469
1686
|
|
|
1470
1687
|
func (x *MarketingMessageAction) GetName() string {
|
|
@@ -1525,7 +1742,7 @@ type UsernameChatStartModeAction struct {
|
|
|
1525
1742
|
|
|
1526
1743
|
func (x *UsernameChatStartModeAction) Reset() {
|
|
1527
1744
|
*x = UsernameChatStartModeAction{}
|
|
1528
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1745
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
|
|
1529
1746
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1530
1747
|
ms.StoreMessageInfo(mi)
|
|
1531
1748
|
}
|
|
@@ -1537,7 +1754,7 @@ func (x *UsernameChatStartModeAction) String() string {
|
|
|
1537
1754
|
func (*UsernameChatStartModeAction) ProtoMessage() {}
|
|
1538
1755
|
|
|
1539
1756
|
func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
|
|
1540
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1757
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
|
|
1541
1758
|
if x != nil {
|
|
1542
1759
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1543
1760
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1550,7 +1767,7 @@ func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
|
|
|
1550
1767
|
|
|
1551
1768
|
// Deprecated: Use UsernameChatStartModeAction.ProtoReflect.Descriptor instead.
|
|
1552
1769
|
func (*UsernameChatStartModeAction) Descriptor() ([]byte, []int) {
|
|
1553
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1770
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
|
|
1554
1771
|
}
|
|
1555
1772
|
|
|
1556
1773
|
func (x *UsernameChatStartModeAction) GetChatStartMode() UsernameChatStartModeAction_ChatStartMode {
|
|
@@ -1576,7 +1793,7 @@ type LabelEditAction struct {
|
|
|
1576
1793
|
|
|
1577
1794
|
func (x *LabelEditAction) Reset() {
|
|
1578
1795
|
*x = LabelEditAction{}
|
|
1579
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1796
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
|
|
1580
1797
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1581
1798
|
ms.StoreMessageInfo(mi)
|
|
1582
1799
|
}
|
|
@@ -1588,7 +1805,7 @@ func (x *LabelEditAction) String() string {
|
|
|
1588
1805
|
func (*LabelEditAction) ProtoMessage() {}
|
|
1589
1806
|
|
|
1590
1807
|
func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
|
|
1591
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1808
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
|
|
1592
1809
|
if x != nil {
|
|
1593
1810
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1594
1811
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1601,7 +1818,7 @@ func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
|
|
|
1601
1818
|
|
|
1602
1819
|
// Deprecated: Use LabelEditAction.ProtoReflect.Descriptor instead.
|
|
1603
1820
|
func (*LabelEditAction) Descriptor() ([]byte, []int) {
|
|
1604
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1821
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
|
|
1605
1822
|
}
|
|
1606
1823
|
|
|
1607
1824
|
func (x *LabelEditAction) GetName() string {
|
|
@@ -1679,7 +1896,7 @@ type PatchDebugData struct {
|
|
|
1679
1896
|
|
|
1680
1897
|
func (x *PatchDebugData) Reset() {
|
|
1681
1898
|
*x = PatchDebugData{}
|
|
1682
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1899
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
|
|
1683
1900
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1684
1901
|
ms.StoreMessageInfo(mi)
|
|
1685
1902
|
}
|
|
@@ -1691,7 +1908,7 @@ func (x *PatchDebugData) String() string {
|
|
|
1691
1908
|
func (*PatchDebugData) ProtoMessage() {}
|
|
1692
1909
|
|
|
1693
1910
|
func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
|
|
1694
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
1911
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
|
|
1695
1912
|
if x != nil {
|
|
1696
1913
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1697
1914
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1704,7 +1921,7 @@ func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
|
|
|
1704
1921
|
|
|
1705
1922
|
// Deprecated: Use PatchDebugData.ProtoReflect.Descriptor instead.
|
|
1706
1923
|
func (*PatchDebugData) Descriptor() ([]byte, []int) {
|
|
1707
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
1924
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
|
|
1708
1925
|
}
|
|
1709
1926
|
|
|
1710
1927
|
func (x *PatchDebugData) GetCurrentLthash() []byte {
|
|
@@ -1794,7 +2011,7 @@ type RecentEmojiWeight struct {
|
|
|
1794
2011
|
|
|
1795
2012
|
func (x *RecentEmojiWeight) Reset() {
|
|
1796
2013
|
*x = RecentEmojiWeight{}
|
|
1797
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2014
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
|
|
1798
2015
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1799
2016
|
ms.StoreMessageInfo(mi)
|
|
1800
2017
|
}
|
|
@@ -1806,7 +2023,7 @@ func (x *RecentEmojiWeight) String() string {
|
|
|
1806
2023
|
func (*RecentEmojiWeight) ProtoMessage() {}
|
|
1807
2024
|
|
|
1808
2025
|
func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
|
|
1809
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2026
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
|
|
1810
2027
|
if x != nil {
|
|
1811
2028
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1812
2029
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1819,7 +2036,7 @@ func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
|
|
|
1819
2036
|
|
|
1820
2037
|
// Deprecated: Use RecentEmojiWeight.ProtoReflect.Descriptor instead.
|
|
1821
2038
|
func (*RecentEmojiWeight) Descriptor() ([]byte, []int) {
|
|
1822
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2039
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
|
|
1823
2040
|
}
|
|
1824
2041
|
|
|
1825
2042
|
func (x *RecentEmojiWeight) GetEmoji() string {
|
|
@@ -1902,13 +2119,15 @@ type SyncActionValue struct {
|
|
|
1902
2119
|
BusinessBroadcastListAction *BusinessBroadcastListAction `protobuf:"bytes,69,opt,name=businessBroadcastListAction" json:"businessBroadcastListAction,omitempty"`
|
|
1903
2120
|
MusicUserIDAction *MusicUserIdAction `protobuf:"bytes,70,opt,name=musicUserIDAction" json:"musicUserIDAction,omitempty"`
|
|
1904
2121
|
StatusPostOptInNotificationPreferencesAction *StatusPostOptInNotificationPreferencesAction `protobuf:"bytes,71,opt,name=statusPostOptInNotificationPreferencesAction" json:"statusPostOptInNotificationPreferencesAction,omitempty"`
|
|
2122
|
+
AvatarUpdatedAction *AvatarUpdatedAction `protobuf:"bytes,72,opt,name=avatarUpdatedAction" json:"avatarUpdatedAction,omitempty"`
|
|
2123
|
+
GalaxyFlowAction *GalaxyFlowAction `protobuf:"bytes,73,opt,name=galaxyFlowAction" json:"galaxyFlowAction,omitempty"`
|
|
1905
2124
|
unknownFields protoimpl.UnknownFields
|
|
1906
2125
|
sizeCache protoimpl.SizeCache
|
|
1907
2126
|
}
|
|
1908
2127
|
|
|
1909
2128
|
func (x *SyncActionValue) Reset() {
|
|
1910
2129
|
*x = SyncActionValue{}
|
|
1911
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2130
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
|
|
1912
2131
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1913
2132
|
ms.StoreMessageInfo(mi)
|
|
1914
2133
|
}
|
|
@@ -1920,7 +2139,7 @@ func (x *SyncActionValue) String() string {
|
|
|
1920
2139
|
func (*SyncActionValue) ProtoMessage() {}
|
|
1921
2140
|
|
|
1922
2141
|
func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
|
|
1923
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2142
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
|
|
1924
2143
|
if x != nil {
|
|
1925
2144
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1926
2145
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1933,7 +2152,7 @@ func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
|
|
|
1933
2152
|
|
|
1934
2153
|
// Deprecated: Use SyncActionValue.ProtoReflect.Descriptor instead.
|
|
1935
2154
|
func (*SyncActionValue) Descriptor() ([]byte, []int) {
|
|
1936
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2155
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{15}
|
|
1937
2156
|
}
|
|
1938
2157
|
|
|
1939
2158
|
func (x *SyncActionValue) GetTimestamp() int64 {
|
|
@@ -2384,6 +2603,20 @@ func (x *SyncActionValue) GetStatusPostOptInNotificationPreferencesAction() *Sta
|
|
|
2384
2603
|
return nil
|
|
2385
2604
|
}
|
|
2386
2605
|
|
|
2606
|
+
func (x *SyncActionValue) GetAvatarUpdatedAction() *AvatarUpdatedAction {
|
|
2607
|
+
if x != nil {
|
|
2608
|
+
return x.AvatarUpdatedAction
|
|
2609
|
+
}
|
|
2610
|
+
return nil
|
|
2611
|
+
}
|
|
2612
|
+
|
|
2613
|
+
func (x *SyncActionValue) GetGalaxyFlowAction() *GalaxyFlowAction {
|
|
2614
|
+
if x != nil {
|
|
2615
|
+
return x.GalaxyFlowAction
|
|
2616
|
+
}
|
|
2617
|
+
return nil
|
|
2618
|
+
}
|
|
2619
|
+
|
|
2387
2620
|
type StatusPostOptInNotificationPreferencesAction struct {
|
|
2388
2621
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
2389
2622
|
Enabled *bool `protobuf:"varint,1,opt,name=enabled" json:"enabled,omitempty"`
|
|
@@ -2393,7 +2626,7 @@ type StatusPostOptInNotificationPreferencesAction struct {
|
|
|
2393
2626
|
|
|
2394
2627
|
func (x *StatusPostOptInNotificationPreferencesAction) Reset() {
|
|
2395
2628
|
*x = StatusPostOptInNotificationPreferencesAction{}
|
|
2396
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2629
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
|
|
2397
2630
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2398
2631
|
ms.StoreMessageInfo(mi)
|
|
2399
2632
|
}
|
|
@@ -2405,7 +2638,7 @@ func (x *StatusPostOptInNotificationPreferencesAction) String() string {
|
|
|
2405
2638
|
func (*StatusPostOptInNotificationPreferencesAction) ProtoMessage() {}
|
|
2406
2639
|
|
|
2407
2640
|
func (x *StatusPostOptInNotificationPreferencesAction) ProtoReflect() protoreflect.Message {
|
|
2408
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2641
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
|
|
2409
2642
|
if x != nil {
|
|
2410
2643
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2411
2644
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2418,7 +2651,7 @@ func (x *StatusPostOptInNotificationPreferencesAction) ProtoReflect() protorefle
|
|
|
2418
2651
|
|
|
2419
2652
|
// Deprecated: Use StatusPostOptInNotificationPreferencesAction.ProtoReflect.Descriptor instead.
|
|
2420
2653
|
func (*StatusPostOptInNotificationPreferencesAction) Descriptor() ([]byte, []int) {
|
|
2421
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2654
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16}
|
|
2422
2655
|
}
|
|
2423
2656
|
|
|
2424
2657
|
func (x *StatusPostOptInNotificationPreferencesAction) GetEnabled() bool {
|
|
@@ -2438,7 +2671,7 @@ type BroadcastListParticipant struct {
|
|
|
2438
2671
|
|
|
2439
2672
|
func (x *BroadcastListParticipant) Reset() {
|
|
2440
2673
|
*x = BroadcastListParticipant{}
|
|
2441
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2674
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
|
|
2442
2675
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2443
2676
|
ms.StoreMessageInfo(mi)
|
|
2444
2677
|
}
|
|
@@ -2450,7 +2683,7 @@ func (x *BroadcastListParticipant) String() string {
|
|
|
2450
2683
|
func (*BroadcastListParticipant) ProtoMessage() {}
|
|
2451
2684
|
|
|
2452
2685
|
func (x *BroadcastListParticipant) ProtoReflect() protoreflect.Message {
|
|
2453
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2686
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
|
|
2454
2687
|
if x != nil {
|
|
2455
2688
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2456
2689
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2463,7 +2696,7 @@ func (x *BroadcastListParticipant) ProtoReflect() protoreflect.Message {
|
|
|
2463
2696
|
|
|
2464
2697
|
// Deprecated: Use BroadcastListParticipant.ProtoReflect.Descriptor instead.
|
|
2465
2698
|
func (*BroadcastListParticipant) Descriptor() ([]byte, []int) {
|
|
2466
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2699
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{17}
|
|
2467
2700
|
}
|
|
2468
2701
|
|
|
2469
2702
|
func (x *BroadcastListParticipant) GetLidJID() string {
|
|
@@ -2491,7 +2724,7 @@ type BusinessBroadcastListAction struct {
|
|
|
2491
2724
|
|
|
2492
2725
|
func (x *BusinessBroadcastListAction) Reset() {
|
|
2493
2726
|
*x = BusinessBroadcastListAction{}
|
|
2494
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2727
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
|
|
2495
2728
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2496
2729
|
ms.StoreMessageInfo(mi)
|
|
2497
2730
|
}
|
|
@@ -2503,7 +2736,7 @@ func (x *BusinessBroadcastListAction) String() string {
|
|
|
2503
2736
|
func (*BusinessBroadcastListAction) ProtoMessage() {}
|
|
2504
2737
|
|
|
2505
2738
|
func (x *BusinessBroadcastListAction) ProtoReflect() protoreflect.Message {
|
|
2506
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2739
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
|
|
2507
2740
|
if x != nil {
|
|
2508
2741
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2509
2742
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2516,7 +2749,7 @@ func (x *BusinessBroadcastListAction) ProtoReflect() protoreflect.Message {
|
|
|
2516
2749
|
|
|
2517
2750
|
// Deprecated: Use BusinessBroadcastListAction.ProtoReflect.Descriptor instead.
|
|
2518
2751
|
func (*BusinessBroadcastListAction) Descriptor() ([]byte, []int) {
|
|
2519
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2752
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
|
|
2520
2753
|
}
|
|
2521
2754
|
|
|
2522
2755
|
func (x *BusinessBroadcastListAction) GetDeleted() bool {
|
|
@@ -2549,7 +2782,7 @@ type BusinessBroadcastAssociationAction struct {
|
|
|
2549
2782
|
|
|
2550
2783
|
func (x *BusinessBroadcastAssociationAction) Reset() {
|
|
2551
2784
|
*x = BusinessBroadcastAssociationAction{}
|
|
2552
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2785
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
|
|
2553
2786
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2554
2787
|
ms.StoreMessageInfo(mi)
|
|
2555
2788
|
}
|
|
@@ -2561,7 +2794,7 @@ func (x *BusinessBroadcastAssociationAction) String() string {
|
|
|
2561
2794
|
func (*BusinessBroadcastAssociationAction) ProtoMessage() {}
|
|
2562
2795
|
|
|
2563
2796
|
func (x *BusinessBroadcastAssociationAction) ProtoReflect() protoreflect.Message {
|
|
2564
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2797
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
|
|
2565
2798
|
if x != nil {
|
|
2566
2799
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2567
2800
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2574,7 +2807,7 @@ func (x *BusinessBroadcastAssociationAction) ProtoReflect() protoreflect.Message
|
|
|
2574
2807
|
|
|
2575
2808
|
// Deprecated: Use BusinessBroadcastAssociationAction.ProtoReflect.Descriptor instead.
|
|
2576
2809
|
func (*BusinessBroadcastAssociationAction) Descriptor() ([]byte, []int) {
|
|
2577
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2810
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
|
|
2578
2811
|
}
|
|
2579
2812
|
|
|
2580
2813
|
func (x *BusinessBroadcastAssociationAction) GetDeleted() bool {
|
|
@@ -2593,7 +2826,7 @@ type CtwaPerCustomerDataSharingAction struct {
|
|
|
2593
2826
|
|
|
2594
2827
|
func (x *CtwaPerCustomerDataSharingAction) Reset() {
|
|
2595
2828
|
*x = CtwaPerCustomerDataSharingAction{}
|
|
2596
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2829
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
|
|
2597
2830
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2598
2831
|
ms.StoreMessageInfo(mi)
|
|
2599
2832
|
}
|
|
@@ -2605,7 +2838,7 @@ func (x *CtwaPerCustomerDataSharingAction) String() string {
|
|
|
2605
2838
|
func (*CtwaPerCustomerDataSharingAction) ProtoMessage() {}
|
|
2606
2839
|
|
|
2607
2840
|
func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
|
|
2608
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2841
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
|
|
2609
2842
|
if x != nil {
|
|
2610
2843
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2611
2844
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2618,7 +2851,7 @@ func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
|
|
|
2618
2851
|
|
|
2619
2852
|
// Deprecated: Use CtwaPerCustomerDataSharingAction.ProtoReflect.Descriptor instead.
|
|
2620
2853
|
func (*CtwaPerCustomerDataSharingAction) Descriptor() ([]byte, []int) {
|
|
2621
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2854
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
|
|
2622
2855
|
}
|
|
2623
2856
|
|
|
2624
2857
|
func (x *CtwaPerCustomerDataSharingAction) GetIsCtwaPerCustomerDataSharingEnabled() bool {
|
|
@@ -2640,7 +2873,7 @@ type LidContactAction struct {
|
|
|
2640
2873
|
|
|
2641
2874
|
func (x *LidContactAction) Reset() {
|
|
2642
2875
|
*x = LidContactAction{}
|
|
2643
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2876
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
|
|
2644
2877
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2645
2878
|
ms.StoreMessageInfo(mi)
|
|
2646
2879
|
}
|
|
@@ -2652,7 +2885,7 @@ func (x *LidContactAction) String() string {
|
|
|
2652
2885
|
func (*LidContactAction) ProtoMessage() {}
|
|
2653
2886
|
|
|
2654
2887
|
func (x *LidContactAction) ProtoReflect() protoreflect.Message {
|
|
2655
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2888
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
|
|
2656
2889
|
if x != nil {
|
|
2657
2890
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2658
2891
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2665,7 +2898,7 @@ func (x *LidContactAction) ProtoReflect() protoreflect.Message {
|
|
|
2665
2898
|
|
|
2666
2899
|
// Deprecated: Use LidContactAction.ProtoReflect.Descriptor instead.
|
|
2667
2900
|
func (*LidContactAction) Descriptor() ([]byte, []int) {
|
|
2668
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2901
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
|
|
2669
2902
|
}
|
|
2670
2903
|
|
|
2671
2904
|
func (x *LidContactAction) GetFullName() string {
|
|
@@ -2705,7 +2938,7 @@ type FavoritesAction struct {
|
|
|
2705
2938
|
|
|
2706
2939
|
func (x *FavoritesAction) Reset() {
|
|
2707
2940
|
*x = FavoritesAction{}
|
|
2708
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2941
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
|
|
2709
2942
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2710
2943
|
ms.StoreMessageInfo(mi)
|
|
2711
2944
|
}
|
|
@@ -2717,7 +2950,7 @@ func (x *FavoritesAction) String() string {
|
|
|
2717
2950
|
func (*FavoritesAction) ProtoMessage() {}
|
|
2718
2951
|
|
|
2719
2952
|
func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
|
|
2720
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2953
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
|
|
2721
2954
|
if x != nil {
|
|
2722
2955
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2723
2956
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2730,7 +2963,7 @@ func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
|
|
|
2730
2963
|
|
|
2731
2964
|
// Deprecated: Use FavoritesAction.ProtoReflect.Descriptor instead.
|
|
2732
2965
|
func (*FavoritesAction) Descriptor() ([]byte, []int) {
|
|
2733
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
2966
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
|
|
2734
2967
|
}
|
|
2735
2968
|
|
|
2736
2969
|
func (x *FavoritesAction) GetFavorites() []*FavoritesAction_Favorite {
|
|
@@ -2749,7 +2982,7 @@ type PrivacySettingChannelsPersonalisedRecommendationAction struct {
|
|
|
2749
2982
|
|
|
2750
2983
|
func (x *PrivacySettingChannelsPersonalisedRecommendationAction) Reset() {
|
|
2751
2984
|
*x = PrivacySettingChannelsPersonalisedRecommendationAction{}
|
|
2752
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2985
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
|
|
2753
2986
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2754
2987
|
ms.StoreMessageInfo(mi)
|
|
2755
2988
|
}
|
|
@@ -2761,7 +2994,7 @@ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) String() string
|
|
|
2761
2994
|
func (*PrivacySettingChannelsPersonalisedRecommendationAction) ProtoMessage() {}
|
|
2762
2995
|
|
|
2763
2996
|
func (x *PrivacySettingChannelsPersonalisedRecommendationAction) ProtoReflect() protoreflect.Message {
|
|
2764
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
2997
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
|
|
2765
2998
|
if x != nil {
|
|
2766
2999
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2767
3000
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2774,7 +3007,7 @@ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) ProtoReflect()
|
|
|
2774
3007
|
|
|
2775
3008
|
// Deprecated: Use PrivacySettingChannelsPersonalisedRecommendationAction.ProtoReflect.Descriptor instead.
|
|
2776
3009
|
func (*PrivacySettingChannelsPersonalisedRecommendationAction) Descriptor() ([]byte, []int) {
|
|
2777
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3010
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
|
|
2778
3011
|
}
|
|
2779
3012
|
|
|
2780
3013
|
func (x *PrivacySettingChannelsPersonalisedRecommendationAction) GetIsUserOptedOut() bool {
|
|
@@ -2793,7 +3026,7 @@ type PrivacySettingDisableLinkPreviewsAction struct {
|
|
|
2793
3026
|
|
|
2794
3027
|
func (x *PrivacySettingDisableLinkPreviewsAction) Reset() {
|
|
2795
3028
|
*x = PrivacySettingDisableLinkPreviewsAction{}
|
|
2796
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3029
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
|
|
2797
3030
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2798
3031
|
ms.StoreMessageInfo(mi)
|
|
2799
3032
|
}
|
|
@@ -2805,7 +3038,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) String() string {
|
|
|
2805
3038
|
func (*PrivacySettingDisableLinkPreviewsAction) ProtoMessage() {}
|
|
2806
3039
|
|
|
2807
3040
|
func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Message {
|
|
2808
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3041
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
|
|
2809
3042
|
if x != nil {
|
|
2810
3043
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2811
3044
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2818,7 +3051,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Me
|
|
|
2818
3051
|
|
|
2819
3052
|
// Deprecated: Use PrivacySettingDisableLinkPreviewsAction.ProtoReflect.Descriptor instead.
|
|
2820
3053
|
func (*PrivacySettingDisableLinkPreviewsAction) Descriptor() ([]byte, []int) {
|
|
2821
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3054
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
|
|
2822
3055
|
}
|
|
2823
3056
|
|
|
2824
3057
|
func (x *PrivacySettingDisableLinkPreviewsAction) GetIsPreviewsDisabled() bool {
|
|
@@ -2837,7 +3070,7 @@ type WamoUserIdentifierAction struct {
|
|
|
2837
3070
|
|
|
2838
3071
|
func (x *WamoUserIdentifierAction) Reset() {
|
|
2839
3072
|
*x = WamoUserIdentifierAction{}
|
|
2840
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3073
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
|
|
2841
3074
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2842
3075
|
ms.StoreMessageInfo(mi)
|
|
2843
3076
|
}
|
|
@@ -2849,7 +3082,7 @@ func (x *WamoUserIdentifierAction) String() string {
|
|
|
2849
3082
|
func (*WamoUserIdentifierAction) ProtoMessage() {}
|
|
2850
3083
|
|
|
2851
3084
|
func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
|
|
2852
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3085
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
|
|
2853
3086
|
if x != nil {
|
|
2854
3087
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2855
3088
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2862,7 +3095,7 @@ func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
|
|
|
2862
3095
|
|
|
2863
3096
|
// Deprecated: Use WamoUserIdentifierAction.ProtoReflect.Descriptor instead.
|
|
2864
3097
|
func (*WamoUserIdentifierAction) Descriptor() ([]byte, []int) {
|
|
2865
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3098
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
|
|
2866
3099
|
}
|
|
2867
3100
|
|
|
2868
3101
|
func (x *WamoUserIdentifierAction) GetIdentifier() string {
|
|
@@ -2881,7 +3114,7 @@ type LockChatAction struct {
|
|
|
2881
3114
|
|
|
2882
3115
|
func (x *LockChatAction) Reset() {
|
|
2883
3116
|
*x = LockChatAction{}
|
|
2884
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3117
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
|
|
2885
3118
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2886
3119
|
ms.StoreMessageInfo(mi)
|
|
2887
3120
|
}
|
|
@@ -2893,7 +3126,7 @@ func (x *LockChatAction) String() string {
|
|
|
2893
3126
|
func (*LockChatAction) ProtoMessage() {}
|
|
2894
3127
|
|
|
2895
3128
|
func (x *LockChatAction) ProtoReflect() protoreflect.Message {
|
|
2896
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3129
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
|
|
2897
3130
|
if x != nil {
|
|
2898
3131
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2899
3132
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2906,7 +3139,7 @@ func (x *LockChatAction) ProtoReflect() protoreflect.Message {
|
|
|
2906
3139
|
|
|
2907
3140
|
// Deprecated: Use LockChatAction.ProtoReflect.Descriptor instead.
|
|
2908
3141
|
func (*LockChatAction) Descriptor() ([]byte, []int) {
|
|
2909
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3142
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
|
|
2910
3143
|
}
|
|
2911
3144
|
|
|
2912
3145
|
func (x *LockChatAction) GetLocked() bool {
|
|
@@ -2925,7 +3158,7 @@ type CustomPaymentMethodsAction struct {
|
|
|
2925
3158
|
|
|
2926
3159
|
func (x *CustomPaymentMethodsAction) Reset() {
|
|
2927
3160
|
*x = CustomPaymentMethodsAction{}
|
|
2928
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3161
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
|
|
2929
3162
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2930
3163
|
ms.StoreMessageInfo(mi)
|
|
2931
3164
|
}
|
|
@@ -2937,7 +3170,7 @@ func (x *CustomPaymentMethodsAction) String() string {
|
|
|
2937
3170
|
func (*CustomPaymentMethodsAction) ProtoMessage() {}
|
|
2938
3171
|
|
|
2939
3172
|
func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
|
|
2940
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3173
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
|
|
2941
3174
|
if x != nil {
|
|
2942
3175
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2943
3176
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2950,7 +3183,7 @@ func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
|
|
|
2950
3183
|
|
|
2951
3184
|
// Deprecated: Use CustomPaymentMethodsAction.ProtoReflect.Descriptor instead.
|
|
2952
3185
|
func (*CustomPaymentMethodsAction) Descriptor() ([]byte, []int) {
|
|
2953
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3186
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
|
|
2954
3187
|
}
|
|
2955
3188
|
|
|
2956
3189
|
func (x *CustomPaymentMethodsAction) GetCustomPaymentMethods() []*CustomPaymentMethod {
|
|
@@ -2972,7 +3205,7 @@ type CustomPaymentMethod struct {
|
|
|
2972
3205
|
|
|
2973
3206
|
func (x *CustomPaymentMethod) Reset() {
|
|
2974
3207
|
*x = CustomPaymentMethod{}
|
|
2975
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3208
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
|
|
2976
3209
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2977
3210
|
ms.StoreMessageInfo(mi)
|
|
2978
3211
|
}
|
|
@@ -2984,7 +3217,7 @@ func (x *CustomPaymentMethod) String() string {
|
|
|
2984
3217
|
func (*CustomPaymentMethod) ProtoMessage() {}
|
|
2985
3218
|
|
|
2986
3219
|
func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
|
|
2987
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3220
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
|
|
2988
3221
|
if x != nil {
|
|
2989
3222
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2990
3223
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2997,7 +3230,7 @@ func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
|
|
|
2997
3230
|
|
|
2998
3231
|
// Deprecated: Use CustomPaymentMethod.ProtoReflect.Descriptor instead.
|
|
2999
3232
|
func (*CustomPaymentMethod) Descriptor() ([]byte, []int) {
|
|
3000
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3233
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
|
|
3001
3234
|
}
|
|
3002
3235
|
|
|
3003
3236
|
func (x *CustomPaymentMethod) GetCredentialID() string {
|
|
@@ -3038,7 +3271,7 @@ type CustomPaymentMethodMetadata struct {
|
|
|
3038
3271
|
|
|
3039
3272
|
func (x *CustomPaymentMethodMetadata) Reset() {
|
|
3040
3273
|
*x = CustomPaymentMethodMetadata{}
|
|
3041
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3274
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
|
|
3042
3275
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3043
3276
|
ms.StoreMessageInfo(mi)
|
|
3044
3277
|
}
|
|
@@ -3050,7 +3283,7 @@ func (x *CustomPaymentMethodMetadata) String() string {
|
|
|
3050
3283
|
func (*CustomPaymentMethodMetadata) ProtoMessage() {}
|
|
3051
3284
|
|
|
3052
3285
|
func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
|
|
3053
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3286
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
|
|
3054
3287
|
if x != nil {
|
|
3055
3288
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3056
3289
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3063,7 +3296,7 @@ func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
|
|
|
3063
3296
|
|
|
3064
3297
|
// Deprecated: Use CustomPaymentMethodMetadata.ProtoReflect.Descriptor instead.
|
|
3065
3298
|
func (*CustomPaymentMethodMetadata) Descriptor() ([]byte, []int) {
|
|
3066
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3299
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
|
|
3067
3300
|
}
|
|
3068
3301
|
|
|
3069
3302
|
func (x *CustomPaymentMethodMetadata) GetKey() string {
|
|
@@ -3089,7 +3322,7 @@ type PaymentInfoAction struct {
|
|
|
3089
3322
|
|
|
3090
3323
|
func (x *PaymentInfoAction) Reset() {
|
|
3091
3324
|
*x = PaymentInfoAction{}
|
|
3092
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3325
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
|
|
3093
3326
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3094
3327
|
ms.StoreMessageInfo(mi)
|
|
3095
3328
|
}
|
|
@@ -3101,7 +3334,7 @@ func (x *PaymentInfoAction) String() string {
|
|
|
3101
3334
|
func (*PaymentInfoAction) ProtoMessage() {}
|
|
3102
3335
|
|
|
3103
3336
|
func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
|
|
3104
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3337
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
|
|
3105
3338
|
if x != nil {
|
|
3106
3339
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3107
3340
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3114,7 +3347,7 @@ func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
|
|
|
3114
3347
|
|
|
3115
3348
|
// Deprecated: Use PaymentInfoAction.ProtoReflect.Descriptor instead.
|
|
3116
3349
|
func (*PaymentInfoAction) Descriptor() ([]byte, []int) {
|
|
3117
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3350
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
|
|
3118
3351
|
}
|
|
3119
3352
|
|
|
3120
3353
|
func (x *PaymentInfoAction) GetCpi() string {
|
|
@@ -3133,7 +3366,7 @@ type LabelReorderingAction struct {
|
|
|
3133
3366
|
|
|
3134
3367
|
func (x *LabelReorderingAction) Reset() {
|
|
3135
3368
|
*x = LabelReorderingAction{}
|
|
3136
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3369
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
|
|
3137
3370
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3138
3371
|
ms.StoreMessageInfo(mi)
|
|
3139
3372
|
}
|
|
@@ -3145,7 +3378,7 @@ func (x *LabelReorderingAction) String() string {
|
|
|
3145
3378
|
func (*LabelReorderingAction) ProtoMessage() {}
|
|
3146
3379
|
|
|
3147
3380
|
func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
|
|
3148
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3381
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
|
|
3149
3382
|
if x != nil {
|
|
3150
3383
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3151
3384
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3158,7 +3391,7 @@ func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
|
|
|
3158
3391
|
|
|
3159
3392
|
// Deprecated: Use LabelReorderingAction.ProtoReflect.Descriptor instead.
|
|
3160
3393
|
func (*LabelReorderingAction) Descriptor() ([]byte, []int) {
|
|
3161
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3394
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
|
|
3162
3395
|
}
|
|
3163
3396
|
|
|
3164
3397
|
func (x *LabelReorderingAction) GetSortedLabelIDs() []int32 {
|
|
@@ -3178,7 +3411,7 @@ type DeleteIndividualCallLogAction struct {
|
|
|
3178
3411
|
|
|
3179
3412
|
func (x *DeleteIndividualCallLogAction) Reset() {
|
|
3180
3413
|
*x = DeleteIndividualCallLogAction{}
|
|
3181
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3414
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
|
|
3182
3415
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3183
3416
|
ms.StoreMessageInfo(mi)
|
|
3184
3417
|
}
|
|
@@ -3190,7 +3423,7 @@ func (x *DeleteIndividualCallLogAction) String() string {
|
|
|
3190
3423
|
func (*DeleteIndividualCallLogAction) ProtoMessage() {}
|
|
3191
3424
|
|
|
3192
3425
|
func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
|
|
3193
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3426
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
|
|
3194
3427
|
if x != nil {
|
|
3195
3428
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3196
3429
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3203,7 +3436,7 @@ func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
|
|
|
3203
3436
|
|
|
3204
3437
|
// Deprecated: Use DeleteIndividualCallLogAction.ProtoReflect.Descriptor instead.
|
|
3205
3438
|
func (*DeleteIndividualCallLogAction) Descriptor() ([]byte, []int) {
|
|
3206
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3439
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{32}
|
|
3207
3440
|
}
|
|
3208
3441
|
|
|
3209
3442
|
func (x *DeleteIndividualCallLogAction) GetPeerJID() string {
|
|
@@ -3229,7 +3462,7 @@ type BotWelcomeRequestAction struct {
|
|
|
3229
3462
|
|
|
3230
3463
|
func (x *BotWelcomeRequestAction) Reset() {
|
|
3231
3464
|
*x = BotWelcomeRequestAction{}
|
|
3232
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3465
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
|
|
3233
3466
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3234
3467
|
ms.StoreMessageInfo(mi)
|
|
3235
3468
|
}
|
|
@@ -3241,7 +3474,7 @@ func (x *BotWelcomeRequestAction) String() string {
|
|
|
3241
3474
|
func (*BotWelcomeRequestAction) ProtoMessage() {}
|
|
3242
3475
|
|
|
3243
3476
|
func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
|
|
3244
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3477
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
|
|
3245
3478
|
if x != nil {
|
|
3246
3479
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3247
3480
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3254,7 +3487,7 @@ func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
|
|
|
3254
3487
|
|
|
3255
3488
|
// Deprecated: Use BotWelcomeRequestAction.ProtoReflect.Descriptor instead.
|
|
3256
3489
|
func (*BotWelcomeRequestAction) Descriptor() ([]byte, []int) {
|
|
3257
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3490
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
|
|
3258
3491
|
}
|
|
3259
3492
|
|
|
3260
3493
|
func (x *BotWelcomeRequestAction) GetIsSent() bool {
|
|
@@ -3273,7 +3506,7 @@ type MusicUserIdAction struct {
|
|
|
3273
3506
|
|
|
3274
3507
|
func (x *MusicUserIdAction) Reset() {
|
|
3275
3508
|
*x = MusicUserIdAction{}
|
|
3276
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3509
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
|
|
3277
3510
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3278
3511
|
ms.StoreMessageInfo(mi)
|
|
3279
3512
|
}
|
|
@@ -3285,7 +3518,7 @@ func (x *MusicUserIdAction) String() string {
|
|
|
3285
3518
|
func (*MusicUserIdAction) ProtoMessage() {}
|
|
3286
3519
|
|
|
3287
3520
|
func (x *MusicUserIdAction) ProtoReflect() protoreflect.Message {
|
|
3288
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3521
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
|
|
3289
3522
|
if x != nil {
|
|
3290
3523
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3291
3524
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3298,7 +3531,7 @@ func (x *MusicUserIdAction) ProtoReflect() protoreflect.Message {
|
|
|
3298
3531
|
|
|
3299
3532
|
// Deprecated: Use MusicUserIdAction.ProtoReflect.Descriptor instead.
|
|
3300
3533
|
func (*MusicUserIdAction) Descriptor() ([]byte, []int) {
|
|
3301
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3534
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
|
|
3302
3535
|
}
|
|
3303
3536
|
|
|
3304
3537
|
func (x *MusicUserIdAction) GetMusicUserID() string {
|
|
@@ -3317,7 +3550,7 @@ type CallLogAction struct {
|
|
|
3317
3550
|
|
|
3318
3551
|
func (x *CallLogAction) Reset() {
|
|
3319
3552
|
*x = CallLogAction{}
|
|
3320
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3553
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
|
|
3321
3554
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3322
3555
|
ms.StoreMessageInfo(mi)
|
|
3323
3556
|
}
|
|
@@ -3329,7 +3562,7 @@ func (x *CallLogAction) String() string {
|
|
|
3329
3562
|
func (*CallLogAction) ProtoMessage() {}
|
|
3330
3563
|
|
|
3331
3564
|
func (x *CallLogAction) ProtoReflect() protoreflect.Message {
|
|
3332
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3565
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
|
|
3333
3566
|
if x != nil {
|
|
3334
3567
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3335
3568
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3342,7 +3575,7 @@ func (x *CallLogAction) ProtoReflect() protoreflect.Message {
|
|
|
3342
3575
|
|
|
3343
3576
|
// Deprecated: Use CallLogAction.ProtoReflect.Descriptor instead.
|
|
3344
3577
|
func (*CallLogAction) Descriptor() ([]byte, []int) {
|
|
3345
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3578
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{35}
|
|
3346
3579
|
}
|
|
3347
3580
|
|
|
3348
3581
|
func (x *CallLogAction) GetCallLogRecord() *CallLogRecord {
|
|
@@ -3361,7 +3594,7 @@ type PrivacySettingRelayAllCalls struct {
|
|
|
3361
3594
|
|
|
3362
3595
|
func (x *PrivacySettingRelayAllCalls) Reset() {
|
|
3363
3596
|
*x = PrivacySettingRelayAllCalls{}
|
|
3364
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3597
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
|
|
3365
3598
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3366
3599
|
ms.StoreMessageInfo(mi)
|
|
3367
3600
|
}
|
|
@@ -3373,7 +3606,7 @@ func (x *PrivacySettingRelayAllCalls) String() string {
|
|
|
3373
3606
|
func (*PrivacySettingRelayAllCalls) ProtoMessage() {}
|
|
3374
3607
|
|
|
3375
3608
|
func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
|
|
3376
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3609
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
|
|
3377
3610
|
if x != nil {
|
|
3378
3611
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3379
3612
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3386,7 +3619,7 @@ func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
|
|
|
3386
3619
|
|
|
3387
3620
|
// Deprecated: Use PrivacySettingRelayAllCalls.ProtoReflect.Descriptor instead.
|
|
3388
3621
|
func (*PrivacySettingRelayAllCalls) Descriptor() ([]byte, []int) {
|
|
3389
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3622
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
|
|
3390
3623
|
}
|
|
3391
3624
|
|
|
3392
3625
|
func (x *PrivacySettingRelayAllCalls) GetIsEnabled() bool {
|
|
@@ -3405,7 +3638,7 @@ type DetectedOutcomesStatusAction struct {
|
|
|
3405
3638
|
|
|
3406
3639
|
func (x *DetectedOutcomesStatusAction) Reset() {
|
|
3407
3640
|
*x = DetectedOutcomesStatusAction{}
|
|
3408
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3641
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
|
|
3409
3642
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3410
3643
|
ms.StoreMessageInfo(mi)
|
|
3411
3644
|
}
|
|
@@ -3417,7 +3650,7 @@ func (x *DetectedOutcomesStatusAction) String() string {
|
|
|
3417
3650
|
func (*DetectedOutcomesStatusAction) ProtoMessage() {}
|
|
3418
3651
|
|
|
3419
3652
|
func (x *DetectedOutcomesStatusAction) ProtoReflect() protoreflect.Message {
|
|
3420
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3653
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
|
|
3421
3654
|
if x != nil {
|
|
3422
3655
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3423
3656
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3430,7 +3663,7 @@ func (x *DetectedOutcomesStatusAction) ProtoReflect() protoreflect.Message {
|
|
|
3430
3663
|
|
|
3431
3664
|
// Deprecated: Use DetectedOutcomesStatusAction.ProtoReflect.Descriptor instead.
|
|
3432
3665
|
func (*DetectedOutcomesStatusAction) Descriptor() ([]byte, []int) {
|
|
3433
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3666
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
|
|
3434
3667
|
}
|
|
3435
3668
|
|
|
3436
3669
|
func (x *DetectedOutcomesStatusAction) GetIsEnabled() bool {
|
|
@@ -3449,7 +3682,7 @@ type ExternalWebBetaAction struct {
|
|
|
3449
3682
|
|
|
3450
3683
|
func (x *ExternalWebBetaAction) Reset() {
|
|
3451
3684
|
*x = ExternalWebBetaAction{}
|
|
3452
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3685
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
|
|
3453
3686
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3454
3687
|
ms.StoreMessageInfo(mi)
|
|
3455
3688
|
}
|
|
@@ -3461,7 +3694,7 @@ func (x *ExternalWebBetaAction) String() string {
|
|
|
3461
3694
|
func (*ExternalWebBetaAction) ProtoMessage() {}
|
|
3462
3695
|
|
|
3463
3696
|
func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
|
|
3464
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3697
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
|
|
3465
3698
|
if x != nil {
|
|
3466
3699
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3467
3700
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3474,7 +3707,7 @@ func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
|
|
|
3474
3707
|
|
|
3475
3708
|
// Deprecated: Use ExternalWebBetaAction.ProtoReflect.Descriptor instead.
|
|
3476
3709
|
func (*ExternalWebBetaAction) Descriptor() ([]byte, []int) {
|
|
3477
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3710
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
|
|
3478
3711
|
}
|
|
3479
3712
|
|
|
3480
3713
|
func (x *ExternalWebBetaAction) GetIsOptIn() bool {
|
|
@@ -3493,7 +3726,7 @@ type MarketingMessageBroadcastAction struct {
|
|
|
3493
3726
|
|
|
3494
3727
|
func (x *MarketingMessageBroadcastAction) Reset() {
|
|
3495
3728
|
*x = MarketingMessageBroadcastAction{}
|
|
3496
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3729
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
|
|
3497
3730
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3498
3731
|
ms.StoreMessageInfo(mi)
|
|
3499
3732
|
}
|
|
@@ -3505,7 +3738,7 @@ func (x *MarketingMessageBroadcastAction) String() string {
|
|
|
3505
3738
|
func (*MarketingMessageBroadcastAction) ProtoMessage() {}
|
|
3506
3739
|
|
|
3507
3740
|
func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
|
|
3508
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3741
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
|
|
3509
3742
|
if x != nil {
|
|
3510
3743
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3511
3744
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3518,7 +3751,7 @@ func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
|
|
|
3518
3751
|
|
|
3519
3752
|
// Deprecated: Use MarketingMessageBroadcastAction.ProtoReflect.Descriptor instead.
|
|
3520
3753
|
func (*MarketingMessageBroadcastAction) Descriptor() ([]byte, []int) {
|
|
3521
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3754
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
|
|
3522
3755
|
}
|
|
3523
3756
|
|
|
3524
3757
|
func (x *MarketingMessageBroadcastAction) GetRepliedCount() int32 {
|
|
@@ -3537,7 +3770,7 @@ type PnForLidChatAction struct {
|
|
|
3537
3770
|
|
|
3538
3771
|
func (x *PnForLidChatAction) Reset() {
|
|
3539
3772
|
*x = PnForLidChatAction{}
|
|
3540
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3773
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
|
|
3541
3774
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3542
3775
|
ms.StoreMessageInfo(mi)
|
|
3543
3776
|
}
|
|
@@ -3549,7 +3782,7 @@ func (x *PnForLidChatAction) String() string {
|
|
|
3549
3782
|
func (*PnForLidChatAction) ProtoMessage() {}
|
|
3550
3783
|
|
|
3551
3784
|
func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
|
|
3552
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3785
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
|
|
3553
3786
|
if x != nil {
|
|
3554
3787
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3555
3788
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3562,7 +3795,7 @@ func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
|
|
|
3562
3795
|
|
|
3563
3796
|
// Deprecated: Use PnForLidChatAction.ProtoReflect.Descriptor instead.
|
|
3564
3797
|
func (*PnForLidChatAction) Descriptor() ([]byte, []int) {
|
|
3565
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3798
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
|
|
3566
3799
|
}
|
|
3567
3800
|
|
|
3568
3801
|
func (x *PnForLidChatAction) GetPnJID() string {
|
|
@@ -3581,7 +3814,7 @@ type ChatAssignmentOpenedStatusAction struct {
|
|
|
3581
3814
|
|
|
3582
3815
|
func (x *ChatAssignmentOpenedStatusAction) Reset() {
|
|
3583
3816
|
*x = ChatAssignmentOpenedStatusAction{}
|
|
3584
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3817
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
|
|
3585
3818
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3586
3819
|
ms.StoreMessageInfo(mi)
|
|
3587
3820
|
}
|
|
@@ -3593,7 +3826,7 @@ func (x *ChatAssignmentOpenedStatusAction) String() string {
|
|
|
3593
3826
|
func (*ChatAssignmentOpenedStatusAction) ProtoMessage() {}
|
|
3594
3827
|
|
|
3595
3828
|
func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
|
|
3596
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3829
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
|
|
3597
3830
|
if x != nil {
|
|
3598
3831
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3599
3832
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3606,7 +3839,7 @@ func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
|
|
|
3606
3839
|
|
|
3607
3840
|
// Deprecated: Use ChatAssignmentOpenedStatusAction.ProtoReflect.Descriptor instead.
|
|
3608
3841
|
func (*ChatAssignmentOpenedStatusAction) Descriptor() ([]byte, []int) {
|
|
3609
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3842
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
|
|
3610
3843
|
}
|
|
3611
3844
|
|
|
3612
3845
|
func (x *ChatAssignmentOpenedStatusAction) GetChatOpened() bool {
|
|
@@ -3625,7 +3858,7 @@ type ChatAssignmentAction struct {
|
|
|
3625
3858
|
|
|
3626
3859
|
func (x *ChatAssignmentAction) Reset() {
|
|
3627
3860
|
*x = ChatAssignmentAction{}
|
|
3628
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3861
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
|
|
3629
3862
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3630
3863
|
ms.StoreMessageInfo(mi)
|
|
3631
3864
|
}
|
|
@@ -3637,7 +3870,7 @@ func (x *ChatAssignmentAction) String() string {
|
|
|
3637
3870
|
func (*ChatAssignmentAction) ProtoMessage() {}
|
|
3638
3871
|
|
|
3639
3872
|
func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
|
|
3640
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3873
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
|
|
3641
3874
|
if x != nil {
|
|
3642
3875
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3643
3876
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3650,7 +3883,7 @@ func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
|
|
|
3650
3883
|
|
|
3651
3884
|
// Deprecated: Use ChatAssignmentAction.ProtoReflect.Descriptor instead.
|
|
3652
3885
|
func (*ChatAssignmentAction) Descriptor() ([]byte, []int) {
|
|
3653
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3886
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
|
|
3654
3887
|
}
|
|
3655
3888
|
|
|
3656
3889
|
func (x *ChatAssignmentAction) GetDeviceAgentID() string {
|
|
@@ -3681,7 +3914,7 @@ type StickerAction struct {
|
|
|
3681
3914
|
|
|
3682
3915
|
func (x *StickerAction) Reset() {
|
|
3683
3916
|
*x = StickerAction{}
|
|
3684
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3917
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
|
|
3685
3918
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3686
3919
|
ms.StoreMessageInfo(mi)
|
|
3687
3920
|
}
|
|
@@ -3693,7 +3926,7 @@ func (x *StickerAction) String() string {
|
|
|
3693
3926
|
func (*StickerAction) ProtoMessage() {}
|
|
3694
3927
|
|
|
3695
3928
|
func (x *StickerAction) ProtoReflect() protoreflect.Message {
|
|
3696
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
3929
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
|
|
3697
3930
|
if x != nil {
|
|
3698
3931
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3699
3932
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3706,7 +3939,7 @@ func (x *StickerAction) ProtoReflect() protoreflect.Message {
|
|
|
3706
3939
|
|
|
3707
3940
|
// Deprecated: Use StickerAction.ProtoReflect.Descriptor instead.
|
|
3708
3941
|
func (*StickerAction) Descriptor() ([]byte, []int) {
|
|
3709
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
3942
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
|
|
3710
3943
|
}
|
|
3711
3944
|
|
|
3712
3945
|
func (x *StickerAction) GetURL() string {
|
|
@@ -3809,7 +4042,7 @@ type RemoveRecentStickerAction struct {
|
|
|
3809
4042
|
|
|
3810
4043
|
func (x *RemoveRecentStickerAction) Reset() {
|
|
3811
4044
|
*x = RemoveRecentStickerAction{}
|
|
3812
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4045
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
|
|
3813
4046
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3814
4047
|
ms.StoreMessageInfo(mi)
|
|
3815
4048
|
}
|
|
@@ -3821,7 +4054,7 @@ func (x *RemoveRecentStickerAction) String() string {
|
|
|
3821
4054
|
func (*RemoveRecentStickerAction) ProtoMessage() {}
|
|
3822
4055
|
|
|
3823
4056
|
func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
|
|
3824
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4057
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
|
|
3825
4058
|
if x != nil {
|
|
3826
4059
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3827
4060
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3834,7 +4067,7 @@ func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
|
|
|
3834
4067
|
|
|
3835
4068
|
// Deprecated: Use RemoveRecentStickerAction.ProtoReflect.Descriptor instead.
|
|
3836
4069
|
func (*RemoveRecentStickerAction) Descriptor() ([]byte, []int) {
|
|
3837
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4070
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
|
|
3838
4071
|
}
|
|
3839
4072
|
|
|
3840
4073
|
func (x *RemoveRecentStickerAction) GetLastStickerSentTS() int64 {
|
|
@@ -3853,7 +4086,7 @@ type PrimaryVersionAction struct {
|
|
|
3853
4086
|
|
|
3854
4087
|
func (x *PrimaryVersionAction) Reset() {
|
|
3855
4088
|
*x = PrimaryVersionAction{}
|
|
3856
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4089
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
|
|
3857
4090
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3858
4091
|
ms.StoreMessageInfo(mi)
|
|
3859
4092
|
}
|
|
@@ -3865,7 +4098,7 @@ func (x *PrimaryVersionAction) String() string {
|
|
|
3865
4098
|
func (*PrimaryVersionAction) ProtoMessage() {}
|
|
3866
4099
|
|
|
3867
4100
|
func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
|
|
3868
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4101
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
|
|
3869
4102
|
if x != nil {
|
|
3870
4103
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3871
4104
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3878,7 +4111,7 @@ func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
|
|
|
3878
4111
|
|
|
3879
4112
|
// Deprecated: Use PrimaryVersionAction.ProtoReflect.Descriptor instead.
|
|
3880
4113
|
func (*PrimaryVersionAction) Descriptor() ([]byte, []int) {
|
|
3881
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4114
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
|
|
3882
4115
|
}
|
|
3883
4116
|
|
|
3884
4117
|
func (x *PrimaryVersionAction) GetVersion() string {
|
|
@@ -3897,7 +4130,7 @@ type NuxAction struct {
|
|
|
3897
4130
|
|
|
3898
4131
|
func (x *NuxAction) Reset() {
|
|
3899
4132
|
*x = NuxAction{}
|
|
3900
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4133
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
|
|
3901
4134
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3902
4135
|
ms.StoreMessageInfo(mi)
|
|
3903
4136
|
}
|
|
@@ -3909,7 +4142,7 @@ func (x *NuxAction) String() string {
|
|
|
3909
4142
|
func (*NuxAction) ProtoMessage() {}
|
|
3910
4143
|
|
|
3911
4144
|
func (x *NuxAction) ProtoReflect() protoreflect.Message {
|
|
3912
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4145
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
|
|
3913
4146
|
if x != nil {
|
|
3914
4147
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3915
4148
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3922,7 +4155,7 @@ func (x *NuxAction) ProtoReflect() protoreflect.Message {
|
|
|
3922
4155
|
|
|
3923
4156
|
// Deprecated: Use NuxAction.ProtoReflect.Descriptor instead.
|
|
3924
4157
|
func (*NuxAction) Descriptor() ([]byte, []int) {
|
|
3925
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4158
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
|
|
3926
4159
|
}
|
|
3927
4160
|
|
|
3928
4161
|
func (x *NuxAction) GetAcknowledged() bool {
|
|
@@ -3941,7 +4174,7 @@ type TimeFormatAction struct {
|
|
|
3941
4174
|
|
|
3942
4175
|
func (x *TimeFormatAction) Reset() {
|
|
3943
4176
|
*x = TimeFormatAction{}
|
|
3944
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4177
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
|
|
3945
4178
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3946
4179
|
ms.StoreMessageInfo(mi)
|
|
3947
4180
|
}
|
|
@@ -3953,7 +4186,7 @@ func (x *TimeFormatAction) String() string {
|
|
|
3953
4186
|
func (*TimeFormatAction) ProtoMessage() {}
|
|
3954
4187
|
|
|
3955
4188
|
func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
|
|
3956
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4189
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
|
|
3957
4190
|
if x != nil {
|
|
3958
4191
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3959
4192
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3966,7 +4199,7 @@ func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
|
|
|
3966
4199
|
|
|
3967
4200
|
// Deprecated: Use TimeFormatAction.ProtoReflect.Descriptor instead.
|
|
3968
4201
|
func (*TimeFormatAction) Descriptor() ([]byte, []int) {
|
|
3969
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4202
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
|
|
3970
4203
|
}
|
|
3971
4204
|
|
|
3972
4205
|
func (x *TimeFormatAction) GetIsTwentyFourHourFormatEnabled() bool {
|
|
@@ -3985,7 +4218,7 @@ type UserStatusMuteAction struct {
|
|
|
3985
4218
|
|
|
3986
4219
|
func (x *UserStatusMuteAction) Reset() {
|
|
3987
4220
|
*x = UserStatusMuteAction{}
|
|
3988
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4221
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
|
|
3989
4222
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3990
4223
|
ms.StoreMessageInfo(mi)
|
|
3991
4224
|
}
|
|
@@ -3997,7 +4230,7 @@ func (x *UserStatusMuteAction) String() string {
|
|
|
3997
4230
|
func (*UserStatusMuteAction) ProtoMessage() {}
|
|
3998
4231
|
|
|
3999
4232
|
func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
|
|
4000
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4233
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
|
|
4001
4234
|
if x != nil {
|
|
4002
4235
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4003
4236
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4010,7 +4243,7 @@ func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
|
|
|
4010
4243
|
|
|
4011
4244
|
// Deprecated: Use UserStatusMuteAction.ProtoReflect.Descriptor instead.
|
|
4012
4245
|
func (*UserStatusMuteAction) Descriptor() ([]byte, []int) {
|
|
4013
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4246
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
|
|
4014
4247
|
}
|
|
4015
4248
|
|
|
4016
4249
|
func (x *UserStatusMuteAction) GetMuted() bool {
|
|
@@ -4031,7 +4264,7 @@ type SubscriptionAction struct {
|
|
|
4031
4264
|
|
|
4032
4265
|
func (x *SubscriptionAction) Reset() {
|
|
4033
4266
|
*x = SubscriptionAction{}
|
|
4034
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4267
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
|
|
4035
4268
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4036
4269
|
ms.StoreMessageInfo(mi)
|
|
4037
4270
|
}
|
|
@@ -4043,7 +4276,7 @@ func (x *SubscriptionAction) String() string {
|
|
|
4043
4276
|
func (*SubscriptionAction) ProtoMessage() {}
|
|
4044
4277
|
|
|
4045
4278
|
func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
|
|
4046
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4279
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
|
|
4047
4280
|
if x != nil {
|
|
4048
4281
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4049
4282
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4056,7 +4289,7 @@ func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
|
|
|
4056
4289
|
|
|
4057
4290
|
// Deprecated: Use SubscriptionAction.ProtoReflect.Descriptor instead.
|
|
4058
4291
|
func (*SubscriptionAction) Descriptor() ([]byte, []int) {
|
|
4059
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4292
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
|
|
4060
4293
|
}
|
|
4061
4294
|
|
|
4062
4295
|
func (x *SubscriptionAction) GetIsDeactivated() bool {
|
|
@@ -4091,7 +4324,7 @@ type AgentAction struct {
|
|
|
4091
4324
|
|
|
4092
4325
|
func (x *AgentAction) Reset() {
|
|
4093
4326
|
*x = AgentAction{}
|
|
4094
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4327
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
|
|
4095
4328
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4096
4329
|
ms.StoreMessageInfo(mi)
|
|
4097
4330
|
}
|
|
@@ -4103,7 +4336,7 @@ func (x *AgentAction) String() string {
|
|
|
4103
4336
|
func (*AgentAction) ProtoMessage() {}
|
|
4104
4337
|
|
|
4105
4338
|
func (x *AgentAction) ProtoReflect() protoreflect.Message {
|
|
4106
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4339
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
|
|
4107
4340
|
if x != nil {
|
|
4108
4341
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4109
4342
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4116,7 +4349,7 @@ func (x *AgentAction) ProtoReflect() protoreflect.Message {
|
|
|
4116
4349
|
|
|
4117
4350
|
// Deprecated: Use AgentAction.ProtoReflect.Descriptor instead.
|
|
4118
4351
|
func (*AgentAction) Descriptor() ([]byte, []int) {
|
|
4119
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4352
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
|
|
4120
4353
|
}
|
|
4121
4354
|
|
|
4122
4355
|
func (x *AgentAction) GetName() string {
|
|
@@ -4149,7 +4382,7 @@ type AndroidUnsupportedActions struct {
|
|
|
4149
4382
|
|
|
4150
4383
|
func (x *AndroidUnsupportedActions) Reset() {
|
|
4151
4384
|
*x = AndroidUnsupportedActions{}
|
|
4152
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4385
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
|
|
4153
4386
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4154
4387
|
ms.StoreMessageInfo(mi)
|
|
4155
4388
|
}
|
|
@@ -4161,7 +4394,7 @@ func (x *AndroidUnsupportedActions) String() string {
|
|
|
4161
4394
|
func (*AndroidUnsupportedActions) ProtoMessage() {}
|
|
4162
4395
|
|
|
4163
4396
|
func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
|
|
4164
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4397
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
|
|
4165
4398
|
if x != nil {
|
|
4166
4399
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4167
4400
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4174,7 +4407,7 @@ func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
|
|
|
4174
4407
|
|
|
4175
4408
|
// Deprecated: Use AndroidUnsupportedActions.ProtoReflect.Descriptor instead.
|
|
4176
4409
|
func (*AndroidUnsupportedActions) Descriptor() ([]byte, []int) {
|
|
4177
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4410
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
|
|
4178
4411
|
}
|
|
4179
4412
|
|
|
4180
4413
|
func (x *AndroidUnsupportedActions) GetAllowed() bool {
|
|
@@ -4193,7 +4426,7 @@ type PrimaryFeature struct {
|
|
|
4193
4426
|
|
|
4194
4427
|
func (x *PrimaryFeature) Reset() {
|
|
4195
4428
|
*x = PrimaryFeature{}
|
|
4196
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4429
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
|
|
4197
4430
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4198
4431
|
ms.StoreMessageInfo(mi)
|
|
4199
4432
|
}
|
|
@@ -4205,7 +4438,7 @@ func (x *PrimaryFeature) String() string {
|
|
|
4205
4438
|
func (*PrimaryFeature) ProtoMessage() {}
|
|
4206
4439
|
|
|
4207
4440
|
func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
|
|
4208
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4441
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
|
|
4209
4442
|
if x != nil {
|
|
4210
4443
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4211
4444
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4218,7 +4451,7 @@ func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
|
|
|
4218
4451
|
|
|
4219
4452
|
// Deprecated: Use PrimaryFeature.ProtoReflect.Descriptor instead.
|
|
4220
4453
|
func (*PrimaryFeature) Descriptor() ([]byte, []int) {
|
|
4221
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4454
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
|
|
4222
4455
|
}
|
|
4223
4456
|
|
|
4224
4457
|
func (x *PrimaryFeature) GetFlags() []string {
|
|
@@ -4237,7 +4470,7 @@ type KeyExpiration struct {
|
|
|
4237
4470
|
|
|
4238
4471
|
func (x *KeyExpiration) Reset() {
|
|
4239
4472
|
*x = KeyExpiration{}
|
|
4240
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4473
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
|
|
4241
4474
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4242
4475
|
ms.StoreMessageInfo(mi)
|
|
4243
4476
|
}
|
|
@@ -4249,7 +4482,7 @@ func (x *KeyExpiration) String() string {
|
|
|
4249
4482
|
func (*KeyExpiration) ProtoMessage() {}
|
|
4250
4483
|
|
|
4251
4484
|
func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
|
|
4252
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4485
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
|
|
4253
4486
|
if x != nil {
|
|
4254
4487
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4255
4488
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4262,7 +4495,7 @@ func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
|
|
|
4262
4495
|
|
|
4263
4496
|
// Deprecated: Use KeyExpiration.ProtoReflect.Descriptor instead.
|
|
4264
4497
|
func (*KeyExpiration) Descriptor() ([]byte, []int) {
|
|
4265
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4498
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
|
|
4266
4499
|
}
|
|
4267
4500
|
|
|
4268
4501
|
func (x *KeyExpiration) GetExpiredKeyEpoch() int32 {
|
|
@@ -4282,7 +4515,7 @@ type SyncActionMessage struct {
|
|
|
4282
4515
|
|
|
4283
4516
|
func (x *SyncActionMessage) Reset() {
|
|
4284
4517
|
*x = SyncActionMessage{}
|
|
4285
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4518
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
|
|
4286
4519
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4287
4520
|
ms.StoreMessageInfo(mi)
|
|
4288
4521
|
}
|
|
@@ -4294,7 +4527,7 @@ func (x *SyncActionMessage) String() string {
|
|
|
4294
4527
|
func (*SyncActionMessage) ProtoMessage() {}
|
|
4295
4528
|
|
|
4296
4529
|
func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
|
|
4297
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4530
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
|
|
4298
4531
|
if x != nil {
|
|
4299
4532
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4300
4533
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4307,7 +4540,7 @@ func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
|
|
|
4307
4540
|
|
|
4308
4541
|
// Deprecated: Use SyncActionMessage.ProtoReflect.Descriptor instead.
|
|
4309
4542
|
func (*SyncActionMessage) Descriptor() ([]byte, []int) {
|
|
4310
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4543
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
|
|
4311
4544
|
}
|
|
4312
4545
|
|
|
4313
4546
|
func (x *SyncActionMessage) GetKey() *waCommon.MessageKey {
|
|
@@ -4335,7 +4568,7 @@ type SyncActionMessageRange struct {
|
|
|
4335
4568
|
|
|
4336
4569
|
func (x *SyncActionMessageRange) Reset() {
|
|
4337
4570
|
*x = SyncActionMessageRange{}
|
|
4338
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4571
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
|
|
4339
4572
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4340
4573
|
ms.StoreMessageInfo(mi)
|
|
4341
4574
|
}
|
|
@@ -4347,7 +4580,7 @@ func (x *SyncActionMessageRange) String() string {
|
|
|
4347
4580
|
func (*SyncActionMessageRange) ProtoMessage() {}
|
|
4348
4581
|
|
|
4349
4582
|
func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
|
|
4350
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4583
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
|
|
4351
4584
|
if x != nil {
|
|
4352
4585
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4353
4586
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4360,7 +4593,7 @@ func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
|
|
|
4360
4593
|
|
|
4361
4594
|
// Deprecated: Use SyncActionMessageRange.ProtoReflect.Descriptor instead.
|
|
4362
4595
|
func (*SyncActionMessageRange) Descriptor() ([]byte, []int) {
|
|
4363
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4596
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
|
|
4364
4597
|
}
|
|
4365
4598
|
|
|
4366
4599
|
func (x *SyncActionMessageRange) GetLastMessageTimestamp() int64 {
|
|
@@ -4393,7 +4626,7 @@ type UnarchiveChatsSetting struct {
|
|
|
4393
4626
|
|
|
4394
4627
|
func (x *UnarchiveChatsSetting) Reset() {
|
|
4395
4628
|
*x = UnarchiveChatsSetting{}
|
|
4396
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4629
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
|
|
4397
4630
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4398
4631
|
ms.StoreMessageInfo(mi)
|
|
4399
4632
|
}
|
|
@@ -4405,7 +4638,7 @@ func (x *UnarchiveChatsSetting) String() string {
|
|
|
4405
4638
|
func (*UnarchiveChatsSetting) ProtoMessage() {}
|
|
4406
4639
|
|
|
4407
4640
|
func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
|
|
4408
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4641
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
|
|
4409
4642
|
if x != nil {
|
|
4410
4643
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4411
4644
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4418,7 +4651,7 @@ func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
|
|
|
4418
4651
|
|
|
4419
4652
|
// Deprecated: Use UnarchiveChatsSetting.ProtoReflect.Descriptor instead.
|
|
4420
4653
|
func (*UnarchiveChatsSetting) Descriptor() ([]byte, []int) {
|
|
4421
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4654
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
|
|
4422
4655
|
}
|
|
4423
4656
|
|
|
4424
4657
|
func (x *UnarchiveChatsSetting) GetUnarchiveChats() bool {
|
|
@@ -4437,7 +4670,7 @@ type DeleteChatAction struct {
|
|
|
4437
4670
|
|
|
4438
4671
|
func (x *DeleteChatAction) Reset() {
|
|
4439
4672
|
*x = DeleteChatAction{}
|
|
4440
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4673
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
|
|
4441
4674
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4442
4675
|
ms.StoreMessageInfo(mi)
|
|
4443
4676
|
}
|
|
@@ -4449,7 +4682,7 @@ func (x *DeleteChatAction) String() string {
|
|
|
4449
4682
|
func (*DeleteChatAction) ProtoMessage() {}
|
|
4450
4683
|
|
|
4451
4684
|
func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
|
|
4452
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4685
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
|
|
4453
4686
|
if x != nil {
|
|
4454
4687
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4455
4688
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4462,7 +4695,7 @@ func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
|
|
|
4462
4695
|
|
|
4463
4696
|
// Deprecated: Use DeleteChatAction.ProtoReflect.Descriptor instead.
|
|
4464
4697
|
func (*DeleteChatAction) Descriptor() ([]byte, []int) {
|
|
4465
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4698
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
|
|
4466
4699
|
}
|
|
4467
4700
|
|
|
4468
4701
|
func (x *DeleteChatAction) GetMessageRange() *SyncActionMessageRange {
|
|
@@ -4481,7 +4714,7 @@ type ClearChatAction struct {
|
|
|
4481
4714
|
|
|
4482
4715
|
func (x *ClearChatAction) Reset() {
|
|
4483
4716
|
*x = ClearChatAction{}
|
|
4484
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4717
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
|
|
4485
4718
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4486
4719
|
ms.StoreMessageInfo(mi)
|
|
4487
4720
|
}
|
|
@@ -4493,7 +4726,7 @@ func (x *ClearChatAction) String() string {
|
|
|
4493
4726
|
func (*ClearChatAction) ProtoMessage() {}
|
|
4494
4727
|
|
|
4495
4728
|
func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
|
|
4496
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4729
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
|
|
4497
4730
|
if x != nil {
|
|
4498
4731
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4499
4732
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4506,7 +4739,7 @@ func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
|
|
|
4506
4739
|
|
|
4507
4740
|
// Deprecated: Use ClearChatAction.ProtoReflect.Descriptor instead.
|
|
4508
4741
|
func (*ClearChatAction) Descriptor() ([]byte, []int) {
|
|
4509
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4742
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
|
|
4510
4743
|
}
|
|
4511
4744
|
|
|
4512
4745
|
func (x *ClearChatAction) GetMessageRange() *SyncActionMessageRange {
|
|
@@ -4526,7 +4759,7 @@ type MarkChatAsReadAction struct {
|
|
|
4526
4759
|
|
|
4527
4760
|
func (x *MarkChatAsReadAction) Reset() {
|
|
4528
4761
|
*x = MarkChatAsReadAction{}
|
|
4529
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4762
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
|
|
4530
4763
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4531
4764
|
ms.StoreMessageInfo(mi)
|
|
4532
4765
|
}
|
|
@@ -4538,7 +4771,7 @@ func (x *MarkChatAsReadAction) String() string {
|
|
|
4538
4771
|
func (*MarkChatAsReadAction) ProtoMessage() {}
|
|
4539
4772
|
|
|
4540
4773
|
func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
|
|
4541
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4774
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
|
|
4542
4775
|
if x != nil {
|
|
4543
4776
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4544
4777
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4551,7 +4784,7 @@ func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
|
|
|
4551
4784
|
|
|
4552
4785
|
// Deprecated: Use MarkChatAsReadAction.ProtoReflect.Descriptor instead.
|
|
4553
4786
|
func (*MarkChatAsReadAction) Descriptor() ([]byte, []int) {
|
|
4554
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4787
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{59}
|
|
4555
4788
|
}
|
|
4556
4789
|
|
|
4557
4790
|
func (x *MarkChatAsReadAction) GetRead() bool {
|
|
@@ -4578,7 +4811,7 @@ type DeleteMessageForMeAction struct {
|
|
|
4578
4811
|
|
|
4579
4812
|
func (x *DeleteMessageForMeAction) Reset() {
|
|
4580
4813
|
*x = DeleteMessageForMeAction{}
|
|
4581
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4814
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
|
|
4582
4815
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4583
4816
|
ms.StoreMessageInfo(mi)
|
|
4584
4817
|
}
|
|
@@ -4590,7 +4823,7 @@ func (x *DeleteMessageForMeAction) String() string {
|
|
|
4590
4823
|
func (*DeleteMessageForMeAction) ProtoMessage() {}
|
|
4591
4824
|
|
|
4592
4825
|
func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
|
|
4593
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4826
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
|
|
4594
4827
|
if x != nil {
|
|
4595
4828
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4596
4829
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4603,7 +4836,7 @@ func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
|
|
|
4603
4836
|
|
|
4604
4837
|
// Deprecated: Use DeleteMessageForMeAction.ProtoReflect.Descriptor instead.
|
|
4605
4838
|
func (*DeleteMessageForMeAction) Descriptor() ([]byte, []int) {
|
|
4606
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4839
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{60}
|
|
4607
4840
|
}
|
|
4608
4841
|
|
|
4609
4842
|
func (x *DeleteMessageForMeAction) GetDeleteMedia() bool {
|
|
@@ -4630,7 +4863,7 @@ type ArchiveChatAction struct {
|
|
|
4630
4863
|
|
|
4631
4864
|
func (x *ArchiveChatAction) Reset() {
|
|
4632
4865
|
*x = ArchiveChatAction{}
|
|
4633
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4866
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
|
|
4634
4867
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4635
4868
|
ms.StoreMessageInfo(mi)
|
|
4636
4869
|
}
|
|
@@ -4642,7 +4875,7 @@ func (x *ArchiveChatAction) String() string {
|
|
|
4642
4875
|
func (*ArchiveChatAction) ProtoMessage() {}
|
|
4643
4876
|
|
|
4644
4877
|
func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
|
|
4645
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4878
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
|
|
4646
4879
|
if x != nil {
|
|
4647
4880
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4648
4881
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4655,7 +4888,7 @@ func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
|
|
|
4655
4888
|
|
|
4656
4889
|
// Deprecated: Use ArchiveChatAction.ProtoReflect.Descriptor instead.
|
|
4657
4890
|
func (*ArchiveChatAction) Descriptor() ([]byte, []int) {
|
|
4658
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4891
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{61}
|
|
4659
4892
|
}
|
|
4660
4893
|
|
|
4661
4894
|
func (x *ArchiveChatAction) GetArchived() bool {
|
|
@@ -4681,7 +4914,7 @@ type RecentEmojiWeightsAction struct {
|
|
|
4681
4914
|
|
|
4682
4915
|
func (x *RecentEmojiWeightsAction) Reset() {
|
|
4683
4916
|
*x = RecentEmojiWeightsAction{}
|
|
4684
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4917
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
|
|
4685
4918
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4686
4919
|
ms.StoreMessageInfo(mi)
|
|
4687
4920
|
}
|
|
@@ -4693,7 +4926,7 @@ func (x *RecentEmojiWeightsAction) String() string {
|
|
|
4693
4926
|
func (*RecentEmojiWeightsAction) ProtoMessage() {}
|
|
4694
4927
|
|
|
4695
4928
|
func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
|
|
4696
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4929
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
|
|
4697
4930
|
if x != nil {
|
|
4698
4931
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4699
4932
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4706,7 +4939,7 @@ func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
|
|
|
4706
4939
|
|
|
4707
4940
|
// Deprecated: Use RecentEmojiWeightsAction.ProtoReflect.Descriptor instead.
|
|
4708
4941
|
func (*RecentEmojiWeightsAction) Descriptor() ([]byte, []int) {
|
|
4709
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4942
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{62}
|
|
4710
4943
|
}
|
|
4711
4944
|
|
|
4712
4945
|
func (x *RecentEmojiWeightsAction) GetWeights() []*RecentEmojiWeight {
|
|
@@ -4725,7 +4958,7 @@ type LabelAssociationAction struct {
|
|
|
4725
4958
|
|
|
4726
4959
|
func (x *LabelAssociationAction) Reset() {
|
|
4727
4960
|
*x = LabelAssociationAction{}
|
|
4728
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4961
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
|
|
4729
4962
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4730
4963
|
ms.StoreMessageInfo(mi)
|
|
4731
4964
|
}
|
|
@@ -4737,7 +4970,7 @@ func (x *LabelAssociationAction) String() string {
|
|
|
4737
4970
|
func (*LabelAssociationAction) ProtoMessage() {}
|
|
4738
4971
|
|
|
4739
4972
|
func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
|
|
4740
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
4973
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
|
|
4741
4974
|
if x != nil {
|
|
4742
4975
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4743
4976
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4750,7 +4983,7 @@ func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
|
|
|
4750
4983
|
|
|
4751
4984
|
// Deprecated: Use LabelAssociationAction.ProtoReflect.Descriptor instead.
|
|
4752
4985
|
func (*LabelAssociationAction) Descriptor() ([]byte, []int) {
|
|
4753
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
4986
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{63}
|
|
4754
4987
|
}
|
|
4755
4988
|
|
|
4756
4989
|
func (x *LabelAssociationAction) GetLabeled() bool {
|
|
@@ -4773,7 +5006,7 @@ type QuickReplyAction struct {
|
|
|
4773
5006
|
|
|
4774
5007
|
func (x *QuickReplyAction) Reset() {
|
|
4775
5008
|
*x = QuickReplyAction{}
|
|
4776
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5009
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
|
|
4777
5010
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4778
5011
|
ms.StoreMessageInfo(mi)
|
|
4779
5012
|
}
|
|
@@ -4785,7 +5018,7 @@ func (x *QuickReplyAction) String() string {
|
|
|
4785
5018
|
func (*QuickReplyAction) ProtoMessage() {}
|
|
4786
5019
|
|
|
4787
5020
|
func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
|
|
4788
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5021
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
|
|
4789
5022
|
if x != nil {
|
|
4790
5023
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4791
5024
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4798,7 +5031,7 @@ func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
|
|
|
4798
5031
|
|
|
4799
5032
|
// Deprecated: Use QuickReplyAction.ProtoReflect.Descriptor instead.
|
|
4800
5033
|
func (*QuickReplyAction) Descriptor() ([]byte, []int) {
|
|
4801
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5034
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{64}
|
|
4802
5035
|
}
|
|
4803
5036
|
|
|
4804
5037
|
func (x *QuickReplyAction) GetShortcut() string {
|
|
@@ -4845,7 +5078,7 @@ type LocaleSetting struct {
|
|
|
4845
5078
|
|
|
4846
5079
|
func (x *LocaleSetting) Reset() {
|
|
4847
5080
|
*x = LocaleSetting{}
|
|
4848
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5081
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
|
|
4849
5082
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4850
5083
|
ms.StoreMessageInfo(mi)
|
|
4851
5084
|
}
|
|
@@ -4857,7 +5090,7 @@ func (x *LocaleSetting) String() string {
|
|
|
4857
5090
|
func (*LocaleSetting) ProtoMessage() {}
|
|
4858
5091
|
|
|
4859
5092
|
func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
|
|
4860
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5093
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
|
|
4861
5094
|
if x != nil {
|
|
4862
5095
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4863
5096
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4870,7 +5103,7 @@ func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
|
|
|
4870
5103
|
|
|
4871
5104
|
// Deprecated: Use LocaleSetting.ProtoReflect.Descriptor instead.
|
|
4872
5105
|
func (*LocaleSetting) Descriptor() ([]byte, []int) {
|
|
4873
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5106
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{65}
|
|
4874
5107
|
}
|
|
4875
5108
|
|
|
4876
5109
|
func (x *LocaleSetting) GetLocale() string {
|
|
@@ -4889,7 +5122,7 @@ type PushNameSetting struct {
|
|
|
4889
5122
|
|
|
4890
5123
|
func (x *PushNameSetting) Reset() {
|
|
4891
5124
|
*x = PushNameSetting{}
|
|
4892
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5125
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
|
|
4893
5126
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4894
5127
|
ms.StoreMessageInfo(mi)
|
|
4895
5128
|
}
|
|
@@ -4901,7 +5134,7 @@ func (x *PushNameSetting) String() string {
|
|
|
4901
5134
|
func (*PushNameSetting) ProtoMessage() {}
|
|
4902
5135
|
|
|
4903
5136
|
func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
|
|
4904
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5137
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
|
|
4905
5138
|
if x != nil {
|
|
4906
5139
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4907
5140
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4914,7 +5147,7 @@ func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
|
|
|
4914
5147
|
|
|
4915
5148
|
// Deprecated: Use PushNameSetting.ProtoReflect.Descriptor instead.
|
|
4916
5149
|
func (*PushNameSetting) Descriptor() ([]byte, []int) {
|
|
4917
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5150
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{66}
|
|
4918
5151
|
}
|
|
4919
5152
|
|
|
4920
5153
|
func (x *PushNameSetting) GetName() string {
|
|
@@ -4933,7 +5166,7 @@ type SecurityNotificationSetting struct {
|
|
|
4933
5166
|
|
|
4934
5167
|
func (x *SecurityNotificationSetting) Reset() {
|
|
4935
5168
|
*x = SecurityNotificationSetting{}
|
|
4936
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5169
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
|
|
4937
5170
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4938
5171
|
ms.StoreMessageInfo(mi)
|
|
4939
5172
|
}
|
|
@@ -4945,7 +5178,7 @@ func (x *SecurityNotificationSetting) String() string {
|
|
|
4945
5178
|
func (*SecurityNotificationSetting) ProtoMessage() {}
|
|
4946
5179
|
|
|
4947
5180
|
func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
|
|
4948
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5181
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
|
|
4949
5182
|
if x != nil {
|
|
4950
5183
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4951
5184
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4958,7 +5191,7 @@ func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
|
|
|
4958
5191
|
|
|
4959
5192
|
// Deprecated: Use SecurityNotificationSetting.ProtoReflect.Descriptor instead.
|
|
4960
5193
|
func (*SecurityNotificationSetting) Descriptor() ([]byte, []int) {
|
|
4961
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5194
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{67}
|
|
4962
5195
|
}
|
|
4963
5196
|
|
|
4964
5197
|
func (x *SecurityNotificationSetting) GetShowNotification() bool {
|
|
@@ -4977,7 +5210,7 @@ type PinAction struct {
|
|
|
4977
5210
|
|
|
4978
5211
|
func (x *PinAction) Reset() {
|
|
4979
5212
|
*x = PinAction{}
|
|
4980
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5213
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[68]
|
|
4981
5214
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4982
5215
|
ms.StoreMessageInfo(mi)
|
|
4983
5216
|
}
|
|
@@ -4989,7 +5222,7 @@ func (x *PinAction) String() string {
|
|
|
4989
5222
|
func (*PinAction) ProtoMessage() {}
|
|
4990
5223
|
|
|
4991
5224
|
func (x *PinAction) ProtoReflect() protoreflect.Message {
|
|
4992
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5225
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[68]
|
|
4993
5226
|
if x != nil {
|
|
4994
5227
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4995
5228
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5002,7 +5235,7 @@ func (x *PinAction) ProtoReflect() protoreflect.Message {
|
|
|
5002
5235
|
|
|
5003
5236
|
// Deprecated: Use PinAction.ProtoReflect.Descriptor instead.
|
|
5004
5237
|
func (*PinAction) Descriptor() ([]byte, []int) {
|
|
5005
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5238
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{68}
|
|
5006
5239
|
}
|
|
5007
5240
|
|
|
5008
5241
|
func (x *PinAction) GetPinned() bool {
|
|
@@ -5023,7 +5256,7 @@ type MuteAction struct {
|
|
|
5023
5256
|
|
|
5024
5257
|
func (x *MuteAction) Reset() {
|
|
5025
5258
|
*x = MuteAction{}
|
|
5026
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5259
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[69]
|
|
5027
5260
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5028
5261
|
ms.StoreMessageInfo(mi)
|
|
5029
5262
|
}
|
|
@@ -5035,7 +5268,7 @@ func (x *MuteAction) String() string {
|
|
|
5035
5268
|
func (*MuteAction) ProtoMessage() {}
|
|
5036
5269
|
|
|
5037
5270
|
func (x *MuteAction) ProtoReflect() protoreflect.Message {
|
|
5038
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5271
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[69]
|
|
5039
5272
|
if x != nil {
|
|
5040
5273
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5041
5274
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5048,7 +5281,7 @@ func (x *MuteAction) ProtoReflect() protoreflect.Message {
|
|
|
5048
5281
|
|
|
5049
5282
|
// Deprecated: Use MuteAction.ProtoReflect.Descriptor instead.
|
|
5050
5283
|
func (*MuteAction) Descriptor() ([]byte, []int) {
|
|
5051
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5284
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{69}
|
|
5052
5285
|
}
|
|
5053
5286
|
|
|
5054
5287
|
func (x *MuteAction) GetMuted() bool {
|
|
@@ -5086,7 +5319,7 @@ type ContactAction struct {
|
|
|
5086
5319
|
|
|
5087
5320
|
func (x *ContactAction) Reset() {
|
|
5088
5321
|
*x = ContactAction{}
|
|
5089
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5322
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[70]
|
|
5090
5323
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5091
5324
|
ms.StoreMessageInfo(mi)
|
|
5092
5325
|
}
|
|
@@ -5098,7 +5331,7 @@ func (x *ContactAction) String() string {
|
|
|
5098
5331
|
func (*ContactAction) ProtoMessage() {}
|
|
5099
5332
|
|
|
5100
5333
|
func (x *ContactAction) ProtoReflect() protoreflect.Message {
|
|
5101
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5334
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[70]
|
|
5102
5335
|
if x != nil {
|
|
5103
5336
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5104
5337
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5111,7 +5344,7 @@ func (x *ContactAction) ProtoReflect() protoreflect.Message {
|
|
|
5111
5344
|
|
|
5112
5345
|
// Deprecated: Use ContactAction.ProtoReflect.Descriptor instead.
|
|
5113
5346
|
func (*ContactAction) Descriptor() ([]byte, []int) {
|
|
5114
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5347
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{70}
|
|
5115
5348
|
}
|
|
5116
5349
|
|
|
5117
5350
|
func (x *ContactAction) GetFullName() string {
|
|
@@ -5165,7 +5398,7 @@ type StarAction struct {
|
|
|
5165
5398
|
|
|
5166
5399
|
func (x *StarAction) Reset() {
|
|
5167
5400
|
*x = StarAction{}
|
|
5168
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5401
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[71]
|
|
5169
5402
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5170
5403
|
ms.StoreMessageInfo(mi)
|
|
5171
5404
|
}
|
|
@@ -5177,7 +5410,7 @@ func (x *StarAction) String() string {
|
|
|
5177
5410
|
func (*StarAction) ProtoMessage() {}
|
|
5178
5411
|
|
|
5179
5412
|
func (x *StarAction) ProtoReflect() protoreflect.Message {
|
|
5180
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5413
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[71]
|
|
5181
5414
|
if x != nil {
|
|
5182
5415
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5183
5416
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5190,7 +5423,7 @@ func (x *StarAction) ProtoReflect() protoreflect.Message {
|
|
|
5190
5423
|
|
|
5191
5424
|
// Deprecated: Use StarAction.ProtoReflect.Descriptor instead.
|
|
5192
5425
|
func (*StarAction) Descriptor() ([]byte, []int) {
|
|
5193
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5426
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{71}
|
|
5194
5427
|
}
|
|
5195
5428
|
|
|
5196
5429
|
func (x *StarAction) GetStarred() bool {
|
|
@@ -5212,7 +5445,7 @@ type SyncActionData struct {
|
|
|
5212
5445
|
|
|
5213
5446
|
func (x *SyncActionData) Reset() {
|
|
5214
5447
|
*x = SyncActionData{}
|
|
5215
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5448
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[72]
|
|
5216
5449
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5217
5450
|
ms.StoreMessageInfo(mi)
|
|
5218
5451
|
}
|
|
@@ -5224,7 +5457,7 @@ func (x *SyncActionData) String() string {
|
|
|
5224
5457
|
func (*SyncActionData) ProtoMessage() {}
|
|
5225
5458
|
|
|
5226
5459
|
func (x *SyncActionData) ProtoReflect() protoreflect.Message {
|
|
5227
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5460
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[72]
|
|
5228
5461
|
if x != nil {
|
|
5229
5462
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5230
5463
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5237,7 +5470,7 @@ func (x *SyncActionData) ProtoReflect() protoreflect.Message {
|
|
|
5237
5470
|
|
|
5238
5471
|
// Deprecated: Use SyncActionData.ProtoReflect.Descriptor instead.
|
|
5239
5472
|
func (*SyncActionData) Descriptor() ([]byte, []int) {
|
|
5240
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5473
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{72}
|
|
5241
5474
|
}
|
|
5242
5475
|
|
|
5243
5476
|
func (x *SyncActionData) GetIndex() []byte {
|
|
@@ -5278,7 +5511,7 @@ type CallLogRecord_ParticipantInfo struct {
|
|
|
5278
5511
|
|
|
5279
5512
|
func (x *CallLogRecord_ParticipantInfo) Reset() {
|
|
5280
5513
|
*x = CallLogRecord_ParticipantInfo{}
|
|
5281
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5514
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[73]
|
|
5282
5515
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5283
5516
|
ms.StoreMessageInfo(mi)
|
|
5284
5517
|
}
|
|
@@ -5290,7 +5523,7 @@ func (x *CallLogRecord_ParticipantInfo) String() string {
|
|
|
5290
5523
|
func (*CallLogRecord_ParticipantInfo) ProtoMessage() {}
|
|
5291
5524
|
|
|
5292
5525
|
func (x *CallLogRecord_ParticipantInfo) ProtoReflect() protoreflect.Message {
|
|
5293
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5526
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[73]
|
|
5294
5527
|
if x != nil {
|
|
5295
5528
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5296
5529
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5329,7 +5562,7 @@ type FavoritesAction_Favorite struct {
|
|
|
5329
5562
|
|
|
5330
5563
|
func (x *FavoritesAction_Favorite) Reset() {
|
|
5331
5564
|
*x = FavoritesAction_Favorite{}
|
|
5332
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5565
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[74]
|
|
5333
5566
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5334
5567
|
ms.StoreMessageInfo(mi)
|
|
5335
5568
|
}
|
|
@@ -5341,7 +5574,7 @@ func (x *FavoritesAction_Favorite) String() string {
|
|
|
5341
5574
|
func (*FavoritesAction_Favorite) ProtoMessage() {}
|
|
5342
5575
|
|
|
5343
5576
|
func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
|
|
5344
|
-
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[
|
|
5577
|
+
mi := &file_waSyncAction_WASyncAction_proto_msgTypes[74]
|
|
5345
5578
|
if x != nil {
|
|
5346
5579
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5347
5580
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5354,7 +5587,7 @@ func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
|
|
|
5354
5587
|
|
|
5355
5588
|
// Deprecated: Use FavoritesAction_Favorite.ProtoReflect.Descriptor instead.
|
|
5356
5589
|
func (*FavoritesAction_Favorite) Descriptor() ([]byte, []int) {
|
|
5357
|
-
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{
|
|
5590
|
+
return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22, 0}
|
|
5358
5591
|
}
|
|
5359
5592
|
|
|
5360
5593
|
func (x *FavoritesAction_Favorite) GetID() string {
|
|
@@ -5422,7 +5655,14 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5422
5655
|
"\x06FAILED\x10\b\x12\r\n" +
|
|
5423
5656
|
"\tABANDONED\x10\t\x12\v\n" +
|
|
5424
5657
|
"\aONGOING\x10\n" +
|
|
5425
|
-
"\"\
|
|
5658
|
+
"\"\xf1\x01\n" +
|
|
5659
|
+
"\x13AvatarUpdatedAction\x12O\n" +
|
|
5660
|
+
"\teventType\x18\x01 \x01(\x0e21.WASyncAction.AvatarUpdatedAction.AvatarEventTypeR\teventType\x12O\n" +
|
|
5661
|
+
"\x14recentAvatarStickers\x18\x02 \x03(\v2\x1b.WASyncAction.StickerActionR\x14recentAvatarStickers\"8\n" +
|
|
5662
|
+
"\x0fAvatarEventType\x12\v\n" +
|
|
5663
|
+
"\aUPDATED\x10\x00\x12\v\n" +
|
|
5664
|
+
"\aCREATED\x10\x01\x12\v\n" +
|
|
5665
|
+
"\aDELETED\x10\x02\"\xd6\x01\n" +
|
|
5426
5666
|
"\x1cMaibaAIFeaturesControlAction\x12i\n" +
|
|
5427
5667
|
"\x0faiFeatureStatus\x18\x01 \x01(\x0e2?.WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatusR\x0faiFeatureStatus\"K\n" +
|
|
5428
5668
|
"\x14MaibaAIFeatureStatus\x12\v\n" +
|
|
@@ -5455,7 +5695,12 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5455
5695
|
"\x06Status\x12\n" +
|
|
5456
5696
|
"\n" +
|
|
5457
5697
|
"\x06ACTIVE\x10\x00\x12\f\n" +
|
|
5458
|
-
"\bINACTIVE\x10\x01\"\
|
|
5698
|
+
"\bINACTIVE\x10\x01\"\x7f\n" +
|
|
5699
|
+
"\x10GalaxyFlowAction\x12G\n" +
|
|
5700
|
+
"\x04type\x18\x01 \x02(\x0e23.WASyncAction.GalaxyFlowAction.GalaxyFlowActionTypeR\x04type\"\"\n" +
|
|
5701
|
+
"\x14GalaxyFlowActionType\x12\n" +
|
|
5702
|
+
"\n" +
|
|
5703
|
+
"\x06LAUNCH\x10\x01\"\xfd\x01\n" +
|
|
5459
5704
|
"\x0eNoteEditAction\x129\n" +
|
|
5460
5705
|
"\x04type\x18\x01 \x01(\x0e2%.WASyncAction.NoteEditAction.NoteTypeR\x04type\x12\x18\n" +
|
|
5461
5706
|
"\achatJID\x18\x02 \x01(\tR\achatJID\x12\x1c\n" +
|
|
@@ -5514,7 +5759,7 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5514
5759
|
"\n" +
|
|
5515
5760
|
"\x06CUSTOM\x10\x05\x12\r\n" +
|
|
5516
5761
|
"\tCOMMUNITY\x10\x06\x12\x13\n" +
|
|
5517
|
-
"\x0fSERVER_ASSIGNED\x10\a\"\
|
|
5762
|
+
"\x0fSERVER_ASSIGNED\x10\a\"\x98\x05\n" +
|
|
5518
5763
|
"\x0ePatchDebugData\x12$\n" +
|
|
5519
5764
|
"\rcurrentLthash\x18\x01 \x01(\fR\rcurrentLthash\x12\x1c\n" +
|
|
5520
5765
|
"\tnewLthash\x18\x02 \x01(\fR\tnewLthash\x12\"\n" +
|
|
@@ -5527,7 +5772,7 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5527
5772
|
"\x0enumberOverride\x18\t \x01(\x05R\x0enumberOverride\x12M\n" +
|
|
5528
5773
|
"\x0esenderPlatform\x18\n" +
|
|
5529
5774
|
" \x01(\x0e2%.WASyncAction.PatchDebugData.PlatformR\x0esenderPlatform\x12(\n" +
|
|
5530
|
-
"\x0fisSenderPrimary\x18\v \x01(\bR\x0fisSenderPrimary\"
|
|
5775
|
+
"\x0fisSenderPrimary\x18\v \x01(\bR\x0fisSenderPrimary\"\x8a\x01\n" +
|
|
5531
5776
|
"\bPlatform\x12\v\n" +
|
|
5532
5777
|
"\aANDROID\x10\x00\x12\b\n" +
|
|
5533
5778
|
"\x04SMBA\x10\x01\x12\n" +
|
|
@@ -5540,10 +5785,14 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5540
5785
|
"\x06DARWIN\x10\x06\x12\b\n" +
|
|
5541
5786
|
"\x04IPAD\x10\a\x12\n" +
|
|
5542
5787
|
"\n" +
|
|
5543
|
-
"\x06WEAROS\x10\b\
|
|
5788
|
+
"\x06WEAROS\x10\b\x12\b\n" +
|
|
5789
|
+
"\x04WASG\x10\t\x12\t\n" +
|
|
5790
|
+
"\x05WEARM\x10\n" +
|
|
5791
|
+
"\x12\b\n" +
|
|
5792
|
+
"\x04CAPI\x10\v\"A\n" +
|
|
5544
5793
|
"\x11RecentEmojiWeight\x12\x14\n" +
|
|
5545
5794
|
"\x05emoji\x18\x01 \x01(\tR\x05emoji\x12\x16\n" +
|
|
5546
|
-
"\x06weight\x18\x02 \x01(\x02R\x06weight\"\
|
|
5795
|
+
"\x06weight\x18\x02 \x01(\x02R\x06weight\"\xd6.\n" +
|
|
5547
5796
|
"\x0fSyncActionValue\x12\x1c\n" +
|
|
5548
5797
|
"\ttimestamp\x18\x01 \x01(\x03R\ttimestamp\x128\n" +
|
|
5549
5798
|
"\n" +
|
|
@@ -5612,7 +5861,9 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
|
|
|
5612
5861
|
"\x1cmaibaAiFeaturesControlAction\x18D \x01(\v2*.WASyncAction.MaibaAIFeaturesControlActionR\x1cmaibaAiFeaturesControlAction\x12k\n" +
|
|
5613
5862
|
"\x1bbusinessBroadcastListAction\x18E \x01(\v2).WASyncAction.BusinessBroadcastListActionR\x1bbusinessBroadcastListAction\x12M\n" +
|
|
5614
5863
|
"\x11musicUserIDAction\x18F \x01(\v2\x1f.WASyncAction.MusicUserIdActionR\x11musicUserIDAction\x12\x9e\x01\n" +
|
|
5615
|
-
",statusPostOptInNotificationPreferencesAction\x18G \x01(\v2:.WASyncAction.StatusPostOptInNotificationPreferencesActionR,statusPostOptInNotificationPreferencesAction\
|
|
5864
|
+
",statusPostOptInNotificationPreferencesAction\x18G \x01(\v2:.WASyncAction.StatusPostOptInNotificationPreferencesActionR,statusPostOptInNotificationPreferencesAction\x12S\n" +
|
|
5865
|
+
"\x13avatarUpdatedAction\x18H \x01(\v2!.WASyncAction.AvatarUpdatedActionR\x13avatarUpdatedAction\x12J\n" +
|
|
5866
|
+
"\x10galaxyFlowAction\x18I \x01(\v2\x1e.WASyncAction.GalaxyFlowActionR\x10galaxyFlowAction\"H\n" +
|
|
5616
5867
|
",StatusPostOptInNotificationPreferencesAction\x12\x18\n" +
|
|
5617
5868
|
"\aenabled\x18\x01 \x01(\bR\aenabled\"H\n" +
|
|
5618
5869
|
"\x18BroadcastListParticipant\x12\x16\n" +
|
|
@@ -5804,198 +6055,207 @@ func file_waSyncAction_WASyncAction_proto_rawDescGZIP() []byte {
|
|
|
5804
6055
|
return file_waSyncAction_WASyncAction_proto_rawDescData
|
|
5805
6056
|
}
|
|
5806
6057
|
|
|
5807
|
-
var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo,
|
|
5808
|
-
var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
6058
|
+
var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 16)
|
|
6059
|
+
var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 75)
|
|
5809
6060
|
var file_waSyncAction_WASyncAction_proto_goTypes = []any{
|
|
5810
6061
|
(CallLogRecord_CallType)(0), // 0: WASyncAction.CallLogRecord.CallType
|
|
5811
6062
|
(CallLogRecord_SilenceReason)(0), // 1: WASyncAction.CallLogRecord.SilenceReason
|
|
5812
6063
|
(CallLogRecord_CallResult)(0), // 2: WASyncAction.CallLogRecord.CallResult
|
|
5813
|
-
(
|
|
5814
|
-
(
|
|
5815
|
-
(
|
|
5816
|
-
(
|
|
5817
|
-
(
|
|
5818
|
-
(
|
|
5819
|
-
(
|
|
5820
|
-
(
|
|
5821
|
-
(
|
|
5822
|
-
(
|
|
5823
|
-
(
|
|
5824
|
-
(
|
|
5825
|
-
(
|
|
5826
|
-
(*
|
|
5827
|
-
(*
|
|
5828
|
-
(*
|
|
5829
|
-
(*
|
|
5830
|
-
(*
|
|
5831
|
-
(*
|
|
5832
|
-
(*
|
|
5833
|
-
(*
|
|
5834
|
-
(*
|
|
5835
|
-
(*
|
|
5836
|
-
(*
|
|
5837
|
-
(*
|
|
5838
|
-
(*
|
|
5839
|
-
(*
|
|
5840
|
-
(*
|
|
5841
|
-
(*
|
|
5842
|
-
(*
|
|
5843
|
-
(*
|
|
5844
|
-
(*
|
|
5845
|
-
(*
|
|
5846
|
-
(*
|
|
5847
|
-
(*
|
|
5848
|
-
(*
|
|
5849
|
-
(*
|
|
5850
|
-
(*
|
|
5851
|
-
(*
|
|
5852
|
-
(*
|
|
5853
|
-
(*
|
|
5854
|
-
(*
|
|
5855
|
-
(*
|
|
5856
|
-
(*
|
|
5857
|
-
(*
|
|
5858
|
-
(*
|
|
5859
|
-
(*
|
|
5860
|
-
(*
|
|
5861
|
-
(*
|
|
5862
|
-
(*
|
|
5863
|
-
(*
|
|
5864
|
-
(*
|
|
5865
|
-
(*
|
|
5866
|
-
(*
|
|
5867
|
-
(*
|
|
5868
|
-
(*
|
|
5869
|
-
(*
|
|
5870
|
-
(*
|
|
5871
|
-
(*
|
|
5872
|
-
(*
|
|
5873
|
-
(*
|
|
5874
|
-
(*
|
|
5875
|
-
(*
|
|
5876
|
-
(*
|
|
5877
|
-
(*
|
|
5878
|
-
(*
|
|
5879
|
-
(*
|
|
5880
|
-
(*
|
|
5881
|
-
(*
|
|
5882
|
-
(*
|
|
5883
|
-
(*
|
|
5884
|
-
(*
|
|
5885
|
-
(*
|
|
5886
|
-
(*
|
|
5887
|
-
(*
|
|
5888
|
-
(*
|
|
5889
|
-
(*
|
|
5890
|
-
(*
|
|
5891
|
-
(*
|
|
5892
|
-
(*
|
|
5893
|
-
(*
|
|
5894
|
-
(*
|
|
5895
|
-
(*
|
|
5896
|
-
(*
|
|
5897
|
-
(*
|
|
5898
|
-
(*
|
|
5899
|
-
(*
|
|
6064
|
+
(AvatarUpdatedAction_AvatarEventType)(0), // 3: WASyncAction.AvatarUpdatedAction.AvatarEventType
|
|
6065
|
+
(MaibaAIFeaturesControlAction_MaibaAIFeatureStatus)(0), // 4: WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatus
|
|
6066
|
+
(PaymentTosAction_PaymentNotice)(0), // 5: WASyncAction.PaymentTosAction.PaymentNotice
|
|
6067
|
+
(NotificationActivitySettingAction_NotificationActivitySetting)(0), // 6: WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
|
|
6068
|
+
(WaffleAccountLinkStateAction_AccountLinkState)(0), // 7: WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
|
|
6069
|
+
(MerchantPaymentPartnerAction_Status)(0), // 8: WASyncAction.MerchantPaymentPartnerAction.Status
|
|
6070
|
+
(GalaxyFlowAction_GalaxyFlowActionType)(0), // 9: WASyncAction.GalaxyFlowAction.GalaxyFlowActionType
|
|
6071
|
+
(NoteEditAction_NoteType)(0), // 10: WASyncAction.NoteEditAction.NoteType
|
|
6072
|
+
(StatusPrivacyAction_StatusDistributionMode)(0), // 11: WASyncAction.StatusPrivacyAction.StatusDistributionMode
|
|
6073
|
+
(MarketingMessageAction_MarketingMessagePrototypeType)(0), // 12: WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
|
|
6074
|
+
(UsernameChatStartModeAction_ChatStartMode)(0), // 13: WASyncAction.UsernameChatStartModeAction.ChatStartMode
|
|
6075
|
+
(LabelEditAction_ListType)(0), // 14: WASyncAction.LabelEditAction.ListType
|
|
6076
|
+
(PatchDebugData_Platform)(0), // 15: WASyncAction.PatchDebugData.Platform
|
|
6077
|
+
(*CallLogRecord)(nil), // 16: WASyncAction.CallLogRecord
|
|
6078
|
+
(*AvatarUpdatedAction)(nil), // 17: WASyncAction.AvatarUpdatedAction
|
|
6079
|
+
(*MaibaAIFeaturesControlAction)(nil), // 18: WASyncAction.MaibaAIFeaturesControlAction
|
|
6080
|
+
(*PaymentTosAction)(nil), // 19: WASyncAction.PaymentTosAction
|
|
6081
|
+
(*NotificationActivitySettingAction)(nil), // 20: WASyncAction.NotificationActivitySettingAction
|
|
6082
|
+
(*WaffleAccountLinkStateAction)(nil), // 21: WASyncAction.WaffleAccountLinkStateAction
|
|
6083
|
+
(*MerchantPaymentPartnerAction)(nil), // 22: WASyncAction.MerchantPaymentPartnerAction
|
|
6084
|
+
(*GalaxyFlowAction)(nil), // 23: WASyncAction.GalaxyFlowAction
|
|
6085
|
+
(*NoteEditAction)(nil), // 24: WASyncAction.NoteEditAction
|
|
6086
|
+
(*StatusPrivacyAction)(nil), // 25: WASyncAction.StatusPrivacyAction
|
|
6087
|
+
(*MarketingMessageAction)(nil), // 26: WASyncAction.MarketingMessageAction
|
|
6088
|
+
(*UsernameChatStartModeAction)(nil), // 27: WASyncAction.UsernameChatStartModeAction
|
|
6089
|
+
(*LabelEditAction)(nil), // 28: WASyncAction.LabelEditAction
|
|
6090
|
+
(*PatchDebugData)(nil), // 29: WASyncAction.PatchDebugData
|
|
6091
|
+
(*RecentEmojiWeight)(nil), // 30: WASyncAction.RecentEmojiWeight
|
|
6092
|
+
(*SyncActionValue)(nil), // 31: WASyncAction.SyncActionValue
|
|
6093
|
+
(*StatusPostOptInNotificationPreferencesAction)(nil), // 32: WASyncAction.StatusPostOptInNotificationPreferencesAction
|
|
6094
|
+
(*BroadcastListParticipant)(nil), // 33: WASyncAction.BroadcastListParticipant
|
|
6095
|
+
(*BusinessBroadcastListAction)(nil), // 34: WASyncAction.BusinessBroadcastListAction
|
|
6096
|
+
(*BusinessBroadcastAssociationAction)(nil), // 35: WASyncAction.BusinessBroadcastAssociationAction
|
|
6097
|
+
(*CtwaPerCustomerDataSharingAction)(nil), // 36: WASyncAction.CtwaPerCustomerDataSharingAction
|
|
6098
|
+
(*LidContactAction)(nil), // 37: WASyncAction.LidContactAction
|
|
6099
|
+
(*FavoritesAction)(nil), // 38: WASyncAction.FavoritesAction
|
|
6100
|
+
(*PrivacySettingChannelsPersonalisedRecommendationAction)(nil), // 39: WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
|
|
6101
|
+
(*PrivacySettingDisableLinkPreviewsAction)(nil), // 40: WASyncAction.PrivacySettingDisableLinkPreviewsAction
|
|
6102
|
+
(*WamoUserIdentifierAction)(nil), // 41: WASyncAction.WamoUserIdentifierAction
|
|
6103
|
+
(*LockChatAction)(nil), // 42: WASyncAction.LockChatAction
|
|
6104
|
+
(*CustomPaymentMethodsAction)(nil), // 43: WASyncAction.CustomPaymentMethodsAction
|
|
6105
|
+
(*CustomPaymentMethod)(nil), // 44: WASyncAction.CustomPaymentMethod
|
|
6106
|
+
(*CustomPaymentMethodMetadata)(nil), // 45: WASyncAction.CustomPaymentMethodMetadata
|
|
6107
|
+
(*PaymentInfoAction)(nil), // 46: WASyncAction.PaymentInfoAction
|
|
6108
|
+
(*LabelReorderingAction)(nil), // 47: WASyncAction.LabelReorderingAction
|
|
6109
|
+
(*DeleteIndividualCallLogAction)(nil), // 48: WASyncAction.DeleteIndividualCallLogAction
|
|
6110
|
+
(*BotWelcomeRequestAction)(nil), // 49: WASyncAction.BotWelcomeRequestAction
|
|
6111
|
+
(*MusicUserIdAction)(nil), // 50: WASyncAction.MusicUserIdAction
|
|
6112
|
+
(*CallLogAction)(nil), // 51: WASyncAction.CallLogAction
|
|
6113
|
+
(*PrivacySettingRelayAllCalls)(nil), // 52: WASyncAction.PrivacySettingRelayAllCalls
|
|
6114
|
+
(*DetectedOutcomesStatusAction)(nil), // 53: WASyncAction.DetectedOutcomesStatusAction
|
|
6115
|
+
(*ExternalWebBetaAction)(nil), // 54: WASyncAction.ExternalWebBetaAction
|
|
6116
|
+
(*MarketingMessageBroadcastAction)(nil), // 55: WASyncAction.MarketingMessageBroadcastAction
|
|
6117
|
+
(*PnForLidChatAction)(nil), // 56: WASyncAction.PnForLidChatAction
|
|
6118
|
+
(*ChatAssignmentOpenedStatusAction)(nil), // 57: WASyncAction.ChatAssignmentOpenedStatusAction
|
|
6119
|
+
(*ChatAssignmentAction)(nil), // 58: WASyncAction.ChatAssignmentAction
|
|
6120
|
+
(*StickerAction)(nil), // 59: WASyncAction.StickerAction
|
|
6121
|
+
(*RemoveRecentStickerAction)(nil), // 60: WASyncAction.RemoveRecentStickerAction
|
|
6122
|
+
(*PrimaryVersionAction)(nil), // 61: WASyncAction.PrimaryVersionAction
|
|
6123
|
+
(*NuxAction)(nil), // 62: WASyncAction.NuxAction
|
|
6124
|
+
(*TimeFormatAction)(nil), // 63: WASyncAction.TimeFormatAction
|
|
6125
|
+
(*UserStatusMuteAction)(nil), // 64: WASyncAction.UserStatusMuteAction
|
|
6126
|
+
(*SubscriptionAction)(nil), // 65: WASyncAction.SubscriptionAction
|
|
6127
|
+
(*AgentAction)(nil), // 66: WASyncAction.AgentAction
|
|
6128
|
+
(*AndroidUnsupportedActions)(nil), // 67: WASyncAction.AndroidUnsupportedActions
|
|
6129
|
+
(*PrimaryFeature)(nil), // 68: WASyncAction.PrimaryFeature
|
|
6130
|
+
(*KeyExpiration)(nil), // 69: WASyncAction.KeyExpiration
|
|
6131
|
+
(*SyncActionMessage)(nil), // 70: WASyncAction.SyncActionMessage
|
|
6132
|
+
(*SyncActionMessageRange)(nil), // 71: WASyncAction.SyncActionMessageRange
|
|
6133
|
+
(*UnarchiveChatsSetting)(nil), // 72: WASyncAction.UnarchiveChatsSetting
|
|
6134
|
+
(*DeleteChatAction)(nil), // 73: WASyncAction.DeleteChatAction
|
|
6135
|
+
(*ClearChatAction)(nil), // 74: WASyncAction.ClearChatAction
|
|
6136
|
+
(*MarkChatAsReadAction)(nil), // 75: WASyncAction.MarkChatAsReadAction
|
|
6137
|
+
(*DeleteMessageForMeAction)(nil), // 76: WASyncAction.DeleteMessageForMeAction
|
|
6138
|
+
(*ArchiveChatAction)(nil), // 77: WASyncAction.ArchiveChatAction
|
|
6139
|
+
(*RecentEmojiWeightsAction)(nil), // 78: WASyncAction.RecentEmojiWeightsAction
|
|
6140
|
+
(*LabelAssociationAction)(nil), // 79: WASyncAction.LabelAssociationAction
|
|
6141
|
+
(*QuickReplyAction)(nil), // 80: WASyncAction.QuickReplyAction
|
|
6142
|
+
(*LocaleSetting)(nil), // 81: WASyncAction.LocaleSetting
|
|
6143
|
+
(*PushNameSetting)(nil), // 82: WASyncAction.PushNameSetting
|
|
6144
|
+
(*SecurityNotificationSetting)(nil), // 83: WASyncAction.SecurityNotificationSetting
|
|
6145
|
+
(*PinAction)(nil), // 84: WASyncAction.PinAction
|
|
6146
|
+
(*MuteAction)(nil), // 85: WASyncAction.MuteAction
|
|
6147
|
+
(*ContactAction)(nil), // 86: WASyncAction.ContactAction
|
|
6148
|
+
(*StarAction)(nil), // 87: WASyncAction.StarAction
|
|
6149
|
+
(*SyncActionData)(nil), // 88: WASyncAction.SyncActionData
|
|
6150
|
+
(*CallLogRecord_ParticipantInfo)(nil), // 89: WASyncAction.CallLogRecord.ParticipantInfo
|
|
6151
|
+
(*FavoritesAction_Favorite)(nil), // 90: WASyncAction.FavoritesAction.Favorite
|
|
6152
|
+
(*waChatLockSettings.ChatLockSettings)(nil), // 91: WAProtobufsChatLockSettings.ChatLockSettings
|
|
6153
|
+
(*waDeviceCapabilities.DeviceCapabilities)(nil), // 92: WAProtobufsDeviceCapabilities.DeviceCapabilities
|
|
6154
|
+
(*waCommon.MessageKey)(nil), // 93: WACommon.MessageKey
|
|
5900
6155
|
}
|
|
5901
6156
|
var file_waSyncAction_WASyncAction_proto_depIdxs = []int32{
|
|
5902
6157
|
2, // 0: WASyncAction.CallLogRecord.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
|
|
5903
6158
|
1, // 1: WASyncAction.CallLogRecord.silenceReason:type_name -> WASyncAction.CallLogRecord.SilenceReason
|
|
5904
|
-
|
|
6159
|
+
89, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
|
|
5905
6160
|
0, // 3: WASyncAction.CallLogRecord.callType:type_name -> WASyncAction.CallLogRecord.CallType
|
|
5906
|
-
3, // 4: WASyncAction.
|
|
5907
|
-
|
|
5908
|
-
|
|
5909
|
-
|
|
5910
|
-
|
|
5911
|
-
|
|
5912
|
-
|
|
5913
|
-
|
|
5914
|
-
|
|
5915
|
-
|
|
5916
|
-
|
|
5917
|
-
|
|
5918
|
-
|
|
5919
|
-
|
|
5920
|
-
|
|
5921
|
-
|
|
5922
|
-
|
|
5923
|
-
|
|
5924
|
-
|
|
5925
|
-
|
|
5926
|
-
|
|
5927
|
-
|
|
5928
|
-
|
|
5929
|
-
|
|
5930
|
-
|
|
5931
|
-
|
|
5932
|
-
|
|
5933
|
-
69, // 31: WASyncAction.SyncActionValue.
|
|
5934
|
-
|
|
5935
|
-
|
|
5936
|
-
|
|
5937
|
-
|
|
5938
|
-
|
|
5939
|
-
|
|
5940
|
-
|
|
5941
|
-
|
|
5942
|
-
|
|
5943
|
-
|
|
5944
|
-
|
|
5945
|
-
|
|
5946
|
-
|
|
5947
|
-
|
|
5948
|
-
|
|
5949
|
-
|
|
5950
|
-
|
|
5951
|
-
|
|
5952
|
-
|
|
5953
|
-
|
|
5954
|
-
|
|
5955
|
-
|
|
5956
|
-
|
|
5957
|
-
|
|
5958
|
-
|
|
5959
|
-
|
|
5960
|
-
|
|
5961
|
-
|
|
5962
|
-
|
|
5963
|
-
|
|
5964
|
-
|
|
5965
|
-
|
|
5966
|
-
|
|
5967
|
-
|
|
5968
|
-
|
|
5969
|
-
|
|
5970
|
-
|
|
5971
|
-
|
|
5972
|
-
|
|
5973
|
-
|
|
5974
|
-
|
|
5975
|
-
|
|
5976
|
-
|
|
5977
|
-
|
|
5978
|
-
|
|
5979
|
-
|
|
5980
|
-
|
|
5981
|
-
|
|
5982
|
-
|
|
5983
|
-
|
|
5984
|
-
|
|
5985
|
-
|
|
5986
|
-
|
|
5987
|
-
|
|
5988
|
-
|
|
5989
|
-
|
|
5990
|
-
|
|
5991
|
-
|
|
5992
|
-
|
|
5993
|
-
|
|
5994
|
-
|
|
5995
|
-
|
|
5996
|
-
|
|
5997
|
-
|
|
5998
|
-
|
|
6161
|
+
3, // 4: WASyncAction.AvatarUpdatedAction.eventType:type_name -> WASyncAction.AvatarUpdatedAction.AvatarEventType
|
|
6162
|
+
59, // 5: WASyncAction.AvatarUpdatedAction.recentAvatarStickers:type_name -> WASyncAction.StickerAction
|
|
6163
|
+
4, // 6: WASyncAction.MaibaAIFeaturesControlAction.aiFeatureStatus:type_name -> WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatus
|
|
6164
|
+
5, // 7: WASyncAction.PaymentTosAction.paymentNotice:type_name -> WASyncAction.PaymentTosAction.PaymentNotice
|
|
6165
|
+
6, // 8: WASyncAction.NotificationActivitySettingAction.notificationActivitySetting:type_name -> WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
|
|
6166
|
+
7, // 9: WASyncAction.WaffleAccountLinkStateAction.linkState:type_name -> WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
|
|
6167
|
+
8, // 10: WASyncAction.MerchantPaymentPartnerAction.status:type_name -> WASyncAction.MerchantPaymentPartnerAction.Status
|
|
6168
|
+
9, // 11: WASyncAction.GalaxyFlowAction.type:type_name -> WASyncAction.GalaxyFlowAction.GalaxyFlowActionType
|
|
6169
|
+
10, // 12: WASyncAction.NoteEditAction.type:type_name -> WASyncAction.NoteEditAction.NoteType
|
|
6170
|
+
11, // 13: WASyncAction.StatusPrivacyAction.mode:type_name -> WASyncAction.StatusPrivacyAction.StatusDistributionMode
|
|
6171
|
+
12, // 14: WASyncAction.MarketingMessageAction.type:type_name -> WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
|
|
6172
|
+
13, // 15: WASyncAction.UsernameChatStartModeAction.chatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction.ChatStartMode
|
|
6173
|
+
14, // 16: WASyncAction.LabelEditAction.type:type_name -> WASyncAction.LabelEditAction.ListType
|
|
6174
|
+
15, // 17: WASyncAction.PatchDebugData.senderPlatform:type_name -> WASyncAction.PatchDebugData.Platform
|
|
6175
|
+
87, // 18: WASyncAction.SyncActionValue.starAction:type_name -> WASyncAction.StarAction
|
|
6176
|
+
86, // 19: WASyncAction.SyncActionValue.contactAction:type_name -> WASyncAction.ContactAction
|
|
6177
|
+
85, // 20: WASyncAction.SyncActionValue.muteAction:type_name -> WASyncAction.MuteAction
|
|
6178
|
+
84, // 21: WASyncAction.SyncActionValue.pinAction:type_name -> WASyncAction.PinAction
|
|
6179
|
+
83, // 22: WASyncAction.SyncActionValue.securityNotificationSetting:type_name -> WASyncAction.SecurityNotificationSetting
|
|
6180
|
+
82, // 23: WASyncAction.SyncActionValue.pushNameSetting:type_name -> WASyncAction.PushNameSetting
|
|
6181
|
+
80, // 24: WASyncAction.SyncActionValue.quickReplyAction:type_name -> WASyncAction.QuickReplyAction
|
|
6182
|
+
78, // 25: WASyncAction.SyncActionValue.recentEmojiWeightsAction:type_name -> WASyncAction.RecentEmojiWeightsAction
|
|
6183
|
+
28, // 26: WASyncAction.SyncActionValue.labelEditAction:type_name -> WASyncAction.LabelEditAction
|
|
6184
|
+
79, // 27: WASyncAction.SyncActionValue.labelAssociationAction:type_name -> WASyncAction.LabelAssociationAction
|
|
6185
|
+
81, // 28: WASyncAction.SyncActionValue.localeSetting:type_name -> WASyncAction.LocaleSetting
|
|
6186
|
+
77, // 29: WASyncAction.SyncActionValue.archiveChatAction:type_name -> WASyncAction.ArchiveChatAction
|
|
6187
|
+
76, // 30: WASyncAction.SyncActionValue.deleteMessageForMeAction:type_name -> WASyncAction.DeleteMessageForMeAction
|
|
6188
|
+
69, // 31: WASyncAction.SyncActionValue.keyExpiration:type_name -> WASyncAction.KeyExpiration
|
|
6189
|
+
75, // 32: WASyncAction.SyncActionValue.markChatAsReadAction:type_name -> WASyncAction.MarkChatAsReadAction
|
|
6190
|
+
74, // 33: WASyncAction.SyncActionValue.clearChatAction:type_name -> WASyncAction.ClearChatAction
|
|
6191
|
+
73, // 34: WASyncAction.SyncActionValue.deleteChatAction:type_name -> WASyncAction.DeleteChatAction
|
|
6192
|
+
72, // 35: WASyncAction.SyncActionValue.unarchiveChatsSetting:type_name -> WASyncAction.UnarchiveChatsSetting
|
|
6193
|
+
68, // 36: WASyncAction.SyncActionValue.primaryFeature:type_name -> WASyncAction.PrimaryFeature
|
|
6194
|
+
67, // 37: WASyncAction.SyncActionValue.androidUnsupportedActions:type_name -> WASyncAction.AndroidUnsupportedActions
|
|
6195
|
+
66, // 38: WASyncAction.SyncActionValue.agentAction:type_name -> WASyncAction.AgentAction
|
|
6196
|
+
65, // 39: WASyncAction.SyncActionValue.subscriptionAction:type_name -> WASyncAction.SubscriptionAction
|
|
6197
|
+
64, // 40: WASyncAction.SyncActionValue.userStatusMuteAction:type_name -> WASyncAction.UserStatusMuteAction
|
|
6198
|
+
63, // 41: WASyncAction.SyncActionValue.timeFormatAction:type_name -> WASyncAction.TimeFormatAction
|
|
6199
|
+
62, // 42: WASyncAction.SyncActionValue.nuxAction:type_name -> WASyncAction.NuxAction
|
|
6200
|
+
61, // 43: WASyncAction.SyncActionValue.primaryVersionAction:type_name -> WASyncAction.PrimaryVersionAction
|
|
6201
|
+
59, // 44: WASyncAction.SyncActionValue.stickerAction:type_name -> WASyncAction.StickerAction
|
|
6202
|
+
60, // 45: WASyncAction.SyncActionValue.removeRecentStickerAction:type_name -> WASyncAction.RemoveRecentStickerAction
|
|
6203
|
+
58, // 46: WASyncAction.SyncActionValue.chatAssignment:type_name -> WASyncAction.ChatAssignmentAction
|
|
6204
|
+
57, // 47: WASyncAction.SyncActionValue.chatAssignmentOpenedStatus:type_name -> WASyncAction.ChatAssignmentOpenedStatusAction
|
|
6205
|
+
56, // 48: WASyncAction.SyncActionValue.pnForLidChatAction:type_name -> WASyncAction.PnForLidChatAction
|
|
6206
|
+
26, // 49: WASyncAction.SyncActionValue.marketingMessageAction:type_name -> WASyncAction.MarketingMessageAction
|
|
6207
|
+
55, // 50: WASyncAction.SyncActionValue.marketingMessageBroadcastAction:type_name -> WASyncAction.MarketingMessageBroadcastAction
|
|
6208
|
+
54, // 51: WASyncAction.SyncActionValue.externalWebBetaAction:type_name -> WASyncAction.ExternalWebBetaAction
|
|
6209
|
+
52, // 52: WASyncAction.SyncActionValue.privacySettingRelayAllCalls:type_name -> WASyncAction.PrivacySettingRelayAllCalls
|
|
6210
|
+
51, // 53: WASyncAction.SyncActionValue.callLogAction:type_name -> WASyncAction.CallLogAction
|
|
6211
|
+
25, // 54: WASyncAction.SyncActionValue.statusPrivacy:type_name -> WASyncAction.StatusPrivacyAction
|
|
6212
|
+
49, // 55: WASyncAction.SyncActionValue.botWelcomeRequestAction:type_name -> WASyncAction.BotWelcomeRequestAction
|
|
6213
|
+
48, // 56: WASyncAction.SyncActionValue.deleteIndividualCallLog:type_name -> WASyncAction.DeleteIndividualCallLogAction
|
|
6214
|
+
47, // 57: WASyncAction.SyncActionValue.labelReorderingAction:type_name -> WASyncAction.LabelReorderingAction
|
|
6215
|
+
46, // 58: WASyncAction.SyncActionValue.paymentInfoAction:type_name -> WASyncAction.PaymentInfoAction
|
|
6216
|
+
43, // 59: WASyncAction.SyncActionValue.customPaymentMethodsAction:type_name -> WASyncAction.CustomPaymentMethodsAction
|
|
6217
|
+
42, // 60: WASyncAction.SyncActionValue.lockChatAction:type_name -> WASyncAction.LockChatAction
|
|
6218
|
+
91, // 61: WASyncAction.SyncActionValue.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
|
|
6219
|
+
41, // 62: WASyncAction.SyncActionValue.wamoUserIdentifierAction:type_name -> WASyncAction.WamoUserIdentifierAction
|
|
6220
|
+
40, // 63: WASyncAction.SyncActionValue.privacySettingDisableLinkPreviewsAction:type_name -> WASyncAction.PrivacySettingDisableLinkPreviewsAction
|
|
6221
|
+
92, // 64: WASyncAction.SyncActionValue.deviceCapabilities:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities
|
|
6222
|
+
24, // 65: WASyncAction.SyncActionValue.noteEditAction:type_name -> WASyncAction.NoteEditAction
|
|
6223
|
+
38, // 66: WASyncAction.SyncActionValue.favoritesAction:type_name -> WASyncAction.FavoritesAction
|
|
6224
|
+
22, // 67: WASyncAction.SyncActionValue.merchantPaymentPartnerAction:type_name -> WASyncAction.MerchantPaymentPartnerAction
|
|
6225
|
+
21, // 68: WASyncAction.SyncActionValue.waffleAccountLinkStateAction:type_name -> WASyncAction.WaffleAccountLinkStateAction
|
|
6226
|
+
27, // 69: WASyncAction.SyncActionValue.usernameChatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction
|
|
6227
|
+
20, // 70: WASyncAction.SyncActionValue.notificationActivitySettingAction:type_name -> WASyncAction.NotificationActivitySettingAction
|
|
6228
|
+
37, // 71: WASyncAction.SyncActionValue.lidContactAction:type_name -> WASyncAction.LidContactAction
|
|
6229
|
+
36, // 72: WASyncAction.SyncActionValue.ctwaPerCustomerDataSharingAction:type_name -> WASyncAction.CtwaPerCustomerDataSharingAction
|
|
6230
|
+
19, // 73: WASyncAction.SyncActionValue.paymentTosAction:type_name -> WASyncAction.PaymentTosAction
|
|
6231
|
+
39, // 74: WASyncAction.SyncActionValue.privacySettingChannelsPersonalisedRecommendationAction:type_name -> WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
|
|
6232
|
+
35, // 75: WASyncAction.SyncActionValue.businessBroadcastAssociationAction:type_name -> WASyncAction.BusinessBroadcastAssociationAction
|
|
6233
|
+
53, // 76: WASyncAction.SyncActionValue.detectedOutcomesStatusAction:type_name -> WASyncAction.DetectedOutcomesStatusAction
|
|
6234
|
+
18, // 77: WASyncAction.SyncActionValue.maibaAiFeaturesControlAction:type_name -> WASyncAction.MaibaAIFeaturesControlAction
|
|
6235
|
+
34, // 78: WASyncAction.SyncActionValue.businessBroadcastListAction:type_name -> WASyncAction.BusinessBroadcastListAction
|
|
6236
|
+
50, // 79: WASyncAction.SyncActionValue.musicUserIDAction:type_name -> WASyncAction.MusicUserIdAction
|
|
6237
|
+
32, // 80: WASyncAction.SyncActionValue.statusPostOptInNotificationPreferencesAction:type_name -> WASyncAction.StatusPostOptInNotificationPreferencesAction
|
|
6238
|
+
17, // 81: WASyncAction.SyncActionValue.avatarUpdatedAction:type_name -> WASyncAction.AvatarUpdatedAction
|
|
6239
|
+
23, // 82: WASyncAction.SyncActionValue.galaxyFlowAction:type_name -> WASyncAction.GalaxyFlowAction
|
|
6240
|
+
33, // 83: WASyncAction.BusinessBroadcastListAction.participants:type_name -> WASyncAction.BroadcastListParticipant
|
|
6241
|
+
90, // 84: WASyncAction.FavoritesAction.favorites:type_name -> WASyncAction.FavoritesAction.Favorite
|
|
6242
|
+
44, // 85: WASyncAction.CustomPaymentMethodsAction.customPaymentMethods:type_name -> WASyncAction.CustomPaymentMethod
|
|
6243
|
+
45, // 86: WASyncAction.CustomPaymentMethod.metadata:type_name -> WASyncAction.CustomPaymentMethodMetadata
|
|
6244
|
+
16, // 87: WASyncAction.CallLogAction.callLogRecord:type_name -> WASyncAction.CallLogRecord
|
|
6245
|
+
93, // 88: WASyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
|
|
6246
|
+
70, // 89: WASyncAction.SyncActionMessageRange.messages:type_name -> WASyncAction.SyncActionMessage
|
|
6247
|
+
71, // 90: WASyncAction.DeleteChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
6248
|
+
71, // 91: WASyncAction.ClearChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
6249
|
+
71, // 92: WASyncAction.MarkChatAsReadAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
6250
|
+
71, // 93: WASyncAction.ArchiveChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
|
|
6251
|
+
30, // 94: WASyncAction.RecentEmojiWeightsAction.weights:type_name -> WASyncAction.RecentEmojiWeight
|
|
6252
|
+
31, // 95: WASyncAction.SyncActionData.value:type_name -> WASyncAction.SyncActionValue
|
|
6253
|
+
2, // 96: WASyncAction.CallLogRecord.ParticipantInfo.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
|
|
6254
|
+
97, // [97:97] is the sub-list for method output_type
|
|
6255
|
+
97, // [97:97] is the sub-list for method input_type
|
|
6256
|
+
97, // [97:97] is the sub-list for extension type_name
|
|
6257
|
+
97, // [97:97] is the sub-list for extension extendee
|
|
6258
|
+
0, // [0:97] is the sub-list for field type_name
|
|
5999
6259
|
}
|
|
6000
6260
|
|
|
6001
6261
|
func init() { file_waSyncAction_WASyncAction_proto_init() }
|
|
@@ -6008,8 +6268,8 @@ func file_waSyncAction_WASyncAction_proto_init() {
|
|
|
6008
6268
|
File: protoimpl.DescBuilder{
|
|
6009
6269
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
6010
6270
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_waSyncAction_WASyncAction_proto_rawDesc), len(file_waSyncAction_WASyncAction_proto_rawDesc)),
|
|
6011
|
-
NumEnums:
|
|
6012
|
-
NumMessages:
|
|
6271
|
+
NumEnums: 16,
|
|
6272
|
+
NumMessages: 75,
|
|
6013
6273
|
NumExtensions: 0,
|
|
6014
6274
|
NumServices: 0,
|
|
6015
6275
|
},
|