slidge-whatsapp 0.3.0__cp311-cp311-manylinux_2_36_aarch64.whl → 0.3.1__cp311-cp311-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.

Files changed (131) hide show
  1. slidge_whatsapp/event.go +33 -9
  2. slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.h +150 -150
  3. slidge_whatsapp/generated/_whatsapp.cpython-311-aarch64-linux-gnu.so +0 -0
  4. slidge_whatsapp/generated/build.py +130 -130
  5. slidge_whatsapp/generated/whatsapp.c +1478 -1478
  6. slidge_whatsapp/generated/whatsapp.go +1123 -1123
  7. slidge_whatsapp/generated/whatsapp.py +863 -863
  8. slidge_whatsapp/generated/whatsapp_go.h +150 -150
  9. slidge_whatsapp/go.mod +5 -5
  10. slidge_whatsapp/go.sum +14 -14
  11. slidge_whatsapp/session.go +3 -3
  12. slidge_whatsapp/vendor/github.com/ebitengine/purego/README.md +21 -5
  13. slidge_whatsapp/vendor/github.com/ebitengine/purego/abi_loong64.h +60 -0
  14. slidge_whatsapp/vendor/github.com/ebitengine/purego/cgo.go +1 -1
  15. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlerror.go +1 -1
  16. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn.go +1 -1
  17. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_netbsd.go +15 -0
  18. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_nocgo_netbsd.go +9 -0
  19. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_stubs.s +1 -1
  20. slidge_whatsapp/vendor/github.com/ebitengine/purego/func.go +113 -60
  21. slidge_whatsapp/vendor/github.com/ebitengine/purego/gen.go +6 -0
  22. slidge_whatsapp/vendor/github.com/ebitengine/purego/go_runtime.go +1 -1
  23. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/dlfcn_cgo_unix.go +2 -2
  24. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/syscall_cgo_unix.go +2 -2
  25. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/abi_loong64.h +60 -0
  26. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/asm_loong64.s +40 -0
  27. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/callbacks.go +1 -1
  28. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/doc.go +1 -1
  29. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_libinit.go +1 -1
  30. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_linux_loong64.go +92 -0
  31. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_netbsd.go +106 -0
  32. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_setenv.go +1 -1
  33. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_util.go +1 -1
  34. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/iscgo.go +1 -1
  35. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo.go +1 -1
  36. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_darwin.go +4 -0
  37. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_freebsd.go +4 -0
  38. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_linux.go +4 -0
  39. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_netbsd.go +26 -0
  40. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/netbsd.go +23 -0
  41. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/setenv.go +1 -1
  42. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols.go +11 -1
  43. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_darwin.go +1 -0
  44. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_freebsd.go +1 -0
  45. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_linux.go +1 -0
  46. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_netbsd.go +30 -0
  47. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_loong64.s +71 -0
  48. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_stubs.s +5 -1
  49. slidge_whatsapp/vendor/github.com/ebitengine/purego/nocgo.go +1 -1
  50. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_amd64.go +8 -4
  51. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_arm64.go +16 -6
  52. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_loong64.go +190 -0
  53. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_other.go +6 -2
  54. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_amd64.s +1 -1
  55. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_arm64.s +1 -1
  56. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_loong64.s +96 -0
  57. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_unix_arm64.s +1 -1
  58. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_unix_loong64.s +75 -0
  59. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall.go +6 -3
  60. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_cgo_linux.go +3 -3
  61. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_sysv.go +13 -10
  62. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_windows.go +1 -1
  63. slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_amd64.s +2002 -2002
  64. slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_arm64.s +4002 -4002
  65. slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_loong64.s +4014 -0
  66. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/log.go +1 -0
  67. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/module.go +118 -0
  68. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgradetable.go +0 -34
  69. slidge_whatsapp/vendor/go.mau.fi/util/exbytes/string.go +20 -0
  70. slidge_whatsapp/vendor/go.mau.fi/util/exbytes/writer.go +78 -0
  71. slidge_whatsapp/vendor/go.mau.fi/util/exslices/cast.go +42 -0
  72. slidge_whatsapp/vendor/go.mau.fi/util/exslices/chunk.go +28 -0
  73. slidge_whatsapp/vendor/go.mau.fi/util/exslices/deduplicate.go +67 -0
  74. slidge_whatsapp/vendor/go.mau.fi/util/exslices/diff.go +63 -0
  75. slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +15 -1
  76. slidge_whatsapp/vendor/go.mau.fi/util/random/string.go +47 -7
  77. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +1 -0
  78. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +34 -0
  79. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +1 -0
  80. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +3 -0
  81. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +1 -2
  82. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +6 -0
  83. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +1 -0
  84. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +63 -42
  85. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +14 -10
  86. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +45 -18
  87. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +23 -0
  88. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +5 -1
  89. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +3 -7
  90. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAICommon/WAAICommon.pb.go +7747 -0
  91. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/{waBotMetadata/WABotMetadata.proto → waAICommon/WAAICommon.proto} +269 -9
  92. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +128 -14
  93. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +10 -0
  94. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +3236 -4732
  95. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +125 -273
  96. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +11 -2
  97. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +1 -0
  98. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.pb.go +220 -81
  99. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waStatusAttributions/WAStatusAttributions.proto +13 -0
  100. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +705 -449
  101. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +23 -0
  102. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +78 -24
  103. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +6 -0
  104. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +516 -267
  105. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +22 -0
  106. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +2 -0
  107. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/request.go +4 -0
  108. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +2 -3
  109. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +110 -28
  110. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +1 -1
  111. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +12 -0
  112. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/lidmap.go +82 -4
  113. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +112 -55
  114. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +8 -7
  115. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/11-redacted-phone-contacts.sql +2 -0
  116. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +20 -0
  117. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +6 -5
  118. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +7 -1
  119. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +3 -0
  120. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +31 -2
  121. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc.go +35 -17
  122. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go +14 -0
  123. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go +20 -0
  124. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +1 -1
  125. slidge_whatsapp/vendor/modules.txt +8 -6
  126. {slidge_whatsapp-0.3.0.dist-info → slidge_whatsapp-0.3.1.dist-info}/METADATA +1 -1
  127. {slidge_whatsapp-0.3.0.dist-info → slidge_whatsapp-0.3.1.dist-info}/RECORD +130 -106
  128. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waBotMetadata/WABotMetadata.pb.go +0 -5156
  129. {slidge_whatsapp-0.3.0.dist-info → slidge_whatsapp-0.3.1.dist-info}/WHEEL +0 -0
  130. {slidge_whatsapp-0.3.0.dist-info → slidge_whatsapp-0.3.1.dist-info}/entry_points.txt +0 -0
  131. {slidge_whatsapp-0.3.0.dist-info → slidge_whatsapp-0.3.1.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[3].Descriptor()
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[3]
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{1, 0}
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[4].Descriptor()
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[4]
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{2, 0}
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[5].Descriptor()
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[5]
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{3, 0}
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[6].Descriptor()
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[6]
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{4, 0}
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[7].Descriptor()
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[7]
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{5, 0}
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[8].Descriptor()
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[8]
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{6, 0}
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[9].Descriptor()
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[9]
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{7, 0}
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[10].Descriptor()
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[10]
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{8, 0}
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[11].Descriptor()
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[11]
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{9, 0}
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[12].Descriptor()
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[12]
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{10, 0}
923
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12, 0}
812
924
  }
813
925
 
814
926
  type PatchDebugData_Platform int32
@@ -823,20 +935,24 @@ 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
826
940
  )
827
941
 
828
942
  // Enum value maps for PatchDebugData_Platform.
829
943
  var (
830
944
  PatchDebugData_Platform_name = map[int32]string{
831
- 0: "ANDROID",
832
- 1: "SMBA",
833
- 2: "IPHONE",
834
- 3: "SMBI",
835
- 4: "WEB",
836
- 5: "UWP",
837
- 6: "DARWIN",
838
- 7: "IPAD",
839
- 8: "WEAROS",
945
+ 0: "ANDROID",
946
+ 1: "SMBA",
947
+ 2: "IPHONE",
948
+ 3: "SMBI",
949
+ 4: "WEB",
950
+ 5: "UWP",
951
+ 6: "DARWIN",
952
+ 7: "IPAD",
953
+ 8: "WEAROS",
954
+ 9: "WASG",
955
+ 10: "WEARM",
840
956
  }
841
957
  PatchDebugData_Platform_value = map[string]int32{
842
958
  "ANDROID": 0,
@@ -848,6 +964,8 @@ var (
848
964
  "DARWIN": 6,
849
965
  "IPAD": 7,
850
966
  "WEAROS": 8,
967
+ "WASG": 9,
968
+ "WEARM": 10,
851
969
  }
852
970
  )
853
971
 
@@ -862,11 +980,11 @@ func (x PatchDebugData_Platform) String() string {
862
980
  }
863
981
 
864
982
  func (PatchDebugData_Platform) Descriptor() protoreflect.EnumDescriptor {
865
- return file_waSyncAction_WASyncAction_proto_enumTypes[13].Descriptor()
983
+ return file_waSyncAction_WASyncAction_proto_enumTypes[15].Descriptor()
866
984
  }
867
985
 
868
986
  func (PatchDebugData_Platform) Type() protoreflect.EnumType {
869
- return &file_waSyncAction_WASyncAction_proto_enumTypes[13]
987
+ return &file_waSyncAction_WASyncAction_proto_enumTypes[15]
870
988
  }
871
989
 
872
990
  func (x PatchDebugData_Platform) Number() protoreflect.EnumNumber {
@@ -885,7 +1003,7 @@ func (x *PatchDebugData_Platform) UnmarshalJSON(b []byte) error {
885
1003
 
886
1004
  // Deprecated: Use PatchDebugData_Platform.Descriptor instead.
887
1005
  func (PatchDebugData_Platform) EnumDescriptor() ([]byte, []int) {
888
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11, 0}
1006
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13, 0}
889
1007
  }
890
1008
 
891
1009
  type CallLogRecord struct {
@@ -1044,6 +1162,58 @@ func (x *CallLogRecord) GetCallType() CallLogRecord_CallType {
1044
1162
  return CallLogRecord_REGULAR
1045
1163
  }
1046
1164
 
1165
+ type AvatarUpdatedAction struct {
1166
+ state protoimpl.MessageState `protogen:"open.v1"`
1167
+ EventType *AvatarUpdatedAction_AvatarEventType `protobuf:"varint,1,opt,name=eventType,enum=WASyncAction.AvatarUpdatedAction_AvatarEventType" json:"eventType,omitempty"`
1168
+ RecentAvatarStickers []*StickerAction `protobuf:"bytes,2,rep,name=recentAvatarStickers" json:"recentAvatarStickers,omitempty"`
1169
+ unknownFields protoimpl.UnknownFields
1170
+ sizeCache protoimpl.SizeCache
1171
+ }
1172
+
1173
+ func (x *AvatarUpdatedAction) Reset() {
1174
+ *x = AvatarUpdatedAction{}
1175
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1176
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1177
+ ms.StoreMessageInfo(mi)
1178
+ }
1179
+
1180
+ func (x *AvatarUpdatedAction) String() string {
1181
+ return protoimpl.X.MessageStringOf(x)
1182
+ }
1183
+
1184
+ func (*AvatarUpdatedAction) ProtoMessage() {}
1185
+
1186
+ func (x *AvatarUpdatedAction) ProtoReflect() protoreflect.Message {
1187
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1188
+ if x != nil {
1189
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1190
+ if ms.LoadMessageInfo() == nil {
1191
+ ms.StoreMessageInfo(mi)
1192
+ }
1193
+ return ms
1194
+ }
1195
+ return mi.MessageOf(x)
1196
+ }
1197
+
1198
+ // Deprecated: Use AvatarUpdatedAction.ProtoReflect.Descriptor instead.
1199
+ func (*AvatarUpdatedAction) Descriptor() ([]byte, []int) {
1200
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1}
1201
+ }
1202
+
1203
+ func (x *AvatarUpdatedAction) GetEventType() AvatarUpdatedAction_AvatarEventType {
1204
+ if x != nil && x.EventType != nil {
1205
+ return *x.EventType
1206
+ }
1207
+ return AvatarUpdatedAction_UPDATED
1208
+ }
1209
+
1210
+ func (x *AvatarUpdatedAction) GetRecentAvatarStickers() []*StickerAction {
1211
+ if x != nil {
1212
+ return x.RecentAvatarStickers
1213
+ }
1214
+ return nil
1215
+ }
1216
+
1047
1217
  type MaibaAIFeaturesControlAction struct {
1048
1218
  state protoimpl.MessageState `protogen:"open.v1"`
1049
1219
  AiFeatureStatus *MaibaAIFeaturesControlAction_MaibaAIFeatureStatus `protobuf:"varint,1,opt,name=aiFeatureStatus,enum=WASyncAction.MaibaAIFeaturesControlAction_MaibaAIFeatureStatus" json:"aiFeatureStatus,omitempty"`
@@ -1053,7 +1223,7 @@ type MaibaAIFeaturesControlAction struct {
1053
1223
 
1054
1224
  func (x *MaibaAIFeaturesControlAction) Reset() {
1055
1225
  *x = MaibaAIFeaturesControlAction{}
1056
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1226
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1057
1227
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1058
1228
  ms.StoreMessageInfo(mi)
1059
1229
  }
@@ -1065,7 +1235,7 @@ func (x *MaibaAIFeaturesControlAction) String() string {
1065
1235
  func (*MaibaAIFeaturesControlAction) ProtoMessage() {}
1066
1236
 
1067
1237
  func (x *MaibaAIFeaturesControlAction) ProtoReflect() protoreflect.Message {
1068
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[1]
1238
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1069
1239
  if x != nil {
1070
1240
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1071
1241
  if ms.LoadMessageInfo() == nil {
@@ -1078,7 +1248,7 @@ func (x *MaibaAIFeaturesControlAction) ProtoReflect() protoreflect.Message {
1078
1248
 
1079
1249
  // Deprecated: Use MaibaAIFeaturesControlAction.ProtoReflect.Descriptor instead.
1080
1250
  func (*MaibaAIFeaturesControlAction) Descriptor() ([]byte, []int) {
1081
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{1}
1251
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
1082
1252
  }
1083
1253
 
1084
1254
  func (x *MaibaAIFeaturesControlAction) GetAiFeatureStatus() MaibaAIFeaturesControlAction_MaibaAIFeatureStatus {
@@ -1098,7 +1268,7 @@ type PaymentTosAction struct {
1098
1268
 
1099
1269
  func (x *PaymentTosAction) Reset() {
1100
1270
  *x = PaymentTosAction{}
1101
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1271
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1102
1272
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1103
1273
  ms.StoreMessageInfo(mi)
1104
1274
  }
@@ -1110,7 +1280,7 @@ func (x *PaymentTosAction) String() string {
1110
1280
  func (*PaymentTosAction) ProtoMessage() {}
1111
1281
 
1112
1282
  func (x *PaymentTosAction) ProtoReflect() protoreflect.Message {
1113
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[2]
1283
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1114
1284
  if x != nil {
1115
1285
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1116
1286
  if ms.LoadMessageInfo() == nil {
@@ -1123,7 +1293,7 @@ func (x *PaymentTosAction) ProtoReflect() protoreflect.Message {
1123
1293
 
1124
1294
  // Deprecated: Use PaymentTosAction.ProtoReflect.Descriptor instead.
1125
1295
  func (*PaymentTosAction) Descriptor() ([]byte, []int) {
1126
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{2}
1296
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
1127
1297
  }
1128
1298
 
1129
1299
  func (x *PaymentTosAction) GetPaymentNotice() PaymentTosAction_PaymentNotice {
@@ -1149,7 +1319,7 @@ type NotificationActivitySettingAction struct {
1149
1319
 
1150
1320
  func (x *NotificationActivitySettingAction) Reset() {
1151
1321
  *x = NotificationActivitySettingAction{}
1152
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1322
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1153
1323
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1154
1324
  ms.StoreMessageInfo(mi)
1155
1325
  }
@@ -1161,7 +1331,7 @@ func (x *NotificationActivitySettingAction) String() string {
1161
1331
  func (*NotificationActivitySettingAction) ProtoMessage() {}
1162
1332
 
1163
1333
  func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message {
1164
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[3]
1334
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1165
1335
  if x != nil {
1166
1336
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1167
1337
  if ms.LoadMessageInfo() == nil {
@@ -1174,7 +1344,7 @@ func (x *NotificationActivitySettingAction) ProtoReflect() protoreflect.Message
1174
1344
 
1175
1345
  // Deprecated: Use NotificationActivitySettingAction.ProtoReflect.Descriptor instead.
1176
1346
  func (*NotificationActivitySettingAction) Descriptor() ([]byte, []int) {
1177
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{3}
1347
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
1178
1348
  }
1179
1349
 
1180
1350
  func (x *NotificationActivitySettingAction) GetNotificationActivitySetting() NotificationActivitySettingAction_NotificationActivitySetting {
@@ -1193,7 +1363,7 @@ type WaffleAccountLinkStateAction struct {
1193
1363
 
1194
1364
  func (x *WaffleAccountLinkStateAction) Reset() {
1195
1365
  *x = WaffleAccountLinkStateAction{}
1196
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1366
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1197
1367
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1198
1368
  ms.StoreMessageInfo(mi)
1199
1369
  }
@@ -1205,7 +1375,7 @@ func (x *WaffleAccountLinkStateAction) String() string {
1205
1375
  func (*WaffleAccountLinkStateAction) ProtoMessage() {}
1206
1376
 
1207
1377
  func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
1208
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[4]
1378
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1209
1379
  if x != nil {
1210
1380
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1211
1381
  if ms.LoadMessageInfo() == nil {
@@ -1218,7 +1388,7 @@ func (x *WaffleAccountLinkStateAction) ProtoReflect() protoreflect.Message {
1218
1388
 
1219
1389
  // Deprecated: Use WaffleAccountLinkStateAction.ProtoReflect.Descriptor instead.
1220
1390
  func (*WaffleAccountLinkStateAction) Descriptor() ([]byte, []int) {
1221
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{4}
1391
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
1222
1392
  }
1223
1393
 
1224
1394
  func (x *WaffleAccountLinkStateAction) GetLinkState() WaffleAccountLinkStateAction_AccountLinkState {
@@ -1240,7 +1410,7 @@ type MerchantPaymentPartnerAction struct {
1240
1410
 
1241
1411
  func (x *MerchantPaymentPartnerAction) Reset() {
1242
1412
  *x = MerchantPaymentPartnerAction{}
1243
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1413
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1244
1414
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1245
1415
  ms.StoreMessageInfo(mi)
1246
1416
  }
@@ -1252,7 +1422,7 @@ func (x *MerchantPaymentPartnerAction) String() string {
1252
1422
  func (*MerchantPaymentPartnerAction) ProtoMessage() {}
1253
1423
 
1254
1424
  func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
1255
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[5]
1425
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1256
1426
  if x != nil {
1257
1427
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1258
1428
  if ms.LoadMessageInfo() == nil {
@@ -1265,7 +1435,7 @@ func (x *MerchantPaymentPartnerAction) ProtoReflect() protoreflect.Message {
1265
1435
 
1266
1436
  // Deprecated: Use MerchantPaymentPartnerAction.ProtoReflect.Descriptor instead.
1267
1437
  func (*MerchantPaymentPartnerAction) Descriptor() ([]byte, []int) {
1268
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{5}
1438
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
1269
1439
  }
1270
1440
 
1271
1441
  func (x *MerchantPaymentPartnerAction) GetStatus() MerchantPaymentPartnerAction_Status {
@@ -1296,6 +1466,50 @@ func (x *MerchantPaymentPartnerAction) GetCredentialID() string {
1296
1466
  return ""
1297
1467
  }
1298
1468
 
1469
+ type GalaxyFlowAction struct {
1470
+ state protoimpl.MessageState `protogen:"open.v1"`
1471
+ Type *GalaxyFlowAction_GalaxyFlowActionType `protobuf:"varint,1,req,name=type,enum=WASyncAction.GalaxyFlowAction_GalaxyFlowActionType" json:"type,omitempty"`
1472
+ unknownFields protoimpl.UnknownFields
1473
+ sizeCache protoimpl.SizeCache
1474
+ }
1475
+
1476
+ func (x *GalaxyFlowAction) Reset() {
1477
+ *x = GalaxyFlowAction{}
1478
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1479
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1480
+ ms.StoreMessageInfo(mi)
1481
+ }
1482
+
1483
+ func (x *GalaxyFlowAction) String() string {
1484
+ return protoimpl.X.MessageStringOf(x)
1485
+ }
1486
+
1487
+ func (*GalaxyFlowAction) ProtoMessage() {}
1488
+
1489
+ func (x *GalaxyFlowAction) ProtoReflect() protoreflect.Message {
1490
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1491
+ if x != nil {
1492
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1493
+ if ms.LoadMessageInfo() == nil {
1494
+ ms.StoreMessageInfo(mi)
1495
+ }
1496
+ return ms
1497
+ }
1498
+ return mi.MessageOf(x)
1499
+ }
1500
+
1501
+ // Deprecated: Use GalaxyFlowAction.ProtoReflect.Descriptor instead.
1502
+ func (*GalaxyFlowAction) Descriptor() ([]byte, []int) {
1503
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
1504
+ }
1505
+
1506
+ func (x *GalaxyFlowAction) GetType() GalaxyFlowAction_GalaxyFlowActionType {
1507
+ if x != nil && x.Type != nil {
1508
+ return *x.Type
1509
+ }
1510
+ return GalaxyFlowAction_LAUNCH
1511
+ }
1512
+
1299
1513
  type NoteEditAction struct {
1300
1514
  state protoimpl.MessageState `protogen:"open.v1"`
1301
1515
  Type *NoteEditAction_NoteType `protobuf:"varint,1,opt,name=type,enum=WASyncAction.NoteEditAction_NoteType" json:"type,omitempty"`
@@ -1309,7 +1523,7 @@ type NoteEditAction struct {
1309
1523
 
1310
1524
  func (x *NoteEditAction) Reset() {
1311
1525
  *x = NoteEditAction{}
1312
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1526
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1313
1527
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1314
1528
  ms.StoreMessageInfo(mi)
1315
1529
  }
@@ -1321,7 +1535,7 @@ func (x *NoteEditAction) String() string {
1321
1535
  func (*NoteEditAction) ProtoMessage() {}
1322
1536
 
1323
1537
  func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
1324
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[6]
1538
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1325
1539
  if x != nil {
1326
1540
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1327
1541
  if ms.LoadMessageInfo() == nil {
@@ -1334,7 +1548,7 @@ func (x *NoteEditAction) ProtoReflect() protoreflect.Message {
1334
1548
 
1335
1549
  // Deprecated: Use NoteEditAction.ProtoReflect.Descriptor instead.
1336
1550
  func (*NoteEditAction) Descriptor() ([]byte, []int) {
1337
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{6}
1551
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
1338
1552
  }
1339
1553
 
1340
1554
  func (x *NoteEditAction) GetType() NoteEditAction_NoteType {
@@ -1382,7 +1596,7 @@ type StatusPrivacyAction struct {
1382
1596
 
1383
1597
  func (x *StatusPrivacyAction) Reset() {
1384
1598
  *x = StatusPrivacyAction{}
1385
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1599
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1386
1600
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1387
1601
  ms.StoreMessageInfo(mi)
1388
1602
  }
@@ -1394,7 +1608,7 @@ func (x *StatusPrivacyAction) String() string {
1394
1608
  func (*StatusPrivacyAction) ProtoMessage() {}
1395
1609
 
1396
1610
  func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
1397
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[7]
1611
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1398
1612
  if x != nil {
1399
1613
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1400
1614
  if ms.LoadMessageInfo() == nil {
@@ -1407,7 +1621,7 @@ func (x *StatusPrivacyAction) ProtoReflect() protoreflect.Message {
1407
1621
 
1408
1622
  // Deprecated: Use StatusPrivacyAction.ProtoReflect.Descriptor instead.
1409
1623
  func (*StatusPrivacyAction) Descriptor() ([]byte, []int) {
1410
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{7}
1624
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
1411
1625
  }
1412
1626
 
1413
1627
  func (x *StatusPrivacyAction) GetMode() StatusPrivacyAction_StatusDistributionMode {
@@ -1439,7 +1653,7 @@ type MarketingMessageAction struct {
1439
1653
 
1440
1654
  func (x *MarketingMessageAction) Reset() {
1441
1655
  *x = MarketingMessageAction{}
1442
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1656
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1443
1657
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1444
1658
  ms.StoreMessageInfo(mi)
1445
1659
  }
@@ -1451,7 +1665,7 @@ func (x *MarketingMessageAction) String() string {
1451
1665
  func (*MarketingMessageAction) ProtoMessage() {}
1452
1666
 
1453
1667
  func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
1454
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[8]
1668
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1455
1669
  if x != nil {
1456
1670
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1457
1671
  if ms.LoadMessageInfo() == nil {
@@ -1464,7 +1678,7 @@ func (x *MarketingMessageAction) ProtoReflect() protoreflect.Message {
1464
1678
 
1465
1679
  // Deprecated: Use MarketingMessageAction.ProtoReflect.Descriptor instead.
1466
1680
  func (*MarketingMessageAction) Descriptor() ([]byte, []int) {
1467
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{8}
1681
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
1468
1682
  }
1469
1683
 
1470
1684
  func (x *MarketingMessageAction) GetName() string {
@@ -1525,7 +1739,7 @@ type UsernameChatStartModeAction struct {
1525
1739
 
1526
1740
  func (x *UsernameChatStartModeAction) Reset() {
1527
1741
  *x = UsernameChatStartModeAction{}
1528
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1742
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1529
1743
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1530
1744
  ms.StoreMessageInfo(mi)
1531
1745
  }
@@ -1537,7 +1751,7 @@ func (x *UsernameChatStartModeAction) String() string {
1537
1751
  func (*UsernameChatStartModeAction) ProtoMessage() {}
1538
1752
 
1539
1753
  func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
1540
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[9]
1754
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1541
1755
  if x != nil {
1542
1756
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1543
1757
  if ms.LoadMessageInfo() == nil {
@@ -1550,7 +1764,7 @@ func (x *UsernameChatStartModeAction) ProtoReflect() protoreflect.Message {
1550
1764
 
1551
1765
  // Deprecated: Use UsernameChatStartModeAction.ProtoReflect.Descriptor instead.
1552
1766
  func (*UsernameChatStartModeAction) Descriptor() ([]byte, []int) {
1553
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{9}
1767
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
1554
1768
  }
1555
1769
 
1556
1770
  func (x *UsernameChatStartModeAction) GetChatStartMode() UsernameChatStartModeAction_ChatStartMode {
@@ -1576,7 +1790,7 @@ type LabelEditAction struct {
1576
1790
 
1577
1791
  func (x *LabelEditAction) Reset() {
1578
1792
  *x = LabelEditAction{}
1579
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1793
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
1580
1794
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1581
1795
  ms.StoreMessageInfo(mi)
1582
1796
  }
@@ -1588,7 +1802,7 @@ func (x *LabelEditAction) String() string {
1588
1802
  func (*LabelEditAction) ProtoMessage() {}
1589
1803
 
1590
1804
  func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
1591
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[10]
1805
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
1592
1806
  if x != nil {
1593
1807
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1594
1808
  if ms.LoadMessageInfo() == nil {
@@ -1601,7 +1815,7 @@ func (x *LabelEditAction) ProtoReflect() protoreflect.Message {
1601
1815
 
1602
1816
  // Deprecated: Use LabelEditAction.ProtoReflect.Descriptor instead.
1603
1817
  func (*LabelEditAction) Descriptor() ([]byte, []int) {
1604
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{10}
1818
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
1605
1819
  }
1606
1820
 
1607
1821
  func (x *LabelEditAction) GetName() string {
@@ -1679,7 +1893,7 @@ type PatchDebugData struct {
1679
1893
 
1680
1894
  func (x *PatchDebugData) Reset() {
1681
1895
  *x = PatchDebugData{}
1682
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1896
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
1683
1897
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1684
1898
  ms.StoreMessageInfo(mi)
1685
1899
  }
@@ -1691,7 +1905,7 @@ func (x *PatchDebugData) String() string {
1691
1905
  func (*PatchDebugData) ProtoMessage() {}
1692
1906
 
1693
1907
  func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
1694
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[11]
1908
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
1695
1909
  if x != nil {
1696
1910
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1697
1911
  if ms.LoadMessageInfo() == nil {
@@ -1704,7 +1918,7 @@ func (x *PatchDebugData) ProtoReflect() protoreflect.Message {
1704
1918
 
1705
1919
  // Deprecated: Use PatchDebugData.ProtoReflect.Descriptor instead.
1706
1920
  func (*PatchDebugData) Descriptor() ([]byte, []int) {
1707
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{11}
1921
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
1708
1922
  }
1709
1923
 
1710
1924
  func (x *PatchDebugData) GetCurrentLthash() []byte {
@@ -1794,7 +2008,7 @@ type RecentEmojiWeight struct {
1794
2008
 
1795
2009
  func (x *RecentEmojiWeight) Reset() {
1796
2010
  *x = RecentEmojiWeight{}
1797
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
2011
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
1798
2012
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1799
2013
  ms.StoreMessageInfo(mi)
1800
2014
  }
@@ -1806,7 +2020,7 @@ func (x *RecentEmojiWeight) String() string {
1806
2020
  func (*RecentEmojiWeight) ProtoMessage() {}
1807
2021
 
1808
2022
  func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
1809
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[12]
2023
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
1810
2024
  if x != nil {
1811
2025
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1812
2026
  if ms.LoadMessageInfo() == nil {
@@ -1819,7 +2033,7 @@ func (x *RecentEmojiWeight) ProtoReflect() protoreflect.Message {
1819
2033
 
1820
2034
  // Deprecated: Use RecentEmojiWeight.ProtoReflect.Descriptor instead.
1821
2035
  func (*RecentEmojiWeight) Descriptor() ([]byte, []int) {
1822
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{12}
2036
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
1823
2037
  }
1824
2038
 
1825
2039
  func (x *RecentEmojiWeight) GetEmoji() string {
@@ -1902,13 +2116,15 @@ type SyncActionValue struct {
1902
2116
  BusinessBroadcastListAction *BusinessBroadcastListAction `protobuf:"bytes,69,opt,name=businessBroadcastListAction" json:"businessBroadcastListAction,omitempty"`
1903
2117
  MusicUserIDAction *MusicUserIdAction `protobuf:"bytes,70,opt,name=musicUserIDAction" json:"musicUserIDAction,omitempty"`
1904
2118
  StatusPostOptInNotificationPreferencesAction *StatusPostOptInNotificationPreferencesAction `protobuf:"bytes,71,opt,name=statusPostOptInNotificationPreferencesAction" json:"statusPostOptInNotificationPreferencesAction,omitempty"`
2119
+ AvatarUpdatedAction *AvatarUpdatedAction `protobuf:"bytes,72,opt,name=avatarUpdatedAction" json:"avatarUpdatedAction,omitempty"`
2120
+ GalaxyFlowAction *GalaxyFlowAction `protobuf:"bytes,73,opt,name=galaxyFlowAction" json:"galaxyFlowAction,omitempty"`
1905
2121
  unknownFields protoimpl.UnknownFields
1906
2122
  sizeCache protoimpl.SizeCache
1907
2123
  }
1908
2124
 
1909
2125
  func (x *SyncActionValue) Reset() {
1910
2126
  *x = SyncActionValue{}
1911
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2127
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
1912
2128
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1913
2129
  ms.StoreMessageInfo(mi)
1914
2130
  }
@@ -1920,7 +2136,7 @@ func (x *SyncActionValue) String() string {
1920
2136
  func (*SyncActionValue) ProtoMessage() {}
1921
2137
 
1922
2138
  func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
1923
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[13]
2139
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
1924
2140
  if x != nil {
1925
2141
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1926
2142
  if ms.LoadMessageInfo() == nil {
@@ -1933,7 +2149,7 @@ func (x *SyncActionValue) ProtoReflect() protoreflect.Message {
1933
2149
 
1934
2150
  // Deprecated: Use SyncActionValue.ProtoReflect.Descriptor instead.
1935
2151
  func (*SyncActionValue) Descriptor() ([]byte, []int) {
1936
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{13}
2152
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{15}
1937
2153
  }
1938
2154
 
1939
2155
  func (x *SyncActionValue) GetTimestamp() int64 {
@@ -2384,6 +2600,20 @@ func (x *SyncActionValue) GetStatusPostOptInNotificationPreferencesAction() *Sta
2384
2600
  return nil
2385
2601
  }
2386
2602
 
2603
+ func (x *SyncActionValue) GetAvatarUpdatedAction() *AvatarUpdatedAction {
2604
+ if x != nil {
2605
+ return x.AvatarUpdatedAction
2606
+ }
2607
+ return nil
2608
+ }
2609
+
2610
+ func (x *SyncActionValue) GetGalaxyFlowAction() *GalaxyFlowAction {
2611
+ if x != nil {
2612
+ return x.GalaxyFlowAction
2613
+ }
2614
+ return nil
2615
+ }
2616
+
2387
2617
  type StatusPostOptInNotificationPreferencesAction struct {
2388
2618
  state protoimpl.MessageState `protogen:"open.v1"`
2389
2619
  Enabled *bool `protobuf:"varint,1,opt,name=enabled" json:"enabled,omitempty"`
@@ -2393,7 +2623,7 @@ type StatusPostOptInNotificationPreferencesAction struct {
2393
2623
 
2394
2624
  func (x *StatusPostOptInNotificationPreferencesAction) Reset() {
2395
2625
  *x = StatusPostOptInNotificationPreferencesAction{}
2396
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2626
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2397
2627
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2398
2628
  ms.StoreMessageInfo(mi)
2399
2629
  }
@@ -2405,7 +2635,7 @@ func (x *StatusPostOptInNotificationPreferencesAction) String() string {
2405
2635
  func (*StatusPostOptInNotificationPreferencesAction) ProtoMessage() {}
2406
2636
 
2407
2637
  func (x *StatusPostOptInNotificationPreferencesAction) ProtoReflect() protoreflect.Message {
2408
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[14]
2638
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2409
2639
  if x != nil {
2410
2640
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2411
2641
  if ms.LoadMessageInfo() == nil {
@@ -2418,7 +2648,7 @@ func (x *StatusPostOptInNotificationPreferencesAction) ProtoReflect() protorefle
2418
2648
 
2419
2649
  // Deprecated: Use StatusPostOptInNotificationPreferencesAction.ProtoReflect.Descriptor instead.
2420
2650
  func (*StatusPostOptInNotificationPreferencesAction) Descriptor() ([]byte, []int) {
2421
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{14}
2651
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16}
2422
2652
  }
2423
2653
 
2424
2654
  func (x *StatusPostOptInNotificationPreferencesAction) GetEnabled() bool {
@@ -2438,7 +2668,7 @@ type BroadcastListParticipant struct {
2438
2668
 
2439
2669
  func (x *BroadcastListParticipant) Reset() {
2440
2670
  *x = BroadcastListParticipant{}
2441
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2671
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2442
2672
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2443
2673
  ms.StoreMessageInfo(mi)
2444
2674
  }
@@ -2450,7 +2680,7 @@ func (x *BroadcastListParticipant) String() string {
2450
2680
  func (*BroadcastListParticipant) ProtoMessage() {}
2451
2681
 
2452
2682
  func (x *BroadcastListParticipant) ProtoReflect() protoreflect.Message {
2453
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[15]
2683
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2454
2684
  if x != nil {
2455
2685
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2456
2686
  if ms.LoadMessageInfo() == nil {
@@ -2463,7 +2693,7 @@ func (x *BroadcastListParticipant) ProtoReflect() protoreflect.Message {
2463
2693
 
2464
2694
  // Deprecated: Use BroadcastListParticipant.ProtoReflect.Descriptor instead.
2465
2695
  func (*BroadcastListParticipant) Descriptor() ([]byte, []int) {
2466
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{15}
2696
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{17}
2467
2697
  }
2468
2698
 
2469
2699
  func (x *BroadcastListParticipant) GetLidJID() string {
@@ -2491,7 +2721,7 @@ type BusinessBroadcastListAction struct {
2491
2721
 
2492
2722
  func (x *BusinessBroadcastListAction) Reset() {
2493
2723
  *x = BusinessBroadcastListAction{}
2494
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2724
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2495
2725
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2496
2726
  ms.StoreMessageInfo(mi)
2497
2727
  }
@@ -2503,7 +2733,7 @@ func (x *BusinessBroadcastListAction) String() string {
2503
2733
  func (*BusinessBroadcastListAction) ProtoMessage() {}
2504
2734
 
2505
2735
  func (x *BusinessBroadcastListAction) ProtoReflect() protoreflect.Message {
2506
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[16]
2736
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2507
2737
  if x != nil {
2508
2738
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2509
2739
  if ms.LoadMessageInfo() == nil {
@@ -2516,7 +2746,7 @@ func (x *BusinessBroadcastListAction) ProtoReflect() protoreflect.Message {
2516
2746
 
2517
2747
  // Deprecated: Use BusinessBroadcastListAction.ProtoReflect.Descriptor instead.
2518
2748
  func (*BusinessBroadcastListAction) Descriptor() ([]byte, []int) {
2519
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{16}
2749
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
2520
2750
  }
2521
2751
 
2522
2752
  func (x *BusinessBroadcastListAction) GetDeleted() bool {
@@ -2549,7 +2779,7 @@ type BusinessBroadcastAssociationAction struct {
2549
2779
 
2550
2780
  func (x *BusinessBroadcastAssociationAction) Reset() {
2551
2781
  *x = BusinessBroadcastAssociationAction{}
2552
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2782
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2553
2783
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2554
2784
  ms.StoreMessageInfo(mi)
2555
2785
  }
@@ -2561,7 +2791,7 @@ func (x *BusinessBroadcastAssociationAction) String() string {
2561
2791
  func (*BusinessBroadcastAssociationAction) ProtoMessage() {}
2562
2792
 
2563
2793
  func (x *BusinessBroadcastAssociationAction) ProtoReflect() protoreflect.Message {
2564
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[17]
2794
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2565
2795
  if x != nil {
2566
2796
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2567
2797
  if ms.LoadMessageInfo() == nil {
@@ -2574,7 +2804,7 @@ func (x *BusinessBroadcastAssociationAction) ProtoReflect() protoreflect.Message
2574
2804
 
2575
2805
  // Deprecated: Use BusinessBroadcastAssociationAction.ProtoReflect.Descriptor instead.
2576
2806
  func (*BusinessBroadcastAssociationAction) Descriptor() ([]byte, []int) {
2577
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{17}
2807
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
2578
2808
  }
2579
2809
 
2580
2810
  func (x *BusinessBroadcastAssociationAction) GetDeleted() bool {
@@ -2593,7 +2823,7 @@ type CtwaPerCustomerDataSharingAction struct {
2593
2823
 
2594
2824
  func (x *CtwaPerCustomerDataSharingAction) Reset() {
2595
2825
  *x = CtwaPerCustomerDataSharingAction{}
2596
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2826
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2597
2827
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2598
2828
  ms.StoreMessageInfo(mi)
2599
2829
  }
@@ -2605,7 +2835,7 @@ func (x *CtwaPerCustomerDataSharingAction) String() string {
2605
2835
  func (*CtwaPerCustomerDataSharingAction) ProtoMessage() {}
2606
2836
 
2607
2837
  func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
2608
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[18]
2838
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2609
2839
  if x != nil {
2610
2840
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2611
2841
  if ms.LoadMessageInfo() == nil {
@@ -2618,7 +2848,7 @@ func (x *CtwaPerCustomerDataSharingAction) ProtoReflect() protoreflect.Message {
2618
2848
 
2619
2849
  // Deprecated: Use CtwaPerCustomerDataSharingAction.ProtoReflect.Descriptor instead.
2620
2850
  func (*CtwaPerCustomerDataSharingAction) Descriptor() ([]byte, []int) {
2621
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{18}
2851
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
2622
2852
  }
2623
2853
 
2624
2854
  func (x *CtwaPerCustomerDataSharingAction) GetIsCtwaPerCustomerDataSharingEnabled() bool {
@@ -2640,7 +2870,7 @@ type LidContactAction struct {
2640
2870
 
2641
2871
  func (x *LidContactAction) Reset() {
2642
2872
  *x = LidContactAction{}
2643
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2873
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2644
2874
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2645
2875
  ms.StoreMessageInfo(mi)
2646
2876
  }
@@ -2652,7 +2882,7 @@ func (x *LidContactAction) String() string {
2652
2882
  func (*LidContactAction) ProtoMessage() {}
2653
2883
 
2654
2884
  func (x *LidContactAction) ProtoReflect() protoreflect.Message {
2655
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[19]
2885
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2656
2886
  if x != nil {
2657
2887
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2658
2888
  if ms.LoadMessageInfo() == nil {
@@ -2665,7 +2895,7 @@ func (x *LidContactAction) ProtoReflect() protoreflect.Message {
2665
2895
 
2666
2896
  // Deprecated: Use LidContactAction.ProtoReflect.Descriptor instead.
2667
2897
  func (*LidContactAction) Descriptor() ([]byte, []int) {
2668
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{19}
2898
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
2669
2899
  }
2670
2900
 
2671
2901
  func (x *LidContactAction) GetFullName() string {
@@ -2705,7 +2935,7 @@ type FavoritesAction struct {
2705
2935
 
2706
2936
  func (x *FavoritesAction) Reset() {
2707
2937
  *x = FavoritesAction{}
2708
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2938
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2709
2939
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2710
2940
  ms.StoreMessageInfo(mi)
2711
2941
  }
@@ -2717,7 +2947,7 @@ func (x *FavoritesAction) String() string {
2717
2947
  func (*FavoritesAction) ProtoMessage() {}
2718
2948
 
2719
2949
  func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
2720
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[20]
2950
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
2721
2951
  if x != nil {
2722
2952
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2723
2953
  if ms.LoadMessageInfo() == nil {
@@ -2730,7 +2960,7 @@ func (x *FavoritesAction) ProtoReflect() protoreflect.Message {
2730
2960
 
2731
2961
  // Deprecated: Use FavoritesAction.ProtoReflect.Descriptor instead.
2732
2962
  func (*FavoritesAction) Descriptor() ([]byte, []int) {
2733
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20}
2963
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
2734
2964
  }
2735
2965
 
2736
2966
  func (x *FavoritesAction) GetFavorites() []*FavoritesAction_Favorite {
@@ -2749,7 +2979,7 @@ type PrivacySettingChannelsPersonalisedRecommendationAction struct {
2749
2979
 
2750
2980
  func (x *PrivacySettingChannelsPersonalisedRecommendationAction) Reset() {
2751
2981
  *x = PrivacySettingChannelsPersonalisedRecommendationAction{}
2752
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2982
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
2753
2983
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2754
2984
  ms.StoreMessageInfo(mi)
2755
2985
  }
@@ -2761,7 +2991,7 @@ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) String() string
2761
2991
  func (*PrivacySettingChannelsPersonalisedRecommendationAction) ProtoMessage() {}
2762
2992
 
2763
2993
  func (x *PrivacySettingChannelsPersonalisedRecommendationAction) ProtoReflect() protoreflect.Message {
2764
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[21]
2994
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
2765
2995
  if x != nil {
2766
2996
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2767
2997
  if ms.LoadMessageInfo() == nil {
@@ -2774,7 +3004,7 @@ func (x *PrivacySettingChannelsPersonalisedRecommendationAction) ProtoReflect()
2774
3004
 
2775
3005
  // Deprecated: Use PrivacySettingChannelsPersonalisedRecommendationAction.ProtoReflect.Descriptor instead.
2776
3006
  func (*PrivacySettingChannelsPersonalisedRecommendationAction) Descriptor() ([]byte, []int) {
2777
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{21}
3007
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
2778
3008
  }
2779
3009
 
2780
3010
  func (x *PrivacySettingChannelsPersonalisedRecommendationAction) GetIsUserOptedOut() bool {
@@ -2793,7 +3023,7 @@ type PrivacySettingDisableLinkPreviewsAction struct {
2793
3023
 
2794
3024
  func (x *PrivacySettingDisableLinkPreviewsAction) Reset() {
2795
3025
  *x = PrivacySettingDisableLinkPreviewsAction{}
2796
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
3026
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
2797
3027
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2798
3028
  ms.StoreMessageInfo(mi)
2799
3029
  }
@@ -2805,7 +3035,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) String() string {
2805
3035
  func (*PrivacySettingDisableLinkPreviewsAction) ProtoMessage() {}
2806
3036
 
2807
3037
  func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Message {
2808
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[22]
3038
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
2809
3039
  if x != nil {
2810
3040
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2811
3041
  if ms.LoadMessageInfo() == nil {
@@ -2818,7 +3048,7 @@ func (x *PrivacySettingDisableLinkPreviewsAction) ProtoReflect() protoreflect.Me
2818
3048
 
2819
3049
  // Deprecated: Use PrivacySettingDisableLinkPreviewsAction.ProtoReflect.Descriptor instead.
2820
3050
  func (*PrivacySettingDisableLinkPreviewsAction) Descriptor() ([]byte, []int) {
2821
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22}
3051
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
2822
3052
  }
2823
3053
 
2824
3054
  func (x *PrivacySettingDisableLinkPreviewsAction) GetIsPreviewsDisabled() bool {
@@ -2837,7 +3067,7 @@ type WamoUserIdentifierAction struct {
2837
3067
 
2838
3068
  func (x *WamoUserIdentifierAction) Reset() {
2839
3069
  *x = WamoUserIdentifierAction{}
2840
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
3070
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
2841
3071
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2842
3072
  ms.StoreMessageInfo(mi)
2843
3073
  }
@@ -2849,7 +3079,7 @@ func (x *WamoUserIdentifierAction) String() string {
2849
3079
  func (*WamoUserIdentifierAction) ProtoMessage() {}
2850
3080
 
2851
3081
  func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
2852
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[23]
3082
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
2853
3083
  if x != nil {
2854
3084
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2855
3085
  if ms.LoadMessageInfo() == nil {
@@ -2862,7 +3092,7 @@ func (x *WamoUserIdentifierAction) ProtoReflect() protoreflect.Message {
2862
3092
 
2863
3093
  // Deprecated: Use WamoUserIdentifierAction.ProtoReflect.Descriptor instead.
2864
3094
  func (*WamoUserIdentifierAction) Descriptor() ([]byte, []int) {
2865
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{23}
3095
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
2866
3096
  }
2867
3097
 
2868
3098
  func (x *WamoUserIdentifierAction) GetIdentifier() string {
@@ -2881,7 +3111,7 @@ type LockChatAction struct {
2881
3111
 
2882
3112
  func (x *LockChatAction) Reset() {
2883
3113
  *x = LockChatAction{}
2884
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
3114
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
2885
3115
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2886
3116
  ms.StoreMessageInfo(mi)
2887
3117
  }
@@ -2893,7 +3123,7 @@ func (x *LockChatAction) String() string {
2893
3123
  func (*LockChatAction) ProtoMessage() {}
2894
3124
 
2895
3125
  func (x *LockChatAction) ProtoReflect() protoreflect.Message {
2896
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[24]
3126
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
2897
3127
  if x != nil {
2898
3128
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2899
3129
  if ms.LoadMessageInfo() == nil {
@@ -2906,7 +3136,7 @@ func (x *LockChatAction) ProtoReflect() protoreflect.Message {
2906
3136
 
2907
3137
  // Deprecated: Use LockChatAction.ProtoReflect.Descriptor instead.
2908
3138
  func (*LockChatAction) Descriptor() ([]byte, []int) {
2909
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{24}
3139
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
2910
3140
  }
2911
3141
 
2912
3142
  func (x *LockChatAction) GetLocked() bool {
@@ -2925,7 +3155,7 @@ type CustomPaymentMethodsAction struct {
2925
3155
 
2926
3156
  func (x *CustomPaymentMethodsAction) Reset() {
2927
3157
  *x = CustomPaymentMethodsAction{}
2928
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
3158
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
2929
3159
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2930
3160
  ms.StoreMessageInfo(mi)
2931
3161
  }
@@ -2937,7 +3167,7 @@ func (x *CustomPaymentMethodsAction) String() string {
2937
3167
  func (*CustomPaymentMethodsAction) ProtoMessage() {}
2938
3168
 
2939
3169
  func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
2940
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[25]
3170
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
2941
3171
  if x != nil {
2942
3172
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2943
3173
  if ms.LoadMessageInfo() == nil {
@@ -2950,7 +3180,7 @@ func (x *CustomPaymentMethodsAction) ProtoReflect() protoreflect.Message {
2950
3180
 
2951
3181
  // Deprecated: Use CustomPaymentMethodsAction.ProtoReflect.Descriptor instead.
2952
3182
  func (*CustomPaymentMethodsAction) Descriptor() ([]byte, []int) {
2953
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{25}
3183
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
2954
3184
  }
2955
3185
 
2956
3186
  func (x *CustomPaymentMethodsAction) GetCustomPaymentMethods() []*CustomPaymentMethod {
@@ -2972,7 +3202,7 @@ type CustomPaymentMethod struct {
2972
3202
 
2973
3203
  func (x *CustomPaymentMethod) Reset() {
2974
3204
  *x = CustomPaymentMethod{}
2975
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
3205
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
2976
3206
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2977
3207
  ms.StoreMessageInfo(mi)
2978
3208
  }
@@ -2984,7 +3214,7 @@ func (x *CustomPaymentMethod) String() string {
2984
3214
  func (*CustomPaymentMethod) ProtoMessage() {}
2985
3215
 
2986
3216
  func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
2987
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[26]
3217
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
2988
3218
  if x != nil {
2989
3219
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2990
3220
  if ms.LoadMessageInfo() == nil {
@@ -2997,7 +3227,7 @@ func (x *CustomPaymentMethod) ProtoReflect() protoreflect.Message {
2997
3227
 
2998
3228
  // Deprecated: Use CustomPaymentMethod.ProtoReflect.Descriptor instead.
2999
3229
  func (*CustomPaymentMethod) Descriptor() ([]byte, []int) {
3000
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{26}
3230
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
3001
3231
  }
3002
3232
 
3003
3233
  func (x *CustomPaymentMethod) GetCredentialID() string {
@@ -3038,7 +3268,7 @@ type CustomPaymentMethodMetadata struct {
3038
3268
 
3039
3269
  func (x *CustomPaymentMethodMetadata) Reset() {
3040
3270
  *x = CustomPaymentMethodMetadata{}
3041
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
3271
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
3042
3272
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3043
3273
  ms.StoreMessageInfo(mi)
3044
3274
  }
@@ -3050,7 +3280,7 @@ func (x *CustomPaymentMethodMetadata) String() string {
3050
3280
  func (*CustomPaymentMethodMetadata) ProtoMessage() {}
3051
3281
 
3052
3282
  func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
3053
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[27]
3283
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
3054
3284
  if x != nil {
3055
3285
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3056
3286
  if ms.LoadMessageInfo() == nil {
@@ -3063,7 +3293,7 @@ func (x *CustomPaymentMethodMetadata) ProtoReflect() protoreflect.Message {
3063
3293
 
3064
3294
  // Deprecated: Use CustomPaymentMethodMetadata.ProtoReflect.Descriptor instead.
3065
3295
  func (*CustomPaymentMethodMetadata) Descriptor() ([]byte, []int) {
3066
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{27}
3296
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
3067
3297
  }
3068
3298
 
3069
3299
  func (x *CustomPaymentMethodMetadata) GetKey() string {
@@ -3089,7 +3319,7 @@ type PaymentInfoAction struct {
3089
3319
 
3090
3320
  func (x *PaymentInfoAction) Reset() {
3091
3321
  *x = PaymentInfoAction{}
3092
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
3322
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
3093
3323
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3094
3324
  ms.StoreMessageInfo(mi)
3095
3325
  }
@@ -3101,7 +3331,7 @@ func (x *PaymentInfoAction) String() string {
3101
3331
  func (*PaymentInfoAction) ProtoMessage() {}
3102
3332
 
3103
3333
  func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
3104
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[28]
3334
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
3105
3335
  if x != nil {
3106
3336
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3107
3337
  if ms.LoadMessageInfo() == nil {
@@ -3114,7 +3344,7 @@ func (x *PaymentInfoAction) ProtoReflect() protoreflect.Message {
3114
3344
 
3115
3345
  // Deprecated: Use PaymentInfoAction.ProtoReflect.Descriptor instead.
3116
3346
  func (*PaymentInfoAction) Descriptor() ([]byte, []int) {
3117
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{28}
3347
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
3118
3348
  }
3119
3349
 
3120
3350
  func (x *PaymentInfoAction) GetCpi() string {
@@ -3133,7 +3363,7 @@ type LabelReorderingAction struct {
3133
3363
 
3134
3364
  func (x *LabelReorderingAction) Reset() {
3135
3365
  *x = LabelReorderingAction{}
3136
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
3366
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
3137
3367
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3138
3368
  ms.StoreMessageInfo(mi)
3139
3369
  }
@@ -3145,7 +3375,7 @@ func (x *LabelReorderingAction) String() string {
3145
3375
  func (*LabelReorderingAction) ProtoMessage() {}
3146
3376
 
3147
3377
  func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
3148
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[29]
3378
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
3149
3379
  if x != nil {
3150
3380
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3151
3381
  if ms.LoadMessageInfo() == nil {
@@ -3158,7 +3388,7 @@ func (x *LabelReorderingAction) ProtoReflect() protoreflect.Message {
3158
3388
 
3159
3389
  // Deprecated: Use LabelReorderingAction.ProtoReflect.Descriptor instead.
3160
3390
  func (*LabelReorderingAction) Descriptor() ([]byte, []int) {
3161
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{29}
3391
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
3162
3392
  }
3163
3393
 
3164
3394
  func (x *LabelReorderingAction) GetSortedLabelIDs() []int32 {
@@ -3178,7 +3408,7 @@ type DeleteIndividualCallLogAction struct {
3178
3408
 
3179
3409
  func (x *DeleteIndividualCallLogAction) Reset() {
3180
3410
  *x = DeleteIndividualCallLogAction{}
3181
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
3411
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
3182
3412
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3183
3413
  ms.StoreMessageInfo(mi)
3184
3414
  }
@@ -3190,7 +3420,7 @@ func (x *DeleteIndividualCallLogAction) String() string {
3190
3420
  func (*DeleteIndividualCallLogAction) ProtoMessage() {}
3191
3421
 
3192
3422
  func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
3193
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[30]
3423
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
3194
3424
  if x != nil {
3195
3425
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3196
3426
  if ms.LoadMessageInfo() == nil {
@@ -3203,7 +3433,7 @@ func (x *DeleteIndividualCallLogAction) ProtoReflect() protoreflect.Message {
3203
3433
 
3204
3434
  // Deprecated: Use DeleteIndividualCallLogAction.ProtoReflect.Descriptor instead.
3205
3435
  func (*DeleteIndividualCallLogAction) Descriptor() ([]byte, []int) {
3206
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{30}
3436
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{32}
3207
3437
  }
3208
3438
 
3209
3439
  func (x *DeleteIndividualCallLogAction) GetPeerJID() string {
@@ -3229,7 +3459,7 @@ type BotWelcomeRequestAction struct {
3229
3459
 
3230
3460
  func (x *BotWelcomeRequestAction) Reset() {
3231
3461
  *x = BotWelcomeRequestAction{}
3232
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
3462
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
3233
3463
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3234
3464
  ms.StoreMessageInfo(mi)
3235
3465
  }
@@ -3241,7 +3471,7 @@ func (x *BotWelcomeRequestAction) String() string {
3241
3471
  func (*BotWelcomeRequestAction) ProtoMessage() {}
3242
3472
 
3243
3473
  func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
3244
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[31]
3474
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
3245
3475
  if x != nil {
3246
3476
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3247
3477
  if ms.LoadMessageInfo() == nil {
@@ -3254,7 +3484,7 @@ func (x *BotWelcomeRequestAction) ProtoReflect() protoreflect.Message {
3254
3484
 
3255
3485
  // Deprecated: Use BotWelcomeRequestAction.ProtoReflect.Descriptor instead.
3256
3486
  func (*BotWelcomeRequestAction) Descriptor() ([]byte, []int) {
3257
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{31}
3487
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
3258
3488
  }
3259
3489
 
3260
3490
  func (x *BotWelcomeRequestAction) GetIsSent() bool {
@@ -3273,7 +3503,7 @@ type MusicUserIdAction struct {
3273
3503
 
3274
3504
  func (x *MusicUserIdAction) Reset() {
3275
3505
  *x = MusicUserIdAction{}
3276
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
3506
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3277
3507
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3278
3508
  ms.StoreMessageInfo(mi)
3279
3509
  }
@@ -3285,7 +3515,7 @@ func (x *MusicUserIdAction) String() string {
3285
3515
  func (*MusicUserIdAction) ProtoMessage() {}
3286
3516
 
3287
3517
  func (x *MusicUserIdAction) ProtoReflect() protoreflect.Message {
3288
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[32]
3518
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3289
3519
  if x != nil {
3290
3520
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3291
3521
  if ms.LoadMessageInfo() == nil {
@@ -3298,7 +3528,7 @@ func (x *MusicUserIdAction) ProtoReflect() protoreflect.Message {
3298
3528
 
3299
3529
  // Deprecated: Use MusicUserIdAction.ProtoReflect.Descriptor instead.
3300
3530
  func (*MusicUserIdAction) Descriptor() ([]byte, []int) {
3301
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{32}
3531
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
3302
3532
  }
3303
3533
 
3304
3534
  func (x *MusicUserIdAction) GetMusicUserID() string {
@@ -3317,7 +3547,7 @@ type CallLogAction struct {
3317
3547
 
3318
3548
  func (x *CallLogAction) Reset() {
3319
3549
  *x = CallLogAction{}
3320
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
3550
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3321
3551
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3322
3552
  ms.StoreMessageInfo(mi)
3323
3553
  }
@@ -3329,7 +3559,7 @@ func (x *CallLogAction) String() string {
3329
3559
  func (*CallLogAction) ProtoMessage() {}
3330
3560
 
3331
3561
  func (x *CallLogAction) ProtoReflect() protoreflect.Message {
3332
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[33]
3562
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3333
3563
  if x != nil {
3334
3564
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3335
3565
  if ms.LoadMessageInfo() == nil {
@@ -3342,7 +3572,7 @@ func (x *CallLogAction) ProtoReflect() protoreflect.Message {
3342
3572
 
3343
3573
  // Deprecated: Use CallLogAction.ProtoReflect.Descriptor instead.
3344
3574
  func (*CallLogAction) Descriptor() ([]byte, []int) {
3345
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{33}
3575
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{35}
3346
3576
  }
3347
3577
 
3348
3578
  func (x *CallLogAction) GetCallLogRecord() *CallLogRecord {
@@ -3361,7 +3591,7 @@ type PrivacySettingRelayAllCalls struct {
3361
3591
 
3362
3592
  func (x *PrivacySettingRelayAllCalls) Reset() {
3363
3593
  *x = PrivacySettingRelayAllCalls{}
3364
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3594
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3365
3595
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3366
3596
  ms.StoreMessageInfo(mi)
3367
3597
  }
@@ -3373,7 +3603,7 @@ func (x *PrivacySettingRelayAllCalls) String() string {
3373
3603
  func (*PrivacySettingRelayAllCalls) ProtoMessage() {}
3374
3604
 
3375
3605
  func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
3376
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[34]
3606
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3377
3607
  if x != nil {
3378
3608
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3379
3609
  if ms.LoadMessageInfo() == nil {
@@ -3386,7 +3616,7 @@ func (x *PrivacySettingRelayAllCalls) ProtoReflect() protoreflect.Message {
3386
3616
 
3387
3617
  // Deprecated: Use PrivacySettingRelayAllCalls.ProtoReflect.Descriptor instead.
3388
3618
  func (*PrivacySettingRelayAllCalls) Descriptor() ([]byte, []int) {
3389
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{34}
3619
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
3390
3620
  }
3391
3621
 
3392
3622
  func (x *PrivacySettingRelayAllCalls) GetIsEnabled() bool {
@@ -3405,7 +3635,7 @@ type DetectedOutcomesStatusAction struct {
3405
3635
 
3406
3636
  func (x *DetectedOutcomesStatusAction) Reset() {
3407
3637
  *x = DetectedOutcomesStatusAction{}
3408
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3638
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3409
3639
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3410
3640
  ms.StoreMessageInfo(mi)
3411
3641
  }
@@ -3417,7 +3647,7 @@ func (x *DetectedOutcomesStatusAction) String() string {
3417
3647
  func (*DetectedOutcomesStatusAction) ProtoMessage() {}
3418
3648
 
3419
3649
  func (x *DetectedOutcomesStatusAction) ProtoReflect() protoreflect.Message {
3420
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[35]
3650
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3421
3651
  if x != nil {
3422
3652
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3423
3653
  if ms.LoadMessageInfo() == nil {
@@ -3430,7 +3660,7 @@ func (x *DetectedOutcomesStatusAction) ProtoReflect() protoreflect.Message {
3430
3660
 
3431
3661
  // Deprecated: Use DetectedOutcomesStatusAction.ProtoReflect.Descriptor instead.
3432
3662
  func (*DetectedOutcomesStatusAction) Descriptor() ([]byte, []int) {
3433
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{35}
3663
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
3434
3664
  }
3435
3665
 
3436
3666
  func (x *DetectedOutcomesStatusAction) GetIsEnabled() bool {
@@ -3449,7 +3679,7 @@ type ExternalWebBetaAction struct {
3449
3679
 
3450
3680
  func (x *ExternalWebBetaAction) Reset() {
3451
3681
  *x = ExternalWebBetaAction{}
3452
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3682
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3453
3683
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3454
3684
  ms.StoreMessageInfo(mi)
3455
3685
  }
@@ -3461,7 +3691,7 @@ func (x *ExternalWebBetaAction) String() string {
3461
3691
  func (*ExternalWebBetaAction) ProtoMessage() {}
3462
3692
 
3463
3693
  func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
3464
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[36]
3694
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3465
3695
  if x != nil {
3466
3696
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3467
3697
  if ms.LoadMessageInfo() == nil {
@@ -3474,7 +3704,7 @@ func (x *ExternalWebBetaAction) ProtoReflect() protoreflect.Message {
3474
3704
 
3475
3705
  // Deprecated: Use ExternalWebBetaAction.ProtoReflect.Descriptor instead.
3476
3706
  func (*ExternalWebBetaAction) Descriptor() ([]byte, []int) {
3477
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{36}
3707
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
3478
3708
  }
3479
3709
 
3480
3710
  func (x *ExternalWebBetaAction) GetIsOptIn() bool {
@@ -3493,7 +3723,7 @@ type MarketingMessageBroadcastAction struct {
3493
3723
 
3494
3724
  func (x *MarketingMessageBroadcastAction) Reset() {
3495
3725
  *x = MarketingMessageBroadcastAction{}
3496
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3726
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3497
3727
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3498
3728
  ms.StoreMessageInfo(mi)
3499
3729
  }
@@ -3505,7 +3735,7 @@ func (x *MarketingMessageBroadcastAction) String() string {
3505
3735
  func (*MarketingMessageBroadcastAction) ProtoMessage() {}
3506
3736
 
3507
3737
  func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
3508
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[37]
3738
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3509
3739
  if x != nil {
3510
3740
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3511
3741
  if ms.LoadMessageInfo() == nil {
@@ -3518,7 +3748,7 @@ func (x *MarketingMessageBroadcastAction) ProtoReflect() protoreflect.Message {
3518
3748
 
3519
3749
  // Deprecated: Use MarketingMessageBroadcastAction.ProtoReflect.Descriptor instead.
3520
3750
  func (*MarketingMessageBroadcastAction) Descriptor() ([]byte, []int) {
3521
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{37}
3751
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
3522
3752
  }
3523
3753
 
3524
3754
  func (x *MarketingMessageBroadcastAction) GetRepliedCount() int32 {
@@ -3537,7 +3767,7 @@ type PnForLidChatAction struct {
3537
3767
 
3538
3768
  func (x *PnForLidChatAction) Reset() {
3539
3769
  *x = PnForLidChatAction{}
3540
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3770
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3541
3771
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3542
3772
  ms.StoreMessageInfo(mi)
3543
3773
  }
@@ -3549,7 +3779,7 @@ func (x *PnForLidChatAction) String() string {
3549
3779
  func (*PnForLidChatAction) ProtoMessage() {}
3550
3780
 
3551
3781
  func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
3552
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[38]
3782
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3553
3783
  if x != nil {
3554
3784
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3555
3785
  if ms.LoadMessageInfo() == nil {
@@ -3562,7 +3792,7 @@ func (x *PnForLidChatAction) ProtoReflect() protoreflect.Message {
3562
3792
 
3563
3793
  // Deprecated: Use PnForLidChatAction.ProtoReflect.Descriptor instead.
3564
3794
  func (*PnForLidChatAction) Descriptor() ([]byte, []int) {
3565
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{38}
3795
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
3566
3796
  }
3567
3797
 
3568
3798
  func (x *PnForLidChatAction) GetPnJID() string {
@@ -3581,7 +3811,7 @@ type ChatAssignmentOpenedStatusAction struct {
3581
3811
 
3582
3812
  func (x *ChatAssignmentOpenedStatusAction) Reset() {
3583
3813
  *x = ChatAssignmentOpenedStatusAction{}
3584
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3814
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3585
3815
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3586
3816
  ms.StoreMessageInfo(mi)
3587
3817
  }
@@ -3593,7 +3823,7 @@ func (x *ChatAssignmentOpenedStatusAction) String() string {
3593
3823
  func (*ChatAssignmentOpenedStatusAction) ProtoMessage() {}
3594
3824
 
3595
3825
  func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
3596
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[39]
3826
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3597
3827
  if x != nil {
3598
3828
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3599
3829
  if ms.LoadMessageInfo() == nil {
@@ -3606,7 +3836,7 @@ func (x *ChatAssignmentOpenedStatusAction) ProtoReflect() protoreflect.Message {
3606
3836
 
3607
3837
  // Deprecated: Use ChatAssignmentOpenedStatusAction.ProtoReflect.Descriptor instead.
3608
3838
  func (*ChatAssignmentOpenedStatusAction) Descriptor() ([]byte, []int) {
3609
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{39}
3839
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
3610
3840
  }
3611
3841
 
3612
3842
  func (x *ChatAssignmentOpenedStatusAction) GetChatOpened() bool {
@@ -3625,7 +3855,7 @@ type ChatAssignmentAction struct {
3625
3855
 
3626
3856
  func (x *ChatAssignmentAction) Reset() {
3627
3857
  *x = ChatAssignmentAction{}
3628
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3858
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3629
3859
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3630
3860
  ms.StoreMessageInfo(mi)
3631
3861
  }
@@ -3637,7 +3867,7 @@ func (x *ChatAssignmentAction) String() string {
3637
3867
  func (*ChatAssignmentAction) ProtoMessage() {}
3638
3868
 
3639
3869
  func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
3640
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[40]
3870
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
3641
3871
  if x != nil {
3642
3872
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3643
3873
  if ms.LoadMessageInfo() == nil {
@@ -3650,7 +3880,7 @@ func (x *ChatAssignmentAction) ProtoReflect() protoreflect.Message {
3650
3880
 
3651
3881
  // Deprecated: Use ChatAssignmentAction.ProtoReflect.Descriptor instead.
3652
3882
  func (*ChatAssignmentAction) Descriptor() ([]byte, []int) {
3653
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{40}
3883
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
3654
3884
  }
3655
3885
 
3656
3886
  func (x *ChatAssignmentAction) GetDeviceAgentID() string {
@@ -3681,7 +3911,7 @@ type StickerAction struct {
3681
3911
 
3682
3912
  func (x *StickerAction) Reset() {
3683
3913
  *x = StickerAction{}
3684
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3914
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
3685
3915
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3686
3916
  ms.StoreMessageInfo(mi)
3687
3917
  }
@@ -3693,7 +3923,7 @@ func (x *StickerAction) String() string {
3693
3923
  func (*StickerAction) ProtoMessage() {}
3694
3924
 
3695
3925
  func (x *StickerAction) ProtoReflect() protoreflect.Message {
3696
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[41]
3926
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
3697
3927
  if x != nil {
3698
3928
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3699
3929
  if ms.LoadMessageInfo() == nil {
@@ -3706,7 +3936,7 @@ func (x *StickerAction) ProtoReflect() protoreflect.Message {
3706
3936
 
3707
3937
  // Deprecated: Use StickerAction.ProtoReflect.Descriptor instead.
3708
3938
  func (*StickerAction) Descriptor() ([]byte, []int) {
3709
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{41}
3939
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
3710
3940
  }
3711
3941
 
3712
3942
  func (x *StickerAction) GetURL() string {
@@ -3809,7 +4039,7 @@ type RemoveRecentStickerAction struct {
3809
4039
 
3810
4040
  func (x *RemoveRecentStickerAction) Reset() {
3811
4041
  *x = RemoveRecentStickerAction{}
3812
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
4042
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
3813
4043
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3814
4044
  ms.StoreMessageInfo(mi)
3815
4045
  }
@@ -3821,7 +4051,7 @@ func (x *RemoveRecentStickerAction) String() string {
3821
4051
  func (*RemoveRecentStickerAction) ProtoMessage() {}
3822
4052
 
3823
4053
  func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
3824
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[42]
4054
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
3825
4055
  if x != nil {
3826
4056
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3827
4057
  if ms.LoadMessageInfo() == nil {
@@ -3834,7 +4064,7 @@ func (x *RemoveRecentStickerAction) ProtoReflect() protoreflect.Message {
3834
4064
 
3835
4065
  // Deprecated: Use RemoveRecentStickerAction.ProtoReflect.Descriptor instead.
3836
4066
  func (*RemoveRecentStickerAction) Descriptor() ([]byte, []int) {
3837
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{42}
4067
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
3838
4068
  }
3839
4069
 
3840
4070
  func (x *RemoveRecentStickerAction) GetLastStickerSentTS() int64 {
@@ -3853,7 +4083,7 @@ type PrimaryVersionAction struct {
3853
4083
 
3854
4084
  func (x *PrimaryVersionAction) Reset() {
3855
4085
  *x = PrimaryVersionAction{}
3856
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
4086
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
3857
4087
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3858
4088
  ms.StoreMessageInfo(mi)
3859
4089
  }
@@ -3865,7 +4095,7 @@ func (x *PrimaryVersionAction) String() string {
3865
4095
  func (*PrimaryVersionAction) ProtoMessage() {}
3866
4096
 
3867
4097
  func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
3868
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[43]
4098
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
3869
4099
  if x != nil {
3870
4100
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3871
4101
  if ms.LoadMessageInfo() == nil {
@@ -3878,7 +4108,7 @@ func (x *PrimaryVersionAction) ProtoReflect() protoreflect.Message {
3878
4108
 
3879
4109
  // Deprecated: Use PrimaryVersionAction.ProtoReflect.Descriptor instead.
3880
4110
  func (*PrimaryVersionAction) Descriptor() ([]byte, []int) {
3881
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{43}
4111
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
3882
4112
  }
3883
4113
 
3884
4114
  func (x *PrimaryVersionAction) GetVersion() string {
@@ -3897,7 +4127,7 @@ type NuxAction struct {
3897
4127
 
3898
4128
  func (x *NuxAction) Reset() {
3899
4129
  *x = NuxAction{}
3900
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
4130
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
3901
4131
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3902
4132
  ms.StoreMessageInfo(mi)
3903
4133
  }
@@ -3909,7 +4139,7 @@ func (x *NuxAction) String() string {
3909
4139
  func (*NuxAction) ProtoMessage() {}
3910
4140
 
3911
4141
  func (x *NuxAction) ProtoReflect() protoreflect.Message {
3912
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[44]
4142
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
3913
4143
  if x != nil {
3914
4144
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3915
4145
  if ms.LoadMessageInfo() == nil {
@@ -3922,7 +4152,7 @@ func (x *NuxAction) ProtoReflect() protoreflect.Message {
3922
4152
 
3923
4153
  // Deprecated: Use NuxAction.ProtoReflect.Descriptor instead.
3924
4154
  func (*NuxAction) Descriptor() ([]byte, []int) {
3925
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{44}
4155
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
3926
4156
  }
3927
4157
 
3928
4158
  func (x *NuxAction) GetAcknowledged() bool {
@@ -3941,7 +4171,7 @@ type TimeFormatAction struct {
3941
4171
 
3942
4172
  func (x *TimeFormatAction) Reset() {
3943
4173
  *x = TimeFormatAction{}
3944
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
4174
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
3945
4175
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3946
4176
  ms.StoreMessageInfo(mi)
3947
4177
  }
@@ -3953,7 +4183,7 @@ func (x *TimeFormatAction) String() string {
3953
4183
  func (*TimeFormatAction) ProtoMessage() {}
3954
4184
 
3955
4185
  func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
3956
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[45]
4186
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
3957
4187
  if x != nil {
3958
4188
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3959
4189
  if ms.LoadMessageInfo() == nil {
@@ -3966,7 +4196,7 @@ func (x *TimeFormatAction) ProtoReflect() protoreflect.Message {
3966
4196
 
3967
4197
  // Deprecated: Use TimeFormatAction.ProtoReflect.Descriptor instead.
3968
4198
  func (*TimeFormatAction) Descriptor() ([]byte, []int) {
3969
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{45}
4199
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
3970
4200
  }
3971
4201
 
3972
4202
  func (x *TimeFormatAction) GetIsTwentyFourHourFormatEnabled() bool {
@@ -3985,7 +4215,7 @@ type UserStatusMuteAction struct {
3985
4215
 
3986
4216
  func (x *UserStatusMuteAction) Reset() {
3987
4217
  *x = UserStatusMuteAction{}
3988
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
4218
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
3989
4219
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
3990
4220
  ms.StoreMessageInfo(mi)
3991
4221
  }
@@ -3997,7 +4227,7 @@ func (x *UserStatusMuteAction) String() string {
3997
4227
  func (*UserStatusMuteAction) ProtoMessage() {}
3998
4228
 
3999
4229
  func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
4000
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[46]
4230
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
4001
4231
  if x != nil {
4002
4232
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4003
4233
  if ms.LoadMessageInfo() == nil {
@@ -4010,7 +4240,7 @@ func (x *UserStatusMuteAction) ProtoReflect() protoreflect.Message {
4010
4240
 
4011
4241
  // Deprecated: Use UserStatusMuteAction.ProtoReflect.Descriptor instead.
4012
4242
  func (*UserStatusMuteAction) Descriptor() ([]byte, []int) {
4013
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{46}
4243
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
4014
4244
  }
4015
4245
 
4016
4246
  func (x *UserStatusMuteAction) GetMuted() bool {
@@ -4031,7 +4261,7 @@ type SubscriptionAction struct {
4031
4261
 
4032
4262
  func (x *SubscriptionAction) Reset() {
4033
4263
  *x = SubscriptionAction{}
4034
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
4264
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
4035
4265
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4036
4266
  ms.StoreMessageInfo(mi)
4037
4267
  }
@@ -4043,7 +4273,7 @@ func (x *SubscriptionAction) String() string {
4043
4273
  func (*SubscriptionAction) ProtoMessage() {}
4044
4274
 
4045
4275
  func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
4046
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[47]
4276
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
4047
4277
  if x != nil {
4048
4278
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4049
4279
  if ms.LoadMessageInfo() == nil {
@@ -4056,7 +4286,7 @@ func (x *SubscriptionAction) ProtoReflect() protoreflect.Message {
4056
4286
 
4057
4287
  // Deprecated: Use SubscriptionAction.ProtoReflect.Descriptor instead.
4058
4288
  func (*SubscriptionAction) Descriptor() ([]byte, []int) {
4059
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{47}
4289
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
4060
4290
  }
4061
4291
 
4062
4292
  func (x *SubscriptionAction) GetIsDeactivated() bool {
@@ -4091,7 +4321,7 @@ type AgentAction struct {
4091
4321
 
4092
4322
  func (x *AgentAction) Reset() {
4093
4323
  *x = AgentAction{}
4094
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
4324
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
4095
4325
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4096
4326
  ms.StoreMessageInfo(mi)
4097
4327
  }
@@ -4103,7 +4333,7 @@ func (x *AgentAction) String() string {
4103
4333
  func (*AgentAction) ProtoMessage() {}
4104
4334
 
4105
4335
  func (x *AgentAction) ProtoReflect() protoreflect.Message {
4106
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[48]
4336
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
4107
4337
  if x != nil {
4108
4338
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4109
4339
  if ms.LoadMessageInfo() == nil {
@@ -4116,7 +4346,7 @@ func (x *AgentAction) ProtoReflect() protoreflect.Message {
4116
4346
 
4117
4347
  // Deprecated: Use AgentAction.ProtoReflect.Descriptor instead.
4118
4348
  func (*AgentAction) Descriptor() ([]byte, []int) {
4119
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{48}
4349
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
4120
4350
  }
4121
4351
 
4122
4352
  func (x *AgentAction) GetName() string {
@@ -4149,7 +4379,7 @@ type AndroidUnsupportedActions struct {
4149
4379
 
4150
4380
  func (x *AndroidUnsupportedActions) Reset() {
4151
4381
  *x = AndroidUnsupportedActions{}
4152
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
4382
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
4153
4383
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4154
4384
  ms.StoreMessageInfo(mi)
4155
4385
  }
@@ -4161,7 +4391,7 @@ func (x *AndroidUnsupportedActions) String() string {
4161
4391
  func (*AndroidUnsupportedActions) ProtoMessage() {}
4162
4392
 
4163
4393
  func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
4164
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[49]
4394
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
4165
4395
  if x != nil {
4166
4396
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4167
4397
  if ms.LoadMessageInfo() == nil {
@@ -4174,7 +4404,7 @@ func (x *AndroidUnsupportedActions) ProtoReflect() protoreflect.Message {
4174
4404
 
4175
4405
  // Deprecated: Use AndroidUnsupportedActions.ProtoReflect.Descriptor instead.
4176
4406
  func (*AndroidUnsupportedActions) Descriptor() ([]byte, []int) {
4177
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{49}
4407
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
4178
4408
  }
4179
4409
 
4180
4410
  func (x *AndroidUnsupportedActions) GetAllowed() bool {
@@ -4193,7 +4423,7 @@ type PrimaryFeature struct {
4193
4423
 
4194
4424
  func (x *PrimaryFeature) Reset() {
4195
4425
  *x = PrimaryFeature{}
4196
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
4426
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
4197
4427
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4198
4428
  ms.StoreMessageInfo(mi)
4199
4429
  }
@@ -4205,7 +4435,7 @@ func (x *PrimaryFeature) String() string {
4205
4435
  func (*PrimaryFeature) ProtoMessage() {}
4206
4436
 
4207
4437
  func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
4208
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[50]
4438
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
4209
4439
  if x != nil {
4210
4440
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4211
4441
  if ms.LoadMessageInfo() == nil {
@@ -4218,7 +4448,7 @@ func (x *PrimaryFeature) ProtoReflect() protoreflect.Message {
4218
4448
 
4219
4449
  // Deprecated: Use PrimaryFeature.ProtoReflect.Descriptor instead.
4220
4450
  func (*PrimaryFeature) Descriptor() ([]byte, []int) {
4221
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{50}
4451
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
4222
4452
  }
4223
4453
 
4224
4454
  func (x *PrimaryFeature) GetFlags() []string {
@@ -4237,7 +4467,7 @@ type KeyExpiration struct {
4237
4467
 
4238
4468
  func (x *KeyExpiration) Reset() {
4239
4469
  *x = KeyExpiration{}
4240
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
4470
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
4241
4471
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4242
4472
  ms.StoreMessageInfo(mi)
4243
4473
  }
@@ -4249,7 +4479,7 @@ func (x *KeyExpiration) String() string {
4249
4479
  func (*KeyExpiration) ProtoMessage() {}
4250
4480
 
4251
4481
  func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
4252
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[51]
4482
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
4253
4483
  if x != nil {
4254
4484
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4255
4485
  if ms.LoadMessageInfo() == nil {
@@ -4262,7 +4492,7 @@ func (x *KeyExpiration) ProtoReflect() protoreflect.Message {
4262
4492
 
4263
4493
  // Deprecated: Use KeyExpiration.ProtoReflect.Descriptor instead.
4264
4494
  func (*KeyExpiration) Descriptor() ([]byte, []int) {
4265
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{51}
4495
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
4266
4496
  }
4267
4497
 
4268
4498
  func (x *KeyExpiration) GetExpiredKeyEpoch() int32 {
@@ -4282,7 +4512,7 @@ type SyncActionMessage struct {
4282
4512
 
4283
4513
  func (x *SyncActionMessage) Reset() {
4284
4514
  *x = SyncActionMessage{}
4285
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
4515
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4286
4516
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4287
4517
  ms.StoreMessageInfo(mi)
4288
4518
  }
@@ -4294,7 +4524,7 @@ func (x *SyncActionMessage) String() string {
4294
4524
  func (*SyncActionMessage) ProtoMessage() {}
4295
4525
 
4296
4526
  func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
4297
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[52]
4527
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4298
4528
  if x != nil {
4299
4529
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4300
4530
  if ms.LoadMessageInfo() == nil {
@@ -4307,7 +4537,7 @@ func (x *SyncActionMessage) ProtoReflect() protoreflect.Message {
4307
4537
 
4308
4538
  // Deprecated: Use SyncActionMessage.ProtoReflect.Descriptor instead.
4309
4539
  func (*SyncActionMessage) Descriptor() ([]byte, []int) {
4310
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{52}
4540
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
4311
4541
  }
4312
4542
 
4313
4543
  func (x *SyncActionMessage) GetKey() *waCommon.MessageKey {
@@ -4335,7 +4565,7 @@ type SyncActionMessageRange struct {
4335
4565
 
4336
4566
  func (x *SyncActionMessageRange) Reset() {
4337
4567
  *x = SyncActionMessageRange{}
4338
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
4568
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4339
4569
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4340
4570
  ms.StoreMessageInfo(mi)
4341
4571
  }
@@ -4347,7 +4577,7 @@ func (x *SyncActionMessageRange) String() string {
4347
4577
  func (*SyncActionMessageRange) ProtoMessage() {}
4348
4578
 
4349
4579
  func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
4350
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[53]
4580
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4351
4581
  if x != nil {
4352
4582
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4353
4583
  if ms.LoadMessageInfo() == nil {
@@ -4360,7 +4590,7 @@ func (x *SyncActionMessageRange) ProtoReflect() protoreflect.Message {
4360
4590
 
4361
4591
  // Deprecated: Use SyncActionMessageRange.ProtoReflect.Descriptor instead.
4362
4592
  func (*SyncActionMessageRange) Descriptor() ([]byte, []int) {
4363
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{53}
4593
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
4364
4594
  }
4365
4595
 
4366
4596
  func (x *SyncActionMessageRange) GetLastMessageTimestamp() int64 {
@@ -4393,7 +4623,7 @@ type UnarchiveChatsSetting struct {
4393
4623
 
4394
4624
  func (x *UnarchiveChatsSetting) Reset() {
4395
4625
  *x = UnarchiveChatsSetting{}
4396
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4626
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4397
4627
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4398
4628
  ms.StoreMessageInfo(mi)
4399
4629
  }
@@ -4405,7 +4635,7 @@ func (x *UnarchiveChatsSetting) String() string {
4405
4635
  func (*UnarchiveChatsSetting) ProtoMessage() {}
4406
4636
 
4407
4637
  func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
4408
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[54]
4638
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4409
4639
  if x != nil {
4410
4640
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4411
4641
  if ms.LoadMessageInfo() == nil {
@@ -4418,7 +4648,7 @@ func (x *UnarchiveChatsSetting) ProtoReflect() protoreflect.Message {
4418
4648
 
4419
4649
  // Deprecated: Use UnarchiveChatsSetting.ProtoReflect.Descriptor instead.
4420
4650
  func (*UnarchiveChatsSetting) Descriptor() ([]byte, []int) {
4421
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{54}
4651
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
4422
4652
  }
4423
4653
 
4424
4654
  func (x *UnarchiveChatsSetting) GetUnarchiveChats() bool {
@@ -4437,7 +4667,7 @@ type DeleteChatAction struct {
4437
4667
 
4438
4668
  func (x *DeleteChatAction) Reset() {
4439
4669
  *x = DeleteChatAction{}
4440
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4670
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4441
4671
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4442
4672
  ms.StoreMessageInfo(mi)
4443
4673
  }
@@ -4449,7 +4679,7 @@ func (x *DeleteChatAction) String() string {
4449
4679
  func (*DeleteChatAction) ProtoMessage() {}
4450
4680
 
4451
4681
  func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
4452
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[55]
4682
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4453
4683
  if x != nil {
4454
4684
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4455
4685
  if ms.LoadMessageInfo() == nil {
@@ -4462,7 +4692,7 @@ func (x *DeleteChatAction) ProtoReflect() protoreflect.Message {
4462
4692
 
4463
4693
  // Deprecated: Use DeleteChatAction.ProtoReflect.Descriptor instead.
4464
4694
  func (*DeleteChatAction) Descriptor() ([]byte, []int) {
4465
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{55}
4695
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
4466
4696
  }
4467
4697
 
4468
4698
  func (x *DeleteChatAction) GetMessageRange() *SyncActionMessageRange {
@@ -4481,7 +4711,7 @@ type ClearChatAction struct {
4481
4711
 
4482
4712
  func (x *ClearChatAction) Reset() {
4483
4713
  *x = ClearChatAction{}
4484
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4714
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4485
4715
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4486
4716
  ms.StoreMessageInfo(mi)
4487
4717
  }
@@ -4493,7 +4723,7 @@ func (x *ClearChatAction) String() string {
4493
4723
  func (*ClearChatAction) ProtoMessage() {}
4494
4724
 
4495
4725
  func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
4496
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[56]
4726
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4497
4727
  if x != nil {
4498
4728
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4499
4729
  if ms.LoadMessageInfo() == nil {
@@ -4506,7 +4736,7 @@ func (x *ClearChatAction) ProtoReflect() protoreflect.Message {
4506
4736
 
4507
4737
  // Deprecated: Use ClearChatAction.ProtoReflect.Descriptor instead.
4508
4738
  func (*ClearChatAction) Descriptor() ([]byte, []int) {
4509
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{56}
4739
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
4510
4740
  }
4511
4741
 
4512
4742
  func (x *ClearChatAction) GetMessageRange() *SyncActionMessageRange {
@@ -4526,7 +4756,7 @@ type MarkChatAsReadAction struct {
4526
4756
 
4527
4757
  func (x *MarkChatAsReadAction) Reset() {
4528
4758
  *x = MarkChatAsReadAction{}
4529
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4759
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4530
4760
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4531
4761
  ms.StoreMessageInfo(mi)
4532
4762
  }
@@ -4538,7 +4768,7 @@ func (x *MarkChatAsReadAction) String() string {
4538
4768
  func (*MarkChatAsReadAction) ProtoMessage() {}
4539
4769
 
4540
4770
  func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
4541
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[57]
4771
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4542
4772
  if x != nil {
4543
4773
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4544
4774
  if ms.LoadMessageInfo() == nil {
@@ -4551,7 +4781,7 @@ func (x *MarkChatAsReadAction) ProtoReflect() protoreflect.Message {
4551
4781
 
4552
4782
  // Deprecated: Use MarkChatAsReadAction.ProtoReflect.Descriptor instead.
4553
4783
  func (*MarkChatAsReadAction) Descriptor() ([]byte, []int) {
4554
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{57}
4784
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{59}
4555
4785
  }
4556
4786
 
4557
4787
  func (x *MarkChatAsReadAction) GetRead() bool {
@@ -4578,7 +4808,7 @@ type DeleteMessageForMeAction struct {
4578
4808
 
4579
4809
  func (x *DeleteMessageForMeAction) Reset() {
4580
4810
  *x = DeleteMessageForMeAction{}
4581
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4811
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4582
4812
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4583
4813
  ms.StoreMessageInfo(mi)
4584
4814
  }
@@ -4590,7 +4820,7 @@ func (x *DeleteMessageForMeAction) String() string {
4590
4820
  func (*DeleteMessageForMeAction) ProtoMessage() {}
4591
4821
 
4592
4822
  func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
4593
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[58]
4823
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4594
4824
  if x != nil {
4595
4825
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4596
4826
  if ms.LoadMessageInfo() == nil {
@@ -4603,7 +4833,7 @@ func (x *DeleteMessageForMeAction) ProtoReflect() protoreflect.Message {
4603
4833
 
4604
4834
  // Deprecated: Use DeleteMessageForMeAction.ProtoReflect.Descriptor instead.
4605
4835
  func (*DeleteMessageForMeAction) Descriptor() ([]byte, []int) {
4606
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{58}
4836
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{60}
4607
4837
  }
4608
4838
 
4609
4839
  func (x *DeleteMessageForMeAction) GetDeleteMedia() bool {
@@ -4630,7 +4860,7 @@ type ArchiveChatAction struct {
4630
4860
 
4631
4861
  func (x *ArchiveChatAction) Reset() {
4632
4862
  *x = ArchiveChatAction{}
4633
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4863
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
4634
4864
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4635
4865
  ms.StoreMessageInfo(mi)
4636
4866
  }
@@ -4642,7 +4872,7 @@ func (x *ArchiveChatAction) String() string {
4642
4872
  func (*ArchiveChatAction) ProtoMessage() {}
4643
4873
 
4644
4874
  func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
4645
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[59]
4875
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
4646
4876
  if x != nil {
4647
4877
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4648
4878
  if ms.LoadMessageInfo() == nil {
@@ -4655,7 +4885,7 @@ func (x *ArchiveChatAction) ProtoReflect() protoreflect.Message {
4655
4885
 
4656
4886
  // Deprecated: Use ArchiveChatAction.ProtoReflect.Descriptor instead.
4657
4887
  func (*ArchiveChatAction) Descriptor() ([]byte, []int) {
4658
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{59}
4888
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{61}
4659
4889
  }
4660
4890
 
4661
4891
  func (x *ArchiveChatAction) GetArchived() bool {
@@ -4681,7 +4911,7 @@ type RecentEmojiWeightsAction struct {
4681
4911
 
4682
4912
  func (x *RecentEmojiWeightsAction) Reset() {
4683
4913
  *x = RecentEmojiWeightsAction{}
4684
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4914
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
4685
4915
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4686
4916
  ms.StoreMessageInfo(mi)
4687
4917
  }
@@ -4693,7 +4923,7 @@ func (x *RecentEmojiWeightsAction) String() string {
4693
4923
  func (*RecentEmojiWeightsAction) ProtoMessage() {}
4694
4924
 
4695
4925
  func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
4696
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[60]
4926
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
4697
4927
  if x != nil {
4698
4928
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4699
4929
  if ms.LoadMessageInfo() == nil {
@@ -4706,7 +4936,7 @@ func (x *RecentEmojiWeightsAction) ProtoReflect() protoreflect.Message {
4706
4936
 
4707
4937
  // Deprecated: Use RecentEmojiWeightsAction.ProtoReflect.Descriptor instead.
4708
4938
  func (*RecentEmojiWeightsAction) Descriptor() ([]byte, []int) {
4709
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{60}
4939
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{62}
4710
4940
  }
4711
4941
 
4712
4942
  func (x *RecentEmojiWeightsAction) GetWeights() []*RecentEmojiWeight {
@@ -4725,7 +4955,7 @@ type LabelAssociationAction struct {
4725
4955
 
4726
4956
  func (x *LabelAssociationAction) Reset() {
4727
4957
  *x = LabelAssociationAction{}
4728
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
4958
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
4729
4959
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4730
4960
  ms.StoreMessageInfo(mi)
4731
4961
  }
@@ -4737,7 +4967,7 @@ func (x *LabelAssociationAction) String() string {
4737
4967
  func (*LabelAssociationAction) ProtoMessage() {}
4738
4968
 
4739
4969
  func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
4740
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[61]
4970
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
4741
4971
  if x != nil {
4742
4972
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4743
4973
  if ms.LoadMessageInfo() == nil {
@@ -4750,7 +4980,7 @@ func (x *LabelAssociationAction) ProtoReflect() protoreflect.Message {
4750
4980
 
4751
4981
  // Deprecated: Use LabelAssociationAction.ProtoReflect.Descriptor instead.
4752
4982
  func (*LabelAssociationAction) Descriptor() ([]byte, []int) {
4753
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{61}
4983
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{63}
4754
4984
  }
4755
4985
 
4756
4986
  func (x *LabelAssociationAction) GetLabeled() bool {
@@ -4773,7 +5003,7 @@ type QuickReplyAction struct {
4773
5003
 
4774
5004
  func (x *QuickReplyAction) Reset() {
4775
5005
  *x = QuickReplyAction{}
4776
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
5006
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
4777
5007
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4778
5008
  ms.StoreMessageInfo(mi)
4779
5009
  }
@@ -4785,7 +5015,7 @@ func (x *QuickReplyAction) String() string {
4785
5015
  func (*QuickReplyAction) ProtoMessage() {}
4786
5016
 
4787
5017
  func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
4788
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[62]
5018
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
4789
5019
  if x != nil {
4790
5020
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4791
5021
  if ms.LoadMessageInfo() == nil {
@@ -4798,7 +5028,7 @@ func (x *QuickReplyAction) ProtoReflect() protoreflect.Message {
4798
5028
 
4799
5029
  // Deprecated: Use QuickReplyAction.ProtoReflect.Descriptor instead.
4800
5030
  func (*QuickReplyAction) Descriptor() ([]byte, []int) {
4801
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{62}
5031
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{64}
4802
5032
  }
4803
5033
 
4804
5034
  func (x *QuickReplyAction) GetShortcut() string {
@@ -4845,7 +5075,7 @@ type LocaleSetting struct {
4845
5075
 
4846
5076
  func (x *LocaleSetting) Reset() {
4847
5077
  *x = LocaleSetting{}
4848
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
5078
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
4849
5079
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4850
5080
  ms.StoreMessageInfo(mi)
4851
5081
  }
@@ -4857,7 +5087,7 @@ func (x *LocaleSetting) String() string {
4857
5087
  func (*LocaleSetting) ProtoMessage() {}
4858
5088
 
4859
5089
  func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
4860
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[63]
5090
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
4861
5091
  if x != nil {
4862
5092
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4863
5093
  if ms.LoadMessageInfo() == nil {
@@ -4870,7 +5100,7 @@ func (x *LocaleSetting) ProtoReflect() protoreflect.Message {
4870
5100
 
4871
5101
  // Deprecated: Use LocaleSetting.ProtoReflect.Descriptor instead.
4872
5102
  func (*LocaleSetting) Descriptor() ([]byte, []int) {
4873
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{63}
5103
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{65}
4874
5104
  }
4875
5105
 
4876
5106
  func (x *LocaleSetting) GetLocale() string {
@@ -4889,7 +5119,7 @@ type PushNameSetting struct {
4889
5119
 
4890
5120
  func (x *PushNameSetting) Reset() {
4891
5121
  *x = PushNameSetting{}
4892
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
5122
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
4893
5123
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4894
5124
  ms.StoreMessageInfo(mi)
4895
5125
  }
@@ -4901,7 +5131,7 @@ func (x *PushNameSetting) String() string {
4901
5131
  func (*PushNameSetting) ProtoMessage() {}
4902
5132
 
4903
5133
  func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
4904
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[64]
5134
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
4905
5135
  if x != nil {
4906
5136
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4907
5137
  if ms.LoadMessageInfo() == nil {
@@ -4914,7 +5144,7 @@ func (x *PushNameSetting) ProtoReflect() protoreflect.Message {
4914
5144
 
4915
5145
  // Deprecated: Use PushNameSetting.ProtoReflect.Descriptor instead.
4916
5146
  func (*PushNameSetting) Descriptor() ([]byte, []int) {
4917
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{64}
5147
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{66}
4918
5148
  }
4919
5149
 
4920
5150
  func (x *PushNameSetting) GetName() string {
@@ -4933,7 +5163,7 @@ type SecurityNotificationSetting struct {
4933
5163
 
4934
5164
  func (x *SecurityNotificationSetting) Reset() {
4935
5165
  *x = SecurityNotificationSetting{}
4936
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
5166
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
4937
5167
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4938
5168
  ms.StoreMessageInfo(mi)
4939
5169
  }
@@ -4945,7 +5175,7 @@ func (x *SecurityNotificationSetting) String() string {
4945
5175
  func (*SecurityNotificationSetting) ProtoMessage() {}
4946
5176
 
4947
5177
  func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
4948
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[65]
5178
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
4949
5179
  if x != nil {
4950
5180
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4951
5181
  if ms.LoadMessageInfo() == nil {
@@ -4958,7 +5188,7 @@ func (x *SecurityNotificationSetting) ProtoReflect() protoreflect.Message {
4958
5188
 
4959
5189
  // Deprecated: Use SecurityNotificationSetting.ProtoReflect.Descriptor instead.
4960
5190
  func (*SecurityNotificationSetting) Descriptor() ([]byte, []int) {
4961
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{65}
5191
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{67}
4962
5192
  }
4963
5193
 
4964
5194
  func (x *SecurityNotificationSetting) GetShowNotification() bool {
@@ -4977,7 +5207,7 @@ type PinAction struct {
4977
5207
 
4978
5208
  func (x *PinAction) Reset() {
4979
5209
  *x = PinAction{}
4980
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
5210
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[68]
4981
5211
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4982
5212
  ms.StoreMessageInfo(mi)
4983
5213
  }
@@ -4989,7 +5219,7 @@ func (x *PinAction) String() string {
4989
5219
  func (*PinAction) ProtoMessage() {}
4990
5220
 
4991
5221
  func (x *PinAction) ProtoReflect() protoreflect.Message {
4992
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[66]
5222
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[68]
4993
5223
  if x != nil {
4994
5224
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
4995
5225
  if ms.LoadMessageInfo() == nil {
@@ -5002,7 +5232,7 @@ func (x *PinAction) ProtoReflect() protoreflect.Message {
5002
5232
 
5003
5233
  // Deprecated: Use PinAction.ProtoReflect.Descriptor instead.
5004
5234
  func (*PinAction) Descriptor() ([]byte, []int) {
5005
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{66}
5235
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{68}
5006
5236
  }
5007
5237
 
5008
5238
  func (x *PinAction) GetPinned() bool {
@@ -5023,7 +5253,7 @@ type MuteAction struct {
5023
5253
 
5024
5254
  func (x *MuteAction) Reset() {
5025
5255
  *x = MuteAction{}
5026
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
5256
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[69]
5027
5257
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5028
5258
  ms.StoreMessageInfo(mi)
5029
5259
  }
@@ -5035,7 +5265,7 @@ func (x *MuteAction) String() string {
5035
5265
  func (*MuteAction) ProtoMessage() {}
5036
5266
 
5037
5267
  func (x *MuteAction) ProtoReflect() protoreflect.Message {
5038
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[67]
5268
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[69]
5039
5269
  if x != nil {
5040
5270
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5041
5271
  if ms.LoadMessageInfo() == nil {
@@ -5048,7 +5278,7 @@ func (x *MuteAction) ProtoReflect() protoreflect.Message {
5048
5278
 
5049
5279
  // Deprecated: Use MuteAction.ProtoReflect.Descriptor instead.
5050
5280
  func (*MuteAction) Descriptor() ([]byte, []int) {
5051
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{67}
5281
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{69}
5052
5282
  }
5053
5283
 
5054
5284
  func (x *MuteAction) GetMuted() bool {
@@ -5086,7 +5316,7 @@ type ContactAction struct {
5086
5316
 
5087
5317
  func (x *ContactAction) Reset() {
5088
5318
  *x = ContactAction{}
5089
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[68]
5319
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[70]
5090
5320
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5091
5321
  ms.StoreMessageInfo(mi)
5092
5322
  }
@@ -5098,7 +5328,7 @@ func (x *ContactAction) String() string {
5098
5328
  func (*ContactAction) ProtoMessage() {}
5099
5329
 
5100
5330
  func (x *ContactAction) ProtoReflect() protoreflect.Message {
5101
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[68]
5331
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[70]
5102
5332
  if x != nil {
5103
5333
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5104
5334
  if ms.LoadMessageInfo() == nil {
@@ -5111,7 +5341,7 @@ func (x *ContactAction) ProtoReflect() protoreflect.Message {
5111
5341
 
5112
5342
  // Deprecated: Use ContactAction.ProtoReflect.Descriptor instead.
5113
5343
  func (*ContactAction) Descriptor() ([]byte, []int) {
5114
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{68}
5344
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{70}
5115
5345
  }
5116
5346
 
5117
5347
  func (x *ContactAction) GetFullName() string {
@@ -5165,7 +5395,7 @@ type StarAction struct {
5165
5395
 
5166
5396
  func (x *StarAction) Reset() {
5167
5397
  *x = StarAction{}
5168
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[69]
5398
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[71]
5169
5399
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5170
5400
  ms.StoreMessageInfo(mi)
5171
5401
  }
@@ -5177,7 +5407,7 @@ func (x *StarAction) String() string {
5177
5407
  func (*StarAction) ProtoMessage() {}
5178
5408
 
5179
5409
  func (x *StarAction) ProtoReflect() protoreflect.Message {
5180
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[69]
5410
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[71]
5181
5411
  if x != nil {
5182
5412
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5183
5413
  if ms.LoadMessageInfo() == nil {
@@ -5190,7 +5420,7 @@ func (x *StarAction) ProtoReflect() protoreflect.Message {
5190
5420
 
5191
5421
  // Deprecated: Use StarAction.ProtoReflect.Descriptor instead.
5192
5422
  func (*StarAction) Descriptor() ([]byte, []int) {
5193
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{69}
5423
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{71}
5194
5424
  }
5195
5425
 
5196
5426
  func (x *StarAction) GetStarred() bool {
@@ -5212,7 +5442,7 @@ type SyncActionData struct {
5212
5442
 
5213
5443
  func (x *SyncActionData) Reset() {
5214
5444
  *x = SyncActionData{}
5215
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[70]
5445
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[72]
5216
5446
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5217
5447
  ms.StoreMessageInfo(mi)
5218
5448
  }
@@ -5224,7 +5454,7 @@ func (x *SyncActionData) String() string {
5224
5454
  func (*SyncActionData) ProtoMessage() {}
5225
5455
 
5226
5456
  func (x *SyncActionData) ProtoReflect() protoreflect.Message {
5227
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[70]
5457
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[72]
5228
5458
  if x != nil {
5229
5459
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5230
5460
  if ms.LoadMessageInfo() == nil {
@@ -5237,7 +5467,7 @@ func (x *SyncActionData) ProtoReflect() protoreflect.Message {
5237
5467
 
5238
5468
  // Deprecated: Use SyncActionData.ProtoReflect.Descriptor instead.
5239
5469
  func (*SyncActionData) Descriptor() ([]byte, []int) {
5240
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{70}
5470
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{72}
5241
5471
  }
5242
5472
 
5243
5473
  func (x *SyncActionData) GetIndex() []byte {
@@ -5278,7 +5508,7 @@ type CallLogRecord_ParticipantInfo struct {
5278
5508
 
5279
5509
  func (x *CallLogRecord_ParticipantInfo) Reset() {
5280
5510
  *x = CallLogRecord_ParticipantInfo{}
5281
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[71]
5511
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[73]
5282
5512
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5283
5513
  ms.StoreMessageInfo(mi)
5284
5514
  }
@@ -5290,7 +5520,7 @@ func (x *CallLogRecord_ParticipantInfo) String() string {
5290
5520
  func (*CallLogRecord_ParticipantInfo) ProtoMessage() {}
5291
5521
 
5292
5522
  func (x *CallLogRecord_ParticipantInfo) ProtoReflect() protoreflect.Message {
5293
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[71]
5523
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[73]
5294
5524
  if x != nil {
5295
5525
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5296
5526
  if ms.LoadMessageInfo() == nil {
@@ -5329,7 +5559,7 @@ type FavoritesAction_Favorite struct {
5329
5559
 
5330
5560
  func (x *FavoritesAction_Favorite) Reset() {
5331
5561
  *x = FavoritesAction_Favorite{}
5332
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[72]
5562
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[74]
5333
5563
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5334
5564
  ms.StoreMessageInfo(mi)
5335
5565
  }
@@ -5341,7 +5571,7 @@ func (x *FavoritesAction_Favorite) String() string {
5341
5571
  func (*FavoritesAction_Favorite) ProtoMessage() {}
5342
5572
 
5343
5573
  func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
5344
- mi := &file_waSyncAction_WASyncAction_proto_msgTypes[72]
5574
+ mi := &file_waSyncAction_WASyncAction_proto_msgTypes[74]
5345
5575
  if x != nil {
5346
5576
  ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
5347
5577
  if ms.LoadMessageInfo() == nil {
@@ -5354,7 +5584,7 @@ func (x *FavoritesAction_Favorite) ProtoReflect() protoreflect.Message {
5354
5584
 
5355
5585
  // Deprecated: Use FavoritesAction_Favorite.ProtoReflect.Descriptor instead.
5356
5586
  func (*FavoritesAction_Favorite) Descriptor() ([]byte, []int) {
5357
- return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{20, 0}
5587
+ return file_waSyncAction_WASyncAction_proto_rawDescGZIP(), []int{22, 0}
5358
5588
  }
5359
5589
 
5360
5590
  func (x *FavoritesAction_Favorite) GetID() string {
@@ -5422,7 +5652,14 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
5422
5652
  "\x06FAILED\x10\b\x12\r\n" +
5423
5653
  "\tABANDONED\x10\t\x12\v\n" +
5424
5654
  "\aONGOING\x10\n" +
5425
- "\"\xd6\x01\n" +
5655
+ "\"\xf1\x01\n" +
5656
+ "\x13AvatarUpdatedAction\x12O\n" +
5657
+ "\teventType\x18\x01 \x01(\x0e21.WASyncAction.AvatarUpdatedAction.AvatarEventTypeR\teventType\x12O\n" +
5658
+ "\x14recentAvatarStickers\x18\x02 \x03(\v2\x1b.WASyncAction.StickerActionR\x14recentAvatarStickers\"8\n" +
5659
+ "\x0fAvatarEventType\x12\v\n" +
5660
+ "\aUPDATED\x10\x00\x12\v\n" +
5661
+ "\aCREATED\x10\x01\x12\v\n" +
5662
+ "\aDELETED\x10\x02\"\xd6\x01\n" +
5426
5663
  "\x1cMaibaAIFeaturesControlAction\x12i\n" +
5427
5664
  "\x0faiFeatureStatus\x18\x01 \x01(\x0e2?.WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatusR\x0faiFeatureStatus\"K\n" +
5428
5665
  "\x14MaibaAIFeatureStatus\x12\v\n" +
@@ -5455,7 +5692,12 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
5455
5692
  "\x06Status\x12\n" +
5456
5693
  "\n" +
5457
5694
  "\x06ACTIVE\x10\x00\x12\f\n" +
5458
- "\bINACTIVE\x10\x01\"\xfd\x01\n" +
5695
+ "\bINACTIVE\x10\x01\"\x7f\n" +
5696
+ "\x10GalaxyFlowAction\x12G\n" +
5697
+ "\x04type\x18\x01 \x02(\x0e23.WASyncAction.GalaxyFlowAction.GalaxyFlowActionTypeR\x04type\"\"\n" +
5698
+ "\x14GalaxyFlowActionType\x12\n" +
5699
+ "\n" +
5700
+ "\x06LAUNCH\x10\x01\"\xfd\x01\n" +
5459
5701
  "\x0eNoteEditAction\x129\n" +
5460
5702
  "\x04type\x18\x01 \x01(\x0e2%.WASyncAction.NoteEditAction.NoteTypeR\x04type\x12\x18\n" +
5461
5703
  "\achatJID\x18\x02 \x01(\tR\achatJID\x12\x1c\n" +
@@ -5514,7 +5756,7 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
5514
5756
  "\n" +
5515
5757
  "\x06CUSTOM\x10\x05\x12\r\n" +
5516
5758
  "\tCOMMUNITY\x10\x06\x12\x13\n" +
5517
- "\x0fSERVER_ASSIGNED\x10\a\"\xf8\x04\n" +
5759
+ "\x0fSERVER_ASSIGNED\x10\a\"\x8e\x05\n" +
5518
5760
  "\x0ePatchDebugData\x12$\n" +
5519
5761
  "\rcurrentLthash\x18\x01 \x01(\fR\rcurrentLthash\x12\x1c\n" +
5520
5762
  "\tnewLthash\x18\x02 \x01(\fR\tnewLthash\x12\"\n" +
@@ -5527,7 +5769,7 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
5527
5769
  "\x0enumberOverride\x18\t \x01(\x05R\x0enumberOverride\x12M\n" +
5528
5770
  "\x0esenderPlatform\x18\n" +
5529
5771
  " \x01(\x0e2%.WASyncAction.PatchDebugData.PlatformR\x0esenderPlatform\x12(\n" +
5530
- "\x0fisSenderPrimary\x18\v \x01(\bR\x0fisSenderPrimary\"k\n" +
5772
+ "\x0fisSenderPrimary\x18\v \x01(\bR\x0fisSenderPrimary\"\x80\x01\n" +
5531
5773
  "\bPlatform\x12\v\n" +
5532
5774
  "\aANDROID\x10\x00\x12\b\n" +
5533
5775
  "\x04SMBA\x10\x01\x12\n" +
@@ -5540,10 +5782,13 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
5540
5782
  "\x06DARWIN\x10\x06\x12\b\n" +
5541
5783
  "\x04IPAD\x10\a\x12\n" +
5542
5784
  "\n" +
5543
- "\x06WEAROS\x10\b\"A\n" +
5785
+ "\x06WEAROS\x10\b\x12\b\n" +
5786
+ "\x04WASG\x10\t\x12\t\n" +
5787
+ "\x05WEARM\x10\n" +
5788
+ "\"A\n" +
5544
5789
  "\x11RecentEmojiWeight\x12\x14\n" +
5545
5790
  "\x05emoji\x18\x01 \x01(\tR\x05emoji\x12\x16\n" +
5546
- "\x06weight\x18\x02 \x01(\x02R\x06weight\"\xb5-\n" +
5791
+ "\x06weight\x18\x02 \x01(\x02R\x06weight\"\xd6.\n" +
5547
5792
  "\x0fSyncActionValue\x12\x1c\n" +
5548
5793
  "\ttimestamp\x18\x01 \x01(\x03R\ttimestamp\x128\n" +
5549
5794
  "\n" +
@@ -5612,7 +5857,9 @@ const file_waSyncAction_WASyncAction_proto_rawDesc = "" +
5612
5857
  "\x1cmaibaAiFeaturesControlAction\x18D \x01(\v2*.WASyncAction.MaibaAIFeaturesControlActionR\x1cmaibaAiFeaturesControlAction\x12k\n" +
5613
5858
  "\x1bbusinessBroadcastListAction\x18E \x01(\v2).WASyncAction.BusinessBroadcastListActionR\x1bbusinessBroadcastListAction\x12M\n" +
5614
5859
  "\x11musicUserIDAction\x18F \x01(\v2\x1f.WASyncAction.MusicUserIdActionR\x11musicUserIDAction\x12\x9e\x01\n" +
5615
- ",statusPostOptInNotificationPreferencesAction\x18G \x01(\v2:.WASyncAction.StatusPostOptInNotificationPreferencesActionR,statusPostOptInNotificationPreferencesAction\"H\n" +
5860
+ ",statusPostOptInNotificationPreferencesAction\x18G \x01(\v2:.WASyncAction.StatusPostOptInNotificationPreferencesActionR,statusPostOptInNotificationPreferencesAction\x12S\n" +
5861
+ "\x13avatarUpdatedAction\x18H \x01(\v2!.WASyncAction.AvatarUpdatedActionR\x13avatarUpdatedAction\x12J\n" +
5862
+ "\x10galaxyFlowAction\x18I \x01(\v2\x1e.WASyncAction.GalaxyFlowActionR\x10galaxyFlowAction\"H\n" +
5616
5863
  ",StatusPostOptInNotificationPreferencesAction\x12\x18\n" +
5617
5864
  "\aenabled\x18\x01 \x01(\bR\aenabled\"H\n" +
5618
5865
  "\x18BroadcastListParticipant\x12\x16\n" +
@@ -5804,198 +6051,207 @@ func file_waSyncAction_WASyncAction_proto_rawDescGZIP() []byte {
5804
6051
  return file_waSyncAction_WASyncAction_proto_rawDescData
5805
6052
  }
5806
6053
 
5807
- var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 14)
5808
- var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 73)
6054
+ var file_waSyncAction_WASyncAction_proto_enumTypes = make([]protoimpl.EnumInfo, 16)
6055
+ var file_waSyncAction_WASyncAction_proto_msgTypes = make([]protoimpl.MessageInfo, 75)
5809
6056
  var file_waSyncAction_WASyncAction_proto_goTypes = []any{
5810
6057
  (CallLogRecord_CallType)(0), // 0: WASyncAction.CallLogRecord.CallType
5811
6058
  (CallLogRecord_SilenceReason)(0), // 1: WASyncAction.CallLogRecord.SilenceReason
5812
6059
  (CallLogRecord_CallResult)(0), // 2: WASyncAction.CallLogRecord.CallResult
5813
- (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus)(0), // 3: WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatus
5814
- (PaymentTosAction_PaymentNotice)(0), // 4: WASyncAction.PaymentTosAction.PaymentNotice
5815
- (NotificationActivitySettingAction_NotificationActivitySetting)(0), // 5: WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
5816
- (WaffleAccountLinkStateAction_AccountLinkState)(0), // 6: WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
5817
- (MerchantPaymentPartnerAction_Status)(0), // 7: WASyncAction.MerchantPaymentPartnerAction.Status
5818
- (NoteEditAction_NoteType)(0), // 8: WASyncAction.NoteEditAction.NoteType
5819
- (StatusPrivacyAction_StatusDistributionMode)(0), // 9: WASyncAction.StatusPrivacyAction.StatusDistributionMode
5820
- (MarketingMessageAction_MarketingMessagePrototypeType)(0), // 10: WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
5821
- (UsernameChatStartModeAction_ChatStartMode)(0), // 11: WASyncAction.UsernameChatStartModeAction.ChatStartMode
5822
- (LabelEditAction_ListType)(0), // 12: WASyncAction.LabelEditAction.ListType
5823
- (PatchDebugData_Platform)(0), // 13: WASyncAction.PatchDebugData.Platform
5824
- (*CallLogRecord)(nil), // 14: WASyncAction.CallLogRecord
5825
- (*MaibaAIFeaturesControlAction)(nil), // 15: WASyncAction.MaibaAIFeaturesControlAction
5826
- (*PaymentTosAction)(nil), // 16: WASyncAction.PaymentTosAction
5827
- (*NotificationActivitySettingAction)(nil), // 17: WASyncAction.NotificationActivitySettingAction
5828
- (*WaffleAccountLinkStateAction)(nil), // 18: WASyncAction.WaffleAccountLinkStateAction
5829
- (*MerchantPaymentPartnerAction)(nil), // 19: WASyncAction.MerchantPaymentPartnerAction
5830
- (*NoteEditAction)(nil), // 20: WASyncAction.NoteEditAction
5831
- (*StatusPrivacyAction)(nil), // 21: WASyncAction.StatusPrivacyAction
5832
- (*MarketingMessageAction)(nil), // 22: WASyncAction.MarketingMessageAction
5833
- (*UsernameChatStartModeAction)(nil), // 23: WASyncAction.UsernameChatStartModeAction
5834
- (*LabelEditAction)(nil), // 24: WASyncAction.LabelEditAction
5835
- (*PatchDebugData)(nil), // 25: WASyncAction.PatchDebugData
5836
- (*RecentEmojiWeight)(nil), // 26: WASyncAction.RecentEmojiWeight
5837
- (*SyncActionValue)(nil), // 27: WASyncAction.SyncActionValue
5838
- (*StatusPostOptInNotificationPreferencesAction)(nil), // 28: WASyncAction.StatusPostOptInNotificationPreferencesAction
5839
- (*BroadcastListParticipant)(nil), // 29: WASyncAction.BroadcastListParticipant
5840
- (*BusinessBroadcastListAction)(nil), // 30: WASyncAction.BusinessBroadcastListAction
5841
- (*BusinessBroadcastAssociationAction)(nil), // 31: WASyncAction.BusinessBroadcastAssociationAction
5842
- (*CtwaPerCustomerDataSharingAction)(nil), // 32: WASyncAction.CtwaPerCustomerDataSharingAction
5843
- (*LidContactAction)(nil), // 33: WASyncAction.LidContactAction
5844
- (*FavoritesAction)(nil), // 34: WASyncAction.FavoritesAction
5845
- (*PrivacySettingChannelsPersonalisedRecommendationAction)(nil), // 35: WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
5846
- (*PrivacySettingDisableLinkPreviewsAction)(nil), // 36: WASyncAction.PrivacySettingDisableLinkPreviewsAction
5847
- (*WamoUserIdentifierAction)(nil), // 37: WASyncAction.WamoUserIdentifierAction
5848
- (*LockChatAction)(nil), // 38: WASyncAction.LockChatAction
5849
- (*CustomPaymentMethodsAction)(nil), // 39: WASyncAction.CustomPaymentMethodsAction
5850
- (*CustomPaymentMethod)(nil), // 40: WASyncAction.CustomPaymentMethod
5851
- (*CustomPaymentMethodMetadata)(nil), // 41: WASyncAction.CustomPaymentMethodMetadata
5852
- (*PaymentInfoAction)(nil), // 42: WASyncAction.PaymentInfoAction
5853
- (*LabelReorderingAction)(nil), // 43: WASyncAction.LabelReorderingAction
5854
- (*DeleteIndividualCallLogAction)(nil), // 44: WASyncAction.DeleteIndividualCallLogAction
5855
- (*BotWelcomeRequestAction)(nil), // 45: WASyncAction.BotWelcomeRequestAction
5856
- (*MusicUserIdAction)(nil), // 46: WASyncAction.MusicUserIdAction
5857
- (*CallLogAction)(nil), // 47: WASyncAction.CallLogAction
5858
- (*PrivacySettingRelayAllCalls)(nil), // 48: WASyncAction.PrivacySettingRelayAllCalls
5859
- (*DetectedOutcomesStatusAction)(nil), // 49: WASyncAction.DetectedOutcomesStatusAction
5860
- (*ExternalWebBetaAction)(nil), // 50: WASyncAction.ExternalWebBetaAction
5861
- (*MarketingMessageBroadcastAction)(nil), // 51: WASyncAction.MarketingMessageBroadcastAction
5862
- (*PnForLidChatAction)(nil), // 52: WASyncAction.PnForLidChatAction
5863
- (*ChatAssignmentOpenedStatusAction)(nil), // 53: WASyncAction.ChatAssignmentOpenedStatusAction
5864
- (*ChatAssignmentAction)(nil), // 54: WASyncAction.ChatAssignmentAction
5865
- (*StickerAction)(nil), // 55: WASyncAction.StickerAction
5866
- (*RemoveRecentStickerAction)(nil), // 56: WASyncAction.RemoveRecentStickerAction
5867
- (*PrimaryVersionAction)(nil), // 57: WASyncAction.PrimaryVersionAction
5868
- (*NuxAction)(nil), // 58: WASyncAction.NuxAction
5869
- (*TimeFormatAction)(nil), // 59: WASyncAction.TimeFormatAction
5870
- (*UserStatusMuteAction)(nil), // 60: WASyncAction.UserStatusMuteAction
5871
- (*SubscriptionAction)(nil), // 61: WASyncAction.SubscriptionAction
5872
- (*AgentAction)(nil), // 62: WASyncAction.AgentAction
5873
- (*AndroidUnsupportedActions)(nil), // 63: WASyncAction.AndroidUnsupportedActions
5874
- (*PrimaryFeature)(nil), // 64: WASyncAction.PrimaryFeature
5875
- (*KeyExpiration)(nil), // 65: WASyncAction.KeyExpiration
5876
- (*SyncActionMessage)(nil), // 66: WASyncAction.SyncActionMessage
5877
- (*SyncActionMessageRange)(nil), // 67: WASyncAction.SyncActionMessageRange
5878
- (*UnarchiveChatsSetting)(nil), // 68: WASyncAction.UnarchiveChatsSetting
5879
- (*DeleteChatAction)(nil), // 69: WASyncAction.DeleteChatAction
5880
- (*ClearChatAction)(nil), // 70: WASyncAction.ClearChatAction
5881
- (*MarkChatAsReadAction)(nil), // 71: WASyncAction.MarkChatAsReadAction
5882
- (*DeleteMessageForMeAction)(nil), // 72: WASyncAction.DeleteMessageForMeAction
5883
- (*ArchiveChatAction)(nil), // 73: WASyncAction.ArchiveChatAction
5884
- (*RecentEmojiWeightsAction)(nil), // 74: WASyncAction.RecentEmojiWeightsAction
5885
- (*LabelAssociationAction)(nil), // 75: WASyncAction.LabelAssociationAction
5886
- (*QuickReplyAction)(nil), // 76: WASyncAction.QuickReplyAction
5887
- (*LocaleSetting)(nil), // 77: WASyncAction.LocaleSetting
5888
- (*PushNameSetting)(nil), // 78: WASyncAction.PushNameSetting
5889
- (*SecurityNotificationSetting)(nil), // 79: WASyncAction.SecurityNotificationSetting
5890
- (*PinAction)(nil), // 80: WASyncAction.PinAction
5891
- (*MuteAction)(nil), // 81: WASyncAction.MuteAction
5892
- (*ContactAction)(nil), // 82: WASyncAction.ContactAction
5893
- (*StarAction)(nil), // 83: WASyncAction.StarAction
5894
- (*SyncActionData)(nil), // 84: WASyncAction.SyncActionData
5895
- (*CallLogRecord_ParticipantInfo)(nil), // 85: WASyncAction.CallLogRecord.ParticipantInfo
5896
- (*FavoritesAction_Favorite)(nil), // 86: WASyncAction.FavoritesAction.Favorite
5897
- (*waChatLockSettings.ChatLockSettings)(nil), // 87: WAProtobufsChatLockSettings.ChatLockSettings
5898
- (*waDeviceCapabilities.DeviceCapabilities)(nil), // 88: WAProtobufsDeviceCapabilities.DeviceCapabilities
5899
- (*waCommon.MessageKey)(nil), // 89: WACommon.MessageKey
6060
+ (AvatarUpdatedAction_AvatarEventType)(0), // 3: WASyncAction.AvatarUpdatedAction.AvatarEventType
6061
+ (MaibaAIFeaturesControlAction_MaibaAIFeatureStatus)(0), // 4: WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatus
6062
+ (PaymentTosAction_PaymentNotice)(0), // 5: WASyncAction.PaymentTosAction.PaymentNotice
6063
+ (NotificationActivitySettingAction_NotificationActivitySetting)(0), // 6: WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
6064
+ (WaffleAccountLinkStateAction_AccountLinkState)(0), // 7: WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
6065
+ (MerchantPaymentPartnerAction_Status)(0), // 8: WASyncAction.MerchantPaymentPartnerAction.Status
6066
+ (GalaxyFlowAction_GalaxyFlowActionType)(0), // 9: WASyncAction.GalaxyFlowAction.GalaxyFlowActionType
6067
+ (NoteEditAction_NoteType)(0), // 10: WASyncAction.NoteEditAction.NoteType
6068
+ (StatusPrivacyAction_StatusDistributionMode)(0), // 11: WASyncAction.StatusPrivacyAction.StatusDistributionMode
6069
+ (MarketingMessageAction_MarketingMessagePrototypeType)(0), // 12: WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
6070
+ (UsernameChatStartModeAction_ChatStartMode)(0), // 13: WASyncAction.UsernameChatStartModeAction.ChatStartMode
6071
+ (LabelEditAction_ListType)(0), // 14: WASyncAction.LabelEditAction.ListType
6072
+ (PatchDebugData_Platform)(0), // 15: WASyncAction.PatchDebugData.Platform
6073
+ (*CallLogRecord)(nil), // 16: WASyncAction.CallLogRecord
6074
+ (*AvatarUpdatedAction)(nil), // 17: WASyncAction.AvatarUpdatedAction
6075
+ (*MaibaAIFeaturesControlAction)(nil), // 18: WASyncAction.MaibaAIFeaturesControlAction
6076
+ (*PaymentTosAction)(nil), // 19: WASyncAction.PaymentTosAction
6077
+ (*NotificationActivitySettingAction)(nil), // 20: WASyncAction.NotificationActivitySettingAction
6078
+ (*WaffleAccountLinkStateAction)(nil), // 21: WASyncAction.WaffleAccountLinkStateAction
6079
+ (*MerchantPaymentPartnerAction)(nil), // 22: WASyncAction.MerchantPaymentPartnerAction
6080
+ (*GalaxyFlowAction)(nil), // 23: WASyncAction.GalaxyFlowAction
6081
+ (*NoteEditAction)(nil), // 24: WASyncAction.NoteEditAction
6082
+ (*StatusPrivacyAction)(nil), // 25: WASyncAction.StatusPrivacyAction
6083
+ (*MarketingMessageAction)(nil), // 26: WASyncAction.MarketingMessageAction
6084
+ (*UsernameChatStartModeAction)(nil), // 27: WASyncAction.UsernameChatStartModeAction
6085
+ (*LabelEditAction)(nil), // 28: WASyncAction.LabelEditAction
6086
+ (*PatchDebugData)(nil), // 29: WASyncAction.PatchDebugData
6087
+ (*RecentEmojiWeight)(nil), // 30: WASyncAction.RecentEmojiWeight
6088
+ (*SyncActionValue)(nil), // 31: WASyncAction.SyncActionValue
6089
+ (*StatusPostOptInNotificationPreferencesAction)(nil), // 32: WASyncAction.StatusPostOptInNotificationPreferencesAction
6090
+ (*BroadcastListParticipant)(nil), // 33: WASyncAction.BroadcastListParticipant
6091
+ (*BusinessBroadcastListAction)(nil), // 34: WASyncAction.BusinessBroadcastListAction
6092
+ (*BusinessBroadcastAssociationAction)(nil), // 35: WASyncAction.BusinessBroadcastAssociationAction
6093
+ (*CtwaPerCustomerDataSharingAction)(nil), // 36: WASyncAction.CtwaPerCustomerDataSharingAction
6094
+ (*LidContactAction)(nil), // 37: WASyncAction.LidContactAction
6095
+ (*FavoritesAction)(nil), // 38: WASyncAction.FavoritesAction
6096
+ (*PrivacySettingChannelsPersonalisedRecommendationAction)(nil), // 39: WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
6097
+ (*PrivacySettingDisableLinkPreviewsAction)(nil), // 40: WASyncAction.PrivacySettingDisableLinkPreviewsAction
6098
+ (*WamoUserIdentifierAction)(nil), // 41: WASyncAction.WamoUserIdentifierAction
6099
+ (*LockChatAction)(nil), // 42: WASyncAction.LockChatAction
6100
+ (*CustomPaymentMethodsAction)(nil), // 43: WASyncAction.CustomPaymentMethodsAction
6101
+ (*CustomPaymentMethod)(nil), // 44: WASyncAction.CustomPaymentMethod
6102
+ (*CustomPaymentMethodMetadata)(nil), // 45: WASyncAction.CustomPaymentMethodMetadata
6103
+ (*PaymentInfoAction)(nil), // 46: WASyncAction.PaymentInfoAction
6104
+ (*LabelReorderingAction)(nil), // 47: WASyncAction.LabelReorderingAction
6105
+ (*DeleteIndividualCallLogAction)(nil), // 48: WASyncAction.DeleteIndividualCallLogAction
6106
+ (*BotWelcomeRequestAction)(nil), // 49: WASyncAction.BotWelcomeRequestAction
6107
+ (*MusicUserIdAction)(nil), // 50: WASyncAction.MusicUserIdAction
6108
+ (*CallLogAction)(nil), // 51: WASyncAction.CallLogAction
6109
+ (*PrivacySettingRelayAllCalls)(nil), // 52: WASyncAction.PrivacySettingRelayAllCalls
6110
+ (*DetectedOutcomesStatusAction)(nil), // 53: WASyncAction.DetectedOutcomesStatusAction
6111
+ (*ExternalWebBetaAction)(nil), // 54: WASyncAction.ExternalWebBetaAction
6112
+ (*MarketingMessageBroadcastAction)(nil), // 55: WASyncAction.MarketingMessageBroadcastAction
6113
+ (*PnForLidChatAction)(nil), // 56: WASyncAction.PnForLidChatAction
6114
+ (*ChatAssignmentOpenedStatusAction)(nil), // 57: WASyncAction.ChatAssignmentOpenedStatusAction
6115
+ (*ChatAssignmentAction)(nil), // 58: WASyncAction.ChatAssignmentAction
6116
+ (*StickerAction)(nil), // 59: WASyncAction.StickerAction
6117
+ (*RemoveRecentStickerAction)(nil), // 60: WASyncAction.RemoveRecentStickerAction
6118
+ (*PrimaryVersionAction)(nil), // 61: WASyncAction.PrimaryVersionAction
6119
+ (*NuxAction)(nil), // 62: WASyncAction.NuxAction
6120
+ (*TimeFormatAction)(nil), // 63: WASyncAction.TimeFormatAction
6121
+ (*UserStatusMuteAction)(nil), // 64: WASyncAction.UserStatusMuteAction
6122
+ (*SubscriptionAction)(nil), // 65: WASyncAction.SubscriptionAction
6123
+ (*AgentAction)(nil), // 66: WASyncAction.AgentAction
6124
+ (*AndroidUnsupportedActions)(nil), // 67: WASyncAction.AndroidUnsupportedActions
6125
+ (*PrimaryFeature)(nil), // 68: WASyncAction.PrimaryFeature
6126
+ (*KeyExpiration)(nil), // 69: WASyncAction.KeyExpiration
6127
+ (*SyncActionMessage)(nil), // 70: WASyncAction.SyncActionMessage
6128
+ (*SyncActionMessageRange)(nil), // 71: WASyncAction.SyncActionMessageRange
6129
+ (*UnarchiveChatsSetting)(nil), // 72: WASyncAction.UnarchiveChatsSetting
6130
+ (*DeleteChatAction)(nil), // 73: WASyncAction.DeleteChatAction
6131
+ (*ClearChatAction)(nil), // 74: WASyncAction.ClearChatAction
6132
+ (*MarkChatAsReadAction)(nil), // 75: WASyncAction.MarkChatAsReadAction
6133
+ (*DeleteMessageForMeAction)(nil), // 76: WASyncAction.DeleteMessageForMeAction
6134
+ (*ArchiveChatAction)(nil), // 77: WASyncAction.ArchiveChatAction
6135
+ (*RecentEmojiWeightsAction)(nil), // 78: WASyncAction.RecentEmojiWeightsAction
6136
+ (*LabelAssociationAction)(nil), // 79: WASyncAction.LabelAssociationAction
6137
+ (*QuickReplyAction)(nil), // 80: WASyncAction.QuickReplyAction
6138
+ (*LocaleSetting)(nil), // 81: WASyncAction.LocaleSetting
6139
+ (*PushNameSetting)(nil), // 82: WASyncAction.PushNameSetting
6140
+ (*SecurityNotificationSetting)(nil), // 83: WASyncAction.SecurityNotificationSetting
6141
+ (*PinAction)(nil), // 84: WASyncAction.PinAction
6142
+ (*MuteAction)(nil), // 85: WASyncAction.MuteAction
6143
+ (*ContactAction)(nil), // 86: WASyncAction.ContactAction
6144
+ (*StarAction)(nil), // 87: WASyncAction.StarAction
6145
+ (*SyncActionData)(nil), // 88: WASyncAction.SyncActionData
6146
+ (*CallLogRecord_ParticipantInfo)(nil), // 89: WASyncAction.CallLogRecord.ParticipantInfo
6147
+ (*FavoritesAction_Favorite)(nil), // 90: WASyncAction.FavoritesAction.Favorite
6148
+ (*waChatLockSettings.ChatLockSettings)(nil), // 91: WAProtobufsChatLockSettings.ChatLockSettings
6149
+ (*waDeviceCapabilities.DeviceCapabilities)(nil), // 92: WAProtobufsDeviceCapabilities.DeviceCapabilities
6150
+ (*waCommon.MessageKey)(nil), // 93: WACommon.MessageKey
5900
6151
  }
5901
6152
  var file_waSyncAction_WASyncAction_proto_depIdxs = []int32{
5902
6153
  2, // 0: WASyncAction.CallLogRecord.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
5903
6154
  1, // 1: WASyncAction.CallLogRecord.silenceReason:type_name -> WASyncAction.CallLogRecord.SilenceReason
5904
- 85, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
6155
+ 89, // 2: WASyncAction.CallLogRecord.participants:type_name -> WASyncAction.CallLogRecord.ParticipantInfo
5905
6156
  0, // 3: WASyncAction.CallLogRecord.callType:type_name -> WASyncAction.CallLogRecord.CallType
5906
- 3, // 4: WASyncAction.MaibaAIFeaturesControlAction.aiFeatureStatus:type_name -> WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatus
5907
- 4, // 5: WASyncAction.PaymentTosAction.paymentNotice:type_name -> WASyncAction.PaymentTosAction.PaymentNotice
5908
- 5, // 6: WASyncAction.NotificationActivitySettingAction.notificationActivitySetting:type_name -> WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
5909
- 6, // 7: WASyncAction.WaffleAccountLinkStateAction.linkState:type_name -> WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
5910
- 7, // 8: WASyncAction.MerchantPaymentPartnerAction.status:type_name -> WASyncAction.MerchantPaymentPartnerAction.Status
5911
- 8, // 9: WASyncAction.NoteEditAction.type:type_name -> WASyncAction.NoteEditAction.NoteType
5912
- 9, // 10: WASyncAction.StatusPrivacyAction.mode:type_name -> WASyncAction.StatusPrivacyAction.StatusDistributionMode
5913
- 10, // 11: WASyncAction.MarketingMessageAction.type:type_name -> WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
5914
- 11, // 12: WASyncAction.UsernameChatStartModeAction.chatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction.ChatStartMode
5915
- 12, // 13: WASyncAction.LabelEditAction.type:type_name -> WASyncAction.LabelEditAction.ListType
5916
- 13, // 14: WASyncAction.PatchDebugData.senderPlatform:type_name -> WASyncAction.PatchDebugData.Platform
5917
- 83, // 15: WASyncAction.SyncActionValue.starAction:type_name -> WASyncAction.StarAction
5918
- 82, // 16: WASyncAction.SyncActionValue.contactAction:type_name -> WASyncAction.ContactAction
5919
- 81, // 17: WASyncAction.SyncActionValue.muteAction:type_name -> WASyncAction.MuteAction
5920
- 80, // 18: WASyncAction.SyncActionValue.pinAction:type_name -> WASyncAction.PinAction
5921
- 79, // 19: WASyncAction.SyncActionValue.securityNotificationSetting:type_name -> WASyncAction.SecurityNotificationSetting
5922
- 78, // 20: WASyncAction.SyncActionValue.pushNameSetting:type_name -> WASyncAction.PushNameSetting
5923
- 76, // 21: WASyncAction.SyncActionValue.quickReplyAction:type_name -> WASyncAction.QuickReplyAction
5924
- 74, // 22: WASyncAction.SyncActionValue.recentEmojiWeightsAction:type_name -> WASyncAction.RecentEmojiWeightsAction
5925
- 24, // 23: WASyncAction.SyncActionValue.labelEditAction:type_name -> WASyncAction.LabelEditAction
5926
- 75, // 24: WASyncAction.SyncActionValue.labelAssociationAction:type_name -> WASyncAction.LabelAssociationAction
5927
- 77, // 25: WASyncAction.SyncActionValue.localeSetting:type_name -> WASyncAction.LocaleSetting
5928
- 73, // 26: WASyncAction.SyncActionValue.archiveChatAction:type_name -> WASyncAction.ArchiveChatAction
5929
- 72, // 27: WASyncAction.SyncActionValue.deleteMessageForMeAction:type_name -> WASyncAction.DeleteMessageForMeAction
5930
- 65, // 28: WASyncAction.SyncActionValue.keyExpiration:type_name -> WASyncAction.KeyExpiration
5931
- 71, // 29: WASyncAction.SyncActionValue.markChatAsReadAction:type_name -> WASyncAction.MarkChatAsReadAction
5932
- 70, // 30: WASyncAction.SyncActionValue.clearChatAction:type_name -> WASyncAction.ClearChatAction
5933
- 69, // 31: WASyncAction.SyncActionValue.deleteChatAction:type_name -> WASyncAction.DeleteChatAction
5934
- 68, // 32: WASyncAction.SyncActionValue.unarchiveChatsSetting:type_name -> WASyncAction.UnarchiveChatsSetting
5935
- 64, // 33: WASyncAction.SyncActionValue.primaryFeature:type_name -> WASyncAction.PrimaryFeature
5936
- 63, // 34: WASyncAction.SyncActionValue.androidUnsupportedActions:type_name -> WASyncAction.AndroidUnsupportedActions
5937
- 62, // 35: WASyncAction.SyncActionValue.agentAction:type_name -> WASyncAction.AgentAction
5938
- 61, // 36: WASyncAction.SyncActionValue.subscriptionAction:type_name -> WASyncAction.SubscriptionAction
5939
- 60, // 37: WASyncAction.SyncActionValue.userStatusMuteAction:type_name -> WASyncAction.UserStatusMuteAction
5940
- 59, // 38: WASyncAction.SyncActionValue.timeFormatAction:type_name -> WASyncAction.TimeFormatAction
5941
- 58, // 39: WASyncAction.SyncActionValue.nuxAction:type_name -> WASyncAction.NuxAction
5942
- 57, // 40: WASyncAction.SyncActionValue.primaryVersionAction:type_name -> WASyncAction.PrimaryVersionAction
5943
- 55, // 41: WASyncAction.SyncActionValue.stickerAction:type_name -> WASyncAction.StickerAction
5944
- 56, // 42: WASyncAction.SyncActionValue.removeRecentStickerAction:type_name -> WASyncAction.RemoveRecentStickerAction
5945
- 54, // 43: WASyncAction.SyncActionValue.chatAssignment:type_name -> WASyncAction.ChatAssignmentAction
5946
- 53, // 44: WASyncAction.SyncActionValue.chatAssignmentOpenedStatus:type_name -> WASyncAction.ChatAssignmentOpenedStatusAction
5947
- 52, // 45: WASyncAction.SyncActionValue.pnForLidChatAction:type_name -> WASyncAction.PnForLidChatAction
5948
- 22, // 46: WASyncAction.SyncActionValue.marketingMessageAction:type_name -> WASyncAction.MarketingMessageAction
5949
- 51, // 47: WASyncAction.SyncActionValue.marketingMessageBroadcastAction:type_name -> WASyncAction.MarketingMessageBroadcastAction
5950
- 50, // 48: WASyncAction.SyncActionValue.externalWebBetaAction:type_name -> WASyncAction.ExternalWebBetaAction
5951
- 48, // 49: WASyncAction.SyncActionValue.privacySettingRelayAllCalls:type_name -> WASyncAction.PrivacySettingRelayAllCalls
5952
- 47, // 50: WASyncAction.SyncActionValue.callLogAction:type_name -> WASyncAction.CallLogAction
5953
- 21, // 51: WASyncAction.SyncActionValue.statusPrivacy:type_name -> WASyncAction.StatusPrivacyAction
5954
- 45, // 52: WASyncAction.SyncActionValue.botWelcomeRequestAction:type_name -> WASyncAction.BotWelcomeRequestAction
5955
- 44, // 53: WASyncAction.SyncActionValue.deleteIndividualCallLog:type_name -> WASyncAction.DeleteIndividualCallLogAction
5956
- 43, // 54: WASyncAction.SyncActionValue.labelReorderingAction:type_name -> WASyncAction.LabelReorderingAction
5957
- 42, // 55: WASyncAction.SyncActionValue.paymentInfoAction:type_name -> WASyncAction.PaymentInfoAction
5958
- 39, // 56: WASyncAction.SyncActionValue.customPaymentMethodsAction:type_name -> WASyncAction.CustomPaymentMethodsAction
5959
- 38, // 57: WASyncAction.SyncActionValue.lockChatAction:type_name -> WASyncAction.LockChatAction
5960
- 87, // 58: WASyncAction.SyncActionValue.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
5961
- 37, // 59: WASyncAction.SyncActionValue.wamoUserIdentifierAction:type_name -> WASyncAction.WamoUserIdentifierAction
5962
- 36, // 60: WASyncAction.SyncActionValue.privacySettingDisableLinkPreviewsAction:type_name -> WASyncAction.PrivacySettingDisableLinkPreviewsAction
5963
- 88, // 61: WASyncAction.SyncActionValue.deviceCapabilities:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities
5964
- 20, // 62: WASyncAction.SyncActionValue.noteEditAction:type_name -> WASyncAction.NoteEditAction
5965
- 34, // 63: WASyncAction.SyncActionValue.favoritesAction:type_name -> WASyncAction.FavoritesAction
5966
- 19, // 64: WASyncAction.SyncActionValue.merchantPaymentPartnerAction:type_name -> WASyncAction.MerchantPaymentPartnerAction
5967
- 18, // 65: WASyncAction.SyncActionValue.waffleAccountLinkStateAction:type_name -> WASyncAction.WaffleAccountLinkStateAction
5968
- 23, // 66: WASyncAction.SyncActionValue.usernameChatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction
5969
- 17, // 67: WASyncAction.SyncActionValue.notificationActivitySettingAction:type_name -> WASyncAction.NotificationActivitySettingAction
5970
- 33, // 68: WASyncAction.SyncActionValue.lidContactAction:type_name -> WASyncAction.LidContactAction
5971
- 32, // 69: WASyncAction.SyncActionValue.ctwaPerCustomerDataSharingAction:type_name -> WASyncAction.CtwaPerCustomerDataSharingAction
5972
- 16, // 70: WASyncAction.SyncActionValue.paymentTosAction:type_name -> WASyncAction.PaymentTosAction
5973
- 35, // 71: WASyncAction.SyncActionValue.privacySettingChannelsPersonalisedRecommendationAction:type_name -> WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
5974
- 31, // 72: WASyncAction.SyncActionValue.businessBroadcastAssociationAction:type_name -> WASyncAction.BusinessBroadcastAssociationAction
5975
- 49, // 73: WASyncAction.SyncActionValue.detectedOutcomesStatusAction:type_name -> WASyncAction.DetectedOutcomesStatusAction
5976
- 15, // 74: WASyncAction.SyncActionValue.maibaAiFeaturesControlAction:type_name -> WASyncAction.MaibaAIFeaturesControlAction
5977
- 30, // 75: WASyncAction.SyncActionValue.businessBroadcastListAction:type_name -> WASyncAction.BusinessBroadcastListAction
5978
- 46, // 76: WASyncAction.SyncActionValue.musicUserIDAction:type_name -> WASyncAction.MusicUserIdAction
5979
- 28, // 77: WASyncAction.SyncActionValue.statusPostOptInNotificationPreferencesAction:type_name -> WASyncAction.StatusPostOptInNotificationPreferencesAction
5980
- 29, // 78: WASyncAction.BusinessBroadcastListAction.participants:type_name -> WASyncAction.BroadcastListParticipant
5981
- 86, // 79: WASyncAction.FavoritesAction.favorites:type_name -> WASyncAction.FavoritesAction.Favorite
5982
- 40, // 80: WASyncAction.CustomPaymentMethodsAction.customPaymentMethods:type_name -> WASyncAction.CustomPaymentMethod
5983
- 41, // 81: WASyncAction.CustomPaymentMethod.metadata:type_name -> WASyncAction.CustomPaymentMethodMetadata
5984
- 14, // 82: WASyncAction.CallLogAction.callLogRecord:type_name -> WASyncAction.CallLogRecord
5985
- 89, // 83: WASyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
5986
- 66, // 84: WASyncAction.SyncActionMessageRange.messages:type_name -> WASyncAction.SyncActionMessage
5987
- 67, // 85: WASyncAction.DeleteChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5988
- 67, // 86: WASyncAction.ClearChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5989
- 67, // 87: WASyncAction.MarkChatAsReadAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5990
- 67, // 88: WASyncAction.ArchiveChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
5991
- 26, // 89: WASyncAction.RecentEmojiWeightsAction.weights:type_name -> WASyncAction.RecentEmojiWeight
5992
- 27, // 90: WASyncAction.SyncActionData.value:type_name -> WASyncAction.SyncActionValue
5993
- 2, // 91: WASyncAction.CallLogRecord.ParticipantInfo.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
5994
- 92, // [92:92] is the sub-list for method output_type
5995
- 92, // [92:92] is the sub-list for method input_type
5996
- 92, // [92:92] is the sub-list for extension type_name
5997
- 92, // [92:92] is the sub-list for extension extendee
5998
- 0, // [0:92] is the sub-list for field type_name
6157
+ 3, // 4: WASyncAction.AvatarUpdatedAction.eventType:type_name -> WASyncAction.AvatarUpdatedAction.AvatarEventType
6158
+ 59, // 5: WASyncAction.AvatarUpdatedAction.recentAvatarStickers:type_name -> WASyncAction.StickerAction
6159
+ 4, // 6: WASyncAction.MaibaAIFeaturesControlAction.aiFeatureStatus:type_name -> WASyncAction.MaibaAIFeaturesControlAction.MaibaAIFeatureStatus
6160
+ 5, // 7: WASyncAction.PaymentTosAction.paymentNotice:type_name -> WASyncAction.PaymentTosAction.PaymentNotice
6161
+ 6, // 8: WASyncAction.NotificationActivitySettingAction.notificationActivitySetting:type_name -> WASyncAction.NotificationActivitySettingAction.NotificationActivitySetting
6162
+ 7, // 9: WASyncAction.WaffleAccountLinkStateAction.linkState:type_name -> WASyncAction.WaffleAccountLinkStateAction.AccountLinkState
6163
+ 8, // 10: WASyncAction.MerchantPaymentPartnerAction.status:type_name -> WASyncAction.MerchantPaymentPartnerAction.Status
6164
+ 9, // 11: WASyncAction.GalaxyFlowAction.type:type_name -> WASyncAction.GalaxyFlowAction.GalaxyFlowActionType
6165
+ 10, // 12: WASyncAction.NoteEditAction.type:type_name -> WASyncAction.NoteEditAction.NoteType
6166
+ 11, // 13: WASyncAction.StatusPrivacyAction.mode:type_name -> WASyncAction.StatusPrivacyAction.StatusDistributionMode
6167
+ 12, // 14: WASyncAction.MarketingMessageAction.type:type_name -> WASyncAction.MarketingMessageAction.MarketingMessagePrototypeType
6168
+ 13, // 15: WASyncAction.UsernameChatStartModeAction.chatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction.ChatStartMode
6169
+ 14, // 16: WASyncAction.LabelEditAction.type:type_name -> WASyncAction.LabelEditAction.ListType
6170
+ 15, // 17: WASyncAction.PatchDebugData.senderPlatform:type_name -> WASyncAction.PatchDebugData.Platform
6171
+ 87, // 18: WASyncAction.SyncActionValue.starAction:type_name -> WASyncAction.StarAction
6172
+ 86, // 19: WASyncAction.SyncActionValue.contactAction:type_name -> WASyncAction.ContactAction
6173
+ 85, // 20: WASyncAction.SyncActionValue.muteAction:type_name -> WASyncAction.MuteAction
6174
+ 84, // 21: WASyncAction.SyncActionValue.pinAction:type_name -> WASyncAction.PinAction
6175
+ 83, // 22: WASyncAction.SyncActionValue.securityNotificationSetting:type_name -> WASyncAction.SecurityNotificationSetting
6176
+ 82, // 23: WASyncAction.SyncActionValue.pushNameSetting:type_name -> WASyncAction.PushNameSetting
6177
+ 80, // 24: WASyncAction.SyncActionValue.quickReplyAction:type_name -> WASyncAction.QuickReplyAction
6178
+ 78, // 25: WASyncAction.SyncActionValue.recentEmojiWeightsAction:type_name -> WASyncAction.RecentEmojiWeightsAction
6179
+ 28, // 26: WASyncAction.SyncActionValue.labelEditAction:type_name -> WASyncAction.LabelEditAction
6180
+ 79, // 27: WASyncAction.SyncActionValue.labelAssociationAction:type_name -> WASyncAction.LabelAssociationAction
6181
+ 81, // 28: WASyncAction.SyncActionValue.localeSetting:type_name -> WASyncAction.LocaleSetting
6182
+ 77, // 29: WASyncAction.SyncActionValue.archiveChatAction:type_name -> WASyncAction.ArchiveChatAction
6183
+ 76, // 30: WASyncAction.SyncActionValue.deleteMessageForMeAction:type_name -> WASyncAction.DeleteMessageForMeAction
6184
+ 69, // 31: WASyncAction.SyncActionValue.keyExpiration:type_name -> WASyncAction.KeyExpiration
6185
+ 75, // 32: WASyncAction.SyncActionValue.markChatAsReadAction:type_name -> WASyncAction.MarkChatAsReadAction
6186
+ 74, // 33: WASyncAction.SyncActionValue.clearChatAction:type_name -> WASyncAction.ClearChatAction
6187
+ 73, // 34: WASyncAction.SyncActionValue.deleteChatAction:type_name -> WASyncAction.DeleteChatAction
6188
+ 72, // 35: WASyncAction.SyncActionValue.unarchiveChatsSetting:type_name -> WASyncAction.UnarchiveChatsSetting
6189
+ 68, // 36: WASyncAction.SyncActionValue.primaryFeature:type_name -> WASyncAction.PrimaryFeature
6190
+ 67, // 37: WASyncAction.SyncActionValue.androidUnsupportedActions:type_name -> WASyncAction.AndroidUnsupportedActions
6191
+ 66, // 38: WASyncAction.SyncActionValue.agentAction:type_name -> WASyncAction.AgentAction
6192
+ 65, // 39: WASyncAction.SyncActionValue.subscriptionAction:type_name -> WASyncAction.SubscriptionAction
6193
+ 64, // 40: WASyncAction.SyncActionValue.userStatusMuteAction:type_name -> WASyncAction.UserStatusMuteAction
6194
+ 63, // 41: WASyncAction.SyncActionValue.timeFormatAction:type_name -> WASyncAction.TimeFormatAction
6195
+ 62, // 42: WASyncAction.SyncActionValue.nuxAction:type_name -> WASyncAction.NuxAction
6196
+ 61, // 43: WASyncAction.SyncActionValue.primaryVersionAction:type_name -> WASyncAction.PrimaryVersionAction
6197
+ 59, // 44: WASyncAction.SyncActionValue.stickerAction:type_name -> WASyncAction.StickerAction
6198
+ 60, // 45: WASyncAction.SyncActionValue.removeRecentStickerAction:type_name -> WASyncAction.RemoveRecentStickerAction
6199
+ 58, // 46: WASyncAction.SyncActionValue.chatAssignment:type_name -> WASyncAction.ChatAssignmentAction
6200
+ 57, // 47: WASyncAction.SyncActionValue.chatAssignmentOpenedStatus:type_name -> WASyncAction.ChatAssignmentOpenedStatusAction
6201
+ 56, // 48: WASyncAction.SyncActionValue.pnForLidChatAction:type_name -> WASyncAction.PnForLidChatAction
6202
+ 26, // 49: WASyncAction.SyncActionValue.marketingMessageAction:type_name -> WASyncAction.MarketingMessageAction
6203
+ 55, // 50: WASyncAction.SyncActionValue.marketingMessageBroadcastAction:type_name -> WASyncAction.MarketingMessageBroadcastAction
6204
+ 54, // 51: WASyncAction.SyncActionValue.externalWebBetaAction:type_name -> WASyncAction.ExternalWebBetaAction
6205
+ 52, // 52: WASyncAction.SyncActionValue.privacySettingRelayAllCalls:type_name -> WASyncAction.PrivacySettingRelayAllCalls
6206
+ 51, // 53: WASyncAction.SyncActionValue.callLogAction:type_name -> WASyncAction.CallLogAction
6207
+ 25, // 54: WASyncAction.SyncActionValue.statusPrivacy:type_name -> WASyncAction.StatusPrivacyAction
6208
+ 49, // 55: WASyncAction.SyncActionValue.botWelcomeRequestAction:type_name -> WASyncAction.BotWelcomeRequestAction
6209
+ 48, // 56: WASyncAction.SyncActionValue.deleteIndividualCallLog:type_name -> WASyncAction.DeleteIndividualCallLogAction
6210
+ 47, // 57: WASyncAction.SyncActionValue.labelReorderingAction:type_name -> WASyncAction.LabelReorderingAction
6211
+ 46, // 58: WASyncAction.SyncActionValue.paymentInfoAction:type_name -> WASyncAction.PaymentInfoAction
6212
+ 43, // 59: WASyncAction.SyncActionValue.customPaymentMethodsAction:type_name -> WASyncAction.CustomPaymentMethodsAction
6213
+ 42, // 60: WASyncAction.SyncActionValue.lockChatAction:type_name -> WASyncAction.LockChatAction
6214
+ 91, // 61: WASyncAction.SyncActionValue.chatLockSettings:type_name -> WAProtobufsChatLockSettings.ChatLockSettings
6215
+ 41, // 62: WASyncAction.SyncActionValue.wamoUserIdentifierAction:type_name -> WASyncAction.WamoUserIdentifierAction
6216
+ 40, // 63: WASyncAction.SyncActionValue.privacySettingDisableLinkPreviewsAction:type_name -> WASyncAction.PrivacySettingDisableLinkPreviewsAction
6217
+ 92, // 64: WASyncAction.SyncActionValue.deviceCapabilities:type_name -> WAProtobufsDeviceCapabilities.DeviceCapabilities
6218
+ 24, // 65: WASyncAction.SyncActionValue.noteEditAction:type_name -> WASyncAction.NoteEditAction
6219
+ 38, // 66: WASyncAction.SyncActionValue.favoritesAction:type_name -> WASyncAction.FavoritesAction
6220
+ 22, // 67: WASyncAction.SyncActionValue.merchantPaymentPartnerAction:type_name -> WASyncAction.MerchantPaymentPartnerAction
6221
+ 21, // 68: WASyncAction.SyncActionValue.waffleAccountLinkStateAction:type_name -> WASyncAction.WaffleAccountLinkStateAction
6222
+ 27, // 69: WASyncAction.SyncActionValue.usernameChatStartMode:type_name -> WASyncAction.UsernameChatStartModeAction
6223
+ 20, // 70: WASyncAction.SyncActionValue.notificationActivitySettingAction:type_name -> WASyncAction.NotificationActivitySettingAction
6224
+ 37, // 71: WASyncAction.SyncActionValue.lidContactAction:type_name -> WASyncAction.LidContactAction
6225
+ 36, // 72: WASyncAction.SyncActionValue.ctwaPerCustomerDataSharingAction:type_name -> WASyncAction.CtwaPerCustomerDataSharingAction
6226
+ 19, // 73: WASyncAction.SyncActionValue.paymentTosAction:type_name -> WASyncAction.PaymentTosAction
6227
+ 39, // 74: WASyncAction.SyncActionValue.privacySettingChannelsPersonalisedRecommendationAction:type_name -> WASyncAction.PrivacySettingChannelsPersonalisedRecommendationAction
6228
+ 35, // 75: WASyncAction.SyncActionValue.businessBroadcastAssociationAction:type_name -> WASyncAction.BusinessBroadcastAssociationAction
6229
+ 53, // 76: WASyncAction.SyncActionValue.detectedOutcomesStatusAction:type_name -> WASyncAction.DetectedOutcomesStatusAction
6230
+ 18, // 77: WASyncAction.SyncActionValue.maibaAiFeaturesControlAction:type_name -> WASyncAction.MaibaAIFeaturesControlAction
6231
+ 34, // 78: WASyncAction.SyncActionValue.businessBroadcastListAction:type_name -> WASyncAction.BusinessBroadcastListAction
6232
+ 50, // 79: WASyncAction.SyncActionValue.musicUserIDAction:type_name -> WASyncAction.MusicUserIdAction
6233
+ 32, // 80: WASyncAction.SyncActionValue.statusPostOptInNotificationPreferencesAction:type_name -> WASyncAction.StatusPostOptInNotificationPreferencesAction
6234
+ 17, // 81: WASyncAction.SyncActionValue.avatarUpdatedAction:type_name -> WASyncAction.AvatarUpdatedAction
6235
+ 23, // 82: WASyncAction.SyncActionValue.galaxyFlowAction:type_name -> WASyncAction.GalaxyFlowAction
6236
+ 33, // 83: WASyncAction.BusinessBroadcastListAction.participants:type_name -> WASyncAction.BroadcastListParticipant
6237
+ 90, // 84: WASyncAction.FavoritesAction.favorites:type_name -> WASyncAction.FavoritesAction.Favorite
6238
+ 44, // 85: WASyncAction.CustomPaymentMethodsAction.customPaymentMethods:type_name -> WASyncAction.CustomPaymentMethod
6239
+ 45, // 86: WASyncAction.CustomPaymentMethod.metadata:type_name -> WASyncAction.CustomPaymentMethodMetadata
6240
+ 16, // 87: WASyncAction.CallLogAction.callLogRecord:type_name -> WASyncAction.CallLogRecord
6241
+ 93, // 88: WASyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
6242
+ 70, // 89: WASyncAction.SyncActionMessageRange.messages:type_name -> WASyncAction.SyncActionMessage
6243
+ 71, // 90: WASyncAction.DeleteChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
6244
+ 71, // 91: WASyncAction.ClearChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
6245
+ 71, // 92: WASyncAction.MarkChatAsReadAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
6246
+ 71, // 93: WASyncAction.ArchiveChatAction.messageRange:type_name -> WASyncAction.SyncActionMessageRange
6247
+ 30, // 94: WASyncAction.RecentEmojiWeightsAction.weights:type_name -> WASyncAction.RecentEmojiWeight
6248
+ 31, // 95: WASyncAction.SyncActionData.value:type_name -> WASyncAction.SyncActionValue
6249
+ 2, // 96: WASyncAction.CallLogRecord.ParticipantInfo.callResult:type_name -> WASyncAction.CallLogRecord.CallResult
6250
+ 97, // [97:97] is the sub-list for method output_type
6251
+ 97, // [97:97] is the sub-list for method input_type
6252
+ 97, // [97:97] is the sub-list for extension type_name
6253
+ 97, // [97:97] is the sub-list for extension extendee
6254
+ 0, // [0:97] is the sub-list for field type_name
5999
6255
  }
6000
6256
 
6001
6257
  func init() { file_waSyncAction_WASyncAction_proto_init() }
@@ -6008,8 +6264,8 @@ func file_waSyncAction_WASyncAction_proto_init() {
6008
6264
  File: protoimpl.DescBuilder{
6009
6265
  GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
6010
6266
  RawDescriptor: unsafe.Slice(unsafe.StringData(file_waSyncAction_WASyncAction_proto_rawDesc), len(file_waSyncAction_WASyncAction_proto_rawDesc)),
6011
- NumEnums: 14,
6012
- NumMessages: 73,
6267
+ NumEnums: 16,
6268
+ NumMessages: 75,
6013
6269
  NumExtensions: 0,
6014
6270
  NumServices: 0,
6015
6271
  },